kernel_samsung_a34x-permissive/drivers/misc/mediatek/mdp/mdp_def.h
2024-04-28 15:51:13 +02:00

475 lines
12 KiB
C

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (c) 2019 MediaTek Inc.
*/
#ifndef __MDP_DEF_H__
#define __MDP_DEF_H__
#include <linux/kernel.h>
#include <linux/soc/mediatek/mtk-cmdq.h>
#include "cmdq_subsys_common.h"
#include "mdp_event_common.h"
#define MDP_DRIVER_DEVICE_NAME "mtk_mdp"
/* #define MDP_COMMON_ENG_SUPPORT */
#ifdef MDP_COMMON_ENG_SUPPORT
#include "mdp_engine_common.h"
#else
#include "mdp_engine.h"
#endif
#define CMDQ_SPECIAL_SUBSYS_ADDR (99)
#define CMDQ_GPR_SUPPORT
#define CMDQ_MAX_PROFILE_MARKER_IN_TASK (5)
#define CMDQ_INVALID_THREAD (-1)
#define CMDQ_MAX_THREAD_COUNT (24)
#define CMDQ_MAX_TASK_IN_THREAD (16)
#define CMDQ_MAX_READ_SLOT_COUNT (4)
#define CMDQ_INIT_FREE_TASK_COUNT (8)
/* Thread that are high-priority (display threads) */
#define CMDQ_MAX_HIGH_PRIORITY_THREAD_COUNT (8)
#define CMDQ_MIN_SECURE_THREAD_ID (CMDQ_MAX_HIGH_PRIORITY_THREAD_COUNT)
#if IS_ENABLED(CONFIG_MACH_MT6779) || IS_ENABLED(CONFIG_MACH_MT6785)
/* primary disp / secondary disp / mdp / isp fd */
#define CMDQ_MAX_SECURE_THREAD_COUNT (4)
#else
/* primary disp / secondary disp / mdp */
#define CMDQ_MAX_SECURE_THREAD_COUNT (3)
#endif
#ifdef CMDQ_SECURE_PATH_SUPPORT
#define CMDQ_DYNAMIC_THREAD_ID_START (CMDQ_MIN_SECURE_THREAD_ID + \
CMDQ_MAX_SECURE_THREAD_COUNT)
#else
#define CMDQ_DYNAMIC_THREAD_ID_START (CMDQ_MAX_HIGH_PRIORITY_THREAD_COUNT)
#endif
#define CMDQ_SEC_IRQ_THREAD 15
#define CMDQ_MAX_ERROR_COUNT (2)
#define CMDQ_MAX_RETRY_COUNT (1)
/* ram optimization related configuration */
#ifdef CONFIG_MTK_GMO_RAM_OPTIMIZE
#define CMDQ_MAX_RECORD_COUNT (64)
#else
#define CMDQ_MAX_RECORD_COUNT (128)
#endif
#define CMDQ_INITIAL_CMD_BLOCK_SIZE (PAGE_SIZE)
/* instruction is 64-bit */
#define CMDQ_DMA_POOL_COUNT 128
#define CMDQ_MAX_LOOP_COUNT (1000000)
#define CMDQ_MAX_INST_CYCLE (27)
#define CMDQ_MAX_ERROR_SIZE (8 * 1024)
#define CMDQ_MAX_TASK_IN_SECURE_THREAD (3)
/* max value of CMDQ_THR_EXEC_CMD_CNT (value starts from 0) */
#ifdef CMDQ_USE_LARGE_MAX_COOKIE
#define CMDQ_MAX_COOKIE_VALUE (0xFFFFFFFF)
#else
#define CMDQ_MAX_COOKIE_VALUE (0xFFFF)
#endif
#define CMDQ_ARG_A_SUBSYS_MASK (0x001F0000)
#ifdef CONFIG_FPGA_EARLY_PORTING
#define CMDQ_DEFAULT_TIMEOUT_MS (10000)
#else
#define CMDQ_DEFAULT_TIMEOUT_MS (1000)
#endif
#define CMDQ_ACQUIRE_THREAD_TIMEOUT_MS (2000)
#define CMDQ_PREDUMP_TIMEOUT_MS (200)
#ifndef CONFIG_FPGA_EARLY_PORTING
#define CMDQ_PWR_AWARE /* FPGA does not have ClkMgr */
#else
#undef CMDQ_PWR_AWARE
#endif
typedef u64 CMDQ_VARIABLE;
/*
* SPR / CPR / VAR naming rule and number
**********************************************
* <- SPR -> <- CPR ->
* <reserved><FREE use > < FREE use >
* VAR# 0 1 2 3 4 5 6 7
* CPR# 0 1 2 3
*/
#define CMDQ_SPR_FOR_LOOP_DEBUG (1)
#define CMDQ_THR_SPR_START (2)
#define CMDQ_THR_FREE_CPR_MAX (4)
#define CMDQ_THR_FREE_USR_VAR_MAX (CMDQ_THR_SPR_MAX + \
CMDQ_THR_FREE_CPR_MAX)
#define CMDQ_SRAM_STRAT_ADDR (0x0)
#define CMDQ_GPR_V3_OFFSET (0x20)
#define CMDQ_POLLING_TPR_MASK_BIT (10)
#define CMDQ_SRAM_ADDR(CPR_OFFSRT) \
(((CMDQ_SRAM_STRAT_ADDR + CPR_OFFSRT / 2) << 3) + 0x001)
#define CMDQ_CPR_OFFSET(SRAM_ADDR) \
(((SRAM_ADDR >> 3) - CMDQ_SRAM_STRAT_ADDR) * 2)
#define CMDQ_INVALID_CPR_OFFSET (0xFFFFFFFF)
/* #define CMDQ_DUMP_GIC (0) */
#define CMDQ_DUMP_FIRSTERROR
/* #define CMDQ_INSTRUCTION_COUNT */
enum CMDQ_HW_THREAD_PRIORITY_ENUM {
CMDQ_THR_PRIO_SUPERLOW = 0, /* low priority monitor loop */
CMDQ_THR_PRIO_NORMAL = 1, /* nomral priority */
/* trigger loop (enables display mutex) */
CMDQ_THR_PRIO_DISPLAY_TRIGGER = 2,
/* display ESD check (every 2 secs) */
CMDQ_THR_PRIO_DISPLAY_ESD = 3,
/* display config (every frame) */
CMDQ_THR_PRIO_DISPLAY_CONFIG = 4,
CMDQ_THR_PRIO_SUPERHIGH = 5, /* High priority monitor loop */
CMDQ_THR_PRIO_MAX = 7, /* maximum possible priority */
};
enum CMDQ_SCENARIO_ENUM {
CMDQ_SCENARIO_PRIMARY_DISP = 1,
CMDQ_SCENARIO_SUB_DISP = 4,
/* Trigger loop scenario does not enable HWs */
CMDQ_SCENARIO_TRIGGER_LOOP = 11,
/* client from user space, so the cmd buffer is in user space. */
CMDQ_SCENARIO_USER_MDP = 12,
CMDQ_SCENARIO_DEBUG = 13,
CMDQ_SCENARIO_DEBUG_PREFETCH = 14,
/* color path request from user sapce */
CMDQ_SCENARIO_USER_DISP_COLOR = 21,
/* [phased out]client from user space,
* so the cmd buffer is in user space.
*/
CMDQ_SCENARIO_USER_SPACE = 22,
CMDQ_SCENARIO_TIMER_LOOP = 39,
/* debug scenario use mdp flush */
CMDQ_SCENARIO_DEBUG_MDP = 42,
/* for ISP kernel driver */
CMDQ_SCENARIO_ISP_RSC = 43,
CMDQ_SCENARIO_ISP_FDVT = 44,
CMDQ_SCENARIO_ISP_DPE = 45,
CMDQ_SCENARIO_ISP_FDVT_OFF = 46,
CMDQ_MAX_SCENARIO_COUNT /* ALWAYS keep at the end */
};
/* General Purpose Register */
enum cmdq_gpr_reg {
/* Value Reg, we use 32-bit
* Address Reg, we use 64-bit
* Note that R0-R15 and P0-P7 actullay share same memory
* and R1 cannot be used.
*/
CMDQ_DATA_REG_JPEG = 0x00, /* R0 */
CMDQ_DATA_REG_JPEG_DST = 0x11, /* P1 */
CMDQ_DATA_REG_PQ_COLOR = 0x04, /* R4 */
CMDQ_DATA_REG_PQ_COLOR_DST = 0x13, /* P3 */
CMDQ_DATA_REG_2D_SHARPNESS_0 = 0x05, /* R5 */
CMDQ_DATA_REG_2D_SHARPNESS_0_DST = 0x14, /* P4 */
CMDQ_DATA_REG_2D_SHARPNESS_1 = 0x0a, /* R10 */
CMDQ_DATA_REG_2D_SHARPNESS_1_DST = 0x16, /* P6 */
CMDQ_DATA_REG_DEBUG = 0x0b, /* R11 */
CMDQ_DATA_REG_DEBUG_DST = 0x17, /* P7 */
/* sentinel value for invalid register ID */
CMDQ_DATA_REG_INVALID = -1,
};
enum CMDQ_MDP_PA_BASE_ENUM {
CMDQ_MDP_PA_BASE_MM_MUTEX,
CMDQ_MAX_MDP_PA_BASE_COUNT, /* ALWAYS keep at the end */
};
enum DP_CMD_EXT {
DP_CMDEXT_AAL_DRE,
DP_CMDEXT_AAL_MULTIPIPE,
DP_CMDEXT_HDR,
DP_CMDEXT_VERIFY,
};
#define CMDQ_SUBSYS_GRPNAME_MAX (30)
/* GCE subsys information */
struct SubsysStruct {
uint32_t msb;
int32_t subsysID;
uint32_t mask;
char grpName[CMDQ_SUBSYS_GRPNAME_MAX];
};
struct cmdqDTSDataStruct {
/* [Out] GCE event table */
int32_t eventTable[CMDQ_SYNC_TOKEN_MAX];
/* [Out] GCE subsys ID table */
struct SubsysStruct subsys[CMDQ_SUBSYS_MAX_COUNT];
/* [Out] MDP Base address */
uint32_t MDPBaseAddress[CMDQ_MAX_MDP_PA_BASE_COUNT];
};
/* Custom "wide" pointer type for 64-bit job handle (pointer to VA)
* typedef unsigned long long cmdqJobHandle_t;
*/
#define cmdqJobHandle_t unsigned long long
/* Custom "wide" pointer type for 64-bit compatibility.
* Always cast from uint32_t*.
*/
#define cmdqU32Ptr_t unsigned long long
#define CMDQ_U32_PTR(x) ((uint32_t *)(unsigned long)x)
struct cmdqReadRegStruct {
/* number of entries in regAddresses */
uint32_t count;
/* an array of 32-bit register addresses (uint32_t) */
cmdqU32Ptr_t regAddresses;
};
struct cmdqRegValueStruct {
/* number of entries in result */
uint32_t count;
/* array of 32-bit register values (uint32_t). */
/* in the same order as cmdqReadRegStruct */
cmdqU32Ptr_t regValues;
};
#define CMDQ_MAX_READBACK_ENG 8
struct cmdqReadbackEngine {
uint32_t engine;
uint32_t start;
uint32_t count;
uint32_t param;
};
struct cmdqReadAddressStruct {
uint32_t count; /* [IN] number of entries in result. */
/* [IN] array of physical addresses to read.
* these value must allocated by
* CMDQ_IOCTL_ALLOC_WRITE_ADDRESS ioctl
*
* indeed param dmaAddresses should be UNSIGNED LONG type
* for 64 bit kernel.
* Considering our plartform supports
* max 4GB RAM(upper-32bit don't care for SW)
* and consistent common code interface, remain u32 type.
*/
cmdqU32Ptr_t dmaAddresses;
/* [OUT] u32 values that dmaAddresses point into */
cmdqU32Ptr_t values;
};
/*
* Secure address metadata:
* According to handle type,
* translate handle and replace (_d)th instruciton to
* 1. sec_addr = hadnle_sec_base_addr(baseHandle) + offset(_b)
* 2. sec_mva = mva( hadnle_sec_base_addr(baseHandle) + offset(_b) )
* 3. secure world normal mva = map(baseHandle)
* . pass normal mva to parameter baseHandle
* . use case: OVL reads from secure and normal buffers
* at the same time)
*/
enum CMDQ_SEC_ADDR_METADATA_TYPE {
CMDQ_SAM_H_2_PA = 0, /* sec handle to sec PA */
CMDQ_SAM_H_2_MVA = 1, /* sec handle to sec MVA */
CMDQ_SAM_NMVA_2_MVA = 2, /* map normal MVA to secure world */
CMDQ_SAM_PH_2_MVA = 3, /* protected handle to sec MVA */
};
struct cmdqSecAddrMetadataStruct {
/* [IN]_d, index of instruction.
* Update its arg_b value to real PA/MVA in secure world
*/
uint32_t instrIndex;
/*
* Note: Buffer and offset
*
* -------------
* | | |
* -------------
* ^ ^ ^ ^
* A B C D
*
* A: baseHandle
* B: baseHandle + blockOffset
* C: baseHandle + blockOffset + offset
* A~B or B~D: size
*/
uint32_t type; /* [IN] addr handle type */
uint64_t baseHandle; /* [IN]_h, secure address handle */
/* [IN]_b, block offset from handle(PA) to current block(plane) */
uint32_t blockOffset;
uint32_t offset; /* [IN]_b, buffser offset to secure handle */
uint32_t size; /* buffer size */
uint32_t port; /* hw port id (i.e. M4U port id) */
uint32_t sec_id; /* sec_id 0/1/3: secure camera/SVP/WFD */
uint32_t useSecIdinMeta;
int32_t ionFd;
};
struct cmdqMetaBuf {
uint64_t va;
uint64_t size;
};
#define CMDQ_ISP_META_CNT 8
struct cmdqSecIspMeta {
struct cmdqMetaBuf ispBufs[CMDQ_ISP_META_CNT];
uint64_t CqSecHandle;
uint32_t CqSecSize;
uint32_t CqDesOft;
uint32_t CqVirtOft;
uint64_t TpipeSecHandle;
uint32_t TpipeSecSize;
uint32_t TpipeOft;
uint64_t BpciHandle;
uint64_t LsciHandle;
uint64_t LceiHandle;
uint64_t DepiHandle;
uint64_t DmgiHandle;
};
/* client extension bits for cmdq secure driver
* must sync with iwc header sec_extension_iwc
*/
enum sec_extension {
SEC_MDP_AAL = 0,
SEC_TDSHP
};
struct cmdqSecDataStruct {
bool is_secure; /* [IN]true for secure command */
/* address metadata, used to translate secure buffer PA
* related instruction in secure world
*/
uint32_t addrMetadataCount; /* [IN] count of element in addrList */
/* [IN] array of cmdqSecAddrMetadataStruct */
cmdqU32Ptr_t addrMetadatas;
uint32_t addrMetadataMaxCount; /*[Reserved] */
uint64_t enginesNeedDAPC;
uint64_t enginesNeedPortSecurity;
/* [Reserved] This is for CMDQ driver usage itself. Not for client.
* task index in thread's tasklist. -1 for not in tasklist.
*/
int32_t waitCookie;
/* reset HW thread in SWd */
bool resetExecCnt;
/* ISP metadata for secure camera */
struct cmdqSecIspMeta ispMeta;
/* client extension feature */
uint64_t extension;
};
struct cmdq_v3_replace_struct {
/* [IN] count of element in instr_position */
uint32_t number;
/* [IN] position of instruction */
cmdqU32Ptr_t position;
};
struct cmdqProfileMarkerStruct {
uint32_t count;
/* i.e. cmdqBackupSlotHandle, physical start address of backup slot */
long long hSlot;
cmdqU32Ptr_t tag[CMDQ_MAX_PROFILE_MARKER_IN_TASK];
};
struct cmdqCommandStruct {
/* [IN] deprecated. will remove in the future. */
uint32_t scenario;
/* [IN] task schedule priority. this is NOT HW thread priority. */
uint32_t priority;
/* [IN] bit flag of engines used. */
uint64_t engineFlag;
/* [IN] pointer to instruction buffer. Use 64-bit for compatibility. */
/* This must point to an 64-bit aligned uint32_t array */
cmdqU32Ptr_t pVABase;
/* [IN] size of instruction buffer, in bytes. */
uint32_t blockSize;
/* [IN] request to read register values at the end of command */
struct cmdqReadRegStruct regRequest;
/* [OUT] register values of regRequest */
struct cmdqRegValueStruct regValue;
/* [IN/OUT] physical addresses to read value */
struct cmdqReadAddressStruct readAddress;
/* [IN] secure execution data */
struct cmdqSecDataStruct secData;
/* [IN] CPR position */
struct cmdq_v3_replace_struct replace_instr;
/* [IN] set to non-zero to enable register debug dump. */
uint32_t debugRegDump;
/* [Reserved] This is for CMDQ driver usage itself.
* Not for client. Do not access this field from User Space
*/
cmdqU32Ptr_t privateData;
/* task property */
uint32_t prop_size;
cmdqU32Ptr_t prop_addr;
struct cmdqProfileMarkerStruct profileMarker;
cmdqU32Ptr_t userDebugStr;
uint32_t userDebugStrLen;
};
enum CMDQ_CAP_BITS {
/* bit 0: TRUE if WFE instruction support is ready.
* FALSE if we need to POLL instead.
*/
CMDQ_CAP_WFE = 0,
};
/* reply struct for cmdq_sec_cancel_error_task */
struct cmdqSecCancelTaskResultStruct {
/* [OUT] */
bool throwAEE;
bool hasReset;
int32_t irqFlag;
uint32_t errInstr[2];
uint32_t regValue;
uint32_t pc;
};
#endif /* __MDP_DEF_H__ */