forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
arm64: dts: stingray: move common board components to stingray-board-…
…base 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 <[email protected]> Signed-off-by: Florian Fainelli <[email protected]>
- Loading branch information
Showing
2 changed files
with
52 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
arch/arm64/boot/dts/broadcom/stingray/stingray-board-base.dtsi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// 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>; | ||
}; | ||
}; | ||
}; |