upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
749 B
52 lines
749 B
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2016 Marek Vasut <marex@denx.de>
|
|
*/
|
|
|
|
/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>;
|
|
};
|
|
|