mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	Add WDT reboot bindings on DH i.MX6 DHSOM to permit the platform to reboot via WDT in U-Boot. These are custom U-Boot bindings, hence they are placed in -u-boot.dtsi . Reviewed-by: Fabio Estevam <festevam@denx.de> Signed-off-by: Marek Vasut <marex@denx.de>
		
			
				
	
	
		
			38 lines
		
	
	
		
			530 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			530 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
// SPDX-License-Identifier: (GPL-2.0+)
 | 
						|
/*
 | 
						|
 * Copyright (C) 2020 Harald Seiler <hws@denx.de>
 | 
						|
 * Copyright (C) 2022 Philip Oberfichtner <pro@denx.de>
 | 
						|
 */
 | 
						|
 | 
						|
/ {
 | 
						|
	aliases {
 | 
						|
		eeprom0 = &eeprom0;
 | 
						|
	};
 | 
						|
 | 
						|
	wdt-reboot {
 | 
						|
		compatible = "wdt-reboot";
 | 
						|
		wdt = <&wdog1>;
 | 
						|
		bootph-pre-ram;
 | 
						|
	};
 | 
						|
};
 | 
						|
 | 
						|
&fec {
 | 
						|
	phy-reset-duration = <1>;
 | 
						|
	phy-reset-post-delay = <10>;
 | 
						|
	phy-supply = <®_eth_vio>;
 | 
						|
};
 | 
						|
 | 
						|
&i2c3 {
 | 
						|
	eeprom0: eeprom@50 {
 | 
						|
	};
 | 
						|
};
 | 
						|
 | 
						|
®_usb_otg_vbus {
 | 
						|
	gpio = <&gpio3 31 GPIO_ACTIVE_HIGH>;
 | 
						|
	enable-active-high;
 | 
						|
};
 | 
						|
 | 
						|
&wdog1 {
 | 
						|
	bootph-pre-ram;
 | 
						|
};
 |