aboutsummaryrefslogtreecommitdiff
path: root/core/arch/arm/plat-rockchip/plat_init.S
blob: fb084afd2e67352d85d6a9115bcb0870335debff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (C) 2017, Fuzhou Rockchip Electronics Co., Ltd.
 */

#include <asm.S>
#include <arm.h>
#include <arm32_macros.S>

FUNC plat_cpu_reset_early , :

	/* Enable SMP bit */
	read_actlr  r0
	orr     r0, r0, #ACTLR_SMP
	write_actlr r0
	bx	lr
END_FUNC plat_cpu_reset_early