Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Bin Meng | a65b25d | 2015-05-07 21:34:08 +0800 | [diff] [blame] | 2 | # |
3 | # Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com> | ||||
Bin Meng | a65b25d | 2015-05-07 21:34:08 +0800 | [diff] [blame] | 4 | |
5 | config QEMU | ||||
6 | bool | ||||
Bin Meng | 5d89b37 | 2017-07-30 06:23:13 -0700 | [diff] [blame] | 7 | select ARCH_EARLY_INIT_R |
Bin Meng | 24357df | 2017-07-30 19:24:02 -0700 | [diff] [blame] | 8 | imply AHCI_PCI |
Bin Meng | 97e12b0 | 2017-07-30 06:23:24 -0700 | [diff] [blame] | 9 | imply E1000 |
Bin Meng | fc48ebe | 2018-06-26 03:58:55 -0700 | [diff] [blame] | 10 | imply SCSI |
Tuomas Tynkkynen | 9fd95ef | 2017-12-08 15:36:19 +0200 | [diff] [blame] | 11 | imply SCSI_AHCI |
Bin Meng | 97e12b0 | 2017-07-30 06:23:24 -0700 | [diff] [blame] | 12 | imply SYS_NS16550 |
Bin Meng | b9342b2 | 2017-07-30 06:23:27 -0700 | [diff] [blame] | 13 | imply USB |
14 | imply USB_EHCI_HCD | ||||
Bin Meng | 97e12b0 | 2017-07-30 06:23:24 -0700 | [diff] [blame] | 15 | imply VIDEO_VESA |
Bin Meng | a65b25d | 2015-05-07 21:34:08 +0800 | [diff] [blame] | 16 | |
17 | if QEMU | ||||
18 | |||||
19 | config SYS_CAR_ADDR | ||||
20 | hex | ||||
Anton Gerasimov | 80f3425 | 2017-11-14 18:47:16 +0100 | [diff] [blame] | 21 | default 0x10000 |
Bin Meng | a65b25d | 2015-05-07 21:34:08 +0800 | [diff] [blame] | 22 | |
23 | config SYS_CAR_SIZE | ||||
24 | hex | ||||
25 | default 0x10000 | ||||
26 | |||||
Miao Yan | a3b15a0 | 2016-01-20 01:57:05 -0800 | [diff] [blame] | 27 | config ACPI_PM1_BASE |
28 | hex | ||||
29 | default 0xe400 | ||||
30 | help | ||||
Chris Packham | 9259c92 | 2019-01-13 22:13:22 +1300 | [diff] [blame] | 31 | ACPI Power Management 1 (PM1) i/o-mapped base address. |
Miao Yan | a3b15a0 | 2016-01-20 01:57:05 -0800 | [diff] [blame] | 32 | This device is defined in ACPI specification, with 16 bytes in size. |
33 | |||||
Bin Meng | a65b25d | 2015-05-07 21:34:08 +0800 | [diff] [blame] | 34 | endif |