ARM: renesas: Rename rmobile_get_cpu_rev_*() to renesas_get_cpu_rev_*()
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Tue, 27 Feb 2024 16:05:46 +0000 (17:05 +0100)
committerTom Rini <trini@konsulko.com>
Sat, 2 Mar 2024 19:29:36 +0000 (14:29 -0500)
Rename rmobile_get_cpu_rev_*() to renesas_get_cpu_rev_*() because
all the chips are made by Renesas, while only a subset of them is
from the R-Mobile line.

Use the following command to perform the rename:

"
$ git grep -l '\<rmobile_get_cpu_rev_\(integer\|fraction\)\>' | \
  xargs -I {} sed -i 's@\<rmobile_get_cpu_rev_\(integer\|fraction\)\>@renesas_get_cpu_rev_\1@g' {}
"

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Reviewed-by: Paul Barker <paul.barker.ct@bp.renesas.com>
16 files changed:
arch/arm/mach-rmobile/cpu_info-rcar.c
arch/arm/mach-rmobile/cpu_info-rzg2l.c
arch/arm/mach-rmobile/cpu_info.c
arch/arm/mach-rmobile/include/mach/r8a7790.h
arch/arm/mach-rmobile/include/mach/r8a7791.h
arch/arm/mach-rmobile/include/mach/r8a7793.h
arch/arm/mach-rmobile/include/mach/r8a7794.h
arch/arm/mach-rmobile/include/mach/rmobile.h
board/renesas/lager/lager.c
board/renesas/lager/qos.c
board/renesas/stout/qos.c
board/renesas/stout/stout.c
drivers/mmc/renesas-sdhi.c
drivers/pinctrl/renesas/pfc-r8a7790.c
drivers/pinctrl/renesas/pfc-r8a7794.c
drivers/spi/renesas_rpc_spi.c

index fe1795c..4c439ad 100644 (file)
@@ -26,7 +26,7 @@ u32 renesas_get_cpu_type(void)
        return (rmobile_get_prr() & 0x00007F00) >> 8;
 }
 
-u32 rmobile_get_cpu_rev_integer(void)
+u32 renesas_get_cpu_rev_integer(void)
 {
        const u32 prr = rmobile_get_prr();
        const u32 rev = prr & PRR_MASK;
@@ -38,7 +38,7 @@ u32 rmobile_get_cpu_rev_integer(void)
                return ((prr & 0x000000F0) >> 4) + 1;
 }
 
-u32 rmobile_get_cpu_rev_fraction(void)
+u32 renesas_get_cpu_rev_fraction(void)
 {
        const u32 prr = rmobile_get_prr();
        const u32 rev = prr & PRR_MASK;
index 6c0b50f..ce7cc2a 100644 (file)
@@ -52,12 +52,12 @@ u32 renesas_get_cpu_type(void)
        return get_tfa_info()->cpu_type;
 }
 
-u32 rmobile_get_cpu_rev_integer(void)
+u32 renesas_get_cpu_rev_integer(void)
 {
        return (readl(SYSC_LSI_DEVID) >> 28) + 1;
 }
 
-u32 rmobile_get_cpu_rev_fraction(void)
+u32 renesas_get_cpu_rev_fraction(void)
 {
        return 0;
 }
index c7fbf39..35cfef2 100644 (file)
@@ -47,14 +47,14 @@ static u32 __rmobile_get_cpu_rev_integer(void)
 {
        return 0;
 }
-u32 rmobile_get_cpu_rev_integer(void)
+u32 renesas_get_cpu_rev_integer(void)
                __attribute__((weak, alias("__rmobile_get_cpu_rev_integer")));
 
 static u32 __rmobile_get_cpu_rev_fraction(void)
 {
        return 0;
 }
-u32 rmobile_get_cpu_rev_fraction(void)
+u32 renesas_get_cpu_rev_fraction(void)
                __attribute__((weak, alias("__rmobile_get_cpu_rev_fraction")));
 
 /* CPU information table */
