summaryrefslogtreecommitdiff
path: root/board/scalys/common/Kconfig
blob: ccbc3353e2f4c8d2ba79d213305b5040f4f3495e (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
if TARGET_SIMC_TXXXX || TARGET_QT1040_1GB || TARGET_QT1040_4GB

config SYS_VENDOR
	default "scalys"
	
config RAMBOOT_PBL
	bool
	default y

config SPL_FSL_PBL
	bool
	default y

config NOR_FLASH
	bool
	prompt "Support NOR flash"
	default y

config NAND_FLASH
	bool
	prompt "Support NAND flash"
	default y
	
config SPI_FLASH
	bool
	prompt "Support SPI flash"
	default y
	
config SDHC_FLASH
	bool
	prompt "Support SDHC flash"
	default y

choice
	prompt "SYSCLK frequency"
	default SYS_CLK_FREQ_100

config SYS_CLK_FREQ_66
	bool
	prompt "66.6 MHz"
	
config SYS_CLK_FREQ_100
	bool
	prompt "100 MHz"

endchoice

choice
	prompt "Bootsource"
	default NAND_FLASH_BOOT
	
config NAND_FLASH_BOOT
	bool
	depends on NAND_FLASH
	prompt "NAND boot"
	help
	Select NAND Flash as the bootsource
	
config NOR_FLASH_BOOT
	bool
	depends on NOR_FLASH
	prompt "NOR boot"
	help
	Select NOR Flash as the bootsource

config SPI_FLASH_BOOT
	bool
	depends on SPI_FLASH
	prompt "SPI boot"
	help
	Select SPI Flash as the bootsource
	
config SDHC_FLASH_BOOT
	bool
	depends on SDHC_FLASH
	prompt "SDHC boot"
	help
	Select SDHC Flash as the bootsource
endchoice

endif