Lines Matching refs:boot_reg
196 void __iomem *boot_reg; in cpu_boot_reg() local
198 boot_reg = cpu_boot_reg_base(); in cpu_boot_reg()
199 if (!boot_reg) in cpu_boot_reg()
202 boot_reg += 4*cpu; in cpu_boot_reg()
204 boot_reg += 4; in cpu_boot_reg()
205 return boot_reg; in cpu_boot_reg()
281 void __iomem *boot_reg = cpu_boot_reg(core_id); in exynos_set_boot_addr() local
283 if (IS_ERR(boot_reg)) { in exynos_set_boot_addr()
284 ret = PTR_ERR(boot_reg); in exynos_set_boot_addr()
287 writel_relaxed(boot_addr, boot_reg); in exynos_set_boot_addr()
306 void __iomem *boot_reg = cpu_boot_reg(core_id); in exynos_get_boot_addr() local
308 if (IS_ERR(boot_reg)) { in exynos_get_boot_addr()
309 ret = PTR_ERR(boot_reg); in exynos_get_boot_addr()
312 *boot_addr = readl_relaxed(boot_reg); in exynos_get_boot_addr()