blob: 8d1df59c9190d9ec46a52995cbdc0ac769ad64cf [file] [log] [blame]
/*************************************************************************/ /*!
@File
@Title arm specific OS functions
@Copyright Copyright (c) Imagination Technologies Ltd. All Rights Reserved
@Description OS functions who's implementation are processor specific
@License MIT
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.
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.
*/ /**************************************************************************/
extern "C" {
#include "pvrsrv_error.h"
#include "img_types.h"
#include "osfunc.h"
}
#if defined(CONFIG_OUTER_CACHE)
/* If you encounter a 64-bit ARM system with an outer cache, you'll need
* to add the necessary code to manage that cache. See osfunc_arm.c
* for an example of how to do so.
*/
#error "CONFIG_OUTER_CACHE not supported on arm64."
#endif
#define NOT_IMPLEMENTED() fprintf(stderr, "msd-img-rgx-mtk: Not implemented in %s:%s:%d\n", __func__, __FILE__, __LINE__);
PVRSRV_ERROR
OSCPUOperation(PVRSRV_CACHE_OP uiCacheOp)
{
NOT_IMPLEMENTED();
return PVRSRV_ERROR_NOT_SUPPORTED;
}
void
OSCPUCacheFlushRangeKM(PVRSRV_DEVICE_NODE *psDevNode,
void *pvVirtStart,
void *pvVirtEnd,
IMG_CPU_PHYADDR sCPUPhysStart,
IMG_CPU_PHYADDR sCPUPhysEnd)
{
NOT_IMPLEMENTED();
}
void
OSCPUCacheCleanRangeKM(PVRSRV_DEVICE_NODE *psDevNode,
void *pvVirtStart,
void *pvVirtEnd,
IMG_CPU_PHYADDR sCPUPhysStart,
IMG_CPU_PHYADDR sCPUPhysEnd)
{
NOT_IMPLEMENTED();
}
void
OSCPUCacheInvalidateRangeKM(PVRSRV_DEVICE_NODE *psDevNode,
void *pvVirtStart,
void *pvVirtEnd,
IMG_CPU_PHYADDR sCPUPhysStart,
IMG_CPU_PHYADDR sCPUPhysEnd)
{
NOT_IMPLEMENTED();
}
PVRSRV_CACHE_OP_ADDR_TYPE
OSCPUCacheOpAddressType(void)
{
NOT_IMPLEMENTED();
return PVRSRV_CACHE_OP_ADDR_TYPE_PHYSICAL;
}
void
OSUserModeAccessToPerfCountersEn(void)
{
NOT_IMPLEMENTED();
/* FIXME: implement similarly to __arm__ */
}