xref: /openbmc/u-boot/board/coreboot/coreboot/Kconfig (revision 9ab403d0)
1if TARGET_COREBOOT
2
3config SYS_BOARD
4	default "coreboot"
5
6config SYS_VENDOR
7	default "coreboot"
8
9config SYS_SOC
10	default "coreboot"
11
12config SYS_CONFIG_NAME
13	default "coreboot"
14
15config SYS_TEXT_BASE
16	default 0x01110000
17
18config BOARD_SPECIFIC_OPTIONS # dummy
19	def_bool y
20	select BOARD_EARLY_INIT_R
21
22config SYS_CAR_ADDR
23	hex "Board specific Cache-As-RAM (CAR) address"
24	default 0x01920000
25	help
26	  This option specifies the board specific Cache-As-RAM (CAR) address.
27
28config SYS_CAR_SIZE
29	hex "Board specific Cache-As-RAM (CAR) size"
30	default 0x4000
31	help
32	  This option specifies the board specific Cache-As-RAM (CAR) size.
33
34endif
35