]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
clk: renesas: Fix Realtime Module Stop Control Register offsets
authorHai Pham <hai.pham.ud@renesas.com>
Tue, 19 May 2020 10:42:05 +0000 (17:42 +0700)
committerMarek Vasut <marek.vasut+renesas@gmail.com>
Fri, 21 May 2021 13:00:17 +0000 (15:00 +0200)
This patch fixes Realtime Module Stop Control Register (RMSTPCR) offsets
based on R-Car Gen3, H2/M2/M2N/E2/E2X hardware user's manual.
The r8a73a4 only has RMSTPCR0 - RMSTPCR5 so this calculation change
doesn't affect it.

Signed-off-by: Hai Pham <hai.pham.ud@renesas.com>
Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
drivers/clk/renesas/renesas-cpg-mssr.c

index 7c1222f6c8cea64d9f5e3bacd4ff040125ae4d24..bed2a16448a4083050cf9dab119732bd6791bcc0 100644 (file)
@@ -55,7 +55,7 @@ static const u16 smstpcr[] = {
 
 
 /* Realtime Module Stop Control Register offsets */
-#define RMSTPCR(i)     (smstpcr[i] - 0x20)
+#define RMSTPCR(i)     ((i) < 8 ? smstpcr[i] - 0x20 : smstpcr[i] - 0x10)
 
 /* Modem Module Stop Control Register offsets (r8a73a4) */
 #define MMSTPCR(i)     (smstpcr[i] + 0x20)