Kconfig 755 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. if TARGET_CHROMEBOOK_LINK || TARGET_CHROMEBOOK_LINK64
  2. config SYS_BOARD
  3. default "chromebook_link"
  4. config SYS_VENDOR
  5. default "google"
  6. config SYS_SOC
  7. default "ivybridge"
  8. config SYS_CONFIG_NAME
  9. default "chromebook_link"
  10. config SYS_TEXT_BASE
  11. default 0xfff00000 if !SUPPORT_SPL
  12. default 0x10000000 if SUPPORT_SPL
  13. config BOARD_SPECIFIC_OPTIONS # dummy
  14. def_bool y
  15. select X86_RESET_VECTOR
  16. select USE_EARLY_BOARD_INIT
  17. select NORTHBRIDGE_INTEL_IVYBRIDGE
  18. select HAVE_INTEL_ME
  19. select BOARD_ROMSIZE_KB_8192
  20. select SPI_FLASH_WINBOND
  21. config PCIE_ECAM_BASE
  22. default 0xf0000000
  23. config EARLY_POST_CROS_EC
  24. bool "Enable early post to Chrome OS EC"
  25. default y
  26. config SYS_CAR_ADDR
  27. hex
  28. default 0xff7e0000
  29. config SYS_CAR_SIZE
  30. hex
  31. default 0x20000
  32. endif