]> git.proxmox.com Git - mirror_qemu.git/blame - hw/i386/pc_sysfw.c
i386: Add x-force-features option for testing
[mirror_qemu.git] / hw / i386 / pc_sysfw.c
CommitLineData
cbc5b5f3
JJ
1/*
2 * QEMU PC System Firmware
3 *
4 * Copyright (c) 2003-2004 Fabrice Bellard
5 * Copyright (c) 2011-2012 Intel Corporation
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 */
25
b6a0aa05 26#include "qemu/osdep.h"
a8d25326 27#include "qemu-common.h"
da34e65c 28#include "qapi/error.h"
fa1d36df 29#include "sysemu/block-backend.h"
b4a42f81 30#include "qemu/error-report.h"
922a01a0 31#include "qemu/option.h"
d471bf3e 32#include "qemu/units.h"
83c9f4ca
PB
33#include "hw/sysbus.h"
34#include "hw/hw.h"
0d09e41a 35#include "hw/i386/pc.h"
bd183c79 36#include "hw/boards.h"
83c9f4ca 37#include "hw/loader.h"
9c17d615 38#include "sysemu/sysemu.h"
0d09e41a 39#include "hw/block/flash.h"
9c17d615 40#include "sysemu/kvm.h"
cbc5b5f3
JJ
41
42#define BIOS_FILENAME "bios.bin"
43
ebc29e1b
MA
44/*
45 * We don't have a theoretically justifiable exact lower bound on the base
46 * address of any flash mapping. In practice, the IO-APIC MMIO range is
47 * [0xFEE00000..0xFEE01000] -- see IO_APIC_DEFAULT_ADDRESS --, leaving free
48 * only 18MB-4KB below 4G. For now, restrict the cumulative mapping to 8MB in
49 * size.
50 */
51#define FLASH_SIZE_LIMIT (8 * MiB)
52
53#define FLASH_SECTOR_SIZE 4096
54
bd183c79
JJ
55static void pc_isa_bios_init(MemoryRegion *rom_memory,
56 MemoryRegion *flash_mem,
57 int ram_size)
58{
59 int isa_bios_size;
60 MemoryRegion *isa_bios;
61 uint64_t flash_size;
62 void *flash_ptr, *isa_bios_ptr;
63
64 flash_size = memory_region_size(flash_mem);
65
66 /* map the last 128KB of the BIOS in ISA space */
d471bf3e 67 isa_bios_size = MIN(flash_size, 128 * KiB);
bd183c79 68 isa_bios = g_malloc(sizeof(*isa_bios));
98a99ce0 69 memory_region_init_ram(isa_bios, NULL, "isa-bios", isa_bios_size,
f8ed85ac 70 &error_fatal);
bd183c79
JJ
71 memory_region_add_subregion_overlap(rom_memory,
72 0x100000 - isa_bios_size,
73 isa_bios,
74 1);
75
76 /* copy ISA rom image from top of flash memory */
77 flash_ptr = memory_region_get_ram_ptr(flash_mem);
78 isa_bios_ptr = memory_region_get_ram_ptr(isa_bios);
79 memcpy(isa_bios_ptr,
80 ((uint8_t*)flash_ptr) + (flash_size - isa_bios_size),
81 isa_bios_size);
82
83 memory_region_set_readonly(isa_bios, true);
84}
85
ebc29e1b
MA
86static PFlashCFI01 *pc_pflash_create(PCMachineState *pcms,
87 const char *name,
88 const char *alias_prop_name)
89{
90 DeviceState *dev = qdev_create(NULL, TYPE_PFLASH_CFI01);
637a5acb 91
ebc29e1b
MA
92 qdev_prop_set_uint64(dev, "sector-length", FLASH_SECTOR_SIZE);
93 qdev_prop_set_uint8(dev, "width", 1);
94 qdev_prop_set_string(dev, "name", name);
95 object_property_add_child(OBJECT(pcms), name, OBJECT(dev),
96 &error_abort);
97 object_property_add_alias(OBJECT(pcms), alias_prop_name,
98 OBJECT(dev), "drive", &error_abort);
99 return PFLASH_CFI01(dev);
100}
637a5acb 101
ebc29e1b
MA
102void pc_system_flash_create(PCMachineState *pcms)
103{
104 PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms);
105
106 if (pcmc->pci_enabled) {
107 pcms->flash[0] = pc_pflash_create(pcms, "system.flash0",
108 "pflash0");
109 pcms->flash[1] = pc_pflash_create(pcms, "system.flash1",
110 "pflash1");
111 }
112}
113
114static void pc_system_flash_cleanup_unused(PCMachineState *pcms)
115{
116 char *prop_name;
117 int i;
118 Object *dev_obj;
119
120 assert(PC_MACHINE_GET_CLASS(pcms)->pci_enabled);
121
122 for (i = 0; i < ARRAY_SIZE(pcms->flash); i++) {
123 dev_obj = OBJECT(pcms->flash[i]);
124 if (!object_property_get_bool(dev_obj, "realized", &error_abort)) {
125 prop_name = g_strdup_printf("pflash%d", i);
126 object_property_del(OBJECT(pcms), prop_name, &error_abort);
127 g_free(prop_name);
128 object_unparent(dev_obj);
129 pcms->flash[i] = NULL;
130 }
131 }
132}
133
134/*
135 * Map the pcms->flash[] from 4GiB downward, and realize.
136 * Map them in descending order, i.e. pcms->flash[0] at the top,
137 * without gaps.
138 * Stop at the first pcms->flash[0] lacking a block backend.
139 * Set each flash's size from its block backend. Fatal error if the
140 * size isn't a non-zero multiple of 4KiB, or the total size exceeds
141 * FLASH_SIZE_LIMIT.
637a5acb 142 *
ebc29e1b
MA
143 * If pcms->flash[0] has a block backend, its memory is passed to
144 * pc_isa_bios_init(). Merging several flash devices for isa-bios is
637a5acb
LE
145 * not supported.
146 */
ebc29e1b
MA
147static void pc_system_flash_map(PCMachineState *pcms,
148 MemoryRegion *rom_memory)
bd183c79 149{
ebc29e1b
MA
150 hwaddr total_size = 0;
151 int i;
4be74634 152 BlockBackend *blk;
bd183c79 153 int64_t size;
16434065 154 PFlashCFI01 *system_flash;
bd183c79 155 MemoryRegion *flash_mem;
952e0668
BS
156 void *flash_ptr;
157 int ret, flash_size;
bd183c79 158
ebc29e1b
MA
159 assert(PC_MACHINE_GET_CLASS(pcms)->pci_enabled);
160
161 for (i = 0; i < ARRAY_SIZE(pcms->flash); i++) {
162 system_flash = pcms->flash[i];
163 blk = pflash_cfi01_get_blk(system_flash);
164 if (!blk) {
165 break;
166 }
4be74634 167 size = blk_getlength(blk);
637a5acb 168 if (size < 0) {
ebc29e1b
MA
169 error_report("can't get size of block device %s: %s",
170 blk_name(blk), strerror(-size));
171 exit(1);
637a5acb 172 }
ebc29e1b
MA
173 if (size == 0 || size % FLASH_SECTOR_SIZE != 0) {
174 error_report("system firmware block device %s has invalid size "
175 "%" PRId64,
176 blk_name(blk), size);
177 info_report("its size must be a non-zero multiple of 0x%x",
178 FLASH_SECTOR_SIZE);
179 exit(1);
180 }
181 if ((hwaddr)size != size
182 || total_size > HWADDR_MAX - size
183 || total_size + size > FLASH_SIZE_LIMIT) {
184 error_report("combined size of system firmware exceeds "
185 "%" PRIu64 " bytes",
186 FLASH_SIZE_LIMIT);
637a5acb
LE
187 exit(1);
188 }
189
ebc29e1b
MA
190 total_size += size;
191 qdev_prop_set_uint32(DEVICE(system_flash), "num-blocks",
192 size / FLASH_SECTOR_SIZE);
193 qdev_init_nofail(DEVICE(system_flash));
194 sysbus_mmio_map(SYS_BUS_DEVICE(system_flash), 0,
195 0x100000000ULL - total_size);
196
197 if (i == 0) {
637a5acb
LE
198 flash_mem = pflash_cfi01_get_memory(system_flash);
199 pc_isa_bios_init(rom_memory, flash_mem, size);
952e0668
BS
200
201 /* Encrypt the pflash boot ROM */
202 if (kvm_memcrypt_enabled()) {
203 flash_ptr = memory_region_get_ram_ptr(flash_mem);
204 flash_size = memory_region_size(flash_mem);
205 ret = kvm_memcrypt_encrypt_data(flash_ptr, flash_size);
206 if (ret) {
207 error_report("failed to encrypt pflash rom");
208 exit(1);
209 }
210 }
637a5acb 211 }
bd183c79 212 }
bd183c79
JJ
213}
214
dade922f 215static void old_pc_system_rom_init(MemoryRegion *rom_memory, bool isapc_ram_fw)
cbc5b5f3
JJ
216{
217 char *filename;
218 MemoryRegion *bios, *isa_bios;
219 int bios_size, isa_bios_size;
220 int ret;
221
222 /* BIOS load */
223 if (bios_name == NULL) {
224 bios_name = BIOS_FILENAME;
225 }
226 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
227 if (filename) {
228 bios_size = get_image_size(filename);
229 } else {
230 bios_size = -1;
231 }
232 if (bios_size <= 0 ||
233 (bios_size % 65536) != 0) {
234 goto bios_error;
235 }
236 bios = g_malloc(sizeof(*bios));
98a99ce0 237 memory_region_init_ram(bios, NULL, "pc.bios", bios_size, &error_fatal);
dade922f
JJ
238 if (!isapc_ram_fw) {
239 memory_region_set_readonly(bios, true);
240 }
cbc5b5f3
JJ
241 ret = rom_add_file_fixed(bios_name, (uint32_t)(-bios_size), -1);
242 if (ret != 0) {
243 bios_error:
244 fprintf(stderr, "qemu: could not load PC BIOS '%s'\n", bios_name);
245 exit(1);
246 }
18fc8055 247 g_free(filename);
cbc5b5f3
JJ
248
249 /* map the last 128KB of the BIOS in ISA space */
d471bf3e 250 isa_bios_size = MIN(bios_size, 128 * KiB);
cbc5b5f3 251 isa_bios = g_malloc(sizeof(*isa_bios));
2c9b15ca 252 memory_region_init_alias(isa_bios, NULL, "isa-bios", bios,
cbc5b5f3
JJ
253 bios_size - isa_bios_size, isa_bios_size);
254 memory_region_add_subregion_overlap(rom_memory,
255 0x100000 - isa_bios_size,
256 isa_bios,
257 1);
dade922f
JJ
258 if (!isapc_ram_fw) {
259 memory_region_set_readonly(isa_bios, true);
260 }
cbc5b5f3
JJ
261
262 /* map all the bios at the top of memory */
263 memory_region_add_subregion(rom_memory,
264 (uint32_t)(-bios_size),
265 bios);
266}
267
5e640a9e
PMD
268void pc_system_firmware_init(PCMachineState *pcms,
269 MemoryRegion *rom_memory)
cbc5b5f3 270{
5e640a9e 271 PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms);
ebc29e1b 272 int i;
ebc29e1b 273 BlockBackend *pflash_blk[ARRAY_SIZE(pcms->flash)];
1d38574f 274
ebc29e1b
MA
275 if (!pcmc->pci_enabled) {
276 old_pc_system_rom_init(rom_memory, true);
dafb82e0 277 return;
bd183c79
JJ
278 }
279
ebc29e1b
MA
280 /* Map legacy -drive if=pflash to machine properties */
281 for (i = 0; i < ARRAY_SIZE(pcms->flash); i++) {
2d731dbd
MA
282 pflash_cfi01_legacy_drive(pcms->flash[i],
283 drive_get(IF_PFLASH, 0, i));
c8d8ef00 284 pflash_blk[i] = pflash_cfi01_get_blk(pcms->flash[i]);
ebc29e1b
MA
285 }
286
287 /* Reject gaps */
288 for (i = 1; i < ARRAY_SIZE(pcms->flash); i++) {
289 if (pflash_blk[i] && !pflash_blk[i - 1]) {
290 error_report("pflash%d requires pflash%d", i, i - 1);
291 exit(1);
292 }
293 }
294
295 if (!pflash_blk[0]) {
296 /* Machine property pflash0 not set, use ROM mode */
297 old_pc_system_rom_init(rom_memory, false);
298 } else {
299 if (kvm_enabled() && !kvm_readonly_mem_enabled()) {
300 /*
301 * Older KVM cannot execute from device memory. So, flash
302 * memory cannot be used unless the readonly memory kvm
303 * capability is present.
304 */
305 error_report("pflash with kvm requires KVM readonly memory support");
306 exit(1);
307 }
308
309 pc_system_flash_map(pcms, rom_memory);
bd183c79 310 }
a904410a 311
ebc29e1b 312 pc_system_flash_cleanup_unused(pcms);
cbc5b5f3 313}