Home | History | Annotate | Download | only in qemu
      1 # SPDX-License-Identifier: GPL-2.0+
      2 #
      3 # Copyright (C) 2015, Bin Meng <bmeng.cn (a] gmail.com>
      4 
      5 config QEMU
      6 	bool
      7 	select ARCH_EARLY_INIT_R
      8 	imply AHCI_PCI
      9 	imply E1000
     10 	imply SCSI
     11 	imply SCSI_AHCI
     12 	imply SYS_NS16550
     13 	imply USB
     14 	imply USB_EHCI_HCD
     15 	imply VIDEO_VESA
     16 
     17 if QEMU
     18 
     19 config SYS_CAR_ADDR
     20 	hex
     21 	default 0x10000
     22 
     23 config SYS_CAR_SIZE
     24 	hex
     25 	default 0x10000
     26 
     27 config ACPI_PM1_BASE
     28 	hex
     29 	default 0xe400
     30 	help
     31 	  ACPI Power Managment 1 (PM1) i/o-mapped base address.
     32 	  This device is defined in ACPI specification, with 16 bytes in size.
     33 
     34 endif
     35