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.
59 lines
873 B
59 lines
873 B
/*
|
|
* Copyright (C) 2015 Purna Chandra Mandal, purna.mandal@microchip.com
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "pic32mzda.dtsi"
|
|
|
|
/ {
|
|
model = "Microchip PIC32MZDASK";
|
|
compatible = "microchip,pic32mzdask", "microchip,pic32mzda";
|
|
|
|
aliases {
|
|
console = &uart2;
|
|
serial0 = &uart2;
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial0:115200n8";
|
|
};
|
|
};
|
|
|
|
&clock {
|
|
microchip,refo2-frequency = <50000000>;
|
|
microchip,refo4-frequency = <25000000>;
|
|
microchip,refo5-frequency = <40000000>;
|
|
status = "okay";
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&pinctrl {
|
|
status = "okay";
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&uart2 {
|
|
status = "okay";
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&sdhci {
|
|
status = "okay";
|
|
};
|
|
|
|
ðernet {
|
|
reset-gpios = <&gpioJ 15 0>;
|
|
status = "okay";
|
|
phy-mode = "rmii";
|
|
phy-handle = <ðernet_phy>;
|
|
ethernet_phy: lan8740_phy@0 {
|
|
reg = <0>;
|
|
};
|
|
};
|
|
|
|
&usb {
|
|
status = "okay";
|
|
}; |