blob: b503b5f73852920568d18d2c19fe2fecfd084fd8 [file] [log] [blame]
/* -*- mode: c; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* vi: set ts=8 sw=8 sts=8: */
/*************************************************************************/ /*!
@File
@Title PowerVR DRM driver
@Codingstyle LinuxKernel
@Copyright Copyright (c) Imagination Technologies Ltd. All Rights Reserved
@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.
*/ /**************************************************************************/
#include <drm/drm.h>
#include <drm/drmP.h> /* include before drm_crtc.h for kernels older than 3.9 */
#include <drm/drm_crtc.h>
#include <linux/device.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/pm.h>
#include <linux/version.h>
#include "module_common.h"
#include "pvr_drm.h"
#include "pvr_drv.h"
#include "pvrversion.h"
#include "services_kernel_client.h"
#include "kernel_compatibility.h"
#define PVR_DRM_DRIVER_NAME PVR_DRM_NAME
#define PVR_DRM_DRIVER_DESC "Imagination Technologies PVR DRM"
#define PVR_DRM_DRIVER_DATE "20170530"
static int pvr_pm_suspend(struct device *dev)
{
struct drm_device *ddev = dev_get_drvdata(dev);
struct pvr_drm_private *priv = ddev->dev_private;
DRM_DEBUG_DRIVER("device %p\n", dev);
return PVRSRVCommonDeviceSuspend(priv->dev_node);
}
static int pvr_pm_resume(struct device *dev)
{
struct drm_device *ddev = dev_get_drvdata(dev);
struct pvr_drm_private *priv = ddev->dev_private;
DRM_DEBUG_DRIVER("device %p\n", dev);
return PVRSRVCommonDeviceResume(priv->dev_node);
}
const struct dev_pm_ops pvr_pm_ops = {
.suspend = pvr_pm_suspend,
.resume = pvr_pm_resume,
};
#if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 18, 0))
static
#endif
int pvr_drm_load(struct drm_device *ddev, unsigned long flags)
{
struct pvr_drm_private *priv;
enum PVRSRV_ERROR srv_err;
int err, deviceId;
DRM_DEBUG_DRIVER("device %p\n", ddev->dev);
dev_set_drvdata(ddev->dev, ddev);
#if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 12, 0))
/* older kernels do not have render drm_minor member in drm_device,
* so we fallback to primary node for device identification */
deviceId = ddev->primary->index;
#else
if (ddev->render)
deviceId = ddev->render->index;
else /* when render node is NULL, fallback to primary node */
deviceId = ddev->primary->index;
#endif
priv = kmalloc(sizeof(*priv), GFP_KERNEL);
if (!priv) {
err = -ENOMEM;
goto err_exit;
}
ddev->dev_private = priv;
#if defined(SUPPORT_BUFFER_SYNC) || defined(SUPPORT_NATIVE_FENCE_SYNC)
priv->fence_status_wq = create_freezable_workqueue("pvr_fce_status");
if (!priv->fence_status_wq) {
DRM_ERROR("failed to create fence status workqueue\n");
err = -ENOMEM;
goto err_free_priv;
}
#endif
srv_err = PVRSRVDeviceCreate(ddev->dev, deviceId, &priv->dev_node);
if (srv_err != PVRSRV_OK) {
DRM_ERROR("failed to create device node for device %p (%s)\n",
ddev->dev, PVRSRVGetErrorStringKM(srv_err));
if (srv_err == PVRSRV_ERROR_PROBE_DEFER)
err = -EPROBE_DEFER;
else
err = -ENODEV;
goto err_workqueue_destroy;
}
err = PVRSRVCommonDeviceInit(priv->dev_node);
if (err) {
DRM_ERROR("device %p initialisation failed (err=%d)\n",
ddev->dev, err);
goto err_device_destroy;
}
drm_mode_config_init(ddev);
return 0;
err_device_destroy:
PVRSRVDeviceDestroy(priv->dev_node);
err_workqueue_destroy:
#if defined(SUPPORT_BUFFER_SYNC) || defined(SUPPORT_NATIVE_FENCE_SYNC)
destroy_workqueue(priv->fence_status_wq);
err_free_priv:
#endif
kfree(priv);
err_exit:
return err;
}
#if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 18, 0))
static
#endif
#if (LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0))
int pvr_drm_unload(struct drm_device *ddev)
#else
void pvr_drm_unload(struct drm_device *ddev)
#endif
{
struct pvr_drm_private *priv = ddev->dev_private;
DRM_DEBUG_DRIVER("device %p\n", ddev->dev);
drm_mode_config_cleanup(ddev);
PVRSRVCommonDeviceDeinit(priv->dev_node);
PVRSRVDeviceDestroy(priv->dev_node);
#if defined(SUPPORT_BUFFER_SYNC) || defined(SUPPORT_NATIVE_FENCE_SYNC)
destroy_workqueue(priv->fence_status_wq);
#endif
kfree(priv);
ddev->dev_private = NULL;
#if (LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0))
return 0;
#endif
}
static int pvr_drm_open(struct drm_device *ddev, struct drm_file *dfile)
{
struct pvr_drm_private *priv = ddev->dev_private;
int err;
if (!try_module_get(THIS_MODULE)) {
DRM_ERROR("failed to get module reference\n");
return -ENOENT;
}
err = PVRSRVCommonDeviceOpen(priv->dev_node, dfile);
if (err)
module_put(THIS_MODULE);
return err;
}
static void pvr_drm_release(struct drm_device *ddev, struct drm_file *dfile)
{
struct pvr_drm_private *priv = ddev->dev_private;
PVRSRVCommonDeviceRelease(priv->dev_node, dfile);
module_put(THIS_MODULE);
}
/*
* The DRM global lock is taken for ioctls unless the DRM_UNLOCKED flag is set.
* If you revise one of the driver specific ioctls, or add a new one, that has
* DRM_UNLOCKED set then consider whether the gPVRSRVLock mutex needs to be
* taken.
*/
static struct drm_ioctl_desc pvr_drm_ioctls[] = {
DRM_IOCTL_DEF_DRV(PVR_SRVKM_CMD, PVRSRV_BridgeDispatchKM, DRM_RENDER_ALLOW | DRM_UNLOCKED),
#if defined(PDUMP)
DRM_IOCTL_DEF_DRV(PVR_DBGDRV_CMD, dbgdrv_ioctl, DRM_RENDER_ALLOW | DRM_AUTH | DRM_UNLOCKED),
#endif
};
#if defined(CONFIG_COMPAT)
#if defined(PDUMP)
static drm_ioctl_compat_t *pvr_drm_compat_ioctls[] = {
[DRM_PVR_DBGDRV_CMD] = dbgdrv_ioctl_compat,
};
#endif
static long pvr_compat_ioctl(struct file *file, unsigned int cmd,
unsigned long arg)
{
unsigned int nr = DRM_IOCTL_NR(cmd);
if (nr < DRM_COMMAND_BASE)
return drm_compat_ioctl(file, cmd, arg);
#if defined(PDUMP)
if (nr < DRM_COMMAND_BASE + ARRAY_SIZE(pvr_drm_compat_ioctls)) {
drm_ioctl_compat_t *pfnBridge;
pfnBridge = pvr_drm_compat_ioctls[nr - DRM_COMMAND_BASE];
if (pfnBridge)
return pfnBridge(file, cmd, arg);
}
#endif
return drm_ioctl(file, cmd, arg);
}
#endif /* defined(CONFIG_COMPAT) */
static const struct file_operations pvr_drm_fops = {
.owner = THIS_MODULE,
.open = drm_open,
.release = drm_release,
/*
* FIXME:
* Wrap this in a function that checks enough data has been
* supplied with the ioctl (e.g. _IOCDIR(nr) != _IOC_NONE &&
* _IOC_SIZE(nr) == size).
*/
.unlocked_ioctl = drm_ioctl,
#if defined(CONFIG_COMPAT)
.compat_ioctl = pvr_compat_ioctl,
#endif
.mmap = PVRSRV_MMap,
.poll = drm_poll,
.read = drm_read,
#if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 12, 0))
.fasync = drm_fasync,
#endif
};
const struct drm_driver pvr_drm_generic_driver = {
.driver_features = DRIVER_MODESET | DRIVER_RENDER,
.dev_priv_size = 0,
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 18, 0))
.load = NULL,
.unload = NULL,
#else
.load = pvr_drm_load,
.unload = pvr_drm_unload,
#endif
.open = pvr_drm_open,
.postclose = pvr_drm_release,
.ioctls = pvr_drm_ioctls,
.num_ioctls = ARRAY_SIZE(pvr_drm_ioctls),
.fops = &pvr_drm_fops,
.name = PVR_DRM_DRIVER_NAME,
.desc = PVR_DRM_DRIVER_DESC,
.date = PVR_DRM_DRIVER_DATE,
.major = PVRVERSION_MAJ,
.minor = PVRVERSION_MIN,
.patchlevel = PVRVERSION_BUILD,
};