1 /* 2 * Copyright (c) 2018-2021, The Linux Foundation. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef __QTISECLIB_DEFS_PLAT_H__ 8 #define __QTISECLIB_DEFS_PLAT_H__ 9 10 #define QTISECLIB_PLAT_CLUSTER_COUNT 1 11 #define QTISECLIB_PLAT_CORE_COUNT 8 12 13 /*----------------------------------------------------------------------------*/ 14 /* AOP CMD DB address space for mapping */ 15 /*----------------------------------------------------------------------------*/ 16 #define QTI_AOP_CMD_DB_BASE 0x80860000 17 #define QTI_AOP_CMD_DB_SIZE 0x00020000 18 19 /* Chipset specific secure interrupt number/ID defs. */ 20 #define QTISECLIB_INT_ID_SEC_WDOG_BARK (0x204) 21 #define QTISECLIB_INT_ID_NON_SEC_WDOG_BITE (0x21) 22 23 #define QTISECLIB_INT_ID_VMIDMT_ERR_CLT_SEC (0xE6) 24 #define QTISECLIB_INT_ID_VMIDMT_ERR_CLT_NONSEC (0xE7) 25 #define QTISECLIB_INT_ID_VMIDMT_ERR_CFG_SEC (0xE8) 26 #define QTISECLIB_INT_ID_VMIDMT_ERR_CFG_NONSEC (0xE9) 27 28 #define QTISECLIB_INT_ID_XPU_SEC (0xE3) 29 #define QTISECLIB_INT_ID_XPU_NON_SEC (0xE4) 30 31 //NOC INterrupt 32 #define QTISECLIB_INT_ID_A1_NOC_ERROR (0xC9) 33 #define QTISECLIB_INT_ID_A2_NOC_ERROR (0xEA) 34 #define QTISECLIB_INT_ID_CONFIG_NOC_ERROR (0xE2) 35 #define QTISECLIB_INT_ID_DC_NOC_ERROR (0x122) 36 #define QTISECLIB_INT_ID_MEM_NOC_ERROR (0x6C) 37 #define QTISECLIB_INT_ID_SYSTEM_NOC_ERROR (0xC8) 38 #define QTISECLIB_INT_ID_MMSS_NOC_ERROR (0xBA) 39 #define QTISECLIB_INT_ID_LPASS_AGNOC_ERROR (0x143) 40 #define QTISECLIB_INT_ID_NSP_NOC_ERROR (0x1CE) 41 42 #endif /* __QTISECLIB_DEFS_PLAT_H__ */ 43