blob: 31428dd0a004eb6adc985c4c9a6d0baf92f66e17 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Bin Meng2229c4c2015-05-07 21:34:08 +08002#
3# Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
Bin Meng2229c4c2015-05-07 21:34:08 +08004
5config QEMU
6 bool
Bin Meng6f40e7c2017-07-30 06:23:13 -07007 select ARCH_EARLY_INIT_R
Bin Meng73f5bc12017-07-30 19:24:02 -07008 imply AHCI_PCI
Bin Mengb1f78732017-07-30 06:23:24 -07009 imply E1000
Tuomas Tynkkynenedf9f622017-12-08 15:36:19 +020010 imply SCSI_AHCI
Bin Mengb1f78732017-07-30 06:23:24 -070011 imply SYS_NS16550
Bin Meng5b5d1732017-07-30 06:23:27 -070012 imply USB
13 imply USB_EHCI_HCD
Bin Mengb1f78732017-07-30 06:23:24 -070014 imply VIDEO_VESA
Bin Meng2229c4c2015-05-07 21:34:08 +080015
16if QEMU
17
18config SYS_CAR_ADDR
19 hex
Anton Gerasimovc1f72e72017-11-14 18:47:16 +010020 default 0x10000
Bin Meng2229c4c2015-05-07 21:34:08 +080021
22config SYS_CAR_SIZE
23 hex
24 default 0x10000
25
Miao Yan35603ff2016-01-20 01:57:05 -080026config ACPI_PM1_BASE
27 hex
28 default 0xe400
29 help
30 ACPI Power Managment 1 (PM1) i/o-mapped base address.
31 This device is defined in ACPI specification, with 16 bytes in size.
32
Bin Meng2229c4c2015-05-07 21:34:08 +080033endif