mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-02 08:12:59 +00:00

Documentation/process/license-rules.rst and checkpatch expect the SPDX identifier syntax for multiple licenses to use capital "OR". Correct it to keep consistent format and avoid copy-paste issues. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Acked-by: Sudeep Holla <sudeep.holla@arm.com> Acked-by: Jernej Skrabec <jernej.skrabec@gmail.com> Acked-by: Geert Uytterhoeven <geert+renesas@glider.be> Acked-by: Florian Fainelli <florian.fainelli@broadcom.com> # Broadcom Link: https://lore.kernel.org/r/20230823085146.113562-2-krzysztof.kozlowski@linaro.org Signed-off-by: Arnd Bergmann <arnd@arndb.de>
52 lines
722 B
Plaintext
52 lines
722 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
|
|
/*
|
|
* Copyright(c) 2016-2018 Broadcom
|
|
*/
|
|
|
|
#include "stingray.dtsi"
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
|
/ {
|
|
aliases {
|
|
serial0 = &uart1;
|
|
serial1 = &uart0;
|
|
serial2 = &uart2;
|
|
serial3 = &uart3;
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial0:115200n8";
|
|
};
|
|
};
|
|
|
|
&memory { /* Default DRAM banks */
|
|
reg = <0x00000000 0x80000000 0x0 0x80000000>, /* 2G @ 2G */
|
|
<0x00000008 0x80000000 0x1 0x80000000>; /* 6G @ 34G */
|
|
};
|
|
|
|
&enet {
|
|
phy-mode = "rgmii-id";
|
|
phy-handle = <&gphy0>;
|
|
};
|
|
|
|
&uart1 {
|
|
status = "okay";
|
|
};
|
|
|
|
&sdio0 {
|
|
non-removable;
|
|
full-pwr-cycle;
|
|
};
|
|
|
|
&sdio1 {
|
|
full-pwr-cycle;
|
|
};
|
|
|
|
&mdio_mux_iproc {
|
|
mdio@10 {
|
|
gphy0: eth-phy@10 {
|
|
reg = <0x10>;
|
|
};
|
|
};
|
|
};
|