Daniel Boulby | f7d9a78 | 2021-05-13 11:13:54 +0100 | [diff] [blame^] | 1 | /* |
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 | */ | ||||
15 | void arch_one_time_init(void) | ||||
16 | { | ||||
17 | plat_psci_init(); | ||||
18 | arch_ffa_init(); | ||||
19 | } |