]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/gpu/drm/omapdrm/omap_drv.c
7bd2da5eb1ce0c3e3c332cccc8ef398668e460c2
[linux.git] / drivers / gpu / drm / omapdrm / omap_drv.c
1 /*
2  * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
3  * Author: Rob Clark <rob@ti.com>
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 as published by
7  * the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
12  * more details.
13  *
14  * You should have received a copy of the GNU General Public License along with
15  * this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include <linux/of.h>
19 #include <linux/sort.h>
20 #include <linux/sys_soc.h>
21
22 #include <drm/drm_atomic.h>
23 #include <drm/drm_atomic_helper.h>
24 #include <drm/drm_fb_helper.h>
25 #include <drm/drm_probe_helper.h>
26 #include <drm/drm_panel.h>
27
28 #include "omap_dmm_tiler.h"
29 #include "omap_drv.h"
30
31 #define DRIVER_NAME             MODULE_NAME
32 #define DRIVER_DESC             "OMAP DRM"
33 #define DRIVER_DATE             "20110917"
34 #define DRIVER_MAJOR            1
35 #define DRIVER_MINOR            0
36 #define DRIVER_PATCHLEVEL       0
37
38 /*
39  * mode config funcs
40  */
41
42 /* Notes about mapping DSS and DRM entities:
43  *    CRTC:        overlay
44  *    encoder:     manager.. with some extension to allow one primary CRTC
45  *                 and zero or more video CRTC's to be mapped to one encoder?
46  *    connector:   dssdev.. manager can be attached/detached from different
47  *                 devices
48  */
49
50 static void omap_atomic_wait_for_completion(struct drm_device *dev,
51                                             struct drm_atomic_state *old_state)
52 {
53         struct drm_crtc_state *new_crtc_state;
54         struct drm_crtc *crtc;
55         unsigned int i;
56         int ret;
57
58         for_each_new_crtc_in_state(old_state, crtc, new_crtc_state, i) {
59                 if (!new_crtc_state->active)
60                         continue;
61
62                 ret = omap_crtc_wait_pending(crtc);
63
64                 if (!ret)
65                         dev_warn(dev->dev,
66                                  "atomic complete timeout (pipe %u)!\n", i);
67         }
68 }
69
70 static void omap_atomic_commit_tail(struct drm_atomic_state *old_state)
71 {
72         struct drm_device *dev = old_state->dev;
73         struct omap_drm_private *priv = dev->dev_private;
74
75         priv->dispc_ops->runtime_get(priv->dispc);
76
77         /* Apply the atomic update. */
78         drm_atomic_helper_commit_modeset_disables(dev, old_state);
79
80         if (priv->omaprev != 0x3430) {
81                 /* With the current dss dispc implementation we have to enable
82                  * the new modeset before we can commit planes. The dispc ovl
83                  * configuration relies on the video mode configuration been
84                  * written into the HW when the ovl configuration is
85                  * calculated.
86                  *
87                  * This approach is not ideal because after a mode change the
88                  * plane update is executed only after the first vblank
89                  * interrupt. The dispc implementation should be fixed so that
90                  * it is able use uncommitted drm state information.
91                  */
92                 drm_atomic_helper_commit_modeset_enables(dev, old_state);
93                 omap_atomic_wait_for_completion(dev, old_state);
94
95                 drm_atomic_helper_commit_planes(dev, old_state, 0);
96
97                 drm_atomic_helper_commit_hw_done(old_state);
98         } else {
99                 /*
100                  * OMAP3 DSS seems to have issues with the work-around above,
101                  * resulting in endless sync losts if a crtc is enabled without
102                  * a plane. For now, skip the WA for OMAP3.
103                  */
104                 drm_atomic_helper_commit_planes(dev, old_state, 0);
105
106                 drm_atomic_helper_commit_modeset_enables(dev, old_state);
107
108                 drm_atomic_helper_commit_hw_done(old_state);
109         }
110
111         /*
112          * Wait for completion of the page flips to ensure that old buffers
113          * can't be touched by the hardware anymore before cleaning up planes.
114          */
115         omap_atomic_wait_for_completion(dev, old_state);
116
117         drm_atomic_helper_cleanup_planes(dev, old_state);
118
119         priv->dispc_ops->runtime_put(priv->dispc);
120 }
121
122 static const struct drm_mode_config_helper_funcs omap_mode_config_helper_funcs = {
123         .atomic_commit_tail = omap_atomic_commit_tail,
124 };
125
126 static const struct drm_mode_config_funcs omap_mode_config_funcs = {
127         .fb_create = omap_framebuffer_create,
128         .output_poll_changed = drm_fb_helper_output_poll_changed,
129         .atomic_check = drm_atomic_helper_check,
130         .atomic_commit = drm_atomic_helper_commit,
131 };
132
133 static void omap_disconnect_pipelines(struct drm_device *ddev)
134 {
135         struct omap_drm_private *priv = ddev->dev_private;
136         unsigned int i;
137
138         for (i = 0; i < priv->num_pipes; i++) {
139                 struct omap_drm_pipeline *pipe = &priv->pipes[i];
140
141                 if (pipe->output->panel)
142                         drm_panel_detach(pipe->output->panel);
143
144                 omapdss_device_disconnect(NULL, pipe->output);
145
146                 omapdss_device_put(pipe->output);
147                 pipe->output = NULL;
148         }
149
150         memset(&priv->channels, 0, sizeof(priv->channels));
151
152         priv->num_pipes = 0;
153 }
154
155 static int omap_connect_pipelines(struct drm_device *ddev)
156 {
157         struct omap_drm_private *priv = ddev->dev_private;
158         struct omap_dss_device *output = NULL;
159         int r;
160
161         for_each_dss_output(output) {
162                 r = omapdss_device_connect(priv->dss, NULL, output);
163                 if (r == -EPROBE_DEFER) {
164                         omapdss_device_put(output);
165                         return r;
166                 } else if (r) {
167                         dev_warn(output->dev, "could not connect output %s\n",
168                                  output->name);
169                 } else {
170                         struct omap_drm_pipeline *pipe;
171
172                         pipe = &priv->pipes[priv->num_pipes++];
173                         pipe->output = omapdss_device_get(output);
174
175                         if (priv->num_pipes == ARRAY_SIZE(priv->pipes)) {
176                                 /* To balance the 'for_each_dss_output' loop */
177                                 omapdss_device_put(output);
178                                 break;
179                         }
180                 }
181         }
182
183         return 0;
184 }
185
186 static int omap_compare_pipelines(const void *a, const void *b)
187 {
188         const struct omap_drm_pipeline *pipe1 = a;
189         const struct omap_drm_pipeline *pipe2 = b;
190
191         if (pipe1->alias_id > pipe2->alias_id)
192                 return 1;
193         else if (pipe1->alias_id < pipe2->alias_id)
194                 return -1;
195         return 0;
196 }
197
198 static int omap_modeset_init_properties(struct drm_device *dev)
199 {
200         struct omap_drm_private *priv = dev->dev_private;
201         unsigned int num_planes = priv->dispc_ops->get_num_ovls(priv->dispc);
202
203         priv->zorder_prop = drm_property_create_range(dev, 0, "zorder", 0,
204                                                       num_planes - 1);
205         if (!priv->zorder_prop)
206                 return -ENOMEM;
207
208         return 0;
209 }
210
211 static int omap_display_id(struct omap_dss_device *output)
212 {
213         struct device_node *node = NULL;
214
215         if (output->next) {
216                 struct omap_dss_device *display;
217
218                 display = omapdss_display_get(output);
219                 node = display->dev->of_node;
220                 omapdss_device_put(display);
221         } else if (output->bridge) {
222                 struct drm_bridge *bridge = output->bridge;
223
224                 while (bridge->next)
225                         bridge = bridge->next;
226
227                 node = bridge->of_node;
228         } else if (output->panel) {
229                 node = output->panel->dev->of_node;
230         }
231
232         return node ? of_alias_get_id(node, "display") : -ENODEV;
233 }
234
235 static int omap_modeset_init(struct drm_device *dev)
236 {
237         struct omap_drm_private *priv = dev->dev_private;
238         int num_ovls = priv->dispc_ops->get_num_ovls(priv->dispc);
239         int num_mgrs = priv->dispc_ops->get_num_mgrs(priv->dispc);
240         unsigned int i;
241         int ret;
242         u32 plane_crtc_mask;
243
244         if (!omapdss_stack_is_ready())
245                 return -EPROBE_DEFER;
246
247         drm_mode_config_init(dev);
248
249         ret = omap_modeset_init_properties(dev);
250         if (ret < 0)
251                 return ret;
252
253         /*
254          * This function creates exactly one connector, encoder, crtc,
255          * and primary plane per each connected dss-device. Each
256          * connector->encoder->crtc chain is expected to be separate
257          * and each crtc is connect to a single dss-channel. If the
258          * configuration does not match the expectations or exceeds
259          * the available resources, the configuration is rejected.
260          */
261         ret = omap_connect_pipelines(dev);
262         if (ret < 0)
263                 return ret;
264
265         if (priv->num_pipes > num_mgrs || priv->num_pipes > num_ovls) {
266                 dev_err(dev->dev, "%s(): Too many connected displays\n",
267                         __func__);
268                 return -EINVAL;
269         }
270
271         /* Create all planes first. They can all be put to any CRTC. */
272         plane_crtc_mask = (1 << priv->num_pipes) - 1;
273
274         for (i = 0; i < num_ovls; i++) {
275                 enum drm_plane_type type = i < priv->num_pipes
276                                          ? DRM_PLANE_TYPE_PRIMARY
277                                          : DRM_PLANE_TYPE_OVERLAY;
278                 struct drm_plane *plane;
279
280                 if (WARN_ON(priv->num_planes >= ARRAY_SIZE(priv->planes)))
281                         return -EINVAL;
282
283                 plane = omap_plane_init(dev, i, type, plane_crtc_mask);
284                 if (IS_ERR(plane))
285                         return PTR_ERR(plane);
286
287                 priv->planes[priv->num_planes++] = plane;
288         }
289
290         /*
291          * Create the encoders, attach the bridges and get the pipeline alias
292          * IDs.
293          */
294         for (i = 0; i < priv->num_pipes; i++) {
295                 struct omap_drm_pipeline *pipe = &priv->pipes[i];
296                 int id;
297
298                 pipe->encoder = omap_encoder_init(dev, pipe->output);
299                 if (!pipe->encoder)
300                         return -ENOMEM;
301
302                 if (pipe->output->bridge) {
303                         ret = drm_bridge_attach(pipe->encoder,
304                                                 pipe->output->bridge, NULL);
305                         if (ret < 0)
306                                 return ret;
307                 }
308
309                 id = omap_display_id(pipe->output);
310                 pipe->alias_id = id >= 0 ? id : i;
311         }
312
313         /* Sort the pipelines by DT aliases. */
314         sort(priv->pipes, priv->num_pipes, sizeof(priv->pipes[0]),
315              omap_compare_pipelines, NULL);
316
317         /*
318          * Populate the pipeline lookup table by DISPC channel. Only one display
319          * is allowed per channel.
320          */
321         for (i = 0; i < priv->num_pipes; ++i) {
322                 struct omap_drm_pipeline *pipe = &priv->pipes[i];
323                 enum omap_channel channel = pipe->output->dispc_channel;
324
325                 if (WARN_ON(priv->channels[channel] != NULL))
326                         return -EINVAL;
327
328                 priv->channels[channel] = pipe;
329         }
330
331         /* Create the connectors and CRTCs. */
332         for (i = 0; i < priv->num_pipes; i++) {
333                 struct omap_drm_pipeline *pipe = &priv->pipes[i];
334                 struct drm_encoder *encoder = pipe->encoder;
335                 struct drm_crtc *crtc;
336
337                 if (!pipe->output->bridge) {
338                         pipe->connector = omap_connector_init(dev, pipe->output,
339                                                               encoder);
340                         if (!pipe->connector)
341                                 return -ENOMEM;
342
343                         drm_connector_attach_encoder(pipe->connector, encoder);
344
345                         if (pipe->output->panel) {
346                                 ret = drm_panel_attach(pipe->output->panel,
347                                                        pipe->connector);
348                                 if (ret < 0)
349                                         return ret;
350                         }
351                 }
352
353                 crtc = omap_crtc_init(dev, pipe, priv->planes[i]);
354                 if (IS_ERR(crtc))
355                         return PTR_ERR(crtc);
356
357                 encoder->possible_crtcs = 1 << i;
358                 pipe->crtc = crtc;
359         }
360
361         DBG("registered %u planes, %u crtcs/encoders/connectors\n",
362             priv->num_planes, priv->num_pipes);
363
364         dev->mode_config.min_width = 8;
365         dev->mode_config.min_height = 2;
366
367         /*
368          * Note: these values are used for multiple independent things:
369          * connector mode filtering, buffer sizes, crtc sizes...
370          * Use big enough values here to cover all use cases, and do more
371          * specific checking in the respective code paths.
372          */
373         dev->mode_config.max_width = 8192;
374         dev->mode_config.max_height = 8192;
375
376         /* We want the zpos to be normalized */
377         dev->mode_config.normalize_zpos = true;
378
379         dev->mode_config.funcs = &omap_mode_config_funcs;
380         dev->mode_config.helper_private = &omap_mode_config_helper_funcs;
381
382         drm_mode_config_reset(dev);
383
384         omap_drm_irq_install(dev);
385
386         return 0;
387 }
388
389 /*
390  * Enable the HPD in external components if supported
391  */
392 static void omap_modeset_enable_external_hpd(struct drm_device *ddev)
393 {
394         struct omap_drm_private *priv = ddev->dev_private;
395         unsigned int i;
396
397         for (i = 0; i < priv->num_pipes; i++) {
398                 if (priv->pipes[i].connector)
399                         omap_connector_enable_hpd(priv->pipes[i].connector);
400         }
401 }
402
403 /*
404  * Disable the HPD in external components if supported
405  */
406 static void omap_modeset_disable_external_hpd(struct drm_device *ddev)
407 {
408         struct omap_drm_private *priv = ddev->dev_private;
409         unsigned int i;
410
411         for (i = 0; i < priv->num_pipes; i++) {
412                 if (priv->pipes[i].connector)
413                         omap_connector_disable_hpd(priv->pipes[i].connector);
414         }
415 }
416
417 /*
418  * drm ioctl funcs
419  */
420
421
422 static int ioctl_get_param(struct drm_device *dev, void *data,
423                 struct drm_file *file_priv)
424 {
425         struct omap_drm_private *priv = dev->dev_private;
426         struct drm_omap_param *args = data;
427
428         DBG("%p: param=%llu", dev, args->param);
429
430         switch (args->param) {
431         case OMAP_PARAM_CHIPSET_ID:
432                 args->value = priv->omaprev;
433                 break;
434         default:
435                 DBG("unknown parameter %lld", args->param);
436                 return -EINVAL;
437         }
438
439         return 0;
440 }
441
442 #define OMAP_BO_USER_MASK       0x00ffffff      /* flags settable by userspace */
443
444 static int ioctl_gem_new(struct drm_device *dev, void *data,
445                 struct drm_file *file_priv)
446 {
447         struct drm_omap_gem_new *args = data;
448         u32 flags = args->flags & OMAP_BO_USER_MASK;
449
450         VERB("%p:%p: size=0x%08x, flags=%08x", dev, file_priv,
451              args->size.bytes, flags);
452
453         return omap_gem_new_handle(dev, file_priv, args->size, flags,
454                                    &args->handle);
455 }
456
457 static int ioctl_gem_info(struct drm_device *dev, void *data,
458                 struct drm_file *file_priv)
459 {
460         struct drm_omap_gem_info *args = data;
461         struct drm_gem_object *obj;
462         int ret = 0;
463
464         VERB("%p:%p: handle=%d", dev, file_priv, args->handle);
465
466         obj = drm_gem_object_lookup(file_priv, args->handle);
467         if (!obj)
468                 return -ENOENT;
469
470         args->size = omap_gem_mmap_size(obj);
471         args->offset = omap_gem_mmap_offset(obj);
472
473         drm_gem_object_put_unlocked(obj);
474
475         return ret;
476 }
477
478 static const struct drm_ioctl_desc ioctls[DRM_COMMAND_END - DRM_COMMAND_BASE] = {
479         DRM_IOCTL_DEF_DRV(OMAP_GET_PARAM, ioctl_get_param,
480                           DRM_RENDER_ALLOW),
481         DRM_IOCTL_DEF_DRV(OMAP_SET_PARAM, drm_invalid_op,
482                           DRM_AUTH | DRM_MASTER | DRM_ROOT_ONLY),
483         DRM_IOCTL_DEF_DRV(OMAP_GEM_NEW, ioctl_gem_new,
484                           DRM_RENDER_ALLOW),
485         /* Deprecated, to be removed. */
486         DRM_IOCTL_DEF_DRV(OMAP_GEM_CPU_PREP, drm_noop,
487                           DRM_RENDER_ALLOW),
488         /* Deprecated, to be removed. */
489         DRM_IOCTL_DEF_DRV(OMAP_GEM_CPU_FINI, drm_noop,
490                           DRM_RENDER_ALLOW),
491         DRM_IOCTL_DEF_DRV(OMAP_GEM_INFO, ioctl_gem_info,
492                           DRM_RENDER_ALLOW),
493 };
494
495 /*
496  * drm driver funcs
497  */
498
499 static int dev_open(struct drm_device *dev, struct drm_file *file)
500 {
501         file->driver_priv = NULL;
502
503         DBG("open: dev=%p, file=%p", dev, file);
504
505         return 0;
506 }
507
508 static const struct vm_operations_struct omap_gem_vm_ops = {
509         .fault = omap_gem_fault,
510         .open = drm_gem_vm_open,
511         .close = drm_gem_vm_close,
512 };
513
514 static const struct file_operations omapdriver_fops = {
515         .owner = THIS_MODULE,
516         .open = drm_open,
517         .unlocked_ioctl = drm_ioctl,
518         .compat_ioctl = drm_compat_ioctl,
519         .release = drm_release,
520         .mmap = omap_gem_mmap,
521         .poll = drm_poll,
522         .read = drm_read,
523         .llseek = noop_llseek,
524 };
525
526 static struct drm_driver omap_drm_driver = {
527         .driver_features = DRIVER_MODESET | DRIVER_GEM  |
528                 DRIVER_ATOMIC | DRIVER_RENDER,
529         .open = dev_open,
530         .lastclose = drm_fb_helper_lastclose,
531 #ifdef CONFIG_DEBUG_FS
532         .debugfs_init = omap_debugfs_init,
533 #endif
534         .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
535         .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
536         .gem_prime_export = omap_gem_prime_export,
537         .gem_prime_import = omap_gem_prime_import,
538         .gem_free_object_unlocked = omap_gem_free_object,
539         .gem_vm_ops = &omap_gem_vm_ops,
540         .dumb_create = omap_gem_dumb_create,
541         .dumb_map_offset = omap_gem_dumb_map_offset,
542         .ioctls = ioctls,
543         .num_ioctls = DRM_OMAP_NUM_IOCTLS,
544         .fops = &omapdriver_fops,
545         .name = DRIVER_NAME,
546         .desc = DRIVER_DESC,
547         .date = DRIVER_DATE,
548         .major = DRIVER_MAJOR,
549         .minor = DRIVER_MINOR,
550         .patchlevel = DRIVER_PATCHLEVEL,
551 };
552
553 static const struct soc_device_attribute omapdrm_soc_devices[] = {
554         { .family = "OMAP3", .data = (void *)0x3430 },
555         { .family = "OMAP4", .data = (void *)0x4430 },
556         { .family = "OMAP5", .data = (void *)0x5430 },
557         { .family = "DRA7",  .data = (void *)0x0752 },
558         { /* sentinel */ }
559 };
560
561 static int omapdrm_init(struct omap_drm_private *priv, struct device *dev)
562 {
563         const struct soc_device_attribute *soc;
564         struct drm_device *ddev;
565         unsigned int i;
566         int ret;
567
568         DBG("%s", dev_name(dev));
569
570         /* Allocate and initialize the DRM device. */
571         ddev = drm_dev_alloc(&omap_drm_driver, dev);
572         if (IS_ERR(ddev))
573                 return PTR_ERR(ddev);
574
575         priv->ddev = ddev;
576         ddev->dev_private = priv;
577
578         priv->dev = dev;
579         priv->dss = omapdss_get_dss();
580         priv->dispc = dispc_get_dispc(priv->dss);
581         priv->dispc_ops = dispc_get_ops(priv->dss);
582
583         omap_crtc_pre_init(priv);
584
585         soc = soc_device_match(omapdrm_soc_devices);
586         priv->omaprev = soc ? (unsigned int)soc->data : 0;
587         priv->wq = alloc_ordered_workqueue("omapdrm", 0);
588
589         mutex_init(&priv->list_lock);
590         INIT_LIST_HEAD(&priv->obj_list);
591
592         /* Get memory bandwidth limits */
593         if (priv->dispc_ops->get_memory_bandwidth_limit)
594                 priv->max_bandwidth =
595                         priv->dispc_ops->get_memory_bandwidth_limit(priv->dispc);
596
597         omap_gem_init(ddev);
598
599         ret = omap_modeset_init(ddev);
600         if (ret) {
601                 dev_err(priv->dev, "omap_modeset_init failed: ret=%d\n", ret);
602                 goto err_gem_deinit;
603         }
604
605         /* Initialize vblank handling, start with all CRTCs disabled. */
606         ret = drm_vblank_init(ddev, priv->num_pipes);
607         if (ret) {
608                 dev_err(priv->dev, "could not init vblank\n");
609                 goto err_cleanup_modeset;
610         }
611
612         for (i = 0; i < priv->num_pipes; i++)
613                 drm_crtc_vblank_off(priv->pipes[i].crtc);
614
615         omap_fbdev_init(ddev);
616
617         drm_kms_helper_poll_init(ddev);
618         omap_modeset_enable_external_hpd(ddev);
619
620         /*
621          * Register the DRM device with the core and the connectors with
622          * sysfs.
623          */
624         ret = drm_dev_register(ddev, 0);
625         if (ret)
626                 goto err_cleanup_helpers;
627
628         return 0;
629
630 err_cleanup_helpers:
631         omap_modeset_disable_external_hpd(ddev);
632         drm_kms_helper_poll_fini(ddev);
633
634         omap_fbdev_fini(ddev);
635 err_cleanup_modeset:
636         drm_mode_config_cleanup(ddev);
637         omap_drm_irq_uninstall(ddev);
638 err_gem_deinit:
639         omap_gem_deinit(ddev);
640         destroy_workqueue(priv->wq);
641         omap_disconnect_pipelines(ddev);
642         omap_crtc_pre_uninit(priv);
643         drm_dev_put(ddev);
644         return ret;
645 }
646
647 static void omapdrm_cleanup(struct omap_drm_private *priv)
648 {
649         struct drm_device *ddev = priv->ddev;
650
651         DBG("");
652
653         drm_dev_unregister(ddev);
654
655         omap_modeset_disable_external_hpd(ddev);
656         drm_kms_helper_poll_fini(ddev);
657
658         omap_fbdev_fini(ddev);
659
660         drm_atomic_helper_shutdown(ddev);
661
662         drm_mode_config_cleanup(ddev);
663
664         omap_drm_irq_uninstall(ddev);
665         omap_gem_deinit(ddev);
666
667         destroy_workqueue(priv->wq);
668
669         omap_disconnect_pipelines(ddev);
670         omap_crtc_pre_uninit(priv);
671
672         drm_dev_put(ddev);
673 }
674
675 static int pdev_probe(struct platform_device *pdev)
676 {
677         struct omap_drm_private *priv;
678         int ret;
679
680         if (omapdss_is_initialized() == false)
681                 return -EPROBE_DEFER;
682
683         ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
684         if (ret) {
685                 dev_err(&pdev->dev, "Failed to set the DMA mask\n");
686                 return ret;
687         }
688
689         /* Allocate and initialize the driver private structure. */
690         priv = kzalloc(sizeof(*priv), GFP_KERNEL);
691         if (!priv)
692                 return -ENOMEM;
693
694         platform_set_drvdata(pdev, priv);
695
696         ret = omapdrm_init(priv, &pdev->dev);
697         if (ret < 0)
698                 kfree(priv);
699
700         return ret;
701 }
702
703 static int pdev_remove(struct platform_device *pdev)
704 {
705         struct omap_drm_private *priv = platform_get_drvdata(pdev);
706
707         omapdrm_cleanup(priv);
708         kfree(priv);
709
710         return 0;
711 }
712
713 #ifdef CONFIG_PM_SLEEP
714 static int omap_drm_suspend(struct device *dev)
715 {
716         struct omap_drm_private *priv = dev_get_drvdata(dev);
717         struct drm_device *drm_dev = priv->ddev;
718
719         return drm_mode_config_helper_suspend(drm_dev);
720 }
721
722 static int omap_drm_resume(struct device *dev)
723 {
724         struct omap_drm_private *priv = dev_get_drvdata(dev);
725         struct drm_device *drm_dev = priv->ddev;
726
727         drm_mode_config_helper_resume(drm_dev);
728
729         return omap_gem_resume(drm_dev);
730 }
731 #endif
732
733 static SIMPLE_DEV_PM_OPS(omapdrm_pm_ops, omap_drm_suspend, omap_drm_resume);
734
735 static struct platform_driver pdev = {
736         .driver = {
737                 .name = "omapdrm",
738                 .pm = &omapdrm_pm_ops,
739         },
740         .probe = pdev_probe,
741         .remove = pdev_remove,
742 };
743
744 static struct platform_driver * const drivers[] = {
745         &omap_dmm_driver,
746         &pdev,
747 };
748
749 static int __init omap_drm_init(void)
750 {
751         DBG("init");
752
753         return platform_register_drivers(drivers, ARRAY_SIZE(drivers));
754 }
755
756 static void __exit omap_drm_fini(void)
757 {
758         DBG("fini");
759
760         platform_unregister_drivers(drivers, ARRAY_SIZE(drivers));
761 }
762
763 /* need late_initcall() so we load after dss_driver's are loaded */
764 late_initcall(omap_drm_init);
765 module_exit(omap_drm_fini);
766
767 MODULE_AUTHOR("Rob Clark <rob@ti.com>");
768 MODULE_DESCRIPTION("OMAP DRM Display Driver");
769 MODULE_ALIAS("platform:" DRIVER_NAME);
770 MODULE_LICENSE("GPL v2");