Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/arm/mach-mvebu/headsmp-a9.S
26292 views
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
/*
3
* SMP support: Entry point for secondary CPUs of Marvell EBU
4
* Cortex-A9 based SOCs (Armada 375 and Armada 38x).
5
*
6
* Copyright (C) 2014 Marvell
7
*
8
* Gregory CLEMENT <[email protected]>
9
* Thomas Petazzoni <[email protected]>
10
*/
11
12
#include <linux/linkage.h>
13
14
#include <asm/assembler.h>
15
16
ENTRY(mvebu_cortex_a9_secondary_startup)
17
ARM_BE8(setend be)
18
bl armada_38x_scu_power_up
19
b secondary_startup
20
ENDPROC(mvebu_cortex_a9_secondary_startup)
21
22