1// SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2/* 3 * Google Gru (and derivatives) board device tree source 4 * 5 * Copyright 2016-2017 Google, Inc 6 */ 7 8#include <dt-bindings/input/input.h> 9#include "rk3399.dtsi" 10#include "rk3399-op1-opp.dtsi" 11 12/ { 13 aliases { 14 mmc0 = &sdmmc; 15 mmc1 = &sdhci; 16 }; 17 18 chosen { 19 stdout-path = "serial2:115200n8"; 20 }; 21 22 /* 23 * Power Tree 24 * 25 * In general an attempt is made to include all rails called out by 26 * the schematic as long as those rails interact in some way with 27 * the AP. AKA: 28 * - Rails that only connect to the EC (or devices that the EC talks to) 29 * are not included. 30 * - Rails _are_ included if the rails go to the AP even if the AP 31 * doesn't currently care about them / they are always on. The idea 32 * here is that it makes it easier to map to the schematic or extend 33 * later. 34 * 35 * If two rails are substantially the same from the AP's point of 36 * view, though, we won't create a full fixed regulator. We'll just 37 * put the child rail as an alias of the parent rail. Sometimes rails 38 * look the same to the AP because one of these is true: 39 * - The EC controls the enable and the EC always enables a rail as 40 * long as the AP is running. 41 * - The rails are actually connected to each other by a jumper and 42 * the distinction is just there to add clarity/flexibility to the 43 * schematic. 44 */ 45 46 ppvar_sys: ppvar-sys { 47 compatible = "regulator-fixed"; 48 regulator-name = "ppvar_sys"; 49 regulator-always-on; 50 regulator-boot-on; 51 }; 52 53 pp1200_lpddr: pp1200-lpddr { 54 compatible = "regulator-fixed"; 55 regulator-name = "pp1200_lpddr"; 56 57 /* EC turns on w/ lpddr_pwr_en; always on for AP */ 58 regulator-always-on; 59 regulator-boot-on; 60 regulator-min-microvolt = <1200000>; 61 regulator-max-microvolt = <1200000>; 62 63 vin-supply = <&ppvar_sys>; 64 }; 65 66 pp1800: pp1800 { 67 compatible = "regulator-fixed"; 68 regulator-name = "pp1800"; 69 70 /* Always on when ppvar_sys shows power good */ 71 regulator-always-on; 72 regulator-boot-on; 73 regulator-min-microvolt = <1800000>; 74 regulator-max-microvolt = <1800000>; 75 76 vin-supply = <&ppvar_sys>; 77 }; 78 79 pp3300: pp3300 { 80 compatible = "regulator-fixed"; 81 regulator-name = "pp3300"; 82 83 /* Always on; plain and simple */ 84 regulator-always-on; 85 regulator-boot-on; 86 regulator-min-microvolt = <3300000>; 87 regulator-max-microvolt = <3300000>; 88 89 vin-supply = <&ppvar_sys>; 90 }; 91 92 pp5000: pp5000 { 93 compatible = "regulator-fixed"; 94 regulator-name = "pp5000"; 95 96 /* EC turns on w/ pp5000_en; always on for AP */ 97 regulator-always-on; 98 regulator-boot-on; 99 regulator-min-microvolt = <5000000>; 100 regulator-max-microvolt = <5000000>; 101 102 vin-supply = <&ppvar_sys>; 103 }; 104 105 ppvar_bigcpu_pwm: ppvar-bigcpu-pwm { 106 compatible = "pwm-regulator"; 107 regulator-name = "ppvar_bigcpu_pwm"; 108 109 pwms = <&pwm1 0 3337 0>; 110 pwm-supply = <&ppvar_sys>; 111 pwm-dutycycle-range = <100 0>; 112 pwm-dutycycle-unit = <100>; 113 114 /* EC turns on w/ ap_core_en; always on for AP */ 115 regulator-always-on; 116 regulator-boot-on; 117 regulator-min-microvolt = <800107>; 118 regulator-max-microvolt = <1302232>; 119 }; 120 121 ppvar_bigcpu: ppvar-bigcpu { 122 compatible = "vctrl-regulator"; 123 regulator-name = "ppvar_bigcpu"; 124 125 regulator-min-microvolt = <800107>; 126 regulator-max-microvolt = <1302232>; 127 128 ctrl-supply = <&ppvar_bigcpu_pwm>; 129 ctrl-voltage-range = <800107 1302232>; 130 131 regulator-settling-time-up-us = <322>; 132 }; 133 134 ppvar_litcpu_pwm: ppvar-litcpu-pwm { 135 compatible = "pwm-regulator"; 136 regulator-name = "ppvar_litcpu_pwm"; 137 138 pwms = <&pwm2 0 3337 0>; 139 pwm-supply = <&ppvar_sys>; 140 pwm-dutycycle-range = <100 0>; 141 pwm-dutycycle-unit = <100>; 142 143 /* EC turns on w/ ap_core_en; always on for AP */ 144 regulator-always-on; 145 regulator-boot-on; 146 regulator-min-microvolt = <797743>; 147 regulator-max-microvolt = <1307837>; 148 }; 149 150 ppvar_litcpu: ppvar-litcpu { 151 compatible = "vctrl-regulator"; 152 regulator-name = "ppvar_litcpu"; 153 154 regulator-min-microvolt = <797743>; 155 regulator-max-microvolt = <1307837>; 156 157 ctrl-supply = <&ppvar_litcpu_pwm>; 158 ctrl-voltage-range = <797743 1307837>; 159 160 regulator-settling-time-up-us = <384>; 161 }; 162 163 ppvar_gpu_pwm: ppvar-gpu-pwm { 164 compatible = "pwm-regulator"; 165 regulator-name = "ppvar_gpu_pwm"; 166 167 pwms = <&pwm0 0 3337 0>; 168 pwm-supply = <&ppvar_sys>; 169 pwm-dutycycle-range = <100 0>; 170 pwm-dutycycle-unit = <100>; 171 172 /* EC turns on w/ ap_core_en; always on for AP */ 173 regulator-always-on; 174 regulator-boot-on; 175 regulator-min-microvolt = <786384>; 176 regulator-max-microvolt = <1217747>; 177 }; 178 179 ppvar_gpu: ppvar-gpu { 180 compatible = "vctrl-regulator"; 181 regulator-name = "ppvar_gpu"; 182 183 regulator-min-microvolt = <786384>; 184 regulator-max-microvolt = <1217747>; 185 186 ctrl-supply = <&ppvar_gpu_pwm>; 187 ctrl-voltage-range = <786384 1217747>; 188 189 regulator-settling-time-up-us = <390>; 190 }; 191 192 /* EC turns on w/ pp900_ddrpll_en */ 193 pp900_ddrpll: pp900-ap { 194 }; 195 196 /* EC turns on w/ pp900_pll_en */ 197 pp900_pll: pp900-ap { 198 }; 199 200 /* EC turns on w/ pp900_pmu_en */ 201 pp900_pmu: pp900-ap { 202 }; 203 204 /* EC turns on w/ pp1800_s0_en_l */ 205 pp1800_ap_io: pp1800_emmc: pp1800_nfc: pp1800_s0: pp1800 { 206 }; 207 208 /* EC turns on w/ pp1800_avdd_en_l */ 209 pp1800_avdd: pp1800 { 210 }; 211 212 /* EC turns on w/ pp1800_lid_en_l */ 213 pp1800_lid: pp1800_mic: pp1800 { 214 }; 215 216 /* EC turns on w/ lpddr_pwr_en */ 217 pp1800_lpddr: pp1800 { 218 }; 219 220 /* EC turns on w/ pp1800_pmu_en_l */ 221 pp1800_pmu: pp1800 { 222 }; 223 224 /* EC turns on w/ pp1800_usb_en_l */ 225 pp1800_usb: pp1800 { 226 }; 227 228 pp3000_sd_slot: pp3000-sd-slot { 229 compatible = "regulator-fixed"; 230 regulator-name = "pp3000_sd_slot"; 231 pinctrl-names = "default"; 232 pinctrl-0 = <&sd_slot_pwr_en>; 233 234 enable-active-high; 235 gpio = <&gpio4 29 GPIO_ACTIVE_HIGH>; 236 237 vin-supply = <&pp3000>; 238 }; 239 240 /* 241 * Technically, this is a small abuse of 'regulator-gpio'; this 242 * regulator is a mux between pp1800 and pp3300. pp1800 and pp3300 are 243 * always on though, so it is sufficient to simply control the mux 244 * here. 245 */ 246 ppvar_sd_card_io: ppvar-sd-card-io { 247 compatible = "regulator-gpio"; 248 regulator-name = "ppvar_sd_card_io"; 249 pinctrl-names = "default"; 250 pinctrl-0 = <&sd_io_pwr_en &sd_pwr_1800_sel>; 251 252 enable-active-high; 253 enable-gpio = <&gpio2 2 GPIO_ACTIVE_HIGH>; 254 gpios = <&gpio2 28 GPIO_ACTIVE_HIGH>; 255 states = <1800000 0x1>, 256 <3000000 0x0>; 257 258 regulator-min-microvolt = <1800000>; 259 regulator-max-microvolt = <3000000>; 260 }; 261 262 /* EC turns on w/ pp3300_trackpad_en_l */ 263 pp3300_trackpad: pp3300-trackpad { 264 }; 265 266 /* EC turns on w/ usb_a_en */ 267 pp5000_usb_a_vbus: pp5000 { 268 }; 269 270 ap_rtc_clk: ap-rtc-clk { 271 compatible = "fixed-clock"; 272 clock-frequency = <32768>; 273 clock-output-names = "xin32k"; 274 #clock-cells = <0>; 275 }; 276 277 max98357a: max98357a { 278 compatible = "maxim,max98357a"; 279 pinctrl-names = "default"; 280 pinctrl-0 = <&sdmode_en>; 281 sdmode-gpios = <&gpio1 2 GPIO_ACTIVE_HIGH>; 282 sdmode-delay = <2>; 283 #sound-dai-cells = <0>; 284 status = "okay"; 285 }; 286 287 sound: sound { 288 compatible = "rockchip,rk3399-gru-sound"; 289 rockchip,cpu = <&i2s0 &spdif>; 290 }; 291}; 292 293&cdn_dp { 294 status = "okay"; 295}; 296 297/* 298 * Set some suspend operating points to avoid OVP in suspend 299 * 300 * When we go into S3 ARM Trusted Firmware will transition our PWM regulators 301 * from wherever they're at back to the "default" operating point (whatever 302 * voltage we get when we set the PWM pins to "input"). 303 * 304 * This quick transition under light load has the possibility to trigger the 305 * regulator "over voltage protection" (OVP). 306 * 307 * To make extra certain that we don't hit this OVP at suspend time, we'll 308 * transition to a voltage that's much closer to the default (~1.0 V) so that 309 * there will not be a big jump. Technically we only need to get within 200 mV 310 * of the default voltage, but the speed here should be fast enough and we need 311 * suspend/resume to be rock solid. 312 */ 313 314&cluster0_opp { 315 opp05 { 316 opp-suspend; 317 }; 318}; 319 320&cluster1_opp { 321 opp06 { 322 opp-suspend; 323 }; 324}; 325 326&cpu_l0 { 327 cpu-supply = <&ppvar_litcpu>; 328}; 329 330&cpu_l1 { 331 cpu-supply = <&ppvar_litcpu>; 332}; 333 334&cpu_l2 { 335 cpu-supply = <&ppvar_litcpu>; 336}; 337 338&cpu_l3 { 339 cpu-supply = <&ppvar_litcpu>; 340}; 341 342&cpu_b0 { 343 cpu-supply = <&ppvar_bigcpu>; 344}; 345 346&cpu_b1 { 347 cpu-supply = <&ppvar_bigcpu>; 348}; 349 350 351&cru { 352 assigned-clocks = 353 <&cru PLL_GPLL>, <&cru PLL_CPLL>, 354 <&cru PLL_NPLL>, 355 <&cru ACLK_PERIHP>, <&cru HCLK_PERIHP>, 356 <&cru PCLK_PERIHP>, 357 <&cru ACLK_PERILP0>, <&cru HCLK_PERILP0>, 358 <&cru PCLK_PERILP0>, <&cru ACLK_CCI>, 359 <&cru HCLK_PERILP1>, <&cru PCLK_PERILP1>, 360 <&cru ACLK_VIO>, <&cru ACLK_HDCP>, 361 <&cru ACLK_GIC_PRE>, 362 <&cru PCLK_DDR>; 363 assigned-clock-rates = 364 <600000000>, <800000000>, 365 <1000000000>, 366 <150000000>, <75000000>, 367 <37500000>, 368 <100000000>, <100000000>, 369 <50000000>, <800000000>, 370 <100000000>, <50000000>, 371 <400000000>, <400000000>, 372 <200000000>, 373 <200000000>; 374}; 375 376&emmc_phy { 377 status = "okay"; 378}; 379 380&gpu { 381 mali-supply = <&ppvar_gpu>; 382 status = "okay"; 383}; 384 385ap_i2c_ts: &i2c3 { 386 status = "okay"; 387 388 clock-frequency = <400000>; 389 390 /* These are relatively safe rise/fall times */ 391 i2c-scl-falling-time-ns = <50>; 392 i2c-scl-rising-time-ns = <300>; 393}; 394 395ap_i2c_audio: &i2c8 { 396 status = "okay"; 397 398 clock-frequency = <400000>; 399 400 /* These are relatively safe rise/fall times */ 401 i2c-scl-falling-time-ns = <50>; 402 i2c-scl-rising-time-ns = <300>; 403 404 codec: da7219@1a { 405 compatible = "dlg,da7219"; 406 reg = <0x1a>; 407 interrupt-parent = <&gpio1>; 408 interrupts = <23 IRQ_TYPE_LEVEL_LOW>; 409 clocks = <&cru SCLK_I2S_8CH_OUT>; 410 clock-names = "mclk"; 411 dlg,micbias-lvl = <2600>; 412 dlg,mic-amp-in-sel = "diff"; 413 pinctrl-names = "default"; 414 pinctrl-0 = <&headset_int_l>; 415 VDD-supply = <&pp1800>; 416 VDDMIC-supply = <&pp3300>; 417 VDDIO-supply = <&pp1800>; 418 419 da7219_aad { 420 dlg,adc-1bit-rpt = <1>; 421 dlg,btn-avg = <4>; 422 dlg,btn-cfg = <50>; 423 dlg,mic-det-thr = <500>; 424 dlg,jack-ins-deb = <20>; 425 dlg,jack-det-rate = "32ms_64ms"; 426 dlg,jack-rem-deb = <1>; 427 428 dlg,a-d-btn-thr = <0xa>; 429 dlg,d-b-btn-thr = <0x16>; 430 dlg,b-c-btn-thr = <0x21>; 431 dlg,c-mic-btn-thr = <0x3E>; 432 }; 433 }; 434}; 435 436&i2s0 { 437 status = "okay"; 438}; 439 440&io_domains { 441 status = "okay"; 442 443 audio-supply = <&pp1800_audio>; /* APIO5_VDD; 3d 4a */ 444 bt656-supply = <&pp1800_ap_io>; /* APIO2_VDD; 2a 2b */ 445 gpio1830-supply = <&pp3000_ap>; /* APIO4_VDD; 4c 4d */ 446 sdmmc-supply = <&ppvar_sd_card_io>; /* SDMMC0_VDD; 4b */ 447}; 448 449&pcie0 { 450 status = "okay"; 451 452 ep-gpios = <&gpio2 27 GPIO_ACTIVE_HIGH>; 453 pinctrl-names = "default"; 454 pinctrl-0 = <&pcie_clkreqn_cpm>, <&wifi_perst_l>; 455 vpcie3v3-supply = <&pp3300_wifi_bt>; 456 vpcie1v8-supply = <&wlan_pd_n>; /* HACK: see &wlan_pd_n */ 457 vpcie0v9-supply = <&pp900_pcie>; 458 459 pci_rootport: pcie@0,0 { 460 reg = <0x0000 0 0 0 0>; 461 #address-cells = <3>; 462 #size-cells = <2>; 463 ranges; 464 }; 465}; 466 467&pcie_phy { 468 status = "okay"; 469}; 470 471&pmu_io_domains { 472 status = "okay"; 473 474 pmu1830-supply = <&pp1800_pmu>; /* PMUIO2_VDD */ 475}; 476 477&pwm0 { 478 status = "okay"; 479}; 480 481&pwm1 { 482 status = "okay"; 483}; 484 485&pwm2 { 486 status = "okay"; 487}; 488 489&pwm3 { 490 status = "okay"; 491}; 492 493&sdhci { 494 /* 495 * Signal integrity isn't great at 200 MHz and 150 MHz (DDR) gives the 496 * same (or nearly the same) performance for all eMMC that are intended 497 * to be used. 498 */ 499 assigned-clock-rates = <150000000>; 500 501 bus-width = <8>; 502 mmc-hs400-1_8v; 503 mmc-hs400-enhanced-strobe; 504 non-removable; 505 status = "okay"; 506}; 507 508&sdmmc { 509 status = "okay"; 510 511 /* 512 * Note: configure "sdmmc_cd" as card detect even though it's actually 513 * hooked to ground. Because we specified "cd-gpios" below dw_mmc 514 * should be ignoring card detect anyway. Specifying the pin as 515 * sdmmc_cd means that even if you've got GRF_SOC_CON7[12] (force_jtag) 516 * turned on that the system will still make sure the port is 517 * configured as SDMMC and not JTAG. 518 */ 519 pinctrl-names = "default"; 520 pinctrl-0 = <&sdmmc_clk &sdmmc_cmd &sdmmc_cd &sdmmc_cd_pin 521 &sdmmc_bus4>; 522 523 bus-width = <4>; 524 cap-mmc-highspeed; 525 cap-sd-highspeed; 526 cd-gpios = <&gpio4 24 GPIO_ACTIVE_LOW>; 527 disable-wp; 528 sd-uhs-sdr12; 529 sd-uhs-sdr25; 530 sd-uhs-sdr50; 531 sd-uhs-sdr104; 532 vmmc-supply = <&pp3000_sd_slot>; 533 vqmmc-supply = <&ppvar_sd_card_io>; 534}; 535 536&spdif { 537 status = "okay"; 538 539 /* 540 * SPDIF is routed internally to DP; we either don't use these pins, or 541 * mux them to something else. 542 */ 543 /delete-property/ pinctrl-0; 544 /delete-property/ pinctrl-names; 545}; 546 547&spi1 { 548 status = "okay"; 549 550 pinctrl-names = "default", "sleep"; 551 pinctrl-1 = <&spi1_sleep>; 552 553 flash@0 { 554 compatible = "jedec,spi-nor"; 555 reg = <0>; 556 557 /* May run faster once verified. */ 558 spi-max-frequency = <10000000>; 559 }; 560}; 561 562&spi2 { 563 status = "okay"; 564}; 565 566&spi5 { 567 status = "okay"; 568 569 cros_ec: ec@0 { 570 compatible = "google,cros-ec-spi"; 571 reg = <0>; 572 interrupt-parent = <&gpio0>; 573 interrupts = <1 IRQ_TYPE_LEVEL_LOW>; 574 pinctrl-names = "default"; 575 pinctrl-0 = <&ec_ap_int_l>; 576 spi-max-frequency = <3000000>; 577 578 i2c_tunnel: i2c-tunnel { 579 compatible = "google,cros-ec-i2c-tunnel"; 580 google,remote-bus = <4>; 581 #address-cells = <1>; 582 #size-cells = <0>; 583 }; 584 585 usbc_extcon0: extcon0 { 586 compatible = "google,extcon-usbc-cros-ec"; 587 google,usb-port-id = <0>; 588 }; 589 }; 590}; 591 592&tsadc { 593 status = "okay"; 594 595 rockchip,hw-tshut-mode = <1>; /* tshut mode 0:CRU 1:GPIO */ 596 rockchip,hw-tshut-polarity = <1>; /* tshut polarity 0:LOW 1:HIGH */ 597}; 598 599&tcphy0 { 600 status = "okay"; 601 extcon = <&usbc_extcon0>; 602}; 603 604&u2phy0 { 605 status = "okay"; 606}; 607 608&u2phy0_host { 609 status = "okay"; 610}; 611 612&u2phy1_host { 613 status = "okay"; 614}; 615 616&u2phy0_otg { 617 status = "okay"; 618}; 619 620&u2phy1_otg { 621 status = "okay"; 622}; 623 624&uart2 { 625 status = "okay"; 626}; 627 628&usb_host0_ohci { 629 status = "okay"; 630}; 631 632&usbdrd3_0 { 633 status = "okay"; 634 extcon = <&usbc_extcon0>; 635}; 636 637&usbdrd_dwc3_0 { 638 status = "okay"; 639 dr_mode = "host"; 640}; 641 642&vopb { 643 status = "okay"; 644}; 645 646&vopb_mmu { 647 status = "okay"; 648}; 649 650&vopl { 651 status = "okay"; 652}; 653 654&vopl_mmu { 655 status = "okay"; 656}; 657 658#include <arm/cros-ec-keyboard.dtsi> 659#include <arm/cros-ec-sbs.dtsi> 660 661&pinctrl { 662 /* 663 * pinctrl settings for pins that have no real owners. 664 * 665 * At the moment settings are identical for S0 and S3, but if we later 666 * need to configure things differently for S3 we'll adjust here. 667 */ 668 pinctrl-names = "default"; 669 pinctrl-0 = < 670 &ap_pwroff /* AP will auto-assert this when in S3 */ 671 &clk_32k /* This pin is always 32k on gru boards */ 672 >; 673 674 pcfg_output_low: pcfg-output-low { 675 output-low; 676 }; 677 678 pcfg_output_high: pcfg-output-high { 679 output-high; 680 }; 681 682 pcfg_pull_none_8ma: pcfg-pull-none-8ma { 683 bias-disable; 684 drive-strength = <8>; 685 }; 686 687 backlight-enable { 688 bl_en: bl-en { 689 rockchip,pins = <1 RK_PC1 RK_FUNC_GPIO &pcfg_pull_none>; 690 }; 691 }; 692 693 cros-ec { 694 ec_ap_int_l: ec-ap-int-l { 695 rockchip,pins = <0 RK_PA1 RK_FUNC_GPIO &pcfg_pull_up>; 696 }; 697 }; 698 699 discrete-regulators { 700 sd_io_pwr_en: sd-io-pwr-en { 701 rockchip,pins = <2 RK_PA2 RK_FUNC_GPIO 702 &pcfg_pull_none>; 703 }; 704 705 sd_pwr_1800_sel: sd-pwr-1800-sel { 706 rockchip,pins = <2 RK_PD4 RK_FUNC_GPIO 707 &pcfg_pull_none>; 708 }; 709 710 sd_slot_pwr_en: sd-slot-pwr-en { 711 rockchip,pins = <4 RK_PD5 RK_FUNC_GPIO 712 &pcfg_pull_none>; 713 }; 714 }; 715 716 codec { 717 /* Has external pullup */ 718 headset_int_l: headset-int-l { 719 rockchip,pins = <1 RK_PC7 RK_FUNC_GPIO &pcfg_pull_none>; 720 }; 721 722 mic_int: mic-int { 723 rockchip,pins = <1 RK_PB5 RK_FUNC_GPIO &pcfg_pull_down>; 724 }; 725 }; 726 727 max98357a { 728 sdmode_en: sdmode-en { 729 rockchip,pins = <1 RK_PA2 RK_FUNC_GPIO &pcfg_pull_down>; 730 }; 731 }; 732 733 pcie { 734 pcie_clkreqn_cpm: pci-clkreqn-cpm { 735 /* 736 * Since our pcie doesn't support ClockPM(CPM), we want 737 * to hack this as gpio, so the EP could be able to 738 * de-assert it along and make ClockPM(CPM) work. 739 */ 740 rockchip,pins = <2 RK_PD2 RK_FUNC_GPIO &pcfg_pull_none>; 741 }; 742 }; 743 744 sdmmc { 745 /* 746 * We run sdmmc at max speed; bump up drive strength. 747 * We also have external pulls, so disable the internal ones. 748 */ 749 sdmmc_bus4: sdmmc-bus4 { 750 rockchip,pins = 751 <4 RK_PB0 1 &pcfg_pull_none_8ma>, 752 <4 RK_PB1 1 &pcfg_pull_none_8ma>, 753 <4 RK_PB2 1 &pcfg_pull_none_8ma>, 754 <4 RK_PB3 1 &pcfg_pull_none_8ma>; 755 }; 756 757 sdmmc_clk: sdmmc-clk { 758 rockchip,pins = 759 <4 RK_PB4 1 &pcfg_pull_none_8ma>; 760 }; 761 762 sdmmc_cmd: sdmmc-cmd { 763 rockchip,pins = 764 <4 RK_PB5 1 &pcfg_pull_none_8ma>; 765 }; 766 767 /* 768 * In our case the official card detect is hooked to ground 769 * to avoid getting access to JTAG just by sticking something 770 * in the SD card slot (see the force_jtag bit in the TRM). 771 * 772 * We still configure it as card detect because it doesn't 773 * hurt and dw_mmc will ignore it. We make sure to disable 774 * the pull though so we don't burn needless power. 775 */ 776 sdmmc_cd: sdmmc-cd { 777 rockchip,pins = 778 <0 RK_PA7 1 &pcfg_pull_none>; 779 }; 780 781 /* This is where we actually hook up CD; has external pull */ 782 sdmmc_cd_pin: sdmmc-cd-pin { 783 rockchip,pins = <4 RK_PD0 RK_FUNC_GPIO &pcfg_pull_none>; 784 }; 785 }; 786 787 spi1 { 788 spi1_sleep: spi1-sleep { 789 /* 790 * Pull down SPI1 CLK/CS/RX/TX during suspend, to 791 * prevent leakage. 792 */ 793 rockchip,pins = <1 RK_PB1 RK_FUNC_GPIO &pcfg_pull_down>, 794 <1 RK_PB2 RK_FUNC_GPIO &pcfg_pull_down>, 795 <1 RK_PA7 RK_FUNC_GPIO &pcfg_pull_down>, 796 <1 RK_PB0 RK_FUNC_GPIO &pcfg_pull_down>; 797 }; 798 }; 799 800 touchscreen { 801 touch_int_l: touch-int-l { 802 rockchip,pins = <3 RK_PB5 RK_FUNC_GPIO &pcfg_pull_up>; 803 }; 804 805 touch_reset_l: touch-reset-l { 806 rockchip,pins = <4 RK_PD2 RK_FUNC_GPIO &pcfg_pull_none>; 807 }; 808 }; 809 810 trackpad { 811 ap_i2c_tp_pu_en: ap-i2c-tp-pu-en { 812 rockchip,pins = <3 RK_PB4 RK_FUNC_GPIO &pcfg_output_high>; 813 }; 814 815 trackpad_int_l: trackpad-int-l { 816 rockchip,pins = <1 RK_PA4 RK_FUNC_GPIO &pcfg_pull_up>; 817 }; 818 }; 819 820 wifi: wifi { 821 wlan_module_reset_l: wlan-module-reset-l { 822 rockchip,pins = <1 RK_PB3 RK_FUNC_GPIO &pcfg_pull_none>; 823 }; 824 825 bt_host_wake_l: bt-host-wake-l { 826 /* Kevin has an external pull up, but Gru does not */ 827 rockchip,pins = <0 RK_PA3 RK_FUNC_GPIO &pcfg_pull_up>; 828 }; 829 }; 830 831 write-protect { 832 ap_fw_wp: ap-fw-wp { 833 rockchip,pins = <1 RK_PC2 RK_FUNC_GPIO &pcfg_pull_up>; 834 }; 835 }; 836}; 837