tegra20-iris-512.dts 1.6 KB
Newer Older
1 2
/dts-v1/;

3
#include "tegra20-colibri-512.dtsi"
4 5 6 7 8

/ {
	model = "Toradex Colibri T20 512MB on Iris";
	compatible = "toradex,iris", "toradex,colibri_t20-512", "nvidia,tegra20";

9 10 11 12 13
	aliases {
		serial0 = &uarta;
		serial1 = &uartd;
	};

14 15
	host1x@50000000 {
		hdmi@54280000 {
16 17 18 19
			status = "okay";
		};
	};

20
	pinmux@70000014 {
21 22
		state_default: pinmux {
			hdint {
23
				nvidia,tristate = <TEGRA_PIN_DISABLE>;
24 25 26
			};

			i2cddc {
27
				nvidia,tristate = <TEGRA_PIN_DISABLE>;
28 29 30
			};

			sdio4 {
31
				nvidia,tristate = <TEGRA_PIN_DISABLE>;
32 33 34
			};

			uarta {
35
				nvidia,tristate = <TEGRA_PIN_DISABLE>;
36 37 38
			};

			uartd {
39
				nvidia,tristate = <TEGRA_PIN_DISABLE>;
40 41 42 43
			};
		};
	};

S
Stephen Warren 已提交
44
	serial@70006000 {
45
		status = "okay";
46 47
	};

S
Stephen Warren 已提交
48
	serial@70006300 {
49
		status = "okay";
50 51
	};

S
Stephen Warren 已提交
52
	i2c_ddc: i2c@7000c400 {
53 54 55
		status = "okay";
	};

S
Stephen Warren 已提交
56
	usb@c5000000 {
57 58 59
		status = "okay";
	};

S
Stephen Warren 已提交
60
	usb-phy@c5000000 {
61 62 63
		status = "okay";
	};

S
Stephen Warren 已提交
64
	usb@c5008000 {
65 66 67
		status = "okay";
	};

S
Stephen Warren 已提交
68
	usb-phy@c5008000 {
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
		status = "okay";
	};

	sdhci@c8000600 {
		status = "okay";
		bus-width = <4>;
		vmmc-supply = <&vcc_sd_reg>;
		vqmmc-supply = <&vcc_sd_reg>;
	};

	regulators {
		regulator@0 {
			compatible = "regulator-fixed";
			reg = <0>;
			regulator-name = "usb_host_vbus";
			regulator-min-microvolt = <5000000>;
			regulator-max-microvolt = <5000000>;
			regulator-boot-on;
			regulator-always-on;
88
			gpio = <&gpio TEGRA_GPIO(W, 2) GPIO_ACTIVE_HIGH>;
89 90 91 92 93 94 95 96 97 98 99 100 101
		};

		vcc_sd_reg: regulator@1 {
			compatible = "regulator-fixed";
			reg = <1>;
			regulator-name = "vcc_sd";
			regulator-min-microvolt = <3300000>;
			regulator-max-microvolt = <3300000>;
			regulator-boot-on;
			regulator-always-on;
		};
	};
};