1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
|
/*************************************************************************/ /*!
@Title PowerVR drm driver
@Copyright Copyright (c) Imagination Technologies Ltd. All Rights Reserved
@Description linux module setup
@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(SUPPORT_DRI_DRM)
#include <linux/version.h>
#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,38))
#ifndef AUTOCONF_INCLUDED
#include <linux/config.h>
#endif
#endif
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/fs.h>
#include <linux/proc_fs.h>
#include <linux/sched.h>
#include <asm/ioctl.h>
#include <drm/drmP.h>
#include <drm/drm.h>
#include "img_defs.h"
#include "services.h"
#include "kerneldisplay.h"
#include "kernelbuffer.h"
#include "syscommon.h"
#include "pvrmmap.h"
#include "mm.h"
#include "mmap.h"
#include "mutex.h"
#include "pvr_debug.h"
#include "srvkm.h"
#include "perproc.h"
#include "handle.h"
#include "pvr_bridge_km.h"
#include "pvr_bridge.h"
#include "proc.h"
#include "pvrmodule.h"
#include "pvrversion.h"
#include "lock.h"
#include "linkage.h"
#include "pvr_drm.h"
#if defined(PVR_DRI_DRM_NOT_PCI)
#include "pvr_drm_mod.h"
#endif
#if defined(NO_HARDWARE)
#define PVR_DRM_NAME SYS_SGX_DEV_NAME
#else
#define PVR_DRM_NAME PVRSRV_MODNAME
#endif
#define PVR_DRM_DESC "Imagination Technologies PVR DRM"
#define PVR_DRM_DATE "20110701"
#if defined(PVR_DRI_DRM_PLATFORM_DEV) && !defined(SUPPORT_DRI_DRM_PLUGIN)
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,39))
#define PVR_NEW_STYLE_DRM_PLATFORM_DEV
#else
#define PVR_OLD_STYLE_DRM_PLATFORM_DEV
#endif
#endif
/*
* Prior to Linux 2.6.36, we couldn't do the release processing in post close
* when workqueues were being used, because drm_release held the big kernel
* lock (BKL) when it called post close.
* If the resman needs to wait for processing being done by a workqueue,
* that processing won't complete whilst the lock is held by another thread,
* as the workqueue won't get scheduled.
*/
#undef PVR_DRI_DRM_USE_POST_CLOSE
#if (defined(SUPPORT_DRI_DRM_EXT) && !defined(PVR_LINUX_USING_WORKQUEUES)) || \
(LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36))
#define PVR_DRI_DRM_USE_POST_CLOSE
#endif
DECLARE_WAIT_QUEUE_HEAD(sWaitForInit);
#if defined(SUPPORT_DRM_MODESET)
static struct drm_driver sPVRDrmDriver;
#endif
/* Once bInitComplete and bInitFailed are set, they stay set */
IMG_BOOL bInitComplete;
IMG_BOOL bInitFailed;
#if !defined(PVR_DRI_DRM_NOT_PCI) && !defined(SUPPORT_DRI_DRM_PLUGIN)
#if defined(PVR_DRI_DRM_PLATFORM_DEV)
struct platform_device *gpsPVRLDMDev;
#else
struct pci_dev *gpsPVRLDMDev;
#endif
#endif
struct drm_device *gpsPVRDRMDev;
#if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,24))
#error "Linux kernel version 2.6.25 or later required for PVR DRM support"
#endif
#define PVR_DRM_FILE struct drm_file *
#if !defined(SUPPORT_DRI_DRM_EXT) && !defined(SUPPORT_DRI_DRM_PLUGIN)
#if defined(PVR_DRI_DRM_PLATFORM_DEV)
#if defined(PVR_LDM_PLATFORM_PRE_REGISTERED) || defined(NO_HARDWARE)
static struct platform_device_id asPlatIdList[] = {
{SYS_SGX_DEV_NAME, 0},
{}
};
#endif
#else /* defined(PVR_DRI_DRM_PLATFORM_DEV) */
static struct pci_device_id asPciIdList[] = {
#if defined(PVR_DRI_DRM_NOT_PCI)
{1, 1, 1, 1, 0, 0, 0},
#else /* defined(PVR_DRI_DRM_NOT_PCI) */
{SYS_SGX_DEV_VENDOR_ID, SYS_SGX_DEV_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
#if defined(SYS_SGX_DEV1_DEVICE_ID)
{SYS_SGX_DEV_VENDOR_ID, SYS_SGX_DEV1_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
#endif /* defined(SYS_SGX_DEV1_DEVICE_ID) */
#endif /* defined(PVR_DRI_DRM_NOT_PCI) */
{0}
};
#endif /* defined(PVR_DRI_DRM_PLATFORM_DEV) */
#endif /* !defined(SUPPORT_DRI_DRM_EXT) */
DRI_DRM_STATIC int
PVRSRVDrmLoad(struct drm_device *dev, unsigned long flags)
{
int iRes = 0;
PVR_TRACE(("PVRSRVDrmLoad"));
gpsPVRDRMDev = dev;
#if !defined(PVR_DRI_DRM_NOT_PCI) && !defined(SUPPORT_DRI_DRM_PLUGIN)
#if defined(PVR_DRI_DRM_PLATFORM_DEV)
gpsPVRLDMDev = dev->platformdev;
#else
gpsPVRLDMDev = dev->pdev;
#endif
#endif
#if defined(PDUMP)
iRes = dbgdrv_init();
if (iRes != 0)
{
goto exit;
}
#endif
/* Module initialisation */
iRes = PVRCore_Init();
if (iRes != 0)
{
goto exit_dbgdrv_cleanup;
}
#if defined(DISPLAY_CONTROLLER)
iRes = PVR_DRM_MAKENAME(DISPLAY_CONTROLLER, _Init)(dev);
if (iRes != 0)
{
goto exit_pvrcore_cleanup;
}
#endif
goto exit;
#if defined(DISPLAY_CONTROLLER)
exit_pvrcore_cleanup:
PVRCore_Cleanup();
#endif
exit_dbgdrv_cleanup:
#if defined(PDUMP)
dbgdrv_cleanup();
#endif
exit:
if (iRes != 0)
{
bInitFailed = IMG_TRUE;
}
bInitComplete = IMG_TRUE;
wake_up_interruptible(&sWaitForInit);
return iRes;
}
DRI_DRM_STATIC int
PVRSRVDrmUnload(struct drm_device *dev)
{
PVR_TRACE(("PVRSRVDrmUnload"));
#if defined(DISPLAY_CONTROLLER)
PVR_DRM_MAKENAME(DISPLAY_CONTROLLER, _Cleanup)(dev);
#endif
PVRCore_Cleanup();
#if defined(PDUMP)
dbgdrv_cleanup();
#endif
return 0;
}
DRI_DRM_STATIC int
PVRSRVDrmOpen(struct drm_device *dev, struct drm_file *file)
{
while (!bInitComplete)
{
DEFINE_WAIT(sWait);
prepare_to_wait(&sWaitForInit, &sWait, TASK_INTERRUPTIBLE);
if (!bInitComplete)
{
PVR_TRACE(("%s: Waiting for module initialisation to complete", __FUNCTION__));
schedule();
}
finish_wait(&sWaitForInit, &sWait);
if (signal_pending(current))
{
return -ERESTARTSYS;
}
}
if (bInitFailed)
{
PVR_DPF((PVR_DBG_ERROR, "%s: Module initialisation failed", __FUNCTION__));
return -EINVAL;
}
return PVRSRVOpen(dev, file);
}
#if defined(PVR_DRI_DRM_USE_POST_CLOSE) || defined(SUPPORT_DRI_DRM_PLUGIN)
#if defined(SUPPORT_DRI_DRM_PLUGIN)
DRI_DRM_STATIC int
PVRSRVDrmRelease(struct drm_device *dev, struct drm_file *file)
#else
DRI_DRM_STATIC void
PVRSRVDrmPostClose(struct drm_device *dev, struct drm_file *file)
#endif
{
PVRSRVRelease(file->driver_priv);
file->driver_priv = NULL;
#if defined(SUPPORT_DRI_DRM_PLUGIN)
return 0;
#endif
}
#else
DRI_DRM_STATIC int
PVRSRVDrmRelease(struct inode *inode, struct file *filp)
{
struct drm_file *file_priv = filp->private_data;
void *psDriverPriv = file_priv->driver_priv;
int ret;
ret = drm_release(inode, filp);
if (ret != 0)
{
/*
* An error means drm_release didn't call drm_lastclose,
* but it will have freed file_priv.
*/
PVR_DPF((PVR_DBG_ERROR, "%s : drm_release failed: %d",
__FUNCTION__, ret));
}
PVRSRVRelease(psDriverPriv);
return 0;
}
#endif
DRI_DRM_STATIC int
PVRDRMIsMaster(struct drm_device *dev, void *arg, struct drm_file *pFile)
{
return 0;
}
#if defined(SUPPORT_DRI_DRM_EXT)
int
PVRDRM_Dummy_ioctl(struct drm_device *dev, void *arg, struct drm_file *pFile)
{
return 0;
}
#endif
DRI_DRM_STATIC int
PVRDRMUnprivCmd(struct drm_device *dev, void *arg, struct drm_file *pFile)
{
int ret = 0;
LinuxLockMutex(&gPVRSRVLock);
if (arg == NULL)
{
ret = -EFAULT;
}
else
{
IMG_UINT32 *pui32Args = (IMG_UINT32 *)arg;
IMG_UINT32 ui32Cmd = pui32Args[0];
IMG_UINT32 *pui32OutArg = (IMG_UINT32 *)arg;
switch (ui32Cmd)
{
case PVR_DRM_UNPRIV_INIT_SUCCESFUL:
*pui32OutArg = PVRSRVGetInitServerState(PVRSRV_INIT_SERVER_SUCCESSFUL) ? 1 : 0;
break;
default:
ret = -EFAULT;
}
}
LinuxUnLockMutex(&gPVRSRVLock);
return ret;
}
#if defined(DISPLAY_CONTROLLER) && defined(PVR_DISPLAY_CONTROLLER_DRM_IOCTL)
static int
PVRDRM_Display_ioctl(struct drm_device *dev, void *arg, struct drm_file *pFile)
{
int res;
LinuxLockMutex(&gPVRSRVLock);
res = PVR_DRM_MAKENAME(DISPLAY_CONTROLLER, _Ioctl)(dev, arg, pFile);
LinuxUnLockMutex(&gPVRSRVLock);
return res;
}
#endif
#if defined(SUPPORT_DRM_MODESET)
static int
PVRSRVPciProbe(struct pci_dev *dev, const struct pci_device_id *id)
{
PVR_TRACE(("PVRSRVPciProbe"));
return drm_get_dev(dev, id, &sPVRDrmDriver);
}
static void
PVRSRVPciRemove(struct pci_dev *dev)
{
struct drm_device *psDrmDev;
PVR_TRACE(("PVRSRVPciRemove"));
psDrmDev = pci_get_drvdata(dev);
drm_put_dev(psDrmDev);
}
#endif
/*
* For Linux 2.6.33 and above, the DRM ioctl entry point is of the unlocked
* variety. The big kernel lock is still taken for ioctls, unless
* the DRM_UNLOCKED flag is set. If you revise one of the driver specific
* ioctls, or add a new one, consider whether the gPVRSRVLock mutex needs
* to be taken.
*/
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33))
#define PVR_DRM_FOPS_IOCTL .unlocked_ioctl
#define PVR_DRM_UNLOCKED DRM_UNLOCKED
#else
#define PVR_DRM_FOPS_IOCTL .ioctl
#define PVR_DRM_UNLOCKED 0
#endif
#if !defined(SUPPORT_DRI_DRM_EXT)
#if defined(DRM_IOCTL_DEF)
#define PVR_DRM_IOCTL_DEF(ioctl, _func, _flags) DRM_IOCTL_DEF(DRM_##ioctl, _func, _flags)
#else
#define PVR_DRM_IOCTL_DEF(ioctl, _func, _flags) DRM_IOCTL_DEF_DRV(ioctl, _func, _flags)
#endif
struct drm_ioctl_desc sPVRDrmIoctls[] = {
PVR_DRM_IOCTL_DEF(PVR_SRVKM, PVRSRV_BridgeDispatchKM, PVR_DRM_UNLOCKED),
PVR_DRM_IOCTL_DEF(PVR_IS_MASTER, PVRDRMIsMaster, DRM_MASTER | PVR_DRM_UNLOCKED),
PVR_DRM_IOCTL_DEF(PVR_UNPRIV, PVRDRMUnprivCmd, PVR_DRM_UNLOCKED),
#if defined(PDUMP)
PVR_DRM_IOCTL_DEF(PVR_DBGDRV, dbgdrv_ioctl, PVR_DRM_UNLOCKED),
#endif
#if defined(DISPLAY_CONTROLLER) && defined(PVR_DISPLAY_CONTROLLER_DRM_IOCTL)
PVR_DRM_IOCTL_DEF(PVR_DISP, PVRDRM_Display_ioctl, DRM_MASTER | PVR_DRM_UNLOCKED)
#endif
};
#if !defined(SUPPORT_DRI_DRM_PLUGIN)
static int pvr_max_ioctl = DRM_ARRAY_SIZE(sPVRDrmIoctls);
#endif
#if defined(PVR_DRI_DRM_PLATFORM_DEV) && !defined(SUPPORT_DRI_DRM_EXT) && \
!defined(SUPPORT_DRI_DRM_PLUGIN)
static int PVRSRVDrmProbe(struct platform_device *pDevice);
static int PVRSRVDrmRemove(struct platform_device *pDevice);
#endif /* defined(PVR_DRI_DRM_PLATFORM_DEV) && !defined(SUPPORT_DRI_DRM_EXT) */
#if defined(SUPPORT_DRI_DRM_PLUGIN)
static PVRSRV_DRM_PLUGIN sPVRDrmPlugin =
{
.name = PVR_DRM_NAME,
.open = PVRSRVDrmOpen,
.load = PVRSRVDrmLoad,
.unload = PVRSRVDrmUnload,
.release = PVRSRVDrmRelease,
.mmap = PVRMMap,
.ioctls = sPVRDrmIoctls,
.num_ioctls = DRM_ARRAY_SIZE(sPVRDrmIoctls),
.ioctl_start = 0
};
#else /* defined(SUPPORT_DRI_DRM_PLUGIN) */
static struct drm_driver sPVRDrmDriver =
{
#if defined(PVR_OLD_STYLE_DRM_PLATFORM_DEV)
.driver_features = DRIVER_USE_PLATFORM_DEVICE,
#else
.driver_features = 0,
#endif
.dev_priv_size = 0,
.load = PVRSRVDrmLoad,
.unload = PVRSRVDrmUnload,
.open = PVRSRVDrmOpen,
#if defined(PVR_DRI_DRM_USE_POST_CLOSE)
.postclose = PVRSRVDrmPostClose,
#endif
#if !defined(PVR_DRI_DRM_PLATFORM_DEV) && !defined(SUPPORT_DRM_MODESET)
.suspend = PVRSRVDriverSuspend,
.resume = PVRSRVDriverResume,
#endif
#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,37))
.get_map_ofs = drm_core_get_map_ofs,
.get_reg_ofs = drm_core_get_reg_ofs,
#endif
.ioctls = sPVRDrmIoctls,
.fops =
{
.owner = THIS_MODULE,
.open = drm_open,
#if defined(PVR_DRI_DRM_USE_POST_CLOSE)
.release = drm_release,
#else
.release = PVRSRVDrmRelease,
#endif
PVR_DRM_FOPS_IOCTL = drm_ioctl,
.mmap = PVRMMap,
.poll = drm_poll,
.fasync = drm_fasync,
},
#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,39))
#if defined(PVR_OLD_STYLE_DRM_PLATFORM_DEV)
.platform_driver =
{
.id_table = asPlatIdList,
.driver =
{
.name = PVR_DRM_NAME,
},
.probe = PVRSRVDrmProbe,
.remove = PVRSRVDrmRemove,
.suspend = PVRSRVDriverSuspend,
.resume = PVRSRVDriverResume,
.shutdown = PVRSRVDriverShutdown,
},
#else
.pci_driver =
{
.name = PVR_DRM_NAME,
.id_table = asPciIdList,
#if defined(SUPPORT_DRM_MODESET)
.probe = PVRSRVPciProbe,
.remove = PVRSRVPciRemove,
.suspend = PVRSRVDriverSuspend,
.resume = PVRSRVDriverResume,
#endif
},
#endif
#endif
.name = PVR_DRM_NAME,
.desc = PVR_DRM_DESC,
.date = PVR_DRM_DATE,
.major = PVRVERSION_MAJ,
.minor = PVRVERSION_MIN,
.patchlevel = PVRVERSION_BUILD,
};
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,39)) && !defined(PVR_DRI_DRM_PLATFORM_DEV)
static struct pci_driver sPVRPCIDriver =
{
.name = PVR_DRM_NAME,
.id_table = asPciIdList,
#if defined(SUPPORT_DRM_MODESET)
.probe = PVRSRVPciProbe,
.remove = PVRSRVPciRemove,
#endif
};
#endif
#if defined(PVR_NEW_STYLE_DRM_PLATFORM_DEV)
#if defined(NO_HARDWARE)
static void PVRSRVDeviceRelease(struct device unref__ *pDevice)
{
}
static struct platform_device sPVRPlatDevice = {
.name = PVR_DRM_NAME,
.id = -1,
.dev = {
.release = PVRSRVDeviceRelease
}
};
#endif
static struct platform_driver sPVRPlatDriver =
{
.id_table = asPlatIdList,
.driver =
{
.name = PVR_DRM_NAME,
},
.probe = PVRSRVDrmProbe,
.remove = PVRSRVDrmRemove,
.suspend = PVRSRVDriverSuspend,
.resume = PVRSRVDriverResume,
.shutdown = PVRSRVDriverShutdown,
};
#endif
#endif /* defined(SUPPORT_DRI_DRM_PLUGIN) */
#if defined(PVR_DRI_DRM_PLATFORM_DEV) && !defined(SUPPORT_DRI_DRM_EXT) && \
!defined(SUPPORT_DRI_DRM_PLUGIN)
static int
PVRSRVDrmProbe(struct platform_device *pDevice)
{
PVR_TRACE(("PVRSRVDrmProbe"));
#if defined(PVR_NEW_STYLE_DRM_PLATFORM_DEV)
gpsPVRLDMDev = pDevice;
return drm_platform_init(&sPVRDrmDriver, gpsPVRLDMDev);
#else
return drm_get_platform_dev(pDevice, &sPVRDrmDriver);
#endif
}
static int
PVRSRVDrmRemove(struct platform_device *pDevice)
{
PVR_TRACE(("PVRSRVDrmRemove"));
#if defined(PVR_NEW_STYLE_DRM_PLATFORM_DEV)
drm_platform_exit(&sPVRDrmDriver, gpsPVRLDMDev);
#else
drm_put_dev(gpsPVRDRMDev);
#endif
return 0;
}
#endif
static int __init PVRSRVDrmInit(void)
{
int iRes;
#if !defined(SUPPORT_DRI_DRM_PLUGIN)
sPVRDrmDriver.num_ioctls = pvr_max_ioctl;
#endif
#if defined(SUPPORT_DRM_MODESET)
sPVRDrmDriver.driver_features |= DRIVER_MODESET;
#endif
/* Must come before attempting to print anything via Services */
PVRDPFInit();
#if defined(PVR_NEW_STYLE_DRM_PLATFORM_DEV)
iRes = platform_driver_register(&sPVRPlatDriver);
#if defined(NO_HARDWARE)
if (iRes == 0)
{
iRes = platform_device_register(&sPVRPlatDevice);
if (iRes != 0)
{
platform_driver_unregister(&sPVRPlatDriver);
}
}
#endif
#else /* defined(PVR_NEW_STYLE_DRM_PLATFORM_DEV) */
#if defined(SUPPORT_DRI_DRM_PLUGIN)
iRes = SysDRMRegisterPlugin(&sPVRDrmPlugin);
#else /* defined(SUPPORT_DRI_DRM_PLUGIN) */
#if defined(PVR_DRI_DRM_NOT_PCI)
iRes = drm_pvr_dev_add();
if (iRes != 0)
{
return iRes;
}
#endif
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,39))
#if defined(PVR_DRI_DRM_PLATFORM_DEV)
iRes = drm_platform_init(&sPVRDrmDriver, gpsPVRLDMDev);
#else
iRes = drm_pci_init(&sPVRDrmDriver, &sPVRPCIDriver);
#endif
#else /* (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,39)) */
iRes = drm_init(&sPVRDrmDriver);
#endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,39)) */
#if defined(PVR_DRI_DRM_NOT_PCI)
if (iRes != 0)
{
drm_pvr_dev_remove();
}
#endif
#endif /* defined(SUPPORT_DRI_DRM_PLUGIN) */
#endif /* defined(PVR_NEW_STYLE_DRM_PLATFORM_DEV) */
return iRes;
}
static void __exit PVRSRVDrmExit(void)
{
#if defined(PVR_NEW_STYLE_DRM_PLATFORM_DEV)
#if defined(NO_HARDWARE)
platform_device_unregister(&sPVRPlatDevice);
#endif
platform_driver_unregister(&sPVRPlatDriver);
#else /* defined(PVR_NEW_STYLE_DRM_PLATFORM_DEV) */
#if defined(SUPPORT_DRI_DRM_PLUGIN)
SysDRMUnregisterPlugin(&sPVRDrmPlugin);
#else /* defined(SUPPORT_DRI_DRM_PLUGIN) */
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,39))
#if defined(PVR_DRI_DRM_PLATFORM_DEV)
drm_platform_exit(&sPVRDrmDriver, gpsPVRLDMDev);
#else
drm_pci_exit(&sPVRDrmDriver, &sPVRPCIDriver);
#endif
#else /* (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,39)) */
drm_exit(&sPVRDrmDriver);
#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,39)) */
#if defined(PVR_DRI_DRM_NOT_PCI)
drm_pvr_dev_remove();
#endif
#endif /* defined(SUPPORT_DRI_DRM_PLUGIN) */
#endif /* defined(PVR_NEW_STYLE_DRM_PLATFORM_DEV) */
}
/*
* These macro calls define the initialisation and removal functions of the
* driver. Although they are prefixed `module_', they apply when compiling
* statically as well; in both cases they define the function the kernel will
* run to start/stop the driver.
*/
module_init(PVRSRVDrmInit);
module_exit(PVRSRVDrmExit);
#endif /* !defined(SUPPORT_DRI_DRM_EXT) */
#endif /* defined(SUPPORT_DRI_DRM) */
|