]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/mach-bcm283x/Kconfig
0c04c301b23f0ff8816af32f15086127d18114f8
[karo-tx-uboot.git] / 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
7 config TARGET_RPI
8         bool "Raspberry Pi"
9         select CPU_ARM1176
10
11 config TARGET_RPI_2
12         bool "Raspberry Pi 2"
13         select CPU_V7
14
15 endchoice
16
17 config DM
18         default y
19
20 config DM_SERIAL
21         default y
22
23 config DM_GPIO
24         default y
25
26 config PHYS_TO_BUS
27         default y
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