-
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.
MIPS: BMIPS: Add support for Broadcom BCM97435SVMB
Add a DTS file and Kconfig entry for the BCM97435SVMB evaluation board using bcm7435.dtsi as an example. The current code needs some tweaking to allow us to use the dual-threaded dual BMIPS5200 CPUs, so for now we limit ourselves to allowing just a single CPU to be booted. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Cc: linux-mips@linux-mips.org Cc: blogic@openwrt.org Cc: cernekee@chromium.org Cc: Steven.Hill@imgtec.com Patchwork: https://patchwork.linux-mips.org/patch/9972/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
- Loading branch information
Florian Fainelli
authored and
Ralf Baechle
committed
Jun 21, 2015
1 parent
e4c7d00
commit 380e427
Showing
3 changed files
with
65 additions
and
0 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
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
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,60 @@ | ||
/dts-v1/; | ||
|
||
/include/ "bcm7435.dtsi" | ||
|
||
/ { | ||
compatible = "brcm,bcm97435svmb", "brcm,bcm7435"; | ||
model = "Broadcom BCM97435SVMB"; | ||
|
||
memory@0 { | ||
device_type = "memory"; | ||
reg = <0x00000000 0x10000000>, | ||
<0x20000000 0x30000000>, | ||
<0x90000000 0x40000000>; | ||
}; | ||
|
||
chosen { | ||
bootargs = "console=ttyS0,115200 maxcpus=1"; | ||
stdout-path = &uart0; | ||
}; | ||
}; | ||
|
||
&uart0 { | ||
status = "okay"; | ||
}; | ||
|
||
&enet0 { | ||
status = "okay"; | ||
}; | ||
|
||
&ehci0 { | ||
status = "okay"; | ||
}; | ||
|
||
&ohci0 { | ||
status = "okay"; | ||
}; | ||
|
||
&ehci1 { | ||
status = "okay"; | ||
}; | ||
|
||
&ohci1 { | ||
status = "okay"; | ||
}; | ||
|
||
&ehci2 { | ||
status = "okay"; | ||
}; | ||
|
||
&ohci2 { | ||
status = "okay"; | ||
}; | ||
|
||
&ehci3 { | ||
status = "okay"; | ||
}; | ||
|
||
&ohci3 { | ||
status = "okay"; | ||
}; |