2012-07-10 11:12:31 +02:00
|
|
|
/*
|
|
|
|
* Common code for block device models
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Red Hat, Inc.
|
|
|
|
* 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 HW_BLOCK_COMMON_H
|
|
|
|
#define HW_BLOCK_COMMON_H
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
|
|
|
|
2012-07-11 15:08:36 +02:00
|
|
|
/* Configuration */
|
|
|
|
|
|
|
|
typedef struct BlockConf {
|
|
|
|
BlockDriverState *bs;
|
|
|
|
uint16_t physical_block_size;
|
|
|
|
uint16_t logical_block_size;
|
|
|
|
uint16_t min_io_size;
|
|
|
|
uint32_t opt_io_size;
|
|
|
|
int32_t bootindex;
|
|
|
|
uint32_t discard_granularity;
|
|
|
|
/* geometry, not all devices use this */
|
|
|
|
uint32_t cyls, heads, secs;
|
|
|
|
} BlockConf;
|
|
|
|
|
|
|
|
static inline unsigned int get_physical_block_exp(BlockConf *conf)
|
|
|
|
{
|
|
|
|
unsigned int exp = 0, size;
|
|
|
|
|
|
|
|
for (size = conf->physical_block_size;
|
|
|
|
size > conf->logical_block_size;
|
|
|
|
size >>= 1) {
|
|
|
|
exp++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return exp;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define DEFINE_BLOCK_PROPERTIES(_state, _conf) \
|
|
|
|
DEFINE_PROP_DRIVE("drive", _state, _conf.bs), \
|
|
|
|
DEFINE_PROP_BLOCKSIZE("logical_block_size", _state, \
|
|
|
|
_conf.logical_block_size, 512), \
|
|
|
|
DEFINE_PROP_BLOCKSIZE("physical_block_size", _state, \
|
|
|
|
_conf.physical_block_size, 512), \
|
|
|
|
DEFINE_PROP_UINT16("min_io_size", _state, _conf.min_io_size, 0), \
|
|
|
|
DEFINE_PROP_UINT32("opt_io_size", _state, _conf.opt_io_size, 0), \
|
|
|
|
DEFINE_PROP_INT32("bootindex", _state, _conf.bootindex, -1), \
|
|
|
|
DEFINE_PROP_UINT32("discard_granularity", _state, \
|
|
|
|
_conf.discard_granularity, 0)
|
|
|
|
|
|
|
|
#define DEFINE_BLOCK_CHS_PROPERTIES(_state, _conf) \
|
|
|
|
DEFINE_PROP_UINT32("cyls", _state, _conf.cyls, 0), \
|
|
|
|
DEFINE_PROP_UINT32("heads", _state, _conf.heads, 0), \
|
|
|
|
DEFINE_PROP_UINT32("secs", _state, _conf.secs, 0)
|
|
|
|
|
2012-07-11 15:08:37 +02:00
|
|
|
/* Configuration helpers */
|
|
|
|
|
|
|
|
void blkconf_serial(BlockConf *conf, char **serial);
|
2012-07-11 15:08:39 +02:00
|
|
|
int blkconf_geometry(BlockConf *conf, int *trans,
|
|
|
|
unsigned cyls_max, unsigned heads_max, unsigned secs_max);
|
2012-07-11 15:08:36 +02:00
|
|
|
|
2012-07-10 11:12:31 +02:00
|
|
|
/* Hard disk geometry */
|
|
|
|
|
block: Geometry and translation hints are now useless, purge them
There are two producers of these hints: drive_init() on behalf of
-drive, and hd_geometry_guess().
The only consumer of the hint is hd_geometry_guess().
The callers of hd_geometry_guess() call it only when drive_init()
didn't set the hints. Therefore, drive_init()'s hints are never used.
Thus, hd_geometry_guess() only ever sees hints it produced itself in a
prior call. Only the first call computes something, subsequent calls
just repeat the first call's results. However, hd_geometry_guess() is
never called more than once: the device models don't, and the block
device is destroyed on unplug. Thus, dropping the repeat feature
doesn't break anything now.
If a block device wasn't destroyed on unplug and could be reused with
a new device, then repeating old results would be wrong. Thus,
dropping the repeat feature prevents future breakage.
This renders the hints unused. Purge them from the block layer.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2012-07-10 11:12:50 +02:00
|
|
|
#define BIOS_ATA_TRANSLATION_AUTO 0
|
|
|
|
#define BIOS_ATA_TRANSLATION_NONE 1
|
|
|
|
#define BIOS_ATA_TRANSLATION_LBA 2
|
|
|
|
#define BIOS_ATA_TRANSLATION_LARGE 3
|
|
|
|
#define BIOS_ATA_TRANSLATION_RECHS 4
|
|
|
|
|
2012-07-10 11:12:31 +02:00
|
|
|
void hd_geometry_guess(BlockDriverState *bs,
|
2012-07-10 11:12:41 +02:00
|
|
|
uint32_t *pcyls, uint32_t *pheads, uint32_t *psecs,
|
2012-07-10 11:12:37 +02:00
|
|
|
int *ptrans);
|
2012-07-10 11:12:53 +02:00
|
|
|
int hd_bios_chs_auto_trans(uint32_t cyls, uint32_t heads, uint32_t secs);
|
2012-07-10 11:12:31 +02:00
|
|
|
|
|
|
|
#endif
|