summaryrefslogtreecommitdiffstats
path: root/arch/kvx/Kconfig
blob: 2dea8cff8259ee9a6164056ebc20367ce0a8206f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# SPDX-License-Identifier: GPL-2.0-only

config KVX
	bool
	select 64BIT
	select BOOTM
	select BOOTM_ELF
	select BOOTM_OFTREE
	select BOOTM_INITRD
	select COMMON_CLK
	select COMMON_CLK_OF_PROVIDER
	select ELF
	select FLEXIBLE_BOOTARGS
	select FITIMAGE
	select GENERIC_FIND_NEXT_BIT
	select ARCH_HAS_SJLJ
	select HAS_CACHE
	select HAS_DMA
	select LIBFDT
	select MFD_SYSCON
	select OF_BAREBOX_DRIVERS
	select OFDEVICE
	select PARTITION
	select RESET_SOURCE
	default y

config PHYS_ADDR_T_64BIT
	bool

config 64BIT
	bool
	select ARCH_DMA_ADDR_T_64BIT
	select PHYS_ADDR_T_64BIT
	default y

config ARCH_TEXT_BASE
	hex
	default 0x110000000

menu "Board configuration"

config BUILTIN_DTB
	bool "link a DTB into the barebox image"
	depends on OFTREE

config BUILTIN_DTB_NAME
	string "DTB to build into the barebox image"
	depends on BUILTIN_DTB

choice
	prompt "Select your board"

config BOARD_K200
	bool "K200 Network card"

endchoice

endmenu