barebox/arch/arm/mach-zynq/Kconfig
Steffen Trumtrar 508b996a62 ARM: zynq: add support for ethernet
Add support for the ethernet device 0 on the Zynq7000 SoC.
The GEM is compatible to/the same one as the macb on at91.

Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2013-04-03 17:21:51 +02:00

40 lines
558 B
Text

if ARCH_ZYNQ
config ARCH_TEXT_BASE
hex
default 0x1ff00000 if MACH_ZEDBOARD
config ZYNQ_DEBUG_LL_UART_BASE
hex
default 0xe0001000 if MACH_ZEDBOARD
config BOARDINFO
default "ZedBoard" if MACH_ZEDBOARD
choice
prompt "Xilinx Zynq type board"
config ARCH_ZYNQ7000
bool "Zynq-7000"
select CPU_V7
select CLKDEV_LOOKUP
select COMMON_CLK
select ARM_SMP_TWD
select HAS_MACB
endchoice
if ARCH_ZYNQ7000
choice
prompt "Zynq-7000 Board Type"
config MACH_ZEDBOARD
bool "Avnet Zynq-7000 ZedBoard"
select DRIVER_SERIAL_CADENCE
endchoice
endif
endif