2012-07-11 17:08:37 +04:00
|
|
|
/*
|
|
|
|
* Common code for block device models
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or
|
|
|
|
* later. See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
2012-12-17 21:20:04 +04:00
|
|
|
#include "sysemu/blockdev.h"
|
2014-10-07 15:59:18 +04:00
|
|
|
#include "sysemu/block-backend.h"
|
2013-02-05 20:06:20 +04:00
|
|
|
#include "hw/block/block.h"
|
2012-12-17 21:20:00 +04:00
|
|
|
#include "qemu/error-report.h"
|
2012-07-11 17:08:37 +04:00
|
|
|
|
|
|
|
void blkconf_serial(BlockConf *conf, char **serial)
|
|
|
|
{
|
|
|
|
DriveInfo *dinfo;
|
|
|
|
|
|
|
|
if (!*serial) {
|
|
|
|
/* try to fall back to value set with legacy -drive serial=... */
|
2014-10-07 15:59:18 +04:00
|
|
|
dinfo = blk_legacy_dinfo(conf->blk);
|
2014-10-07 15:59:22 +04:00
|
|
|
if (dinfo) {
|
|
|
|
*serial = g_strdup(dinfo->serial);
|
|
|
|
}
|
2012-07-11 17:08:37 +04:00
|
|
|
}
|
|
|
|
}
|
2012-07-11 17:08:39 +04:00
|
|
|
|
2015-02-16 14:47:58 +03:00
|
|
|
void blkconf_blocksizes(BlockConf *conf)
|
|
|
|
{
|
|
|
|
BlockBackend *blk = conf->blk;
|
|
|
|
BlockSizes blocksizes;
|
|
|
|
int backend_ret;
|
|
|
|
|
|
|
|
backend_ret = blk_probe_blocksizes(blk, &blocksizes);
|
|
|
|
/* fill in detected values if they are not defined via qemu command line */
|
|
|
|
if (!conf->physical_block_size) {
|
|
|
|
if (!backend_ret) {
|
|
|
|
conf->physical_block_size = blocksizes.phys;
|
|
|
|
} else {
|
|
|
|
conf->physical_block_size = BDRV_SECTOR_SIZE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!conf->logical_block_size) {
|
|
|
|
if (!backend_ret) {
|
|
|
|
conf->logical_block_size = blocksizes.log;
|
|
|
|
} else {
|
|
|
|
conf->logical_block_size = BDRV_SECTOR_SIZE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-12 06:12:54 +04:00
|
|
|
void blkconf_geometry(BlockConf *conf, int *ptrans,
|
|
|
|
unsigned cyls_max, unsigned heads_max, unsigned secs_max,
|
|
|
|
Error **errp)
|
2012-07-11 17:08:39 +04:00
|
|
|
{
|
|
|
|
DriveInfo *dinfo;
|
|
|
|
|
|
|
|
if (!conf->cyls && !conf->heads && !conf->secs) {
|
|
|
|
/* try to fall back to value set with legacy -drive cyls=... */
|
2014-10-07 15:59:18 +04:00
|
|
|
dinfo = blk_legacy_dinfo(conf->blk);
|
2014-10-07 15:59:22 +04:00
|
|
|
if (dinfo) {
|
|
|
|
conf->cyls = dinfo->cyls;
|
|
|
|
conf->heads = dinfo->heads;
|
|
|
|
conf->secs = dinfo->secs;
|
|
|
|
if (ptrans) {
|
|
|
|
*ptrans = dinfo->trans;
|
|
|
|
}
|
2012-07-11 17:08:39 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!conf->cyls && !conf->heads && !conf->secs) {
|
2014-10-07 15:59:18 +04:00
|
|
|
hd_geometry_guess(conf->blk,
|
2012-07-11 17:08:39 +04:00
|
|
|
&conf->cyls, &conf->heads, &conf->secs,
|
|
|
|
ptrans);
|
|
|
|
} else if (ptrans && *ptrans == BIOS_ATA_TRANSLATION_AUTO) {
|
|
|
|
*ptrans = hd_bios_chs_auto_trans(conf->cyls, conf->heads, conf->secs);
|
|
|
|
}
|
|
|
|
if (conf->cyls || conf->heads || conf->secs) {
|
|
|
|
if (conf->cyls < 1 || conf->cyls > cyls_max) {
|
2014-08-12 06:12:54 +04:00
|
|
|
error_setg(errp, "cyls must be between 1 and %u", cyls_max);
|
|
|
|
return;
|
2012-07-11 17:08:39 +04:00
|
|
|
}
|
|
|
|
if (conf->heads < 1 || conf->heads > heads_max) {
|
2014-08-12 06:12:54 +04:00
|
|
|
error_setg(errp, "heads must be between 1 and %u", heads_max);
|
|
|
|
return;
|
2012-07-11 17:08:39 +04:00
|
|
|
}
|
|
|
|
if (conf->secs < 1 || conf->secs > secs_max) {
|
2014-08-12 06:12:54 +04:00
|
|
|
error_setg(errp, "secs must be between 1 and %u", secs_max);
|
|
|
|
return;
|
2012-07-11 17:08:39 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|