diff mbox

[U-Boot] rk3288: fix reg address for GRF_SOC_CON2

Message ID 1475827189-29185-1-git-send-email-kever.yang@rock-chips.com
State Accepted
Commit 1b64a05072f56dbefd7c4ed1eee5df50f6748eaf
Delegated to: Simon Glass
Headers show

Commit Message

Kever Yang Oct. 7, 2016, 7:59 a.m. UTC
The GRF base address is missing, fix it.

Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
---

 arch/arm/mach-rockchip/rk3288/rk3288.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Glass Oct. 15, 2016, 1:24 p.m. UTC | #1
On 7 October 2016 at 01:59, Kever Yang <kever.yang@rock-chips.com> wrote:
> The GRF base address is missing, fix it.
>
> Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
> ---
>
>  arch/arm/mach-rockchip/rk3288/rk3288.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Acked-by: Simon Glass <sjg@chromium.org>
Simon Glass Oct. 15, 2016, 1:31 p.m. UTC | #2
On 15 October 2016 at 07:24, Simon Glass <sjg@chromium.org> wrote:
> On 7 October 2016 at 01:59, Kever Yang <kever.yang@rock-chips.com> wrote:
>> The GRF base address is missing, fix it.
>>
>> Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
>> ---
>>
>>  arch/arm/mach-rockchip/rk3288/rk3288.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> Acked-by: Simon Glass <sjg@chromium.org>

Applied to u-boot-rockchip, thanks!
diff mbox

Patch

diff --git a/arch/arm/mach-rockchip/rk3288/rk3288.c b/arch/arm/mach-rockchip/rk3288/rk3288.c
index 92f34bb..acc3b79 100644
--- a/arch/arm/mach-rockchip/rk3288/rk3288.c
+++ b/arch/arm/mach-rockchip/rk3288/rk3288.c
@@ -6,7 +6,7 @@ 
 #include <asm/io.h>
 #include <asm/arch/hardware.h>
 
-#define GRF_SOC_CON2 0x24c
+#define GRF_SOC_CON2 0xff77024c
 
 int arch_cpu_init(void)
 {