blob: bcadd609a45c306a6f036e6cb510be7fa323a888 [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
9#include "hf/arch/ffa.h"
10#include "hf/arch/plat/psci.h"
11
12/**
13 * Performs arch specific boot time initialization.
14 */
15void arch_one_time_init(void)
16{
17 plat_psci_init();
18 arch_ffa_init();
19}