blob: 01dbfa75cb2b1b1ff8649d02a824e8ee7bdaec50 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kever Yangaa827752017-11-28 16:04:16 +08002/*
3 * Copyright (c) 2017 Rockchip Electronics Co., Ltd
Kever Yangaa827752017-11-28 16:04:16 +08004 */
Kever Yangdfc8a7d2019-07-22 20:02:02 +08005#include <common.h>
Simon Glass97589732020-05-10 11:40:02 -06006#include <init.h>
Simon Glass3ba929a2020-10-30 21:38:53 -06007#include <asm/global_data.h>
Kever Yangdfc8a7d2019-07-22 20:02:02 +08008
9DECLARE_GLOBAL_DATA_PTR;
Kever Yangaa827752017-11-28 16:04:16 +080010
11int arch_cpu_init(void)
12{
13 /* We do some SoC one time setting here. */
14
15 return 0;
16}