@@ -122,15 +122,15 @@ int print_cpuinfo(void)
        int i = rmobile_cpuinfo_idx();
 
        if (rmobile_cpuinfo[i].cpu_type == RMOBILE_CPU_TYPE_R8A7796 &&
-           rmobile_get_cpu_rev_integer() == 1 &&
-           rmobile_get_cpu_rev_fraction() == 1) {
+           renesas_get_cpu_rev_integer() == 1 &&
+           renesas_get_cpu_rev_fraction() == 1) {
                printf("CPU:   Renesas Electronics %s rev 1.1/1.2\n", get_cpu_name(i));
                return 0;
        }
 
        printf("CPU:   Renesas Electronics %s rev %d.%d\n",
-               get_cpu_name(i), rmobile_get_cpu_rev_integer(),
-               rmobile_get_cpu_rev_fraction());
+               get_cpu_name(i), renesas_get_cpu_rev_integer(),
+               renesas_get_cpu_rev_fraction());
 
        return 0;
 }
index 485ea7e..233531c 100644 (file)
@@ -28,6 +28,6 @@
 
 #define R8A7790_CUT_ES2X       2
 #define IS_R8A7790_ES2()       \
-       (rmobile_get_cpu_rev_integer() == R8A7790_CUT_ES2X)
+       (renesas_get_cpu_rev_integer() == R8A7790_CUT_ES2X)
 
 #endif /* __ASM_ARCH_R8A7790_H */
index 2006ad5..78a910c 100644 (file)
@@ -65,6 +65,6 @@
 
 #define R8A7791_CUT_ES2X       2
 #define IS_R8A7791_ES2()       \
-       (rmobile_get_cpu_rev_integer() == R8A7791_CUT_ES2X)
+       (renesas_get_cpu_rev_integer() == R8A7791_CUT_ES2X)
 
 #endif /* __ASM_ARCH_R8A7791_H */
index 02f4286..4cb0647 100644 (file)
@@ -71,6 +71,6 @@
 
 #define R8A7793_CUT_ES2X       2
 #define IS_R8A7793_ES2() \
-       (rmobile_get_cpu_rev_integer() == R8A7793_CUT_ES2X)
+       (renesas_get_cpu_rev_integer() == R8A7793_CUT_ES2X)
 
 #endif /* __ASM_ARCH_R8A7793_H */
index a2a949d..6d0d729 100644 (file)
@@ -28,6 +28,6 @@
 
 #define R8A7794_CUT_ES2                2
 #define IS_R8A7794_ES2()       \
-       (rmobile_get_cpu_rev_integer() == R8A7794_CUT_ES2)
+       (renesas_get_cpu_rev_integer() == R8A7794_CUT_ES2)
 
 #endif /* __ASM_ARCH_R8A7794_H */
index 464a67f..d41b737 100644 (file)
@@ -49,8 +49,8 @@
 
 const u8 *rzg_get_cpu_name(void);
 u32 renesas_get_cpu_type(void);
-u32 rmobile_get_cpu_rev_integer(void);
-u32 rmobile_get_cpu_rev_fraction(void);
+u32 renesas_get_cpu_rev_integer(void);
+u32 renesas_get_cpu_rev_fraction(void);
 #endif /* __ASSEMBLY__ */
 
 #endif /* __ASM_ARCH_RMOBILE_H */
index d9d4608..ab06078 100644 (file)
@@ -46,7 +46,7 @@ void s_init(void)
        writel(0xA5A5A500, &swdt->swtcsra);
 
        /* CPU frequency setting. Set to 1.4GHz */
