spe.h 286 Bytes
Newer Older
1
/*
2
 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
3
4
5
6
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

7
8
#ifndef SPE_H
#define SPE_H
9

10
11
12
13
#include <stdbool.h>

bool spe_supported(void);
void spe_enable(bool el2_unused);
14
15
void spe_disable(void);

16
#endif /* SPE_H */