1// SPDX-License-Identifier: GPL-2.0 2 3#include "tegra234.dtsi" 4#include "tegra234-p3701.dtsi" 5 6/ { 7 compatible = "nvidia,p3701-0008", "nvidia,tegra234"; 8 9 bus@0 { 10 i2c@3160000 { 11 status = "okay"; 12 13 eeprom@50 { 14 compatible = "atmel,24c02"; 15 reg = <0x50>; 16 label = "module"; 17 vcc-supply = <&vdd_1v8_hs>; 18 address-width = <8>; 19 pagesize = <8>; 20 size = <256>; 21 read-only; 22 }; 23 }; 24 25 spi@3270000 { 26 status = "okay"; 27 28 flash@0 { 29 compatible = "jedec,spi-nor"; 30 reg = <0>; 31 spi-max-frequency = <102000000>; 32 spi-tx-bus-width = <4>; 33 spi-rx-bus-width = <4>; 34 }; 35 }; 36 37 mmc@3460000 { 38 status = "okay"; 39 bus-width = <8>; 40 non-removable; 41 }; 42 43 i2c@c240000 { 44 status = "okay"; 45 }; 46 47 rtc@c2a0000 { 48 status = "okay"; 49 }; 50 51 pmc@c360000 { 52 nvidia,invert-interrupt; 53 }; 54 }; 55 56 bpmp { 57 i2c { 58 status = "okay"; 59 60 thermal-sensor@4c { 61 status = "okay"; 62 reg = <0x4c>; 63 vcc-supply = <&vdd_1v8_ao>; 64 }; 65 }; 66 67 thermal { 68 status = "okay"; 69 }; 70 }; 71 72 vdd_1v8_ao: regulator-vdd-1v8-ao { 73 compatible = "regulator-fixed"; 74 regulator-name = "VDD_1V8_AO"; 75 regulator-min-microvolt = <1800000>; 76 regulator-max-microvolt = <1800000>; 77 regulator-always-on; 78 }; 79 80 vdd_1v8_hs: regulator-vdd-1v8-hs { 81 compatible = "regulator-fixed"; 82 regulator-name = "VDD_1V8_HS"; 83 regulator-min-microvolt = <1800000>; 84 regulator-max-microvolt = <1800000>; 85 regulator-always-on; 86 }; 87 88 vdd_1v8_ls: regulator-vdd-1v8-ls { 89 compatible = "regulator-fixed"; 90 regulator-name = "VDD_1V8_LS"; 91 regulator-min-microvolt = <1800000>; 92 regulator-max-microvolt = <1800000>; 93 regulator-always-on; 94 }; 95 96 vdd_3v3_ao: regulator-vdd-3v3-ao { 97 compatible = "regulator-fixed"; 98 regulator-name = "vdd-AO-3v3"; 99 regulator-min-microvolt = <3300000>; 100 regulator-max-microvolt = <3300000>; 101 regulator-always-on; 102 }; 103 104 vdd_5v0_sys: regulator-vdd-5v0-sys { 105 compatible = "regulator-fixed"; 106 regulator-name = "VIN_SYS_5V0"; 107 regulator-min-microvolt = <5000000>; 108 regulator-max-microvolt = <5000000>; 109 regulator-always-on; 110 regulator-boot-on; 111 }; 112}; 113