2010-06-02 20:48:27 +04:00
|
|
|
/*
|
|
|
|
* QEMU host block devices
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003-2008 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or
|
|
|
|
* later. See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BLOCKDEV_H
|
|
|
|
#define BLOCKDEV_H
|
|
|
|
|
2012-12-17 21:19:44 +04:00
|
|
|
#include "block/block.h"
|
2012-12-17 21:20:00 +04:00
|
|
|
#include "qemu/queue.h"
|
2010-06-02 20:48:27 +04:00
|
|
|
|
2014-10-07 15:59:18 +04:00
|
|
|
void blockdev_mark_auto_del(BlockBackend *blk);
|
|
|
|
void blockdev_auto_del(BlockBackend *blk);
|
2010-06-25 10:09:10 +04:00
|
|
|
|
2011-01-28 13:21:38 +03:00
|
|
|
typedef enum {
|
2011-01-28 13:21:41 +03:00
|
|
|
IF_DEFAULT = -1, /* for use with drive_add() only */
|
2012-11-20 18:30:34 +04:00
|
|
|
/*
|
2017-02-15 13:05:42 +03:00
|
|
|
* IF_NONE must be zero, because we want MachineClass member
|
|
|
|
* block_default_type to default-initialize to IF_NONE
|
2012-11-20 18:30:34 +04:00
|
|
|
*/
|
2017-02-15 13:05:42 +03:00
|
|
|
IF_NONE = 0,
|
|
|
|
IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO, IF_XEN,
|
2011-01-28 13:21:38 +03:00
|
|
|
IF_COUNT
|
|
|
|
} BlockInterfaceType;
|
|
|
|
|
2010-08-24 19:22:24 +04:00
|
|
|
struct DriveInfo {
|
2010-06-02 20:48:27 +04:00
|
|
|
BlockInterfaceType type;
|
|
|
|
int bus;
|
|
|
|
int unit;
|
2010-06-25 10:09:10 +04:00
|
|
|
int auto_del; /* see blockdev_mark_auto_del() */
|
2014-10-01 22:19:24 +04:00
|
|
|
bool is_default; /* Added by default_drive() ? */
|
2011-05-16 17:04:56 +04:00
|
|
|
int media_cd;
|
2010-06-02 20:48:27 +04:00
|
|
|
QemuOpts *opts;
|
|
|
|
QTAILQ_ENTRY(DriveInfo) next;
|
2010-08-24 19:22:24 +04:00
|
|
|
};
|
2010-06-02 20:48:27 +04:00
|
|
|
|
2014-10-07 15:59:06 +04:00
|
|
|
DriveInfo *blk_legacy_dinfo(BlockBackend *blk);
|
|
|
|
DriveInfo *blk_set_legacy_dinfo(BlockBackend *blk, DriveInfo *dinfo);
|
|
|
|
BlockBackend *blk_by_legacy_dinfo(DriveInfo *dinfo);
|
|
|
|
|
2014-10-01 22:19:25 +04:00
|
|
|
void override_max_devs(BlockInterfaceType type, int max_devs);
|
|
|
|
|
2010-09-23 22:47:32 +04:00
|
|
|
DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit);
|
blockdev: Deprecate -drive with bogus interface type
Drives with interface types other than if=none are for onboard
devices. Unfortunately, any such drives the board doesn't pick up can
still be used with -device, like this:
$ qemu-system-x86_64 -nodefaults -display none -S -drive if=floppy,id=bogus,unit=7 -device ide-cd,drive=bogus -monitor stdio
QEMU 5.0.50 monitor - type 'help' for more information
(qemu) info block
bogus: [not inserted]
Attached to: /machine/peripheral-anon/device[0]
Removable device: not locked, tray closed
(qemu) info qtree
bus: main-system-bus
type System
[...]
bus: ide.1
type IDE
dev: ide-cd, id ""
---> drive = "bogus"
[...]
unit = 0 (0x0)
[...]
This kind of abuse has always worked. Deprecate it:
qemu-system-x86_64: -drive if=floppy,id=bogus,unit=7: warning: bogus if=floppy is deprecated, use if=none
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20200622094227.1271650-9-armbru@redhat.com>
2020-06-22 12:42:19 +03:00
|
|
|
void drive_mark_claimed_by_board(void);
|
2017-02-15 13:05:46 +03:00
|
|
|
void drive_check_orphaned(void);
|
2011-01-28 13:21:44 +03:00
|
|
|
DriveInfo *drive_get_by_index(BlockInterfaceType type, int index);
|
2010-09-23 22:47:32 +04:00
|
|
|
int drive_get_max_bus(BlockInterfaceType type);
|
2014-10-01 22:19:27 +04:00
|
|
|
int drive_get_max_devs(BlockInterfaceType type);
|
2011-01-28 13:21:37 +03:00
|
|
|
DriveInfo *drive_get_next(BlockInterfaceType type);
|
2010-09-23 22:47:32 +04:00
|
|
|
|
2011-01-28 13:21:41 +03:00
|
|
|
QemuOpts *drive_def(const char *optstr);
|
|
|
|
QemuOpts *drive_add(BlockInterfaceType type, int index, const char *file,
|
2011-01-31 13:50:09 +03:00
|
|
|
const char *optstr);
|
2018-10-17 11:26:57 +03:00
|
|
|
DriveInfo *drive_new(QemuOpts *arg, BlockInterfaceType block_default_type,
|
|
|
|
Error **errp);
|
2010-06-02 20:48:27 +04:00
|
|
|
|
|
|
|
#endif
|