-
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.
This add the initial support of the broadcom bcm6858 SoC family, only the cpu, dram and uart are supported. Signed-off-by: Philippe Reynes <[email protected]>
- Loading branch information
Showing
2 changed files
with
92 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
// SPDX-License-Identifier: GPL-2.0+ | ||
/* | ||
* Copyright (C) 2018 Philippe Reynes <[email protected]> | ||
*/ | ||
|
||
#include "skeleton64.dtsi" | ||
|
||
/ { | ||
compatible = "brcm,bcm6858"; | ||
#address-cells = <2>; | ||
#size-cells = <2>; | ||
|
||
cpus { | ||
#address-cells = <2>; | ||
#size-cells = <0>; | ||
u-boot,dm-pre-reloc; | ||
|
||
cpu0: cpu@0 { | ||
compatible = "arm,cortex-a53", "arm,armv8"; | ||
device_type = "cpu"; | ||
reg = <0x0 0x0>; | ||
next-level-cache = <&l2>; | ||
u-boot,dm-pre-reloc; | ||
}; | ||
|
||
cpu1: cpu@1 { | ||
compatible = "arm,cortex-a53", "arm,armv8"; | ||
device_type = "cpu"; | ||
reg = <0x0 0x1>; | ||
next-level-cache = <&l2>; | ||
u-boot,dm-pre-reloc; | ||
}; | ||
|
||
cpu2: cpu@2 { | ||
compatible = "arm,cortex-a53", "arm,armv8"; | ||
device_type = "cpu"; | ||
reg = <0x0 0x2>; | ||
next-level-cache = <&l2>; | ||
u-boot,dm-pre-reloc; | ||
}; | ||
|
||
cpu3: cpu@3 { | ||
compatible = "arm,cortex-a53", "arm,armv8"; | ||
device_type = "cpu"; | ||
reg = <0x0 0x3>; | ||
next-level-cache = <&l2>; | ||
u-boot,dm-pre-reloc; | ||
}; | ||
|
||
l2: l2-cache0 { | ||
compatible = "cache"; | ||
u-boot,dm-pre-reloc; | ||
}; | ||
}; | ||
|
||
clocks { | ||
compatible = "simple-bus"; | ||
#address-cells = <2>; | ||
#size-cells = <2>; | ||
ranges; | ||
u-boot,dm-pre-reloc; | ||
|
||
periph_osc: periph-osc { | ||
compatible = "fixed-clock"; | ||
#clock-cells = <0>; | ||
clock-frequency = <200000000>; | ||
u-boot,dm-pre-reloc; | ||
}; | ||
}; | ||
|
||
ubus { | ||
compatible = "simple-bus"; | ||
#address-cells = <2>; | ||
#size-cells = <2>; | ||
u-boot,dm-pre-reloc; | ||
|
||
uart0: serial@ff800640 { | ||
compatible = "brcm,bcm6858-uart"; | ||
reg = <0x0 0xff800640 0x0 0x18>; | ||
clocks = <&periph_osc>; | ||
|
||
status = "disabled"; | ||
}; | ||
}; | ||
}; |