2009-04-28 17:21:52 +02:00
|
|
|
/*
|
|
|
|
* Secondary CPU startup routine source file.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Texas Instruments, Inc.
|
|
|
|
*
|
|
|
|
* Author:
|
|
|
|
* Santosh Shilimkar <santosh.shilimkar@ti.com>
|
|
|
|
*
|
|
|
|
* Interface functions needed for the SMP. This file is based on arm
|
|
|
|
* realview smp platform.
|
|
|
|
* Copyright (c) 2003 ARM Limited.
|
|
|
|
*
|
|
|
|
* This program is free software,you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/linkage.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
|
2012-02-07 11:34:01 +01:00
|
|
|
__CPUINIT
|
2012-03-19 14:59:41 +01:00
|
|
|
|
|
|
|
/* Physical address needed since MMU not enabled yet on secondary core */
|
|
|
|
#define AUX_CORE_BOOT0_PA 0x48281800
|
|
|
|
|
|
|
|
/*
|
|
|
|
* OMAP5 specific entry point for secondary CPU to jump from ROM
|
|
|
|
* code. This routine also provides a holding flag into which
|
|
|
|
* secondary core is held until we're ready for it to initialise.
|
|
|
|
* The primary core will update this flag using a hardware
|
|
|
|
+ * register AuxCoreBoot0.
|
|
|
|
*/
|
|
|
|
ENTRY(omap5_secondary_startup)
|
|
|
|
wait: ldr r2, =AUX_CORE_BOOT0_PA @ read from AuxCoreBoot0
|
|
|
|
ldr r0, [r2]
|
|
|
|
mov r0, r0, lsr #5
|
|
|
|
mrc p15, 0, r4, c0, c0, 5
|
|
|
|
and r4, r4, #0x0f
|
|
|
|
cmp r0, r4
|
|
|
|
bne wait
|
|
|
|
b secondary_startup
|
|
|
|
END(omap5_secondary_startup)
|
2009-04-28 17:21:52 +02:00
|
|
|
/*
|
|
|
|
* OMAP4 specific entry point for secondary CPU to jump from ROM
|
|
|
|
* code. This routine also provides a holding flag into which
|
|
|
|
* secondary core is held until we're ready for it to initialise.
|
2009-12-12 01:16:35 +01:00
|
|
|
* The primary core will update this flag using a hardware
|
|
|
|
* register AuxCoreBoot0.
|
2009-04-28 17:21:52 +02:00
|
|
|
*/
|
|
|
|
ENTRY(omap_secondary_startup)
|
2009-12-12 01:16:35 +01:00
|
|
|
hold: ldr r12,=0x103
|
|
|
|
dsb
|
2010-04-07 09:47:21 +02:00
|
|
|
smc #0 @ read from AuxCoreBoot0
|
2009-12-12 01:16:35 +01:00
|
|
|
mov r0, r0, lsr #9
|
|
|
|
mrc p15, 0, r4, c0, c0, 5
|
|
|
|
and r4, r4, #0x0f
|
|
|
|
cmp r0, r4
|
2009-04-28 17:21:52 +02:00
|
|
|
bne hold
|
|
|
|
|
|
|
|
/*
|
2009-12-12 01:16:35 +01:00
|
|
|
* we've been released from the wait loop,secondary_stack
|
2009-04-28 17:21:52 +02:00
|
|
|
* should now contain the SVC stack for this core
|
|
|
|
*/
|
|
|
|
b secondary_startup
|
2011-03-04 16:33:54 +01:00
|
|
|
ENDPROC(omap_secondary_startup)
|
2009-04-28 17:21:52 +02:00
|
|
|
|