]>
Commit | Line | Data |
---|---|---|
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 | */ | |
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" |
1ca4d09a | 24 | #include "sysemu.h" |
da4d0419 GH |
25 | |
26 | /* --------------------------------- */ | |
27 | ||
dc1a46b6 GN |
28 | static char *idebus_get_fw_dev_path(DeviceState *dev); |
29 | ||
da4d0419 GH |
30 | static struct BusInfo ide_bus_info = { |
31 | .name = "IDE", | |
32 | .size = sizeof(IDEBus), | |
dc1a46b6 | 33 | .get_fw_dev_path = idebus_get_fw_dev_path, |
e0e8384d MA |
34 | .props = (Property[]) { |
35 | DEFINE_PROP_UINT32("unit", IDEDevice, unit, -1), | |
36 | DEFINE_PROP_END_OF_LIST(), | |
37 | }, | |
da4d0419 GH |
38 | }; |
39 | ||
3835510f | 40 | void ide_bus_new(IDEBus *idebus, DeviceState *dev, int bus_id) |
da4d0419 | 41 | { |
1f850f10 | 42 | qbus_create_inplace(&idebus->qbus, &ide_bus_info, dev, NULL); |
3835510f | 43 | idebus->bus_id = bus_id; |
da4d0419 GH |
44 | } |
45 | ||
dc1a46b6 GN |
46 | static char *idebus_get_fw_dev_path(DeviceState *dev) |
47 | { | |
48 | char path[30]; | |
49 | ||
50 | snprintf(path, sizeof(path), "%s@%d", qdev_fw_name(dev), | |
51 | ((IDEBus*)dev->parent_bus)->bus_id); | |
52 | ||
53 | return strdup(path); | |
54 | } | |
55 | ||
da4d0419 GH |
56 | static int ide_qdev_init(DeviceState *qdev, DeviceInfo *base) |
57 | { | |
d148211c AL |
58 | IDEDevice *dev = IDE_DEVICE(qdev); |
59 | IDEDeviceClass *dc = IDE_DEVICE_GET_CLASS(dev); | |
da4d0419 GH |
60 | IDEBus *bus = DO_UPCAST(IDEBus, qbus, qdev->parent_bus); |
61 | ||
f8b6cc00 | 62 | if (!dev->conf.bs) { |
f597627f | 63 | error_report("No drive specified"); |
da4d0419 GH |
64 | goto err; |
65 | } | |
66 | if (dev->unit == -1) { | |
67 | dev->unit = bus->master ? 1 : 0; | |
68 | } | |
69 | switch (dev->unit) { | |
70 | case 0: | |
71 | if (bus->master) { | |
f597627f | 72 | error_report("IDE unit %d is in use", dev->unit); |
da4d0419 GH |
73 | goto err; |
74 | } | |
75 | bus->master = dev; | |
76 | break; | |
77 | case 1: | |
78 | if (bus->slave) { | |
f597627f | 79 | error_report("IDE unit %d is in use", dev->unit); |
da4d0419 GH |
80 | goto err; |
81 | } | |
82 | bus->slave = dev; | |
83 | break; | |
84 | default: | |
f597627f | 85 | error_report("Invalid IDE unit %d", dev->unit); |
da4d0419 GH |
86 | goto err; |
87 | } | |
d148211c | 88 | return dc->init(dev); |
da4d0419 GH |
89 | |
90 | err: | |
91 | return -1; | |
92 | } | |
93 | ||
d148211c | 94 | static void ide_qdev_register(DeviceInfo *info) |
da4d0419 | 95 | { |
d148211c AL |
96 | info->init = ide_qdev_init; |
97 | info->bus_info = &ide_bus_info; | |
98 | qdev_register_subclass(info, TYPE_IDE_DEVICE); | |
da4d0419 GH |
99 | } |
100 | ||
101 | IDEDevice *ide_create_drive(IDEBus *bus, int unit, DriveInfo *drive) | |
102 | { | |
103 | DeviceState *dev; | |
104 | ||
95b5edcd | 105 | dev = qdev_create(&bus->qbus, drive->media_cd ? "ide-cd" : "ide-hd"); |
da4d0419 | 106 | qdev_prop_set_uint32(dev, "unit", unit); |
18846dee | 107 | qdev_prop_set_drive_nofail(dev, "drive", drive->bdrv); |
fa12fbbe | 108 | qdev_init_nofail(dev); |
da4d0419 GH |
109 | return DO_UPCAST(IDEDevice, qdev, dev); |
110 | } | |
111 | ||
c0897e0c MA |
112 | void ide_get_bs(BlockDriverState *bs[], BusState *qbus) |
113 | { | |
114 | IDEBus *bus = DO_UPCAST(IDEBus, qbus, qbus); | |
115 | bs[0] = bus->master ? bus->master->conf.bs : NULL; | |
116 | bs[1] = bus->slave ? bus->slave->conf.bs : NULL; | |
117 | } | |
118 | ||
da4d0419 GH |
119 | /* --------------------------------- */ |
120 | ||
121 | typedef struct IDEDrive { | |
122 | IDEDevice dev; | |
123 | } IDEDrive; | |
124 | ||
1f56e32a | 125 | static int ide_dev_initfn(IDEDevice *dev, IDEDriveKind kind) |
da4d0419 GH |
126 | { |
127 | IDEBus *bus = DO_UPCAST(IDEBus, qbus, dev->qdev.parent_bus); | |
6ced55a5 MA |
128 | IDEState *s = bus->ifs + dev->unit; |
129 | const char *serial; | |
f8b6cc00 | 130 | DriveInfo *dinfo; |
6ced55a5 | 131 | |
d353fb72 CH |
132 | if (dev->conf.discard_granularity && dev->conf.discard_granularity != 512) { |
133 | error_report("discard_granularity must be 512 for ide"); | |
134 | return -1; | |
135 | } | |
136 | ||
6ced55a5 MA |
137 | serial = dev->serial; |
138 | if (!serial) { | |
139 | /* try to fall back to value set with legacy -drive serial=... */ | |
f8b6cc00 MA |
140 | dinfo = drive_get_by_blockdev(dev->conf.bs); |
141 | if (*dinfo->serial) { | |
142 | serial = dinfo->serial; | |
143 | } | |
6ced55a5 MA |
144 | } |
145 | ||
1f56e32a | 146 | if (ide_init_drive(s, dev->conf.bs, kind, dev->version, serial) < 0) { |
c4d74df7 MA |
147 | return -1; |
148 | } | |
6ced55a5 | 149 | |
03432407 | 150 | if (!dev->version) { |
7267c094 | 151 | dev->version = g_strdup(s->version); |
03432407 | 152 | } |
6ced55a5 | 153 | if (!dev->serial) { |
7267c094 | 154 | dev->serial = g_strdup(s->drive_serial_str); |
6ced55a5 | 155 | } |
1ca4d09a GN |
156 | |
157 | add_boot_device_path(dev->conf.bootindex, &dev->qdev, | |
158 | dev->unit ? "/disk@1" : "/disk@0"); | |
159 | ||
da4d0419 GH |
160 | return 0; |
161 | } | |
162 | ||
1f56e32a MA |
163 | static int ide_hd_initfn(IDEDevice *dev) |
164 | { | |
165 | return ide_dev_initfn(dev, IDE_HD); | |
166 | } | |
167 | ||
168 | static int ide_cd_initfn(IDEDevice *dev) | |
169 | { | |
170 | return ide_dev_initfn(dev, IDE_CD); | |
171 | } | |
172 | ||
173 | static int ide_drive_initfn(IDEDevice *dev) | |
174 | { | |
95b5edcd MA |
175 | DriveInfo *dinfo = drive_get_by_blockdev(dev->conf.bs); |
176 | ||
177 | return ide_dev_initfn(dev, dinfo->media_cd ? IDE_CD : IDE_HD); | |
1f56e32a MA |
178 | } |
179 | ||
180 | #define DEFINE_IDE_DEV_PROPERTIES() \ | |
1f56e32a MA |
181 | DEFINE_BLOCK_PROPERTIES(IDEDrive, dev.conf), \ |
182 | DEFINE_PROP_STRING("ver", IDEDrive, dev.version), \ | |
183 | DEFINE_PROP_STRING("serial", IDEDrive, dev.serial) | |
184 | ||
d148211c AL |
185 | static void ide_hd_class_init(ObjectClass *klass, void *data) |
186 | { | |
187 | IDEDeviceClass *k = IDE_DEVICE_CLASS(klass); | |
188 | k->init = ide_hd_initfn; | |
189 | } | |
190 | ||
191 | static DeviceInfo ide_hd_info = { | |
192 | .name = "ide-hd", | |
193 | .fw_name = "drive", | |
194 | .desc = "virtual IDE disk", | |
195 | .size = sizeof(IDEDrive), | |
196 | .class_init = ide_hd_class_init, | |
197 | .props = (Property[]) { | |
198 | DEFINE_IDE_DEV_PROPERTIES(), | |
199 | DEFINE_PROP_END_OF_LIST(), | |
da4d0419 GH |
200 | } |
201 | }; | |
202 | ||
d148211c | 203 | static void ide_cd_class_init(ObjectClass *klass, void *data) |
da4d0419 | 204 | { |
d148211c AL |
205 | IDEDeviceClass *k = IDE_DEVICE_CLASS(klass); |
206 | k->init = ide_cd_initfn; | |
207 | } | |
1f56e32a | 208 | |
d148211c AL |
209 | static DeviceInfo ide_cd_info = { |
210 | .name = "ide-cd", | |
211 | .fw_name = "drive", | |
212 | .desc = "virtual IDE CD-ROM", | |
213 | .size = sizeof(IDEDrive), | |
214 | .class_init = ide_cd_class_init, | |
215 | .props = (Property[]) { | |
216 | DEFINE_IDE_DEV_PROPERTIES(), | |
217 | DEFINE_PROP_END_OF_LIST(), | |
1f56e32a | 218 | } |
d148211c AL |
219 | }; |
220 | ||
221 | static void ide_drive_class_init(ObjectClass *klass, void *data) | |
222 | { | |
223 | IDEDeviceClass *k = IDE_DEVICE_CLASS(klass); | |
224 | k->init = ide_drive_initfn; | |
225 | } | |
226 | ||
227 | static DeviceInfo ide_drive_info = { | |
228 | .name = "ide-drive", /* legacy -device ide-drive */ | |
229 | .fw_name = "drive", | |
230 | .desc = "virtual IDE disk or CD-ROM (legacy)", | |
231 | .size = sizeof(IDEDrive), | |
232 | .class_init = ide_drive_class_init, | |
233 | .props = (Property[]) { | |
234 | DEFINE_IDE_DEV_PROPERTIES(), | |
235 | DEFINE_PROP_END_OF_LIST(), | |
236 | } | |
237 | }; | |
238 | ||
239 | static TypeInfo ide_device_type_info = { | |
240 | .name = TYPE_IDE_DEVICE, | |
241 | .parent = TYPE_DEVICE, | |
242 | .instance_size = sizeof(IDEDevice), | |
243 | .abstract = true, | |
244 | .class_size = sizeof(IDEDeviceClass), | |
245 | }; | |
246 | ||
247 | static void ide_dev_register(void) | |
248 | { | |
249 | ide_qdev_register(&ide_hd_info); | |
250 | ide_qdev_register(&ide_cd_info); | |
251 | ide_qdev_register(&ide_drive_info); | |
252 | type_register_static(&ide_device_type_info); | |
da4d0419 | 253 | } |
1f56e32a | 254 | device_init(ide_dev_register); |