Changeset 4d37c42 in mainline
- Timestamp:
- 2011-02-25T17:17:58Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 013e4ca4
- Parents:
- f20f9e2
- Location:
- uspace/drv/uhci-rhd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-rhd/port.c
rf20f9e2 r4d37c42 34 34 #include <errno.h> 35 35 #include <str_error.h> 36 #include <fibril_synch.h> 36 37 37 38 #include <usb/usb.h> /* usb_address_t */ … … 100 101 101 102 /* debug print */ 103 static fibril_mutex_t dbg_mtx = FIBRIL_MUTEX_INITIALIZER(dbg_mtx); 104 fibril_mutex_lock(&dbg_mtx); 102 105 usb_log_debug("Port %d status at %p: 0x%04x.\n", 103 106 port_instance->number, port_instance->address, port_status); 104 107 print_port_status(port_status); 108 fibril_mutex_unlock(&dbg_mtx); 105 109 106 110 if (port_status & STATUS_CONNECTED_CHANGED) { … … 120 124 /* new device */ 121 125 uhci_port_new_device(port_instance); 126 } else { 127 port_status_write(port_instance->address, STATUS_CONNECTED_CHANGED); 122 128 } 123 129 -
uspace/drv/uhci-rhd/port_status.c
rf20f9e2 r4d37c42 41 41 struct flag_name 42 42 { 43 u nsignedflag;43 uint16_t flag; 44 44 const char *name; 45 45 }; … … 65 65 for (;i < sizeof(flags)/sizeof(struct flag_name); ++i) { 66 66 usb_log_debug2("\t%s status: %s.\n", flags[i].name, 67 value & flags[i].flag? "YES" : "NO");67 ((value & flags[i].flag) != 0) ? "YES" : "NO"); 68 68 } 69 69 } -
uspace/drv/uhci-rhd/port_status.h
rf20f9e2 r4d37c42 41 41 typedef uint16_t port_status_t; 42 42 43 enum { 44 STATUS_CONNECTED = 1 << 0, 45 STATUS_CONNECTED_CHANGED = 1 << 1, 46 STATUS_ENABLED = 1 << 2, 47 STATUS_ENABLED_CHANGED = 1 << 3, 48 STATUS_LINE_D_PLUS = 1 << 4, 49 STATUS_LINE_D_MINUS = 1 << 5, 50 STATUS_RESUME = 1 << 6, 51 STATUS_ALWAYS_ONE = 1 << 7, 43 #define STATUS_CONNECTED (1 << 0) 44 #define STATUS_CONNECTED_CHANGED (1 << 1) 45 #define STATUS_ENABLED (1 << 2) 46 #define STATUS_ENABLED_CHANGED (1 << 3) 47 #define STATUS_LINE_D_PLUS (1 << 4) 48 #define STATUS_LINE_D_MINUS (1 << 5) 49 #define STATUS_RESUME (1 << 6) 50 #define STATUS_ALWAYS_ONE (1 << 7) 52 51 53 STATUS_LOW_SPEED = 1 << 8, 54 STATUS_IN_RESET = 1 << 9, 55 STATUS_SUSPEND = 1 << 12, 56 }; 52 #define STATUS_LOW_SPEED (1 << 8) 53 #define STATUS_IN_RESET (1 << 9) 54 #define STATUS_SUSPEND (1 << 12) 57 55 58 56 static inline port_status_t port_status_read(port_status_t * address)
Note:
See TracChangeset
for help on using the changeset viewer.