mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	Conflicts: arch/arm/dts/armada-385-amc.dts arch/arm/dts/armada-xp-theadorable.dts arch/arm/dts/stm32mp157c-ev1-u-boot.dtsi Signed-off-by: Tom Rini <trini@konsulko.com>
		
			
				
	
	
		
			48 lines
		
	
	
		
			698 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			698 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0+
 | 
						|
/*
 | 
						|
 * Copyright (C) 2015-2016 Wills Wang <wills.wang@live.com>
 | 
						|
 */
 | 
						|
 | 
						|
/dts-v1/;
 | 
						|
#include "qca953x.dtsi"
 | 
						|
 | 
						|
/ {
 | 
						|
	model = "AP143 Reference Board";
 | 
						|
	compatible = "qca,ap143", "qca,qca953x";
 | 
						|
 | 
						|
	aliases {
 | 
						|
		spi0 = &spi0;
 | 
						|
		serial0 = &uart0;
 | 
						|
	};
 | 
						|
 | 
						|
	chosen {
 | 
						|
		stdout-path = "serial0:115200n8";
 | 
						|
	};
 | 
						|
};
 | 
						|
 | 
						|
&xtal {
 | 
						|
	clock-frequency = <25000000>;
 | 
						|
};
 | 
						|
 | 
						|
&uart0 {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&spi0 {
 | 
						|
	spi-max-frequency = <25000000>;
 | 
						|
	status = "okay";
 | 
						|
	spi-flash@0 {
 | 
						|
		#address-cells = <1>;
 | 
						|
		#size-cells = <1>;
 | 
						|
		compatible = "jedec,spi-nor";
 | 
						|
		memory-map = <0x9f000000 0x00800000>;
 | 
						|
		spi-max-frequency = <25000000>;
 | 
						|
		reg = <0>;
 | 
						|
	};
 | 
						|
};
 | 
						|
 | 
						|
&gmac1 {
 | 
						|
	status = "okay";
 | 
						|
	phy-mode = "rgmii";
 | 
						|
};
 |