-
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: Add HiHope RZ/G2M main board support
Basic support for the HiHope RZ/G2M main board: - Memory, - Main crystal, - Serial console This patch also includes a dtsi common to both HiHope RZ/G2M and RZ/G2N main boards. Signed-off-by: Biju Das <biju.das@bp.renesas.com> Reviewed-by: Chris Paterson <Chris.Paterson2@renesas.com> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
- Loading branch information
Biju Das
authored and
Simon Horman
committed
Jun 6, 2019
1 parent
800037e
commit 438419e
Showing
3 changed files
with
60 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,33 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* | ||
* Device Tree Source for the HiHope RZ/G2[MN] main board common parts | ||
* | ||
* Copyright (C) 2019 Renesas Electronics Corp. | ||
*/ | ||
|
||
/ { | ||
aliases { | ||
serial0 = &scif2; | ||
}; | ||
|
||
chosen { | ||
bootargs = "ignore_loglevel"; | ||
stdout-path = "serial0:115200n8"; | ||
}; | ||
}; | ||
|
||
&extal_clk { | ||
clock-frequency = <16666666>; | ||
}; | ||
|
||
&extalr_clk { | ||
clock-frequency = <32768>; | ||
}; | ||
|
||
&scif2 { | ||
status = "okay"; | ||
}; | ||
|
||
&scif_clk { | ||
clock-frequency = <14745600>; | ||
}; |
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,26 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* | ||
* Device Tree Source for the HiHope RZ/G2M main board | ||
* | ||
* Copyright (C) 2019 Renesas Electronics Corp. | ||
*/ | ||
|
||
/dts-v1/; | ||
#include "r8a774a1.dtsi" | ||
#include "hihope-common.dtsi" | ||
|
||
/ { | ||
model = "HopeRun HiHope RZ/G2M main board based on r8a774a1"; | ||
compatible = "hoperun,hihope-rzg2m", "renesas,r8a774a1"; | ||
|
||
memory@48000000 { | ||
device_type = "memory"; | ||
/* first 128MB is reserved for secure area. */ | ||
reg = <0x0 0x48000000 0x0 0x78000000>; | ||
}; | ||
|
||
memory@600000000 { | ||
device_type = "memory"; | ||
reg = <0x6 0x00000000 0x0 0x80000000>; | ||
}; | ||
}; |