blob: d5e09e8ee32b5320e0078386d18b1b70114d8e94 [file] [log] [blame]
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +09001menu "Broadcom BCM283X family"
2 depends on ARCH_BCM283X
3
4choice
5 prompt "Broadcom BCM283X board select"
6
7config TARGET_RPI
8 bool "Raspberry Pi"
9 select CPU_ARM1176
10
11config TARGET_RPI_2
12 bool "Raspberry Pi 2"
13 select CPU_V7
14
15endchoice
16
17config DM
18 default y
19
20config DM_SERIAL
21 default y
22
23config DM_GPIO
24 default y
25
26config SYS_BOARD
27 default "rpi" if TARGET_RPI
28 default "rpi_2" if TARGET_RPI_2
29
30config SYS_VENDOR
31 default "raspberrypi"
32
33config SYS_SOC
34 default "bcm2835"
35
36config SYS_CONFIG_NAME
37 default "rpi" if TARGET_RPI
38 default "rpi_2" if TARGET_RPI_2
39
40endmenu