Loading...
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 <gregory.clement@free-electrons.com>
9 * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 */
11
12#include <linux/linkage.h>
13
14#include <asm/assembler.h>
15
16ENTRY(mvebu_cortex_a9_secondary_startup)
17ARM_BE8(setend be)
18 bl armada_38x_scu_power_up
19 b secondary_startup
20ENDPROC(mvebu_cortex_a9_secondary_startup)
1/*
2 * SMP support: Entry point for secondary CPUs of Marvell EBU
3 * Cortex-A9 based SOCs (Armada 375 and Armada 38x).
4 *
5 * Copyright (C) 2014 Marvell
6 *
7 * Gregory CLEMENT <gregory.clement@free-electrons.com>
8 * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 *
10 * This file is licensed under the terms of the GNU General Public
11 * License version 2. This program is licensed "as is" without any
12 * warranty of any kind, whether express or implied.
13 */
14
15#include <linux/linkage.h>
16
17#include <asm/assembler.h>
18
19ENTRY(mvebu_cortex_a9_secondary_startup)
20ARM_BE8(setend be)
21 bl armada_38x_scu_power_up
22 b secondary_startup
23ENDPROC(mvebu_cortex_a9_secondary_startup)