From 8e257816b0cb267b0cdfb819449d39f1689e0aa4 Mon Sep 17 00:00:00 2001 From: Brad Hards Date: Thu, 2 Jun 2011 11:18:46 +1000 Subject: [PATCH] usb: Add defines for USB Serial Bus Release Number register Signed-off-by: Brad Hards Signed-off-by: Gerd Hoffmann --- hw/usb.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hw/usb.h b/hw/usb.h index 609720893d..06ce05826a 100644 --- a/hw/usb.h +++ b/hw/usb.h @@ -26,6 +26,12 @@ #include "qdev.h" #include "qemu-queue.h" +/* Constants related to the USB / PCI interaction */ +#define USB_SBRN 0x60 /* Serial Bus Release Number Register */ +#define USB_RELEASE_1 0x10 /* USB 1.0 */ +#define USB_RELEASE_2 0x20 /* USB 2.0 */ +#define USB_RELEASE_3 0x30 /* USB 3.0 */ + #define USB_TOKEN_SETUP 0x2d #define USB_TOKEN_IN 0x69 /* device -> host */ #define USB_TOKEN_OUT 0xe1 /* host -> device */