1# SPDX-License-Identifier: GPL-2.0+ 2# 3# Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com> 4 5config QEMU 6 bool 7 select ARCH_EARLY_INIT_R 8 imply AHCI_PCI 9 imply E1000 10 imply SCSI_AHCI 11 imply SYS_NS16550 12 imply USB 13 imply USB_EHCI_HCD 14 imply VIDEO_VESA 15 16if QEMU 17 18config SYS_CAR_ADDR 19 hex 20 default 0x10000 21 22config SYS_CAR_SIZE 23 hex 24 default 0x10000 25 26config 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 33endif 34