blob: d183cd234a9bb68fe3c387718c89ed39d3499452 [file] [log] [blame]
Michal Simekaa7eb2b2013-03-20 13:50:12 +01001/*
2 * Copyright (c) 2013 Steffen Trumtrar <s.trumtrar@pengutronix.de>
3 * Copyright (c) 2012-2013 Xilinx
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9#include <linux/linkage.h>
10#include <linux/init.h>
11
12 __CPUINIT
13
14ENTRY(zynq_secondary_trampoline)
15 ldr r0, [pc]
16 bx r0
17.globl zynq_secondary_trampoline_jump
18zynq_secondary_trampoline_jump:
19 /* Space for jumping address */
20 .word /* cpu 1 */
21.globl zynq_secondary_trampoline_end
22zynq_secondary_trampoline_end:
23
24ENDPROC(zynq_secondary_trampoline)