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