source: mainline/uspace/drv/bus/usb/usbhub/status.h@ 456c086

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 456c086 was 8d2dd7f2, checked in by Jakub Jermar <jakub@…>, 8 years ago

Reduce the number of files that include <sys/types.h>

  • 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 */
[58563585]29
[281ebae]30/** @addtogroup drvusbhub
31 * @{
32 */
[b5ec347]33
[aff1880]34#ifndef HUB_STATUS_H
35#define HUB_STATUS_H
[b5ec347]36
[3e6a98c5]37#include <stdbool.h>
[8d2dd7f2]38#include <stdint.h>
[7d521e24]39#include <usb/dev/request.h>
[b5ec347]40
41/**
42 * structure holding port status and changes flags.
43 * should not be accessed directly, use supplied getter/setter methods.
44 *
[fd3abb6d]45 * For more information refer to tables 11-15 and 11-16 in
46 * "Universal Serial Bus Specification Revision 1.1" pages 274 and 277
47 * (290 and 293 in pdf)
[b5ec347]48 *
49 */
[98d06b8]50typedef uint32_t usb_port_status_t;
[a61c683]51#define USB_HUB_PORT_STATUS_CONNECTION \
52 (uint32_usb2host(1 << (USB_HUB_FEATURE_PORT_CONNECTION)))
53#define USB_HUB_PORT_STATUS_ENABLED \
54 (uint32_usb2host(1 << (USB_HUB_FEATURE_PORT_ENABLE)))
55#define USB_HUB_PORT_STATUS_SUSPEND \
56 (uint32_usb2host(1 << (USB_HUB_FEATURE_PORT_SUSPEND)))
57#define USB_HUB_PORT_STATUS_OC \
58 (uint32_usb2host(1 << (USB_HUB_FEATURE_PORT_OVER_CURRENT)))
59#define USB_HUB_PORT_STATUS_RESET \
60 (uint32_usb2host(1 << (USB_HUB_FEATURE_PORT_RESET)))
61#define USB_HUB_PORT_STATUS_POWER \
62 (uint32_usb2host(1 << (USB_HUB_FEATURE_PORT_POWER)))
63#define USB_HUB_PORT_STATUS_LOW_SPEED \
64 (uint32_usb2host(1 << (USB_HUB_FEATURE_PORT_LOW_SPEED)))
65#define USB_HUB_PORT_STATUS_HIGH_SPEED \
66 (uint32_usb2host(1 << 10))
[4ee5272]67#define USB_HUB_PORT_STATUS_TEST_MODE \
68 (uint32_usb2host(1 << 11))
69#define USB_HUB_PORT_INDICATOR_CONTROL \
70 (uint32_usb2host(1 << 12))
[d6e2938]71
72#define USB_HUB_PORT_C_STATUS_CONNECTION \
[a61c683]73 (uint32_usb2host(1 << (USB_HUB_FEATURE_C_PORT_CONNECTION)))
[d6e2938]74#define USB_HUB_PORT_C_STATUS_ENABLED \
[a61c683]75 (uint32_usb2host(1 << (USB_HUB_FEATURE_C_PORT_ENABLE)))
[d6e2938]76#define USB_HUB_PORT_C_STATUS_SUSPEND \
[a61c683]77 (uint32_usb2host(1 << (USB_HUB_FEATURE_C_PORT_SUSPEND)))
[d6e2938]78#define USB_HUB_PORT_C_STATUS_OC \
[a61c683]79 (uint32_usb2host(1 << (USB_HUB_FEATURE_C_PORT_OVER_CURRENT)))
[d6e2938]80#define USB_HUB_PORT_C_STATUS_RESET \
[a61c683]81 (uint32_usb2host(1 << (USB_HUB_FEATURE_C_PORT_RESET)))
[b5ec347]82
[040ab02]83/**
84 * structure holding hub status and changes flags.
85 *
86 * For more information refer to table 11.16.2.5 in
87 * "Universal Serial Bus Specification Revision 1.1"
88 *
89 */
90typedef uint32_t usb_hub_status_t;
[bf73a02]91#define USB_HUB_STATUS_OVER_CURRENT \
[a61c683]92 (uint32_usb2host(1 << (USB_HUB_FEATURE_HUB_OVER_CURRENT)))
[bf73a02]93#define USB_HUB_STATUS_LOCAL_POWER \
[a61c683]94 (uint32_usb2host(1 << (USB_HUB_FEATURE_HUB_LOCAL_POWER)))
[bf73a02]95
96#define USB_HUB_STATUS_C_OVER_CURRENT \
[a61c683]97 (uint32_usb2host(1 << (16 + USB_HUB_FEATURE_C_HUB_OVER_CURRENT)))
[bf73a02]98#define USB_HUB_STATUS_C_LOCAL_POWER \
[a61c683]99 (uint32_usb2host(1 << (16 + USB_HUB_FEATURE_C_HUB_LOCAL_POWER)))
[040ab02]100
[b5ec347]101
[3dba1ca]102/**
103 * speed getter for port status
104 *
105 * @param status
106 * @return speed of usb device (for more see usb specification)
107 */
[aff1880]108static inline usb_speed_t usb_port_speed(usb_port_status_t status)
109{
[48a31be]110 if ((status & USB_HUB_PORT_STATUS_LOW_SPEED) != 0)
[a7528a16]111 return USB_SPEED_LOW;
[48a31be]112 if ((status & USB_HUB_PORT_STATUS_HIGH_SPEED) != 0)
[a7528a16]113 return USB_SPEED_HIGH;
114 return USB_SPEED_FULL;
115}
116
[58563585]117#endif
118
[281ebae]119/**
120 * @}
121 */
Note: See TracBrowser for help on using the repository browser.