Kconfig 608 B

1234567891011121314151617181920212223242526272829303132333435
  1. if TARGET_CHROMEBOX_PANTHER
  2. config SYS_BOARD
  3. default "chromebox_panther"
  4. config SYS_VENDOR
  5. default "google"
  6. config SYS_SOC
  7. default "ivybridge"
  8. config SYS_CONFIG_NAME
  9. default "chromebox_panther"
  10. config SYS_TEXT_BASE
  11. default 0xfff00000
  12. # Panther actually uses haswell, not ivybridge, so this is just a placeholder
  13. config BOARD_SPECIFIC_OPTIONS # dummy
  14. def_bool y
  15. select X86_RESET_VECTOR
  16. select NORTHBRIDGE_INTEL_IVYBRIDGE
  17. select HAVE_INTEL_ME
  18. select BOARD_ROMSIZE_KB_8192
  19. select SPI_FLASH_WINBOND
  20. config SYS_CAR_ADDR
  21. hex
  22. default 0xff7e0000
  23. config SYS_CAR_SIZE
  24. hex
  25. default 0x20000
  26. endif