* [PATCH] ARM: shmobile: koelsch: Add support HSCIF1
@ 2014-06-06 7:45 Nobuhiro Iwamatsu
2014-06-06 8:30 ` Magnus Damm
2014-06-09 5:49 ` Nobuhiro Iwamatsu
0 siblings, 2 replies; 3+ messages in thread
From: Nobuhiro Iwamatsu @ 2014-06-06 7:45 UTC (permalink / raw)
To: linux-sh
Koelsch can use HSCIF1 insetead of SCIF1 as serial port. But if we want to
use, we will need to disable the GPIO key and remodeling of the board.
Therefore status of hscif1 does not set the "okay".
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
---
arch/arm/boot/dts/r8a7791-koelsch.dts | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/arch/arm/boot/dts/r8a7791-koelsch.dts b/arch/arm/boot/dts/r8a7791-koelsch.dts
index b2e6616..cdb53af 100644
--- a/arch/arm/boot/dts/r8a7791-koelsch.dts
+++ b/arch/arm/boot/dts/r8a7791-koelsch.dts
@@ -22,6 +22,7 @@
aliases {
serial6 = &scif0;
serial7 = &scif1;
+ serial16 = &hscif1;
};
chosen {
@@ -258,6 +259,11 @@
renesas,function = "scif1";
};
+ hscif1_pins: serial2 {
+ renesas,groups = "hscif1_data", "hscif1_ctrl", "hscif1_clk";
+ renesas,function = "hscif1";
+ };
+
ether_pins: ether {
renesas,groups = "eth_link", "eth_mdio", "eth_rmii";
renesas,function = "eth";
@@ -334,6 +340,11 @@
status = "okay";
};
+&hscif1 {
+ pinctrl-0 = <&hscif1_pins>;
+ pinctrl-names = "default";
+};
+
&sdhi0 {
pinctrl-0 = <&sdhi0_pins>;
pinctrl-names = "default";
--
2.0.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] ARM: shmobile: koelsch: Add support HSCIF1
2014-06-06 7:45 [PATCH] ARM: shmobile: koelsch: Add support HSCIF1 Nobuhiro Iwamatsu
@ 2014-06-06 8:30 ` Magnus Damm
2014-06-09 5:49 ` Nobuhiro Iwamatsu
1 sibling, 0 replies; 3+ messages in thread
From: Magnus Damm @ 2014-06-06 8:30 UTC (permalink / raw)
To: linux-sh
Hi Iwamatsu-san,
Thanks for your patch!
On Fri, Jun 6, 2014 at 4:45 PM, Nobuhiro Iwamatsu
<nobuhiro.iwamatsu.yj@renesas.com> wrote:
> Koelsch can use HSCIF1 insetead of SCIF1 as serial port. But if we want to
> use, we will need to disable the GPIO key and remodeling of the board.
> Therefore status of hscif1 does not set the "okay".
Do you mean we need to do some soldering on the board? Or is it only a
matter of changing some DIP switch?
> Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
> ---
> arch/arm/boot/dts/r8a7791-koelsch.dts | 11 +++++++++++
> 1 file changed, 11 insertions(+)
>
> diff --git a/arch/arm/boot/dts/r8a7791-koelsch.dts b/arch/arm/boot/dts/r8a7791-koelsch.dts
> index b2e6616..cdb53af 100644
> --- a/arch/arm/boot/dts/r8a7791-koelsch.dts
> +++ b/arch/arm/boot/dts/r8a7791-koelsch.dts
> @@ -22,6 +22,7 @@
> aliases {
> serial6 = &scif0;
> serial7 = &scif1;
> + serial16 = &hscif1;
> };
>
> chosen {
> @@ -258,6 +259,11 @@
> renesas,function = "scif1";
> };
>
> + hscif1_pins: serial2 {
> + renesas,groups = "hscif1_data", "hscif1_ctrl", "hscif1_clk";
Do you really need the clock portion here? For most UART
configurations I believe we tend to use internal clocks, so I'm a bit
surprised to see "hscif1_clk" here.
> + renesas,function = "hscif1";
> + };
> +
> ether_pins: ether {
> renesas,groups = "eth_link", "eth_mdio", "eth_rmii";
> renesas,function = "eth";
> @@ -334,6 +340,11 @@
> status = "okay";
> };
>
> +&hscif1 {
> + pinctrl-0 = <&hscif1_pins>;
> + pinctrl-names = "default";
> +};
> +
> &sdhi0 {
> pinctrl-0 = <&sdhi0_pins>;
> pinctrl-names = "default";
Apart from that it looks good to me!
Cheers,
/ magnus
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ARM: shmobile: koelsch: Add support HSCIF1
2014-06-06 7:45 [PATCH] ARM: shmobile: koelsch: Add support HSCIF1 Nobuhiro Iwamatsu
2014-06-06 8:30 ` Magnus Damm
@ 2014-06-09 5:49 ` Nobuhiro Iwamatsu
1 sibling, 0 replies; 3+ messages in thread
From: Nobuhiro Iwamatsu @ 2014-06-09 5:49 UTC (permalink / raw)
To: linux-sh
Hi,
Thanks for your review.
(2014/06/06 17:30), Magnus Damm wrote:
> Hi Iwamatsu-san,
>
> Thanks for your patch!
>
> On Fri, Jun 6, 2014 at 4:45 PM, Nobuhiro Iwamatsu
> <nobuhiro.iwamatsu.yj@renesas.com> wrote:
>> Koelsch can use HSCIF1 insetead of SCIF1 as serial port. But if we want to
>> use, we will need to disable the GPIO key and remodeling of the board.
>> Therefore status of hscif1 does not set the "okay".
>
> Do you mean we need to do some soldering on the board? Or is it only a
> matter of changing some DIP switch?
Yes, we need to do some soldering.
>
>> Signed-off-by: Nobuhiro Iwamatsu<nobuhiro.iwamatsu.yj@renesas.com>
>> ---
>> arch/arm/boot/dts/r8a7791-koelsch.dts | 11 +++++++++++
>> 1 file changed, 11 insertions(+)
>>
>> diff --git a/arch/arm/boot/dts/r8a7791-koelsch.dts b/arch/arm/boot/dts/r8a7791-koelsch.dts
>> index b2e6616..cdb53af 100644
>> --- a/arch/arm/boot/dts/r8a7791-koelsch.dts
>> +++ b/arch/arm/boot/dts/r8a7791-koelsch.dts
>> @@ -22,6 +22,7 @@
>> aliases {
>> serial6 =&scif0;
>> serial7 =&scif1;
>> + serial16 =&hscif1;
>> };
>>
>> chosen {
>> @@ -258,6 +259,11 @@
>> renesas,function = "scif1";
>> };
>>
>> + hscif1_pins: serial2 {
>> + renesas,groups = "hscif1_data", "hscif1_ctrl", "hscif1_clk";
>
> Do you really need the clock portion here? For most UART
> configurations I believe we tend to use internal clocks, so I'm a bit
> surprised to see "hscif1_clk" here.
You are right. We does not need hscif1_clk. I will remove this and re-send patch.
>
>> + renesas,function = "hscif1";
>> + };
>> +
>> ether_pins: ether {
>> renesas,groups = "eth_link", "eth_mdio", "eth_rmii";
>> renesas,function = "eth";
>> @@ -334,6 +340,11 @@
>> status = "okay";
>> };
>>
>> +&hscif1 {
>> + pinctrl-0 =<&hscif1_pins>;
>> + pinctrl-names = "default";
>> +};
>> +
>> &sdhi0 {
>> pinctrl-0 =<&sdhi0_pins>;
>> pinctrl-names = "default";
>
> Apart from that it looks good to me!
>
> Cheers,
>
> / magnus
Best regards,
Nobuhiro
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-06-09 5:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-06 7:45 [PATCH] ARM: shmobile: koelsch: Add support HSCIF1 Nobuhiro Iwamatsu
2014-06-06 8:30 ` Magnus Damm
2014-06-09 5:49 ` Nobuhiro Iwamatsu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).