Changeset af60409 in mainline for uspace/drv/bus
- Timestamp:
- 2018-03-26T20:04:11Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- eb748a0
- Parents:
- b752a31
- Location:
- uspace/drv/bus/usb
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/ehci_regs.h
rb752a31 raf60409 48 48 typedef struct ehci_cap_regs { 49 49 const ioport8_t caplength; 50 PADD8 ;50 PADD8(1); 51 51 const ioport16_t hciversion; 52 52 const ioport32_t hcsparams; … … 126 126 #define USB_ASYNCLIST_MASK 0xfffffff0 127 127 128 PADD32 [9];128 PADD32(9); 129 129 130 130 ioport32_t configflag; -
uspace/drv/bus/usb/ohci/hw_struct/hcca.h
rb752a31 raf60409 54 54 /** Frame number. */ 55 55 uint16_t frame_number; 56 PADD16 ;56 PADD16(1); 57 57 /** Pointer to the last completed TD. (useless) */ 58 58 uint32_t done_head; 59 59 /** Padding to make the size 256B */ 60 PADD32 [30];60 PADD32(30); 61 61 } hcca_t; 62 62 -
uspace/drv/bus/usb/uhci/hc.h
rb752a31 raf60409 91 91 ioport8_t sofmod; 92 92 93 PADD8 [3];93 PADD8(3); 94 94 ioport16_t ports[]; 95 95 } uhci_regs_t; -
uspace/drv/bus/usb/xhci/hw_struct/regs.h
rb752a31 raf60409 140 140 const ioport8_t caplength; 141 141 142 const PADD8 ;142 const PADD8(1); 143 143 144 144 /* BCD of specification version */ … … 360 360 ioport32_t pagesize; 361 361 362 PADD32 [2];362 PADD32(2); 363 363 364 364 /* … … 373 373 ioport64_t crcr; 374 374 375 PADD32 [4];375 PADD32(4); 376 376 377 377 ioport64_t dcbaap; … … 385 385 386 386 /* Offset of portrs from op_regs addr is 0x400. */ 387 PADD32 [241];387 PADD32(241); 388 388 389 389 /* … … 452 452 ioport32_t erstsz; 453 453 454 PADD32 ;454 PADD32(1); 455 455 456 456 ioport64_t erstba; … … 480 480 ioport32_t mfindex; 481 481 482 PADD32 [7];482 PADD32(7); 483 483 484 484 xhci_interrupter_regs_t ir [];
Note:
See TracChangeset
for help on using the changeset viewer.