diff options
| author | Tom Rini <[email protected]> | 2020-05-05 14:53:51 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-05-05 14:53:51 -0400 |
| commit | 1259567ae3cd4c84acb9db6ab1fadcdcd26968a9 (patch) | |
| tree | d240af5bf76d4bb4a3c959a417151e11d9003098 /include/usb | |
| parent | 9a3cc7b6d416fddfa6058b731fe5c9055dba6918 (diff) | |
| parent | c01a7773a5e71322d3458f20560344ff475cd26c (diff) | |
Merge git://git.denx.de/u-boot-usb
- MediaTek USB host support
Diffstat (limited to 'include/usb')
| -rw-r--r-- | include/usb/xhci.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/usb/xhci.h b/include/usb/xhci.h index 60175044884..20e4a21066f 100644 --- a/include/usb/xhci.h +++ b/include/usb/xhci.h @@ -670,6 +670,9 @@ struct xhci_ep_ctx { /* deq bitmasks */ #define EP_CTX_CYCLE_MASK (1 << 0) +/* reserved[0] bitmasks, MediaTek xHCI used */ +#define EP_BPKTS(p) (((p) & 0x7f) << 0) +#define EP_BBM(p) (((p) & 0x1) << 11) /** * struct xhci_input_control_context |
