blob: 7b9b636baf8f425e923a70977b5a6e696cf9b329 [file] [log] [blame]
Nico Hubera08328ec2020-10-25 12:37:21 +01001# SPDX-License-Identifier: BSD-3-Clause
2
3# This automatically adds a `qemu` make target if a compatible
4# configuration is selected. There are some notable variables
Martin Roth1f30b242024-01-18 18:46:58 -07005# that can be set or adapted in `Makefile.mk` files, the make
Nico Hubera08328ec2020-10-25 12:37:21 +01006# command line or the environment:
7#
Martin Roth1f30b242024-01-18 18:46:58 -07008# Primarily for `Makefile.mk` use:
Nico Hubera08328ec2020-10-25 12:37:21 +01009# QEMU-y the QEMU executable
10# QEMU_CFG-y a QEMU config that sets the available default devices,
11# used to run more comprehensive tests by default,
12# e.g. many more PCI devices
13#
14# For general use:
15# QEMU_ARGS additional command line arguments (default: -serial stdio)
16# QEMU_EXTRA_CFGS additional config files that can add devices
17#
18# QEMU_CFG_ARGS gathers config file related arguments,
19# can be used to override a default config (QEMU_CFG-y)
20#
21# Examples:
22#
23# $ # Run coreboot's default config with additional command line args
24# $ make qemu QEMU_ARGS="-cdrom site-local/grml64-small_2018.12.iso"
25#
26# $ # Force QEMU's built-in config
27# $ make qemu QEMU_CFG_ARGS=
28
Nico Huber558d8b72023-06-21 19:44:59 +020029QEMU-$(CONFIG_BOARD_EMULATION_QEMU_AARCH64) ?= qemu-system-aarch64 \
30 -M virt,secure=on,virtualization=on -cpu cortex-a53 -m 1G
31
Maximilian Bruneee1cb8f2024-02-24 04:34:55 +010032QEMU-$(CONFIG_BOARD_EMULATION_QEMU_RISCV_RV64) ?= qemu-system-riscv64 -M virt -m 1G -drive \
33 if=pflash,file=build/coreboot.rom,format=raw
Philipp Hug1d3838b2024-02-01 21:57:22 +040034
Maximilian Bruneee1cb8f2024-02-24 04:34:55 +010035QEMU-$(CONFIG_BOARD_EMULATION_QEMU_RISCV_RV32) ?= qemu-system-riscv32 -M virt -m 1G -drive \
36 if=pflash,file=build/coreboot.rom,format=raw
Philipp Hug1d3838b2024-02-01 21:57:22 +040037
Nico Hubera08328ec2020-10-25 12:37:21 +010038QEMU-$(CONFIG_BOARD_EMULATION_QEMU_X86_I440FX) ?= qemu-system-x86_64 -M pc
Nico Huber9e20e2f2020-10-25 14:41:40 +010039
Nico Hubera08328ec2020-10-25 12:37:21 +010040QEMU-$(CONFIG_BOARD_EMULATION_QEMU_X86_Q35) ?= qemu-system-x86_64 -M q35
Nico Huber9e20e2f2020-10-25 14:41:40 +010041QEMU_CFG-$(CONFIG_BOARD_EMULATION_QEMU_X86_Q35) ?= util/qemu/q35-base.cfg
Nico Hubera08328ec2020-10-25 12:37:21 +010042
43ifneq ($(QEMU-y),)
44
45QEMU_ARGS ?= -serial stdio
46QEMU_EXTRA_CFGS ?=
47
48QEMU_CFG_ARGS ?= \
49 $(if $(QEMU_CFG-y),-nodefaults) \
50 $(addprefix -readconfig ,$(QEMU_CFG-y) $(QEMU_EXTRA_CFGS))
51
52qemu: $(obj)/coreboot.rom
53 $(QEMU-y) $(QEMU_CFG_ARGS) $(QEMU_ARGS) -bios $<
54
55.PHONY: qemu
56
57endif