mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 14:00:19 +00:00 
			
		
		
		
	Enable all the gpio controllers in the device tree of the board bcm968580xref. Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
		
			
				
	
	
		
			64 lines
		
	
	
		
			711 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			711 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0+
 | 
						|
/*
 | 
						|
 * Copyright (C) 2018 Philippe Reynes <philippe.reynes@softathome.com>
 | 
						|
 */
 | 
						|
 | 
						|
/dts-v1/;
 | 
						|
 | 
						|
#include "bcm6858.dtsi"
 | 
						|
 | 
						|
/ {
 | 
						|
	model = "Broadcom bcm68580xref";
 | 
						|
	compatible = "broadcom,bcm68580xref", "brcm,bcm6858";
 | 
						|
 | 
						|
	aliases {
 | 
						|
		serial0 = &uart0;
 | 
						|
	};
 | 
						|
 | 
						|
	chosen {
 | 
						|
		stdout-path = "serial0:115200n8";
 | 
						|
	};
 | 
						|
 | 
						|
	memory {
 | 
						|
		device_type = "memory";
 | 
						|
		reg = <0x0 0x0 0x0 0x20000000>;
 | 
						|
	};
 | 
						|
};
 | 
						|
 | 
						|
&uart0 {
 | 
						|
	u-boot,dm-pre-reloc;
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&gpio0 {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&gpio1 {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&gpio2 {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&gpio3 {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&gpio4 {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&gpio5 {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&gpio6 {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&gpio7 {
 | 
						|
	status = "okay";
 | 
						|
};
 |