blob: 4b66cdb09686244197e3c7a501eb33d5f6d88fee [file] [log] [blame]
David Cunado1a853372017-10-20 11:30:57 +01001/*
Max Shvetsov0c5e7d12021-03-22 11:59:37 +00002 * Copyright (c) 2017-2021, 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
Max Shvetsov0c5e7d12021-03-22 11:59:37 +000010#include <context.h>
David Cunado1a853372017-10-20 11:30:57 +010011
Max Shvetsov0c5e7d12021-03-22 11:59:37 +000012void sve_enable(cpu_context_t *context);
johpow01dc78e622021-07-08 14:14:00 -050013void sve_disable(cpu_context_t *context);
Antonio Nino Diaz40daecc2018-10-25 16:52:26 +010014
15#endif /* SVE_H */