Lines Matching refs:relocation
66 * [2]: relocation address
67 * [3]: relocation size
269 void __iomem *relocation;
292 relocation = ioremap(hip04_boot_method[2], hip04_boot_method[3]);
293 if (!relocation) {
294 pr_err("failed to map relocation space\n");
327 writel_relaxed(hip04_boot_method[0], relocation);
328 writel_relaxed(0xa5a5a5a5, relocation + 4); /* magic number */
329 writel_relaxed(__pa_symbol(secondary_startup), relocation + 8);
330 writel_relaxed(0, relocation + 12);
331 iounmap(relocation);
340 iounmap(relocation);