-
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.
ARM: shmobile: henninger: initial device tree
Add the initial device tree for the R8A7791 SoC based Henninger board. SCIF0 serial port support is included, so that the serial console can work. Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
- Loading branch information
Sergei Shtylyov
authored and
Simon Horman
committed
Apr 25, 2014
1 parent
dd485ab
commit 4b37ab0
Showing
2 changed files
with
51 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,50 @@ | ||
/* | ||
* Device Tree Source for the Henninger board | ||
* | ||
* Copyright (C) 2014 Renesas Solutions Corp. | ||
* Copyright (C) 2014 Cogent Embedded, Inc. | ||
* | ||
* This file is licensed under the terms of the GNU General Public License | ||
* version 2. This program is licensed "as is" without any warranty of any | ||
* kind, whether express or implied. | ||
*/ | ||
|
||
/dts-v1/; | ||
#include "r8a7791.dtsi" | ||
|
||
/ { | ||
model = "Henninger"; | ||
compatible = "renesas,henninger", "renesas,r8a7791"; | ||
|
||
aliases { | ||
serial0 = &scif0; | ||
}; | ||
|
||
chosen { | ||
bootargs = "console=ttySC0,38400 ignore_loglevel"; | ||
}; | ||
|
||
memory@40000000 { | ||
device_type = "memory"; | ||
reg = <0 0x40000000 0 0x40000000>; | ||
}; | ||
|
||
memory@200000000 { | ||
device_type = "memory"; | ||
reg = <2 0x00000000 0 0x40000000>; | ||
}; | ||
}; | ||
|
||
&pfc { | ||
scif0_pins: serial0 { | ||
renesas,groups = "scif0_data_d"; | ||
renesas,function = "scif0"; | ||
}; | ||
}; | ||
|
||
&scif0 { | ||
pinctrl-0 = <&scif0_pins>; | ||
pinctrl-names = "default"; | ||
|
||
status = "okay"; | ||
}; |