Changeset b854e56 in mainline for uspace/drv/ohci/hw_struct/transfer_descriptor.h
- Timestamp:
- 2011-04-08T22:25:32Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e42dd32
- Parents:
- 7786cea
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/ohci/hw_struct/transfer_descriptor.h
r7786cea rb854e56 39 39 #include "completion_codes.h" 40 40 41 /* OHCI TDs can handle up to 8KB buffers */ 42 #define OHCI_TD_MAX_TRANSFER (8 * 1024) 43 41 44 typedef struct td { 42 45 volatile uint32_t status; … … 52 55 #define TD_STATUS_T_MASK (0x3) /* data toggle 1x = use ED toggle carry */ 53 56 #define TD_STATUS_T_SHIFT (24) 57 #define TD_STATUS_T_0 (0x0) 58 #define TD_STATUS_T_1 (0x1) 59 #define TD_STATUS_T_USE_EP (0x1) 54 60 #define TD_STATUS_EC_MASK (0x3) /* error count */ 55 61 #define TD_STATUS_EC_SHIFT (26) … … 64 70 volatile uint32_t be; /* buffer end, address of the last byte */ 65 71 } __attribute__((packed)) td_t; 72 73 void td_init( 74 td_t *instance, usb_direction_t dir, void *buffer, size_t size, int toggle); 75 76 inline static void td_set_next(td_t *instance, uint32_t next) 77 { 78 assert(instance); 79 instance->next = next & TD_NEXT_PTR_MASK; 80 } 66 81 #endif 67 82 /**
Note:
See TracChangeset
for help on using the changeset viewer.