Kconfig 516 B

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