-       if (rmobile_get_cpu_rev_integer() >= R8A7790_CUT_ES2X) {
+       if (renesas_get_cpu_rev_integer() >= R8A7790_CUT_ES2X) {
                u32 stat = 0;
                u32 stc = ((1400 / CLK2MHZ(get_board_sys_clk())) - 1)
                        << PLL0_STC_BIT;
index ddc831c..f7eade2 100644 (file)
@@ -2419,7 +2419,7 @@ static void qos_init_es2(void)
 
 void qos_init(void)
 {
-       if (rmobile_get_cpu_rev_integer() >= R8A7790_CUT_ES2X)
+       if (renesas_get_cpu_rev_integer() >= R8A7790_CUT_ES2X)
                qos_init_es2();
        else
                qos_init_es1();
index 9030ba7..8a87812 100644 (file)
@@ -2421,7 +2421,7 @@ static void qos_init_es2(void)
 
 void qos_init(void)
 {
-       if (rmobile_get_cpu_rev_integer() >= R8A7790_CUT_ES2X)
+       if (renesas_get_cpu_rev_integer() >= R8A7790_CUT_ES2X)
                qos_init_es2();
        else
                qos_init_es1();
index 46c48df..109e19a 100644 (file)
@@ -46,7 +46,7 @@ void s_init(void)
        writel(0xA5A5A500, &swdt->swtcsra);
 
        /* CPU frequency setting. Set to 1.4GHz */
-       if (rmobile_get_cpu_rev_integer() >= R8A7790_CUT_ES2X) {
+       if (renesas_get_cpu_rev_integer() >= R8A7790_CUT_ES2X) {
                u32 stat = 0;
                u32 stc = ((1400 / CLK2MHZ(get_board_sys_clk())) - 1)
                        << PLL0_STC_BIT;
index 4b7cf77..03e360e 100644 (file)
@@ -886,29 +886,29 @@ static void renesas_sdhi_filter_caps(struct udevice *dev)
 
        /* HS400 is not supported on H3 ES1.x, M3W ES1.[012], V3M, V3H ES1.x, D3 */
        if (((renesas_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7795) &&
-           (rmobile_get_cpu_rev_integer() <= 1)) ||
+           (renesas_get_cpu_rev_integer() <= 1)) ||
            ((renesas_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7796) &&
-           (rmobile_get_cpu_rev_integer() == 1) &&
-           (rmobile_get_cpu_rev_fraction() <= 2)) ||
+           (renesas_get_cpu_rev_integer() == 1) &&
+           (renesas_get_cpu_rev_fraction() <= 2)) ||
            (renesas_get_cpu_type() == RMOBILE_CPU_TYPE_R8A77970) ||
            ((renesas_get_cpu_type() == RMOBILE_CPU_TYPE_R8A77980) &&
-           (rmobile_get_cpu_rev_integer() <= 1)) ||
+           (renesas_get_cpu_rev_integer() <= 1)) ||
            (renesas_get_cpu_type() == RMOBILE_CPU_TYPE_R8A77995))
                plat->cfg.host_caps &= ~MMC_MODE_HS400;
 
        /* H3 ES2.0, ES3.0 and M3W ES1.2 and M3N bad taps */
        if (((renesas_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7795) &&
-           (rmobile_get_cpu_rev_integer() >= 2)) ||
+           (renesas_get_cpu_rev_integer() >= 2)) ||
            ((renesas_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7796) &&
-           (rmobile_get_cpu_rev_integer() == 1) &&
-           (rmobile_get_cpu_rev_fraction() == 2)) ||
+           (renesas_get_cpu_rev_integer() == 1) &&
+           (renesas_get_cpu_rev_fraction() == 2)) ||
            (renesas_get_cpu_type() == RMOBILE_CPU_TYPE_R8A77965))
                priv->hs400_bad_tap = BIT(2) | BIT(3) | BIT(6) | BIT(7);
 
        /* M3W ES1.x for x>2 can use HS400 with manual adjustment and taps */
        if ((renesas_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7796) &&
-           (rmobile_get_cpu_rev_integer() == 1) &&
-           (rmobile_get_cpu_rev_fraction() > 2)) {
+           (renesas_get_cpu_rev_integer() == 1) &&
+           (renesas_get_cpu_rev_fraction() > 2)) {
                priv->adjust_hs400_enable = true;
                priv->adjust_hs400_offset = 3;
                priv->hs400_bad_tap = BIT(1) | BIT(3) | BIT(5) | BIT(7);
@@ -918,7 +918,7 @@ static void renesas_sdhi_filter_caps(struct udevice *dev)
 
        /* M3W+ bad taps */
        if ((renesas_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7796) &&
-           (rmobile_get_cpu_rev_integer() == 3))
+           (renesas_get_cpu_rev_integer() == 3))
                priv->hs400_bad_tap = BIT(1) | BIT(3) | BIT(5) | BIT(7);
 
        /* M3N can use HS400 with manual adjustment */
@@ -939,20 +939,20 @@ static void renesas_sdhi_filter_caps(struct udevice *dev)
 
        /* H3 ES1.x, ES2.0 and M3W ES1.[0123] uses 4 tuning taps */
        if (((renesas_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7795) &&
-           (rmobile_get_cpu_rev_integer() <= 2)) ||
+           (renesas_get_cpu_rev_integer() <= 2)) ||
            ((renesas_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7796) &&
-           (rmobile_get_cpu_rev_integer() == 1) &&
-           (rmobile_get_cpu_rev_fraction() <= 3)))
+           (renesas_get_cpu_rev_integer() == 1) &&
+           (renesas_get_cpu_rev_fraction() <= 3)))
                priv->nrtaps = 4;
        else
                priv->nrtaps = 8;
 #endif
        /* H3 ES1.x and M3W ES1.0 uses bit 17 for DTRAEND */
        if (((renesas_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7795) &&
-           (rmobile_get_cpu_rev_integer() <= 1)) ||
+           (renesas_get_cpu_rev_integer() <= 1)) ||
            ((renesas_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7796) &&
-           (rmobile_get_cpu_rev_integer() == 1) &&
-           (rmobile_get_cpu_rev_fraction() == 0)))
+           (renesas_get_cpu_rev_integer() == 1) &&
+           (renesas_get_cpu_rev_fraction() == 0)))
                priv->read_poll_flag = TMIO_SD_DMA_INFO1_END_RD;
        else
                priv->read_poll_flag = TMIO_SD_DMA_INFO1_END_RD2;
