mirror of
https://github.com/hardkernel/linux.git
synced 2026-04-10 23:18:10 +09:00
160 lines
5.5 KiB
C
160 lines
5.5 KiB
C
/*************************************************************************/ /*!
|
|
@File
|
|
@Copyright Copyright (c) Imagination Technologies Ltd. All Rights Reserved
|
|
@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/interrupt.h>
|
|
|
|
#include "pvr_debug.h"
|
|
#include "allocmem.h"
|
|
#include "interrupt_support.h"
|
|
#include "interrupt_linux.h"
|
|
|
|
#if !defined(SUPPORT_SYSTEM_INTERRUPT_HANDLING)
|
|
#error Usage of these functions requires that SUPPORT_SYSTEM_INTERRUPT_HANDLING be enabled in the build
|
|
#endif
|
|
|
|
typedef struct LISR_DATA_TAG
|
|
{
|
|
IMG_UINT32 ui32IRQ;
|
|
PFN_SYS_LISR pfnLISR;
|
|
IMG_VOID *pvData;
|
|
} LISR_DATA;
|
|
|
|
|
|
static irqreturn_t SystemISRWrapper(int irq, void *dev_id)
|
|
{
|
|
LISR_DATA *psLISRData = (LISR_DATA *)dev_id;
|
|
|
|
PVR_UNREFERENCED_PARAMETER(irq);
|
|
|
|
if (psLISRData)
|
|
{
|
|
if (psLISRData->pfnLISR(psLISRData->pvData))
|
|
{
|
|
return IRQ_HANDLED;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
PVR_DPF((PVR_DBG_ERROR, "%s: Missing interrupt data", __FUNCTION__));
|
|
}
|
|
|
|
return IRQ_NONE;
|
|
}
|
|
|
|
/*************************************************************************/ /*!
|
|
@Function OSInstallSystemLISR
|
|
@Description Install a system interrupt handler
|
|
@Output phLISR On return, contains a handle to the
|
|
installed LISR
|
|
@Input ui32IRQ The IRQ number for which the
|
|
interrupt handler should be installed
|
|
@Input psPrivData A pointer to OS specific private data.
|
|
It is the responsibility of the caller
|
|
to free this data once it is no longer
|
|
in use. This will typically be after
|
|
calling OSUninstallSystemLISR()
|
|
@Input pfnLISR A pointer to an interrupt handler
|
|
function
|
|
@Input pvData A pointer to data that should be passed
|
|
to pfnLISR when it is called
|
|
@Return PVRSRV_ERROR
|
|
*/ /**************************************************************************/
|
|
PVRSRV_ERROR OSInstallSystemLISR(IMG_HANDLE *phLISR,
|
|
IMG_UINT32 ui32IRQ,
|
|
PVR_IRQ_PRIV_DATA *psPrivData,
|
|
PFN_SYS_LISR pfnLISR,
|
|
IMG_VOID *pvData)
|
|
{
|
|
LISR_DATA *psLISRData;
|
|
|
|
PVR_UNREFERENCED_PARAMETER(psPrivData);
|
|
|
|
if (pfnLISR == IMG_NULL || pvData == IMG_NULL)
|
|
{
|
|
return PVRSRV_ERROR_INVALID_PARAMS;
|
|
}
|
|
|
|
psLISRData = OSAllocMem(sizeof *psLISRData);
|
|
if (psLISRData == IMG_NULL)
|
|
{
|
|
return PVRSRV_ERROR_OUT_OF_MEMORY;
|
|
}
|
|
|
|
psLISRData->ui32IRQ = ui32IRQ;
|
|
psLISRData->pfnLISR = pfnLISR;
|
|
psLISRData->pvData = pvData;
|
|
|
|
if (request_irq(ui32IRQ, SystemISRWrapper, IRQF_SHARED, PVRSRV_MODNAME, psLISRData))
|
|
{
|
|
OSFreeMem(psLISRData);
|
|
|
|
return PVRSRV_ERROR_UNABLE_TO_REGISTER_ISR_HANDLER;
|
|
}
|
|
|
|
*phLISR = (IMG_HANDLE)psLISRData;
|
|
|
|
return PVRSRV_OK;
|
|
}
|
|
|
|
/*************************************************************************/ /*!
|
|
@Function OSUninstallSystemLISR
|
|
@Description Uninstall a system interrupt handler
|
|
@Input hLISR Handle to the LISR that should be
|
|
uninstalled
|
|
@Return PVRSRV_ERROR
|
|
*/ /**************************************************************************/
|
|
PVRSRV_ERROR OSUninstallSystemLISR(IMG_HANDLE hLISR)
|
|
{
|
|
LISR_DATA *psLISRData = (LISR_DATA *)hLISR;
|
|
|
|
if (psLISRData == IMG_NULL)
|
|
{
|
|
return PVRSRV_ERROR_INVALID_PARAMS;
|
|
}
|
|
|
|
free_irq(psLISRData->ui32IRQ, psLISRData);
|
|
|
|
OSFreeMem(psLISRData);
|
|
|
|
return PVRSRV_OK;
|
|
}
|
|
|