summaryrefslogtreecommitdiff
path: root/board/socionext/developerbox/Kconfig
blob: c181d26a44a607abf1449daf034b1b91033ec655 (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
if ARCH_SYNQUACER

choice
	prompt "SC2A11 Cortex-A53 MPCore 24cores"
	optional

config TARGET_DEVELOPERBOX
	bool "Socionext DeveloperBox"
	select PCI
	select PCIE_ECAM_SYNQUACER
	select SYS_DISABLE_DCACHE_OPS
	select OF_BOARD_SETUP
	help
	 Choose this option if you build the U-Boot for the DeveloperBox
	 96boards Enterprise Edition.
	 This board will booted from SCP firmware and it enables SMMU, thus
	 the dcache is updated automatically when DMA operation is executed.
endchoice

config SYS_SOC
	default "sc2a11"

if TARGET_DEVELOPERBOX

config SYS_BOARD
	default "developerbox"

config SYS_VENDOR
	default "socionext"

config SYS_CONFIG_NAME
	default "synquacer"

endif
endif