From: Simon Horman <horms@verge.net.au>
To: Kuninori Morimoto <kuninori.morimoto.gx@gmail.com>
Cc: Magnus <magnus.damm@gmail.com>,
Linux-SH <linux-sh@vger.kernel.org>,
linux-mmc@vger.kernel.org
Subject: Re: [PATCH] ARM: shmobile: bockw: use wp-gpios instead of WP pin
Date: Mon, 3 Feb 2014 15:35:51 +0900 [thread overview]
Message-ID: <20140203063549.GD30047@verge.net.au> (raw)
In-Reply-To: <87zjmc676u.wl%kuninori.morimoto.gx@gmail.com>
On Thu, Jan 30, 2014 at 09:39:40PM -0800, Kuninori Morimoto wrote:
> From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
>
> Latest Renesas Chip has some SDHI channels and the WP pin
> availability depends on its channel or HW implementation.
> Thus, this patch decides new policy whch indicates
> WP is disabled as default.
> But, we can use wp-gpios property to enable it as
> other method.
>
> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> ---
> Simon
>
> This was included on v1 patch series,
> but no relationship with mmc part patches.
So I could take this patch into the renesas tree now?
>
> arch/arm/boot/dts/r8a7778-bockw-reference.dts | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/boot/dts/r8a7778-bockw-reference.dts b/arch/arm/boot/dts/r8a7778-bockw-reference.dts
> index bb62c7a..06cda19 100644
> --- a/arch/arm/boot/dts/r8a7778-bockw-reference.dts
> +++ b/arch/arm/boot/dts/r8a7778-bockw-reference.dts
> @@ -17,6 +17,7 @@
> /dts-v1/;
> #include "r8a7778.dtsi"
> #include <dt-bindings/interrupt-controller/irq.h>
> +#include <dt-bindings/gpio/gpio.h>
>
> / {
> model = "bockw";
> @@ -84,7 +85,7 @@
>
> sdhi0_pins: sd0 {
> renesas,groups = "sdhi0_data4", "sdhi0_ctrl",
> - "sdhi0_cd", "sdhi0_wp";
> + "sdhi0_cd";
> renesas,function = "sdhi0";
> };
>
> @@ -101,6 +102,7 @@
> vmmc-supply = <&fixedregulator3v3>;
> bus-width = <4>;
> status = "okay";
> + wp-gpios = <&gpio3 18 GPIO_ACTIVE_HIGH>;
> };
>
> &hspi0 {
> --
> 1.7.9.5
>
WARNING: multiple messages have this Message-ID (diff)
From: Simon Horman <horms@verge.net.au>
To: Kuninori Morimoto <kuninori.morimoto.gx@gmail.com>
Cc: Magnus <magnus.damm@gmail.com>,
Linux-SH <linux-sh@vger.kernel.org>,
linux-mmc@vger.kernel.org
Subject: Re: [PATCH] ARM: shmobile: bockw: use wp-gpios instead of WP pin
Date: Mon, 03 Feb 2014 06:35:51 +0000 [thread overview]
Message-ID: <20140203063549.GD30047@verge.net.au> (raw)
In-Reply-To: <87zjmc676u.wl%kuninori.morimoto.gx@gmail.com>
On Thu, Jan 30, 2014 at 09:39:40PM -0800, Kuninori Morimoto wrote:
> From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
>
> Latest Renesas Chip has some SDHI channels and the WP pin
> availability depends on its channel or HW implementation.
> Thus, this patch decides new policy whch indicates
> WP is disabled as default.
> But, we can use wp-gpios property to enable it as
> other method.
>
> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> ---
> Simon
>
> This was included on v1 patch series,
> but no relationship with mmc part patches.
So I could take this patch into the renesas tree now?
>
> arch/arm/boot/dts/r8a7778-bockw-reference.dts | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/boot/dts/r8a7778-bockw-reference.dts b/arch/arm/boot/dts/r8a7778-bockw-reference.dts
> index bb62c7a..06cda19 100644
> --- a/arch/arm/boot/dts/r8a7778-bockw-reference.dts
> +++ b/arch/arm/boot/dts/r8a7778-bockw-reference.dts
> @@ -17,6 +17,7 @@
> /dts-v1/;
> #include "r8a7778.dtsi"
> #include <dt-bindings/interrupt-controller/irq.h>
> +#include <dt-bindings/gpio/gpio.h>
>
> / {
> model = "bockw";
> @@ -84,7 +85,7 @@
>
> sdhi0_pins: sd0 {
> renesas,groups = "sdhi0_data4", "sdhi0_ctrl",
> - "sdhi0_cd", "sdhi0_wp";
> + "sdhi0_cd";
> renesas,function = "sdhi0";
> };
>
> @@ -101,6 +102,7 @@
> vmmc-supply = <&fixedregulator3v3>;
> bus-width = <4>;
> status = "okay";
> + wp-gpios = <&gpio3 18 GPIO_ACTIVE_HIGH>;
> };
>
> &hspi0 {
> --
> 1.7.9.5
>
next prev parent reply other threads:[~2014-02-03 6:35 UTC|newest]
Thread overview: 85+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-28 4:44 mmc: sh_mobile_sdhi: DT update for R-Car Kuninori Morimoto
2014-01-28 4:44 ` Kuninori Morimoto
2014-01-28 4:45 ` [PATCH 1/4] mmc: SDHI: tidyup sh_mobile_sdhi_of_match position Kuninori Morimoto
2014-01-28 4:45 ` Kuninori Morimoto
2014-01-28 4:45 ` [PATCH 2/4] mmc: SDHI: updata sh_mobile_sdhi_of_data for r8a7778 Kuninori Morimoto
2014-01-28 4:45 ` Kuninori Morimoto
2014-01-28 4:45 ` [PATCH 3/4] mmc: SDHI: updata sh_mobile_sdhi_of_data for r8a7779 Kuninori Morimoto
2014-01-28 4:45 ` Kuninori Morimoto
2014-01-28 4:45 ` [PATCH 4/4] mmc: SDHI: updata sh_mobile_sdhi_of_data for r8a7790 Kuninori Morimoto
2014-01-28 4:45 ` Kuninori Morimoto
2014-01-28 15:06 ` mmc: sh_mobile_sdhi: DT update for R-Car Sergei Shtylyov
2014-01-28 16:06 ` Sergei Shtylyov
2014-01-29 0:31 ` Kuninori Morimoto
2014-01-29 0:31 ` Kuninori Morimoto
2014-01-30 5:38 ` Kuninori Morimoto
2014-01-30 5:38 ` Kuninori Morimoto
2014-01-30 6:43 ` Simon Horman
2014-01-30 6:43 ` Simon Horman
2014-01-30 7:08 ` Kuninori Morimoto
2014-01-30 7:08 ` Kuninori Morimoto
2014-01-31 0:16 ` Simon Horman
2014-01-31 0:16 ` Simon Horman
2014-01-31 5:30 ` Kuninori Morimoto
2014-01-31 5:30 ` Kuninori Morimoto
2014-01-31 5:31 ` [PATCH 1/4] mmc: SDHI: tidyup sh_mobile_sdhi_of_match position Kuninori Morimoto
2014-01-31 5:31 ` Kuninori Morimoto
2014-01-31 5:31 ` [PATCH 2/4] mmc: SDHI: update sh_mobile_sdhi_of_data for r8a7778 Kuninori Morimoto
2014-01-31 5:31 ` Kuninori Morimoto
2014-01-31 5:32 ` [PATCH 3/4] mmc: SDHI: update sh_mobile_sdhi_of_data for r8a7779 Kuninori Morimoto
2014-01-31 5:32 ` Kuninori Morimoto
2014-01-31 12:46 ` Sergei Shtylyov
2014-01-31 12:46 ` Sergei Shtylyov
2014-01-31 5:32 ` [PATCH 4/4] mmc: SDHI: update sh_mobile_sdhi_of_data for r8a7790 Kuninori Morimoto
2014-01-31 5:32 ` Kuninori Morimoto
2014-02-03 6:41 ` mmc: sh_mobile_sdhi: DT update for R-Car Simon Horman
2014-02-03 6:41 ` Simon Horman
2014-02-12 5:35 ` [PATCH 5/4] mmc: SDHI: update sh_mobile_sdhi_of_data for r8a7791 Kuninori Morimoto
2014-02-12 5:35 ` Kuninori Morimoto
2014-02-12 8:38 ` Simon Horman
2014-02-12 8:38 ` Simon Horman
2014-02-12 9:47 ` mmc: sh_mobile_sdhi: DT update for R-Car Simon Horman
2014-02-12 9:47 ` Simon Horman
2014-02-12 9:50 ` Simon Horman
2014-02-12 9:50 ` Simon Horman
2014-01-31 5:36 ` Kuninori Morimoto
2014-01-31 5:36 ` Kuninori Morimoto
2014-01-31 5:36 ` [PATCH 1/3] ARM: shmobile: r8a7778: removed unnecessary mmc option Kuninori Morimoto
2014-01-31 5:36 ` Kuninori Morimoto
2014-01-31 5:36 ` [PATCH 2/3] ARM: shmobile: r8a7779: " Kuninori Morimoto
2014-01-31 5:36 ` Kuninori Morimoto
2014-01-31 5:36 ` [PATCH 3/3] ARM: shmobile: r8a7790: " Kuninori Morimoto
2014-01-31 5:36 ` Kuninori Morimoto
2014-02-03 6:34 ` mmc: sh_mobile_sdhi: DT update for R-Car Simon Horman
2014-02-03 6:34 ` Simon Horman
2014-01-31 5:39 ` [PATCH] ARM: shmobile: bockw: use wp-gpios instead of WP pin Kuninori Morimoto
2014-01-31 5:39 ` Kuninori Morimoto
2014-02-03 6:35 ` Simon Horman [this message]
2014-02-03 6:35 ` Simon Horman
2014-02-04 1:32 ` Kuninori Morimoto
2014-02-04 1:32 ` Kuninori Morimoto
2014-02-06 6:59 ` Simon Horman
2014-02-06 6:59 ` Simon Horman
2014-02-21 0:54 ` [PATCH 0/5][RESENT]mmc: sh_mobile_sdhi: DT update for R-Car Kuninori Morimoto
2014-02-21 0:54 ` Kuninori Morimoto
2014-02-21 0:54 ` [PATCH 1/5][RESENT] mmc: SDHI: tidyup sh_mobile_sdhi_of_match position Kuninori Morimoto
2014-02-21 0:54 ` Kuninori Morimoto
2014-02-21 0:54 ` [PATCH 2/5][RESENT] mmc: SDHI: update sh_mobile_sdhi_of_data for r8a7778 Kuninori Morimoto
2014-02-21 0:54 ` Kuninori Morimoto
2014-02-21 0:55 ` [PATCH 3/5][RESENT] mmc: SDHI: update sh_mobile_sdhi_of_data for r8a7779 Kuninori Morimoto
2014-02-21 0:55 ` Kuninori Morimoto
2014-02-21 0:55 ` [PATCH 4/5][RESENT] mmc: SDHI: update sh_mobile_sdhi_of_data for r8a7790 Kuninori Morimoto
2014-02-21 0:55 ` Kuninori Morimoto
2014-05-02 23:55 ` Sergei Shtylyov
2014-05-02 23:55 ` Sergei Shtylyov
2014-05-03 19:23 ` Magnus Damm
2014-05-03 19:23 ` Magnus Damm
2014-05-03 21:30 ` Sergei Shtylyov
2014-05-03 21:30 ` Sergei Shtylyov
2014-05-04 8:01 ` Magnus Damm
2014-05-04 8:01 ` Magnus Damm
2014-02-21 0:55 ` [PATCH 5/5][RESENT] mmc: SDHI: update sh_mobile_sdhi_of_data for r8a7791 Kuninori Morimoto
2014-02-21 0:55 ` Kuninori Morimoto
2014-02-21 12:36 ` Sergei Shtylyov
2014-02-21 12:36 ` Sergei Shtylyov
2014-02-22 18:08 ` [PATCH 0/5][RESENT]mmc: sh_mobile_sdhi: DT update for R-Car Chris Ball
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140203063549.GD30047@verge.net.au \
--to=horms@verge.net.au \
--cc=kuninori.morimoto.gx@gmail.com \
--cc=linux-mmc@vger.kernel.org \
--cc=linux-sh@vger.kernel.org \
--cc=magnus.damm@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.