blob: 83df1775e57b9eb4ef4028249b22129304875f67 [file] [log] [blame]
David Cunadoce88eee2017-10-20 11:30:57 +01001/*
Dimitris Papastamos5e8cd792018-02-19 14:52:19 +00002 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
David Cunadoce88eee2017-10-20 11:30:57 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +01007#ifndef SVE_H
8#define SVE_H
David Cunadoce88eee2017-10-20 11:30:57 +01009
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +010010#include <stdbool.h>
11
12bool sve_supported(void);
13void sve_enable(bool el2_unused);
David Cunadoce88eee2017-10-20 11:30:57 +010014
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +010015#endif /* SVE_H */