blob: c2dedbf9ec31b26fe483e2bb2cfc43f6b125e4e8 [file] [log] [blame]
Daniel Boulbyf7d9a782021-05-13 11:13:54 +01001/*
2 * Copyright 2021 The Hafnium Authors.
3 *
4 * Use of this source code is governed by a BSD-style
5 * license that can be found in the LICENSE file or at
6 * https://opensource.org/licenses/BSD-3-Clause.
7 */
8
Daniel Boulbyf7d9a782021-05-13 11:13:54 +01009#include "hf/arch/plat/psci.h"
10
11/**
12 * Performs arch specific boot time initialization.
13 */
14void arch_one_time_init(void)
15{
16 plat_psci_init();
Daniel Boulbyf7d9a782021-05-13 11:13:54 +010017}