global: Migrate CONFIG_SAR_REG to CFG
authorTom Rini <trini@konsulko.com>
Sun, 4 Dec 2022 15:13:42 +0000 (10:13 -0500)
committerTom Rini <trini@konsulko.com>
Fri, 23 Dec 2022 15:15:11 +0000 (10:15 -0500)
Perform a simple rename of CONFIG_SAR_REG to CFG_SAR_REG

Signed-off-by: Tom Rini <trini@konsulko.com>
arch/arm/mach-kirkwood/include/mach/kw88f6281.h
arch/arm/mach-kirkwood/include/mach/soc.h
arch/arm/mach-mvebu/cpu.c
arch/arm/mach-mvebu/include/mach/soc.h

index 7f8e156..67f0b3e 100644 (file)
@@ -15,7 +15,7 @@
 #define KW_REGS_PHY_BASE               KW88F6281_REGS_PHYS_BASE
 
 /* TCLK Core Clock definition */
-#define CFG_SYS_TCLK                   ((readl(CONFIG_SAR_REG) & BIT(21)) ? \
+#define CFG_SYS_TCLK                   ((readl(CFG_SAR_REG) & BIT(21)) ? \
                                        166666667 : 200000000)
 
 #endif /* _ASM_ARCH_KW88F6281_H */
index 5f545c6..4a7efc5 100644 (file)
@@ -62,7 +62,7 @@
 #define MVCPU_WIN_ENABLE       KWCPU_WIN_ENABLE
 #define MVCPU_WIN_DISABLE      KWCPU_WIN_DISABLE
 
-#define CONFIG_SAR_REG         (KW_MPP_BASE + 0x0030)
+#define CFG_SAR_REG            (KW_MPP_BASE + 0x0030)
 
 #if defined (CONFIG_KW88F6281)
 #include <asm/arch/kw88f6281.h>
index 9139df1..329d136 100644 (file)
@@ -83,7 +83,7 @@ u32 get_boot_device(void)
        /*
         * Now check the SAR register for the strapped boot-device
         */
-       val = readl(CONFIG_SAR_REG);    /* SAR - Sample At Reset */
+       val = readl(CFG_SAR_REG);       /* SAR - Sample At Reset */
        boot_device = (val & BOOT_DEV_SEL_MASK) >> BOOT_DEV_SEL_OFFS;
        debug("SAR_REG=0x%08x boot_device=0x%x\n", val, boot_device);
        switch (boot_device) {
@@ -197,7 +197,7 @@ void get_sar_freq(struct sar_freq_modes *sar_freq)
 #if defined(CONFIG_ARMADA_375) || defined(CONFIG_ARMADA_MSYS)
        val = readl(CFG_SAR2_REG);      /* SAR - Sample At Reset */
 #else
-       val = readl(CONFIG_SAR_REG);    /* SAR - Sample At Reset */
+       val = readl(CFG_SAR_REG);       /* SAR - Sample At Reset */
 #endif
        freq = (val & SAR_CPU_FREQ_MASK) >> SAR_CPU_FREQ_OFFS;
 #if defined(SAR2_CPU_FREQ_MASK)
index 1210d26..6edd2e2 100644 (file)
 
 #if defined(CONFIG_ARMADA_375)
 /* SAR values for Armada 375 */
-#define CONFIG_SAR_REG         (MVEBU_REGISTER(0xe8200))
+#define CFG_SAR_REG            (MVEBU_REGISTER(0xe8200))
 #define CFG_SAR2_REG           (MVEBU_REGISTER(0xe8204))
 
 #define SAR_CPU_FREQ_OFFS      17
 #define BOOT_FROM_UART         0x30
 #define BOOT_FROM_SPI          0x38
 
-#define CFG_SYS_TCLK           ((readl(CONFIG_SAR_REG) & BIT(20)) ? \
+#define CFG_SYS_TCLK           ((readl(CFG_SAR_REG) & BIT(20)) ? \
                                 200000000 : 166000000)
 #elif defined(CONFIG_ARMADA_38X)
 /* SAR values for Armada 38x */
-#define CONFIG_SAR_REG         (MVEBU_REGISTER(0x18600))
+#define CFG_SAR_REG            (MVEBU_REGISTER(0x18600))
 
 #define SAR_CPU_FREQ_OFFS      10
 #define SAR_CPU_FREQ_MASK      (0x1f << SAR_CPU_FREQ_OFFS)
 #define BOOT_FROM_MMC          0x30
 #define BOOT_FROM_MMC_ALT      0x31
 
-#define CFG_SYS_TCLK           ((readl(CONFIG_SAR_REG) & BIT(15)) ? \
+#define CFG_SYS_TCLK           ((readl(CFG_SAR_REG) & BIT(15)) ? \
                                 200000000 : 250000000)
 #elif defined(CONFIG_ARMADA_MSYS)
 /* SAR values for MSYS */
-#define CONFIG_SAR_REG         (MBUS_DFX_BASE  + 0xf8200)
+#define CFG_SAR_REG            (MBUS_DFX_BASE  + 0xf8200)
 #define CFG_SAR2_REG           (MBUS_DFX_BASE  + 0xf8204)
 
 #define SAR_CPU_FREQ_OFFS      18
 #define CFG_SYS_TCLK           200000000       /* 200MHz */
 #elif defined(CONFIG_ARMADA_XP)
 /* SAR values for Armada XP */
-#define CONFIG_SAR_REG         (MVEBU_REGISTER(0x18230))
+#define CFG_SAR_REG            (MVEBU_REGISTER(0x18230))
 #define CFG_SAR2_REG           (MVEBU_REGISTER(0x18234))
 
 #define SAR_CPU_FREQ_OFFS      21