summaryrefslogtreecommitdiff
path: root/cleopatre/buildroot/target/device/Spidcom/Config.in
blob: 532ac811b78199e30876fdcd39c040a9f3e104a4 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
menuconfig BR2_TARGET_SPIDCOM
	bool "Spidcom Device Support"
	depends on BR2_arm

if BR2_TARGET_SPIDCOM
comment "Spidcom Specific Device Support"
	depends on BR2_arm

choice
	prompt "SPC300 target board"
	default BR2_TARGET_SPIDCOM_SPK300G

config BR2_TARGET_SPIDCOM_ARIZONA
	bool "Arizona development board"
	depends on BR2_arm
	select BR2_TARGET_SPIDCOM_ARCH_SPC300
	help
	  Support for the Arizona SPC300 based device

config BR2_TARGET_SPIDCOM_MSE500
	bool "MSE500 development board"
	depends on BR2_arm
	select BR2_TARGET_SPIDCOM_ARCH_MSE500
	help
	  Support for the MSE500 (300 mode)

config BR2_TARGET_SPIDCOM_MCR500
	bool "MCR500 reference design board"
	depends on BR2_arm
	select BR2_TARGET_SPIDCOM_ARCH_MSE500
	help
	  Support for the MCR500

config BR2_TARGET_SPIDCOM_MSE500DINI_300
	bool "MSE500DINI_300 development board"
	depends on BR2_arm
	select BR2_TARGET_SPIDCOM_ARCH_MSE500
	help
	  Support for the MSE500 DINI prototype (300 mode)

config BR2_TARGET_SPIDCOM_SPK300G
	bool "SPK300-G development board"
	depends on BR2_arm
	select BR2_TARGET_SPIDCOM_ARCH_SPC300
	help
	  Support for the SPK300-G SPC300 based device

config BR2_TARGET_SPIDCOM_SPK300
	bool "SPK300 development board"
	depends on BR2_arm
	select BR2_TARGET_SPIDCOM_ARCH_SPC300
	help
	  Support for the SPK300 SPC300 based device

config BR2_TARGET_SPIDCOM_SPK310
	bool "SPK310 development board"
	depends on BR2_arm
	select BR2_TARGET_SPIDCOM_ARCH_SPC300
	help
	  Support for the SPK310 SPC300 based device

config BR2_TARGET_SPIDCOM_SCR310
	bool "SCR310 reference design board"
	depends on BR2_arm
	select BR2_TARGET_SPIDCOM_ARCH_SPC300
	help
	  Support for the SCR310 SPC300 based device

config BR2_TARGET_SPIDCOM_SPR300
	bool "SPR300 reference design board"
	depends on BR2_arm
	select BR2_TARGET_SPIDCOM_ARCH_SPC300
	help
	  Support for the SPR300 SPC300 based device

config BR2_TARGET_SPIDCOM_SPR310
	bool "SPR310 reference design board"
	depends on BR2_arm
	select BR2_TARGET_SPIDCOM_ARCH_SPC300
	help
	  Support for the SPR310 SPC300 based device

config BR2_TARGET_SPIDCOM_MPR520
	bool "MPR520 development board"
	depends on BR2_arm
	select BR2_TARGET_SPIDCOM_ARCH_MSE500
	help
	  Support for the MPR520 AV reference design

endchoice

config BR2_TARGET_SPIDCOM_PLC_MEM_SIZE_MB
	int "PLC memory size (in MB)"
	default "4"
	help
	  Size of the memory dedicated to the PLC subsystem (in MB).

config BR2_TARGET_SPIDCOM_ARCH_MSE500
        def_bool n
        help
	  Defines MSE500 chip family

config BR2_TARGET_SPIDCOM_ARCH_SPC300
        def_bool n
        help
	  Defines SPC300 chip family

config BR2_TARGET_SPIDCOM_BOARD
	string
	default "arizona" if BR2_TARGET_SPIDCOM_ARIZONA
	default "mse500" if BR2_TARGET_SPIDCOM_MSE500
	default "mcr500" if BR2_TARGET_SPIDCOM_MCR500
	default "mse500dini_300" if BR2_TARGET_SPIDCOM_MSE500DINI_300
	default "spk300g" if BR2_TARGET_SPIDCOM_SPK300G
	default "spk300" if BR2_TARGET_SPIDCOM_SPK300
	default "spk310" if BR2_TARGET_SPIDCOM_SPK310
	default "scr310" if BR2_TARGET_SPIDCOM_SCR310
	default "spr300" if BR2_TARGET_SPIDCOM_SPR300
	default "spr310" if BR2_TARGET_SPIDCOM_SPR310
	default "mpr520" if BR2_TARGET_SPIDCOM_MPR520
	default "none"
	depends on BR2_TARGET_SPIDCOM
	help
	  Type of board

config BR2_TARGET_SPIDCOM_CHIP
	string
	default "mse500" if BR2_TARGET_SPIDCOM_ARCH_MSE500
	default "spc300" if BR2_TARGET_SPIDCOM_ARCH_SPC300
	default "none"
	depends on BR2_TARGET_SPIDCOM
	help
	  Chip type of the board

endif