Linux Audio

Check our new training course

Embedded Linux Audio

Check our new training course
with Creative Commons CC-BY-SA
lecture materials

Bootlin logo

Elixir Cross Referencer

Loading...
  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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
== MediaTek MT7622 pinctrl controller ==

Required properties for the root node:
 - compatible: Should be one of the following
	       "mediatek,mt7622-pinctrl" for MT7622 SoC
	       "mediatek,mt7629-pinctrl" for MT7629 SoC
 - reg: offset and length of the pinctrl space

 - gpio-controller: Marks the device node as a GPIO controller.
 - #gpio-cells: Should be two. The first cell is the pin number and the
   second is the GPIO flags.

Optional properties:
- interrupt-controller  : Marks the device node as an interrupt controller

If the property interrupt-controller is defined, following property is required
- reg-names: A string describing the "reg" entries. Must contain "eint".
- interrupts : The interrupt output from the controller.
- #interrupt-cells: Should be two.

Please refer to pinctrl-bindings.txt in this directory for details of the
common pinctrl bindings used by client devices, including the meaning of the
phrase "pin configuration node".

MT7622 pin configuration nodes act as a container for an arbitrary number of
subnodes. Each of these subnodes represents some desired configuration for a
pin, a group, or a list of pins or groups. This configuration can include the
mux function to select on those pin(s)/group(s), and various pin configuration
parameters, such as pull-up, slew rate, etc.

We support 2 types of configuration nodes. Those nodes can be either pinmux
nodes or pinconf nodes. Each configuration node can consist of multiple nodes
describing the pinmux and pinconf options.

The name of each subnode doesn't matter as long as it is unique; all subnodes
should be enumerated and processed purely based on their content.

== pinmux nodes content ==

The following generic properties as defined in pinctrl-bindings.txt are valid
to specify in a pinmux subnode:

Required properties are:
 - groups: An array of strings. Each string contains the name of a group.
  Valid values for these names are listed below.
 - function: A string containing the name of the function to mux to the
  group. Valid values for function names are listed below.

== pinconf nodes content ==

The following generic properties as defined in pinctrl-bindings.txt are valid
to specify in a pinconf subnode:

Required properties are:
 - pins: An array of strings. Each string contains the name of a pin.
  Valid values for these names are listed below.
 - groups: An array of strings. Each string contains the name of a group.
  Valid values for these names are listed below.

Optional properies are:
 bias-disable, bias-pull, bias-pull-down, input-enable,
 input-schmitt-enable, input-schmitt-disable, output-enable
 output-low, output-high, drive-strength, slew-rate

 Valid arguments for 'slew-rate' are '0' for no slew rate controlled and '1' for
 slower slew rate respectively.
 Valid arguments for 'drive-strength', 4, 8, 12, or 16 in mA.

The following specific properties as defined are valid to specify in a pinconf
subnode:

Optional properties are:
 - mediatek,tdsel: An integer describing the steps for output level shifter duty
   cycle when asserted (high pulse width adjustment). Valid arguments are from 0
   to 15.
 - mediatek,rdsel: An integer describing the steps for input level shifter duty
   cycle when asserted (high pulse width adjustment). Valid arguments are from 0
   to 63.

== Valid values for pins, function and groups on MT7622 ==

