mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
22f969f351
Move common board components from base bcm958742 dtsi file to new stingray-board-base dtsi file so they can be shared between many stingray boards following common design. Signed-off-by: Scott Branden <scott.branden@broadcom.com> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
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>;
|
|
};
|
|
};
|
|
};
|