Kconfig 682 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. if VENDOR_COREBOOT
  2. config SYS_BOARD
  3. default "coreboot"
  4. config SYS_VENDOR
  5. default "coreboot"
  6. config SYS_SOC
  7. default "coreboot"
  8. config SYS_TEXT_BASE
  9. default 0x01110000
  10. config BOARD_SPECIFIC_OPTIONS # dummy
  11. def_bool y
  12. select BOARD_EARLY_INIT_R
  13. config SYS_CAR_ADDR
  14. hex "Board specific Cache-As-RAM (CAR) address"
  15. default 0x01920000
  16. help
  17. This option specifies the board specific Cache-As-RAM (CAR) address.
  18. config SYS_CAR_SIZE
  19. hex "Board specific Cache-As-RAM (CAR) size"
  20. default 0x4000
  21. help
  22. This option specifies the board specific Cache-As-RAM (CAR) size.
  23. endif # CONFIG_VENDOR_COREBOOT
  24. if TARGET_COREBOOT
  25. config SYS_CONFIG_NAME
  26. default "coreboot"
  27. endif