xref: /openbmc/u-boot/arch/x86/cpu/qemu/Kconfig (revision 0dfe3ffe)
1#
2# Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
3#
4# SPDX-License-Identifier:	GPL-2.0+
5#
6
7config QEMU
8	bool
9	select ARCH_EARLY_INIT_R
10	imply ENV_IS_NOWHERE
11	imply AHCI_PCI
12	imply E1000
13	imply SYS_NS16550
14	imply USB
15	imply USB_EHCI_HCD
16	imply VIDEO_VESA
17
18if QEMU
19
20config SYS_CAR_ADDR
21	hex
22	default 0xd0000
23
24config SYS_CAR_SIZE
25	hex
26	default 0x10000
27
28config ACPI_PM1_BASE
29	hex
30	default 0xe400
31	help
32	  ACPI Power Managment 1 (PM1) i/o-mapped base address.
33	  This device is defined in ACPI specification, with 16 bytes in size.
34
35endif
36