brintos

brintos / linux-shallow public Read only

0
0
Text · 376 B · 50948ce Raw
22 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * Copyright (C) 2024 ARM Limited4 *5 * Common helper functions for SVE and SME functionality.6 */7 8#ifndef __SVE_HELPERS_H__9#define __SVE_HELPERS_H__10 11#include <stdbool.h>12 13#define VLS_USE_SVE	false14#define VLS_USE_SME	true15 16extern unsigned int vls[];17extern unsigned int nvls;18 19int sve_fill_vls(bool use_sme, int min_vls);20 21#endif22