linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] soc: rockchip: disable jtag switching for RK3328 Soc
@ 2017-05-25  7:58 Shawn Lin
  2017-06-16  8:17 ` Shawn Lin
  0 siblings, 1 reply; 3+ messages in thread
From: Shawn Lin @ 2017-05-25  7:58 UTC (permalink / raw)
  To: linux-arm-kernel

Disable IO function switching between sdmmc and jtag
for RK3328 Soc.

Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
---

 drivers/soc/rockchip/grf.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/drivers/soc/rockchip/grf.c b/drivers/soc/rockchip/grf.c
index d61db34..15e71fd 100644
--- a/drivers/soc/rockchip/grf.c
+++ b/drivers/soc/rockchip/grf.c
@@ -54,6 +54,17 @@ struct rockchip_grf_info {
 	.num_values = ARRAY_SIZE(rk3288_defaults),
 };
 
+#define RK3328_GRF_SOC_CON4		0x410
+
+static const struct rockchip_grf_value rk3328_defaults[] __initconst = {
+	{ "jtag switching", RK3328_GRF_SOC_CON4, HIWORD_UPDATE(0, 1, 12) },
+};
+
+static const struct rockchip_grf_info rk3328_grf __initconst = {
+	.values = rk3328_defaults,
+	.num_values = ARRAY_SIZE(rk3328_defaults),
+};
+
 #define RK3368_GRF_SOC_CON15		0x43c
 
 static const struct rockchip_grf_value rk3368_defaults[] __initconst = {
@@ -84,6 +95,9 @@ struct rockchip_grf_info {
 		.compatible = "rockchip,rk3288-grf",
 		.data = (void *)&rk3288_grf,
 	}, {
+		.compatible = "rockchip,rk3328-grf",
+		.data = (void *)&rk3328_grf,
+	}, {
 		.compatible = "rockchip,rk3368-grf",
 		.data = (void *)&rk3368_grf,
 	}, {
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH] soc: rockchip: disable jtag switching for RK3328 Soc
  2017-05-25  7:58 [PATCH] soc: rockchip: disable jtag switching for RK3328 Soc Shawn Lin
@ 2017-06-16  8:17 ` Shawn Lin
  2017-06-17 17:59   ` Heiko Stuebner
  0 siblings, 1 reply; 3+ messages in thread
From: Shawn Lin @ 2017-06-16  8:17 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Heiko,

Ping.... :)

On 2017/5/25 15:58, Shawn Lin wrote:
> Disable IO function switching between sdmmc and jtag
> for RK3328 Soc.
> 
> Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
> ---
> 
>   drivers/soc/rockchip/grf.c | 14 ++++++++++++++
>   1 file changed, 14 insertions(+)
> 
> diff --git a/drivers/soc/rockchip/grf.c b/drivers/soc/rockchip/grf.c
> index d61db34..15e71fd 100644
> --- a/drivers/soc/rockchip/grf.c
> +++ b/drivers/soc/rockchip/grf.c
> @@ -54,6 +54,17 @@ struct rockchip_grf_info {
>   	.num_values = ARRAY_SIZE(rk3288_defaults),
>   };
>   
> +#define RK3328_GRF_SOC_CON4		0x410
> +
> +static const struct rockchip_grf_value rk3328_defaults[] __initconst = {
> +	{ "jtag switching", RK3328_GRF_SOC_CON4, HIWORD_UPDATE(0, 1, 12) },
> +};
> +
> +static const struct rockchip_grf_info rk3328_grf __initconst = {
> +	.values = rk3328_defaults,
> +	.num_values = ARRAY_SIZE(rk3328_defaults),
> +};
> +
>   #define RK3368_GRF_SOC_CON15		0x43c
>   
>   static const struct rockchip_grf_value rk3368_defaults[] __initconst = {
> @@ -84,6 +95,9 @@ struct rockchip_grf_info {
>   		.compatible = "rockchip,rk3288-grf",
>   		.data = (void *)&rk3288_grf,
>   	}, {
> +		.compatible = "rockchip,rk3328-grf",
> +		.data = (void *)&rk3328_grf,
> +	}, {
>   		.compatible = "rockchip,rk3368-grf",
>   		.data = (void *)&rk3368_grf,
>   	}, {
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH] soc: rockchip: disable jtag switching for RK3328 Soc
  2017-06-16  8:17 ` Shawn Lin
@ 2017-06-17 17:59   ` Heiko Stuebner
  0 siblings, 0 replies; 3+ messages in thread
From: Heiko Stuebner @ 2017-06-17 17:59 UTC (permalink / raw)
  To: linux-arm-kernel

Am Freitag, 16. Juni 2017, 16:17:45 CEST schrieb Shawn Lin:
> Hi Heiko,
> 
> Ping.... :)
> 
> On 2017/5/25 15:58, Shawn Lin wrote:
> > Disable IO function switching between sdmmc and jtag
> > for RK3328 Soc.
> > 
> > Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>

Ihad already applied this on thursday, just forgot to push the branch :-) .

As there was some unresolved discussion with the driver itself, we'll
see where this ends up.


Heiko

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-06-17 17:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-25  7:58 [PATCH] soc: rockchip: disable jtag switching for RK3328 Soc Shawn Lin
2017-06-16  8:17 ` Shawn Lin
2017-06-17 17:59   ` Heiko Stuebner

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).