2 * QEMU PC System Firmware
4 * Copyright (c) 2003-2004 Fabrice Bellard
5 * Copyright (c) 2011-2012 Intel Corporation
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:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
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
30 #include "hw/boards.h"
36 #define BIOS_FILENAME "bios.bin"
38 typedef struct PcSysFwDevice
{
43 static void pc_isa_bios_init(MemoryRegion
*rom_memory
,
44 MemoryRegion
*flash_mem
,
48 MemoryRegion
*isa_bios
;
50 void *flash_ptr
, *isa_bios_ptr
;
52 flash_size
= memory_region_size(flash_mem
);
54 /* map the last 128KB of the BIOS in ISA space */
55 isa_bios_size
= flash_size
;
56 if (isa_bios_size
> (128 * 1024)) {
57 isa_bios_size
= 128 * 1024;
59 isa_bios
= g_malloc(sizeof(*isa_bios
));
60 memory_region_init_ram(isa_bios
, "isa-bios", isa_bios_size
);
61 vmstate_register_ram_global(isa_bios
);
62 memory_region_add_subregion_overlap(rom_memory
,
63 0x100000 - isa_bios_size
,
67 /* copy ISA rom image from top of flash memory */
68 flash_ptr
= memory_region_get_ram_ptr(flash_mem
);
69 isa_bios_ptr
= memory_region_get_ram_ptr(isa_bios
);
71 ((uint8_t*)flash_ptr
) + (flash_size
- isa_bios_size
),
74 memory_region_set_readonly(isa_bios
, true);
77 static void pc_fw_add_pflash_drv(void)
83 if (bios_name
== NULL
) {
84 bios_name
= BIOS_FILENAME
;
86 filename
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, bios_name
);
88 opts
= drive_add(IF_PFLASH
, -1, filename
, "readonly=on");
96 machine
= find_default_machine();
97 if (machine
== NULL
) {
101 drive_init(opts
, machine
->use_scsi
);
104 static void pc_system_flash_init(MemoryRegion
*rom_memory
,
105 DriveInfo
*pflash_drv
)
107 BlockDriverState
*bdrv
;
109 target_phys_addr_t phys_addr
;
110 int sector_bits
, sector_size
;
111 pflash_t
*system_flash
;
112 MemoryRegion
*flash_mem
;
114 bdrv
= pflash_drv
->bdrv
;
115 size
= bdrv_getlength(pflash_drv
->bdrv
);
117 sector_size
= 1 << sector_bits
;
119 if ((size
% sector_size
) != 0) {
121 "qemu: PC system firmware (pflash) must be a multiple of 0x%x\n",
126 phys_addr
= 0x100000000ULL
- size
;
127 system_flash
= pflash_cfi01_register(phys_addr
, NULL
, "system.flash", size
,
128 bdrv
, sector_size
, size
>> sector_bits
,
129 1, 0x0000, 0x0000, 0x0000, 0x0000, 0);
130 flash_mem
= pflash_cfi01_get_memory(system_flash
);
132 pc_isa_bios_init(rom_memory
, flash_mem
, size
);
135 static void old_pc_system_rom_init(MemoryRegion
*rom_memory
)
138 MemoryRegion
*bios
, *isa_bios
;
139 int bios_size
, isa_bios_size
;
143 if (bios_name
== NULL
) {
144 bios_name
= BIOS_FILENAME
;
146 filename
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, bios_name
);
148 bios_size
= get_image_size(filename
);
152 if (bios_size
<= 0 ||
153 (bios_size
% 65536) != 0) {
156 bios
= g_malloc(sizeof(*bios
));
157 memory_region_init_ram(bios
, "pc.bios", bios_size
);
158 vmstate_register_ram_global(bios
);
159 memory_region_set_readonly(bios
, true);
160 ret
= rom_add_file_fixed(bios_name
, (uint32_t)(-bios_size
), -1);
163 fprintf(stderr
, "qemu: could not load PC BIOS '%s'\n", bios_name
);
170 /* map the last 128KB of the BIOS in ISA space */
171 isa_bios_size
= bios_size
;
172 if (isa_bios_size
> (128 * 1024)) {
173 isa_bios_size
= 128 * 1024;
175 isa_bios
= g_malloc(sizeof(*isa_bios
));
176 memory_region_init_alias(isa_bios
, "isa-bios", bios
,
177 bios_size
- isa_bios_size
, isa_bios_size
);
178 memory_region_add_subregion_overlap(rom_memory
,
179 0x100000 - isa_bios_size
,
182 memory_region_set_readonly(isa_bios
, true);
184 /* map all the bios at the top of memory */
185 memory_region_add_subregion(rom_memory
,
186 (uint32_t)(-bios_size
),
190 void pc_system_firmware_init(MemoryRegion
*rom_memory
)
192 DriveInfo
*pflash_drv
;
193 PcSysFwDevice
*sysfw_dev
;
195 sysfw_dev
= (PcSysFwDevice
*) qdev_create(NULL
, "pc-sysfw");
197 qdev_init_nofail(DEVICE(sysfw_dev
));
199 if (sysfw_dev
->rom_only
) {
200 old_pc_system_rom_init(rom_memory
);
204 pflash_drv
= drive_get(IF_PFLASH
, 0, 0);
206 /* Currently KVM cannot execute from device memory.
207 Use old rom based firmware initialization for KVM. */
209 if (pflash_drv
!= NULL
) {
210 fprintf(stderr
, "qemu: pflash cannot be used with kvm enabled\n");
213 sysfw_dev
->rom_only
= 1;
214 old_pc_system_rom_init(rom_memory
);
219 /* If a pflash drive is not found, then create one using
220 the bios filename. */
221 if (pflash_drv
== NULL
) {
222 pc_fw_add_pflash_drv();
223 pflash_drv
= drive_get(IF_PFLASH
, 0, 0);
226 if (pflash_drv
!= NULL
) {
227 pc_system_flash_init(rom_memory
, pflash_drv
);
229 fprintf(stderr
, "qemu: PC system firmware (pflash) not available\n");
234 static Property pcsysfw_properties
[] = {
235 DEFINE_PROP_UINT8("rom_only", PcSysFwDevice
, rom_only
, 0),
236 DEFINE_PROP_END_OF_LIST(),
239 static int pcsysfw_init(DeviceState
*dev
)
244 static void pcsysfw_class_init (ObjectClass
*klass
, void *data
)
246 DeviceClass
*dc
= DEVICE_CLASS (klass
);
248 dc
->desc
= "PC System Firmware";
249 dc
->init
= pcsysfw_init
;
250 dc
->props
= pcsysfw_properties
;
253 static TypeInfo pcsysfw_info
= {
255 .parent
= TYPE_SYS_BUS_DEVICE
,
256 .instance_size
= sizeof (PcSysFwDevice
),
257 .class_init
= pcsysfw_class_init
,
260 static void pcsysfw_register (void)
262 type_register_static (&pcsysfw_info
);
265 type_init (pcsysfw_register
);