xref: /qemu/include/hw/usb/uhci-regs.h (revision 95dd1c4d7a46d4a21fe870bb8654aeae338de85c)
19a1d111eSGerd Hoffmann #ifndef HW_USB_UHCI_REGS_H
29a1d111eSGerd Hoffmann #define HW_USB_UHCI_REGS_H 1
39a1d111eSGerd Hoffmann 
49a1d111eSGerd Hoffmann #define UHCI_CMD_FGR      (1 << 4)
59a1d111eSGerd Hoffmann #define UHCI_CMD_EGSM     (1 << 3)
69a1d111eSGerd Hoffmann #define UHCI_CMD_GRESET   (1 << 2)
79a1d111eSGerd Hoffmann #define UHCI_CMD_HCRESET  (1 << 1)
89a1d111eSGerd Hoffmann #define UHCI_CMD_RS       (1 << 0)
99a1d111eSGerd Hoffmann 
109a1d111eSGerd Hoffmann #define UHCI_STS_HCHALTED (1 << 5)
119a1d111eSGerd Hoffmann #define UHCI_STS_HCPERR   (1 << 4)
129a1d111eSGerd Hoffmann #define UHCI_STS_HSERR    (1 << 3)
139a1d111eSGerd Hoffmann #define UHCI_STS_RD       (1 << 2)
149a1d111eSGerd Hoffmann #define UHCI_STS_USBERR   (1 << 1)
159a1d111eSGerd Hoffmann #define UHCI_STS_USBINT   (1 << 0)
169a1d111eSGerd Hoffmann 
179a1d111eSGerd Hoffmann #define TD_CTRL_SPD     (1 << 29)
189a1d111eSGerd Hoffmann #define TD_CTRL_ERROR_SHIFT  27
199a1d111eSGerd Hoffmann #define TD_CTRL_IOS     (1 << 25)
209a1d111eSGerd Hoffmann #define TD_CTRL_IOC     (1 << 24)
219a1d111eSGerd Hoffmann #define TD_CTRL_ACTIVE  (1 << 23)
229a1d111eSGerd Hoffmann #define TD_CTRL_STALL   (1 << 22)
239a1d111eSGerd Hoffmann #define TD_CTRL_BABBLE  (1 << 20)
249a1d111eSGerd Hoffmann #define TD_CTRL_NAK     (1 << 19)
259a1d111eSGerd Hoffmann #define TD_CTRL_TIMEOUT (1 << 18)
269a1d111eSGerd Hoffmann 
279a1d111eSGerd Hoffmann #define UHCI_PORT_SUSPEND (1 << 12)
289a1d111eSGerd Hoffmann #define UHCI_PORT_RESET (1 << 9)
299a1d111eSGerd Hoffmann #define UHCI_PORT_LSDA  (1 << 8)
30*95dd1c4dSGerd Hoffmann #define UHCI_PORT_RSVD1 (1 << 7)
319a1d111eSGerd Hoffmann #define UHCI_PORT_RD    (1 << 6)
329a1d111eSGerd Hoffmann #define UHCI_PORT_ENC   (1 << 3)
339a1d111eSGerd Hoffmann #define UHCI_PORT_EN    (1 << 2)
349a1d111eSGerd Hoffmann #define UHCI_PORT_CSC   (1 << 1)
359a1d111eSGerd Hoffmann #define UHCI_PORT_CCS   (1 << 0)
369a1d111eSGerd Hoffmann 
379a1d111eSGerd Hoffmann #define UHCI_PORT_READ_ONLY    (0x1bb)
389a1d111eSGerd Hoffmann #define UHCI_PORT_WRITE_CLEAR  (UHCI_PORT_CSC | UHCI_PORT_ENC)
399a1d111eSGerd Hoffmann 
409a1d111eSGerd Hoffmann #endif /* HW_USB_UHCI_REGS_H */
41