mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
Rearrange SCSI disk emulation code.
Add USB mass storage device emulation. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1940 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
e6f3e5e016
commit
2e5d83bbef
13 changed files with 1080 additions and 470 deletions
6
hw/usb.h
6
hw/usb.h
|
@ -29,6 +29,7 @@
|
|||
#define USB_MSG_ATTACH 0x100
|
||||
#define USB_MSG_DETACH 0x101
|
||||
#define USB_MSG_RESET 0x102
|
||||
#define USB_MSG_DESTROY 0x103
|
||||
|
||||
#define USB_RET_NODEV (-1)
|
||||
#define USB_RET_NAK (-2)
|
||||
|
@ -121,7 +122,7 @@ struct USBDevice {
|
|||
/* The following fields are used by the generic USB device
|
||||
layer. They are here just to avoid creating a new structure for
|
||||
them. */
|
||||
void (*handle_reset)(USBDevice *dev);
|
||||
void (*handle_reset)(USBDevice *dev, int destroy);
|
||||
int (*handle_control)(USBDevice *dev, int request, int value,
|
||||
int index, int length, uint8_t *data);
|
||||
int (*handle_data)(USBDevice *dev, int pid, uint8_t devep,
|
||||
|
@ -170,3 +171,6 @@ void usb_host_info(void);
|
|||
/* usb-hid.c */
|
||||
USBDevice *usb_mouse_init(void);
|
||||
USBDevice *usb_tablet_init(void);
|
||||
|
||||
/* usb-msd.c */
|
||||
USBDevice *usb_msd_init(const char *filename);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue