nvme: use TYPE_NVME instead of constant string
[qemu/ar7.git] / bootdevice.c
blob1d225202f9726e536d3466a28a6eaa5a8304a41b
1 /*
2 * QEMU Boot Device Implement
4 * Copyright (c) 2014 HUAWEI TECHNOLOGIES CO., LTD.
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
25 #include "qemu/osdep.h"
26 #include "qapi/error.h"
27 #include "sysemu/sysemu.h"
28 #include "qapi/visitor.h"
29 #include "qemu/error-report.h"
30 #include "sysemu/reset.h"
31 #include "hw/qdev-core.h"
32 #include "hw/boards.h"
34 typedef struct FWBootEntry FWBootEntry;
36 struct FWBootEntry {
37 QTAILQ_ENTRY(FWBootEntry) link;
38 int32_t bootindex;
39 DeviceState *dev;
40 char *suffix;
43 static QTAILQ_HEAD(, FWBootEntry) fw_boot_order =
44 QTAILQ_HEAD_INITIALIZER(fw_boot_order);
45 static QEMUBootSetHandler *boot_set_handler;
46 static void *boot_set_opaque;
48 void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
50 boot_set_handler = func;
51 boot_set_opaque = opaque;
54 void qemu_boot_set(const char *boot_order, Error **errp)
56 Error *local_err = NULL;
58 if (!boot_set_handler) {
59 error_setg(errp, "no function defined to set boot device list for"
60 " this architecture");
61 return;
64 validate_bootdevices(boot_order, &local_err);
65 if (local_err) {
66 error_propagate(errp, local_err);
67 return;
70 boot_set_handler(boot_set_opaque, boot_order, errp);
73 void validate_bootdevices(const char *devices, Error **errp)
75 /* We just do some generic consistency checks */
76 const char *p;
77 int bitmap = 0;
79 for (p = devices; *p != '\0'; p++) {
80 /* Allowed boot devices are:
81 * a-b: floppy disk drives
82 * c-f: IDE disk drives
83 * g-m: machine implementation dependent drives
84 * n-p: network devices
85 * It's up to each machine implementation to check if the given boot
86 * devices match the actual hardware implementation and firmware
87 * features.
89 if (*p < 'a' || *p > 'p') {
90 error_setg(errp, "Invalid boot device '%c'", *p);
91 return;
93 if (bitmap & (1 << (*p - 'a'))) {
94 error_setg(errp, "Boot device '%c' was given twice", *p);
95 return;
97 bitmap |= 1 << (*p - 'a');
101 void restore_boot_order(void *opaque)
103 char *normal_boot_order = opaque;
104 static int first = 1;
106 /* Restore boot order and remove ourselves after the first boot */
107 if (first) {
108 first = 0;
109 return;
112 if (boot_set_handler) {
113 qemu_boot_set(normal_boot_order, &error_abort);
116 qemu_unregister_reset(restore_boot_order, normal_boot_order);
117 g_free(normal_boot_order);
120 void check_boot_index(int32_t bootindex, Error **errp)
122 FWBootEntry *i;
124 if (bootindex >= 0) {
125 QTAILQ_FOREACH(i, &fw_boot_order, link) {
126 if (i->bootindex == bootindex) {
127 error_setg(errp, "The bootindex %d has already been used",
128 bootindex);
129 return;
135 void del_boot_device_path(DeviceState *dev, const char *suffix)
137 FWBootEntry *i;
139 if (dev == NULL) {
140 return;
143 QTAILQ_FOREACH(i, &fw_boot_order, link) {
144 if ((!suffix || !g_strcmp0(i->suffix, suffix)) &&
145 i->dev == dev) {
146 QTAILQ_REMOVE(&fw_boot_order, i, link);
147 g_free(i->suffix);
148 g_free(i);
150 break;
155 void add_boot_device_path(int32_t bootindex, DeviceState *dev,
156 const char *suffix)
158 FWBootEntry *node, *i;
160 if (bootindex < 0) {
161 del_boot_device_path(dev, suffix);
162 return;
165 assert(dev != NULL || suffix != NULL);
167 del_boot_device_path(dev, suffix);
169 node = g_malloc0(sizeof(FWBootEntry));
170 node->bootindex = bootindex;
171 node->suffix = g_strdup(suffix);
172 node->dev = dev;
174 QTAILQ_FOREACH(i, &fw_boot_order, link) {
175 if (i->bootindex == bootindex) {
176 error_report("Two devices with same boot index %d", bootindex);
177 exit(1);
178 } else if (i->bootindex < bootindex) {
179 continue;
181 QTAILQ_INSERT_BEFORE(i, node, link);
182 return;
184 QTAILQ_INSERT_TAIL(&fw_boot_order, node, link);
187 DeviceState *get_boot_device(uint32_t position)
189 uint32_t counter = 0;
190 FWBootEntry *i = NULL;
191 DeviceState *res = NULL;
193 if (!QTAILQ_EMPTY(&fw_boot_order)) {
194 QTAILQ_FOREACH(i, &fw_boot_order, link) {
195 if (counter == position) {
196 res = i->dev;
197 break;
199 counter++;
202 return res;
206 * This function returns null terminated string that consist of new line
207 * separated device paths.
209 * memory pointed by "size" is assigned total length of the array in bytes
212 char *get_boot_devices_list(size_t *size)
214 FWBootEntry *i;
215 size_t total = 0;
216 char *list = NULL;
217 MachineClass *mc = MACHINE_GET_CLASS(qdev_get_machine());
218 bool ignore_suffixes = mc->ignore_boot_device_suffixes;
220 QTAILQ_FOREACH(i, &fw_boot_order, link) {
221 char *devpath = NULL, *suffix = NULL;
222 char *bootpath;
223 char *d;
224 size_t len;
226 if (i->dev) {
227 devpath = qdev_get_fw_dev_path(i->dev);
228 assert(devpath);
231 if (!ignore_suffixes) {
232 if (i->dev) {
233 d = qdev_get_own_fw_dev_path_from_handler(i->dev->parent_bus,
234 i->dev);
235 if (d) {
236 assert(!i->suffix);
237 suffix = d;
238 } else {
239 suffix = g_strdup(i->suffix);
241 } else {
242 suffix = g_strdup(i->suffix);
246 bootpath = g_strdup_printf("%s%s",
247 devpath ? devpath : "",
248 suffix ? suffix : "");
249 g_free(devpath);
250 g_free(suffix);
252 if (total) {
253 list[total-1] = '\n';
255 len = strlen(bootpath) + 1;
256 list = g_realloc(list, total + len);
257 memcpy(&list[total], bootpath, len);
258 total += len;
259 g_free(bootpath);
262 *size = total;
264 if (boot_strict && *size > 0) {
265 list[total-1] = '\n';
266 list = g_realloc(list, total + 5);
267 memcpy(&list[total], "HALT", 5);
268 *size = total + 5;
270 return list;
273 typedef struct {
274 int32_t *bootindex;
275 const char *suffix;
276 DeviceState *dev;
277 } BootIndexProperty;
279 static void device_get_bootindex(Object *obj, Visitor *v, const char *name,
280 void *opaque, Error **errp)
282 BootIndexProperty *prop = opaque;
283 visit_type_int32(v, name, prop->bootindex, errp);
286 static void device_set_bootindex(Object *obj, Visitor *v, const char *name,
287 void *opaque, Error **errp)
289 BootIndexProperty *prop = opaque;
290 int32_t boot_index;
291 Error *local_err = NULL;
293 visit_type_int32(v, name, &boot_index, &local_err);
294 if (local_err) {
295 goto out;
297 /* check whether bootindex is present in fw_boot_order list */
298 check_boot_index(boot_index, &local_err);
299 if (local_err) {
300 goto out;
302 /* change bootindex to a new one */
303 *prop->bootindex = boot_index;
305 add_boot_device_path(*prop->bootindex, prop->dev, prop->suffix);
307 out:
308 error_propagate(errp, local_err);
311 static void property_release_bootindex(Object *obj, const char *name,
312 void *opaque)
315 BootIndexProperty *prop = opaque;
317 del_boot_device_path(prop->dev, prop->suffix);
318 g_free(prop);
321 void device_add_bootindex_property(Object *obj, int32_t *bootindex,
322 const char *name, const char *suffix,
323 DeviceState *dev, Error **errp)
325 Error *local_err = NULL;
326 BootIndexProperty *prop = g_malloc0(sizeof(*prop));
328 prop->bootindex = bootindex;
329 prop->suffix = suffix;
330 prop->dev = dev;
332 object_property_add(obj, name, "int32",
333 device_get_bootindex,
334 device_set_bootindex,
335 property_release_bootindex,
336 prop, &local_err);
338 if (local_err) {
339 error_propagate(errp, local_err);
340 g_free(prop);
341 return;
343 /* initialize devices' bootindex property to -1 */
344 object_property_set_int(obj, -1, name, NULL);