-
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: renesas: initial Condor board device tree
Add the initial device tree for the R8A77980 SoC based Condor board. The board has 1 debug serial port (SCIF0); include support for it, so that the serial console can work. Based on the original (and large) patch by Vladimir Barinov. Signed-off-by: Vladimir Barinov <vladimir.barinov@cogentembedded.com> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> [simon: correct memory size to 0x78000000 (2GiB)] Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
- Loading branch information
Sergei Shtylyov
authored and
Simon Horman
committed
Feb 21, 2018
1 parent
bf6f908
commit b9edbce
Showing
2 changed files
with
46 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,45 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* | ||
* Device Tree Source for the Condor board | ||
* | ||
* Copyright (C) 2018 Renesas Electronics Corp. | ||
* Copyright (C) 2018 Cogent Embedded, Inc. | ||
*/ | ||
|
||
/dts-v1/; | ||
#include "r8a77980.dtsi" | ||
|
||
/ { | ||
model = "Renesas Condor board based on r8a77980"; | ||
compatible = "renesas,condor", "renesas,r8a77980"; | ||
|
||
aliases { | ||
serial0 = &scif0; | ||
}; | ||
|
||
chosen { | ||
stdout-path = "serial0:115200n8"; | ||
}; | ||
|
||
memory@48000000 { | ||
device_type = "memory"; | ||
/* first 128MB is reserved for secure area. */ | ||
reg = <0 0x48000000 0 0x78000000>; | ||
}; | ||
}; | ||
|
||
&extal_clk { | ||
clock-frequency = <16666666>; | ||
}; | ||
|
||
&extalr_clk { | ||
clock-frequency = <32768>; | ||
}; | ||
|
||
&scif0 { | ||
status = "okay"; | ||
}; | ||
|
||
&scif_clk { | ||
clock-frequency = <14745600>; | ||
}; |