2007-03-18 14:17:28 +03:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2009-03-01 22:29:36 +03:00
|
|
|
// $Id: usb_msd.h,v 1.11 2009-03-01 19:29:36 vruppert Exp $
|
2007-03-18 14:17:28 +03:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2009-01-18 16:11:27 +03:00
|
|
|
// Copyright (C) 2009 Volker Ruppert
|
2007-03-18 14:17:28 +03:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
2009-02-08 12:05:52 +03:00
|
|
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2009-02-08 00:05:31 +03:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2007-03-18 14:17:28 +03:00
|
|
|
|
|
|
|
// USB mass storage device support ported from the Qemu project
|
|
|
|
|
|
|
|
#ifndef BX_IODEV_USB_MSD_H
|
|
|
|
#define BX_IODEV_USB_MSD_H
|
|
|
|
|
2008-12-30 12:17:09 +03:00
|
|
|
class device_image_t;
|
2007-03-18 14:17:28 +03:00
|
|
|
class scsi_device_t;
|
|
|
|
|
2009-01-19 12:48:12 +03:00
|
|
|
class usb_msd_device_c : public usb_device_c {
|
2007-03-18 14:17:28 +03:00
|
|
|
public:
|
2009-03-01 22:29:36 +03:00
|
|
|
usb_msd_device_c(const char *filename);
|
2009-01-19 12:48:12 +03:00
|
|
|
virtual ~usb_msd_device_c(void);
|
2007-03-18 14:17:28 +03:00
|
|
|
|
2009-03-01 22:29:36 +03:00
|
|
|
bx_bool init();
|
|
|
|
const char* get_path() {return s.fname;}
|
2007-03-18 14:17:28 +03:00
|
|
|
virtual void handle_reset();
|
|
|
|
virtual int handle_control(int request, int value, int index, int length, Bit8u *data);
|
|
|
|
virtual int handle_data(USBPacket *p);
|
2007-04-09 13:04:54 +04:00
|
|
|
virtual void register_state_specific(bx_list_c *parent);
|
2007-09-28 23:52:08 +04:00
|
|
|
|
2007-03-18 14:17:28 +03:00
|
|
|
protected:
|
|
|
|
void copy_data();
|
|
|
|
void send_status();
|
|
|
|
static void usb_msd_command_complete(void *this_ptr, int reason, Bit32u tag, Bit32u arg);
|
|
|
|
void command_complete(int reason, Bit32u tag, Bit32u arg);
|
|
|
|
|
|
|
|
private:
|
2007-03-24 14:43:41 +03:00
|
|
|
struct {
|
2007-04-09 13:04:54 +04:00
|
|
|
Bit8u mode;
|
2007-03-24 14:43:41 +03:00
|
|
|
Bit32u scsi_len;
|
|
|
|
Bit8u *scsi_buf;
|
|
|
|
Bit32u usb_len;
|
|
|
|
Bit8u *usb_buf;
|
|
|
|
Bit32u data_len;
|
|
|
|
Bit32u residue;
|
|
|
|
Bit32u tag;
|
|
|
|
int result;
|
|
|
|
device_image_t *hdimage;
|
|
|
|
scsi_device_t *scsi_dev;
|
|
|
|
USBPacket *packet;
|
2007-05-05 16:30:23 +04:00
|
|
|
bx_list_c *sr_list;
|
2009-03-01 22:29:36 +03:00
|
|
|
const char *fname;
|
2007-03-24 14:43:41 +03:00
|
|
|
} s;
|
2007-03-18 14:17:28 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|