blob: ef0fd306cd6e1fbebea658d1eeded55ad68c0b0e [file] [log] [blame]
Bin Menga65b25d2015-05-07 21:34:08 +08001#
2# Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
3#
4# SPDX-License-Identifier: GPL-2.0+
5#
6
7config QEMU
8 bool
Bin Meng5d89b372017-07-30 06:23:13 -07009 select ARCH_EARLY_INIT_R
Bin Meng97e12b02017-07-30 06:23:24 -070010 imply ENV_IS_NOWHERE
11 imply E1000
12 imply SYS_NS16550
13 imply VIDEO_VESA
Bin Menga65b25d2015-05-07 21:34:08 +080014
15if QEMU
16
17config SYS_CAR_ADDR
18 hex
19 default 0xd0000
20
21config SYS_CAR_SIZE
22 hex
23 default 0x10000
24
Miao Yana3b15a02016-01-20 01:57:05 -080025config ACPI_PM1_BASE
26 hex
27 default 0xe400
28 help
29 ACPI Power Managment 1 (PM1) i/o-mapped base address.
30 This device is defined in ACPI specification, with 16 bytes in size.
31
Bin Menga65b25d2015-05-07 21:34:08 +080032endif