brintos

brintos / linux-shallow public Read only

0
0
Text · 1.7 KiB · 38c47f5 Raw
59 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2 3/* Copyright (c) 2012-2018, The Linux Foundation. All rights reserved.4 * Copyright (C) 2019-2024 Linaro Ltd.5 */6#ifndef _IPA_VERSION_H_7#define _IPA_VERSION_H_8 9#include <linux/types.h>10 11/**12 * enum ipa_version13 * @IPA_VERSION_3_0:	IPA version 3.0/GSI version 1.014 * @IPA_VERSION_3_1:	IPA version 3.1/GSI version 1.015 * @IPA_VERSION_3_5:	IPA version 3.5/GSI version 1.216 * @IPA_VERSION_3_5_1:	IPA version 3.5.1/GSI version 1.317 * @IPA_VERSION_4_0:	IPA version 4.0/GSI version 2.018 * @IPA_VERSION_4_1:	IPA version 4.1/GSI version 2.019 * @IPA_VERSION_4_2:	IPA version 4.2/GSI version 2.220 * @IPA_VERSION_4_5:	IPA version 4.5/GSI version 2.521 * @IPA_VERSION_4_7:	IPA version 4.7/GSI version 2.722 * @IPA_VERSION_4_9:	IPA version 4.9/GSI version 2.923 * @IPA_VERSION_4_11:	IPA version 4.11/GSI version 2.11 (2.1.1)24 * @IPA_VERSION_5_0:	IPA version 5.0/GSI version 3.025 * @IPA_VERSION_5_1:	IPA version 5.1/GSI version 3.026 * @IPA_VERSION_5_5:	IPA version 5.5/GSI version 5.527 * @IPA_VERSION_COUNT:	Number of defined IPA versions28 *29 * Defines the version of IPA (and GSI) hardware present on the platform.30 * Please update ipa_version_string() whenever a new version is added.31 */32enum ipa_version {33	IPA_VERSION_3_0,34	IPA_VERSION_3_1,35	IPA_VERSION_3_5,36	IPA_VERSION_3_5_1,37	IPA_VERSION_4_0,38	IPA_VERSION_4_1,39	IPA_VERSION_4_2,40	IPA_VERSION_4_5,41	IPA_VERSION_4_7,42	IPA_VERSION_4_9,43	IPA_VERSION_4_11,44	IPA_VERSION_5_0,45	IPA_VERSION_5_1,46	IPA_VERSION_5_5,47	IPA_VERSION_COUNT,			/* Last; not a version */48};49 50/* Execution environment IDs */51enum gsi_ee_id {52	GSI_EE_AP		= 0x0,53	GSI_EE_MODEM		= 0x1,54	GSI_EE_UC		= 0x2,55	GSI_EE_TZ		= 0x3,56};57 58#endif /* _IPA_VERSION_H_ */59