12cace4c5a
- deactivate seek timer when operation is cancelled. - set async packet mode with a separate method at connection time. - renamed some variables and prepared seek emulation for USB disk writes.
230 lines
6.8 KiB
C++
230 lines
6.8 KiB
C++
/////////////////////////////////////////////////////////////////////////
|
|
// $Id$
|
|
/////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Generic USB emulation code
|
|
//
|
|
// Copyright (c) 2005 Fabrice Bellard
|
|
// Copyright (C) 2009 Benjamin D Lunt (fys at frontiernet net)
|
|
// 2009-2014 The Bochs Project
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef BX_IODEV_USB_COMMON_H
|
|
#define BX_IODEV_USB_COMMON_H
|
|
|
|
#define USB_TOKEN_IN 0x69
|
|
#define USB_TOKEN_OUT 0xE1
|
|
#define USB_TOKEN_SETUP 0x2D
|
|
|
|
#define USB_MSG_ATTACH 0x100
|
|
#define USB_MSG_DETACH 0x101
|
|
#define USB_MSG_RESET 0x102
|
|
|
|
#define USB_RET_NODEV (-1)
|
|
#define USB_RET_NAK (-2)
|
|
#define USB_RET_STALL (-3)
|
|
#define USB_RET_BABBLE (-4)
|
|
#define USB_RET_ASYNC (-5)
|
|
|
|
#define USB_SPEED_LOW 0
|
|
#define USB_SPEED_FULL 1
|
|
#define USB_SPEED_HIGH 2
|
|
#define USB_SPEED_SUPER 3
|
|
|
|
#define USB_STATE_NOTATTACHED 0
|
|
#define USB_STATE_ATTACHED 1
|
|
//#define USB_STATE_POWERED 2
|
|
#define USB_STATE_DEFAULT 3
|
|
#define USB_STATE_ADDRESS 4
|
|
#define USB_STATE_CONFIGURED 5
|
|
#define USB_STATE_SUSPENDED 6
|
|
|
|
#define USB_DIR_OUT 0
|
|
#define USB_DIR_IN 0x80
|
|
|
|
#define USB_TYPE_MASK (0x03 << 5)
|
|
#define USB_TYPE_STANDARD (0x00 << 5)
|
|
#define USB_TYPE_CLASS (0x01 << 5)
|
|
#define USB_TYPE_VENDOR (0x02 << 5)
|
|
#define USB_TYPE_RESERVED (0x03 << 5)
|
|
|
|
#define USB_RECIP_MASK 0x1f
|
|
#define USB_RECIP_DEVICE 0x00
|
|
#define USB_RECIP_INTERFACE 0x01
|
|
#define USB_RECIP_ENDPOINT 0x02
|
|
#define USB_RECIP_OTHER 0x03
|
|
|
|
#define DeviceRequest ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_DEVICE)<<8)
|
|
#define DeviceOutRequest ((USB_DIR_OUT|USB_TYPE_STANDARD|USB_RECIP_DEVICE)<<8)
|
|
#define InterfaceRequest \
|
|
((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_INTERFACE)<<8)
|
|
#define InterfaceInClassRequest \
|
|
((USB_DIR_IN|USB_TYPE_CLASS|USB_RECIP_INTERFACE)<<8)
|
|
#define InterfaceOutRequest \
|
|
((USB_DIR_OUT|USB_TYPE_STANDARD|USB_RECIP_INTERFACE)<<8)
|
|
#define InterfaceOutClassRequest \
|
|
((USB_DIR_OUT|USB_TYPE_CLASS|USB_RECIP_INTERFACE)<<8)
|
|
#define EndpointRequest ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT)<<8)
|
|
#define EndpointOutRequest \
|
|
((USB_DIR_OUT|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT)<<8)
|
|
|
|
#define USB_REQ_GET_STATUS 0x00
|
|
#define USB_REQ_CLEAR_FEATURE 0x01
|
|
#define USB_REQ_SET_FEATURE 0x03
|
|
#define USB_REQ_SET_ADDRESS 0x05
|
|
#define USB_REQ_GET_DESCRIPTOR 0x06
|
|
#define USB_REQ_SET_DESCRIPTOR 0x07
|
|
#define USB_REQ_GET_CONFIGURATION 0x08
|
|
#define USB_REQ_SET_CONFIGURATION 0x09
|
|
#define USB_REQ_GET_INTERFACE 0x0A
|
|
#define USB_REQ_SET_INTERFACE 0x0B
|
|
#define USB_REQ_SYNCH_FRAME 0x0C
|
|
#define USB_REQ_SET_SEL 0x30
|
|
|
|
#define USB_DEVICE_SELF_POWERED 0
|
|
#define USB_DEVICE_REMOTE_WAKEUP 1
|
|
#define USB_DEVICE_U1_ENABLE 48
|
|
#define USB_DEVICE_U2_ENABLE 49
|
|
|
|
// USB 1.1
|
|
#define USB_DT_DEVICE 0x01
|
|
#define USB_DT_CONFIG 0x02
|
|
#define USB_DT_STRING 0x03
|
|
#define USB_DT_INTERFACE 0x04
|
|
#define USB_DT_ENDPOINT 0x05
|
|
// USB 2.0
|
|
#define USB_DT_DEVICE_QUALIFIER 0x06
|
|
#define USB_DT_OTHER_SPEED_CONFIG 0x07
|
|
#define USB_DT_INTERFACE_POWER 0x08
|
|
// USB 3.0
|
|
#define USB_DT_BIN_DEV_OBJ_STORE 0x0F
|
|
|
|
typedef struct USBPacket USBPacket;
|
|
|
|
typedef void USBCallback(USBPacket *packet, void *dev);
|
|
|
|
class usb_device_c;
|
|
|
|
struct USBPacket {
|
|
int pid;
|
|
Bit8u devaddr;
|
|
Bit8u devep;
|
|
Bit8u *data;
|
|
int len;
|
|
USBCallback *complete_cb;
|
|
void *complete_dev;
|
|
usb_device_c *dev;
|
|
};
|
|
|
|
enum usbdev_type {
|
|
USB_DEV_TYPE_NONE=0,
|
|
USB_DEV_TYPE_MOUSE,
|
|
USB_DEV_TYPE_TABLET,
|
|
USB_DEV_TYPE_KEYPAD,
|
|
USB_DEV_TYPE_DISK,
|
|
USB_DEV_TYPE_CDROM,
|
|
USB_DEV_TYPE_HUB,
|
|
USB_DEV_TYPE_PRINTER,
|
|
USB_DEV_TYPE_FLOPPY
|
|
};
|
|
|
|
class bx_usb_devctl_c : public bx_usb_devctl_stub_c {
|
|
public:
|
|
bx_usb_devctl_c();
|
|
virtual ~bx_usb_devctl_c() {}
|
|
virtual int init_device(bx_list_c *portconf, logfunctions *hub, void **dev, bx_list_c *sr_list);
|
|
virtual void usb_send_msg(void *dev, int msg);
|
|
private:
|
|
void parse_port_options(usb_device_c *dev, bx_list_c *portconf);
|
|
};
|
|
|
|
class usb_device_c : public logfunctions {
|
|
public:
|
|
usb_device_c(void);
|
|
virtual ~usb_device_c() {}
|
|
|
|
virtual bx_bool init() {return 1;}
|
|
virtual const char* get_info() {return NULL;}
|
|
|
|
virtual int handle_packet(USBPacket *p);
|
|
virtual void handle_reset() {}
|
|
virtual int handle_control(int request, int value, int index, int length, Bit8u *data) {return 0;}
|
|
virtual int handle_data(USBPacket *p) {return 0;}
|
|
void register_state(bx_list_c *parent);
|
|
virtual void register_state_specific(bx_list_c *parent) {}
|
|
virtual void after_restore_state() {}
|
|
virtual void cancel_packet(USBPacket *p) {}
|
|
virtual bx_bool set_option(const char *option) {return 0;}
|
|
virtual void runtime_config() {}
|
|
|
|
bx_bool get_connected() {return d.connected;}
|
|
usbdev_type get_type() {return d.type;}
|
|
int get_maxspeed() {return d.maxspeed;}
|
|
int get_speed() {return d.speed;}
|
|
void set_speed(int speed) {d.speed = speed;}
|
|
Bit8u get_address() {return d.addr;}
|
|
void set_async_mode(bx_bool async) {d.async_mode = async;}
|
|
void set_debug_mode();
|
|
|
|
void usb_send_msg(int msg);
|
|
|
|
protected:
|
|
struct {
|
|
enum usbdev_type type;
|
|
bx_bool connected;
|
|
int maxspeed;
|
|
int speed;
|
|
Bit8u addr;
|
|
Bit8u config;
|
|
char devname[32];
|
|
|
|
int state;
|
|
Bit8u setup_buf[8];
|
|
Bit8u data_buf[1024];
|
|
int remote_wakeup;
|
|
int setup_state;
|
|
int setup_len;
|
|
int setup_index;
|
|
bx_bool stall;
|
|
bx_bool async_mode;
|
|
} d;
|
|
|
|
void usb_dump_packet(Bit8u *data, unsigned size);
|
|
int set_usb_string(Bit8u *buf, const char *str);
|
|
};
|
|
|
|
static BX_CPP_INLINE void usb_defer_packet(USBPacket *p, usb_device_c *dev)
|
|
{
|
|
p->dev = dev;
|
|
}
|
|
|
|
static BX_CPP_INLINE void usb_cancel_packet(USBPacket *p)
|
|
{
|
|
p->dev->cancel_packet(p);
|
|
}
|
|
|
|
static BX_CPP_INLINE void usb_packet_complete(USBPacket *p)
|
|
{
|
|
p->complete_cb(p, p->complete_dev);
|
|
}
|
|
|
|
#endif
|