mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
04583c686e
This patch enable network function for ap121 board. Signed-off-by: Wills Wang <wills.wang@live.com> Acked-by: Marek Vasut <marex@denx.de>
48 lines
694 B
Text
48 lines
694 B
Text
/*
|
|
* Copyright (C) 2015-2016 Wills Wang <wills.wang@live.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include "ar933x.dtsi"
|
|
|
|
/ {
|
|
model = "AP121 Reference Board";
|
|
compatible = "qca,ap121", "qca,ar933x";
|
|
|
|
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>;
|
|
};
|
|
};
|
|
|
|
&gmac0 {
|
|
phy-mode = "rmii";
|
|
status = "okay";
|
|
};
|