Lines Matching refs:boot_reg
194 void __iomem *boot_reg; in cpu_boot_reg() local
196 boot_reg = cpu_boot_reg_base(); in cpu_boot_reg()
197 if (!boot_reg) in cpu_boot_reg()
200 boot_reg += 4*cpu; in cpu_boot_reg()
202 boot_reg += 4; in cpu_boot_reg()
203 return boot_reg; in cpu_boot_reg()
279 void __iomem *boot_reg = cpu_boot_reg(core_id); in exynos_set_boot_addr() local
281 if (IS_ERR(boot_reg)) { in exynos_set_boot_addr()
282 ret = PTR_ERR(boot_reg); in exynos_set_boot_addr()
285 writel_relaxed(boot_addr, boot_reg); in exynos_set_boot_addr()
304 void __iomem *boot_reg = cpu_boot_reg(core_id); in exynos_get_boot_addr() local
306 if (IS_ERR(boot_reg)) { in exynos_get_boot_addr()
307 ret = PTR_ERR(boot_reg); in exynos_get_boot_addr()
310 *boot_addr = readl_relaxed(boot_reg); in exynos_get_boot_addr()