]> git.sur5r.net Git - u-boot/blob - board/coreboot/coreboot/Kconfig
Merge git://www.denx.de/git/u-boot-imx
[u-boot] / board / coreboot / coreboot / Kconfig
1 if TARGET_COREBOOT
2
3 config SYS_BOARD
4         default "coreboot"
5
6 config SYS_VENDOR
7         default "coreboot"
8
9 config SYS_SOC
10         default "coreboot"
11
12 config SYS_TEXT_BASE
13         default 0x01110000
14
15 config BOARD_SPECIFIC_OPTIONS # dummy
16         def_bool y
17         imply SPI_FLASH_ATMEL
18         imply SPI_FLASH_EON
19         imply SPI_FLASH_GIGADEVICE
20         imply SPI_FLASH_MACRONIX
21         imply SPI_FLASH_SPANSION
22         imply SPI_FLASH_STMICRO
23         imply SPI_FLASH_SST
24         imply SPI_FLASH_WINBOND
25
26 comment "coreboot-specific options"
27
28 config SYS_CONFIG_NAME
29         string "Board configuration file"
30         default "qemu-x86"
31         help
32           This option selects the board configuration file in include/configs/
33           directory to be used to build U-Boot for coreboot.
34
35 config DEFAULT_DEVICE_TREE
36         string "Board Device Tree Source (dts) file"
37         default "qemu-x86_i440fx"
38         help
39           This option selects the board Device Tree Source (dts) file in
40           arch/x86/dts/ directory to be used to build U-Boot for coreboot.
41
42 config SYS_CAR_ADDR
43         hex "Board specific Cache-As-RAM (CAR) address"
44         default 0x01920000
45         help
46           This option specifies the board specific Cache-As-RAM (CAR) address.
47
48 config SYS_CAR_SIZE
49         hex "Board specific Cache-As-RAM (CAR) size"
50         default 0x4000
51         help
52           This option specifies the board specific Cache-As-RAM (CAR) size.
53
54 endif