summaryrefslogtreecommitdiff
path: root/board/scalys/simc-t10xx/Kconfig
blob: d43dc85788dcfa387adeaee30140507acbbebace (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
if TARGET_SIMC_T10XX

config SYS_BOARD
	string
	default "simc-t10xx"

config SYS_VENDOR
	string
	default "scalys"

config SYS_CONFIG_NAME
	string
	default "simc-t10xx"
	
config RAMBOOT_PBL
	bool
	default y

config SPL_FSL_PBL
	bool
	default y

choice
	prompt "Bootsource"
	default NAND
config NAND
	bool
	prompt "NAND boot"
	help
	Select NAND as the bootsource

endchoice

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 "CPU type"
	default PPC_T1040
	help
	Select the exact type of CPU which is used on the version of the simc-t10xx module
	
config PPC_T1020
	bool
	prompt "T1020"
	
config PPC_T1022
	bool
	prompt "T1040"

config PPC_T1040
	bool
	prompt "T1040"

config PPC_T1042
	bool
	prompt "T1042"
	
endchoice

endif