2 * drivers/staging/omapdrm/omap_drv.c
4 * Copyright (C) 2011 Texas Instruments
5 * Author: Rob Clark <rob@ti.com>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * You should have received a copy of the GNU General Public License along with
17 * this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "drm_crtc_helper.h"
23 #include "drm_fb_helper.h"
24 #include "omap_dmm_tiler.h"
26 #define DRIVER_NAME MODULE_NAME
27 #define DRIVER_DESC "OMAP DRM"
28 #define DRIVER_DATE "20110917"
29 #define DRIVER_MAJOR 1
30 #define DRIVER_MINOR 0
31 #define DRIVER_PATCHLEVEL 0
33 struct drm_device
*drm_device
;
35 static int num_crtc
= CONFIG_DRM_OMAP_NUM_CRTCS
;
37 MODULE_PARM_DESC(num_crtc
, "Number of overlays to use as CRTCs");
38 module_param(num_crtc
, int, 0600);
44 /* Notes about mapping DSS and DRM entities:
46 * encoder: manager.. with some extension to allow one primary CRTC
47 * and zero or more video CRTC's to be mapped to one encoder?
48 * connector: dssdev.. manager can be attached/detached from different
52 static void omap_fb_output_poll_changed(struct drm_device
*dev
)
54 struct omap_drm_private
*priv
= dev
->dev_private
;
57 drm_fb_helper_hotplug_event(priv
->fbdev
);
61 static struct drm_mode_config_funcs omap_mode_config_funcs
= {
62 .fb_create
= omap_framebuffer_create
,
63 .output_poll_changed
= omap_fb_output_poll_changed
,
66 static int get_connector_type(struct omap_dss_device
*dssdev
)
68 switch (dssdev
->type
) {
69 case OMAP_DISPLAY_TYPE_HDMI
:
70 return DRM_MODE_CONNECTOR_HDMIA
;
71 case OMAP_DISPLAY_TYPE_DPI
:
72 if (!strcmp(dssdev
->name
, "dvi"))
73 return DRM_MODE_CONNECTOR_DVID
;
76 return DRM_MODE_CONNECTOR_Unknown
;
80 #if 0 /* enable when dss2 supports hotplug */
81 static int omap_drm_notifier(struct notifier_block
*nb
,
82 unsigned long evt
, void *arg
)
85 case OMAP_DSS_SIZE_CHANGE
:
86 case OMAP_DSS_HOTPLUG_CONNECT
:
87 case OMAP_DSS_HOTPLUG_DISCONNECT
: {
88 struct drm_device
*dev
= drm_device
;
89 DBG("hotplug event: evt=%d, dev=%p", evt
, dev
);
91 drm_sysfs_hotplug_event(dev
);
95 default: /* don't care about other events for now */
101 static void dump_video_chains(void)
105 DBG("dumping video chains: ");
106 for (i
= 0; i
< omap_dss_get_num_overlays(); i
++) {
107 struct omap_overlay
*ovl
= omap_dss_get_overlay(i
);
108 struct omap_overlay_manager
*mgr
= ovl
->manager
;
109 struct omap_dss_device
*dssdev
= mgr
? mgr
->device
: NULL
;
111 DBG("%d: %s -> %s -> %s", i
, ovl
->name
, mgr
->name
,
114 DBG("%d: %s -> %s", i
, ovl
->name
, mgr
->name
);
116 DBG("%d: %s", i
, ovl
->name
);
121 /* create encoders for each manager */
122 static int create_encoder(struct drm_device
*dev
,
123 struct omap_overlay_manager
*mgr
)
125 struct omap_drm_private
*priv
= dev
->dev_private
;
126 struct drm_encoder
*encoder
= omap_encoder_init(dev
, mgr
);
129 dev_err(dev
->dev
, "could not create encoder: %s\n",
134 BUG_ON(priv
->num_encoders
>= ARRAY_SIZE(priv
->encoders
));
136 priv
->encoders
[priv
->num_encoders
++] = encoder
;
141 /* create connectors for each display device */
142 static int create_connector(struct drm_device
*dev
,
143 struct omap_dss_device
*dssdev
)
145 struct omap_drm_private
*priv
= dev
->dev_private
;
146 static struct notifier_block
*notifier
;
147 struct drm_connector
*connector
;
150 if (!dssdev
->driver
) {
151 dev_warn(dev
->dev
, "%s has no driver.. skipping it\n",
156 if (!(dssdev
->driver
->get_timings
||
157 dssdev
->driver
->read_edid
)) {
158 dev_warn(dev
->dev
, "%s driver does not support "
159 "get_timings or read_edid.. skipping it!\n",
164 connector
= omap_connector_init(dev
,
165 get_connector_type(dssdev
), dssdev
);
168 dev_err(dev
->dev
, "could not create connector: %s\n",
173 BUG_ON(priv
->num_connectors
>= ARRAY_SIZE(priv
->connectors
));
175 priv
->connectors
[priv
->num_connectors
++] = connector
;
177 #if 0 /* enable when dss2 supports hotplug */
178 notifier
= kzalloc(sizeof(struct notifier_block
), GFP_KERNEL
);
179 notifier
->notifier_call
= omap_drm_notifier
;
180 omap_dss_add_notify(dssdev
, notifier
);
185 for (j
= 0; j
< priv
->num_encoders
; j
++) {
186 struct omap_overlay_manager
*mgr
=
187 omap_encoder_get_manager(priv
->encoders
[j
]);
188 if (mgr
->device
== dssdev
) {
189 drm_mode_connector_attach_encoder(connector
,
197 /* create up to max_overlays CRTCs mapping to overlays.. by default,
198 * connect the overlays to different managers/encoders, giving priority
199 * to encoders connected to connectors with a detected connection
201 static int create_crtc(struct drm_device
*dev
, struct omap_overlay
*ovl
,
202 int *j
, unsigned int connected_connectors
)
204 struct omap_drm_private
*priv
= dev
->dev_private
;
205 struct omap_overlay_manager
*mgr
= NULL
;
206 struct drm_crtc
*crtc
;
208 /* find next best connector, ones with detected connection first
210 while (*j
< priv
->num_connectors
&& !mgr
) {
211 if (connected_connectors
& (1 << *j
)) {
212 struct drm_encoder
*encoder
=
213 omap_connector_attached_encoder(
214 priv
->connectors
[*j
]);
216 mgr
= omap_encoder_get_manager(encoder
);
222 /* if we couldn't find another connected connector, lets start
223 * looking at the unconnected connectors:
225 * note: it might not be immediately apparent, but thanks to
226 * the !mgr check in both this loop and the one above, the only
227 * way to enter this loop is with *j == priv->num_connectors,
228 * so idx can never go negative.
230 while (*j
< 2 * priv
->num_connectors
&& !mgr
) {
231 int idx
= *j
- priv
->num_connectors
;
232 if (!(connected_connectors
& (1 << idx
))) {
233 struct drm_encoder
*encoder
=
234 omap_connector_attached_encoder(
235 priv
->connectors
[idx
]);
237 mgr
= omap_encoder_get_manager(encoder
);
243 crtc
= omap_crtc_init(dev
, ovl
, priv
->num_crtcs
);
246 dev_err(dev
->dev
, "could not create CRTC: %s\n",
251 BUG_ON(priv
->num_crtcs
>= ARRAY_SIZE(priv
->crtcs
));
253 priv
->crtcs
[priv
->num_crtcs
++] = crtc
;
258 static int create_plane(struct drm_device
*dev
, struct omap_overlay
*ovl
,
259 unsigned int possible_crtcs
)
261 struct omap_drm_private
*priv
= dev
->dev_private
;
262 struct drm_plane
*plane
=
263 omap_plane_init(dev
, ovl
, possible_crtcs
, false);
266 dev_err(dev
->dev
, "could not create plane: %s\n",
271 BUG_ON(priv
->num_planes
>= ARRAY_SIZE(priv
->planes
));
273 priv
->planes
[priv
->num_planes
++] = plane
;
278 static int match_dev_name(struct omap_dss_device
*dssdev
, void *data
)
280 return !strcmp(dssdev
->name
, data
);
283 static unsigned int detect_connectors(struct drm_device
*dev
)
285 struct omap_drm_private
*priv
= dev
->dev_private
;
286 unsigned int connected_connectors
= 0;
289 for (i
= 0; i
< priv
->num_connectors
; i
++) {
290 struct drm_connector
*connector
= priv
->connectors
[i
];
291 if (omap_connector_detect(connector
, true) ==
292 connector_status_connected
) {
293 connected_connectors
|= (1 << i
);
297 return connected_connectors
;
300 static int omap_modeset_init(struct drm_device
*dev
)
302 const struct omap_drm_platform_data
*pdata
= dev
->dev
->platform_data
;
303 struct omap_kms_platform_data
*kms_pdata
= NULL
;
304 struct omap_drm_private
*priv
= dev
->dev_private
;
305 struct omap_dss_device
*dssdev
= NULL
;
307 unsigned int connected_connectors
= 0;
309 drm_mode_config_init(dev
);
311 if (pdata
&& pdata
->kms_pdata
) {
312 kms_pdata
= pdata
->kms_pdata
;
314 /* if platform data is provided by the board file, use it to
315 * control which overlays, managers, and devices we own.
317 for (i
= 0; i
< kms_pdata
->mgr_cnt
; i
++) {
318 struct omap_overlay_manager
*mgr
=
319 omap_dss_get_overlay_manager(
320 kms_pdata
->mgr_ids
[i
]);
321 create_encoder(dev
, mgr
);
324 for (i
= 0; i
< kms_pdata
->dev_cnt
; i
++) {
325 struct omap_dss_device
*dssdev
=
326 omap_dss_find_device(
327 (void *)kms_pdata
->dev_names
[i
],
330 dev_warn(dev
->dev
, "no such dssdev: %s\n",
331 kms_pdata
->dev_names
[i
]);
334 create_connector(dev
, dssdev
);
337 connected_connectors
= detect_connectors(dev
);
340 for (i
= 0; i
< kms_pdata
->ovl_cnt
; i
++) {
341 struct omap_overlay
*ovl
=
342 omap_dss_get_overlay(kms_pdata
->ovl_ids
[i
]);
343 create_crtc(dev
, ovl
, &j
, connected_connectors
);
346 for (i
= 0; i
< kms_pdata
->pln_cnt
; i
++) {
347 struct omap_overlay
*ovl
=
348 omap_dss_get_overlay(kms_pdata
->pln_ids
[i
]);
349 create_plane(dev
, ovl
, (1 << priv
->num_crtcs
) - 1);
352 /* otherwise just grab up to CONFIG_DRM_OMAP_NUM_CRTCS and try
353 * to make educated guesses about everything else
355 int max_overlays
= min(omap_dss_get_num_overlays(), num_crtc
);
357 for (i
= 0; i
< omap_dss_get_num_overlay_managers(); i
++) {
358 create_encoder(dev
, omap_dss_get_overlay_manager(i
));
361 for_each_dss_dev(dssdev
) {
362 create_connector(dev
, dssdev
);
365 connected_connectors
= detect_connectors(dev
);
368 for (i
= 0; i
< max_overlays
; i
++) {
369 create_crtc(dev
, omap_dss_get_overlay(i
),
370 &j
, connected_connectors
);
373 /* use any remaining overlays as drm planes */
374 for (; i
< omap_dss_get_num_overlays(); i
++) {
375 struct omap_overlay
*ovl
= omap_dss_get_overlay(i
);
376 create_plane(dev
, ovl
, (1 << priv
->num_crtcs
) - 1);
380 /* for now keep the mapping of CRTCs and encoders static.. */
381 for (i
= 0; i
< priv
->num_encoders
; i
++) {
382 struct drm_encoder
*encoder
= priv
->encoders
[i
];
383 struct omap_overlay_manager
*mgr
=
384 omap_encoder_get_manager(encoder
);
386 encoder
->possible_crtcs
= (1 << priv
->num_crtcs
) - 1;
388 DBG("%s: possible_crtcs=%08x", mgr
->name
,
389 encoder
->possible_crtcs
);
394 dev
->mode_config
.min_width
= 32;
395 dev
->mode_config
.min_height
= 32;
397 /* note: eventually will need some cpu_is_omapXYZ() type stuff here
398 * to fill in these limits properly on different OMAP generations..
400 dev
->mode_config
.max_width
= 2048;
401 dev
->mode_config
.max_height
= 2048;
403 dev
->mode_config
.funcs
= &omap_mode_config_funcs
;
408 static void omap_modeset_free(struct drm_device
*dev
)
410 drm_mode_config_cleanup(dev
);
418 static int ioctl_get_param(struct drm_device
*dev
, void *data
,
419 struct drm_file
*file_priv
)
421 struct drm_omap_param
*args
= data
;
423 DBG("%p: param=%llu", dev
, args
->param
);
425 switch (args
->param
) {
426 case OMAP_PARAM_CHIPSET_ID
:
427 args
->value
= GET_OMAP_TYPE
;
430 DBG("unknown parameter %lld", args
->param
);
437 static int ioctl_set_param(struct drm_device
*dev
, void *data
,
438 struct drm_file
*file_priv
)
440 struct drm_omap_param
*args
= data
;
442 switch (args
->param
) {
444 DBG("unknown parameter %lld", args
->param
);
451 static int ioctl_gem_new(struct drm_device
*dev
, void *data
,
452 struct drm_file
*file_priv
)
454 struct drm_omap_gem_new
*args
= data
;
455 DBG("%p:%p: size=0x%08x, flags=%08x", dev
, file_priv
,
456 args
->size
.bytes
, args
->flags
);
457 return omap_gem_new_handle(dev
, file_priv
, args
->size
,
458 args
->flags
, &args
->handle
);
461 static int ioctl_gem_cpu_prep(struct drm_device
*dev
, void *data
,
462 struct drm_file
*file_priv
)
464 struct drm_omap_gem_cpu_prep
*args
= data
;
465 struct drm_gem_object
*obj
;
468 VERB("%p:%p: handle=%d, op=%x", dev
, file_priv
, args
->handle
, args
->op
);
470 obj
= drm_gem_object_lookup(dev
, file_priv
, args
->handle
);
475 ret
= omap_gem_op_sync(obj
, args
->op
);
478 ret
= omap_gem_op_start(obj
, args
->op
);
481 drm_gem_object_unreference_unlocked(obj
);
486 static int ioctl_gem_cpu_fini(struct drm_device
*dev
, void *data
,
487 struct drm_file
*file_priv
)
489 struct drm_omap_gem_cpu_fini
*args
= data
;
490 struct drm_gem_object
*obj
;
493 VERB("%p:%p: handle=%d", dev
, file_priv
, args
->handle
);
495 obj
= drm_gem_object_lookup(dev
, file_priv
, args
->handle
);
500 /* XXX flushy, flushy */
504 ret
= omap_gem_op_finish(obj
, args
->op
);
507 drm_gem_object_unreference_unlocked(obj
);
512 static int ioctl_gem_info(struct drm_device
*dev
, void *data
,
513 struct drm_file
*file_priv
)
515 struct drm_omap_gem_info
*args
= data
;
516 struct drm_gem_object
*obj
;
519 DBG("%p:%p: handle=%d", dev
, file_priv
, args
->handle
);
521 obj
= drm_gem_object_lookup(dev
, file_priv
, args
->handle
);
526 args
->size
= omap_gem_mmap_size(obj
);
527 args
->offset
= omap_gem_mmap_offset(obj
);
529 drm_gem_object_unreference_unlocked(obj
);
534 struct drm_ioctl_desc ioctls
[DRM_COMMAND_END
- DRM_COMMAND_BASE
] = {
535 DRM_IOCTL_DEF_DRV(OMAP_GET_PARAM
, ioctl_get_param
, DRM_UNLOCKED
|DRM_AUTH
),
536 DRM_IOCTL_DEF_DRV(OMAP_SET_PARAM
, ioctl_set_param
, DRM_UNLOCKED
|DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
537 DRM_IOCTL_DEF_DRV(OMAP_GEM_NEW
, ioctl_gem_new
, DRM_UNLOCKED
|DRM_AUTH
),
538 DRM_IOCTL_DEF_DRV(OMAP_GEM_CPU_PREP
, ioctl_gem_cpu_prep
, DRM_UNLOCKED
|DRM_AUTH
),
539 DRM_IOCTL_DEF_DRV(OMAP_GEM_CPU_FINI
, ioctl_gem_cpu_fini
, DRM_UNLOCKED
|DRM_AUTH
),
540 DRM_IOCTL_DEF_DRV(OMAP_GEM_INFO
, ioctl_gem_info
, DRM_UNLOCKED
|DRM_AUTH
),
548 * load - setup chip and create an initial config
550 * @flags: startup flags
552 * The driver load routine has to do several things:
553 * - initialize the memory manager
554 * - allocate initial config memory
555 * - setup the DRM framebuffer with the allocated memory
557 static int dev_load(struct drm_device
*dev
, unsigned long flags
)
559 struct omap_drm_private
*priv
;
562 DBG("load: dev=%p", dev
);
566 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
568 dev_err(dev
->dev
, "could not allocate priv\n");
572 dev
->dev_private
= priv
;
574 priv
->wq
= alloc_workqueue("omapdrm",
575 WQ_UNBOUND
| WQ_NON_REENTRANT
, 1);
577 INIT_LIST_HEAD(&priv
->obj_list
);
581 ret
= omap_modeset_init(dev
);
583 dev_err(dev
->dev
, "omap_modeset_init failed: ret=%d\n", ret
);
584 dev
->dev_private
= NULL
;
589 priv
->fbdev
= omap_fbdev_init(dev
);
591 dev_warn(dev
->dev
, "omap_fbdev_init failed\n");
592 /* well, limp along without an fbdev.. maybe X11 will work? */
595 drm_kms_helper_poll_init(dev
);
597 ret
= drm_vblank_init(dev
, priv
->num_crtcs
);
599 dev_warn(dev
->dev
, "could not init vblank\n");
605 static int dev_unload(struct drm_device
*dev
)
607 struct omap_drm_private
*priv
= dev
->dev_private
;
609 DBG("unload: dev=%p", dev
);
611 drm_vblank_cleanup(dev
);
612 drm_kms_helper_poll_fini(dev
);
614 omap_fbdev_free(dev
);
615 omap_modeset_free(dev
);
616 omap_gem_deinit(dev
);
618 flush_workqueue(priv
->wq
);
619 destroy_workqueue(priv
->wq
);
621 kfree(dev
->dev_private
);
622 dev
->dev_private
= NULL
;
627 static int dev_open(struct drm_device
*dev
, struct drm_file
*file
)
629 file
->driver_priv
= NULL
;
631 DBG("open: dev=%p, file=%p", dev
, file
);
636 static int dev_firstopen(struct drm_device
*dev
)
638 DBG("firstopen: dev=%p", dev
);
643 * lastclose - clean up after all DRM clients have exited
646 * Take care of cleaning up after all DRM clients have exited. In the
647 * mode setting case, we want to restore the kernel's initial mode (just
648 * in case the last client left us in a bad state).
650 static void dev_lastclose(struct drm_device
*dev
)
652 /* we don't support vga-switcheroo.. so just make sure the fbdev
655 struct omap_drm_private
*priv
= dev
->dev_private
;
658 DBG("lastclose: dev=%p", dev
);
660 ret
= drm_fb_helper_restore_fbdev_mode(priv
->fbdev
);
662 DBG("failed to restore crtc mode");
665 static void dev_preclose(struct drm_device
*dev
, struct drm_file
*file
)
667 DBG("preclose: dev=%p", dev
);
670 static void dev_postclose(struct drm_device
*dev
, struct drm_file
*file
)
672 DBG("postclose: dev=%p, file=%p", dev
, file
);
676 * enable_vblank - enable vblank interrupt events
678 * @crtc: which irq to enable
680 * Enable vblank interrupts for @crtc. If the device doesn't have
681 * a hardware vblank counter, this routine should be a no-op, since
682 * interrupts will have to stay on to keep the count accurate.
685 * Zero on success, appropriate errno if the given @crtc's vblank
686 * interrupt cannot be enabled.
688 static int dev_enable_vblank(struct drm_device
*dev
, int crtc
)
690 DBG("enable_vblank: dev=%p, crtc=%d", dev
, crtc
);
695 * disable_vblank - disable vblank interrupt events
697 * @crtc: which irq to enable
699 * Disable vblank interrupts for @crtc. If the device doesn't have
700 * a hardware vblank counter, this routine should be a no-op, since
701 * interrupts will have to stay on to keep the count accurate.
703 static void dev_disable_vblank(struct drm_device
*dev
, int crtc
)
705 DBG("disable_vblank: dev=%p, crtc=%d", dev
, crtc
);
708 static irqreturn_t
dev_irq_handler(DRM_IRQ_ARGS
)
713 static void dev_irq_preinstall(struct drm_device
*dev
)
715 DBG("irq_preinstall: dev=%p", dev
);
718 static int dev_irq_postinstall(struct drm_device
*dev
)
720 DBG("irq_postinstall: dev=%p", dev
);
724 static void dev_irq_uninstall(struct drm_device
*dev
)
726 DBG("irq_uninstall: dev=%p", dev
);
729 static struct vm_operations_struct omap_gem_vm_ops
= {
730 .fault
= omap_gem_fault
,
731 .open
= drm_gem_vm_open
,
732 .close
= drm_gem_vm_close
,
735 static const struct file_operations omapdriver_fops
= {
736 .owner
= THIS_MODULE
,
738 .unlocked_ioctl
= drm_ioctl
,
739 .release
= drm_release
,
740 .mmap
= omap_gem_mmap
,
742 .fasync
= drm_fasync
,
744 .llseek
= noop_llseek
,
747 static struct drm_driver omap_drm_driver
= {
749 DRIVER_HAVE_IRQ
| DRIVER_MODESET
| DRIVER_GEM
,
751 .unload
= dev_unload
,
753 .firstopen
= dev_firstopen
,
754 .lastclose
= dev_lastclose
,
755 .preclose
= dev_preclose
,
756 .postclose
= dev_postclose
,
757 .get_vblank_counter
= drm_vblank_count
,
758 .enable_vblank
= dev_enable_vblank
,
759 .disable_vblank
= dev_disable_vblank
,
760 .irq_preinstall
= dev_irq_preinstall
,
761 .irq_postinstall
= dev_irq_postinstall
,
762 .irq_uninstall
= dev_irq_uninstall
,
763 .irq_handler
= dev_irq_handler
,
764 .reclaim_buffers
= drm_core_reclaim_buffers
,
765 #ifdef CONFIG_DEBUG_FS
766 .debugfs_init
= omap_debugfs_init
,
767 .debugfs_cleanup
= omap_debugfs_cleanup
,
769 .gem_init_object
= omap_gem_init_object
,
770 .gem_free_object
= omap_gem_free_object
,
771 .gem_vm_ops
= &omap_gem_vm_ops
,
772 .dumb_create
= omap_gem_dumb_create
,
773 .dumb_map_offset
= omap_gem_dumb_map_offset
,
774 .dumb_destroy
= omap_gem_dumb_destroy
,
776 .num_ioctls
= DRM_OMAP_NUM_IOCTLS
,
777 .fops
= &omapdriver_fops
,
781 .major
= DRIVER_MAJOR
,
782 .minor
= DRIVER_MINOR
,
783 .patchlevel
= DRIVER_PATCHLEVEL
,
786 static int pdev_suspend(struct platform_device
*pDevice
, pm_message_t state
)
792 static int pdev_resume(struct platform_device
*device
)
798 static void pdev_shutdown(struct platform_device
*device
)
803 static int pdev_probe(struct platform_device
*device
)
805 DBG("%s", device
->name
);
806 if (platform_driver_register(&omap_dmm_driver
))
807 dev_err(&device
->dev
, "DMM registration failed\n");
809 return drm_platform_init(&omap_drm_driver
, device
);
812 static int pdev_remove(struct platform_device
*device
)
815 drm_platform_exit(&omap_drm_driver
, device
);
817 platform_driver_unregister(&omap_dmm_driver
);
821 struct platform_driver pdev
= {
824 .owner
= THIS_MODULE
,
827 .remove
= pdev_remove
,
828 .suspend
= pdev_suspend
,
829 .resume
= pdev_resume
,
830 .shutdown
= pdev_shutdown
,
833 static int __init
omap_drm_init(void)
836 return platform_driver_register(&pdev
);
839 static void __exit
omap_drm_fini(void)
842 platform_driver_unregister(&pdev
);
845 /* need late_initcall() so we load after dss_driver's are loaded */
846 late_initcall(omap_drm_init
);
847 module_exit(omap_drm_fini
);
849 MODULE_AUTHOR("Rob Clark <rob@ti.com>");
850 MODULE_DESCRIPTION("OMAP DRM Display Driver");
851 MODULE_ALIAS("platform:" DRIVER_NAME
);
852 MODULE_LICENSE("GPL v2");