blob: 31428dd0a004eb6adc985c4c9a6d0baf92f66e17 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Bin Menga65b25d2015-05-07 21:34:08 +08002#
3# Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
Bin Menga65b25d2015-05-07 21:34:08 +08004
5config QEMU
6 bool
Bin Meng5d89b372017-07-30 06:23:13 -07007 select ARCH_EARLY_INIT_R
Bin Meng24357df2017-07-30 19:24:02 -07008 imply AHCI_PCI
Bin Meng97e12b02017-07-30 06:23:24 -07009 imply E1000
Tuomas Tynkkynen9fd95ef2017-12-08 15:36:19 +020010 imply SCSI_AHCI
Bin Meng97e12b02017-07-30 06:23:24 -070011 imply SYS_NS16550
Bin Mengb9342b22017-07-30 06:23:27 -070012 imply USB
13 imply USB_EHCI_HCD
Bin Meng97e12b02017-07-30 06:23:24 -070014 imply VIDEO_VESA
Bin Menga65b25d2015-05-07 21:34:08 +080015
16if QEMU
17
18config SYS_CAR_ADDR
19 hex
Anton Gerasimov80f34252017-11-14 18:47:16 +010020 default 0x10000
Bin Menga65b25d2015-05-07 21:34:08 +080021
22config SYS_CAR_SIZE
23 hex
24 default 0x10000
25
Miao Yana3b15a02016-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 Menga65b25d2015-05-07 21:34:08 +080033endif