]> git.sur5r.net Git - u-boot/blob - arch/arm/mach-bcm283x/Kconfig
dc6770437ec6d97390ec24a02e8299909442fef3
[u-boot] / arch / arm / mach-bcm283x / Kconfig
1 config BCM2835
2         bool "Broadcom BCM2835 SoC support"
3         depends on ARCH_BCM283X
4
5 config BCM2836
6         bool "Broadcom BCM2836 SoC support"
7         depends on ARCH_BCM283X
8
9 menu "Broadcom BCM283X family"
10         depends on ARCH_BCM283X
11
12 choice
13         prompt "Broadcom BCM283X board select"
14         optional
15
16 config TARGET_RPI
17         bool "Raspberry Pi"
18         select BCM2835
19         select CPU_ARM1176
20
21 config TARGET_RPI_2
22         bool "Raspberry Pi 2"
23         select ARMV7_LPAE
24         select BCM2836
25         select CPU_V7
26
27 endchoice
28
29 config SYS_BOARD
30         default "rpi" if TARGET_RPI
31         default "rpi_2" if TARGET_RPI_2
32
33 config SYS_VENDOR
34         default "raspberrypi"
35
36 config SYS_SOC
37         default "bcm283x"
38
39 config SYS_CONFIG_NAME
40         default "rpi" if TARGET_RPI
41         default "rpi_2" if TARGET_RPI_2
42
43 endmenu