Commit 3325f1bc authored by Stephen Warren's avatar Stephen Warren

ARM: tegra: convert device tree files to use GPIO defines

Use TEGRA_GPIO() macro to name all GPIOs referenced by GPIO properties,
and some interrupts properties. Use standard GPIO flag defines too.
Signed-off-by: default avatarStephen Warren <swarren@nvidia.com>
parent 9798e47f
...@@ -838,7 +838,7 @@ pmc { ...@@ -838,7 +838,7 @@ pmc {
}; };
sdhci@78000400 { sdhci@78000400 {
cd-gpios = <&gpio 170 1>; /* gpio PV2 */ cd-gpios = <&gpio TEGRA_GPIO(V, 2) GPIO_ACTIVE_LOW>;
bus-width = <4>; bus-width = <4>;
status = "okay"; status = "okay";
}; };
...@@ -883,7 +883,7 @@ dvdd_ts_reg: regulator@1 { ...@@ -883,7 +883,7 @@ dvdd_ts_reg: regulator@1 {
regulator-min-microvolt = <1800000>; regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>; regulator-max-microvolt = <1800000>;
enable-active-high; enable-active-high;
gpio = <&gpio 61 0>; /* GPIO PH5 */ gpio = <&gpio TEGRA_GPIO(H, 5) GPIO_ACTIVE_HIGH>;
}; };
lcd_bl_en_reg: regulator@2 { lcd_bl_en_reg: regulator@2 {
...@@ -893,7 +893,7 @@ lcd_bl_en_reg: regulator@2 { ...@@ -893,7 +893,7 @@ lcd_bl_en_reg: regulator@2 {
regulator-min-microvolt = <5000000>; regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>; regulator-max-microvolt = <5000000>;
enable-active-high; enable-active-high;
gpio = <&gpio 58 0>; /* GPIO PH2 */ gpio = <&gpio TEGRA_GPIO(H, 2) GPIO_ACTIVE_HIGH>;
}; };
usb1_vbus_reg: regulator@3 { usb1_vbus_reg: regulator@3 {
...@@ -903,7 +903,7 @@ usb1_vbus_reg: regulator@3 { ...@@ -903,7 +903,7 @@ usb1_vbus_reg: regulator@3 {
regulator-min-microvolt = <5000000>; regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>; regulator-max-microvolt = <5000000>;
enable-active-high; enable-active-high;
gpio = <&gpio 108 0>; /* GPIO PN4 */ gpio = <&gpio TEGRA_GPIO(N, 4) GPIO_ACTIVE_HIGH>;
gpio-open-drain; gpio-open-drain;
vin-supply = <&tps65090_dcdc1_reg>; vin-supply = <&tps65090_dcdc1_reg>;
}; };
...@@ -915,7 +915,7 @@ usb3_vbus_reg: regulator@4 { ...@@ -915,7 +915,7 @@ usb3_vbus_reg: regulator@4 {
regulator-min-microvolt = <5000000>; regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>; regulator-max-microvolt = <5000000>;
enable-active-high; enable-active-high;
gpio = <&gpio 86 0>; /* GPIO PK6 */ gpio = <&gpio TEGRA_GPIO(K, 6) GPIO_ACTIVE_HIGH>;
gpio-open-drain; gpio-open-drain;
vin-supply = <&tps65090_dcdc1_reg>; vin-supply = <&tps65090_dcdc1_reg>;
}; };
...@@ -927,7 +927,7 @@ vdd_hdmi_reg: regulator@5 { ...@@ -927,7 +927,7 @@ vdd_hdmi_reg: regulator@5 {
regulator-min-microvolt = <5000000>; regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>; regulator-max-microvolt = <5000000>;
enable-active-high; enable-active-high;
gpio = <&gpio 81 0>; /* GPIO PK1 */ gpio = <&gpio TEGRA_GPIO(K, 1) GPIO_ACTIVE_HIGH>;
vin-supply = <&tps65090_dcdc1_reg>; vin-supply = <&tps65090_dcdc1_reg>;
}; };
}; };
......
#include <dt-bindings/gpio/tegra-gpio.h>
#include "skeleton.dtsi" #include "skeleton.dtsi"
/ { / {
......
...@@ -14,7 +14,8 @@ hdmi { ...@@ -14,7 +14,8 @@ hdmi {
pll-supply = <&hdmi_pll_reg>; pll-supply = <&hdmi_pll_reg>;
nvidia,ddc-i2c-bus = <&i2c_ddc>; nvidia,ddc-i2c-bus = <&i2c_ddc>;
nvidia,hpd-gpio = <&gpio 111 0>; /* PN7 */ nvidia,hpd-gpio = <&gpio TEGRA_GPIO(N, 7)
GPIO_ACTIVE_HIGH>;
}; };
}; };
...@@ -443,21 +444,25 @@ emc-table@333000 { ...@@ -443,21 +444,25 @@ emc-table@333000 {
ac97: ac97 { ac97: ac97 {
status = "okay"; status = "okay";
nvidia,codec-reset-gpio = <&gpio 168 0>; /* gpio PV0 */ nvidia,codec-reset-gpio = <&gpio TEGRA_GPIO(V, 0)
nvidia,codec-sync-gpio = <&gpio 120 0>; /* gpio PP0 */ GPIO_ACTIVE_HIGH>;
nvidia,codec-sync-gpio = <&gpio TEGRA_GPIO(P, 0)
GPIO_ACTIVE_HIGH>;
}; };
usb@c5004000 { usb@c5004000 {
status = "okay"; status = "okay";
nvidia,phy-reset-gpio = <&gpio 169 1>; /* gpio PV1, active low */ nvidia,phy-reset-gpio = <&gpio TEGRA_GPIO(V, 1)
GPIO_ACTIVE_LOW>;
}; };
usb-phy@c5004000 { usb-phy@c5004000 {
nvidia,phy-reset-gpio = <&gpio 169 1>; /* gpio PV1, active low */ nvidia,phy-reset-gpio = <&gpio TEGRA_GPIO(V, 1)
GPIO_ACTIVE_LOW>;
}; };
sdhci@c8000600 { sdhci@c8000600 {
cd-gpios = <&gpio 23 1>; /* gpio PC7 */ cd-gpios = <&gpio TEGRA_GPIO(C, 7) GPIO_ACTIVE_LOW>;
}; };
clocks { clocks {
...@@ -514,7 +519,7 @@ regulator@101 { ...@@ -514,7 +519,7 @@ regulator@101 {
enable-active-high; enable-active-high;
regulator-boot-on; regulator-boot-on;
regulator-always-on; regulator-always-on;
gpio = <&gpio 217 0>; gpio = <&gpio TEGRA_GPIO(BB, 1) GPIO_ACTIVE_HIGH>;
}; };
}; };
}; };
...@@ -18,7 +18,8 @@ hdmi { ...@@ -18,7 +18,8 @@ hdmi {
pll-supply = <&hdmi_pll_reg>; pll-supply = <&hdmi_pll_reg>;
nvidia,ddc-i2c-bus = <&hdmi_ddc>; nvidia,ddc-i2c-bus = <&hdmi_ddc>;
nvidia,hpd-gpio = <&gpio 111 0>; /* PN7 */ nvidia,hpd-gpio = <&gpio TEGRA_GPIO(N, 7)
GPIO_ACTIVE_HIGH>;
}; };
}; };
...@@ -262,7 +263,7 @@ wm8903: wm8903@1a { ...@@ -262,7 +263,7 @@ wm8903: wm8903@1a {
compatible = "wlf,wm8903"; compatible = "wlf,wm8903";
reg = <0x1a>; reg = <0x1a>;
interrupt-parent = <&gpio>; interrupt-parent = <&gpio>;
interrupts = <187 0x04>; interrupts = <TEGRA_GPIO(X, 3) 0x04>;
gpio-controller; gpio-controller;
#gpio-cells = <2>; #gpio-cells = <2>;
...@@ -434,12 +435,14 @@ usb-phy@c5000000 { ...@@ -434,12 +435,14 @@ usb-phy@c5000000 {
usb@c5004000 { usb@c5004000 {
status = "okay"; status = "okay";
nvidia,phy-reset-gpio = <&gpio 169 1>; /* gpio PV1, active low */ nvidia,phy-reset-gpio = <&gpio TEGRA_GPIO(V, 1)
GPIO_ACTIVE_LOW>;
}; };
usb-phy@c5004000 { usb-phy@c5004000 {
status = "okay"; status = "okay";
nvidia,phy-reset-gpio = <&gpio 169 1>; /* gpio PV1, active low */ nvidia,phy-reset-gpio = <&gpio TEGRA_GPIO(V, 1)
GPIO_ACTIVE_LOW>;
}; };
usb@c5008000 { usb@c5008000 {
...@@ -452,17 +455,17 @@ usb-phy@c5008000 { ...@@ -452,17 +455,17 @@ usb-phy@c5008000 {
sdhci@c8000200 { sdhci@c8000200 {
status = "okay"; status = "okay";
cd-gpios = <&gpio 69 1>; /* gpio PI5 */ cd-gpios = <&gpio TEGRA_GPIO(I, 5) GPIO_ACTIVE_LOW>;
wp-gpios = <&gpio 57 0>; /* gpio PH1 */ wp-gpios = <&gpio TEGRA_GPIO(H, 1) GPIO_ACTIVE_HIGH>;
power-gpios = <&gpio 155 0>; /* gpio PT3 */ power-gpios = <&gpio TEGRA_GPIO(T, 3) GPIO_ACTIVE_HIGH>;
bus-width = <4>; bus-width = <4>;
}; };
sdhci@c8000600 { sdhci@c8000600 {
status = "okay"; status = "okay";
cd-gpios = <&gpio 58 1>; /* gpio PH2 */ cd-gpios = <&gpio TEGRA_GPIO(H, 2) GPIO_ACTIVE_LOW>;
wp-gpios = <&gpio 59 0>; /* gpio PH3 */ wp-gpios = <&gpio TEGRA_GPIO(H, 3) GPIO_ACTIVE_HIGH>;
power-gpios = <&gpio 70 0>; /* gpio PI6 */ power-gpios = <&gpio TEGRA_GPIO(I, 6) GPIO_ACTIVE_HIGH>;
bus-width = <8>; bus-width = <8>;
}; };
...@@ -484,7 +487,7 @@ gpio-keys { ...@@ -484,7 +487,7 @@ gpio-keys {
power { power {
label = "Power"; label = "Power";
gpios = <&gpio 170 1>; /* gpio PV2, active low */ gpios = <&gpio TEGRA_GPIO(V, 2) GPIO_ACTIVE_LOW>;
linux,code = <116>; /* KEY_POWER */ linux,code = <116>; /* KEY_POWER */
gpio-key,wakeup; gpio-key,wakeup;
}; };
...@@ -627,7 +630,7 @@ regulator@1 { ...@@ -627,7 +630,7 @@ regulator@1 {
regulator-name = "vdd_1v5"; regulator-name = "vdd_1v5";
regulator-min-microvolt = <1500000>; regulator-min-microvolt = <1500000>;
regulator-max-microvolt = <1500000>; regulator-max-microvolt = <1500000>;
gpio = <&pmic 0 0>; gpio = <&pmic 0 GPIO_ACTIVE_HIGH>;
}; };
regulator@2 { regulator@2 {
...@@ -636,7 +639,7 @@ regulator@2 { ...@@ -636,7 +639,7 @@ regulator@2 {
regulator-name = "vdd_1v2"; regulator-name = "vdd_1v2";
regulator-min-microvolt = <1200000>; regulator-min-microvolt = <1200000>;
regulator-max-microvolt = <1200000>; regulator-max-microvolt = <1200000>;
gpio = <&pmic 1 0>; gpio = <&pmic 1 GPIO_ACTIVE_HIGH>;
enable-active-high; enable-active-high;
}; };
...@@ -646,7 +649,7 @@ regulator@3 { ...@@ -646,7 +649,7 @@ regulator@3 {
regulator-name = "vdd_1v05"; regulator-name = "vdd_1v05";
regulator-min-microvolt = <1050000>; regulator-min-microvolt = <1050000>;
regulator-max-microvolt = <1050000>; regulator-max-microvolt = <1050000>;
gpio = <&pmic 2 0>; gpio = <&pmic 2 GPIO_ACTIVE_HIGH>;
enable-active-high; enable-active-high;
/* Hack until board-harmony-pcie.c is removed */ /* Hack until board-harmony-pcie.c is removed */
status = "disabled"; status = "disabled";
...@@ -658,7 +661,7 @@ regulator@4 { ...@@ -658,7 +661,7 @@ regulator@4 {
regulator-name = "vdd_pnl"; regulator-name = "vdd_pnl";
regulator-min-microvolt = <2800000>; regulator-min-microvolt = <2800000>;
regulator-max-microvolt = <2800000>; regulator-max-microvolt = <2800000>;
gpio = <&gpio 22 0>; /* gpio PC6 */ gpio = <&gpio TEGRA_GPIO(C, 6) GPIO_ACTIVE_HIGH>;
enable-active-high; enable-active-high;
}; };
...@@ -668,7 +671,7 @@ regulator@5 { ...@@ -668,7 +671,7 @@ regulator@5 {
regulator-name = "vdd_bl"; regulator-name = "vdd_bl";
regulator-min-microvolt = <2800000>; regulator-min-microvolt = <2800000>;
regulator-max-microvolt = <2800000>; regulator-max-microvolt = <2800000>;
gpio = <&gpio 176 0>; /* gpio PW0 */ gpio = <&gpio TEGRA_GPIO(W, 0) GPIO_ACTIVE_HIGH>;
enable-active-high; enable-active-high;
}; };
}; };
...@@ -691,10 +694,13 @@ sound { ...@@ -691,10 +694,13 @@ sound {
nvidia,i2s-controller = <&tegra_i2s1>; nvidia,i2s-controller = <&tegra_i2s1>;
nvidia,audio-codec = <&wm8903>; nvidia,audio-codec = <&wm8903>;
nvidia,spkr-en-gpios = <&wm8903 2 0>; nvidia,spkr-en-gpios = <&wm8903 2 GPIO_ACTIVE_HIGH>;
nvidia,hp-det-gpios = <&gpio 178 0>; /* gpio PW2 */ nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2)
nvidia,int-mic-en-gpios = <&gpio 184 0>; /*gpio PX0 */ GPIO_ACTIVE_HIGH>;
nvidia,ext-mic-en-gpios = <&gpio 185 0>; /* gpio PX1 */ nvidia,int-mic-en-gpios = <&gpio TEGRA_GPIO(X, 0)
GPIO_ACTIVE_HIGH>;
nvidia,ext-mic-en-gpios = <&gpio TEGRA_GPIO(X, 1)
GPIO_ACTIVE_HIGH>;
clocks = <&tegra_car 112>, <&tegra_car 113>, <&tegra_car 94>; clocks = <&tegra_car 112>, <&tegra_car 113>, <&tegra_car 94>;
clock-names = "pll_a", "pll_a_out0", "mclk"; clock-names = "pll_a", "pll_a_out0", "mclk";
......
...@@ -80,7 +80,7 @@ regulator@0 { ...@@ -80,7 +80,7 @@ regulator@0 {
regulator-max-microvolt = <5000000>; regulator-max-microvolt = <5000000>;
regulator-boot-on; regulator-boot-on;
regulator-always-on; regulator-always-on;
gpio = <&gpio 178 0>; gpio = <&gpio TEGRA_GPIO(W, 2) GPIO_ACTIVE_HIGH>;
}; };
vcc_sd_reg: regulator@1 { vcc_sd_reg: regulator@1 {
......
...@@ -15,7 +15,7 @@ wm8903: wm8903@1a { ...@@ -15,7 +15,7 @@ wm8903: wm8903@1a {
compatible = "wlf,wm8903"; compatible = "wlf,wm8903";
reg = <0x1a>; reg = <0x1a>;
interrupt-parent = <&gpio>; interrupt-parent = <&gpio>;
interrupts = <187 0x04>; interrupts = <TEGRA_GPIO(X, 3) 0x04>;
gpio-controller; gpio-controller;
#gpio-cells = <2>; #gpio-cells = <2>;
...@@ -56,8 +56,8 @@ sound { ...@@ -56,8 +56,8 @@ sound {
nvidia,i2s-controller = <&tegra_i2s1>; nvidia,i2s-controller = <&tegra_i2s1>;
nvidia,audio-codec = <&wm8903>; nvidia,audio-codec = <&wm8903>;
nvidia,spkr-en-gpios = <&wm8903 2 0>; nvidia,spkr-en-gpios = <&wm8903 2 GPIO_ACTIVE_HIGH>;
nvidia,hp-det-gpios = <&gpio 178 0>; /* gpio PW2 */ nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2) GPIO_ACTIVE_HIGH>;
clocks = <&tegra_car 112>, <&tegra_car 113>, <&tegra_car 94>; clocks = <&tegra_car 112>, <&tegra_car 113>, <&tegra_car 94>;
clock-names = "pll_a", "pll_a_out0", "mclk"; clock-names = "pll_a", "pll_a_out0", "mclk";
......
...@@ -18,7 +18,8 @@ hdmi { ...@@ -18,7 +18,8 @@ hdmi {
pll-supply = <&hdmi_pll_reg>; pll-supply = <&hdmi_pll_reg>;
nvidia,ddc-i2c-bus = <&hdmi_ddc>; nvidia,ddc-i2c-bus = <&hdmi_ddc>;
nvidia,hpd-gpio = <&gpio 111 0>; /* PN7 */ nvidia,hpd-gpio = <&gpio TEGRA_GPIO(N, 7)
GPIO_ACTIVE_HIGH>;
}; };
}; };
...@@ -274,7 +275,7 @@ nvec { ...@@ -274,7 +275,7 @@ nvec {
#address-cells = <1>; #address-cells = <1>;
#size-cells = <0>; #size-cells = <0>;
clock-frequency = <80000>; clock-frequency = <80000>;
request-gpios = <&gpio 170 0>; /* gpio PV2 */ request-gpios = <&gpio TEGRA_GPIO(V, 2) GPIO_ACTIVE_HIGH>;
slave-addr = <138>; slave-addr = <138>;
clocks = <&tegra_car 67>, <&tegra_car 124>; clocks = <&tegra_car 67>, <&tegra_car 124>;
clock-names = "div-clk", "fast-clk"; clock-names = "div-clk", "fast-clk";
...@@ -433,12 +434,14 @@ usb-phy@c5000000 { ...@@ -433,12 +434,14 @@ usb-phy@c5000000 {
usb@c5004000 { usb@c5004000 {
status = "okay"; status = "okay";
nvidia,phy-reset-gpio = <&gpio 168 1>; /* gpio PV0, active low */ nvidia,phy-reset-gpio = <&gpio TEGRA_GPIO(V, 0)
GPIO_ACTIVE_LOW>;
}; };
usb-phy@c5004000 { usb-phy@c5004000 {
status = "okay"; status = "okay";
nvidia,phy-reset-gpio = <&gpio 168 1>; /* gpio PV0, active low */ nvidia,phy-reset-gpio = <&gpio TEGRA_GPIO(V, 0)
GPIO_ACTIVE_LOW>;
}; };
usb@c5008000 { usb@c5008000 {
...@@ -451,9 +454,9 @@ usb-phy@c5008000 { ...@@ -451,9 +454,9 @@ usb-phy@c5008000 {
sdhci@c8000000 { sdhci@c8000000 {
status = "okay"; status = "okay";
cd-gpios = <&gpio 173 1>; /* gpio PV5 */ cd-gpios = <&gpio TEGRA_GPIO(V, 5) GPIO_ACTIVE_LOW>;
wp-gpios = <&gpio 57 0>; /* gpio PH1 */ wp-gpios = <&gpio TEGRA_GPIO(H, 1) GPIO_ACTIVE_HIGH>;
power-gpios = <&gpio 169 0>; /* gpio PV1 */ power-gpios = <&gpio TEGRA_GPIO(V, 1) GPIO_ACTIVE_HIGH>;
bus-width = <4>; bus-width = <4>;
}; };
...@@ -481,7 +484,7 @@ gpio-keys { ...@@ -481,7 +484,7 @@ gpio-keys {
power { power {
label = "Power"; label = "Power";
gpios = <&gpio 79 1>; /* gpio PJ7, active low */ gpios = <&gpio TEGRA_GPIO(J, 7) GPIO_ACTIVE_LOW>;
linux,code = <116>; /* KEY_POWER */ linux,code = <116>; /* KEY_POWER */
gpio-key,wakeup; gpio-key,wakeup;
}; };
...@@ -492,7 +495,7 @@ gpio-leds { ...@@ -492,7 +495,7 @@ gpio-leds {
wifi { wifi {
label = "wifi-led"; label = "wifi-led";
gpios = <&gpio 24 0>; /* gpio PD0 */ gpios = <&gpio TEGRA_GPIO(D, 0) GPIO_ACTIVE_HIGH>;
linux,default-trigger = "rfkill0"; linux,default-trigger = "rfkill0";
}; };
}; };
...@@ -529,7 +532,8 @@ sound { ...@@ -529,7 +532,8 @@ sound {
nvidia,audio-codec = <&alc5632>; nvidia,audio-codec = <&alc5632>;
nvidia,i2s-controller = <&tegra_i2s1>; nvidia,i2s-controller = <&tegra_i2s1>;
nvidia,hp-det-gpios = <&gpio 178 0>; /* gpio PW2 */ nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2)
GPIO_ACTIVE_HIGH>;
clocks = <&tegra_car 112>, <&tegra_car 113>, <&tegra_car 94>; clocks = <&tegra_car 112>, <&tegra_car 113>, <&tegra_car 94>;
clock-names = "pll_a", "pll_a_out0", "mclk"; clock-names = "pll_a", "pll_a_out0", "mclk";
......
...@@ -17,7 +17,7 @@ wm8903: wm8903@1a { ...@@ -17,7 +17,7 @@ wm8903: wm8903@1a {
compatible = "wlf,wm8903"; compatible = "wlf,wm8903";
reg = <0x1a>; reg = <0x1a>;
interrupt-parent = <&gpio>; interrupt-parent = <&gpio>;
interrupts = <187 0x04>; interrupts = <TEGRA_GPIO(X, 3) 0x04>;
gpio-controller; gpio-controller;
#gpio-cells = <2>; #gpio-cells = <2>;
...@@ -50,8 +50,8 @@ sound { ...@@ -50,8 +50,8 @@ sound {
nvidia,i2s-controller = <&tegra_i2s1>; nvidia,i2s-controller = <&tegra_i2s1>;
nvidia,audio-codec = <&wm8903>; nvidia,audio-codec = <&wm8903>;
nvidia,spkr-en-gpios = <&wm8903 2 0>; nvidia,spkr-en-gpios = <&wm8903 2 GPIO_ACTIVE_HIGH>;
nvidia,hp-det-gpios = <&gpio 178 0>; /* gpio PW2 */ nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2) GPIO_ACTIVE_HIGH>;
clocks = <&tegra_car 112>, <&tegra_car 113>, <&tegra_car 94>; clocks = <&tegra_car 112>, <&tegra_car 113>, <&tegra_car 94>;
clock-names = "pll_a", "pll_a_out0", "mclk"; clock-names = "pll_a", "pll_a_out0", "mclk";
......
...@@ -18,7 +18,8 @@ hdmi { ...@@ -18,7 +18,8 @@ hdmi {
pll-supply = <&hdmi_pll_reg>; pll-supply = <&hdmi_pll_reg>;
nvidia,ddc-i2c-bus = <&hdmi_ddc>; nvidia,ddc-i2c-bus = <&hdmi_ddc>;
nvidia,hpd-gpio = <&gpio 111 0>; /* PN7 */ nvidia,hpd-gpio = <&gpio TEGRA_GPIO(N, 7)
GPIO_ACTIVE_HIGH>;
}; };
}; };
...@@ -313,7 +314,7 @@ wm8903: wm8903@1a { ...@@ -313,7 +314,7 @@ wm8903: wm8903@1a {
compatible = "wlf,wm8903"; compatible = "wlf,wm8903";
reg = <0x1a>; reg = <0x1a>;
interrupt-parent = <&gpio>; interrupt-parent = <&gpio>;
interrupts = <187 0x04>; interrupts = <TEGRA_GPIO(X, 3) 0x04>;
gpio-controller; gpio-controller;
#gpio-cells = <2>; #gpio-cells = <2>;
...@@ -328,14 +329,14 @@ isl29018@44 { ...@@ -328,14 +329,14 @@ isl29018@44 {
compatible = "isil,isl29018"; compatible = "isil,isl29018";
reg = <0x44>; reg = <0x44>;
interrupt-parent = <&gpio>; interrupt-parent = <&gpio>;
interrupts = <202 0x04>; /* GPIO PZ2 */ interrupts = <TEGRA_GPIO(Z, 2) 0x04>;
}; };
gyrometer@68 { gyrometer@68 {
compatible = "invn,mpu3050"; compatible = "invn,mpu3050";
reg = <0x68>; reg = <0x68>;
interrupt-parent = <&gpio>; interrupt-parent = <&gpio>;
interrupts = <204 0x04>; /* gpio PZ4 */ interrupts = <TEGRA_GPIO(Z, 4) 0x04>;
}; };
}; };
...@@ -511,7 +512,7 @@ magnetometer@c { ...@@ -511,7 +512,7 @@ magnetometer@c {
compatible = "ak,ak8975"; compatible = "ak,ak8975";
reg = <0xc>; reg = <0xc>;
interrupt-parent = <&gpio>; interrupt-parent = <&gpio>;
interrupts = <109 0x04>; /* gpio PN5 */ interrupts = <TEGRA_GPIO(N, 5) 0x04>;
}; };
}; };
...@@ -565,7 +566,7 @@ emc-table@380000 { ...@@ -565,7 +566,7 @@ emc-table@380000 {
usb@c5000000 { usb@c5000000 {
status = "okay"; status = "okay";
nvidia,vbus-gpio = <&gpio 24 0>; /* PD0 */ nvidia,vbus-gpio = <&gpio TEGRA_GPIO(D, 0) GPIO_ACTIVE_HIGH>;
dr_mode = "otg"; dr_mode = "otg";
}; };
...@@ -577,12 +578,14 @@ usb-phy@c5000000 { ...@@ -577,12 +578,14 @@ usb-phy@c5000000 {
usb@c5004000 { usb@c5004000 {
status = "okay"; status = "okay";
nvidia,phy-reset-gpio = <&gpio 169 1>; /* gpio PV1, active low */ nvidia,phy-reset-gpio = <&gpio TEGRA_GPIO(V, 1)
GPIO_ACTIVE_LOW>;
}; };
usb-phy@c5004000 { usb-phy@c5004000 {
status = "okay"; status = "okay";
nvidia,phy-reset-gpio = <&gpio 169 1>; /* gpio PV1, active low */ nvidia,phy-reset-gpio = <&gpio TEGRA_GPIO(V, 1)
GPIO_ACTIVE_LOW>;
}; };
usb@c5008000 { usb@c5008000 {
...@@ -595,16 +598,16 @@ usb-phy@c5008000 { ...@@ -595,16 +598,16 @@ usb-phy@c5008000 {
sdhci@c8000000 { sdhci@c8000000 {
status = "okay"; status = "okay";
power-gpios = <&gpio 86 0>; /* gpio PK6 */ power-gpios = <&gpio TEGRA_GPIO(K, 6) GPIO_ACTIVE_HIGH>;
bus-width = <4>; bus-width = <4>;
keep-power-in-suspend; keep-power-in-suspend;
}; };
sdhci@c8000400 { sdhci@c8000400 {
status = "okay"; status = "okay";
cd-gpios = <&gpio 69 1>; /* gpio PI5 */ cd-gpios = <&gpio TEGRA_GPIO(I, 5) GPIO_ACTIVE_LOW>;
wp-gpios = <&gpio 57 0>; /* gpio PH1 */ wp-gpios = <&gpio TEGRA_GPIO(H, 1) GPIO_ACTIVE_HIGH>;
power-gpios = <&gpio 70 0>; /* gpio PI6 */ power-gpios = <&gpio TEGRA_GPIO(I, 6) GPIO_ACTIVE_HIGH>;
bus-width = <4>; bus-width = <4>;
}; };
...@@ -632,14 +635,14 @@ gpio-keys { ...@@ -632,14 +635,14 @@ gpio-keys {
power { power {
label = "Power"; label = "Power";
gpios = <&gpio 170 1>; /* gpio PV2, active low */ gpios = <&gpio TEGRA_GPIO(V, 2) GPIO_ACTIVE_LOW>;
linux,code = <116>; /* KEY_POWER */ linux,code = <116>; /* KEY_POWER */
gpio-key,wakeup; gpio-key,wakeup;
}; };
lid { lid {
label = "Lid"; label = "Lid";
gpios = <&gpio 23 0>; /* gpio PC7 */ gpios = <&gpio TEGRA_GPIO(C, 7) GPIO_ACTIVE_HIGH>;
linux,input-type = <5>; /* EV_SW */ linux,input-type = <5>; /* EV_SW */
linux,code = <0>; /* SW_LID */ linux,code = <0>; /* SW_LID */
debounce-interval = <1>; debounce-interval = <1>;
...@@ -806,7 +809,7 @@ regulator@1 { ...@@ -806,7 +809,7 @@ regulator@1 {
regulator-name = "vdd_1v5"; regulator-name = "vdd_1v5";
regulator-min-microvolt = <1500000>; regulator-min-microvolt = <1500000>;
regulator-max-microvolt = <1500000>; regulator-max-microvolt = <1500000>;
gpio = <&pmic 0 0>; gpio = <&pmic 0 GPIO_ACTIVE_HIGH>;
}; };
regulator@2 { regulator@2 {
...@@ -815,7 +818,7 @@ regulator@2 { ...@@ -815,7 +818,7 @@ regulator@2 {
regulator-name = "vdd_1v2"; regulator-name = "vdd_1v2";
regulator-min-microvolt = <1200000>; regulator-min-microvolt = <1200000>;
regulator-max-microvolt = <1200000>; regulator-max-microvolt = <1200000>;
gpio = <&pmic 1 0>; gpio = <&pmic 1 GPIO_ACTIVE_HIGH>;
enable-active-high; enable-active-high;
}; };
...@@ -847,8 +850,8 @@ sound { ...@@ -847,8 +850,8 @@ sound {
nvidia,i2s-controller = <&tegra_i2s1>; nvidia,i2s-controller = <&tegra_i2s1>;
nvidia,audio-codec = <&wm8903>; nvidia,audio-codec = <&wm8903>;
nvidia,spkr-en-gpios = <&wm8903 2 0>; nvidia,spkr-en-gpios = <&wm8903 2 GPIO_ACTIVE_HIGH>;
nvidia,hp-det-gpios = <&gpio 185 0>; /* gpio PX1 */ nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(X, 1) GPIO_ACTIVE_HIGH>;
clocks = <&tegra_car 112>, <&tegra_car 113>, <&tegra_car 94>; clocks = <&tegra_car 112>, <&tegra_car 113>, <&tegra_car 94>;
clock-names = "pll_a", "pll_a_out0", "mclk"; clock-names = "pll_a", "pll_a_out0", "mclk";
......
...@@ -14,7 +14,8 @@ hdmi { ...@@ -14,7 +14,8 @@ hdmi {
pll-supply = <&hdmi_pll_reg>; pll-supply = <&hdmi_pll_reg>;
nvidia,ddc-i2c-bus = <&hdmi_ddc>; nvidia,ddc-i2c-bus = <&hdmi_ddc>;
nvidia,hpd-gpio = <&gpio 111 0>; /* PN7 */ nvidia,hpd-gpio = <&gpio TEGRA_GPIO(N, 7)
GPIO_ACTIVE_HIGH>;
}; };
}; };
...@@ -475,8 +476,8 @@ usb-phy@c5008000 { ...@@ -475,8 +476,8 @@ usb-phy@c5008000 {
}; };
sdhci@c8000600 { sdhci@c8000600 {
cd-gpios = <&gpio 58 1>; /* gpio PH2 */ cd-gpios = <&gpio TEGRA_GPIO(H, 2) GPIO_ACTIVE_LOW>;
wp-gpios = <&gpio 59 0>; /* gpio PH3 */ wp-gpios = <&gpio TEGRA_GPIO(H, 3) GPIO_ACTIVE_HIGH>;
bus-width = <4>; bus-width = <4>;
status = "okay"; status = "okay";
}; };
......
...@@ -17,7 +17,7 @@ wm8903: wm8903@1a { ...@@ -17,7 +17,7 @@ wm8903: wm8903@1a {
compatible = "wlf,wm8903"; compatible = "wlf,wm8903";
reg = <0x1a>; reg = <0x1a>;
interrupt-parent = <&gpio>; interrupt-parent = <&gpio>;
interrupts = <187 0x04>; interrupts = <TEGRA_GPIO(X, 3) 0x04>;
gpio-controller; gpio-controller;
#gpio-cells = <2>; #gpio-cells = <2>;
...@@ -50,8 +50,9 @@ sound { ...@@ -50,8 +50,9 @@ sound {
nvidia,i2s-controller = <&tegra_i2s1>; nvidia,i2s-controller = <&tegra_i2s1>;
nvidia,audio-codec = <&wm8903>; nvidia,audio-codec = <&wm8903>;
nvidia,spkr-en-gpios = <&wm8903 2 0>; nvidia,spkr-en-gpios = <&wm8903 2 GPIO_ACTIVE_HIGH>;
nvidia,hp-det-gpios = <&gpio 178 0>; /* gpio PW2 */ nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2)
GPIO_ACTIVE_HIGH>;
clocks = <&tegra_car 112>, <&tegra_car 113>, <&tegra_car 94>; clocks = <&tegra_car 112>, <&tegra_car 113>, <&tegra_car 94>;
clock-names = "pll_a", "pll_a_out0", "mclk"; clock-names = "pll_a", "pll_a_out0", "mclk";
......
...@@ -18,7 +18,8 @@ hdmi { ...@@ -18,7 +18,8 @@ hdmi {
pll-supply = <&hdmi_pll_reg>; pll-supply = <&hdmi_pll_reg>;
nvidia,ddc-i2c-bus = <&hdmi_ddc>; nvidia,ddc-i2c-bus = <&hdmi_ddc>;
nvidia,hpd-gpio = <&gpio 111 0>; /* PN7 */ nvidia,hpd-gpio = <&gpio TEGRA_GPIO(N, 7)
GPIO_ACTIVE_HIGH>;
}; };
}; };
...@@ -311,7 +312,7 @@ pmc { ...@@ -311,7 +312,7 @@ pmc {
usb@c5000000 { usb@c5000000 {
status = "okay"; status = "okay";
nvidia,vbus-gpio = <&gpio 170 0>; /* gpio PV2 */ nvidia,vbus-gpio = <&gpio TEGRA_GPIO(V, 2) GPIO_ACTIVE_HIGH>;
}; };
usb-phy@c5000000 { usb-phy@c5000000 {
...@@ -321,12 +322,14 @@ usb-phy@c5000000 { ...@@ -321,12 +322,14 @@ usb-phy@c5000000 {
usb@c5004000 { usb@c5004000 {
status = "okay"; status = "okay";
nvidia,phy-reset-gpio = <&gpio 168 1>; /* gpio PV0, active low */ nvidia,phy-reset-gpio = <&gpio TEGRA_GPIO(V, 0)
GPIO_ACTIVE_LOW>;
}; };
usb-phy@c5004000 { usb-phy@c5004000 {
status = "okay"; status = "okay";
nvidia,phy-reset-gpio = <&gpio 168 1>; /* gpio PV0, active low */ nvidia,phy-reset-gpio = <&gpio TEGRA_GPIO(V, 0)
GPIO_ACTIVE_LOW>;
}; };
usb@c5008000 { usb@c5008000 {
...@@ -344,8 +347,8 @@ sdhci@c8000000 { ...@@ -344,8 +347,8 @@ sdhci@c8000000 {
sdhci@c8000600 { sdhci@c8000600 {
status = "okay"; status = "okay";
cd-gpios = <&gpio 121 1>; /* gpio PP1 */ cd-gpios = <&gpio TEGRA_GPIO(P, 1) GPIO_ACTIVE_LOW>;
wp-gpios = <&gpio 122 0>; /* gpio PP2 */ wp-gpios = <&gpio TEGRA_GPIO(P, 2) GPIO_ACTIVE_HIGH>;
bus-width = <4>; bus-width = <4>;
}; };
...@@ -367,7 +370,7 @@ gpio-keys { ...@@ -367,7 +370,7 @@ gpio-keys {
power { power {
label = "Power"; label = "Power";
gpios = <&gpio 190 1>; /* gpio PX6, active low */ gpios = <&gpio TEGRA_GPIO(X, 6) GPIO_ACTIVE_LOW>;
linux,code = <116>; /* KEY_POWER */ linux,code = <116>; /* KEY_POWER */
gpio-key,wakeup; gpio-key,wakeup;
}; };
...@@ -375,7 +378,7 @@ power { ...@@ -375,7 +378,7 @@ power {
poweroff { poweroff {
compatible = "gpio-poweroff"; compatible = "gpio-poweroff";
gpios = <&gpio 191 1>; /* gpio PX7, active low */ gpios = <&gpio TEGRA_GPIO(X, 7) GPIO_ACTIVE_LOW>;
}; };
regulators { regulators {
......
...@@ -18,7 +18,8 @@ hdmi { ...@@ -18,7 +18,8 @@ hdmi {
pll-supply = <&hdmi_pll_reg>; pll-supply = <&hdmi_pll_reg>;
nvidia,ddc-i2c-bus = <&hdmi_ddc>; nvidia,ddc-i2c-bus = <&hdmi_ddc>;
nvidia,hpd-gpio = <&gpio 111 0>; /* PN7 */ nvidia,hpd-gpio = <&gpio TEGRA_GPIO(N, 7)
GPIO_ACTIVE_HIGH>;
}; };
}; };
...@@ -310,7 +311,7 @@ wm8903: wm8903@1a { ...@@ -310,7 +311,7 @@ wm8903: wm8903@1a {
compatible = "wlf,wm8903"; compatible = "wlf,wm8903";
reg = <0x1a>; reg = <0x1a>;
interrupt-parent = <&gpio>; interrupt-parent = <&gpio>;
interrupts = <187 0x04>; interrupts = <TEGRA_GPIO(X, 3) 0x04>;
gpio-controller; gpio-controller;
#gpio-cells = <2>; #gpio-cells = <2>;
...@@ -325,7 +326,7 @@ isl29018@44 { ...@@ -325,7 +326,7 @@ isl29018@44 {
compatible = "isil,isl29018"; compatible = "isil,isl29018";
reg = <0x44>; reg = <0x44>;
interrupt-parent = <&gpio>; interrupt-parent = <&gpio>;
interrupts = <202 0x04>; /*gpio PZ2 */ interrupts = <TEGRA_GPIO(Z, 2) 0x04>;
}; };
}; };
...@@ -511,12 +512,14 @@ usb-phy@c5000000 { ...@@ -511,12 +512,14 @@ usb-phy@c5000000 {
usb@c5004000 { usb@c5004000 {
status = "okay"; status = "okay";
nvidia,phy-reset-gpio = <&gpio 169 1>; /* gpio PV1, active low */ nvidia,phy-reset-gpio = <&gpio TEGRA_GPIO(V, 1)
GPIO_ACTIVE_LOW>;
}; };
usb-phy@c5004000 { usb-phy@c5004000 {
status = "okay"; status = "okay";
nvidia,phy-reset-gpio = <&gpio 169 1>; /* gpio PV1, active low */ nvidia,phy-reset-gpio = <&gpio TEGRA_GPIO(V, 1)
GPIO_ACTIVE_LOW>;
}; };
usb@c5008000 { usb@c5008000 {
...@@ -529,16 +532,16 @@ usb-phy@c5008000 { ...@@ -529,16 +532,16 @@ usb-phy@c5008000 {
sdhci@c8000000 { sdhci@c8000000 {
status = "okay"; status = "okay";
power-gpios = <&gpio 86 0>; /* gpio PK6 */ power-gpios = <&gpio TEGRA_GPIO(K, 6) GPIO_ACTIVE_HIGH>;
bus-width = <4>; bus-width = <4>;
keep-power-in-suspend; keep-power-in-suspend;
}; };
sdhci@c8000400 { sdhci@c8000400 {
status = "okay"; status = "okay";
cd-gpios = <&gpio 69 1>; /* gpio PI5 */ cd-gpios = <&gpio TEGRA_GPIO(I, 5) GPIO_ACTIVE_LOW>;
wp-gpios = <&gpio 57 0>; /* gpio PH1 */ wp-gpios = <&gpio TEGRA_GPIO(H, 1) GPIO_ACTIVE_HIGH>;
power-gpios = <&gpio 70 0>; /* gpio PI6 */ power-gpios = <&gpio TEGRA_GPIO(I, 6) GPIO_ACTIVE_HIGH>;
bus-width = <4>; bus-width = <4>;
}; };
...@@ -566,7 +569,7 @@ gpio-keys { ...@@ -566,7 +569,7 @@ gpio-keys {
power { power {
label = "Power"; label = "Power";
gpios = <&gpio 170 1>; /* gpio PV2, active low */ gpios = <&gpio TEGRA_GPIO(V, 2) GPIO_ACTIVE_LOW>;
linux,code = <116>; /* KEY_POWER */ linux,code = <116>; /* KEY_POWER */
gpio-key,wakeup; gpio-key,wakeup;
}; };
...@@ -592,7 +595,7 @@ regulator@1 { ...@@ -592,7 +595,7 @@ regulator@1 {
regulator-name = "vdd_1v5"; regulator-name = "vdd_1v5";
regulator-min-microvolt = <1500000>; regulator-min-microvolt = <1500000>;
regulator-max-microvolt = <1500000>; regulator-max-microvolt = <1500000>;
gpio = <&pmic 0 0>; gpio = <&pmic 0 GPIO_ACTIVE_HIGH>;
}; };
regulator@2 { regulator@2 {
...@@ -601,7 +604,7 @@ regulator@2 { ...@@ -601,7 +604,7 @@ regulator@2 {
regulator-name = "vdd_1v2"; regulator-name = "vdd_1v2";
regulator-min-microvolt = <1200000>; regulator-min-microvolt = <1200000>;
regulator-max-microvolt = <1200000>; regulator-max-microvolt = <1200000>;
gpio = <&pmic 1 0>; gpio = <&pmic 1 GPIO_ACTIVE_HIGH>;
enable-active-high; enable-active-high;
}; };
...@@ -611,7 +614,7 @@ regulator@3 { ...@@ -611,7 +614,7 @@ regulator@3 {
regulator-name = "vdd_pnl"; regulator-name = "vdd_pnl";
regulator-min-microvolt = <2800000>; regulator-min-microvolt = <2800000>;
regulator-max-microvolt = <2800000>; regulator-max-microvolt = <2800000>;
gpio = <&gpio 22 0>; /* gpio PC6 */ gpio = <&gpio TEGRA_GPIO(C, 6) GPIO_ACTIVE_HIGH>;
enable-active-high; enable-active-high;
}; };
...@@ -621,7 +624,7 @@ regulator@4 { ...@@ -621,7 +624,7 @@ regulator@4 {
regulator-name = "vdd_bl"; regulator-name = "vdd_bl";
regulator-min-microvolt = <2800000>; regulator-min-microvolt = <2800000>;
regulator-max-microvolt = <2800000>; regulator-max-microvolt = <2800000>;
gpio = <&gpio 176 0>; /* gpio PW0 */ gpio = <&gpio TEGRA_GPIO(W, 0) GPIO_ACTIVE_HIGH>;
enable-active-high; enable-active-high;
}; };
}; };
...@@ -644,10 +647,12 @@ sound { ...@@ -644,10 +647,12 @@ sound {
nvidia,i2s-controller = <&tegra_i2s1>; nvidia,i2s-controller = <&tegra_i2s1>;
nvidia,audio-codec = <&wm8903>; nvidia,audio-codec = <&wm8903>;
nvidia,spkr-en-gpios = <&wm8903 2 0>; nvidia,spkr-en-gpios = <&wm8903 2 GPIO_ACTIVE_HIGH>;
nvidia,hp-det-gpios = <&gpio 178 0>; /* gpio PW2 */ nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2) GPIO_ACTIVE_HIGH>;
nvidia,int-mic-en-gpios = <&gpio 184 0>; /* gpio PX0 */ nvidia,int-mic-en-gpios = <&gpio TEGRA_GPIO(X, 0)
nvidia,ext-mic-en-gpios = <&gpio 185 0>; /* gpio PX1 */ GPIO_ACTIVE_HIGH>;
nvidia,ext-mic-en-gpios = <&gpio TEGRA_GPIO(X, 1)
GPIO_ACTIVE_HIGH>;
clocks = <&tegra_car 112>, <&tegra_car 113>, <&tegra_car 94>; clocks = <&tegra_car 112>, <&tegra_car 113>, <&tegra_car 94>;
clock-names = "pll_a", "pll_a_out0", "mclk"; clock-names = "pll_a", "pll_a_out0", "mclk";
......
...@@ -18,7 +18,8 @@ hdmi { ...@@ -18,7 +18,8 @@ hdmi {
pll-supply = <&hdmi_pll_reg>; pll-supply = <&hdmi_pll_reg>;
nvidia,ddc-i2c-bus = <&hdmi_ddc>; nvidia,ddc-i2c-bus = <&hdmi_ddc>;
nvidia,hpd-gpio = <&gpio 111 0>; /* PN7 */ nvidia,hpd-gpio = <&gpio TEGRA_GPIO(N, 7)
GPIO_ACTIVE_HIGH>;
}; };
}; };
...@@ -508,7 +509,7 @@ pmc { ...@@ -508,7 +509,7 @@ pmc {
usb@c5000000 { usb@c5000000 {
status = "okay"; status = "okay";
nvidia,vbus-gpio = <&tca6416 0 0>; /* GPIO_PMU0 */ nvidia,vbus-gpio = <&tca6416 0 GPIO_ACTIVE_HIGH>;
}; };
usb-phy@c5000000 { usb-phy@c5000000 {
...@@ -518,7 +519,7 @@ usb-phy@c5000000 { ...@@ -518,7 +519,7 @@ usb-phy@c5000000 {
usb@c5008000 { usb@c5008000 {
status = "okay"; status = "okay";
nvidia,vbus-gpio = <&tca6416 1 0>; /* GPIO_PMU1 */ nvidia,vbus-gpio = <&tca6416 1 GPIO_ACTIVE_HIGH>;
}; };
usb-phy@c5008000 { usb-phy@c5008000 {
...@@ -528,8 +529,8 @@ usb-phy@c5008000 { ...@@ -528,8 +529,8 @@ usb-phy@c5008000 {
sdhci@c8000400 { sdhci@c8000400 {
status = "okay"; status = "okay";
cd-gpios = <&gpio 69 1>; /* gpio PI5 */ cd-gpios = <&gpio TEGRA_GPIO(I, 5) GPIO_ACTIVE_LOW>;
wp-gpios = <&gpio 173 0>; /* gpio PV5 */ wp-gpios = <&gpio TEGRA_GPIO(V, 5) GPIO_ACTIVE_HIGH>;
bus-width = <8>; bus-width = <8>;
}; };
......
#include <dt-bindings/gpio/tegra-gpio.h>
#include "skeleton.dtsi" #include "skeleton.dtsi"
/ { / {
......
...@@ -264,9 +264,9 @@ pmc { ...@@ -264,9 +264,9 @@ pmc {
sdhci@78000000 { sdhci@78000000 {
status = "okay"; status = "okay";
cd-gpios = <&gpio 69 1>; /* gpio PI5 */ cd-gpios = <&gpio TEGRA_GPIO(I, 5) GPIO_ACTIVE_LOW>;
wp-gpios = <&gpio 155 0>; /* gpio PT3 */ wp-gpios = <&gpio TEGRA_GPIO(T, 3) GPIO_ACTIVE_HIGH>;
power-gpios = <&gpio 31 0>; /* gpio PD7 */ power-gpios = <&gpio TEGRA_GPIO(D, 7) GPIO_ACTIVE_HIGH>;
bus-width = <4>; bus-width = <4>;
}; };
...@@ -312,7 +312,7 @@ chargepump_5v_reg: regulator@1 { ...@@ -312,7 +312,7 @@ chargepump_5v_reg: regulator@1 {
regulator-boot-on; regulator-boot-on;
regulator-always-on; regulator-always-on;
enable-active-high; enable-active-high;
gpio = <&pmic 0 0>; /* PMIC TPS65911 GPIO0 */ gpio = <&pmic 0 GPIO_ACTIVE_HIGH>;
}; };
ddr_reg: regulator@2 { ddr_reg: regulator@2 {
...@@ -324,7 +324,7 @@ ddr_reg: regulator@2 { ...@@ -324,7 +324,7 @@ ddr_reg: regulator@2 {
regulator-always-on; regulator-always-on;
regulator-boot-on; regulator-boot-on;
enable-active-high; enable-active-high;
gpio = <&pmic 7 0>; /* PMIC TPS65911 GPIO7 */ gpio = <&pmic 7 GPIO_ACTIVE_HIGH>;
vin-supply = <&vdd_5v_in_reg>; vin-supply = <&vdd_5v_in_reg>;
}; };
...@@ -337,7 +337,7 @@ vdd_5v_sata_reg: regulator@3 { ...@@ -337,7 +337,7 @@ vdd_5v_sata_reg: regulator@3 {
regulator-always-on; regulator-always-on;
regulator-boot-on; regulator-boot-on;
enable-active-high; enable-active-high;
gpio = <&gpio 30 0>; /* gpio PD6 */ gpio = <&gpio TEGRA_GPIO(D, 6) GPIO_ACTIVE_HIGH>;
vin-supply = <&vdd_5v_in_reg>; vin-supply = <&vdd_5v_in_reg>;
}; };
...@@ -348,7 +348,7 @@ usb1_vbus_reg: regulator@4 { ...@@ -348,7 +348,7 @@ usb1_vbus_reg: regulator@4 {
regulator-min-microvolt = <5000000>; regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>; regulator-max-microvolt = <5000000>;
enable-active-high; enable-active-high;
gpio = <&gpio 68 0>; /* GPIO PI4 */ gpio = <&gpio TEGRA_GPIO(I, 4) GPIO_ACTIVE_HIGH>;
gpio-open-drain; gpio-open-drain;
vin-supply = <&vdd_5v_in_reg>; vin-supply = <&vdd_5v_in_reg>;
}; };
...@@ -360,7 +360,7 @@ usb3_vbus_reg: regulator@5 { ...@@ -360,7 +360,7 @@ usb3_vbus_reg: regulator@5 {
regulator-min-microvolt = <5000000>; regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>; regulator-max-microvolt = <5000000>;
enable-active-high; enable-active-high;
gpio = <&gpio 63 0>; /* GPIO PH7 */ gpio = <&gpio TEGRA_GPIO(H, 7) GPIO_ACTIVE_HIGH>;
gpio-open-drain; gpio-open-drain;
vin-supply = <&vdd_5v_in_reg>; vin-supply = <&vdd_5v_in_reg>;
}; };
...@@ -374,7 +374,7 @@ sys_3v3_reg: regulator@6 { ...@@ -374,7 +374,7 @@ sys_3v3_reg: regulator@6 {
regulator-always-on; regulator-always-on;
regulator-boot-on; regulator-boot-on;
enable-active-high; enable-active-high;
gpio = <&pmic 6 0>; /* PMIC TPS65911 GPIO6 */ gpio = <&pmic 6 GPIO_ACTIVE_HIGH>;
vin-supply = <&vdd_5v_in_reg>; vin-supply = <&vdd_5v_in_reg>;
}; };
...@@ -387,7 +387,7 @@ sys_3v3_pexs_reg: regulator@7 { ...@@ -387,7 +387,7 @@ sys_3v3_pexs_reg: regulator@7 {
regulator-always-on; regulator-always-on;
regulator-boot-on; regulator-boot-on;
enable-active-high; enable-active-high;
gpio = <&gpio 95 0>; /* gpio PL7 */ gpio = <&gpio TEGRA_GPIO(L, 7) GPIO_ACTIVE_HIGH>;
vin-supply = <&sys_3v3_reg>; vin-supply = <&sys_3v3_reg>;
}; };
}; };
...@@ -397,11 +397,11 @@ gpio-leds { ...@@ -397,11 +397,11 @@ gpio-leds {
gpled1 { gpled1 {
label = "LED1"; /* CR5A1 (blue) */ label = "LED1"; /* CR5A1 (blue) */
gpios = <&gpio 89 0>; /* gpio PL1 */ gpios = <&gpio TEGRA_GPIO(L, 1) GPIO_ACTIVE_HIGH>;
}; };
gpled2 { gpled2 {
label = "LED2"; /* CR4A2 (green) */ label = "LED2"; /* CR4A2 (green) */
gpios = <&gpio 88 0>; /* gpio PL0 */ gpios = <&gpio TEGRA_GPIO(L, 0) GPIO_ACTIVE_HIGH>;
}; };
}; };
}; };
...@@ -22,7 +22,7 @@ ddr_reg: regulator@100 { ...@@ -22,7 +22,7 @@ ddr_reg: regulator@100 {
regulator-always-on; regulator-always-on;
regulator-boot-on; regulator-boot-on;
enable-active-high; enable-active-high;
gpio = <&pmic 6 0>; gpio = <&pmic 6 GPIO_ACTIVE_HIGH>;
}; };
sys_3v3_reg: regulator@101 { sys_3v3_reg: regulator@101 {
...@@ -34,7 +34,7 @@ sys_3v3_reg: regulator@101 { ...@@ -34,7 +34,7 @@ sys_3v3_reg: regulator@101 {
regulator-always-on; regulator-always-on;
regulator-boot-on; regulator-boot-on;
enable-active-high; enable-active-high;
gpio = <&pmic 7 0>; gpio = <&pmic 7 GPIO_ACTIVE_HIGH>;
}; };
usb1_vbus_reg: regulator@102 { usb1_vbus_reg: regulator@102 {
...@@ -44,7 +44,7 @@ usb1_vbus_reg: regulator@102 { ...@@ -44,7 +44,7 @@ usb1_vbus_reg: regulator@102 {
regulator-min-microvolt = <5000000>; regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>; regulator-max-microvolt = <5000000>;
enable-active-high; enable-active-high;
gpio = <&gpio 68 0>; /* GPIO PI4 */ gpio = <&gpio TEGRA_GPIO(I, 4) GPIO_ACTIVE_HIGH>;
gpio-open-drain; gpio-open-drain;
vin-supply = <&vdd_5v0_reg>; vin-supply = <&vdd_5v0_reg>;
}; };
...@@ -56,7 +56,7 @@ usb3_vbus_reg: regulator@103 { ...@@ -56,7 +56,7 @@ usb3_vbus_reg: regulator@103 {
regulator-min-microvolt = <5000000>; regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>; regulator-max-microvolt = <5000000>;
enable-active-high; enable-active-high;
gpio = <&gpio 63 0>; /* GPIO PH7 */ gpio = <&gpio TEGRA_GPIO(H, 7) GPIO_ACTIVE_HIGH>;
gpio-open-drain; gpio-open-drain;
vin-supply = <&vdd_5v0_reg>; vin-supply = <&vdd_5v0_reg>;
}; };
...@@ -68,7 +68,7 @@ vdd_5v0_reg: regulator@104 { ...@@ -68,7 +68,7 @@ vdd_5v0_reg: regulator@104 {
regulator-min-microvolt = <5000000>; regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>; regulator-max-microvolt = <5000000>;
enable-active-high; enable-active-high;
gpio = <&pmic 2 0>; gpio = <&pmic 2 GPIO_ACTIVE_HIGH>;
}; };
vdd_bl_reg: regulator@105 { vdd_bl_reg: regulator@105 {
...@@ -80,13 +80,13 @@ vdd_bl_reg: regulator@105 { ...@@ -80,13 +80,13 @@ vdd_bl_reg: regulator@105 {
regulator-always-on; regulator-always-on;
regulator-boot-on; regulator-boot-on;
enable-active-high; enable-active-high;
gpio = <&gpio 83 0>; /* GPIO PK3 */ gpio = <&gpio TEGRA_GPIO(K, 3) GPIO_ACTIVE_HIGH>;
}; };
}; };
sdhci@78000400 { sdhci@78000400 {
status = "okay"; status = "okay";
power-gpios = <&gpio 28 0>; /* gpio PD4 */ power-gpios = <&gpio TEGRA_GPIO(D, 4) GPIO_ACTIVE_HIGH>;
bus-width = <4>; bus-width = <4>;
keep-power-in-suspend; keep-power-in-suspend;
}; };
......
...@@ -22,7 +22,7 @@ ddr_reg: regulator@100 { ...@@ -22,7 +22,7 @@ ddr_reg: regulator@100 {
regulator-always-on; regulator-always-on;
regulator-boot-on; regulator-boot-on;
enable-active-high; enable-active-high;
gpio = <&pmic 7 0>; gpio = <&pmic 7 GPIO_ACTIVE_HIGH>;
}; };
sys_3v3_reg: regulator@101 { sys_3v3_reg: regulator@101 {
...@@ -34,7 +34,7 @@ sys_3v3_reg: regulator@101 { ...@@ -34,7 +34,7 @@ sys_3v3_reg: regulator@101 {
regulator-always-on; regulator-always-on;
regulator-boot-on; regulator-boot-on;
enable-active-high; enable-active-high;
gpio = <&pmic 6 0>; gpio = <&pmic 6 GPIO_ACTIVE_HIGH>;
}; };
usb1_vbus_reg: regulator@102 { usb1_vbus_reg: regulator@102 {
...@@ -44,7 +44,7 @@ usb1_vbus_reg: regulator@102 { ...@@ -44,7 +44,7 @@ usb1_vbus_reg: regulator@102 {
regulator-min-microvolt = <5000000>; regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>; regulator-max-microvolt = <5000000>;
enable-active-high; enable-active-high;
gpio = <&gpio 238 0>; /* GPIO PDD6 */ gpio = <&gpio TEGRA_GPIO(DD, 6) GPIO_ACTIVE_HIGH>;
gpio-open-drain; gpio-open-drain;
vin-supply = <&vdd_5v0_reg>; vin-supply = <&vdd_5v0_reg>;
}; };
...@@ -56,7 +56,7 @@ usb3_vbus_reg: regulator@103 { ...@@ -56,7 +56,7 @@ usb3_vbus_reg: regulator@103 {
regulator-min-microvolt = <5000000>; regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>; regulator-max-microvolt = <5000000>;
enable-active-high; enable-active-high;
gpio = <&gpio 236 0>; /* GPIO PDD4 */ gpio = <&gpio TEGRA_GPIO(DD, 4) GPIO_ACTIVE_HIGH>;
gpio-open-drain; gpio-open-drain;
vin-supply = <&vdd_5v0_reg>; vin-supply = <&vdd_5v0_reg>;
}; };
...@@ -68,7 +68,7 @@ vdd_5v0_reg: regulator@104 { ...@@ -68,7 +68,7 @@ vdd_5v0_reg: regulator@104 {
regulator-min-microvolt = <5000000>; regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>; regulator-max-microvolt = <5000000>;
enable-active-high; enable-active-high;
gpio = <&pmic 8 0>; gpio = <&pmic 8 GPIO_ACTIVE_HIGH>;
}; };
vdd_bl_reg: regulator@105 { vdd_bl_reg: regulator@105 {
...@@ -80,7 +80,7 @@ vdd_bl_reg: regulator@105 { ...@@ -80,7 +80,7 @@ vdd_bl_reg: regulator@105 {
regulator-always-on; regulator-always-on;
regulator-boot-on; regulator-boot-on;
enable-active-high; enable-active-high;
gpio = <&gpio 234 0>; /* GPIO PDD2 */ gpio = <&gpio TEGRA_GPIO(DD, 2) GPIO_ACTIVE_HIGH>;
}; };
vdd_bl2_reg: regulator@106 { vdd_bl2_reg: regulator@106 {
...@@ -92,13 +92,13 @@ vdd_bl2_reg: regulator@106 { ...@@ -92,13 +92,13 @@ vdd_bl2_reg: regulator@106 {
regulator-always-on; regulator-always-on;
regulator-boot-on; regulator-boot-on;
enable-active-high; enable-active-high;
gpio = <&gpio 232 0>; /* GPIO PDD0 */ gpio = <&gpio TEGRA_GPIO(DD, 0) GPIO_ACTIVE_HIGH>;
}; };
}; };
sdhci@78000400 { sdhci@78000400 {
status = "okay"; status = "okay";
power-gpios = <&gpio 27 0>; /* gpio PD3 */ power-gpios = <&gpio TEGRA_GPIO(D, 3) GPIO_ACTIVE_HIGH>;
bus-width = <4>; bus-width = <4>;
keep-power-in-suspend; keep-power-in-suspend;
}; };
......
...@@ -146,7 +146,7 @@ isl29028@44 { ...@@ -146,7 +146,7 @@ isl29028@44 {
compatible = "isil,isl29028"; compatible = "isil,isl29028";
reg = <0x44>; reg = <0x44>;
interrupt-parent = <&gpio>; interrupt-parent = <&gpio>;
interrupts = <88 0x04>; /*gpio PL0 */ interrupts = <TEGRA_GPIO(L, 0) 0x04>;
}; };
}; };
...@@ -163,7 +163,7 @@ wm8903: wm8903@1a { ...@@ -163,7 +163,7 @@ wm8903: wm8903@1a {
compatible = "wlf,wm8903"; compatible = "wlf,wm8903";
reg = <0x1a>; reg = <0x1a>;
interrupt-parent = <&gpio>; interrupt-parent = <&gpio>;
interrupts = <179 0x04>; /* gpio PW3 */ interrupts = <TEGRA_GPIO(W, 3) 0x04>;
gpio-controller; gpio-controller;
#gpio-cells = <2>; #gpio-cells = <2>;
...@@ -318,9 +318,9 @@ pmc { ...@@ -318,9 +318,9 @@ pmc {
sdhci@78000000 { sdhci@78000000 {
status = "okay"; status = "okay";
cd-gpios = <&gpio 69 1>; /* gpio PI5 */ cd-gpios = <&gpio TEGRA_GPIO(I, 5) GPIO_ACTIVE_LOW>;
wp-gpios = <&gpio 155 0>; /* gpio PT3 */ wp-gpios = <&gpio TEGRA_GPIO(T, 3) GPIO_ACTIVE_HIGH>;
power-gpios = <&gpio 31 0>; /* gpio PD7 */ power-gpios = <&gpio TEGRA_GPIO(D, 7) GPIO_ACTIVE_HIGH>;
bus-width = <4>; bus-width = <4>;
}; };
...@@ -364,7 +364,7 @@ cam_1v8_reg: regulator@1 { ...@@ -364,7 +364,7 @@ cam_1v8_reg: regulator@1 {
regulator-min-microvolt = <1800000>; regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>; regulator-max-microvolt = <1800000>;
enable-active-high; enable-active-high;
gpio = <&gpio 220 0>; /* gpio PBB4 */ gpio = <&gpio TEGRA_GPIO(BB, 4) GPIO_ACTIVE_HIGH>;
vin-supply = <&vio_reg>; vin-supply = <&vio_reg>;
}; };
...@@ -377,7 +377,7 @@ cp_5v_reg: regulator@2 { ...@@ -377,7 +377,7 @@ cp_5v_reg: regulator@2 {
regulator-boot-on; regulator-boot-on;
regulator-always-on; regulator-always-on;
enable-active-high; enable-active-high;
gpio = <&pmic 0 0>; /* PMIC TPS65911 GPIO0 */ gpio = <&pmic 0 GPIO_ACTIVE_HIGH>;
}; };
emmc_3v3_reg: regulator@3 { emmc_3v3_reg: regulator@3 {
...@@ -389,7 +389,7 @@ emmc_3v3_reg: regulator@3 { ...@@ -389,7 +389,7 @@ emmc_3v3_reg: regulator@3 {
regulator-always-on; regulator-always-on;
regulator-boot-on; regulator-boot-on;
enable-active-high; enable-active-high;
gpio = <&gpio 25 0>; /* gpio PD1 */ gpio = <&gpio TEGRA_GPIO(D, 1) GPIO_ACTIVE_HIGH>;
vin-supply = <&sys_3v3_reg>; vin-supply = <&sys_3v3_reg>;
}; };
...@@ -400,7 +400,7 @@ modem_3v3_reg: regulator@4 { ...@@ -400,7 +400,7 @@ modem_3v3_reg: regulator@4 {
regulator-min-microvolt = <3300000>; regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>; regulator-max-microvolt = <3300000>;
enable-active-high; enable-active-high;
gpio = <&gpio 30 0>; /* gpio PD6 */ gpio = <&gpio TEGRA_GPIO(D, 6) GPIO_ACTIVE_HIGH>;
}; };
pex_hvdd_3v3_reg: regulator@5 { pex_hvdd_3v3_reg: regulator@5 {
...@@ -410,7 +410,7 @@ pex_hvdd_3v3_reg: regulator@5 { ...@@ -410,7 +410,7 @@ pex_hvdd_3v3_reg: regulator@5 {
regulator-min-microvolt = <3300000>; regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>; regulator-max-microvolt = <3300000>;
enable-active-high; enable-active-high;
gpio = <&gpio 95 0>; /* gpio PL7 */ gpio = <&gpio TEGRA_GPIO(L, 7) GPIO_ACTIVE_HIGH>;
vin-supply = <&sys_3v3_reg>; vin-supply = <&sys_3v3_reg>;
}; };
...@@ -421,7 +421,7 @@ vdd_cam1_ldo_reg: regulator@6 { ...@@ -421,7 +421,7 @@ vdd_cam1_ldo_reg: regulator@6 {
regulator-min-microvolt = <2800000>; regulator-min-microvolt = <2800000>;
regulator-max-microvolt = <2800000>; regulator-max-microvolt = <2800000>;
enable-active-high; enable-active-high;
gpio = <&gpio 142 0>; /* gpio PR6 */ gpio = <&gpio TEGRA_GPIO(R, 6) GPIO_ACTIVE_HIGH>;
vin-supply = <&sys_3v3_reg>; vin-supply = <&sys_3v3_reg>;
}; };
...@@ -432,7 +432,7 @@ vdd_cam2_ldo_reg: regulator@7 { ...@@ -432,7 +432,7 @@ vdd_cam2_ldo_reg: regulator@7 {
regulator-min-microvolt = <2800000>; regulator-min-microvolt = <2800000>;
regulator-max-microvolt = <2800000>; regulator-max-microvolt = <2800000>;
enable-active-high; enable-active-high;
gpio = <&gpio 143 0>; /* gpio PR7 */ gpio = <&gpio TEGRA_GPIO(R, 7) GPIO_ACTIVE_HIGH>;
vin-supply = <&sys_3v3_reg>; vin-supply = <&sys_3v3_reg>;
}; };
...@@ -443,7 +443,7 @@ vdd_cam3_ldo_reg: regulator@8 { ...@@ -443,7 +443,7 @@ vdd_cam3_ldo_reg: regulator@8 {
regulator-min-microvolt = <3300000>; regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>; regulator-max-microvolt = <3300000>;
enable-active-high; enable-active-high;
gpio = <&gpio 144 0>; /* gpio PS0 */ gpio = <&gpio TEGRA_GPIO(S, 0) GPIO_ACTIVE_HIGH>;
vin-supply = <&sys_3v3_reg>; vin-supply = <&sys_3v3_reg>;
}; };
...@@ -456,7 +456,7 @@ vdd_com_reg: regulator@9 { ...@@ -456,7 +456,7 @@ vdd_com_reg: regulator@9 {
regulator-always-on; regulator-always-on;
regulator-boot-on; regulator-boot-on;
enable-active-high; enable-active-high;
gpio = <&gpio 24 0>; /* gpio PD0 */ gpio = <&gpio TEGRA_GPIO(D, 0) GPIO_ACTIVE_HIGH>;
vin-supply = <&sys_3v3_reg>; vin-supply = <&sys_3v3_reg>;
}; };
...@@ -467,7 +467,7 @@ vdd_fuse_3v3_reg: regulator@10 { ...@@ -467,7 +467,7 @@ vdd_fuse_3v3_reg: regulator@10 {
regulator-min-microvolt = <3300000>; regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>; regulator-max-microvolt = <3300000>;
enable-active-high; enable-active-high;
gpio = <&gpio 94 0>; /* gpio PL6 */ gpio = <&gpio TEGRA_GPIO(L, 6) GPIO_ACTIVE_HIGH>;
vin-supply = <&sys_3v3_reg>; vin-supply = <&sys_3v3_reg>;
}; };
...@@ -480,7 +480,7 @@ vdd_pnl1_reg: regulator@11 { ...@@ -480,7 +480,7 @@ vdd_pnl1_reg: regulator@11 {
regulator-always-on; regulator-always-on;
regulator-boot-on; regulator-boot-on;
enable-active-high; enable-active-high;
gpio = <&gpio 92 0>; /* gpio PL4 */ gpio = <&gpio TEGRA_GPIO(L, 4) GPIO_ACTIVE_HIGH>;
vin-supply = <&sys_3v3_reg>; vin-supply = <&sys_3v3_reg>;
}; };
...@@ -491,7 +491,7 @@ vdd_vid_reg: regulator@12 { ...@@ -491,7 +491,7 @@ vdd_vid_reg: regulator@12 {
regulator-min-microvolt = <5000000>; regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>; regulator-max-microvolt = <5000000>;
enable-active-high; enable-active-high;
gpio = <&gpio 152 0>; /* GPIO PT0 */ gpio = <&gpio TEGRA_GPIO(T, 0) GPIO_ACTIVE_HIGH>;
gpio-open-drain; gpio-open-drain;
vin-supply = <&vdd_5v0_reg>; vin-supply = <&vdd_5v0_reg>;
}; };
...@@ -515,8 +515,9 @@ sound { ...@@ -515,8 +515,9 @@ sound {
nvidia,i2s-controller = <&tegra_i2s1>; nvidia,i2s-controller = <&tegra_i2s1>;
nvidia,audio-codec = <&wm8903>; nvidia,audio-codec = <&wm8903>;
nvidia,spkr-en-gpios = <&wm8903 2 0>; nvidia,spkr-en-gpios = <&wm8903 2 GPIO_ACTIVE_HIGH>;
nvidia,hp-det-gpios = <&gpio 178 0>; /* gpio PW2 */ nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2)
GPIO_ACTIVE_HIGH>;
clocks = <&tegra_car 184>, <&tegra_car 185>, <&tegra_car 120>; clocks = <&tegra_car 184>, <&tegra_car 185>, <&tegra_car 120>;
clock-names = "pll_a", "pll_a_out0", "mclk"; clock-names = "pll_a", "pll_a_out0", "mclk";
......
#include <dt-bindings/gpio/tegra-gpio.h>
#include "skeleton.dtsi" #include "skeleton.dtsi"
/ { / {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment