Lines Matching full:relocation
69 * [2]: relocation address
70 * [3]: relocation size
272 void __iomem *relocation; in hip04_smp_init() local
295 relocation = ioremap(hip04_boot_method[2], hip04_boot_method[3]); in hip04_smp_init()
296 if (!relocation) { in hip04_smp_init()
297 pr_err("failed to map relocation space\n"); in hip04_smp_init()
330 writel_relaxed(hip04_boot_method[0], relocation); in hip04_smp_init()
331 writel_relaxed(0xa5a5a5a5, relocation + 4); /* magic number */ in hip04_smp_init()
332 writel_relaxed(__pa_symbol(secondary_startup), relocation + 8); in hip04_smp_init()
333 writel_relaxed(0, relocation + 12); in hip04_smp_init()
334 iounmap(relocation); in hip04_smp_init()
343 iounmap(relocation); in hip04_smp_init()