2007-03-18 11:17:28 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2011-02-24 22:05:47 +00:00
|
|
|
// $Id$
|
2007-03-18 11:17:28 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2012-09-02 09:37:47 +00:00
|
|
|
// USB mass storage device support (ported from QEMU)
|
2012-08-30 20:41:25 +00:00
|
|
|
//
|
|
|
|
// Copyright (c) 2006 CodeSourcery.
|
|
|
|
// Written by Paul Brook
|
2021-01-05 21:57:13 +00:00
|
|
|
// Copyright (C) 2009-2021 The Bochs Project
|
2007-03-18 11:17:28 +00: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 09:05:52 +00:00
|
|
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2009-02-07 21:05:31 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2007-03-18 11:17:28 +00:00
|
|
|
|
|
|
|
#ifndef BX_IODEV_USB_MSD_H
|
|
|
|
#define BX_IODEV_USB_MSD_H
|
|
|
|
|
2008-12-30 09:17:09 +00:00
|
|
|
class device_image_t;
|
2013-11-05 18:06:39 +00:00
|
|
|
class cdrom_base_c;
|
2007-03-18 11:17:28 +00:00
|
|
|
class scsi_device_t;
|
|
|
|
|
2009-01-19 09:48:12 +00:00
|
|
|
class usb_msd_device_c : public usb_device_c {
|
2007-03-18 11:17:28 +00:00
|
|
|
public:
|
2021-02-17 16:22:55 +00:00
|
|
|
usb_msd_device_c(const char *devname);
|
2009-01-19 09:48:12 +00:00
|
|
|
virtual ~usb_msd_device_c(void);
|
2007-03-18 11:17:28 +00:00
|
|
|
|
2021-02-01 12:42:12 +00:00
|
|
|
virtual bool init();
|
|
|
|
virtual bool set_option(const char *option);
|
2010-12-05 13:09:41 +00:00
|
|
|
virtual const char* get_info();
|
2015-08-29 14:02:13 +00:00
|
|
|
virtual void runtime_config(void);
|
|
|
|
void restore_handler(bx_list_c *conf);
|
2010-12-05 13:09:41 +00:00
|
|
|
|
2007-03-18 11:17:28 +00: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 09:04:54 +00:00
|
|
|
virtual void register_state_specific(bx_list_c *parent);
|
2009-03-09 12:18:40 +00:00
|
|
|
virtual void cancel_packet(USBPacket *p);
|
2021-02-01 12:42:12 +00:00
|
|
|
bool set_inserted(bool value);
|
|
|
|
bool get_inserted();
|
|
|
|
bool get_locked();
|
2007-09-28 19:52:08 +00:00
|
|
|
|
2007-03-18 11:17:28 +00:00
|
|
|
protected:
|
|
|
|
void copy_data();
|
2015-10-22 18:13:59 +00:00
|
|
|
void send_status(USBPacket *p);
|
2007-03-18 11:17:28 +00:00
|
|
|
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 11:43:41 +00:00
|
|
|
struct {
|
2015-10-04 08:54:36 +00:00
|
|
|
// members set in constructor / init
|
2021-01-05 21:57:13 +00:00
|
|
|
char *image_mode;
|
2007-03-24 11:43:41 +00:00
|
|
|
device_image_t *hdimage;
|
2013-11-05 18:06:39 +00:00
|
|
|
cdrom_base_c *cdrom;
|
2007-03-24 11:43:41 +00:00
|
|
|
scsi_device_t *scsi_dev;
|
2007-05-05 12:30:23 +00:00
|
|
|
bx_list_c *sr_list;
|
2020-01-03 21:17:15 +00:00
|
|
|
char fname[BX_PATHNAME_LEN];
|
2009-04-06 15:36:55 +00:00
|
|
|
bx_list_c *config;
|
2020-01-03 21:17:15 +00:00
|
|
|
char info_txt[BX_PATHNAME_LEN + 38];
|
2014-09-29 17:48:30 +00:00
|
|
|
char journal[BX_PATHNAME_LEN]; // undoable / volatile disk only
|
|
|
|
int size; // VVFAT disk only
|
2018-03-23 19:02:38 +00:00
|
|
|
unsigned sect_size; // sector size for disks only (default = 512 bytes)
|
2015-10-04 08:54:36 +00:00
|
|
|
// members handled by runtime config
|
2021-02-01 12:42:12 +00:00
|
|
|
bool status_changed;
|
2015-10-04 08:54:36 +00:00
|
|
|
// members handled by save/restore
|
|
|
|
Bit8u mode;
|
|
|
|
Bit32u scsi_len;
|
|
|
|
Bit32u usb_len;
|
|
|
|
Bit32u data_len;
|
|
|
|
Bit32u residue;
|
|
|
|
Bit32u tag;
|
|
|
|
int result;
|
|
|
|
// members not handled by save/restore
|
|
|
|
Bit8u *scsi_buf;
|
|
|
|
Bit8u *usb_buf;
|
|
|
|
USBPacket *packet;
|
2007-03-24 11:43:41 +00:00
|
|
|
} s;
|
2009-04-06 15:36:55 +00:00
|
|
|
|
2015-08-23 16:09:24 +00:00
|
|
|
static const char *cdrom_path_handler(bx_param_string_c *param, int set,
|
2009-04-06 15:36:55 +00:00
|
|
|
const char *oldval, const char *val, int maxlen);
|
2015-08-23 16:09:24 +00:00
|
|
|
static Bit64s cdrom_status_handler(bx_param_c *param, int set, Bit64s val);
|
2007-03-18 11:17:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|