mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-30 19:48:19 +00:00 
			
		
		
		
	Add support for the TPLink WDR4300 router, which is based on the AR9344 MIPS 74Kc CPU and has 128 MiB of RAM. The USB is supported on this system as well. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Cc: Wills Wang <wills.wang@live.com>
		
			
				
	
	
		
			54 lines
		
	
	
		
			752 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			752 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| /*
 | |
|  * Copyright (C) 2016 Marek Vasut <marex@denx.de>
 | |
|  *
 | |
|  * SPDX-License-Identifier: GPL-2.0+
 | |
|  */
 | |
| 
 | |
| /dts-v1/;
 | |
| #include "ar934x.dtsi"
 | |
| 
 | |
| / {
 | |
| 	model = "TP-Link WDR4300 Board";
 | |
| 	compatible = "tplink,wdr4300", "qca,ar934x";
 | |
| 
 | |
| 	aliases {
 | |
| 		serial0 = &uart0;
 | |
| 		spi0 = &spi0;
 | |
| 	};
 | |
| 
 | |
| 	chosen {
 | |
| 		stdout-path = "serial0:115200n8";
 | |
| 	};
 | |
| };
 | |
| 
 | |
| &ehci0 {
 | |
| 	status = "okay";
 | |
| };
 | |
| 
 | |
| &gmac0 {
 | |
| 	phy-mode = "rgmii";
 | |
| 	status = "okay";
 | |
| };
 | |
| 
 | |
| &spi0 {
 | |
| 	spi-max-frequency = <25000000>;
 | |
| 	status = "okay";
 | |
| 	spi-flash@0 {
 | |
| 		#address-cells = <1>;
 | |
| 		#size-cells = <1>;
 | |
| 		compatible = "spi-flash";
 | |
| 		memory-map = <0x1e000000 0x00800000>;
 | |
| 		spi-max-frequency = <25000000>;
 | |
| 		reg = <0>;
 | |
| 	};
 | |
| };
 | |
| 
 | |
| &uart0 {
 | |
| 	clock-frequency = <40000000>;
 | |
| 	status = "okay";
 | |
| };
 | |
| 
 | |
| &xtal {
 | |
| 	clock-frequency = <40000000>;
 | |
| };
 |