1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Device Tree Source for common parts of Salvator-X board variants 4 * 5 * Copyright (C) 2015-2016 Renesas Electronics Corp. 6 */ 7 8/* 9 * SSI-AK4613 10 * 11 * This command is required when Playback/Capture 12 * 13 * amixer set "DVC Out" 100% 14 * amixer set "DVC In" 100% 15 * 16 * You can use Mute 17 * 18 * amixer set "DVC Out Mute" on 19 * amixer set "DVC In Mute" on 20 * 21 * You can use Volume Ramp 22 * 23 * amixer set "DVC Out Ramp Up Rate" "0.125 dB/64 steps" 24 * amixer set "DVC Out Ramp Down Rate" "0.125 dB/512 steps" 25 * amixer set "DVC Out Ramp" on 26 * aplay xxx.wav & 27 * amixer set "DVC Out" 80% // Volume Down 28 * amixer set "DVC Out" 100% // Volume Up 29 */ 30 31#include <dt-bindings/gpio/gpio.h> 32 33/ { 34 aliases { 35 serial0 = &scif2; 36 serial1 = &hscif1; 37 ethernet0 = &avb; 38 }; 39 40 chosen { 41 bootargs = "ignore_loglevel rw root=/dev/nfs ip=dhcp"; 42 stdout-path = "serial0:115200n8"; 43 }; 44 45 audio_clkout: audio-clkout { 46 /* 47 * This is same as <&rcar_sound 0> 48 * but needed to avoid cs2000/rcar_sound probe dead-lock 49 */ 50 compatible = "fixed-clock"; 51 #clock-cells = <0>; 52 clock-frequency = <12288000>; 53 }; 54 55 backlight: backlight { 56 compatible = "pwm-backlight"; 57 pwms = <&pwm1 0 50000>; 58 59 brightness-levels = <256 128 64 16 8 4 0>; 60 default-brightness-level = <6>; 61 62 power-supply = <®_12v>; 63 enable-gpios = <&gpio6 7 GPIO_ACTIVE_HIGH>; 64 }; 65 66 cvbs-in { 67 compatible = "composite-video-connector"; 68 label = "CVBS IN"; 69 70 port { 71 cvbs_con: endpoint { 72 remote-endpoint = <&adv7482_ain7>; 73 }; 74 }; 75 }; 76 77 hdmi-in { 78 compatible = "hdmi-connector"; 79 label = "HDMI IN"; 80 type = "a"; 81 82 port { 83 hdmi_in_con: endpoint { 84 remote-endpoint = <&adv7482_hdmi>; 85 }; 86 }; 87 }; 88 89 reg_1p8v: regulator0 { 90 compatible = "regulator-fixed"; 91 regulator-name = "fixed-1.8V"; 92 regulator-min-microvolt = <1800000>; 93 regulator-max-microvolt = <1800000>; 94 regulator-boot-on; 95 regulator-always-on; 96 }; 97 98 reg_3p3v: regulator1 { 99 compatible = "regulator-fixed"; 100 regulator-name = "fixed-3.3V"; 101 regulator-min-microvolt = <3300000>; 102 regulator-max-microvolt = <3300000>; 103 regulator-boot-on; 104 regulator-always-on; 105 }; 106 107 reg_12v: regulator2 { 108 compatible = "regulator-fixed"; 109 regulator-name = "fixed-12V"; 110 regulator-min-microvolt = <12000000>; 111 regulator-max-microvolt = <12000000>; 112 regulator-boot-on; 113 regulator-always-on; 114 }; 115 116 sound_card: sound { 117 compatible = "audio-graph-card"; 118 119 label = "rcar-sound"; 120 121 dais = <&rsnd_port0>; 122 }; 123 124 vbus0_usb2: regulator-vbus0-usb2 { 125 compatible = "regulator-fixed"; 126 127 regulator-name = "USB20_VBUS0"; 128 regulator-min-microvolt = <5000000>; 129 regulator-max-microvolt = <5000000>; 130 131 gpio = <&gpio6 16 GPIO_ACTIVE_HIGH>; 132 enable-active-high; 133 }; 134 135 vcc_sdhi0: regulator-vcc-sdhi0 { 136 compatible = "regulator-fixed"; 137 138 regulator-name = "SDHI0 Vcc"; 139 regulator-min-microvolt = <3300000>; 140 regulator-max-microvolt = <3300000>; 141 142 gpio = <&gpio5 2 GPIO_ACTIVE_HIGH>; 143 enable-active-high; 144 }; 145 146 vccq_sdhi0: regulator-vccq-sdhi0 { 147 compatible = "regulator-gpio"; 148 149 regulator-name = "SDHI0 VccQ"; 150 regulator-min-microvolt = <1800000>; 151 regulator-max-microvolt = <3300000>; 152 153 gpios = <&gpio5 1 GPIO_ACTIVE_HIGH>; 154 gpios-states = <1>; 155 states = <3300000 1 156 1800000 0>; 157 }; 158 159 vcc_sdhi3: regulator-vcc-sdhi3 { 160 compatible = "regulator-fixed"; 161 162 regulator-name = "SDHI3 Vcc"; 163 regulator-min-microvolt = <3300000>; 164 regulator-max-microvolt = <3300000>; 165 166 gpio = <&gpio3 15 GPIO_ACTIVE_HIGH>; 167 enable-active-high; 168 }; 169 170 vccq_sdhi3: regulator-vccq-sdhi3 { 171 compatible = "regulator-gpio"; 172 173 regulator-name = "SDHI3 VccQ"; 174 regulator-min-microvolt = <1800000>; 175 regulator-max-microvolt = <3300000>; 176 177 gpios = <&gpio3 14 GPIO_ACTIVE_HIGH>; 178 gpios-states = <1>; 179 states = <3300000 1 180 1800000 0>; 181 }; 182 183 hdmi0-out { 184 compatible = "hdmi-connector"; 185 label = "HDMI0 OUT"; 186 type = "a"; 187 188 port { 189 hdmi0_con: endpoint { 190 }; 191 }; 192 }; 193 194 hdmi1-out { 195 compatible = "hdmi-connector"; 196 label = "HDMI1 OUT"; 197 type = "a"; 198 199 port { 200 hdmi1_con: endpoint { 201 }; 202 }; 203 }; 204 205 vga { 206 compatible = "vga-connector"; 207 208 port { 209 vga_in: endpoint { 210 remote-endpoint = <&adv7123_out>; 211 }; 212 }; 213 }; 214 215 vga-encoder { 216 compatible = "adi,adv7123"; 217 218 ports { 219 #address-cells = <1>; 220 #size-cells = <0>; 221 222 port@0 { 223 reg = <0>; 224 adv7123_in: endpoint { 225 remote-endpoint = <&du_out_rgb>; 226 }; 227 }; 228 port@1 { 229 reg = <1>; 230 adv7123_out: endpoint { 231 remote-endpoint = <&vga_in>; 232 }; 233 }; 234 }; 235 }; 236 237 x12_clk: x12 { 238 compatible = "fixed-clock"; 239 #clock-cells = <0>; 240 clock-frequency = <24576000>; 241 }; 242 243 /* External DU dot clocks */ 244 x21_clk: x21-clock { 245 compatible = "fixed-clock"; 246 #clock-cells = <0>; 247 clock-frequency = <33000000>; 248 }; 249 250 x22_clk: x22-clock { 251 compatible = "fixed-clock"; 252 #clock-cells = <0>; 253 clock-frequency = <33000000>; 254 }; 255 256 x23_clk: x23-clock { 257 compatible = "fixed-clock"; 258 #clock-cells = <0>; 259 clock-frequency = <25000000>; 260 }; 261}; 262 263&audio_clk_a { 264 clock-frequency = <22579200>; 265}; 266 267&avb { 268 pinctrl-0 = <&avb_pins>; 269 pinctrl-names = "default"; 270 phy-handle = <&phy0>; 271 phy-mode = "rgmii-txid"; 272 status = "okay"; 273 274 phy0: ethernet-phy@0 { 275 rxc-skew-ps = <1500>; 276 reg = <0>; 277 interrupt-parent = <&gpio2>; 278 interrupts = <11 IRQ_TYPE_LEVEL_LOW>; 279 reset-gpios = <&gpio2 10 GPIO_ACTIVE_LOW>; 280 }; 281}; 282 283&csi20 { 284 status = "okay"; 285 286 ports { 287 port@0 { 288 reg = <0>; 289 csi20_in: endpoint { 290 clock-lanes = <0>; 291 data-lanes = <1>; 292 remote-endpoint = <&adv7482_txb>; 293 }; 294 }; 295 }; 296}; 297 298&csi40 { 299 status = "okay"; 300 301 ports { 302 port@0 { 303 reg = <0>; 304 305 csi40_in: endpoint { 306 clock-lanes = <0>; 307 data-lanes = <1 2 3 4>; 308 remote-endpoint = <&adv7482_txa>; 309 }; 310 }; 311 }; 312}; 313 314&du { 315 pinctrl-0 = <&du_pins>; 316 pinctrl-names = "default"; 317 status = "okay"; 318 319 ports { 320 port@0 { 321 endpoint { 322 remote-endpoint = <&adv7123_in>; 323 }; 324 }; 325 }; 326}; 327 328&ehci0 { 329 dr_mode = "otg"; 330 status = "okay"; 331}; 332 333&ehci1 { 334 status = "okay"; 335}; 336 337&extalr_clk { 338 clock-frequency = <32768>; 339}; 340 341&hscif1 { 342 pinctrl-0 = <&hscif1_pins>; 343 pinctrl-names = "default"; 344 345 uart-has-rtscts; 346 /* Please only enable hscif1 or scif1 */ 347 status = "okay"; 348}; 349 350&hsusb { 351 dr_mode = "otg"; 352 status = "okay"; 353}; 354 355&i2c2 { 356 pinctrl-0 = <&i2c2_pins>; 357 pinctrl-names = "default"; 358 359 status = "okay"; 360 361 clock-frequency = <100000>; 362 363 ak4613: codec@10 { 364 compatible = "asahi-kasei,ak4613"; 365 #sound-dai-cells = <0>; 366 reg = <0x10>; 367 clocks = <&rcar_sound 3>; 368 369 asahi-kasei,in1-single-end; 370 asahi-kasei,in2-single-end; 371 asahi-kasei,out1-single-end; 372 asahi-kasei,out2-single-end; 373 asahi-kasei,out3-single-end; 374 asahi-kasei,out4-single-end; 375 asahi-kasei,out5-single-end; 376 asahi-kasei,out6-single-end; 377 378 port { 379 ak4613_endpoint: endpoint { 380 remote-endpoint = <&rsnd_endpoint0>; 381 }; 382 }; 383 }; 384 385 cs2000: clk_multiplier@4f { 386 #clock-cells = <0>; 387 compatible = "cirrus,cs2000-cp"; 388 reg = <0x4f>; 389 clocks = <&audio_clkout>, <&x12_clk>; 390 clock-names = "clk_in", "ref_clk"; 391 392 assigned-clocks = <&cs2000>; 393 assigned-clock-rates = <24576000>; /* 1/1 divide */ 394 }; 395}; 396 397&i2c4 { 398 status = "okay"; 399 400 pca9654: gpio@20 { 401 compatible = "onnn,pca9654"; 402 reg = <0x20>; 403 gpio-controller; 404 #gpio-cells = <2>; 405 }; 406 407 csa_vdd: adc@7c { 408 compatible = "maxim,max9611"; 409 reg = <0x7c>; 410 411 shunt-resistor-micro-ohms = <5000>; 412 }; 413 414 csa_dvfs: adc@7f { 415 compatible = "maxim,max9611"; 416 reg = <0x7f>; 417 418 shunt-resistor-micro-ohms = <5000>; 419 }; 420 421 video-receiver@70 { 422 compatible = "adi,adv7482"; 423 reg = <0x70 0x71 0x72 0x73 0x74 0x75 424 0x60 0x61 0x62 0x63 0x64 0x65>; 425 reg-names = "main", "dpll", "cp", "hdmi", "edid", "repeater", 426 "infoframe", "cbus", "cec", "sdp", "txa", "txb" ; 427 428 #address-cells = <1>; 429 #size-cells = <0>; 430 431 interrupt-parent = <&gpio6>; 432 interrupt-names = "intrq1", "intrq2"; 433 interrupts = <30 IRQ_TYPE_LEVEL_LOW>, 434 <31 IRQ_TYPE_LEVEL_LOW>; 435 436 port@7 { 437 reg = <7>; 438 439 adv7482_ain7: endpoint { 440 remote-endpoint = <&cvbs_con>; 441 }; 442 }; 443 444 port@8 { 445 reg = <8>; 446 447 adv7482_hdmi: endpoint { 448 remote-endpoint = <&hdmi_in_con>; 449 }; 450 }; 451 452 port@a { 453 reg = <10>; 454 455 adv7482_txa: endpoint { 456 clock-lanes = <0>; 457 data-lanes = <1 2 3 4>; 458 remote-endpoint = <&csi40_in>; 459 }; 460 }; 461 462 port@b { 463 reg = <11>; 464 465 adv7482_txb: endpoint { 466 clock-lanes = <0>; 467 data-lanes = <1>; 468 remote-endpoint = <&csi20_in>; 469 }; 470 }; 471 }; 472}; 473 474&i2c_dvfs { 475 status = "okay"; 476 477 clock-frequency = <400000>; 478 479 pmic: pmic@30 { 480 pinctrl-0 = <&irq0_pins>; 481 pinctrl-names = "default"; 482 483 compatible = "rohm,bd9571mwv"; 484 reg = <0x30>; 485 interrupt-parent = <&intc_ex>; 486 interrupts = <0 IRQ_TYPE_LEVEL_LOW>; 487 interrupt-controller; 488 #interrupt-cells = <2>; 489 gpio-controller; 490 #gpio-cells = <2>; 491 rohm,ddr-backup-power = <0xf>; 492 rohm,rstbmode-level; 493 494 regulators { 495 dvfs: dvfs { 496 regulator-name = "dvfs"; 497 regulator-min-microvolt = <750000>; 498 regulator-max-microvolt = <1030000>; 499 regulator-boot-on; 500 regulator-always-on; 501 }; 502 }; 503 }; 504 505 eeprom@50 { 506 compatible = "rohm,br24t01", "atmel,24c01"; 507 reg = <0x50>; 508 pagesize = <8>; 509 }; 510}; 511 512&ohci0 { 513 dr_mode = "otg"; 514 status = "okay"; 515}; 516 517&ohci1 { 518 status = "okay"; 519}; 520 521&pcie_bus_clk { 522 clock-frequency = <100000000>; 523}; 524 525&pciec0 { 526 status = "okay"; 527}; 528 529&pciec1 { 530 status = "okay"; 531}; 532 533&pfc { 534 pinctrl-0 = <&scif_clk_pins>; 535 pinctrl-names = "default"; 536 537 avb_pins: avb { 538 mux { 539 groups = "avb_link", "avb_mdio", "avb_mii"; 540 function = "avb"; 541 }; 542 543 pins_mdio { 544 groups = "avb_mdio"; 545 drive-strength = <24>; 546 }; 547 548 pins_mii_tx { 549 pins = "PIN_AVB_TX_CTL", "PIN_AVB_TXC", "PIN_AVB_TD0", 550 "PIN_AVB_TD1", "PIN_AVB_TD2", "PIN_AVB_TD3"; 551 drive-strength = <12>; 552 }; 553 }; 554 555 du_pins: du { 556 groups = "du_rgb888", "du_sync", "du_oddf", "du_clk_out_0"; 557 function = "du"; 558 }; 559 560 hscif1_pins: hscif1 { 561 groups = "hscif1_data_a", "hscif1_ctrl_a"; 562 function = "hscif1"; 563 }; 564 565 i2c2_pins: i2c2 { 566 groups = "i2c2_a"; 567 function = "i2c2"; 568 }; 569 570 irq0_pins: irq0 { 571 groups = "intc_ex_irq0"; 572 function = "intc_ex"; 573 }; 574 575 pwm1_pins: pwm1 { 576 groups = "pwm1_a"; 577 function = "pwm1"; 578 }; 579 580 scif1_pins: scif1 { 581 groups = "scif1_data_a", "scif1_ctrl"; 582 function = "scif1"; 583 }; 584 585 scif2_pins: scif2 { 586 groups = "scif2_data_a"; 587 function = "scif2"; 588 }; 589 590 scif_clk_pins: scif_clk { 591 groups = "scif_clk_a"; 592 function = "scif_clk"; 593 }; 594 595 sdhi0_pins: sd0 { 596 groups = "sdhi0_data4", "sdhi0_ctrl"; 597 function = "sdhi0"; 598 power-source = <3300>; 599 }; 600 601 sdhi0_pins_uhs: sd0_uhs { 602 groups = "sdhi0_data4", "sdhi0_ctrl"; 603 function = "sdhi0"; 604 power-source = <1800>; 605 }; 606 607 sdhi2_pins: sd2 { 608 groups = "sdhi2_data8", "sdhi2_ctrl", "sdhi2_ds"; 609 function = "sdhi2"; 610 power-source = <3300>; 611 }; 612 613 sdhi2_pins_uhs: sd2_uhs { 614 groups = "sdhi2_data8", "sdhi2_ctrl", "sdhi2_ds"; 615 function = "sdhi2"; 616 power-source = <1800>; 617 }; 618 619 sdhi3_pins: sd3 { 620 groups = "sdhi3_data4", "sdhi3_ctrl"; 621 function = "sdhi3"; 622 power-source = <3300>; 623 }; 624 625 sdhi3_pins_uhs: sd3_uhs { 626 groups = "sdhi3_data4", "sdhi3_ctrl"; 627 function = "sdhi3"; 628 power-source = <1800>; 629 }; 630 631 sound_pins: sound { 632 groups = "ssi01239_ctrl", "ssi0_data", "ssi1_data_a"; 633 function = "ssi"; 634 }; 635 636 sound_clk_pins: sound_clk { 637 groups = "audio_clk_a_a", "audio_clk_b_a", "audio_clk_c_a", 638 "audio_clkout_a", "audio_clkout3_a"; 639 function = "audio_clk"; 640 }; 641 642 usb0_pins: usb0 { 643 groups = "usb0"; 644 function = "usb0"; 645 }; 646 647 usb1_pins: usb1 { 648 mux { 649 groups = "usb1"; 650 function = "usb1"; 651 }; 652 653 ovc { 654 pins = "GP_6_27"; 655 bias-pull-up; 656 }; 657 658 pwen { 659 pins = "GP_6_26"; 660 bias-pull-down; 661 }; 662 }; 663 664 usb30_pins: usb30 { 665 groups = "usb30"; 666 function = "usb30"; 667 }; 668}; 669 670&pwm1 { 671 pinctrl-0 = <&pwm1_pins>; 672 pinctrl-names = "default"; 673 674 status = "okay"; 675}; 676 677&rcar_sound { 678 pinctrl-0 = <&sound_pins &sound_clk_pins>; 679 pinctrl-names = "default"; 680 681 /* Single DAI */ 682 #sound-dai-cells = <0>; 683 684 /* audio_clkout0/1/2/3 */ 685 #clock-cells = <1>; 686 clock-frequency = <12288000 11289600>; 687 688 status = "okay"; 689 690 /* update <audio_clk_b> to <cs2000> */ 691 clocks = <&cpg CPG_MOD 1005>, 692 <&cpg CPG_MOD 1006>, <&cpg CPG_MOD 1007>, 693 <&cpg CPG_MOD 1008>, <&cpg CPG_MOD 1009>, 694 <&cpg CPG_MOD 1010>, <&cpg CPG_MOD 1011>, 695 <&cpg CPG_MOD 1012>, <&cpg CPG_MOD 1013>, 696 <&cpg CPG_MOD 1014>, <&cpg CPG_MOD 1015>, 697 <&cpg CPG_MOD 1022>, <&cpg CPG_MOD 1023>, 698 <&cpg CPG_MOD 1024>, <&cpg CPG_MOD 1025>, 699 <&cpg CPG_MOD 1026>, <&cpg CPG_MOD 1027>, 700 <&cpg CPG_MOD 1028>, <&cpg CPG_MOD 1029>, 701 <&cpg CPG_MOD 1030>, <&cpg CPG_MOD 1031>, 702 <&cpg CPG_MOD 1020>, <&cpg CPG_MOD 1021>, 703 <&cpg CPG_MOD 1020>, <&cpg CPG_MOD 1021>, 704 <&cpg CPG_MOD 1019>, <&cpg CPG_MOD 1018>, 705 <&audio_clk_a>, <&cs2000>, 706 <&audio_clk_c>, 707 <&cpg CPG_CORE CPG_AUDIO_CLK_I>; 708 709 ports { 710 rsnd_port0: port@0 { 711 rsnd_endpoint0: endpoint { 712 remote-endpoint = <&ak4613_endpoint>; 713 714 dai-format = "left_j"; 715 bitclock-master = <&rsnd_endpoint0>; 716 frame-master = <&rsnd_endpoint0>; 717 718 playback = <&ssi0 &src0 &dvc0>; 719 capture = <&ssi1 &src1 &dvc1>; 720 }; 721 }; 722 }; 723}; 724 725&scif1 { 726 pinctrl-0 = <&scif1_pins>; 727 pinctrl-names = "default"; 728 729 uart-has-rtscts; 730 /* Please only enable hscif1 or scif1 */ 731 /* status = "okay"; */ 732}; 733 734&scif2 { 735 pinctrl-0 = <&scif2_pins>; 736 pinctrl-names = "default"; 737 738 status = "okay"; 739}; 740 741&scif_clk { 742 clock-frequency = <14745600>; 743}; 744 745&sdhi0 { 746 pinctrl-0 = <&sdhi0_pins>; 747 pinctrl-1 = <&sdhi0_pins_uhs>; 748 pinctrl-names = "default", "state_uhs"; 749 750 vmmc-supply = <&vcc_sdhi0>; 751 vqmmc-supply = <&vccq_sdhi0>; 752 cd-gpios = <&gpio3 12 GPIO_ACTIVE_LOW>; 753 wp-gpios = <&gpio3 13 GPIO_ACTIVE_HIGH>; 754 bus-width = <4>; 755 sd-uhs-sdr50; 756 sd-uhs-sdr104; 757 status = "okay"; 758}; 759 760&sdhi2 { 761 /* used for on-board 8bit eMMC */ 762 pinctrl-0 = <&sdhi2_pins>; 763 pinctrl-1 = <&sdhi2_pins_uhs>; 764 pinctrl-names = "default", "state_uhs"; 765 766 vmmc-supply = <®_3p3v>; 767 vqmmc-supply = <®_1p8v>; 768 bus-width = <8>; 769 mmc-hs200-1_8v; 770 non-removable; 771 fixed-emmc-driver-type = <1>; 772 status = "okay"; 773}; 774 775&sdhi3 { 776 pinctrl-0 = <&sdhi3_pins>; 777 pinctrl-1 = <&sdhi3_pins_uhs>; 778 pinctrl-names = "default", "state_uhs"; 779 780 vmmc-supply = <&vcc_sdhi3>; 781 vqmmc-supply = <&vccq_sdhi3>; 782 cd-gpios = <&gpio4 15 GPIO_ACTIVE_LOW>; 783 wp-gpios = <&gpio4 16 GPIO_ACTIVE_HIGH>; 784 bus-width = <4>; 785 sd-uhs-sdr50; 786 sd-uhs-sdr104; 787 status = "okay"; 788}; 789 790&ssi1 { 791 shared-pin; 792}; 793 794&usb_extal_clk { 795 clock-frequency = <50000000>; 796}; 797 798&usb2_phy0 { 799 pinctrl-0 = <&usb0_pins>; 800 pinctrl-names = "default"; 801 802 vbus-supply = <&vbus0_usb2>; 803 status = "okay"; 804}; 805 806&usb2_phy1 { 807 pinctrl-0 = <&usb1_pins>; 808 pinctrl-names = "default"; 809 810 status = "okay"; 811}; 812 813&usb3_peri0 { 814 phys = <&usb3_phy0>; 815 phy-names = "usb"; 816 817 status = "okay"; 818}; 819 820&usb3_phy0 { 821 status = "okay"; 822}; 823 824&usb3s0_clk { 825 clock-frequency = <100000000>; 826}; 827 828&vin0 { 829 status = "okay"; 830}; 831 832&vin1 { 833 status = "okay"; 834}; 835 836&vin2 { 837 status = "okay"; 838}; 839 840&vin3 { 841 status = "okay"; 842}; 843 844&vin4 { 845 status = "okay"; 846}; 847 848&vin5 { 849 status = "okay"; 850}; 851 852&vin6 { 853 status = "okay"; 854}; 855 856&vin7 { 857 status = "okay"; 858}; 859 860&rwdt { 861 timeout-sec = <60>; 862 status = "okay"; 863}; 864 865&xhci0 { 866 pinctrl-0 = <&usb30_pins>; 867 pinctrl-names = "default"; 868 869 status = "okay"; 870}; 871