mirror of
https://github.com/revyos/thead-kernel.git
synced 2026-09-17 04:42:22 +02:00
This version update involves a lot of content, so the previous version has been deleted and the new version has been re-merged into the kernel. The configuration file for the GPU driver originates from a previous version. Signed-off-by: Mingzheng Xing <xingmingzheng@iscas.ac.cn>
291 lines
8.6 KiB
C
291 lines
8.6 KiB
C
/*************************************************************************/ /*!
|
|
@File
|
|
@Title arm64 specific OS functions
|
|
@Copyright Copyright (c) Imagination Technologies Ltd. All Rights Reserved
|
|
@Description Processor specific OS functions
|
|
@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.
|
|
*/ /**************************************************************************/
|
|
#include <linux/version.h>
|
|
#include <linux/cpumask.h>
|
|
#include <linux/dma-mapping.h>
|
|
#include <asm/cacheflush.h>
|
|
#include <linux/uaccess.h>
|
|
|
|
#include "pvrsrv_error.h"
|
|
#include "img_types.h"
|
|
#include "img_defs.h"
|
|
#include "osfunc.h"
|
|
#include "pvr_debug.h"
|
|
|
|
#include "kernel_compatibility.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
|
|
|
|
static inline void begin_user_mode_access(void)
|
|
{
|
|
#if defined(CONFIG_ARM64) && defined(CONFIG_ARM64_SW_TTBR0_PAN)
|
|
uaccess_enable_privileged();
|
|
#endif
|
|
}
|
|
|
|
static inline void end_user_mode_access(void)
|
|
{
|
|
#if defined(CONFIG_ARM64) && defined(CONFIG_ARM64_SW_TTBR0_PAN)
|
|
uaccess_disable_privileged();
|
|
#endif
|
|
}
|
|
|
|
static inline void FlushRange(void *pvRangeAddrStart,
|
|
void *pvRangeAddrEnd,
|
|
PVRSRV_CACHE_OP eCacheOp)
|
|
{
|
|
IMG_UINT32 ui32CacheLineSize = OSCPUCacheAttributeSize(OS_CPU_CACHE_ATTRIBUTE_LINE_SIZE);
|
|
IMG_BYTE *pbStart = pvRangeAddrStart;
|
|
IMG_BYTE *pbEnd = pvRangeAddrEnd;
|
|
IMG_BYTE *pbBase;
|
|
|
|
/*
|
|
On arm64, the TRM states in D5.8.1 (data and unified caches) that if cache
|
|
maintenance is performed on a memory location using a VA, the effect of
|
|
that cache maintenance is visible to all VA aliases of the physical memory
|
|
location. So here it's quicker to issue the machine cache maintenance
|
|
instruction directly without going via the Linux kernel DMA framework as
|
|
this is sufficient to maintain the CPU d-caches on arm64.
|
|
*/
|
|
|
|
begin_user_mode_access();
|
|
|
|
pbEnd = (IMG_BYTE *) PVR_ALIGN((uintptr_t)pbEnd, (uintptr_t)ui32CacheLineSize);
|
|
for (pbBase = pbStart; pbBase < pbEnd; pbBase += ui32CacheLineSize)
|
|
{
|
|
switch (eCacheOp)
|
|
{
|
|
case PVRSRV_CACHE_OP_CLEAN:
|
|
asm volatile ("dc cvac, %0" :: "r" (pbBase));
|
|
break;
|
|
|
|
case PVRSRV_CACHE_OP_INVALIDATE:
|
|
asm volatile ("dc ivac, %0" :: "r" (pbBase));
|
|
break;
|
|
|
|
case PVRSRV_CACHE_OP_FLUSH:
|
|
asm volatile ("dc civac, %0" :: "r" (pbBase));
|
|
break;
|
|
|
|
default:
|
|
PVR_DPF((PVR_DBG_ERROR,
|
|
"%s: Cache maintenance operation type %d is invalid",
|
|
__func__, eCacheOp));
|
|
break;
|
|
}
|
|
}
|
|
|
|
end_user_mode_access();
|
|
}
|
|
|
|
void OSCPUCacheFlushRangeKM(PVRSRV_DEVICE_NODE *psDevNode,
|
|
void *pvVirtStart,
|
|
void *pvVirtEnd,
|
|
IMG_CPU_PHYADDR sCPUPhysStart,
|
|
IMG_CPU_PHYADDR sCPUPhysEnd)
|
|
{
|
|
struct device *dev;
|
|
|
|
if (pvVirtStart)
|
|
{
|
|
FlushRange(pvVirtStart, pvVirtEnd, PVRSRV_CACHE_OP_FLUSH);
|
|
return;
|
|
}
|
|
|
|
dev = psDevNode->psDevConfig->pvOSDevice;
|
|
|
|
if (dev)
|
|
{
|
|
dma_sync_single_for_device(dev, sCPUPhysStart.uiAddr,
|
|
sCPUPhysEnd.uiAddr - sCPUPhysStart.uiAddr,
|
|
DMA_TO_DEVICE);
|
|
dma_sync_single_for_cpu(dev, sCPUPhysStart.uiAddr,
|
|
sCPUPhysEnd.uiAddr - sCPUPhysStart.uiAddr,
|
|
DMA_FROM_DEVICE);
|
|
}
|
|
else
|
|
{
|
|
/*
|
|
* Allocations done prior to obtaining device pointer may
|
|
* affect in cache operations being scheduled.
|
|
*
|
|
* Ignore operations with null device pointer.
|
|
* This prevents crashes on newer kernels that don't return dummy ops
|
|
* when null pointer is passed to get_dma_ops.
|
|
*
|
|
*/
|
|
|
|
/* Don't spam on nohw */
|
|
#if !defined(NO_HARDWARE)
|
|
PVR_DPF((PVR_DBG_WARNING, "Cache operation cannot be completed!"));
|
|
#endif
|
|
}
|
|
|
|
}
|
|
|
|
void OSCPUCacheCleanRangeKM(PVRSRV_DEVICE_NODE *psDevNode,
|
|
void *pvVirtStart,
|
|
void *pvVirtEnd,
|
|
IMG_CPU_PHYADDR sCPUPhysStart,
|
|
IMG_CPU_PHYADDR sCPUPhysEnd)
|
|
{
|
|
struct device *dev;
|
|
|
|
if (pvVirtStart)
|
|
{
|
|
FlushRange(pvVirtStart, pvVirtEnd, PVRSRV_CACHE_OP_CLEAN);
|
|
return;
|
|
}
|
|
|
|
dev = psDevNode->psDevConfig->pvOSDevice;
|
|
|
|
if (dev)
|
|
{
|
|
dma_sync_single_for_device(dev, sCPUPhysStart.uiAddr,
|
|
sCPUPhysEnd.uiAddr - sCPUPhysStart.uiAddr,
|
|
DMA_TO_DEVICE);
|
|
}
|
|
else
|
|
{
|
|
/*
|
|
* Allocations done prior to obtaining device pointer may
|
|
* affect in cache operations being scheduled.
|
|
*
|
|
* Ignore operations with null device pointer.
|
|
* This prevents crashes on newer kernels that don't return dummy ops
|
|
* when null pointer is passed to get_dma_ops.
|
|
*
|
|
*/
|
|
|
|
|
|
/* Don't spam on nohw */
|
|
#if !defined(NO_HARDWARE)
|
|
PVR_DPF((PVR_DBG_WARNING, "Cache operation cannot be completed!"));
|
|
#endif
|
|
}
|
|
|
|
}
|
|
|
|
void OSCPUCacheInvalidateRangeKM(PVRSRV_DEVICE_NODE *psDevNode,
|
|
void *pvVirtStart,
|
|
void *pvVirtEnd,
|
|
IMG_CPU_PHYADDR sCPUPhysStart,
|
|
IMG_CPU_PHYADDR sCPUPhysEnd)
|
|
{
|
|
struct device *dev;
|
|
|
|
if (pvVirtStart)
|
|
{
|
|
FlushRange(pvVirtStart, pvVirtEnd, PVRSRV_CACHE_OP_INVALIDATE);
|
|
return;
|
|
}
|
|
|
|
dev = psDevNode->psDevConfig->pvOSDevice;
|
|
|
|
if (dev)
|
|
{
|
|
dma_sync_single_for_cpu(dev, sCPUPhysStart.uiAddr,
|
|
sCPUPhysEnd.uiAddr - sCPUPhysStart.uiAddr,
|
|
DMA_FROM_DEVICE);
|
|
}
|
|
else
|
|
{
|
|
/*
|
|
* Allocations done prior to obtaining device pointer may
|
|
* affect in cache operations being scheduled.
|
|
*
|
|
* Ignore operations with null device pointer.
|
|
* This prevents crashes on newer kernels that don't return dummy ops
|
|
* when null pointer is passed to get_dma_ops.
|
|
*
|
|
*/
|
|
|
|
/* Don't spam on nohw */
|
|
#if !defined(NO_HARDWARE)
|
|
PVR_DPF((PVR_DBG_WARNING, "Cache operation cannot be completed!"));
|
|
#endif
|
|
}
|
|
}
|
|
|
|
|
|
OS_CACHE_OP_ADDR_TYPE OSCPUCacheOpAddressType(void)
|
|
{
|
|
return OS_CACHE_OP_ADDR_TYPE_PHYSICAL;
|
|
}
|
|
|
|
void OSUserModeAccessToPerfCountersEn(void)
|
|
{
|
|
}
|
|
|
|
IMG_BOOL OSIsWriteCombineUnalignedSafe(void)
|
|
{
|
|
/*
|
|
* Under ARM64 there is the concept of 'device' [0] and 'normal' [1] memory.
|
|
* Unaligned access on device memory is explicitly disallowed [2]:
|
|
*
|
|
* 'Further, unaligned accesses are only allowed to regions marked as Normal
|
|
* memory type.
|
|
* ...
|
|
* Attempts to perform unaligned accesses when not allowed will cause an
|
|
* alignment fault (data abort).'
|
|
*
|
|
* Write-combine on ARM64 can be implemented as either normal non-cached
|
|
* memory (NORMAL_NC) or as device memory with gathering enabled
|
|
* (DEVICE_GRE.) Kernel 3.13 changed this from the latter to the former.
|
|
*
|
|
* [0]:http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.den0024a/CHDBDIDF.html
|
|
* [1]:http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.den0024a/ch13s01s01.html
|
|
* [2]:http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.faqs/ka15414.html
|
|
*/
|
|
|
|
pgprot_t pgprot = pgprot_writecombine(PAGE_KERNEL);
|
|
|
|
return (pgprot_val(pgprot) & PTE_ATTRINDX_MASK) == PTE_ATTRINDX(MT_NORMAL_NC);
|
|
}
|