Blame view

kernel/linux-imx6_3.14.28/arch/blackfin/mach-bf518/Kconfig 6.3 KB
6b13f685e   김민수   BSP 최초 추가
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
  config BF51x
  	def_bool y
  	depends on (BF512 || BF514 || BF516 || BF518)
  
  if (BF51x)
  
  source "arch/blackfin/mach-bf518/boards/Kconfig"
  
  menu "BF518 Specific Configuration"
  
  comment "Alternative Multiplexing Scheme"
  
  choice
  	prompt "PWM Channel Pins"
  	default BF518_PWM_ALL_PORTF
  	help
  	  Select pins used for the PWM channels:
  	    PWM_AH PWM_AL PWM_BH PWM_BL PWM_CH PWM_CL
  
  	  See the Hardware Reference Manual for more details.
  
  config BF518_PWM_ALL_PORTF
  	bool "PF1 - PF6"
  	help
  	  PF{1,2,3,4,5,6} <-> PWM_{AH,AL,BH,BL,CH,CL}
  
  config BF518_PWM_PORTF_PORTG
  	bool "PF11 - PF14 / PG1 - PG2"
  	help
  	  PF{11,12,13,14} <-> PWM_{AH,AL,BH,BL}
  	  PG{1,2} <-> PWM_{CH,CL}
  
  endchoice
  
  choice
  	prompt "PWM Sync Pin"
  	default BF518_PWM_SYNC_PF7
  	help
  	  Select the pin used for PWM_SYNC.
  
  	  See the Hardware Reference Manual for more details.
  
  config BF518_PWM_SYNC_PF7
  	bool "PF7"
  config BF518_PWM_SYNC_PF15
  	bool "PF15"
  endchoice
  
  choice
  	prompt "PWM Trip B Pin"
  	default BF518_PWM_TRIPB_PG10
  	help
  	  Select the pin used for PWM_TRIPB.
  
  	  See the Hardware Reference Manual for more details.
  
  config BF518_PWM_TRIPB_PG10
  	bool "PG10"
  config BF518_PWM_TRIPB_PG14
  	bool "PG14"
  endchoice
  
  choice
  	prompt "PPI / Timer Pins"
  	default BF518_PPI_TMR_PG5
  	help
  	  Select pins used for PPI/Timer:
  	    PPICLK PPIFS1 PPIFS2
  	    TMRCLK TMR0 TMR1
  
  	  See the Hardware Reference Manual for more details.
  
  config BF518_PPI_TMR_PG5
  	bool "PG5 - PG7"
  	help
  	  PG{5,6,7} <-> {PPICLK/TMRCLK,TMR0/PPIFS1,TMR1/PPIFS2}
  
  config BF518_PPI_TMR_PG12
  	bool "PG12 - PG14"
  	help
  	  PG{12,13,14} <-> {PPICLK/TMRCLK,TMR0/PPIFS1,TMR1/PPIFS2}
  
  endchoice
  
  comment "Hysteresis/Schmitt Trigger Control"
  config BFIN_HYSTERESIS_CONTROL
  	bool "Enable Hysteresis Control"
  	help
  	  The ADSP-BF51x allows to control input hysteresis for Port F,
  	  Port G and Port H and other processor signal inputs.
  	  The Schmitt trigger enables can be set only for pin groups.
  	  Saying Y will overwrite the default reset or boot loader
  	  initialization.
  
  menu "PORT F"
  	depends on BFIN_HYSTERESIS_CONTROL
  config GPIO_HYST_PORTF_0_7
  	bool "Enable Hysteresis on PORTF {0...7}"
  config GPIO_HYST_PORTF_8_9
  	bool "Enable Hysteresis on PORTF {8, 9}"
  config GPIO_HYST_PORTF_10
  	bool "Enable Hysteresis on PORTF 10"
  config GPIO_HYST_PORTF_11
  	bool "Enable Hysteresis on PORTF 11"
  config GPIO_HYST_PORTF_12_13
  	bool "Enable Hysteresis on PORTF {12, 13}"
  config GPIO_HYST_PORTF_14_15
  	bool "Enable Hysteresis on PORTF {14, 15}"
  endmenu
  
  menu "PORT G"
  	depends on BFIN_HYSTERESIS_CONTROL
  config GPIO_HYST_PORTG_0
  	bool "Enable Hysteresis on PORTG 0"
  config GPIO_HYST_PORTG_1_4
  	bool "Enable Hysteresis on PORTG {1...4}"
  config GPIO_HYST_PORTG_5_6
  	bool "Enable Hysteresis on PORTG {5, 6}"
  config GPIO_HYST_PORTG_7_8
  	bool "Enable Hysteresis on PORTG {7, 8}"
  config GPIO_HYST_PORTG_9
  	bool "Enable Hysteresis on PORTG 9"
  config GPIO_HYST_PORTG_10
  	bool "Enable Hysteresis on PORTG 10"
  config GPIO_HYST_PORTG_11_13
  	bool "Enable Hysteresis on PORTG {11...13}"
  config GPIO_HYST_PORTG_14_15
  	bool "Enable Hysteresis on PORTG {14, 15}"
  endmenu
  
  menu "PORT H"
  	depends on BFIN_HYSTERESIS_CONTROL
  config GPIO_HYST_PORTH_0_7
  	bool "Enable Hysteresis on PORTH {0...7}"
  
  endmenu
  
  menu "None-GPIO"
  	depends on BFIN_HYSTERESIS_CONTROL
  config NONEGPIO_HYST_NMI_RST_BMODE
  	bool "Enable Hysteresis on {NMI, RESET, BMODE}"
  config NONEGPIO_HYST_JTAG
  	bool "Enable Hysteresis on JTAG"
  endmenu
  
  comment "Interrupt Priority Assignment"
  menu "Priority"
  
  config IRQ_PLL_WAKEUP
  	int "IRQ_PLL_WAKEUP"
  	default 7
  config IRQ_DMA0_ERROR
  	int "IRQ_DMA0_ERROR"
  	default 7
  config IRQ_DMAR0_BLK
  	int "IRQ_DMAR0_BLK"
  	default 7
  config IRQ_DMAR1_BLK
  	int "IRQ_DMAR1_BLK"
  	default 7
  config IRQ_DMAR0_OVR
  	int "IRQ_DMAR0_OVR"
  	default 7
  config IRQ_DMAR1_OVR
  	int "IRQ_DMAR1_OVR"
  	default 7
  config IRQ_PPI_ERROR
  	int "IRQ_PPI_ERROR"
  	default 7
  config IRQ_MAC_ERROR
  	int "IRQ_MAC_ERROR"
  	default 7
  config IRQ_SPORT0_ERROR
  	int "IRQ_SPORT0_ERROR"
  	default 7
  config IRQ_SPORT1_ERROR
  	int "IRQ_SPORT1_ERROR"
  	default 7
  config IRQ_PTP_ERROR
  	int "IRQ_PTP_ERROR"
  	default 7
  config IRQ_UART0_ERROR
  	int "IRQ_UART0_ERROR"
  	default 7
  config IRQ_UART1_ERROR
  	int "IRQ_UART1_ERROR"
  	default 7
  config IRQ_RTC
  	int "IRQ_RTC"
  	default 8
  config IRQ_PPI
  	int "IRQ_PPI"
  	default 8
  config IRQ_SPORT0_RX
  	int "IRQ_SPORT0_RX"
  	default 9
  config IRQ_SPORT0_TX
  	int "IRQ_SPORT0_TX"
  	default 9
  config IRQ_SPORT1_RX
  	int "IRQ_SPORT1_RX"
  	default 9
  config IRQ_SPORT1_TX
  	int "IRQ_SPORT1_TX"
  	default 9
  config IRQ_TWI
  	int "IRQ_TWI"
  	default 10
  config IRQ_SPI0
  	int "IRQ_SPI"
  	default 10
  config IRQ_UART0_RX
  	int "IRQ_UART0_RX"
  	default 10
  config IRQ_UART0_TX
  	int "IRQ_UART0_TX"
  	default 10
  config IRQ_UART1_RX
  	int "IRQ_UART1_RX"
  	default 10
  config IRQ_UART1_TX
  	int "IRQ_UART1_TX"
  	default 10
  config IRQ_OPTSEC
  	int "IRQ_OPTSEC"
  	default 11
  config IRQ_CNT
  	int "IRQ_CNT"
  	default 11
  config IRQ_MAC_RX
  	int "IRQ_MAC_RX"
  	default 11
  config IRQ_PORTH_INTA
  	int "IRQ_PORTH_INTA"
  	default 11
  config IRQ_MAC_TX
  	int "IRQ_MAC_TX/NFC"
  	default 11
  config IRQ_PORTH_INTB
  	int "IRQ_PORTH_INTB"
  	default 11
  config IRQ_TIMER0
  	int "IRQ_TIMER0"
  	default 7 if TICKSOURCE_GPTMR0
  	default 8
  config IRQ_TIMER1
  	int "IRQ_TIMER1"
  	default 12
  config IRQ_TIMER2
  	int "IRQ_TIMER2"
  	default 12
  config IRQ_TIMER3
  	int "IRQ_TIMER3"
  	default 12
  config IRQ_TIMER4
  	int "IRQ_TIMER4"
  	default 12
  config IRQ_TIMER5
  	int "IRQ_TIMER5"
  	default 12
  config IRQ_TIMER6
  	int "IRQ_TIMER6"
  	default 12
  config IRQ_TIMER7
  	int "IRQ_TIMER7"
  	default 12
  config IRQ_PORTG_INTA
  	int "IRQ_PORTG_INTA"
  	default 12
  config IRQ_PORTG_INTB
  	int "IRQ_PORTG_INTB"
  	default 12
  config IRQ_MEM_DMA0
  	int "IRQ_MEM_DMA0"
  	default 13
  config IRQ_MEM_DMA1
  	int "IRQ_MEM_DMA1"
  	default 13
  config IRQ_WATCH
  	int "IRQ_WATCH"
  	default 13
  config IRQ_PORTF_INTA
  	int "IRQ_PORTF_INTA"
  	default 13
  config IRQ_PORTF_INTB
  	int "IRQ_PORTF_INTB"
  	default 13
  config IRQ_SPI0_ERROR
  	int "IRQ_SPI0_ERROR"
  	default 7
  config IRQ_SPI1_ERROR
  	int "IRQ_SPI1_ERROR"
  	default 7
  config IRQ_RSI_INT0
  	int "IRQ_RSI_INT0"
  	default 7
  config IRQ_RSI_INT1
  	int "IRQ_RSI_INT1"
  	default 7
  config IRQ_PWM_TRIP
  	int "IRQ_PWM_TRIP"
  	default 10
  config IRQ_PWM_SYNC
  	int "IRQ_PWM_SYNC"
  	default 10
  config IRQ_PTP_STAT
  	int "IRQ_PTP_STAT"
  	default 10
  
  	help
  	  Enter the priority numbers between 7-13 ONLY.  Others are Reserved.
  	  This applies to all the above.  It is not recommended to assign the
  	  highest priority number 7 to UART or any other device.
  
  endmenu
  
  endmenu
  
  endif