xref: /openbmc/u-boot/arch/arm/mach-bcm283x/Kconfig (revision 3e79a4ab)
1menu "Broadcom BCM283X family"
2	depends on ARCH_BCM283X
3
4choice
5	prompt "Broadcom BCM283X board select"
6	optional
7
8config TARGET_RPI
9	bool "Raspberry Pi"
10	select CPU_ARM1176
11
12config TARGET_RPI_2
13	bool "Raspberry Pi 2"
14	select CPU_V7
15
16endchoice
17
18config SYS_BOARD
19	default "rpi" if TARGET_RPI
20	default "rpi_2" if TARGET_RPI_2
21
22config SYS_VENDOR
23	default "raspberrypi"
24
25config SYS_SOC
26	default "bcm283x"
27
28config SYS_CONFIG_NAME
29	default "rpi" if TARGET_RPI
30	default "rpi_2" if TARGET_RPI_2
31
32endmenu
33