source: mainline/uspace/drv/bus/usb/usbhub/status.h@ 4ee5272

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 4ee5272 was 4ee5272, checked in by Jan Vesely <jano.vesely@…>, 11 years ago

libusb, usbhub: Add USB2 features and structures

  • Property mode set to 100644
File size: 4.3 KB
RevLine 
[b5ec347]1/*
2 * Copyright (c) 2010 Matus Dekanek
[193da9d6]3 * Copyright (c) 2011 Jan Vesely
[b5ec347]4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * - Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * - Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * - The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
[281ebae]29/** @addtogroup drvusbhub
30 * @{
31 */
[b5ec347]32
[aff1880]33#ifndef HUB_STATUS_H
34#define HUB_STATUS_H
[b5ec347]35
[3e6a98c5]36#include <stdbool.h>
[b5ec347]37#include <sys/types.h>
[7d521e24]38#include <usb/dev/request.h>
[b5ec347]39
40/**
41 * structure holding port status and changes flags.
42 * should not be accessed directly, use supplied getter/setter methods.
43 *
[fd3abb6d]44 * For more information refer to tables 11-15 and 11-16 in
45 * "Universal Serial Bus Specification Revision 1.1" pages 274 and 277
46 * (290 and 293 in pdf)
[b5ec347]47 *
48 */
[98d06b8]49typedef uint32_t usb_port_status_t;
[a61c683]50#define USB_HUB_PORT_STATUS_CONNECTION \
51 (uint32_usb2host(1 << (USB_HUB_FEATURE_PORT_CONNECTION)))
52#define USB_HUB_PORT_STATUS_ENABLED \
53 (uint32_usb2host(1 << (USB_HUB_FEATURE_PORT_ENABLE)))
54#define USB_HUB_PORT_STATUS_SUSPEND \
55 (uint32_usb2host(1 << (USB_HUB_FEATURE_PORT_SUSPEND)))
56#define USB_HUB_PORT_STATUS_OC \
57 (uint32_usb2host(1 << (USB_HUB_FEATURE_PORT_OVER_CURRENT)))
58#define USB_HUB_PORT_STATUS_RESET \
59 (uint32_usb2host(1 << (USB_HUB_FEATURE_PORT_RESET)))
60#define USB_HUB_PORT_STATUS_POWER \
61 (uint32_usb2host(1 << (USB_HUB_FEATURE_PORT_POWER)))
62#define USB_HUB_PORT_STATUS_LOW_SPEED \
63 (uint32_usb2host(1 << (USB_HUB_FEATURE_PORT_LOW_SPEED)))
64#define USB_HUB_PORT_STATUS_HIGH_SPEED \
65 (uint32_usb2host(1 << 10))
[4ee5272]66#define USB_HUB_PORT_STATUS_TEST_MODE \
67 (uint32_usb2host(1 << 11))
68#define USB_HUB_PORT_INDICATOR_CONTROL \
69 (uint32_usb2host(1 << 12))
[d6e2938]70
71#define USB_HUB_PORT_C_STATUS_CONNECTION \
[a61c683]72 (uint32_usb2host(1 << (USB_HUB_FEATURE_C_PORT_CONNECTION)))
[d6e2938]73#define USB_HUB_PORT_C_STATUS_ENABLED \
[a61c683]74 (uint32_usb2host(1 << (USB_HUB_FEATURE_C_PORT_ENABLE)))
[d6e2938]75#define USB_HUB_PORT_C_STATUS_SUSPEND \
[a61c683]76 (uint32_usb2host(1 << (USB_HUB_FEATURE_C_PORT_SUSPEND)))
[d6e2938]77#define USB_HUB_PORT_C_STATUS_OC \
[a61c683]78 (uint32_usb2host(1 << (USB_HUB_FEATURE_C_PORT_OVER_CURRENT)))
[d6e2938]79#define USB_HUB_PORT_C_STATUS_RESET \
[a61c683]80 (uint32_usb2host(1 << (USB_HUB_FEATURE_C_PORT_RESET)))
[b5ec347]81
[040ab02]82/**
83 * structure holding hub status and changes flags.
84 *
85 * For more information refer to table 11.16.2.5 in
86 * "Universal Serial Bus Specification Revision 1.1"
87 *
88 */
89typedef uint32_t usb_hub_status_t;
[bf73a02]90#define USB_HUB_STATUS_OVER_CURRENT \
[a61c683]91 (uint32_usb2host(1 << (USB_HUB_FEATURE_HUB_OVER_CURRENT)))
[bf73a02]92#define USB_HUB_STATUS_LOCAL_POWER \
[a61c683]93 (uint32_usb2host(1 << (USB_HUB_FEATURE_HUB_LOCAL_POWER)))
[bf73a02]94
95#define USB_HUB_STATUS_C_OVER_CURRENT \
[a61c683]96 (uint32_usb2host(1 << (16 + USB_HUB_FEATURE_C_HUB_OVER_CURRENT)))
[bf73a02]97#define USB_HUB_STATUS_C_LOCAL_POWER \
[a61c683]98 (uint32_usb2host(1 << (16 + USB_HUB_FEATURE_C_HUB_LOCAL_POWER)))
[040ab02]99
[b5ec347]100
[3dba1ca]101/**
102 * speed getter for port status
103 *
104 * @param status
105 * @return speed of usb device (for more see usb specification)
106 */
[aff1880]107static inline usb_speed_t usb_port_speed(usb_port_status_t status)
108{
[48a31be]109 if ((status & USB_HUB_PORT_STATUS_LOW_SPEED) != 0)
[a7528a16]110 return USB_SPEED_LOW;
[48a31be]111 if ((status & USB_HUB_PORT_STATUS_HIGH_SPEED) != 0)
[a7528a16]112 return USB_SPEED_HIGH;
113 return USB_SPEED_FULL;
114}
115
[aff1880]116#endif /* HUB_STATUS_H */
[281ebae]117/**
118 * @}
119 */
Note: See TracBrowser for help on using the repository browser.