Changes in uspace/drv/uhci-hcd/uhci_hc.h [a9f91cd:ff34e5a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/uhci_hc.h
ra9f91cd rff34e5a 27 27 */ 28 28 29 /** @addtogroup drvusbuhci 29 /** @addtogroup drvusbuhcihc 30 30 * @{ 31 31 */ 32 32 /** @file 33 * @brief UHCI driver33 * @brief UHCI host controller driver structure 34 34 */ 35 35 #ifndef DRV_UHCI_UHCI_HC_H … … 99 99 fid_t cleaner; 100 100 fid_t debug_checker; 101 bool hw_interrupts; 101 102 102 103 ddf_fun_t *ddf_instance; 103 104 } uhci_hc_t; 104 105 105 /* init uhci specifics in device.driver_data */ 106 int uhci_hc_init(uhci_hc_t *instance, ddf_fun_t *fun, void *regs, size_t reg_size); 107 108 static inline void uhci_hc_fini(uhci_hc_t *instance) { /* TODO: implement*/ }; 106 int uhci_hc_init(uhci_hc_t *instance, ddf_fun_t *fun, 107 void *regs, size_t reg_size, bool interupts); 109 108 110 109 int uhci_hc_schedule(uhci_hc_t *instance, batch_t *batch); … … 112 111 void uhci_hc_interrupt(uhci_hc_t *instance, uint16_t status); 113 112 113 /** Safely dispose host controller internal structures 114 * 115 * @param[in] instance Host controller structure to use. 116 */ 117 static inline void uhci_hc_fini(uhci_hc_t *instance) { /* TODO: implement*/ }; 118 119 /** Get and cast pointer to the driver data 120 * 121 * @param[in] fun DDF function pointer 122 * @return cast pointer to driver_data 123 */ 114 124 static inline uhci_hc_t * fun_to_uhci_hc(ddf_fun_t *fun) 115 125 { return (uhci_hc_t*)fun->driver_data; }
Note:
See TracChangeset
for help on using the changeset viewer.