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.
44 lines
645 B
44 lines
645 B
9 years ago
|
/*
|
||
|
* Copyright (C) 2015-2016 Wills Wang <wills.wang@live.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
/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 = "spi-flash";
|
||
|
memory-map = <0x9f000000 0x00800000>;
|
||
|
spi-max-frequency = <25000000>;
|
||
|
reg = <0>;
|
||
|
};
|
||
|
};
|