Valid values for pins are:
pins can be referenced via the pin names as the below table shown and the
related physical number is also put ahead of those names which helps cross
references to pins between groups to know whether pins assignment conflict
happens among devices try to acquire those available pins.

	Pin #:  Valid values for pins
	-----------------------------
	PIN 0: "GPIO_A"
	PIN 1: "I2S1_IN"
	PIN 2: "I2S1_OUT"
	PIN 3: "I2S_BCLK"
	PIN 4: "I2S_WS"
	PIN 5: "I2S_MCLK"
	PIN 6: "TXD0"
	PIN 7: "RXD0"
	PIN 8: "SPI_WP"
	PIN 9: "SPI_HOLD"
	PIN 10: "SPI_CLK"
	PIN 11: "SPI_MOSI"
	PIN 12: "SPI_MISO"
	PIN 13: "SPI_CS"
	PIN 14: "I2C_SDA"
	PIN 15: "I2C_SCL"
	PIN 16: "I2S2_IN"
	PIN 17: "I2S3_IN"
	PIN 18: "I2S4_IN"
	PIN 19: "I2S2_OUT"
	PIN 20: "I2S3_OUT"
	PIN 21: "I2S4_OUT"
	PIN 22: "GPIO_B"
	PIN 23: "MDC"
	PIN 24: "MDIO"
	PIN 25: "G2_TXD0"
	PIN 26: "G2_TXD1"
	PIN 27: "G2_TXD2"
	PIN 28: "G2_TXD3"
	PIN 29: "G2_TXEN"
	PIN 30: "G2_TXC"
	PIN 31: "G2_RXD0"
	PIN 32: "G2_RXD1"
	PIN 33: "G2_RXD2"
	PIN 34: "G2_RXD3"
	PIN 35: "G2_RXDV"
	PIN 36: "G2_RXC"
	PIN 37: "NCEB"
	PIN 38: "NWEB"
	PIN 39: "NREB"
	PIN 40: "NDL4"
	PIN 41: "NDL5"
	PIN 42: "NDL6"
	PIN 43: "NDL7"
	PIN 44: "NRB"
	PIN 45: "NCLE"
	PIN 46: "NALE"
	PIN 47: "NDL0"
	PIN 48: "NDL1"
	PIN 49: "NDL2"
	PIN 50: "NDL3"
	PIN 51: "MDI_TP_P0"
	PIN 52: "MDI_TN_P0"
	PIN 53: "MDI_RP_P0"
	PIN 54: "MDI_RN_P0"
	PIN 55: "MDI_TP_P1"
	PIN 56: "MDI_TN_P1"
	PIN 57: "MDI_RP_P1"
	PIN 58: "MDI_RN_P1"
	PIN 59: "MDI_RP_P2"
	PIN 60: "MDI_RN_P2"
	PIN 61: "MDI_TP_P2"
	PIN 62: "MDI_TN_P2"
	PIN 63: "MDI_TP_P3"
	PIN 64: "MDI_TN_P3"
	PIN 65: "MDI_RP_P3"
	PIN 66: "MDI_RN_P3"
	PIN 67: "MDI_RP_P4"
	PIN 68: "MDI_RN_P4"
	PIN 69: "MDI_TP_P4"
	PIN 70: "MDI_TN_P4"
	PIN 71: "PMIC_SCL"
	PIN 72: "PMIC_SDA"
	PIN 73: "SPIC1_CLK"
	PIN 74: "SPIC1_MOSI"
	PIN 75: "SPIC1_MISO"
	PIN 76: "SPIC1_CS"
	PIN 77: "GPIO_D"
	PIN 78: "WATCHDOG"
	PIN 79: "RTS3_N"
	PIN 80: "CTS3_N"
	PIN 81: "TXD3"
	PIN 82: "RXD3"
	PIN 83: "PERST0_N"
	PIN 84: "PERST1_N"
	PIN 85: "WLED_N"
	PIN 86: "EPHY_LED0_N"
	PIN 87: "AUXIN0"
	PIN 88: "AUXIN1"
	PIN 89: "AUXIN2"
	PIN 90: "AUXIN3"
	PIN 91: "TXD4"
	PIN 92: "RXD4"
	PIN 93: "RTS4_N"
	PIN 94: "CST4_N"
	PIN 95: "PWM1"
	PIN 96: "PWM2"
	PIN 97: "PWM3"
	PIN 98: "PWM4"
	PIN 99: "PWM5"
	PIN 100: "PWM6"
	PIN 101: "PWM7"
	PIN 102: "GPIO_E"

Valid values for function are:
	"emmc", "eth", "i2c", "i2s", "ir", "led", "flash", "pcie",
	"pmic", "pwm", "sd", "spi", "tdm", "uart", "watchdog"

