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