blob: 1416c891e86447fb013fb30edd63a9777cce0047 [file] [log] [blame]
Bin Mengafee3fb2015-02-02 22:35:28 +08001if TARGET_GALILEO
2
3config SYS_BOARD
4 default "galileo"
5
6config SYS_VENDOR
7 default "intel"
8
9config SYS_SOC
10 default "quark"
11
12config SYS_CONFIG_NAME
13 default "galileo"
14
Bin Meng99556d72015-04-27 23:22:28 +080015config SYS_TEXT_BASE
16 default 0xfff10000
17
Bin Mengafee3fb2015-02-02 22:35:28 +080018config BOARD_SPECIFIC_OPTIONS # dummy
19 def_bool y
20 select X86_RESET_VECTOR
21 select INTEL_QUARK
22 select BOARD_ROMSIZE_KB_1024
Bin Meng1df7f0b2017-07-30 06:23:26 -070023 select SPI_FLASH_WINBOND
Bin Mengafee3fb2015-02-02 22:35:28 +080024
Bin Meng8216b112016-05-22 01:45:39 -070025config SMBIOS_PRODUCT_NAME
26 default "GalileoGen2"
27 help
28 Override the default product name U-Boot reports in the SMBIOS
29 table, to be compatible with the Intel provided UEFI BIOS, as
30 Linux kernel drivers (drivers/mfd/intel_quark_i2c_gpio.c and
31 drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c) make use of
32 it to do different board level configuration.
33
34 This can be "Galileo" for GEN1 Galileo board.
35
Bin Mengafee3fb2015-02-02 22:35:28 +080036endif