// SPDX-License-Identifier: GPL-2.0 /* * Copyright (c) 2020 MediaTek Inc. */ #ifndef __APUSYS_MDW_MEM_AEE_H__ #define __APUSYS_MDW_MEM_AEE_H__ #include #include #include #include #include #ifdef CONFIG_MTK_AEE_FEATURE #include #endif #include "mdw_cmn.h" #define AEE_KEY "APUMEM" #define AEE_LOG_SIZE 100 #define DUMP_LOG_SIZE 0x1000 #ifdef CONFIG_MTK_AEE_FEATURE #define apusys_aee_print(string, args...) do {\ char msg[AEE_LOG_SIZE];\ int n = 0;\ n = snprintf(msg, AEE_LOG_SIZE, string, ##args); \ if (n < 0 || n > AEE_LOG_SIZE) { \ mdw_drv_err("AEE_LOG_SIZE invalid %d\n", n); \ break; \ } \ aee_kernel_warning(AEE_KEY, \ "\nCRDISPATCH_KEY: " AEE_KEY "\n"string, ##args); \ mdw_drv_err(string, ##args); \ } while (0) #else #define apusys_aee_print(string, args...) do {\ char msg[AEE_LOG_SIZE];\ int n = 0;\ n = snprintf(msg, AEE_LOG_SIZE, string, ##args); \ if (n < 0 || n > AEE_LOG_SIZE) { \ mdw_drv_err("AEE_LOG_SIZE invalid %d\n", n); \ break; \ } \ mdw_drv_err(string, ##args); \ } while (0) #endif #define DUMP_LOG(cur, end, string, args...) do {\ if (cur < end) { \ cur += snprintf(cur, end - cur, string, ##args); \ } \ } while (0) struct mdw_usr_mem_aee { unsigned char log_buf[DUMP_LOG_SIZE]; struct mutex mtx; }; #endif