]> git.sur5r.net Git - u-boot/blob - arch/arm/mach-bcm283x/Kconfig
Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq
[u-boot] / arch / arm / mach-bcm283x / Kconfig
1 menu "Broadcom BCM283X family"
2         depends on ARCH_BCM283X
3
4 choice
5         prompt "Broadcom BCM283X board select"
6         optional
7
8 config TARGET_RPI
9         bool "Raspberry Pi"
10         select CPU_ARM1176
11
12 config TARGET_RPI_2
13         bool "Raspberry Pi 2"
14         select CPU_V7
15         select ARMV7_LPAE
16
17 endchoice
18
19 config SYS_BOARD
20         default "rpi" if TARGET_RPI
21         default "rpi_2" if TARGET_RPI_2
22
23 config SYS_VENDOR
24         default "raspberrypi"
25
26 config SYS_SOC
27         default "bcm283x"
28
29 config SYS_CONFIG_NAME
30         default "rpi" if TARGET_RPI
31         default "rpi_2" if TARGET_RPI_2
32
33 endmenu