* [PATCH 0/2] ARM: shmobile: r8a7790: Fix SD3CKCR address
@ 2014-10-30 5:57 Simon Horman
2014-10-30 5:57 ` [PATCH 1/2] " Simon Horman
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Simon Horman @ 2014-10-30 5:57 UTC (permalink / raw)
To: linux-arm-kernel
This short series corrects the SD3CKCR address in both C and DT
Based on the renesas-devel-20141030-v3.18-rc2 branch of my renesas tree
Shinobu Uehara (2):
ARM: shmobile: r8a7790: Fix SD3CKCR address
ARM: shmobile: r8a7790: Fix SD3CKCR address to device tree
arch/arm/boot/dts/r8a7790.dtsi | 4 ++--
arch/arm/mach-shmobile/clock-r8a7790.c | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
--
2.1.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/2] ARM: shmobile: r8a7790: Fix SD3CKCR address
2014-10-30 5:57 [PATCH 0/2] ARM: shmobile: r8a7790: Fix SD3CKCR address Simon Horman
@ 2014-10-30 5:57 ` Simon Horman
2014-10-30 5:57 ` [PATCH 2/2] ARM: shmobile: r8a7790: Fix SD3CKCR address to device tree Simon Horman
2014-10-30 9:51 ` [PATCH 0/2] ARM: shmobile: r8a7790: Fix SD3CKCR address Geert Uytterhoeven
2 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2014-10-30 5:57 UTC (permalink / raw)
To: linux-arm-kernel
From: Shinobu Uehara <shinobu.uehara.xc@renesas.com>
Signed-off-by: Shinobu Uehara <shinobu.uehara.xc@renesas.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/mach-shmobile/clock-r8a7790.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mach-shmobile/clock-r8a7790.c b/arch/arm/mach-shmobile/clock-r8a7790.c
index c395ff1..f9bbc5f 100644
--- a/arch/arm/mach-shmobile/clock-r8a7790.c
+++ b/arch/arm/mach-shmobile/clock-r8a7790.c
@@ -64,7 +64,7 @@
#define SDCKCR 0xE6150074
#define SD2CKCR 0xE6150078
-#define SD3CKCR 0xE615007C
+#define SD3CKCR 0xE615026C
#define MMC0CKCR 0xE6150240
#define MMC1CKCR 0xE6150244
#define SSPCKCR 0xE6150248
--
2.1.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/2] ARM: shmobile: r8a7790: Fix SD3CKCR address to device tree
2014-10-30 5:57 [PATCH 0/2] ARM: shmobile: r8a7790: Fix SD3CKCR address Simon Horman
2014-10-30 5:57 ` [PATCH 1/2] " Simon Horman
@ 2014-10-30 5:57 ` Simon Horman
2014-10-30 9:51 ` [PATCH 0/2] ARM: shmobile: r8a7790: Fix SD3CKCR address Geert Uytterhoeven
2 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2014-10-30 5:57 UTC (permalink / raw)
To: linux-arm-kernel
From: Shinobu Uehara <shinobu.uehara.xc@renesas.com>
Signed-off-by: Shinobu Uehara <shinobu.uehara.xc@renesas.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/boot/dts/r8a7790.dtsi | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/boot/dts/r8a7790.dtsi b/arch/arm/boot/dts/r8a7790.dtsi
index 69b7cd0..4242778 100644
--- a/arch/arm/boot/dts/r8a7790.dtsi
+++ b/arch/arm/boot/dts/r8a7790.dtsi
@@ -786,9 +786,9 @@
#clock-cells = <0>;
clock-output-names = "sd2";
};
- sd3_clk: sd3_clk@e615007c {
+ sd3_clk: sd3_clk@e615026c {
compatible = "renesas,r8a7790-div6-clock", "renesas,cpg-div6-clock";
- reg = <0 0xe615007c 0 4>;
+ reg = <0 0xe615026c 0 4>;
clocks = <&pll1_div2_clk>;
#clock-cells = <0>;
clock-output-names = "sd3";
--
2.1.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 0/2] ARM: shmobile: r8a7790: Fix SD3CKCR address
2014-10-30 5:57 [PATCH 0/2] ARM: shmobile: r8a7790: Fix SD3CKCR address Simon Horman
2014-10-30 5:57 ` [PATCH 1/2] " Simon Horman
2014-10-30 5:57 ` [PATCH 2/2] ARM: shmobile: r8a7790: Fix SD3CKCR address to device tree Simon Horman
@ 2014-10-30 9:51 ` Geert Uytterhoeven
2014-11-04 0:11 ` Simon Horman
2 siblings, 1 reply; 5+ messages in thread
From: Geert Uytterhoeven @ 2014-10-30 9:51 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Oct 30, 2014 at 6:57 AM, Simon Horman
<horms+renesas@verge.net.au> wrote:
> This short series corrects the SD3CKCR address in both C and DT
>
> Based on the renesas-devel-20141030-v3.18-rc2 branch of my renesas tree
>
> Shinobu Uehara (2):
> ARM: shmobile: r8a7790: Fix SD3CKCR address
> ARM: shmobile: r8a7790: Fix SD3CKCR address to device tree
This matches my copy of the datasheet, so
Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
But it would be good to know this has been verified on actual hardware.
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 0/2] ARM: shmobile: r8a7790: Fix SD3CKCR address
2014-10-30 9:51 ` [PATCH 0/2] ARM: shmobile: r8a7790: Fix SD3CKCR address Geert Uytterhoeven
@ 2014-11-04 0:11 ` Simon Horman
0 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2014-11-04 0:11 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Oct 30, 2014 at 10:51:56AM +0100, Geert Uytterhoeven wrote:
> On Thu, Oct 30, 2014 at 6:57 AM, Simon Horman
> <horms+renesas@verge.net.au> wrote:
> > This short series corrects the SD3CKCR address in both C and DT
> >
> > Based on the renesas-devel-20141030-v3.18-rc2 branch of my renesas tree
> >
> > Shinobu Uehara (2):
> > ARM: shmobile: r8a7790: Fix SD3CKCR address
> > ARM: shmobile: r8a7790: Fix SD3CKCR address to device tree
>
> This matches my copy of the datasheet, so
Mine too :)
> Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
>
> But it would be good to know this has been verified on actual hardware.
As these came from the BSP my assumption is that they have
been verified on actual hardware. I will queue up these changes.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-11-04 0:11 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-30 5:57 [PATCH 0/2] ARM: shmobile: r8a7790: Fix SD3CKCR address Simon Horman
2014-10-30 5:57 ` [PATCH 1/2] " Simon Horman
2014-10-30 5:57 ` [PATCH 2/2] ARM: shmobile: r8a7790: Fix SD3CKCR address to device tree Simon Horman
2014-10-30 9:51 ` [PATCH 0/2] ARM: shmobile: r8a7790: Fix SD3CKCR address Geert Uytterhoeven
2014-11-04 0:11 ` Simon Horman
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).