1*1f8f3bf0SThierry Reding# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2de1835e3SThierry Reding%YAML 1.2
3de1835e3SThierry Reding---
4de1835e3SThierry Reding$id: http://devicetree.org/schemas/pinctrl/nvidia,tegra194-pinmux.yaml#
5de1835e3SThierry Reding$schema: http://devicetree.org/meta-schemas/core.yaml#
6de1835e3SThierry Reding
7de1835e3SThierry Redingtitle: NVIDIA Tegra194 Pinmux Controller
8de1835e3SThierry Reding
9de1835e3SThierry Redingmaintainers:
10de1835e3SThierry Reding  - Thierry Reding <thierry.reding@gmail.com>
11de1835e3SThierry Reding  - Jon Hunter <jonathanh@nvidia.com>
12de1835e3SThierry Reding
13de1835e3SThierry Redingproperties:
14de1835e3SThierry Reding  compatible:
15*1f8f3bf0SThierry Reding    enum:
16*1f8f3bf0SThierry Reding      - nvidia,tegra194-pinmux
17*1f8f3bf0SThierry Reding      - nvidia,tegra194-pinmux-aon
18de1835e3SThierry Reding
19de1835e3SThierry Reding  reg:
20de1835e3SThierry Reding    items:
21*1f8f3bf0SThierry Reding      - description: pinmux registers
22de1835e3SThierry Reding
23de1835e3SThierry RedingpatternProperties:
24de1835e3SThierry Reding  "^pinmux(-[a-z0-9-_]+)?$":
25de1835e3SThierry Reding    type: object
26de1835e3SThierry Reding
27de1835e3SThierry Reding    # pin groups
28de1835e3SThierry Reding    additionalProperties:
29de1835e3SThierry Reding      $ref: nvidia,tegra-pinmux-common.yaml
30*1f8f3bf0SThierry Reding      unevaluatedProperties: false
31de1835e3SThierry Reding      properties:
32de1835e3SThierry Reding        nvidia,function:
33*1f8f3bf0SThierry Reding          enum: [ aud, can0, can1, ccla, dca, dcb, dgpu, directdc, directdc1,
34*1f8f3bf0SThierry Reding                  displaya, displayb, dmic1, dmic2, dmic3, dmic4, dmic5, dp,
35*1f8f3bf0SThierry Reding                  dspk0, dspk1, eqos, extperiph1, extperiph2, extperiph3,
36*1f8f3bf0SThierry Reding                  extperiph4, gp, gpio, hdmi, i2c1, i2c2, i2c3, i2c5, i2c8,
37*1f8f3bf0SThierry Reding                  i2s1, i2s2, i2s3, i2s4, i2s5, i2s6, igpu, iqc1, iqc2, mipi,
38*1f8f3bf0SThierry Reding                  nv, pe0, pe1, pe2, pe3, pe4, pe5, qspi, qspi0, qspi1, rsvd0,
39*1f8f3bf0SThierry Reding                  rsvd1, rsvd2, rsvd3, sata, sce, sdmmc1, sdmmc3, sdmmc4, slvs,
40*1f8f3bf0SThierry Reding                  soc, spdif, spi1, spi2, spi3, touch, uarta, uartb, uartc,
41*1f8f3bf0SThierry Reding                  uartd, uarte, uartg, ufs0, usb, vgp1, vgp2, vgp3, vgp4, vgp5,
42*1f8f3bf0SThierry Reding                  vgp6, wdt ]
43de1835e3SThierry Reding
44de1835e3SThierry Reding        nvidia,pull: true
45de1835e3SThierry Reding        nvidia,tristate: true
46de1835e3SThierry Reding        nvidia,schmitt: true
47de1835e3SThierry Reding        nvidia,enable-input: true
48de1835e3SThierry Reding        nvidia,open-drain: true
49de1835e3SThierry Reding        nvidia,lock: true
50de1835e3SThierry Reding        nvidia,drive-type: true
51de1835e3SThierry Reding        nvidia,io-hv: true
52de1835e3SThierry Reding
53de1835e3SThierry Reding      required:
54de1835e3SThierry Reding        - nvidia,pins
55de1835e3SThierry Reding
56de1835e3SThierry RedingadditionalProperties: false
57de1835e3SThierry Reding
58*1f8f3bf0SThierry RedingallOf:
59*1f8f3bf0SThierry Reding  - if:
60*1f8f3bf0SThierry Reding      properties:
61*1f8f3bf0SThierry Reding        compatible:
62*1f8f3bf0SThierry Reding          const: nvidia,tegra194-pinmux
63*1f8f3bf0SThierry Reding    then:
64*1f8f3bf0SThierry Reding      patternProperties:
65*1f8f3bf0SThierry Reding        "^pinmux(-[a-z0-9-_]+)?$":
66*1f8f3bf0SThierry Reding          type: object
67*1f8f3bf0SThierry Reding          additionalProperties:
68*1f8f3bf0SThierry Reding            properties:
69*1f8f3bf0SThierry Reding              nvidia,pins:
70*1f8f3bf0SThierry Reding                description: An array of strings. Each string contains the name
71*1f8f3bf0SThierry Reding                  of a pin or group. Valid values for these names are listed
72*1f8f3bf0SThierry Reding                  below.
73*1f8f3bf0SThierry Reding
74*1f8f3bf0SThierry Reding                  Note that the pex_l5_clkreq_n_pgg0 and pex_l5_rst_n_pgg1 pins
75*1f8f3bf0SThierry Reding                  are part of PCIE C5 power partition. Client devices must
76*1f8f3bf0SThierry Reding                  enable this partition before accessing the configuration for
77*1f8f3bf0SThierry Reding                  these pins.
78*1f8f3bf0SThierry Reding                items:
79*1f8f3bf0SThierry Reding                  enum: [ dap6_sclk_pa0, dap6_dout_pa1, dap6_din_pa2,
80*1f8f3bf0SThierry Reding                          dap6_fs_pa3, dap4_sclk_pa4, dap4_dout_pa5,
81*1f8f3bf0SThierry Reding                          dap4_din_pa6, dap4_fs_pa7, cpu_pwr_req_0_pb0,
82*1f8f3bf0SThierry Reding                          cpu_pwr_req_1_pb1, qspi0_sck_pc0, qspi0_cs_n_pc1,
83*1f8f3bf0SThierry Reding                          qspi0_io0_pc2, qspi0_io1_pc3, qspi0_io2_pc4,
84*1f8f3bf0SThierry Reding                          qspi0_io3_pc5, qspi1_sck_pc6, qspi1_cs_n_pc7,
85*1f8f3bf0SThierry Reding                          qspi1_io0_pd0, qspi1_io1_pd1, qspi1_io2_pd2,
86*1f8f3bf0SThierry Reding                          qspi1_io3_pd3, eqos_txc_pe0, eqos_td0_pe1,
87*1f8f3bf0SThierry Reding                          eqos_td1_pe2, eqos_td2_pe3, eqos_td3_pe4,
88*1f8f3bf0SThierry Reding                          eqos_tx_ctl_pe5, eqos_rd0_pe6, eqos_rd1_pe7,
89*1f8f3bf0SThierry Reding                          eqos_rd2_pf0, eqos_rd3_pf1, eqos_rx_ctl_pf2,
90*1f8f3bf0SThierry Reding                          eqos_rxc_pf3, eqos_sma_mdio_pf4, eqos_sma_mdc_pf5,
91*1f8f3bf0SThierry Reding                          soc_gpio00_pg0, soc_gpio01_pg1, soc_gpio02_pg2,
92*1f8f3bf0SThierry Reding                          soc_gpio03_pg3, soc_gpio08_pg4, soc_gpio09_pg5,
93*1f8f3bf0SThierry Reding                          soc_gpio10_pg6, soc_gpio11_pg7, soc_gpio12_ph0,
94*1f8f3bf0SThierry Reding                          soc_gpio13_ph1, soc_gpio14_ph2, uart4_tx_ph3,
95*1f8f3bf0SThierry Reding                          uart4_rx_ph4, uart4_rts_ph5, uart4_cts_ph6,
96*1f8f3bf0SThierry Reding                          dap2_sclk_ph7, dap2_dout_pi0, dap2_din_pi1,
97*1f8f3bf0SThierry Reding                          dap2_fs_pi2, gen1_i2c_scl_pi3, gen1_i2c_sda_pi4,
98*1f8f3bf0SThierry Reding                          sdmmc1_clk_pj0, sdmmc1_cmd_pj1, sdmmc1_dat0_pj2,
99*1f8f3bf0SThierry Reding                          sdmmc1_dat1_pj3, sdmmc1_dat2_pj4, sdmmc1_dat3_pj5,
100*1f8f3bf0SThierry Reding                          pex_l0_clkreq_n_pk0, pex_l0_rst_n_pk1,
101*1f8f3bf0SThierry Reding                          pex_l1_clkreq_n_pk2, pex_l1_rst_n_pk3,
102*1f8f3bf0SThierry Reding                          pex_l2_clkreq_n_pk4, pex_l2_rst_n_pk5,
103*1f8f3bf0SThierry Reding                          pex_l3_clkreq_n_pk6, pex_l3_rst_n_pk7,
104*1f8f3bf0SThierry Reding                          pex_l4_clkreq_n_pl0, pex_l4_rst_n_pl1,
105*1f8f3bf0SThierry Reding                          pex_wake_n_pl2, sata_dev_slp_pl3, dp_aux_ch0_hpd_pm0,
106*1f8f3bf0SThierry Reding                          dp_aux_ch1_hpd_pm1, dp_aux_ch2_hpd_pm2,
107*1f8f3bf0SThierry Reding                          dp_aux_ch3_hpd_pm3, hdmi_cec_pm4, soc_gpio50_pm5,
108*1f8f3bf0SThierry Reding                          soc_gpio51_pm6, soc_gpio52_pm7, soc_gpio53_pn0,
109*1f8f3bf0SThierry Reding                          soc_gpio54_pn1, soc_gpio55_pn2, sdmmc3_clk_po0,
110*1f8f3bf0SThierry Reding                          sdmmc3_cmd_po1, sdmmc3_dat0_po2, sdmmc3_dat1_po3,
111*1f8f3bf0SThierry Reding                          sdmmc3_dat2_po4, sdmmc3_dat3_po5, extperiph1_clk_pp0,
112*1f8f3bf0SThierry Reding                          extperiph2_clk_pp1, cam_i2c_scl_pp2, cam_i2c_sda_pp3,
113*1f8f3bf0SThierry Reding                          soc_gpio04_pp4, soc_gpio05_pp5, soc_gpio06_pp6,
114*1f8f3bf0SThierry Reding                          soc_gpio07_pp7, soc_gpio20_pq0, soc_gpio21_pq1,
115*1f8f3bf0SThierry Reding                          soc_gpio22_pq2, soc_gpio23_pq3, soc_gpio40_pq4,
116*1f8f3bf0SThierry Reding                          soc_gpio41_pq5, soc_gpio42_pq6, soc_gpio43_pq7,
117*1f8f3bf0SThierry Reding                          soc_gpio44_pr0, soc_gpio45_pr1, uart1_tx_pr2,
118*1f8f3bf0SThierry Reding                          uart1_rx_pr3, uart1_rts_pr4, uart1_cts_pr5,
119*1f8f3bf0SThierry Reding                          dap1_sclk_ps0, dap1_dout_ps1, dap1_din_ps2,
120*1f8f3bf0SThierry Reding                          dap1_fs_ps3, aud_mclk_ps4, soc_gpio30_ps5,
121*1f8f3bf0SThierry Reding                          soc_gpio31_ps6, soc_gpio32_ps7, soc_gpio33_pt0,
122*1f8f3bf0SThierry Reding                          dap3_sclk_pt1, dap3_dout_pt2, dap3_din_pt3,
123*1f8f3bf0SThierry Reding                          dap3_fs_pt4, dap5_sclk_pt5, dap5_dout_pt6,
124*1f8f3bf0SThierry Reding                          dap5_din_pt7, dap5_fs_pu0, directdc1_clk_pv0,
125*1f8f3bf0SThierry Reding                          directdc1_in_pv1, directdc1_out0_pv2,
126*1f8f3bf0SThierry Reding                          directdc1_out1_pv3, directdc1_out2_pv4,
127*1f8f3bf0SThierry Reding                          directdc1_out3_pv5, directdc1_out4_pv6,
128*1f8f3bf0SThierry Reding                          directdc1_out5_pv7, directdc1_out6_pw0,
129*1f8f3bf0SThierry Reding                          directdc1_out7_pw1, gpu_pwr_req_px0, cv_pwr_req_px1,
130*1f8f3bf0SThierry Reding                          gp_pwm2_px2, gp_pwm3_px3, uart2_tx_px4, uart2_rx_px5,
131*1f8f3bf0SThierry Reding                          uart2_rts_px6, uart2_cts_px7, spi3_sck_py0,
132*1f8f3bf0SThierry Reding                          spi3_miso_py1, spi3_mosi_py2, spi3_cs0_py3,
133*1f8f3bf0SThierry Reding                          spi3_cs1_py4, uart5_tx_py5, uart5_rx_py6,
134*1f8f3bf0SThierry Reding                          uart5_rts_py7, uart5_cts_pz0, usb_vbus_en0_pz1,
135*1f8f3bf0SThierry Reding                          usb_vbus_en1_pz2, spi1_sck_pz3, spi1_miso_pz4,
136*1f8f3bf0SThierry Reding                          spi1_mosi_pz5, spi1_cs0_pz6, spi1_cs1_pz7,
137*1f8f3bf0SThierry Reding                          ufs0_ref_clk_pff0, ufs0_rst_pff1,
138*1f8f3bf0SThierry Reding                          pex_l5_clkreq_n_pgg0, pex_l5_rst_n_pgg1,
139*1f8f3bf0SThierry Reding                          directdc_comp, sdmmc4_clk, sdmmc4_cmd, sdmmc4_dqs,
140*1f8f3bf0SThierry Reding                          sdmmc4_dat7, sdmmc4_dat6, sdmmc4_dat5, sdmmc4_dat4,
141*1f8f3bf0SThierry Reding                          sdmmc4_dat3, sdmmc4_dat2, sdmmc4_dat1, sdmmc4_dat0,
142*1f8f3bf0SThierry Reding                          sdmmc1_comp, sdmmc1_hv_trim, sdmmc3_comp,
143*1f8f3bf0SThierry Reding                          sdmmc3_hv_trim, eqos_comp, qspi_comp,
144*1f8f3bf0SThierry Reding                          # drive groups
145*1f8f3bf0SThierry Reding                          drive_soc_gpio33_pt0, drive_soc_gpio32_ps7,
146*1f8f3bf0SThierry Reding                          drive_soc_gpio31_ps6, drive_soc_gpio30_ps5,
147*1f8f3bf0SThierry Reding                          drive_aud_mclk_ps4, drive_dap1_fs_ps3,
148*1f8f3bf0SThierry Reding                          drive_dap1_din_ps2, drive_dap1_dout_ps1,
149*1f8f3bf0SThierry Reding                          drive_dap1_sclk_ps0, drive_dap3_fs_pt4,
150*1f8f3bf0SThierry Reding                          drive_dap3_din_pt3, drive_dap3_dout_pt2,
151*1f8f3bf0SThierry Reding                          drive_dap3_sclk_pt1, drive_dap5_fs_pu0,
152*1f8f3bf0SThierry Reding                          drive_dap5_din_pt7, drive_dap5_dout_pt6,
153*1f8f3bf0SThierry Reding                          drive_dap5_sclk_pt5, drive_dap6_fs_pa3,
154*1f8f3bf0SThierry Reding                          drive_dap6_din_pa2, drive_dap6_dout_pa1,
155*1f8f3bf0SThierry Reding                          drive_dap6_sclk_pa0, drive_dap4_fs_pa7,
156*1f8f3bf0SThierry Reding                          drive_dap4_din_pa6, drive_dap4_dout_pa5,
157*1f8f3bf0SThierry Reding                          drive_dap4_sclk_pa4, drive_extperiph2_clk_pp1,
158*1f8f3bf0SThierry Reding                          drive_extperiph1_clk_pp0, drive_cam_i2c_sda_pp3,
159*1f8f3bf0SThierry Reding                          drive_cam_i2c_scl_pp2, drive_soc_gpio40_pq4,
160*1f8f3bf0SThierry Reding                          drive_soc_gpio41_pq5, drive_soc_gpio42_pq6,
161*1f8f3bf0SThierry Reding                          drive_soc_gpio43_pq7, drive_soc_gpio44_pr0,
162*1f8f3bf0SThierry Reding                          drive_soc_gpio45_pr1, drive_soc_gpio20_pq0,
163*1f8f3bf0SThierry Reding                          drive_soc_gpio21_pq1, drive_soc_gpio22_pq2,
164*1f8f3bf0SThierry Reding                          drive_soc_gpio23_pq3, drive_soc_gpio04_pp4,
165*1f8f3bf0SThierry Reding                          drive_soc_gpio05_pp5, drive_soc_gpio06_pp6,
166*1f8f3bf0SThierry Reding                          drive_soc_gpio07_pp7, drive_uart1_cts_pr5,
167*1f8f3bf0SThierry Reding                          drive_uart1_rts_pr4, drive_uart1_rx_pr3,
168*1f8f3bf0SThierry Reding                          drive_uart1_tx_pr2, drive_dap2_din_pi1,
169*1f8f3bf0SThierry Reding                          drive_dap2_dout_pi0, drive_dap2_fs_pi2,
170*1f8f3bf0SThierry Reding                          drive_dap2_sclk_ph7, drive_uart4_cts_ph6,
171*1f8f3bf0SThierry Reding                          drive_uart4_rts_ph5, drive_uart4_rx_ph4,
172*1f8f3bf0SThierry Reding                          drive_uart4_tx_ph3, drive_soc_gpio03_pg3,
173*1f8f3bf0SThierry Reding                          drive_soc_gpio02_pg2, drive_soc_gpio01_pg1,
174*1f8f3bf0SThierry Reding                          drive_soc_gpio00_pg0, drive_gen1_i2c_scl_pi3,
175*1f8f3bf0SThierry Reding                          drive_gen1_i2c_sda_pi4, drive_soc_gpio08_pg4,
176*1f8f3bf0SThierry Reding                          drive_soc_gpio09_pg5, drive_soc_gpio10_pg6,
177*1f8f3bf0SThierry Reding                          drive_soc_gpio11_pg7, drive_soc_gpio12_ph0,
178*1f8f3bf0SThierry Reding                          drive_soc_gpio13_ph1, drive_soc_gpio14_ph2,
179*1f8f3bf0SThierry Reding                          drive_soc_gpio50_pm5, drive_soc_gpio51_pm6,
180*1f8f3bf0SThierry Reding                          drive_soc_gpio52_pm7, drive_soc_gpio53_pn0,
181*1f8f3bf0SThierry Reding                          drive_soc_gpio54_pn1, drive_soc_gpio55_pn2,
182*1f8f3bf0SThierry Reding                          drive_dp_aux_ch0_hpd_pm0, drive_dp_aux_ch1_hpd_pm1,
183*1f8f3bf0SThierry Reding                          drive_dp_aux_ch2_hpd_pm2, drive_dp_aux_ch3_hpd_pm3,
184*1f8f3bf0SThierry Reding                          drive_hdmi_cec_pm4, drive_pex_l2_clkreq_n_pk4,
185*1f8f3bf0SThierry Reding                          drive_pex_wake_n_pl2, drive_pex_l1_clkreq_n_pk2,
186*1f8f3bf0SThierry Reding                          drive_pex_l1_rst_n_pk3, drive_pex_l0_clkreq_n_pk0,
187*1f8f3bf0SThierry Reding                          drive_pex_l0_rst_n_pk1, drive_pex_l2_rst_n_pk5,
188*1f8f3bf0SThierry Reding                          drive_pex_l3_clkreq_n_pk6, drive_pex_l3_rst_n_pk7,
189*1f8f3bf0SThierry Reding                          drive_pex_l4_clkreq_n_pl0, drive_pex_l4_rst_n_pl1,
190*1f8f3bf0SThierry Reding                          drive_sata_dev_slp_pl3, drive_pex_l5_clkreq_n_pgg0,
191*1f8f3bf0SThierry Reding                          drive_pex_l5_rst_n_pgg1, drive_cpu_pwr_req_1_pb1,
192*1f8f3bf0SThierry Reding                          drive_cpu_pwr_req_0_pb0, drive_sdmmc1_clk_pj0,
193*1f8f3bf0SThierry Reding                          drive_sdmmc1_cmd_pj1, drive_sdmmc1_dat3_pj5,
194*1f8f3bf0SThierry Reding                          drive_sdmmc1_dat2_pj4, drive_sdmmc1_dat1_pj3,
195*1f8f3bf0SThierry Reding                          drive_sdmmc1_dat0_pj2, drive_sdmmc3_dat3_po5,
196*1f8f3bf0SThierry Reding                          drive_sdmmc3_dat2_po4, drive_sdmmc3_dat1_po3,
197*1f8f3bf0SThierry Reding                          drive_sdmmc3_dat0_po2, drive_sdmmc3_cmd_po1,
198*1f8f3bf0SThierry Reding                          drive_sdmmc3_clk_po0, drive_gpu_pwr_req_px0,
199*1f8f3bf0SThierry Reding                          drive_spi3_miso_py1, drive_spi1_cs0_pz6,
200*1f8f3bf0SThierry Reding                          drive_spi3_cs0_py3, drive_spi1_miso_pz4,
201*1f8f3bf0SThierry Reding                          drive_spi3_cs1_py4, drive_gp_pwm3_px3,
202*1f8f3bf0SThierry Reding                          drive_gp_pwm2_px2, drive_spi1_sck_pz3,
203*1f8f3bf0SThierry Reding                          drive_spi3_sck_py0, drive_spi1_cs1_pz7,
204*1f8f3bf0SThierry Reding                          drive_spi1_mosi_pz5, drive_spi3_mosi_py2,
205*1f8f3bf0SThierry Reding                          drive_cv_pwr_req_px1, drive_uart2_tx_px4,
206*1f8f3bf0SThierry Reding                          drive_uart2_rx_px5, drive_uart2_rts_px6,
207*1f8f3bf0SThierry Reding                          drive_uart2_cts_px7, drive_uart5_rx_py6,
208*1f8f3bf0SThierry Reding                          drive_uart5_tx_py5, drive_uart5_rts_py7,
209*1f8f3bf0SThierry Reding                          drive_uart5_cts_pz0, drive_usb_vbus_en0_pz1,
210*1f8f3bf0SThierry Reding                          drive_usb_vbus_en1_pz2, drive_ufs0_rst_pff1,
211*1f8f3bf0SThierry Reding                          drive_ufs0_ref_clk_pff0 ]
212*1f8f3bf0SThierry Reding
213*1f8f3bf0SThierry Reding  - if:
214*1f8f3bf0SThierry Reding      properties:
215*1f8f3bf0SThierry Reding        compatible:
216*1f8f3bf0SThierry Reding          const: nvidia,tegra194-pinmux-aon
217*1f8f3bf0SThierry Reding    then:
218*1f8f3bf0SThierry Reding      patternProperties:
219*1f8f3bf0SThierry Reding        "^pinmux(-[a-z0-9-_]+)?$":
220*1f8f3bf0SThierry Reding          type: object
221*1f8f3bf0SThierry Reding          additionalProperties:
222*1f8f3bf0SThierry Reding            properties:
223*1f8f3bf0SThierry Reding              nvidia,pins:
224*1f8f3bf0SThierry Reding                items:
225*1f8f3bf0SThierry Reding                  enum: [ can1_dout_paa0, can1_din_paa1, can0_dout_paa2,
226*1f8f3bf0SThierry Reding                          can0_din_paa3, can0_stb_paa4, can0_en_paa5,
227*1f8f3bf0SThierry Reding                          can0_wake_paa6, can0_err_paa7, can1_stb_pbb0,
228*1f8f3bf0SThierry Reding                          can1_en_pbb1, can1_wake_pbb2, can1_err_pbb3,
229*1f8f3bf0SThierry Reding                          spi2_sck_pcc0, spi2_miso_pcc1, spi2_mosi_pcc2,
230*1f8f3bf0SThierry Reding                          spi2_cs0_pcc3, touch_clk_pcc4, uart3_tx_pcc5,
231*1f8f3bf0SThierry Reding                          uart3_rx_pcc6, gen2_i2c_scl_pcc7, gen2_i2c_sda_pdd0,
232*1f8f3bf0SThierry Reding                          gen8_i2c_scl_pdd1, gen8_i2c_sda_pdd2,
233*1f8f3bf0SThierry Reding                          safe_state_pee0, vcomp_alert_pee1,
234*1f8f3bf0SThierry Reding                          ao_retention_n_pee2, batt_oc_pee3, power_on_pee4,
235*1f8f3bf0SThierry Reding                          pwr_i2c_scl_pee5, pwr_i2c_sda_pee6, sys_reset_n,
236*1f8f3bf0SThierry Reding                          shutdown_n, pmu_int_n, soc_pwr_req, clk_32k_in,
237*1f8f3bf0SThierry Reding                          # drive groups
238*1f8f3bf0SThierry Reding                          drive_shutdown_n, drive_pmu_int_n,
239*1f8f3bf0SThierry Reding                          drive_safe_state_pee0, drive_vcomp_alert_pee1,
240*1f8f3bf0SThierry Reding                          drive_soc_pwr_req, drive_batt_oc_pee3,
241*1f8f3bf0SThierry Reding                          drive_clk_32k_in, drive_power_on_pee4,
242*1f8f3bf0SThierry Reding                          drive_pwr_i2c_scl_pee5, drive_pwr_i2c_sda_pee6,
243*1f8f3bf0SThierry Reding                          drive_ao_retention_n_pee2, drive_touch_clk_pcc4,
244*1f8f3bf0SThierry Reding                          drive_uart3_rx_pcc6, drive_uart3_tx_pcc5,
245*1f8f3bf0SThierry Reding                          drive_gen8_i2c_sda_pdd2, drive_gen8_i2c_scl_pdd1,
246*1f8f3bf0SThierry Reding                          drive_spi2_mosi_pcc2, drive_gen2_i2c_scl_pcc7,
247*1f8f3bf0SThierry Reding                          drive_spi2_cs0_pcc3, drive_gen2_i2c_sda_pdd0,
248*1f8f3bf0SThierry Reding                          drive_spi2_sck_pcc0, drive_spi2_miso_pcc1,
249*1f8f3bf0SThierry Reding                          drive_can1_dout_paa0, drive_can1_din_paa1,
250*1f8f3bf0SThierry Reding                          drive_can0_dout_paa2, drive_can0_din_paa3,
251*1f8f3bf0SThierry Reding                          drive_can0_stb_paa4, drive_can0_en_paa5,
252*1f8f3bf0SThierry Reding                          drive_can0_wake_paa6, drive_can0_err_paa7,
253*1f8f3bf0SThierry Reding                          drive_can1_stb_pbb0, drive_can1_en_pbb1,
254*1f8f3bf0SThierry Reding                          drive_can1_wake_pbb2, drive_can1_err_pbb3 ]
255*1f8f3bf0SThierry Reding
256de1835e3SThierry Redingrequired:
257de1835e3SThierry Reding  - compatible
258de1835e3SThierry Reding  - reg
259de1835e3SThierry Reding
260de1835e3SThierry Redingexamples:
261de1835e3SThierry Reding  - |
262de1835e3SThierry Reding    #include <dt-bindings/pinctrl/pinctrl-tegra.h>
263de1835e3SThierry Reding
264de1835e3SThierry Reding    pinmux@2430000 {
265de1835e3SThierry Reding        compatible = "nvidia,tegra194-pinmux";
266*1f8f3bf0SThierry Reding        reg = <0x2430000 0x17000>;
267de1835e3SThierry Reding
268de1835e3SThierry Reding        pinctrl-names = "pex_rst";
269de1835e3SThierry Reding        pinctrl-0 = <&pex_rst_c5_out_state>;
270de1835e3SThierry Reding
271de1835e3SThierry Reding        pex_rst_c5_out_state: pinmux-pex-rst-c5-out {
272de1835e3SThierry Reding            pex_rst {
273de1835e3SThierry Reding                nvidia,pins = "pex_l5_rst_n_pgg1";
274de1835e3SThierry Reding                nvidia,schmitt = <TEGRA_PIN_DISABLE>;
275de1835e3SThierry Reding                nvidia,enable-input = <TEGRA_PIN_DISABLE>;
276de1835e3SThierry Reding                nvidia,io-hv = <TEGRA_PIN_ENABLE>;
277de1835e3SThierry Reding                nvidia,tristate = <TEGRA_PIN_DISABLE>;
278de1835e3SThierry Reding                nvidia,pull = <TEGRA_PIN_PULL_NONE>;
279de1835e3SThierry Reding            };
280de1835e3SThierry Reding        };
281de1835e3SThierry Reding    };
282de1835e3SThierry Reding...
283