diff options
Diffstat (limited to 'drivers/usb/host/xhci.h')
-rw-r--r-- | drivers/usb/host/xhci.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/usb/host/xhci.h b/drivers/usb/host/xhci.h index 1a6fd997c343..06e07616631f 100644 --- a/drivers/usb/host/xhci.h +++ b/drivers/usb/host/xhci.h | |||
@@ -889,6 +889,9 @@ union xhci_trb { | |||
889 | */ | 889 | */ |
890 | #define TRBS_PER_SEGMENT 64 | 890 | #define TRBS_PER_SEGMENT 64 |
891 | #define SEGMENT_SIZE (TRBS_PER_SEGMENT*16) | 891 | #define SEGMENT_SIZE (TRBS_PER_SEGMENT*16) |
892 | /* TRB buffer pointers can't cross 64KB boundaries */ | ||
893 | #define TRB_MAX_BUFF_SHIFT 16 | ||
894 | #define TRB_MAX_BUFF_SIZE (1 << TRB_MAX_BUFF_SHIFT) | ||
892 | 895 | ||
893 | struct xhci_td { | 896 | struct xhci_td { |
894 | struct list_head td_list; | 897 | struct list_head td_list; |
@@ -1117,6 +1120,7 @@ void set_hc_event_deq(struct xhci_hcd *xhci); | |||
1117 | int queue_slot_control(struct xhci_hcd *xhci, u32 trb_type, u32 slot_id); | 1120 | int queue_slot_control(struct xhci_hcd *xhci, u32 trb_type, u32 slot_id); |
1118 | int queue_address_device(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr, u32 slot_id); | 1121 | int queue_address_device(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr, u32 slot_id); |
1119 | int queue_ctrl_tx(struct xhci_hcd *xhci, gfp_t mem_flags, struct urb *urb, int slot_id, unsigned int ep_index); | 1122 | int queue_ctrl_tx(struct xhci_hcd *xhci, gfp_t mem_flags, struct urb *urb, int slot_id, unsigned int ep_index); |
1123 | int queue_bulk_tx(struct xhci_hcd *xhci, gfp_t mem_flags, struct urb *urb, int slot_id, unsigned int ep_index); | ||
1120 | int queue_configure_endpoint(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr, u32 slot_id); | 1124 | int queue_configure_endpoint(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr, u32 slot_id); |
1121 | 1125 | ||
1122 | /* xHCI roothub code */ | 1126 | /* xHCI roothub code */ |