Home
last modified time | relevance | path

Searched refs:boot_reg (Results 1 – 3 of 3) sorted by relevance

/linux-4.1.27/arch/arm/mach-exynos/
Dplatsmp.c181 void __iomem *boot_reg; in cpu_boot_reg() local
183 boot_reg = cpu_boot_reg_base(); in cpu_boot_reg()
184 if (!boot_reg) in cpu_boot_reg()
187 boot_reg += 4*cpu; in cpu_boot_reg()
189 boot_reg += 4; in cpu_boot_reg()
190 return boot_reg; in cpu_boot_reg()
318 void __iomem *boot_reg = cpu_boot_reg(core_id); in exynos_boot_secondary() local
320 if (IS_ERR(boot_reg)) { in exynos_boot_secondary()
321 ret = PTR_ERR(boot_reg); in exynos_boot_secondary()
324 __raw_writel(boot_addr, boot_reg); in exynos_boot_secondary()
[all …]
Dfirmware.c88 void __iomem *boot_reg; in exynos_set_cpu_boot_addr() local
93 boot_reg = sysram_ns_base_addr + 0x1c; in exynos_set_cpu_boot_addr()
101 boot_reg += 4 * cpu; in exynos_set_cpu_boot_addr()
103 __raw_writel(boot_addr, boot_reg); in exynos_set_cpu_boot_addr()
/linux-4.1.27/arch/arm/mach-bcm/
Dkona_smp.c144 void __iomem *boot_reg; in bcm_boot_secondary() local
162 boot_reg = ioremap_nocache((phys_addr_t)secondary_boot, sizeof(u32)); in bcm_boot_secondary()
163 if (!boot_reg) { in bcm_boot_secondary()
178 writel_relaxed(boot_val, boot_reg); in bcm_boot_secondary()
184 while (!timeout && readl_relaxed(boot_reg) == boot_val) in bcm_boot_secondary()
187 iounmap(boot_reg); in bcm_boot_secondary()