Kconfig 833 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. if TARGET_CHROMEBOOK_CORAL
  2. config SYS_BOARD
  3. default "chromebook_coral"
  4. config SYS_VENDOR
  5. default "google"
  6. config SYS_SOC
  7. default "apollolake"
  8. config SYS_CONFIG_NAME
  9. default "chromebook_coral"
  10. config SYS_TEXT_BASE
  11. default 0xffe00000
  12. config BOARD_SPECIFIC_OPTIONS # dummy
  13. def_bool y
  14. select X86_RESET_VECTOR
  15. select INTEL_APOLLOLAKE
  16. select BOARD_ROMSIZE_KB_16384
  17. config PCIE_ECAM_BASE
  18. default 0xf0000000
  19. config EARLY_POST_CROS_EC
  20. bool "Enable early post to Chrome OS EC"
  21. help
  22. Allow post codes to be sent to the Chroem OS EC early during boot,
  23. to enable monitoring of the boot and debugging when things go wrong.
  24. With this option enabled, the EC console can be used to watch post
  25. codes the first part of boot.
  26. config SYS_CAR_ADDR
  27. hex
  28. default 0xfef00000
  29. config SYS_CAR_SIZE
  30. hex
  31. default 0xc0000
  32. endif