59 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // SPDX-License-Identifier: (GPL-2.0-or-later OR MIT)
 | |
| /*
 | |
|  * Copyright (c) 2018-2023 TQ-Systems GmbH <linux@ew.tq-group.com>,
 | |
|  * D-82229 Seefeld, Germany.
 | |
|  * Author: Gregor Herburger, Timo Herbrecher
 | |
|  *
 | |
|  * Device Tree Include file for TQMLs10xxA SoM of TQ
 | |
|  */
 | |
| 
 | |
| / {
 | |
| 	reg_vcc3v3: regulator-vcc3v3 {
 | |
| 		compatible = "regulator-fixed";
 | |
| 		regulator-name = "VCC3V3";
 | |
| 		regulator-min-microvolt = <3300000>;
 | |
| 		regulator-max-microvolt = <3300000>;
 | |
| 		regulator-always-on;
 | |
| 	};
 | |
| };
 | |
| 
 | |
| &i2c0 {
 | |
| 	status = "okay";
 | |
| 
 | |
| 	temperature-sensor@18 {
 | |
| 		compatible = "nxp,se97b", "jedec,jc-42.4-temp";
 | |
| 		reg = <0x18>;
 | |
| 	};
 | |
| 
 | |
| 	eeprom@50 {
 | |
| 		compatible = "nxp,se97b", "atmel,24c02";
 | |
| 		reg = <0x50>;
 | |
| 		pagesize = <16>;
 | |
| 		vcc-supply = <®_vcc3v3>;
 | |
| 		read-only;
 | |
| 	};
 | |
| 
 | |
| 	rtc@51 {
 | |
| 		compatible = "nxp,pcf85063a";
 | |
| 		reg = <0x51>;
 | |
| 	};
 | |
| 
 | |
| 	eeprom@57 {
 | |
| 		compatible = "atmel,24c64";
 | |
| 		reg = <0x57>;
 | |
| 		pagesize = <32>;
 | |
| 		vcc-supply = <®_vcc3v3>;
 | |
| 	};
 | |
| };
 | |
| 
 | |
| &esdhc {
 | |
| 	/* eSDHC or eMMC: set by bootloader */
 | |
| 	non-removable;
 | |
| 	disable-wp;
 | |
| 	mmc-hs200-1_8v;
 | |
| 	sd-uhs-sdr104;
 | |
| 	sd-uhs-sdr50;
 | |
| 	sd-uhs-sdr25;
 | |
| 	sd-uhs-sdr12;
 | |
| };
 |