mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 06:04:34 +00:00
69af033fb9
The PIC32MZ DA Starter Kit does not need the card detect workaround because the SDCD signal line is connected properly. Disable the workaround in this case. Signed-off-by: John Robertson <john.robertson@simiatec.com>
59 lines
No EOL
891 B
Text
59 lines
No EOL
891 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2015 Purna Chandra Mandal, purna.mandal@microchip.com
|
|
*/
|
|
|
|
/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 {
|
|
microchip,use-sdcd;
|
|
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";
|
|
}; |