]> git.proxmox.com Git - mirror_qemu.git/blame - hw/ide/qdev.c
hw/block-common: Factor out fall back to legacy -drive serial=...
[mirror_qemu.git] / hw / ide / qdev.c
CommitLineData
da4d0419
GH
1/*
2 * ide bus support for qdev.
3 *
4 * Copyright (c) 2009 Gerd Hoffmann <kraxel@redhat.com>
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 */
19#include <hw/hw.h>
da4d0419 20#include "dma.h"
f597627f 21#include "qemu-error.h"
da4d0419 22#include <hw/ide/internal.h>
2446333c 23#include "blockdev.h"
ba801960 24#include "hw/block-common.h"
1ca4d09a 25#include "sysemu.h"
da4d0419
GH
26
27/* --------------------------------- */
28
dc1a46b6
GN
29static char *idebus_get_fw_dev_path(DeviceState *dev);
30
3cb75a7c
PB
31static Property ide_props[] = {
32 DEFINE_PROP_UINT32("unit", IDEDevice, unit, -1),
33 DEFINE_PROP_END_OF_LIST(),
34};
35
0d936928
AL
36static void ide_bus_class_init(ObjectClass *klass, void *data)
37{
38 BusClass *k = BUS_CLASS(klass);
39
40 k->get_fw_dev_path = idebus_get_fw_dev_path;
41}
42
43static const TypeInfo ide_bus_info = {
44 .name = TYPE_IDE_BUS,
45 .parent = TYPE_BUS,
46 .instance_size = sizeof(IDEBus),
47 .class_init = ide_bus_class_init,
da4d0419
GH
48};
49
3835510f 50void ide_bus_new(IDEBus *idebus, DeviceState *dev, int bus_id)
da4d0419 51{
0d936928 52 qbus_create_inplace(&idebus->qbus, TYPE_IDE_BUS, dev, NULL);
3835510f 53 idebus->bus_id = bus_id;
da4d0419
GH
54}
55
dc1a46b6
GN
56static char *idebus_get_fw_dev_path(DeviceState *dev)
57{
58 char path[30];
59
60 snprintf(path, sizeof(path), "%s@%d", qdev_fw_name(dev),
61 ((IDEBus*)dev->parent_bus)->bus_id);
62
63 return strdup(path);
64}
65
d307af79 66static int ide_qdev_init(DeviceState *qdev)
da4d0419 67{
d148211c
AL
68 IDEDevice *dev = IDE_DEVICE(qdev);
69 IDEDeviceClass *dc = IDE_DEVICE_GET_CLASS(dev);
da4d0419
GH
70 IDEBus *bus = DO_UPCAST(IDEBus, qbus, qdev->parent_bus);
71
f8b6cc00 72 if (!dev->conf.bs) {
f597627f 73 error_report("No drive specified");
da4d0419
GH
74 goto err;
75 }
76 if (dev->unit == -1) {
77 dev->unit = bus->master ? 1 : 0;
78 }
79 switch (dev->unit) {
80 case 0:
81 if (bus->master) {
f597627f 82 error_report("IDE unit %d is in use", dev->unit);
da4d0419
GH
83 goto err;
84 }
85 bus->master = dev;
86 break;
87 case 1:
88 if (bus->slave) {
f597627f 89 error_report("IDE unit %d is in use", dev->unit);
da4d0419
GH
90 goto err;
91 }
92 bus->slave = dev;
93 break;
94 default:
f597627f 95 error_report("Invalid IDE unit %d", dev->unit);
da4d0419
GH
96 goto err;
97 }
d148211c 98 return dc->init(dev);
da4d0419
GH
99
100err:
101 return -1;
102}
103
da4d0419
GH
104IDEDevice *ide_create_drive(IDEBus *bus, int unit, DriveInfo *drive)
105{
106 DeviceState *dev;
107
95b5edcd 108 dev = qdev_create(&bus->qbus, drive->media_cd ? "ide-cd" : "ide-hd");
da4d0419 109 qdev_prop_set_uint32(dev, "unit", unit);
18846dee 110 qdev_prop_set_drive_nofail(dev, "drive", drive->bdrv);
fa12fbbe 111 qdev_init_nofail(dev);
da4d0419
GH
112 return DO_UPCAST(IDEDevice, qdev, dev);
113}
114
9139046c
MA
115int ide_get_geometry(BusState *bus, int unit,
116 int16_t *cyls, int8_t *heads, int8_t *secs)
c0897e0c 117{
9139046c
MA
118 IDEState *s = &DO_UPCAST(IDEBus, qbus, bus)->ifs[unit];
119
9dc13e38 120 if (s->drive_kind != IDE_HD || !s->bs) {
9139046c
MA
121 return -1;
122 }
123
124 *cyls = s->cylinders;
125 *heads = s->heads;
126 *secs = s->sectors;
127 return 0;
128}
129
130int ide_get_bios_chs_trans(BusState *bus, int unit)
131{
132 return DO_UPCAST(IDEBus, qbus, bus)->ifs[unit].chs_trans;
c0897e0c
MA
133}
134
da4d0419
GH
135/* --------------------------------- */
136
137typedef struct IDEDrive {
138 IDEDevice dev;
139} IDEDrive;
140
1f56e32a 141static int ide_dev_initfn(IDEDevice *dev, IDEDriveKind kind)
da4d0419
GH
142{
143 IDEBus *bus = DO_UPCAST(IDEBus, qbus, dev->qdev.parent_bus);
6ced55a5 144 IDEState *s = bus->ifs + dev->unit;
f8b6cc00 145 DriveInfo *dinfo;
6ced55a5 146
d353fb72
CH
147 if (dev->conf.discard_granularity && dev->conf.discard_granularity != 512) {
148 error_report("discard_granularity must be 512 for ide");
149 return -1;
150 }
151
911525db 152 blkconf_serial(&dev->conf, &dev->serial);
6ced55a5 153
ba801960
MA
154 if (!dev->conf.cyls && !dev->conf.heads && !dev->conf.secs) {
155 /* try to fall back to value set with legacy -drive cyls=... */
156 dinfo = drive_get_by_blockdev(dev->conf.bs);
157 dev->conf.cyls = dinfo->cyls;
158 dev->conf.heads = dinfo->heads;
159 dev->conf.secs = dinfo->secs;
6e6f61a6 160 dev->chs_trans = dinfo->trans;
ba801960
MA
161 }
162 if (!dev->conf.cyls && !dev->conf.heads && !dev->conf.secs) {
163 hd_geometry_guess(dev->conf.bs,
164 &dev->conf.cyls, &dev->conf.heads, &dev->conf.secs,
6e6f61a6 165 &dev->chs_trans);
2adc99b2
MA
166 } else if (dev->chs_trans == BIOS_ATA_TRANSLATION_AUTO) {
167 dev->chs_trans = hd_bios_chs_auto_trans(dev->conf.cyls,
168 dev->conf.heads, dev->conf.secs);
ba801960
MA
169 }
170
27e0c9a1 171 if (ide_init_drive(s, dev->conf.bs, kind,
911525db 172 dev->version, dev->serial, dev->model, dev->wwn,
ba801960 173 dev->conf.cyls, dev->conf.heads, dev->conf.secs,
6e6f61a6 174 dev->chs_trans) < 0) {
c4d74df7
MA
175 return -1;
176 }
6ced55a5 177
03432407 178 if (!dev->version) {
7267c094 179 dev->version = g_strdup(s->version);
03432407 180 }
6ced55a5 181 if (!dev->serial) {
7267c094 182 dev->serial = g_strdup(s->drive_serial_str);
6ced55a5 183 }
1ca4d09a
GN
184
185 add_boot_device_path(dev->conf.bootindex, &dev->qdev,
186 dev->unit ? "/disk@1" : "/disk@0");
187
da4d0419
GH
188 return 0;
189}
190
1f56e32a
MA
191static int ide_hd_initfn(IDEDevice *dev)
192{
193 return ide_dev_initfn(dev, IDE_HD);
194}
195
196static int ide_cd_initfn(IDEDevice *dev)
197{
198 return ide_dev_initfn(dev, IDE_CD);
199}
200
201static int ide_drive_initfn(IDEDevice *dev)
202{
95b5edcd
MA
203 DriveInfo *dinfo = drive_get_by_blockdev(dev->conf.bs);
204
205 return ide_dev_initfn(dev, dinfo->media_cd ? IDE_CD : IDE_HD);
1f56e32a
MA
206}
207
208#define DEFINE_IDE_DEV_PROPERTIES() \
1f56e32a
MA
209 DEFINE_BLOCK_PROPERTIES(IDEDrive, dev.conf), \
210 DEFINE_PROP_STRING("ver", IDEDrive, dev.version), \
95ebda85 211 DEFINE_PROP_HEX64("wwn", IDEDrive, dev.wwn, 0), \
27e0c9a1
FB
212 DEFINE_PROP_STRING("serial", IDEDrive, dev.serial),\
213 DEFINE_PROP_STRING("model", IDEDrive, dev.model)
1f56e32a 214
39bffca2
AL
215static Property ide_hd_properties[] = {
216 DEFINE_IDE_DEV_PROPERTIES(),
ba801960 217 DEFINE_BLOCK_CHS_PROPERTIES(IDEDrive, dev.conf),
6e6f61a6
MA
218 DEFINE_PROP_BIOS_CHS_TRANS("bios-chs-trans",
219 IDEDrive, dev.chs_trans, BIOS_ATA_TRANSLATION_AUTO),
39bffca2
AL
220 DEFINE_PROP_END_OF_LIST(),
221};
222
d148211c
AL
223static void ide_hd_class_init(ObjectClass *klass, void *data)
224{
39bffca2 225 DeviceClass *dc = DEVICE_CLASS(klass);
d148211c
AL
226 IDEDeviceClass *k = IDE_DEVICE_CLASS(klass);
227 k->init = ide_hd_initfn;
39bffca2
AL
228 dc->fw_name = "drive";
229 dc->desc = "virtual IDE disk";
230 dc->props = ide_hd_properties;
d148211c
AL
231}
232
39bffca2
AL
233static TypeInfo ide_hd_info = {
234 .name = "ide-hd",
235 .parent = TYPE_IDE_DEVICE,
236 .instance_size = sizeof(IDEDrive),
237 .class_init = ide_hd_class_init,
238};
239
240static Property ide_cd_properties[] = {
241 DEFINE_IDE_DEV_PROPERTIES(),
242 DEFINE_PROP_END_OF_LIST(),
da4d0419
GH
243};
244
d148211c 245static void ide_cd_class_init(ObjectClass *klass, void *data)
da4d0419 246{
39bffca2 247 DeviceClass *dc = DEVICE_CLASS(klass);
d148211c
AL
248 IDEDeviceClass *k = IDE_DEVICE_CLASS(klass);
249 k->init = ide_cd_initfn;
39bffca2
AL
250 dc->fw_name = "drive";
251 dc->desc = "virtual IDE CD-ROM";
252 dc->props = ide_cd_properties;
d148211c 253}
1f56e32a 254
39bffca2
AL
255static TypeInfo ide_cd_info = {
256 .name = "ide-cd",
257 .parent = TYPE_IDE_DEVICE,
258 .instance_size = sizeof(IDEDrive),
259 .class_init = ide_cd_class_init,
260};
261
262static Property ide_drive_properties[] = {
263 DEFINE_IDE_DEV_PROPERTIES(),
264 DEFINE_PROP_END_OF_LIST(),
d148211c
AL
265};
266
267static void ide_drive_class_init(ObjectClass *klass, void *data)
268{
39bffca2 269 DeviceClass *dc = DEVICE_CLASS(klass);
d148211c
AL
270 IDEDeviceClass *k = IDE_DEVICE_CLASS(klass);
271 k->init = ide_drive_initfn;
39bffca2
AL
272 dc->fw_name = "drive";
273 dc->desc = "virtual IDE disk or CD-ROM (legacy)";
274 dc->props = ide_drive_properties;
d148211c
AL
275}
276
39bffca2
AL
277static TypeInfo ide_drive_info = {
278 .name = "ide-drive",
279 .parent = TYPE_IDE_DEVICE,
280 .instance_size = sizeof(IDEDrive),
281 .class_init = ide_drive_class_init,
d148211c
AL
282};
283
39bffca2
AL
284static void ide_device_class_init(ObjectClass *klass, void *data)
285{
286 DeviceClass *k = DEVICE_CLASS(klass);
287 k->init = ide_qdev_init;
0d936928 288 k->bus_type = TYPE_IDE_BUS;
bce54474 289 k->props = ide_props;
39bffca2
AL
290}
291
d148211c
AL
292static TypeInfo ide_device_type_info = {
293 .name = TYPE_IDE_DEVICE,
294 .parent = TYPE_DEVICE,
295 .instance_size = sizeof(IDEDevice),
296 .abstract = true,
297 .class_size = sizeof(IDEDeviceClass),
39bffca2 298 .class_init = ide_device_class_init,
d148211c
AL
299};
300
83f7d43a 301static void ide_register_types(void)
d148211c 302{
0d936928 303 type_register_static(&ide_bus_info);
39bffca2
AL
304 type_register_static(&ide_hd_info);
305 type_register_static(&ide_cd_info);
306 type_register_static(&ide_drive_info);
d148211c 307 type_register_static(&ide_device_type_info);
da4d0419 308}
83f7d43a
AF
309
310type_init(ide_register_types)