1menu "MicroBlaze architecture"
2	depends on MICROBLAZE
3
4config SYS_ARCH
5	default "microblaze"
6
7config STATIC_RELA
8	def_bool y
9
10choice
11	prompt "Target select"
12	optional
13
14config TARGET_MICROBLAZE_GENERIC
15	bool "Support microblaze-generic"
16	select BOARD_LATE_INIT
17	select DM
18	select DM_SERIAL
19	select OF_CONTROL
20	select SUPPORT_SPL
21	select SPL_LIBCOMMON_SUPPORT if SPL
22	select SPL_LIBGENERIC_SUPPORT if SPL
23	select SYSRESET
24	select DM_SPI
25	select DM_SPI_FLASH
26	select MTD
27	select SPI
28	imply CMD_DM
29
30endchoice
31
32source "board/xilinx/Kconfig"
33source "board/xilinx/microblaze-generic/Kconfig"
34
35endmenu
36