]> Git Repo - qemu.git/blame - hw/ide/qdev.c
Include qemu/main-loop.h less
[qemu.git] / hw / ide / qdev.c
CommitLineData
da4d0419
GH
1/*
2 * ide bus support for qdev.
3 *
4 * Copyright (c) 2009 Gerd Hoffmann <[email protected]>
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 */
0b8fa32f 19
53239262 20#include "qemu/osdep.h"
9c17d615 21#include "sysemu/dma.h"
da34e65c 22#include "qapi/error.h"
2ae16a6a 23#include "qapi/qapi-types-block.h"
1de7afc9 24#include "qemu/error-report.h"
db725815 25#include "qemu/main-loop.h"
0b8fa32f 26#include "qemu/module.h"
a9c94277 27#include "hw/ide/internal.h"
fa1d36df 28#include "sysemu/block-backend.h"
9c17d615 29#include "sysemu/blockdev.h"
0d09e41a 30#include "hw/block/block.h"
9c17d615 31#include "sysemu/sysemu.h"
45563630 32#include "qapi/visitor.h"
da4d0419
GH
33
34/* --------------------------------- */
35
dc1a46b6 36static char *idebus_get_fw_dev_path(DeviceState *dev);
44a109c1 37static void idebus_unrealize(BusState *qdev, Error **errp);
dc1a46b6 38
3cb75a7c
PB
39static Property ide_props[] = {
40 DEFINE_PROP_UINT32("unit", IDEDevice, unit, -1),
41 DEFINE_PROP_END_OF_LIST(),
42};
43
0d936928
AL
44static void ide_bus_class_init(ObjectClass *klass, void *data)
45{
46 BusClass *k = BUS_CLASS(klass);
47
48 k->get_fw_dev_path = idebus_get_fw_dev_path;
44a109c1 49 k->unrealize = idebus_unrealize;
0d936928
AL
50}
51
44a109c1 52static void idebus_unrealize(BusState *bus, Error **errp)
ca44141d 53{
44a109c1 54 IDEBus *ibus = IDE_BUS(bus);
ca44141d 55
44a109c1
LQ
56 if (ibus->vmstate) {
57 qemu_del_vm_change_state_handler(ibus->vmstate);
ca44141d
AA
58 }
59}
60
0d936928
AL
61static const TypeInfo ide_bus_info = {
62 .name = TYPE_IDE_BUS,
63 .parent = TYPE_BUS,
64 .instance_size = sizeof(IDEBus),
65 .class_init = ide_bus_class_init,
da4d0419
GH
66};
67
c6baf942
AF
68void ide_bus_new(IDEBus *idebus, size_t idebus_size, DeviceState *dev,
69 int bus_id, int max_units)
da4d0419 70{
fb17dfe0 71 qbus_create_inplace(idebus, idebus_size, TYPE_IDE_BUS, dev, NULL);
3835510f 72 idebus->bus_id = bus_id;
0ee20e66 73 idebus->max_units = max_units;
da4d0419
GH
74}
75
dc1a46b6
GN
76static char *idebus_get_fw_dev_path(DeviceState *dev)
77{
78 char path[30];
79
28fa7133 80 snprintf(path, sizeof(path), "%s@%x", qdev_fw_name(dev),
dc1a46b6
GN
81 ((IDEBus*)dev->parent_bus)->bus_id);
82
a5cf8262 83 return g_strdup(path);
dc1a46b6
GN
84}
85
794939e8 86static void ide_qdev_realize(DeviceState *qdev, Error **errp)
da4d0419 87{
d148211c
AL
88 IDEDevice *dev = IDE_DEVICE(qdev);
89 IDEDeviceClass *dc = IDE_DEVICE_GET_CLASS(dev);
da4d0419
GH
90 IDEBus *bus = DO_UPCAST(IDEBus, qbus, qdev->parent_bus);
91
da4d0419
GH
92 if (dev->unit == -1) {
93 dev->unit = bus->master ? 1 : 0;
94 }
0ee20e66
KW
95
96 if (dev->unit >= bus->max_units) {
794939e8 97 error_setg(errp, "Can't create IDE unit %d, bus supports only %d units",
0ee20e66 98 dev->unit, bus->max_units);
794939e8 99 return;
0ee20e66
KW
100 }
101
da4d0419
GH
102 switch (dev->unit) {
103 case 0:
104 if (bus->master) {
794939e8
MZ
105 error_setg(errp, "IDE unit %d is in use", dev->unit);
106 return;
da4d0419
GH
107 }
108 bus->master = dev;
109 break;
110 case 1:
111 if (bus->slave) {
794939e8
MZ
112 error_setg(errp, "IDE unit %d is in use", dev->unit);
113 return;
da4d0419
GH
114 }
115 bus->slave = dev;
116 break;
117 default:
794939e8
MZ
118 error_setg(errp, "Invalid IDE unit %d", dev->unit);
119 return;
da4d0419 120 }
794939e8 121 dc->realize(dev, errp);
da4d0419
GH
122}
123
da4d0419
GH
124IDEDevice *ide_create_drive(IDEBus *bus, int unit, DriveInfo *drive)
125{
126 DeviceState *dev;
127
95b5edcd 128 dev = qdev_create(&bus->qbus, drive->media_cd ? "ide-cd" : "ide-hd");
da4d0419 129 qdev_prop_set_uint32(dev, "unit", unit);
6231a6da
MA
130 qdev_prop_set_drive(dev, "drive", blk_by_legacy_dinfo(drive),
131 &error_fatal);
fa12fbbe 132 qdev_init_nofail(dev);
da4d0419
GH
133 return DO_UPCAST(IDEDevice, qdev, dev);
134}
135
9139046c
MA
136int ide_get_geometry(BusState *bus, int unit,
137 int16_t *cyls, int8_t *heads, int8_t *secs)
c0897e0c 138{
9139046c
MA
139 IDEState *s = &DO_UPCAST(IDEBus, qbus, bus)->ifs[unit];
140
4be74634 141 if (s->drive_kind != IDE_HD || !s->blk) {
9139046c
MA
142 return -1;
143 }
144
145 *cyls = s->cylinders;
146 *heads = s->heads;
147 *secs = s->sectors;
148 return 0;
149}
150
151int ide_get_bios_chs_trans(BusState *bus, int unit)
152{
153 return DO_UPCAST(IDEBus, qbus, bus)->ifs[unit].chs_trans;
c0897e0c
MA
154}
155
da4d0419
GH
156/* --------------------------------- */
157
158typedef struct IDEDrive {
159 IDEDevice dev;
160} IDEDrive;
161
794939e8 162static void ide_dev_initfn(IDEDevice *dev, IDEDriveKind kind, Error **errp)
da4d0419
GH
163{
164 IDEBus *bus = DO_UPCAST(IDEBus, qbus, dev->qdev.parent_bus);
6ced55a5 165 IDEState *s = bus->ifs + dev->unit;
947231ad 166 int ret;
6ced55a5 167
67c75f3d
KW
168 if (!dev->conf.blk) {
169 if (kind != IDE_CD) {
794939e8
MZ
170 error_setg(errp, "No drive specified");
171 return;
67c75f3d
KW
172 } else {
173 /* Anonymous BlockBackend for an empty drive */
d861ab3a 174 dev->conf.blk = blk_new(qemu_get_aio_context(), 0, BLK_PERM_ALL);
947231ad
KW
175 ret = blk_attach_dev(dev->conf.blk, &dev->qdev);
176 assert(ret == 0);
67c75f3d
KW
177 }
178 }
179
215e47b9
PB
180 if (dev->conf.discard_granularity == -1) {
181 dev->conf.discard_granularity = 512;
182 } else if (dev->conf.discard_granularity &&
183 dev->conf.discard_granularity != 512) {
794939e8
MZ
184 error_setg(errp, "discard_granularity must be 512 for ide");
185 return;
d353fb72
CH
186 }
187
0eb28a42 188 blkconf_blocksizes(&dev->conf);
d2005185 189 if (dev->conf.logical_block_size != 512) {
794939e8
MZ
190 error_setg(errp, "logical_block_size must be 512 for IDE");
191 return;
d2005185
KW
192 }
193
5ff5efb4 194 if (kind != IDE_CD) {
ceff3e1f
MZ
195 if (!blkconf_geometry(&dev->conf, &dev->chs_trans, 65535, 16, 255,
196 errp)) {
794939e8 197 return;
5ff5efb4 198 }
ba801960 199 }
ceff3e1f
MZ
200 if (!blkconf_apply_backend_options(&dev->conf, kind == IDE_CD,
201 kind != IDE_CD, errp)) {
794939e8 202 return;
a17c17a2 203 }
ba801960 204
4be74634 205 if (ide_init_drive(s, dev->conf.blk, kind,
911525db 206 dev->version, dev->serial, dev->model, dev->wwn,
ba801960 207 dev->conf.cyls, dev->conf.heads, dev->conf.secs,
794939e8
MZ
208 dev->chs_trans, errp) < 0) {
209 return;
c4d74df7 210 }
6ced55a5 211
03432407 212 if (!dev->version) {
7267c094 213 dev->version = g_strdup(s->version);
03432407 214 }
6ced55a5 215 if (!dev->serial) {
7267c094 216 dev->serial = g_strdup(s->drive_serial_str);
6ced55a5 217 }
1ca4d09a
GN
218
219 add_boot_device_path(dev->conf.bootindex, &dev->qdev,
220 dev->unit ? "/disk@1" : "/disk@0");
da4d0419
GH
221}
222
d7bce999
EB
223static void ide_dev_get_bootindex(Object *obj, Visitor *v, const char *name,
224 void *opaque, Error **errp)
45563630
GA
225{
226 IDEDevice *d = IDE_DEVICE(obj);
227
51e72bc1 228 visit_type_int32(v, name, &d->conf.bootindex, errp);
45563630
GA
229}
230
d7bce999
EB
231static void ide_dev_set_bootindex(Object *obj, Visitor *v, const char *name,
232 void *opaque, Error **errp)
45563630
GA
233{
234 IDEDevice *d = IDE_DEVICE(obj);
235 int32_t boot_index;
236 Error *local_err = NULL;
237
51e72bc1 238 visit_type_int32(v, name, &boot_index, &local_err);
45563630
GA
239 if (local_err) {
240 goto out;
241 }
242 /* check whether bootindex is present in fw_boot_order list */
243 check_boot_index(boot_index, &local_err);
244 if (local_err) {
245 goto out;
246 }
247 /* change bootindex to a new one */
248 d->conf.bootindex = boot_index;
249
d2b186f9
GA
250 if (d->unit != -1) {
251 add_boot_device_path(d->conf.bootindex, &d->qdev,
252 d->unit ? "/disk@1" : "/disk@0");
253 }
45563630 254out:
621ff94d 255 error_propagate(errp, local_err);
45563630
GA
256}
257
258static void ide_dev_instance_init(Object *obj)
259{
260 object_property_add(obj, "bootindex", "int32",
261 ide_dev_get_bootindex,
262 ide_dev_set_bootindex, NULL, NULL, NULL);
d2b186f9 263 object_property_set_int(obj, -1, "bootindex", NULL);
45563630
GA
264}
265
794939e8 266static void ide_hd_realize(IDEDevice *dev, Error **errp)
1f56e32a 267{
794939e8 268 ide_dev_initfn(dev, IDE_HD, errp);
1f56e32a
MA
269}
270
794939e8 271static void ide_cd_realize(IDEDevice *dev, Error **errp)
1f56e32a 272{
794939e8 273 ide_dev_initfn(dev, IDE_CD, errp);
1f56e32a
MA
274}
275
794939e8 276static void ide_drive_realize(IDEDevice *dev, Error **errp)
1f56e32a 277{
67c75f3d
KW
278 DriveInfo *dinfo = NULL;
279
280 if (dev->conf.blk) {
281 dinfo = blk_legacy_dinfo(dev->conf.blk);
282 }
95b5edcd 283
794939e8 284 ide_dev_initfn(dev, dinfo && dinfo->media_cd ? IDE_CD : IDE_HD, errp);
1f56e32a
MA
285}
286
287#define DEFINE_IDE_DEV_PROPERTIES() \
1f56e32a 288 DEFINE_BLOCK_PROPERTIES(IDEDrive, dev.conf), \
8c398252 289 DEFINE_BLOCK_ERROR_PROPERTIES(IDEDrive, dev.conf), \
1f56e32a 290 DEFINE_PROP_STRING("ver", IDEDrive, dev.version), \
c7bcc85d 291 DEFINE_PROP_UINT64("wwn", IDEDrive, dev.wwn, 0), \
27e0c9a1
FB
292 DEFINE_PROP_STRING("serial", IDEDrive, dev.serial),\
293 DEFINE_PROP_STRING("model", IDEDrive, dev.model)
1f56e32a 294
39bffca2
AL
295static Property ide_hd_properties[] = {
296 DEFINE_IDE_DEV_PROPERTIES(),
ba801960 297 DEFINE_BLOCK_CHS_PROPERTIES(IDEDrive, dev.conf),
6e6f61a6
MA
298 DEFINE_PROP_BIOS_CHS_TRANS("bios-chs-trans",
299 IDEDrive, dev.chs_trans, BIOS_ATA_TRANSLATION_AUTO),
3b19f450 300 DEFINE_PROP_UINT16("rotation_rate", IDEDrive, dev.rotation_rate, 0),
39bffca2
AL
301 DEFINE_PROP_END_OF_LIST(),
302};
303
d148211c
AL
304static void ide_hd_class_init(ObjectClass *klass, void *data)
305{
39bffca2 306 DeviceClass *dc = DEVICE_CLASS(klass);
d148211c 307 IDEDeviceClass *k = IDE_DEVICE_CLASS(klass);
794939e8
MZ
308
309 k->realize = ide_hd_realize;
39bffca2 310 dc->fw_name = "drive";
794939e8
MZ
311 dc->desc = "virtual IDE disk";
312 dc->props = ide_hd_properties;
d148211c
AL
313}
314
8c43a6f0 315static const TypeInfo ide_hd_info = {
39bffca2
AL
316 .name = "ide-hd",
317 .parent = TYPE_IDE_DEVICE,
318 .instance_size = sizeof(IDEDrive),
319 .class_init = ide_hd_class_init,
320};
321
322static Property ide_cd_properties[] = {
323 DEFINE_IDE_DEV_PROPERTIES(),
324 DEFINE_PROP_END_OF_LIST(),
da4d0419
GH
325};
326
d148211c 327static void ide_cd_class_init(ObjectClass *klass, void *data)
da4d0419 328{
39bffca2 329 DeviceClass *dc = DEVICE_CLASS(klass);
d148211c 330 IDEDeviceClass *k = IDE_DEVICE_CLASS(klass);
794939e8
MZ
331
332 k->realize = ide_cd_realize;
39bffca2 333 dc->fw_name = "drive";
794939e8
MZ
334 dc->desc = "virtual IDE CD-ROM";
335 dc->props = ide_cd_properties;
d148211c 336}
1f56e32a 337
8c43a6f0 338static const TypeInfo ide_cd_info = {
39bffca2
AL
339 .name = "ide-cd",
340 .parent = TYPE_IDE_DEVICE,
341 .instance_size = sizeof(IDEDrive),
342 .class_init = ide_cd_class_init,
343};
344
345static Property ide_drive_properties[] = {
346 DEFINE_IDE_DEV_PROPERTIES(),
347 DEFINE_PROP_END_OF_LIST(),
d148211c
AL
348};
349
350static void ide_drive_class_init(ObjectClass *klass, void *data)
351{
39bffca2 352 DeviceClass *dc = DEVICE_CLASS(klass);
d148211c 353 IDEDeviceClass *k = IDE_DEVICE_CLASS(klass);
794939e8
MZ
354
355 k->realize = ide_drive_realize;
39bffca2 356 dc->fw_name = "drive";
794939e8
MZ
357 dc->desc = "virtual IDE disk or CD-ROM (legacy)";
358 dc->props = ide_drive_properties;
d148211c
AL
359}
360
8c43a6f0 361static const TypeInfo ide_drive_info = {
39bffca2
AL
362 .name = "ide-drive",
363 .parent = TYPE_IDE_DEVICE,
364 .instance_size = sizeof(IDEDrive),
365 .class_init = ide_drive_class_init,
d148211c
AL
366};
367
39bffca2
AL
368static void ide_device_class_init(ObjectClass *klass, void *data)
369{
370 DeviceClass *k = DEVICE_CLASS(klass);
794939e8 371 k->realize = ide_qdev_realize;
125ee0ed 372 set_bit(DEVICE_CATEGORY_STORAGE, k->categories);
0d936928 373 k->bus_type = TYPE_IDE_BUS;
bce54474 374 k->props = ide_props;
39bffca2
AL
375}
376
8c43a6f0 377static const TypeInfo ide_device_type_info = {
d148211c
AL
378 .name = TYPE_IDE_DEVICE,
379 .parent = TYPE_DEVICE,
380 .instance_size = sizeof(IDEDevice),
381 .abstract = true,
382 .class_size = sizeof(IDEDeviceClass),
39bffca2 383 .class_init = ide_device_class_init,
45563630 384 .instance_init = ide_dev_instance_init,
d148211c
AL
385};
386
83f7d43a 387static void ide_register_types(void)
d148211c 388{
0d936928 389 type_register_static(&ide_bus_info);
39bffca2
AL
390 type_register_static(&ide_hd_info);
391 type_register_static(&ide_cd_info);
392 type_register_static(&ide_drive_info);
d148211c 393 type_register_static(&ide_device_type_info);
da4d0419 394}
83f7d43a
AF
395
396type_init(ide_register_types)
This page took 0.764865 seconds and 4 git commands to generate.