Kconfig 862 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 USE_EARLY_BOARD_INIT
  16. select INTEL_APOLLOLAKE
  17. select BOARD_ROMSIZE_KB_16384
  18. config PCIE_ECAM_BASE
  19. default 0xe0000000
  20. config EARLY_POST_CROS_EC
  21. bool "Enable early post to Chrome OS EC"
  22. help
  23. Allow post codes to be sent to the Chroem OS EC early during boot,
  24. to enable monitoring of the boot and debugging when things go wrong.
  25. With this option enabled, the EC console can be used to watch post
  26. codes the first part of boot.
  27. config SYS_CAR_ADDR
  28. hex
  29. default 0xfef00000
  30. config SYS_CAR_SIZE
  31. hex
  32. default 0xc0000
  33. endif