blob: 7d7d813e3f2510a988846382755ae45ee4724d92 [file] [log] [blame]
/*************************************************************************/ /*!
@File
@Title RGX Circular Command Buffer functionality.
@Copyright Copyright (c) Imagination Technologies Ltd. All Rights Reserved
@Description Header for the RGX Circular Command Buffer functionality.
@License Dual MIT/GPLv2
The contents of this file are subject to the MIT license as set out below.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
Alternatively, the contents of this file may be used under the terms of
the GNU General Public License Version 2 ("GPL") in which case the provisions
of GPL are applicable instead of those above.
If you wish to allow use of your version of this file only under the terms of
GPL, and not to allow others to use your version of this file under the terms
of the MIT license, indicate your decision by deleting the provisions above
and replace them with the notice and other provisions required by GPL as set
out in the file called "GPL-COPYING" included in this distribution. If you do
not delete the provisions above, a recipient may use your version of this file
under the terms of either the MIT license or GPL.
This License is also included in this distribution in the file called
"MIT-COPYING".
EXCEPT AS OTHERWISE STATED IN A NEGOTIATED AGREEMENT: (A) THE SOFTWARE IS
PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE AND NONINFRINGEMENT; AND (B) IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ /**************************************************************************/
#if !defined(__RGXCCB_H__)
#define __RGXCCB_H__
#include "devicemem.h"
#include "device.h"
#include "rgxdevice.h"
#include "sync_server.h"
#include "connection_server.h"
#include "rgxdebug.h"
#include "rgxdefs_km.h"
#include "pvr_notifier.h"
#define MAX_CLIENT_CCB_NAME 30
#define SYNC_FLAG_MASK_ALL IMG_UINT32_MAX
/*
* This size is to be used when a client CCB is found to consume very
* negligible space (e.g. a few hundred bytes to few KBs - less than a page).
* In such a case, instead of allocating CCB of size of only a few KBs, we
* allocate at-least this much to be future risk-free.
*/
#define MIN_SAFE_CCB_SIZE_LOG2 13 /* 8K (2 Pages) */
#define MAX_SAFE_CCB_SIZE_LOG2 18 /* 256K (64 Pages) */
#define RGX_TQ3D_CCB_SIZE_LOG2 PVRSRV_RGX_LOG2_CLIENT_CCB_SIZE_TQ3D
static_assert(RGX_TQ3D_CCB_SIZE_LOG2 >= MIN_SAFE_CCB_SIZE_LOG2 &&
RGX_TQ3D_CCB_SIZE_LOG2 <= MAX_SAFE_CCB_SIZE_LOG2, "TQ3D CCB size is invalid");
#define RGX_TQ3D_CCB_MAX_SIZE_LOG2 PVRSRV_RGX_LOG2_CLIENT_CCB_MAX_SIZE_TQ3D
static_assert(RGX_TQ3D_CCB_MAX_SIZE_LOG2 >= PVRSRV_RGX_LOG2_CLIENT_CCB_SIZE_TQ3D
&& RGX_TQ3D_CCB_MAX_SIZE_LOG2 <= MAX_SAFE_CCB_SIZE_LOG2, "TQ3D max CCB size is invalid");
#define RGX_TQ2D_CCB_SIZE_LOG2 PVRSRV_RGX_LOG2_CLIENT_CCB_SIZE_TQ2D
static_assert(RGX_TQ2D_CCB_SIZE_LOG2 >= MIN_SAFE_CCB_SIZE_LOG2 &&
RGX_TQ2D_CCB_SIZE_LOG2 <= MAX_SAFE_CCB_SIZE_LOG2, "TQ2D CCB size is invalid");
#define RGX_TQ2D_CCB_MAX_SIZE_LOG2 PVRSRV_RGX_LOG2_CLIENT_CCB_MAX_SIZE_TQ2D
static_assert(RGX_TQ2D_CCB_MAX_SIZE_LOG2 >= PVRSRV_RGX_LOG2_CLIENT_CCB_SIZE_TQ2D &&
RGX_TQ2D_CCB_MAX_SIZE_LOG2 <= MAX_SAFE_CCB_SIZE_LOG2, "TQ2D max CCB size is invalid");
#define RGX_CDM_CCB_SIZE_LOG2 PVRSRV_RGX_LOG2_CLIENT_CCB_SIZE_CDM
static_assert(RGX_CDM_CCB_SIZE_LOG2 >= MIN_SAFE_CCB_SIZE_LOG2 &&
RGX_CDM_CCB_SIZE_LOG2 <= MAX_SAFE_CCB_SIZE_LOG2, "CDM CCB size is invalid");
#define RGX_CDM_CCB_MAX_SIZE_LOG2 PVRSRV_RGX_LOG2_CLIENT_CCB_MAX_SIZE_CDM
static_assert(RGX_CDM_CCB_MAX_SIZE_LOG2 >= PVRSRV_RGX_LOG2_CLIENT_CCB_SIZE_CDM &&
RGX_CDM_CCB_MAX_SIZE_LOG2 <= MAX_SAFE_CCB_SIZE_LOG2, "CDM max CCB size is invalid");
#define RGX_TA_CCB_SIZE_LOG2 PVRSRV_RGX_LOG2_CLIENT_CCB_SIZE_TA
static_assert(RGX_TA_CCB_SIZE_LOG2 >= MIN_SAFE_CCB_SIZE_LOG2 &&
RGX_TA_CCB_SIZE_LOG2 <= MAX_SAFE_CCB_SIZE_LOG2, "TA CCB size is invalid");
#define RGX_TA_CCB_MAX_SIZE_LOG2 PVRSRV_RGX_LOG2_CLIENT_CCB_MAX_SIZE_TA
static_assert(RGX_TA_CCB_MAX_SIZE_LOG2 >= PVRSRV_RGX_LOG2_CLIENT_CCB_SIZE_TA &&
RGX_TA_CCB_MAX_SIZE_LOG2 <= MAX_SAFE_CCB_SIZE_LOG2, "TA max CCB size is invalid");
#define RGX_3D_CCB_SIZE_LOG2 PVRSRV_RGX_LOG2_CLIENT_CCB_SIZE_3D
static_assert(RGX_3D_CCB_SIZE_LOG2 >= MIN_SAFE_CCB_SIZE_LOG2 &&
RGX_3D_CCB_SIZE_LOG2 <= MAX_SAFE_CCB_SIZE_LOG2, "3D CCB size is invalid");
#define RGX_3D_CCB_MAX_SIZE_LOG2 PVRSRV_RGX_LOG2_CLIENT_CCB_MAX_SIZE_3D
static_assert(RGX_3D_CCB_MAX_SIZE_LOG2 >= PVRSRV_RGX_LOG2_CLIENT_CCB_SIZE_3D &&
RGX_3D_CCB_MAX_SIZE_LOG2 <= MAX_SAFE_CCB_SIZE_LOG2, "3D max CCB size is invalid");
#define RGX_KICKSYNC_CCB_SIZE_LOG2 PVRSRV_RGX_LOG2_CLIENT_CCB_SIZE_KICKSYNC
static_assert(RGX_KICKSYNC_CCB_SIZE_LOG2 >= MIN_SAFE_CCB_SIZE_LOG2 &&
RGX_KICKSYNC_CCB_SIZE_LOG2 <= MAX_SAFE_CCB_SIZE_LOG2, "KickSync CCB size is invalid");
#define RGX_KICKSYNC_CCB_MAX_SIZE_LOG2 PVRSRV_RGX_LOG2_CLIENT_CCB_MAX_SIZE_KICKSYNC
static_assert(RGX_KICKSYNC_CCB_MAX_SIZE_LOG2 >= PVRSRV_RGX_LOG2_CLIENT_CCB_SIZE_KICKSYNC &&
RGX_KICKSYNC_CCB_MAX_SIZE_LOG2 <= MAX_SAFE_CCB_SIZE_LOG2, "KickSync max CCB size is invalid");
typedef struct _RGX_CLIENT_CCB_ RGX_CLIENT_CCB;
/*
This structure is declared here as it's allocated on the heap by
the callers
*/
typedef struct _RGX_CCB_CMD_HELPER_DATA_ {
/* Data setup at command init time */
RGX_CLIENT_CCB *psClientCCB;
IMG_CHAR *pszCommandName;
IMG_UINT32 ui32PDumpFlags;
IMG_UINT32 ui32ClientFenceCount;
PRGXFWIF_UFO_ADDR *pauiFenceUFOAddress;
IMG_UINT32 *paui32FenceValue;
IMG_UINT32 ui32ClientUpdateCount;
PRGXFWIF_UFO_ADDR *pauiUpdateUFOAddress;
IMG_UINT32 *paui32UpdateValue;
#if defined(SUPPORT_SERVER_SYNC_IMPL)
IMG_UINT32 ui32ServerSyncCount;
IMG_UINT32 *paui32ServerSyncFlags;
IMG_UINT32 ui32ServerSyncFlagMask;
SERVER_SYNC_PRIMITIVE **papsServerSyncs;
#endif
RGXFWIF_CCB_CMD_TYPE eType;
IMG_UINT32 ui32CmdSize;
IMG_UINT8 *pui8DMCmd;
IMG_UINT32 ui32FenceCmdSize;
IMG_UINT32 ui32DMCmdSize;
IMG_UINT32 ui32UpdateCmdSize;
IMG_UINT32 ui32UnfencedUpdateCmdSize;
/* Data setup at command acquire time */
IMG_UINT8 *pui8StartPtr;
IMG_UINT8 *pui8ServerUpdateStart;
IMG_UINT8 *pui8ServerUnfencedUpdateStart;
IMG_UINT8 *pui8ServerFenceStart;
IMG_UINT32 ui32ServerFenceCount;
IMG_UINT32 ui32ServerUpdateCount;
IMG_UINT32 ui32ServerUnfencedUpdateCount;
/* Job reference fields */
IMG_UINT32 ui32ExtJobRef;
IMG_UINT32 ui32IntJobRef;
/* Workload kick information */
RGXFWIF_WORKEST_KICK_DATA *psWorkEstKickData;
} RGX_CCB_CMD_HELPER_DATA;
#define PADDING_COMMAND_SIZE (sizeof(RGXFWIF_CCB_CMD_HEADER))
#define RGX_CCB_REQUESTORS(TYPE) \
/* for debugging purposes */ TYPE(UNDEF) \
TYPE(TA) \
TYPE(3D) \
TYPE(CDM) \
TYPE(SH) \
TYPE(RS) \
TYPE(TQ_3D) \
TYPE(TQ_2D) \
TYPE(TQ_TDM) \
TYPE(KICKSYNC) \
/* Forms an enum constant for each type present in RGX_CCB_REQUESTORS list. The enum is mainly used as
an index to the aszCCBRequestors table defined in rgxccb.c. The total number of enums must adhere
to the following build assert.
*/
typedef enum _RGX_CCB_REQUESTOR_TYPE_
{
#define CONSTRUCT_ENUM(req) REQ_TYPE_##req,
RGX_CCB_REQUESTORS (CONSTRUCT_ENUM)
#undef CONSTRUCT_ENUM
/* should always be at the end */
REQ_TYPE_TOTAL_COUNT,
} RGX_CCB_REQUESTOR_TYPE;
/* Tuple describing the columns of the following table */
typedef enum _RGX_CCB_REQUESTOR_TUPLE_
{
REQ_RGX_FW_CLIENT_CCB_STRING, /* Index to comment to be dumped in DevMemAllocs when allocating FirmwareClientCCB for this requestor */
REQ_RGX_FW_CLIENT_CCB_CONTROL_STRING, /* Index to comment to be dumped in DevMemAllocs when allocating FirmwareClientCCBControl for this requestor */
REQ_PDUMP_COMMENT, /* Index to comment to be dumped in PDUMPs */
/* should always be at the end */
REQ_TUPLE_CARDINALITY,
} RGX_CCB_REQUESTOR_TUPLE;
/* Unpack U8 values from U32. */
#define U32toU8_Unpack1(U32Packed) (U32Packed & 0xFF)
#define U32toU8_Unpack2(U32Packed) ((U32Packed>>8) & 0xFF)
#define U32toU8_Unpack3(U32Packed) ((U32Packed>>16) & 0xFF)
#define U32toU8_Unpack4(U32Packed) ((U32Packed>>24) & 0xFF)
/* Defines for bit meanings within the ui32CCBFlags member of struct _RGX_CLIENT_CCB_
*
* ( X = taken/in use, - = available/unused )
*
* 31 10
* | ||
* ------------------------------XX
* Bit Meaning
* 0 = If set, CCB is still open and commands will be appended to it
* 1 = If set, do not perform Sync Lockup Recovery (SLR) for this CCB
*/
#define CCB_FLAGS_CCB_STATE_OPEN (0) /*!< This bit is set to indicate CCB is in the 'Open' state. */
#define CCB_FLAGS_SLR_DISABLED (1) /*!< This bit is set to disable Sync Lockup Recovery (SLR) for this CCB. */
/* Table containing an array of strings for each requestor type in the list of RGX_CCB_REQUESTORS. In addition to its use in
this module (rgxccb.c), this table is also used to access string to be dumped in PDUMP comments, hence, marking it extern for
use in other modules.
*/
extern IMG_CHAR *const aszCCBRequestors[][REQ_TUPLE_CARDINALITY];
PVRSRV_ERROR RGXCCBPDumpDrainCCB(RGX_CLIENT_CCB *psClientCCB,
IMG_UINT32 ui32PDumpFlags);
PVRSRV_ERROR RGXCreateCCB(PVRSRV_RGXDEV_INFO *psDevInfo,
IMG_UINT32 ui32CCBSizeLog2,
IMG_UINT32 ui32CCBMaxSizeLog2,
CONNECTION_DATA *psConnectionData,
RGX_CCB_REQUESTOR_TYPE eCCBRequestor,
RGX_SERVER_COMMON_CONTEXT *psServerCommonContext,
RGX_CLIENT_CCB **ppsClientCCB,
DEVMEM_MEMDESC **ppsClientCCBMemDesc,
DEVMEM_MEMDESC **ppsClientCCBCtlMemDesc);
void RGXDestroyCCB(PVRSRV_RGXDEV_INFO *psDevInfo, RGX_CLIENT_CCB *psClientCCB);
PVRSRV_ERROR RGXAcquireCCB(RGX_CLIENT_CCB *psClientCCB,
IMG_UINT32 ui32CmdSize,
void **ppvBufferSpace,
IMG_UINT32 ui32PDumpFlags);
void RGXReleaseCCB(RGX_CLIENT_CCB *psClientCCB,
IMG_UINT32 ui32CmdSize,
IMG_UINT32 ui32PDumpFlags);
IMG_UINT32 RGXGetHostWriteOffsetCCB(RGX_CLIENT_CCB *psClientCCB);
PVRSRV_ERROR RGXCmdHelperInitCmdCCB(RGX_CLIENT_CCB *psClientCCB,
IMG_UINT32 ui32ClientFenceCount,
PRGXFWIF_UFO_ADDR *pauiFenceUFOAddress,
IMG_UINT32 *paui32FenceValue,
IMG_UINT32 ui32ClientUpdateCount,
PRGXFWIF_UFO_ADDR *pauiUpdateUFOAddress,
IMG_UINT32 *paui32UpdateValue,
#if defined(SUPPORT_SERVER_SYNC_IMPL)
IMG_UINT32 ui32ServerSyncCount,
IMG_UINT32 *paui32ServerSyncFlags,
IMG_UINT32 ui32ServerSyncFlagMask,
SERVER_SYNC_PRIMITIVE **papsServerSyncs,
#endif
IMG_UINT32 ui32CmdSize,
IMG_PBYTE pui8DMCmd,
RGXFWIF_CCB_CMD_TYPE eType,
IMG_UINT32 ui32ExtJobRef,
IMG_UINT32 ui32IntJobRef,
IMG_UINT32 ui32PDumpFlags,
RGXFWIF_WORKEST_KICK_DATA *psWorkEstKickData,
IMG_CHAR *pszCommandName,
IMG_BOOL bCCBStateOpen,
RGX_CCB_CMD_HELPER_DATA *psCmdHelperData);
PVRSRV_ERROR RGXCmdHelperAcquireCmdCCB(IMG_UINT32 ui32CmdCount,
RGX_CCB_CMD_HELPER_DATA *asCmdHelperData);
void RGXCmdHelperReleaseCmdCCB(IMG_UINT32 ui32CmdCount,
RGX_CCB_CMD_HELPER_DATA *asCmdHelperData,
const IMG_CHAR *pcszDMName,
IMG_UINT32 ui32CtxAddr);
IMG_UINT32 RGXCmdHelperGetCommandSize(IMG_UINT32 ui32CmdCount,
RGX_CCB_CMD_HELPER_DATA *asCmdHelperData);
IMG_UINT32 RGXCmdHelperGetCommandOffset(RGX_CCB_CMD_HELPER_DATA *asCmdHelperData,
IMG_UINT32 ui32Cmdindex);
IMG_UINT32 RGXCmdHelperGetDMCommandHeaderOffset(RGX_CCB_CMD_HELPER_DATA *psCmdHelperData);
void DumpStalledCCBCommand(PRGXFWIF_FWCOMMONCONTEXT sFWCommonContext,
RGX_CLIENT_CCB *psCurrentClientCCB,
DUMPDEBUG_PRINTF_FUNC *pfnDumpDebugPrintf,
void *pvDumpDebugFile);
void DumpCCB(PVRSRV_RGXDEV_INFO *psDevInfo,
PRGXFWIF_FWCOMMONCONTEXT sFWCommonContext,
RGX_CLIENT_CCB *psCurrentClientCCB,
DUMPDEBUG_PRINTF_FUNC *pfnDumpDebugPrintf,
void *pvDumpDebugFile);
PVRSRV_ERROR CheckForStalledCCB(PVRSRV_DEVICE_NODE *psDevNode, RGX_CLIENT_CCB *psCurrentClientCCB, RGX_KICK_TYPE_DM eKickTypeDM);
void DumpStalledContextInfo(PVRSRV_RGXDEV_INFO *psDevInfo);
#endif /* __RGXCCB_H__ */