diff options
author | Biju Das <biju.das@bp.renesas.com> | 2019-05-30 15:57:44 +0100 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2019-06-06 15:28:05 +0200 |
commit | 438419ebd3f86221390e481f84db61fd7c5aa2b9 (patch) | |
tree | dd0dde5db05fe95ef6b2a08153ced0446c9b2d87 /arch/arm64/boot/dts/renesas/hihope-common.dtsi | |
parent | 800037e815b91d8c9ad67906d18129e79a2cfcba (diff) | |
download | blackbird-op-linux-438419ebd3f86221390e481f84db61fd7c5aa2b9.tar.gz blackbird-op-linux-438419ebd3f86221390e481f84db61fd7c5aa2b9.zip |
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>
Diffstat (limited to 'arch/arm64/boot/dts/renesas/hihope-common.dtsi')
-rw-r--r-- | arch/arm64/boot/dts/renesas/hihope-common.dtsi | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/arch/arm64/boot/dts/renesas/hihope-common.dtsi b/arch/arm64/boot/dts/renesas/hihope-common.dtsi new file mode 100644 index 000000000000..5baf5328124a --- /dev/null +++ b/arch/arm64/boot/dts/renesas/hihope-common.dtsi @@ -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>; +}; |