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.
41 lines
543 B
41 lines
543 B
6 years ago
|
// SPDX-License-Identifier: GPL-2.0+
|
||
|
/*
|
||
|
* Copyright (C) 2018 Philippe Reynes <philippe.reynes@softathome.com>
|
||
|
*/
|
||
|
|
||
|
/dts-v1/;
|
||
|
|
||
|
#include "brcm,bcm6838.dtsi"
|
||
|
|
||
|
/ {
|
||
|
model = "Broadcom bcm68380gerg";
|
||
|
compatible = "broadcom,bcm68380gerg", "brcm,bcm6838";
|
||
|
|
||
|
aliases {
|
||
|
serial0 = &uart0;
|
||
|
};
|
||
|
|
||
|
chosen {
|
||
|
stdout-path = "serial0:115200n8";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
&memory {
|
||
|
force-size = <0x10000000>;
|
||
|
};
|
||
|
|
||
|
&uart0 {
|
||
|
u-boot,dm-pre-reloc;
|
||
|
status = "okay";
|
||
|
};
|
||
|
|
||
|
&leds {
|
||
|
status = "okay";
|
||
|
|
||
|
led@0 {
|
||
|
reg = <0>;
|
||
|
active-low;
|
||
|
label = "bcm968380gerg:green:usb";
|
||
|
};
|
||
|
};
|