1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 #ifndef __DEVICE_XHCI_H__
4 #define __DEVICE_XHCI_H__
7 #include <device/device.h>
9 #define XHCI_HCCPARAMS1_XECP 0x12
11 #define XHCI_ECP_CAP_ID_LEGACY 1
12 #define XHCI_ECP_CAP_ID_SUPP 2
15 /* Wake on disconnect enable */
16 #define XHCI_STATUS_WDE BIT(26)
17 /* Wake on connect enable */
18 #define XHCI_STATUS_WCE BIT(25)
19 /* Port link status change */
20 #define XHCI_STATUS_PLC BIT(22)
21 /* Connect status change */
22 #define XHCI_STATUS_CSC BIT(17)
23 /* Port link status */
24 #define XHCI_STATUS_PLS_SHIFT 5
25 #define XHCI_STATUS_PLS_MASK (0xf << XHCI_STATUS_PLS_SHIFT)
26 #define XHCI_STATUS_PLS_RESUME (15 << XHCI_STATUS_PLS_SHIFT)
28 static inline bool xhci_portsc_csc(uint32_t port_status
)
30 return port_status
& XHCI_STATUS_CSC
;
33 static inline bool xhci_portsc_wake_capable(uint32_t port_status
)
35 return (port_status
& XHCI_STATUS_WCE
) |
36 (port_status
& XHCI_STATUS_WDE
);
39 static inline bool xhci_portsc_plc(uint32_t port_status
)
41 return port_status
& XHCI_STATUS_PLC
;
44 static inline bool xhci_portsc_resume(uint32_t port_status
)
46 return (port_status
& XHCI_STATUS_PLS_MASK
) == XHCI_STATUS_PLS_RESUME
;
50 struct xhci_supported_protocol
{
55 uint32_t next_ptr
: 8;
56 uint32_t minor_rev
: 8;
57 uint32_t major_rev
: 8;
67 uint32_t port_offset
: 8;
68 uint32_t port_count
: 8;
69 uint32_t reserved
: 12;
70 uint32_t protocol_speed_id_count
: 4;
77 /* cap_id is used to select the correct struct in the union. */
79 struct xhci_supported_protocol supported_protocol
;
84 * struct xhci_usb_info - Data containing number of USB ports & offset.
85 * @usb2_port_status_reg: Offset to USB2 port status register.
86 * @num_usb2_ports: Number of USB2 ports.
87 * @usb3_port_status_reg: Offset to USB3 port status register.
88 * @num_usb3_ports: Number of USB3 ports.
90 struct xhci_usb_info
{
91 uint32_t usb2_port_status_reg
;
92 uint32_t num_usb2_ports
;
93 uint32_t usb3_port_status_reg
;
94 uint32_t num_usb3_ports
;
97 struct xhci_capability_regs
{
111 * Iterates over the xHCI Extended Capabilities List.
113 enum cb_err
xhci_resource_for_each_ext_cap(const struct resource
*res
, void *context
,
114 void (*callback
)(void *context
,
115 const struct xhci_ext_cap
*cap
));
116 enum cb_err
xhci_for_each_ext_cap(const struct device
*device
, void *context
,
117 void (*callback
)(void *context
,
118 const struct xhci_ext_cap
*cap
));
121 * Helper method that iterates over only the USB supported capabilities structures in the
122 * xHCI Extended Capabilities List.
124 enum cb_err
xhci_for_each_supported_usb_cap(
125 const struct device
*device
, void *context
,
126 void (*callback
)(void *context
, const struct xhci_supported_protocol
*data
));
127 enum cb_err
xhci_resource_for_each_supported_usb_cap(
128 const struct resource
*res
, void *context
,
129 void (*callback
)(void *context
, const struct xhci_supported_protocol
*data
));
131 void xhci_print_supported_protocol(const struct xhci_supported_protocol
*supported_protocol
);
133 #endif /* __DEVICE_XHCI_H__ */