index e1811c4..acd6b01 100644 (file)
@@ -6117,8 +6117,8 @@ static const struct pinmux_bias_reg pinmux_bias_regs[] = {
 static int r8a7790_pinmux_soc_init(struct sh_pfc *pfc)
 {
        /* Initialize TDSEL on old revisions */
-       if ((rmobile_get_cpu_rev_integer() == 1) &&
-           (rmobile_get_cpu_rev_fraction() == 0))
+       if ((renesas_get_cpu_rev_integer() == 1) &&
+           (renesas_get_cpu_rev_fraction() == 0))
                sh_pfc_write(pfc, 0xe6060088, 0x00155554);
 
        return 0;
index 29eab26..2f55021 100644 (file)
@@ -5818,8 +5818,8 @@ static const struct pinmux_bias_reg pinmux_bias_regs[] = {
 static int r8a7794_pinmux_soc_init(struct sh_pfc *pfc)
 {
        /* Initialize TDSEL on old revisions */
-       if ((rmobile_get_cpu_rev_integer() == 1) &&
-           (rmobile_get_cpu_rev_fraction() == 0))
+       if ((renesas_get_cpu_rev_integer() == 1) &&
+           (renesas_get_cpu_rev_fraction() == 0))
                sh_pfc_write(pfc, 0xe6060068, 0x55555500);
 
        return 0;
index 8a93d1b..165c0a1 100644 (file)
@@ -212,7 +212,7 @@ static u32 rpc_spi_get_strobe_delay(void)
         *       7: On other R-Car Gen3
         *      15: On R-Car Gen4
         */
-       if (cpu_type == RMOBILE_CPU_TYPE_R8A7796 && rmobile_get_cpu_rev_integer() == 1)
+       if (cpu_type == RMOBILE_CPU_TYPE_R8A7796 && renesas_get_cpu_rev_integer() == 1)
                return RPC_PHYCNT_STRTIM(6);
        else if (cpu_type == RMOBILE_CPU_TYPE_R8A779F0 ||
                 cpu_type == RMOBILE_CPU_TYPE_R8A779G0 ||