]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
mips: bmips: rework and cache CBR addr handling
authorChristian Marangi <ansuelsmth@gmail.com>
Thu, 20 Jun 2024 15:26:42 +0000 (17:26 +0200)
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>
Thu, 27 Jun 2024 08:44:24 +0000 (10:44 +0200)
Rework the handling of the CBR address and cache it. This address
doesn't change and can be cached instead of reading the register every
time.

This is in preparation of permitting to tweak the CBR address in DT with
broken SoC or bootloader.

bmips_cbr_addr is defined in setup.c for each arch to keep compatibility
with legacy brcm47xx/brcm63xx and generic BMIPS target.

Acked-by: Florian Fainelli <florian.fainelli@broadcom.com>
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
arch/mips/bcm47xx/prom.c
arch/mips/bcm47xx/setup.c
arch/mips/bcm63xx/prom.c
arch/mips/bcm63xx/setup.c
arch/mips/bmips/dma.c
arch/mips/bmips/setup.c
arch/mips/include/asm/bmips.h
arch/mips/kernel/smp-bmips.c

index 58fb7c2dc3b8a06074485880bb4eec5790a414fd..66e3ee2b04e6ba71aedbfa4a4c0a76826b898366 100644 (file)
@@ -32,6 +32,7 @@
 #include <linux/ssb/ssb_driver_chipcommon.h>
 #include <linux/ssb/ssb_regs.h>
 #include <linux/smp.h>
+#include <asm/bmips.h>
 #include <asm/bootinfo.h>
 #include <bcm47xx.h>
 #include <bcm47xx_board.h>
@@ -110,6 +111,8 @@ static __init void prom_init_mem(void)
 
 void __init prom_init(void)
 {
+       /* Cache CBR addr before CPU/DMA setup */
+       bmips_cbr_addr = BMIPS_GET_CBR();
        prom_init_mem();
        setup_8250_early_printk_port(CKSEG1ADDR(BCM47XX_SERIAL_ADDR), 0, 0);
 }
index 94bf839576c15a255f98c5041af9c6b71948c953..2f1ee0560aba5803d2748c2ab41d0ed6ab1119c9 100644 (file)
@@ -37,6 +37,7 @@
 #include <linux/ssb/ssb.h>
 #include <linux/ssb/ssb_embedded.h>
 #include <linux/bcma/bcma_soc.h>
+#include <asm/bmips.h>
 #include <asm/bootinfo.h>
 #include <asm/idle.h>
 #include <asm/prom.h>
@@ -45,6 +46,9 @@
 #include <bcm47xx.h>
 #include <bcm47xx_board.h>
 
+/* CBR addr doesn't change and we can cache it */
+void __iomem *bmips_cbr_addr __read_mostly;
+
 union bcm47xx_bus bcm47xx_bus;
 EXPORT_SYMBOL(bcm47xx_bus);
 
index c3a2ea62c5c301b67ac8742af8ad968abecdfdf9..f21dd168171a5fabefbcef229b49919e46bdbac4 100644 (file)
@@ -22,6 +22,9 @@ void __init prom_init(void)
 {
        u32 reg, mask;
 
+       /* Cache CBR addr before CPU/DMA setup */
+       bmips_cbr_addr = BMIPS_GET_CBR();
+
        bcm63xx_cpu_init();
 
        /* stop any running watchdog */
index c13ddb544a23bf0ebfd6bd627c9ed022a44cda0e..16ea8945ae3a7340fc06348bd4af863f8ffa0b49 100644 (file)
@@ -12,6 +12,7 @@
 #include <linux/memblock.h>
 #include <linux/ioport.h>
 #include <linux/pm.h>
+#include <asm/bmips.h>
 #include <asm/bootinfo.h>
 #include <asm/time.h>
 #include <asm/reboot.h>
@@ -22,6 +23,9 @@
 #include <bcm63xx_io.h>
 #include <bcm63xx_gpio.h>
 
+/* CBR addr doesn't change and we can cache it */
+void __iomem *bmips_cbr_addr __read_mostly;
+
 void bcm63xx_machine_halt(void)
 {
        pr_info("System halted\n");
index 3779e7855bd756be930077c659d401e74df7af05..2bc9c0d4402fdc8b0be618348e66a21ac672e841 100644 (file)
@@ -9,7 +9,7 @@ bool bmips_rac_flush_disable;
 
 void arch_sync_dma_for_cpu_all(void)
 {
-       void __iomem *cbr = BMIPS_GET_CBR();
+       void __iomem *cbr = bmips_cbr_addr;
        u32 cfg;
 
        if (boot_cpu_type() != CPU_BMIPS3300 &&
index 66a8ba19c28722875fa8754221b2b9c776d0b64d..6dd166c3d64381868b64a451abb95b6dfba2cd2f 100644 (file)
@@ -34,6 +34,9 @@
 #define REG_BCM6328_OTP                ((void __iomem *)CKSEG1ADDR(0x1000062c))
 #define BCM6328_TP1_DISABLED   BIT(9)
 
+/* CBR addr doesn't change and we can cache it */
+void __iomem *bmips_cbr_addr __read_mostly;
+
 extern bool bmips_rac_flush_disable;
 
 static const unsigned long kbase = VMLINUX_LOAD_ADDRESS & 0xfff00000;
@@ -111,7 +114,7 @@ static void bcm6358_quirks(void)
         * because the bootloader is not initializing it properly.
         */
        bmips_rac_flush_disable = !!(read_c0_brcm_cmt_local() & (1 << 31)) ||
-                                 !!BMIPS_GET_CBR();
+                                 !!bmips_cbr_addr;
 }
 
 static void bcm6368_quirks(void)
@@ -144,6 +147,8 @@ static void __init bmips_init_cfe(void)
 
 void __init prom_init(void)
 {
+       /* Cache CBR addr before CPU/DMA setup */
+       bmips_cbr_addr = BMIPS_GET_CBR();
        bmips_init_cfe();
        bmips_cpu_setup();
        register_bmips_smp_ops();
index 581a6a3c66e405c6ea23cdfefc45690a2fe43209..3a1cdfddb987ee5d6e4b9ed9636c0c916f38912e 100644 (file)
@@ -81,6 +81,7 @@ extern char bmips_smp_movevec[];
 extern char bmips_smp_int_vec[];
 extern char bmips_smp_int_vec_end[];
 
+extern void __iomem *bmips_cbr_addr;
 extern int bmips_smp_enabled;
 extern int bmips_cpu_offset;
 extern cpumask_t bmips_booted_mask;
index b3dbf9ecb0d63ea81102114b1886b0cd88b23cd8..a4f84667a9019661621bee12c93e1317f44f20f1 100644 (file)
@@ -518,7 +518,7 @@ static void bmips_set_reset_vec(int cpu, u32 val)
                info.val = val;
                bmips_set_reset_vec_remote(&info);
        } else {
-               void __iomem *cbr = BMIPS_GET_CBR();
+               void __iomem *cbr = bmips_cbr_addr;
 
                if (cpu == 0)
                        __raw_writel(val, cbr + BMIPS_RELO_VECTOR_CONTROL_0);
@@ -591,7 +591,7 @@ asmlinkage void __weak plat_wired_tlb_setup(void)
 
 void bmips_cpu_setup(void)
 {
-       void __iomem __maybe_unused *cbr = BMIPS_GET_CBR();
+       void __iomem __maybe_unused *cbr = bmips_cbr_addr;
        u32 __maybe_unused cfg;
 
        switch (current_cpu_type()) {