blob: 4f41c74384b2c53651d630f075a4d254acf2122c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Thierry Reding175f16f2012-09-20 17:06:09 +02002/dts-v1/;
3
Stephen Warren1bd0bd42012-10-17 16:38:21 -06004#include "tegra20-tamonten.dtsi"
Thierry Reding175f16f2012-09-20 17:06:09 +02005
6/ {
7 model = "Avionic Design Tamonten Evaluation Carrier";
8 compatible = "ad,tec", "ad,tamonten", "nvidia,tegra20";
9
Stephen Warren58ecb232013-11-25 17:53:16 -070010 host1x@50000000 {
11 hdmi@54280000 {
Thierry Redingcab2ed62012-11-16 16:56:52 +010012 status = "okay";
13 };
14 };
15
Thierry Reding175f16f2012-09-20 17:06:09 +020016 i2c@7000c000 {
Thierry Reding175f16f2012-09-20 17:06:09 +020017 wm8903: wm8903@1a {
18 compatible = "wlf,wm8903";
19 reg = <0x1a>;
20 interrupt-parent = <&gpio>;
Stephen Warren6cecf912013-02-13 12:51:51 -070021 interrupts = <TEGRA_GPIO(X, 3) IRQ_TYPE_LEVEL_HIGH>;
Thierry Reding175f16f2012-09-20 17:06:09 +020022
23 gpio-controller;
24 #gpio-cells = <2>;
25
26 micdet-cfg = <0>;
27 micdet-delay = <100>;
28 gpio-cfg = <0xffffffff
29 0xffffffff
30 0
31 0xffffffff
32 0xffffffff>;
33 };
34 };
35
Rob Herring508d6902017-03-21 21:03:06 -050036 pcie@80003000 {
Thierry Reding237bcad2013-08-09 16:49:21 +020037 status = "okay";
38
39 pci@1,0 {
40 status = "okay";
41 };
42 };
43
Thierry Reding175f16f2012-09-20 17:06:09 +020044 sound {
45 compatible = "ad,tegra-audio-wm8903-tec",
46 "nvidia,tegra-audio-wm8903";
47 nvidia,model = "Avionic Design TEC";
48
49 nvidia,audio-routing =
50 "Headphone Jack", "HPOUTR",
51 "Headphone Jack", "HPOUTL",
52 "Int Spk", "ROP",
53 "Int Spk", "RON",
54 "Int Spk", "LOP",
55 "Int Spk", "LON",
56 "Mic Jack", "MICBIAS",
57 "IN1L", "Mic Jack";
58
59 nvidia,i2s-controller = <&tegra_i2s1>;
60 nvidia,audio-codec = <&wm8903>;
61
Stephen Warren3325f1b2013-02-12 17:25:15 -070062 nvidia,spkr-en-gpios = <&wm8903 2 GPIO_ACTIVE_HIGH>;
63 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2)
Dmitry Osipenko5f45da72021-05-10 23:25:55 +030064 GPIO_ACTIVE_LOW>;
Stephen Warrenf9cd2b32013-03-26 16:45:52 -060065
Hiroshi Doyu885a8cf2013-05-22 19:45:32 +030066 clocks = <&tegra_car TEGRA20_CLK_PLL_A>,
67 <&tegra_car TEGRA20_CLK_PLL_A_OUT0>,
68 <&tegra_car TEGRA20_CLK_CDEV1>;
Stephen Warrenf9cd2b32013-03-26 16:45:52 -060069 clock-names = "pll_a", "pll_a_out0", "mclk";
Thierry Reding175f16f2012-09-20 17:06:09 +020070 };
Alban Bedel23e63342014-06-19 15:25:49 +020071
Dmitry Osipenkoc6291962021-12-12 00:14:04 +030072 vcc_24v_reg: regulator-24v {
Thierry Reding1cf17aa2020-06-11 19:01:32 +020073 compatible = "regulator-fixed";
74 regulator-name = "vcc_24v";
75 regulator-min-microvolt = <24000000>;
76 regulator-max-microvolt = <24000000>;
77 regulator-always-on;
78 };
Alban Bedel23e63342014-06-19 15:25:49 +020079
Dmitry Osipenkoc6291962021-12-12 00:14:04 +030080 vdd_5v0_reg: regulator-5v0 {
Thierry Reding1cf17aa2020-06-11 19:01:32 +020081 compatible = "regulator-fixed";
82 regulator-name = "vdd_5v0";
83 vin-supply = <&vcc_24v_reg>;
84 regulator-min-microvolt = <5000000>;
85 regulator-max-microvolt = <5000000>;
86 regulator-always-on;
87 };
Alban Bedel23e63342014-06-19 15:25:49 +020088
Dmitry Osipenkoc6291962021-12-12 00:14:04 +030089 vdd_3v3_reg: regulator-3v3 {
Thierry Reding1cf17aa2020-06-11 19:01:32 +020090 compatible = "regulator-fixed";
91 regulator-name = "vdd_3v3";
92 vin-supply = <&vcc_24v_reg>;
93 regulator-min-microvolt = <3300000>;
94 regulator-max-microvolt = <3300000>;
95 regulator-always-on;
96 };
Alban Bedel23e63342014-06-19 15:25:49 +020097
Dmitry Osipenkoc6291962021-12-12 00:14:04 +030098 vdd_1v8_reg: regulator-1v8 {
Thierry Reding1cf17aa2020-06-11 19:01:32 +020099 compatible = "regulator-fixed";
100 regulator-name = "vdd_1v8";
101 vin-supply = <&vdd_3v3_reg>;
102 regulator-min-microvolt = <1800000>;
103 regulator-max-microvolt = <1800000>;
104 regulator-always-on;
Alban Bedel23e63342014-06-19 15:25:49 +0200105 };
Thierry Reding175f16f2012-09-20 17:06:09 +0200106};