source: mainline/uspace/drv/bus/usb/usbhub/port_status.h@ 48a31be

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

usbhub: Remove unused code.

  • Property mode set to 100644
File size: 5.6 KB
Line 
1/*
2 * Copyright (c) 2010 Matus Dekanek
3 * Copyright (c) 2011 Jan Vesely
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 */
29/** @addtogroup drvusbhub
30 * @{
31 */
32
33#ifndef HUB_PORT_STATUS_H
34#define HUB_PORT_STATUS_H
35
36#include <bool.h>
37#include <sys/types.h>
38#include <usb/dev/request.h>
39
40/**
41 * structure holding port status and changes flags.
42 * should not be accessed directly, use supplied getter/setter methods.
43 *
44 * For more information refer to table 11-15 in
45 * "Universal Serial Bus Specification Revision 1.1"
46 *
47 */
48typedef uint32_t usb_port_status_t;
49// TODO Mind the endiannes, changes are in the first byte of the second word
50// status is in the first byte of the first word
51#define USB_HUB_PORT_STATUS_CONNECTION (1 << (USB_HUB_FEATURE_PORT_CONNECTION))
52#define USB_HUB_PORT_STATUS_ENABLED (1 << (USB_HUB_FEATURE_PORT_ENABLE))
53#define USB_HUB_PORT_STATUS_SUSPEND (1 << (USB_HUB_FEATURE_PORT_SUSPEND))
54#define USB_HUB_PORT_STATUS_OC (1 << (USB_HUB_FEATURE_PORT_OVER_CURRENT))
55#define USB_HUB_PORT_STATUS_RESET (1 << (USB_HUB_FEATURE_PORT_RESET))
56#define USB_HUB_PORT_STATUS_POWER (1 << (USB_HUB_FEATURE_PORT_POWER))
57#define USB_HUB_PORT_STATUS_LOW_SPEED (1 << (USB_HUB_FEATURE_PORT_LOW_SPEED))
58#define USB_HUB_PORT_STATUS_HIGH_SPEED (1 << 10)
59
60#define USB_HUB_PORT_C_STATUS_CONNECTION \
61 (1 << (USB_HUB_FEATURE_C_PORT_CONNECTION))
62#define USB_HUB_PORT_C_STATUS_ENABLED \
63 (1 << (USB_HUB_FEATURE_C_PORT_ENABLE))
64#define USB_HUB_PORT_C_STATUS_SUSPEND \
65 (1 << (USB_HUB_FEATURE_C_PORT_SUSPEND))
66#define USB_HUB_PORT_C_STATUS_OC \
67 (1 << (USB_HUB_FEATURE_C_PORT_OVER_CURRENT))
68#define USB_HUB_PORT_C_STATUS_RESET \
69 (1 << (USB_HUB_FEATURE_C_PORT_RESET))
70
71/**
72 * structure holding hub status and changes flags.
73 *
74 * For more information refer to table 11.16.2.5 in
75 * "Universal Serial Bus Specification Revision 1.1"
76 *
77 */
78typedef uint32_t usb_hub_status_t;
79// TODO Mind the endiannes, changes are in the first byte of the second word
80// status is in the first byte of the first word
81#define USB_HUB_STATUS_OVER_CURRENT \
82 (1 << (USB_HUB_FEATURE_HUB_OVER_CURRENT))
83#define USB_HUB_STATUS_LOCAL_POWER \
84 (1 << (USB_HUB_FEATURE_HUB_LOCAL_POWER))
85
86#define USB_HUB_STATUS_C_OVER_CURRENT \
87 (1 << (16 + USB_HUB_FEATURE_C_HUB_OVER_CURRENT))
88#define USB_HUB_STATUS_C_LOCAL_POWER \
89 (1 << (16 + USB_HUB_FEATURE_C_HUB_LOCAL_POWER))
90
91/**
92 * set the device request to be a port feature enable request
93 * @param request
94 * @param port
95 * @param feature_selector
96 */
97static inline void usb_hub_set_enable_port_feature_request(
98 usb_device_request_setup_packet_t *request, uint16_t port,
99 uint16_t feature_selector) {
100 request->index = port;
101 request->request_type = USB_HUB_REQ_TYPE_SET_PORT_FEATURE;
102 request->request = USB_HUB_REQUEST_SET_FEATURE;
103 request->value = feature_selector;
104 request->length = 0;
105}
106
107/**
108 * set the device request to be a port feature clear request
109 * @param request
110 * @param port
111 * @param feature_selector
112 */
113static inline void usb_hub_set_disable_port_feature_request(
114 usb_device_request_setup_packet_t *request, uint16_t port,
115 uint16_t feature_selector
116 ) {
117 request->index = port;
118 request->request_type = USB_HUB_REQ_TYPE_SET_PORT_FEATURE;
119 request->request = USB_HUB_REQUEST_CLEAR_FEATURE;
120 request->value = feature_selector;
121 request->length = 0;
122}
123
124/**
125 * set the device request to be a port disable request
126 * @param request
127 * @param port
128 */
129static inline void usb_hub_set_reset_port_request(
130 usb_device_request_setup_packet_t *request, uint16_t port
131 ) {
132 request->index = port;
133 request->request_type = USB_HUB_REQ_TYPE_SET_PORT_FEATURE;
134 request->request = USB_HUB_REQUEST_SET_FEATURE;
135 request->value = USB_HUB_FEATURE_PORT_RESET;
136 request->length = 0;
137}
138
139/**
140 * get i`th bit of port status
141 *
142 * @param status
143 * @param idx
144 * @return
145 */
146static inline bool usb_port_is_status(usb_port_status_t status, int idx) {
147 return (status & (1 << idx)) != 0;
148}
149
150/**
151 * speed getter for port status
152 *
153 * @param status
154 * @return speed of usb device (for more see usb specification)
155 */
156static inline usb_speed_t usb_port_speed(usb_port_status_t status) {
157 if ((status & USB_HUB_PORT_STATUS_LOW_SPEED) != 0)
158 return USB_SPEED_LOW;
159 if ((status & USB_HUB_PORT_STATUS_HIGH_SPEED) != 0)
160 return USB_SPEED_HIGH;
161 return USB_SPEED_FULL;
162}
163
164
165
166#endif /* HUB_PORT_STATUS_H */
167/**
168 * @}
169 */
Note: See TracBrowser for help on using the repository browser.