Valid values for groups are:
additional data is put followingly with valid value allowing us to know which
applicable function and which relevant pins (in pin#) are able applied for that
group.

	Valid value			function	pins (in pin#)
	-------------------------------------------------------------------------
	"emmc"				"emmc"		40, 41, 42, 43, 44, 45,
							47, 48, 49, 50
	"emmc_rst"			"emmc"		37
	"esw"				"eth"		51, 52, 53, 54, 55, 56,
							57, 58, 59, 60, 61, 62,
							63, 64, 65, 66, 67, 68,
							69, 70
	"esw_p0_p1"			"eth"		51, 52, 53, 54, 55, 56,
							57, 58
	"esw_p2_p3_p4"			"eth"		59, 60, 61, 62, 63, 64,
							65, 66, 67, 68, 69, 70
	"rgmii_via_esw"			"eth"		59, 60, 61, 62, 63, 64,
							65, 66, 67, 68, 69, 70
	"rgmii_via_gmac1"		"eth"		59, 60, 61, 62, 63, 64,
							65, 66, 67, 68, 69, 70
	"rgmii_via_gmac2"		"eth"		25, 26, 27, 28, 29, 30,
							31, 32, 33, 34, 35, 36
	"mdc_mdio"			"eth"		23, 24
	"i2c0"				"i2c"		14, 15
	"i2c1_0"			"i2c"		55, 56
	"i2c1_1"			"i2c"		73, 74
	"i2c1_2"			"i2c"		87, 88
	"i2c2_0"			"i2c"		57, 58
	"i2c2_1"			"i2c"		75, 76
	"i2c2_2"			"i2c"		89, 90
	"i2s_in_mclk_bclk_ws"		"i2s"		3, 4, 5
	"i2s1_in_data"			"i2s"		1
	"i2s2_in_data"			"i2s"		16
	"i2s3_in_data"			"i2s"		17
	"i2s4_in_data"			"i2s"		18
	"i2s_out_mclk_bclk_ws"		"i2s"		3, 4, 5
	"i2s1_out_data"			"i2s"		2
	"i2s2_out_data"			"i2s"		19
	"i2s3_out_data"			"i2s"		20
	"i2s4_out_data"			"i2s"		21
	"ir_0_tx"			"ir"		16
	"ir_1_tx"			"ir"		59
	"ir_2_tx"			"ir"		99
	"ir_0_rx"			"ir"		17
	"ir_1_rx"			"ir"		60
	"ir_2_rx"			"ir"		100
	"ephy_leds"			"led"		86, 91, 92, 93, 94
	"ephy0_led"			"led"		86
	"ephy1_led"			"led"		91
	"ephy2_led"			"led"		92
	"ephy3_led"			"led"		93
	"ephy4_led"			"led"		94
	"wled"				"led"		85
	"par_nand"			"flash"		37, 38, 39, 40, 41, 42,
							43, 44, 45, 46, 47, 48,
							49, 50
	"snfi"				"flash"		8, 9, 10, 11, 12, 13
	"spi_nor"			"flash"		8, 9, 10, 11, 12, 13
	"pcie0_0_waken"			"pcie"		14
	"pcie0_1_waken"			"pcie"		79
	"pcie1_0_waken"			"pcie"		14
	"pcie0_0_clkreq"		"pcie"		15
	"pcie0_1_clkreq"		"pcie"		80
	"pcie1_0_clkreq"		"pcie"		15
	"pcie0_pad_perst"		"pcie"		83
	"pcie1_pad_perst"		"pcie"		84
	"pmic_bus"			"pmic"		71, 72
	"pwm_ch1_0"			"pwm"		51
	"pwm_ch1_1"			"pwm"		73
	"pwm_ch1_2"			"pwm"		95
	"pwm_ch2_0"			"pwm"		52
	"pwm_ch2_1"			"pwm"		74
	"pwm_ch2_2"			"pwm"		96
	"pwm_ch3_0"			"pwm"		53
	"pwm_ch3_1"			"pwm"		75
	"pwm_ch3_2"			"pwm"		97
	"pwm_ch4_0"			"pwm"		54
	"pwm_ch4_1"			"pwm"		67
	"pwm_ch4_2"			"pwm"		76
	"pwm_ch4_3"			"pwm"		98
	"pwm_ch5_0"			"pwm"		68
	"pwm_ch5_1"			"pwm"		77
	"pwm_ch5_2"			"pwm"		99
	"pwm_ch6_0"			"pwm"		69
	"pwm_ch6_1"			"pwm"		78
	"pwm_ch6_2"			"pwm"		81
	"pwm_ch6_3"			"pwm"		100
	"pwm_ch7_0"			"pwm"		70
	"pwm_ch7_1"			"pwm"		82
	"pwm_ch7_2"			"pwm"		101
	"sd_0"				"sd"		16, 17, 18, 19, 20, 21
	"sd_1"				"sd"		25, 26, 27, 28, 29, 30
	"spic0_0"			"spi"		63, 64, 65, 66
	"spic0_1"			"spi"		79, 80, 81, 82
	"spic1_0"			"spi"		67, 68, 69, 70
	"spic1_1"			"spi"		73, 74, 75, 76
	"spic2_0_wp_hold"		"spi"		8, 9
	"spic2_0"			"spi"		10, 11, 12, 13
	"tdm_0_out_mclk_bclk_ws"	"tdm"		8, 9, 10
	"tdm_0_in_mclk_bclk_ws"		"tdm"		11, 12, 13
	"tdm_0_out_data"		"tdm"		20
	"tdm_0_in_data"			"tdm"		21
	"tdm_1_out_mclk_bclk_ws"	"tdm"		57, 58, 59
	"tdm_1_in_mclk_bclk_ws"		"tdm"		60, 61, 62
	"tdm_1_out_data"		"tdm"		55
	"tdm_1_in_data"			"tdm"		56
	"uart0_0_tx_rx"			"uart"		6, 7
	"uart1_0_tx_rx"			"uart"		55, 56
	"uart1_0_rts_cts"		"uart"		57, 58
	"uart1_1_tx_rx"			"uart"		73, 74
	"uart1_1_rts_cts"		"uart"		75, 76
	"uart2_0_tx_rx"			"uart"		3, 4
	"uart2_0_rts_cts"		"uart"		1, 2
	"uart2_1_tx_rx"			"uart"		51, 52
	"uart2_1_rts_cts"		"uart"		53, 54
	"uart2_2_tx_rx"			"uart"		59, 60
	"uart2_2_rts_cts"		"uart"		61, 62
	"uart2_3_tx_rx"			"uart"		95, 96
	"uart3_0_tx_rx"			"uart"		57, 58
	"uart3_1_tx_rx"			"uart"		81, 82
	"uart3_1_rts_cts"		"uart"		79, 80
	"uart4_0_tx_rx"			"uart"		61, 62
	"uart4_1_tx_rx"			"uart"		91, 92
	"uart4_1_rts_cts"		"uart"		93, 94
	"uart4_2_tx_rx"			"uart"		97, 98
	"uart4_2_rts_cts"		"uart"		95, 96
	"watchdog"			"watchdog"	78


== Valid values for pins, function and groups on MT7629 ==

	Pin #:  Valid values for pins
	-----------------------------
	PIN 0: "TOP_5G_CLK"
	PIN 1: "TOP_5G_DATA"
	PIN 2: "WF0_5G_HB0"
	PIN 3: "WF0_5G_HB1"
	PIN 4: "WF0_5G_HB2"
	PIN 5: "WF0_5G_HB3"
	PIN 6: "WF0_5G_HB4"
	PIN 7: "WF0_5G_HB5"
	PIN 8: "WF0_5G_HB6"
	PIN 9: "XO_REQ"
	PIN 10: "TOP_RST_N"
	PIN 11: "SYS_WATCHDOG"
	PIN 12: "EPHY_LED0_N_JTDO"
	PIN 13: "EPHY_LED1_N_JTDI"
	PIN 14: "EPHY_LED2_N_JTMS"
	PIN 15: "EPHY_LED3_N_JTCLK"
	PIN 16: "EPHY_LED4_N_JTRST_N"
	PIN 17: "WF2G_LED_N"
	PIN 18: "WF5G_LED_N"
	PIN 19: "I2C_SDA"
	PIN 20: "I2C_SCL"
	PIN 21: "GPIO_9"
	PIN 22: "GPIO_10"
	PIN 23: "GPIO_11"
	PIN 24: "GPIO_12"
	PIN 25: "UART1_TXD"
	PIN 26: "UART1_RXD"
	PIN 27: "UART1_CTS"
	PIN 28: "UART1_RTS"
	PIN 29: "UART2_TXD"
	PIN 30: "UART2_RXD"
	PIN 31: "UART2_CTS"
	PIN 32: "UART2_RTS"
	PIN 33: "MDI_TP_P1"
	PIN 34: "MDI_TN_P1"
	PIN 35: "MDI_RP_P1"
	PIN 36: "MDI_RN_P1"
	PIN 37: "MDI_RP_P2"
	PIN 38: "MDI_RN_P2"
	PIN 39: "MDI_TP_P2"
	PIN 40: "MDI_TN_P2"
	PIN 41: "MDI_TP_P3"
	PIN 42: "MDI_TN_P3"
	PIN 43: "MDI_RP_P3"
	PIN 44: "MDI_RN_P3"
	PIN 45: "MDI_RP_P4"
	PIN 46: "MDI_RN_P4"
	PIN 47: "MDI_TP_P4"
	PIN 48: "MDI_TN_P4"
	PIN 49: "SMI_MDC"
	PIN 50: "SMI_MDIO"
	PIN 51: "PCIE_PERESET_N"
	PIN 52: "PWM_0"
	PIN 53: "GPIO_0"
	PIN 54: "GPIO_1"
	PIN 55: "GPIO_2"
	PIN 56: "GPIO_3"
	PIN 57: "GPIO_4"
	PIN 58: "GPIO_5"
	PIN 59: "GPIO_6"
	PIN 60: "GPIO_7"
	PIN 61: "GPIO_8"
	PIN 62: "SPI_CLK"
	PIN 63: "SPI_CS"
	PIN 64: "SPI_MOSI"
	PIN 65: "SPI_MISO"
	PIN 66: "SPI_WP"
	PIN 67: "SPI_HOLD"
	PIN 68: "UART0_TXD"
	PIN 69: "UART0_RXD"
	PIN 70: "TOP_2G_CLK"
	PIN 71: "TOP_2G_DATA"
	PIN 72: "WF0_2G_HB0"
	PIN 73: "WF0_2G_HB1"
	PIN 74: "WF0_2G_HB2"
	PIN 75: "WF0_2G_HB3"
	PIN 76: "WF0_2G_HB4"
	PIN 77: "WF0_2G_HB5"
	PIN 78: "WF0_2G_HB6"

Valid values for function are:
	"eth", "i2c", "led", "flash", "pcie", "pwm", "spi", "uart",
	"watchdog", "wifi"

Valid values for groups are:
	Valid value			function	pins (in pin#)
	----------------------------------------------------------------
	"mdc_mdio"			"eth"		23, 24
	"i2c_0"				"i2c"		19, 20
	"i2c_1"				"i2c"		53, 54
	"ephy_leds"			"led"		12, 13, 14, 15, 16,
							17, 18
	"ephy0_led"			"led"		12
	"ephy1_led"			"led"		13
	"ephy2_led"			"led"		14
	"ephy3_led"			"led"		15
	"ephy4_led"			"led"		16
	"wf2g_led"			"led"		17
	"wf5g_led"			"led"		18
	"snfi"				"flash"		62, 63, 64, 65, 66, 67
	"spi_nor"			"flash"		62, 63, 64, 65, 66, 67
	"pcie_pereset"			"pcie"		51
	"pcie_wake"			"pcie"		55
	"pcie_clkreq"			"pcie"		56
	"pwm_0"				"pwm"		52
	"pwm_1"				"pwm"		61
	"spi_0"				"spi"		21, 22, 23, 24
	"spi_1"				"spi"		62, 63, 64, 65
	"spi_wp"			"spi"		66
	"spi_hold"			"spi"		67
	"uart0_txd_rxd"			"uart"		68, 69
	"uart1_0_txd_rxd"		"uart"		25, 26
	"uart1_0_cts_rts"		"uart"		27, 28
	"uart1_1_txd_rxd"		"uart"		53, 54
	"uart1_1_cts_rts"		"uart"		55, 56
	"uart2_0_txd_rxd"		"uart"		29, 30
	"uart2_0_cts_rts"		"uart"		31, 32
	"uart2_1_txd_rxd"		"uart"		57, 58
	"uart2_1_cts_rts"		"uart"		59, 60
	"watchdog"			"watchdog"	11
	"wf0_2g"			"wifi"		70, 71, 72, 73, 74,
							75, 76, 77, 78
	"wf0_5g"			"wifi"		0, 1, 2, 3, 4, 5, 6,
							7, 8, 9, 10

Example:

	pio: pinctrl@10211000 {
		compatible = "mediatek,mt7622-pinctrl";
		reg = <0 0x10211000 0 0x1000>;
		gpio-controller;
		#gpio-cells = <2>;

		pinctrl_eth_default: eth-default {
			mux-mdio {
				groups = "mdc_mdio";
				function = "eth";
				drive-strength = <12>;
			};

			mux-gmac2 {
				groups = "gmac2";
				function = "eth";
				drive-strength = <12>;
			};

			mux-esw {
				groups = "esw";
				function = "eth";
				drive-strength = <8>;
			};

			conf-mdio {
				pins = "MDC";
				bias-pull-up;
			};
		};
	};