Merge branch 'for-3.14-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj...
[sfrench/cifs-2.6.git] / drivers / staging / imx-drm / imx-drm-core.c
1 /*
2  * Freescale i.MX drm driver
3  *
4  * Copyright (C) 2011 Sascha Hauer, Pengutronix
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  */
16
17 #include <linux/device.h>
18 #include <linux/platform_device.h>
19 #include <drm/drmP.h>
20 #include <drm/drm_fb_helper.h>
21 #include <drm/drm_crtc_helper.h>
22 #include <linux/fb.h>
23 #include <linux/module.h>
24 #include <drm/drm_gem_cma_helper.h>
25 #include <drm/drm_fb_cma_helper.h>
26
27 #include "imx-drm.h"
28
29 #define MAX_CRTC        4
30
31 struct crtc_cookie {
32         void *cookie;
33         int id;
34         struct list_head list;
35 };
36
37 struct imx_drm_device {
38         struct drm_device                       *drm;
39         struct device                           *dev;
40         struct list_head                        crtc_list;
41         struct list_head                        encoder_list;
42         struct list_head                        connector_list;
43         struct mutex                            mutex;
44         int                                     pipes;
45         struct drm_fbdev_cma                    *fbhelper;
46 };
47
48 struct imx_drm_crtc {
49         struct drm_crtc                         *crtc;
50         struct list_head                        list;
51         struct imx_drm_device                   *imxdrm;
52         int                                     pipe;
53         struct imx_drm_crtc_helper_funcs        imx_drm_helper_funcs;
54         struct module                           *owner;
55         struct crtc_cookie                      cookie;
56 };
57
58 struct imx_drm_encoder {
59         struct drm_encoder                      *encoder;
60         struct list_head                        list;
61         struct module                           *owner;
62         struct list_head                        possible_crtcs;
63 };
64
65 struct imx_drm_connector {
66         struct drm_connector                    *connector;
67         struct list_head                        list;
68         struct module                           *owner;
69 };
70
71 int imx_drm_crtc_id(struct imx_drm_crtc *crtc)
72 {
73         return crtc->pipe;
74 }
75 EXPORT_SYMBOL_GPL(imx_drm_crtc_id);
76
77 static void imx_drm_driver_lastclose(struct drm_device *drm)
78 {
79         struct imx_drm_device *imxdrm = drm->dev_private;
80
81         if (imxdrm->fbhelper)
82                 drm_fbdev_cma_restore_mode(imxdrm->fbhelper);
83 }
84
85 static int imx_drm_driver_unload(struct drm_device *drm)
86 {
87         struct imx_drm_device *imxdrm = drm->dev_private;
88
89         imx_drm_device_put();
90
91         drm_vblank_cleanup(drm);
92         drm_kms_helper_poll_fini(drm);
93         drm_mode_config_cleanup(drm);
94
95         return 0;
96 }
97
98 /*
99  * We don't care at all for crtc numbers, but the core expects the
100  * crtcs to be numbered
101  */
102 static struct imx_drm_crtc *imx_drm_crtc_by_num(struct imx_drm_device *imxdrm,
103                 int num)
104 {
105         struct imx_drm_crtc *imx_drm_crtc;
106
107         list_for_each_entry(imx_drm_crtc, &imxdrm->crtc_list, list)
108                 if (imx_drm_crtc->pipe == num)
109                         return imx_drm_crtc;
110         return NULL;
111 }
112
113 int imx_drm_crtc_panel_format_pins(struct drm_crtc *crtc, u32 encoder_type,
114                 u32 interface_pix_fmt, int hsync_pin, int vsync_pin)
115 {
116         struct imx_drm_device *imxdrm = crtc->dev->dev_private;
117         struct imx_drm_crtc *imx_crtc;
118         struct imx_drm_crtc_helper_funcs *helper;
119
120         list_for_each_entry(imx_crtc, &imxdrm->crtc_list, list)
121                 if (imx_crtc->crtc == crtc)
122                         goto found;
123
124         return -EINVAL;
125 found:
126         helper = &imx_crtc->imx_drm_helper_funcs;
127         if (helper->set_interface_pix_fmt)
128                 return helper->set_interface_pix_fmt(crtc,
129                                 encoder_type, interface_pix_fmt,
130                                 hsync_pin, vsync_pin);
131         return 0;
132 }
133 EXPORT_SYMBOL_GPL(imx_drm_crtc_panel_format_pins);
134
135 int imx_drm_crtc_panel_format(struct drm_crtc *crtc, u32 encoder_type,
136                 u32 interface_pix_fmt)
137 {
138         return imx_drm_crtc_panel_format_pins(crtc, encoder_type,
139                                               interface_pix_fmt, 2, 3);
140 }
141 EXPORT_SYMBOL_GPL(imx_drm_crtc_panel_format);
142
143 int imx_drm_crtc_vblank_get(struct imx_drm_crtc *imx_drm_crtc)
144 {
145         return drm_vblank_get(imx_drm_crtc->crtc->dev, imx_drm_crtc->pipe);
146 }
147 EXPORT_SYMBOL_GPL(imx_drm_crtc_vblank_get);
148
149 void imx_drm_crtc_vblank_put(struct imx_drm_crtc *imx_drm_crtc)
150 {
151         drm_vblank_put(imx_drm_crtc->crtc->dev, imx_drm_crtc->pipe);
152 }
153 EXPORT_SYMBOL_GPL(imx_drm_crtc_vblank_put);
154
155 void imx_drm_handle_vblank(struct imx_drm_crtc *imx_drm_crtc)
156 {
157         drm_handle_vblank(imx_drm_crtc->crtc->dev, imx_drm_crtc->pipe);
158 }
159 EXPORT_SYMBOL_GPL(imx_drm_handle_vblank);
160
161 static int imx_drm_enable_vblank(struct drm_device *drm, int crtc)
162 {
163         struct imx_drm_device *imxdrm = drm->dev_private;
164         struct imx_drm_crtc *imx_drm_crtc;
165         int ret;
166
167         imx_drm_crtc = imx_drm_crtc_by_num(imxdrm, crtc);
168         if (!imx_drm_crtc)
169                 return -EINVAL;
170
171         if (!imx_drm_crtc->imx_drm_helper_funcs.enable_vblank)
172                 return -ENOSYS;
173
174         ret = imx_drm_crtc->imx_drm_helper_funcs.enable_vblank(
175                         imx_drm_crtc->crtc);
176
177         return ret;
178 }
179
180 static void imx_drm_disable_vblank(struct drm_device *drm, int crtc)
181 {
182         struct imx_drm_device *imxdrm = drm->dev_private;
183         struct imx_drm_crtc *imx_drm_crtc;
184
185         imx_drm_crtc = imx_drm_crtc_by_num(imxdrm, crtc);
186         if (!imx_drm_crtc)
187                 return;
188
189         if (!imx_drm_crtc->imx_drm_helper_funcs.disable_vblank)
190                 return;
191
192         imx_drm_crtc->imx_drm_helper_funcs.disable_vblank(imx_drm_crtc->crtc);
193 }
194
195 static void imx_drm_driver_preclose(struct drm_device *drm,
196                 struct drm_file *file)
197 {
198         int i;
199
200         if (!file->is_master)
201                 return;
202
203         for (i = 0; i < MAX_CRTC; i++)
204                 imx_drm_disable_vblank(drm, i);
205 }
206
207 static const struct file_operations imx_drm_driver_fops = {
208         .owner = THIS_MODULE,
209         .open = drm_open,
210         .release = drm_release,
211         .unlocked_ioctl = drm_ioctl,
212         .mmap = drm_gem_cma_mmap,
213         .poll = drm_poll,
214         .read = drm_read,
215         .llseek = noop_llseek,
216 };
217
218 static struct imx_drm_device *imx_drm_device;
219
220 static struct imx_drm_device *__imx_drm_device(void)
221 {
222         return imx_drm_device;
223 }
224
225 struct drm_device *imx_drm_device_get(void)
226 {
227         struct imx_drm_device *imxdrm = __imx_drm_device();
228         struct imx_drm_encoder *enc;
229         struct imx_drm_connector *con;
230         struct imx_drm_crtc *crtc;
231
232         list_for_each_entry(enc, &imxdrm->encoder_list, list) {
233                 if (!try_module_get(enc->owner)) {
234                         dev_err(imxdrm->dev, "could not get module %s\n",
235                                         module_name(enc->owner));
236                         goto unwind_enc;
237                 }
238         }
239
240         list_for_each_entry(con, &imxdrm->connector_list, list) {
241                 if (!try_module_get(con->owner)) {
242                         dev_err(imxdrm->dev, "could not get module %s\n",
243                                         module_name(con->owner));
244                         goto unwind_con;
245                 }
246         }
247
248         list_for_each_entry(crtc, &imxdrm->crtc_list, list) {
249                 if (!try_module_get(crtc->owner)) {
250                         dev_err(imxdrm->dev, "could not get module %s\n",
251                                         module_name(crtc->owner));
252                         goto unwind_crtc;
253                 }
254         }
255
256         return imxdrm->drm;
257
258 unwind_crtc:
259         list_for_each_entry_continue_reverse(crtc, &imxdrm->crtc_list, list)
260                 module_put(crtc->owner);
261 unwind_con:
262         list_for_each_entry_continue_reverse(con, &imxdrm->connector_list, list)
263                 module_put(con->owner);
264 unwind_enc:
265         list_for_each_entry_continue_reverse(enc, &imxdrm->encoder_list, list)
266                 module_put(enc->owner);
267
268         mutex_unlock(&imxdrm->mutex);
269
270         return NULL;
271
272 }
273 EXPORT_SYMBOL_GPL(imx_drm_device_get);
274
275 void imx_drm_device_put(void)
276 {
277         struct imx_drm_device *imxdrm = __imx_drm_device();
278         struct imx_drm_encoder *enc;
279         struct imx_drm_connector *con;
280         struct imx_drm_crtc *crtc;
281
282         mutex_lock(&imxdrm->mutex);
283
284         list_for_each_entry(crtc, &imxdrm->crtc_list, list)
285                 module_put(crtc->owner);
286
287         list_for_each_entry(con, &imxdrm->connector_list, list)
288                 module_put(con->owner);
289
290         list_for_each_entry(enc, &imxdrm->encoder_list, list)
291                 module_put(enc->owner);
292
293         mutex_unlock(&imxdrm->mutex);
294 }
295 EXPORT_SYMBOL_GPL(imx_drm_device_put);
296
297 static int drm_mode_group_reinit(struct drm_device *dev)
298 {
299         struct drm_mode_group *group = &dev->primary->mode_group;
300         uint32_t *id_list = group->id_list;
301         int ret;
302
303         ret = drm_mode_group_init_legacy_group(dev, group);
304         if (ret < 0)
305                 return ret;
306
307         kfree(id_list);
308         return 0;
309 }
310
311 /*
312  * register an encoder to the drm core
313  */
314 static int imx_drm_encoder_register(struct imx_drm_encoder *imx_drm_encoder)
315 {
316         struct imx_drm_device *imxdrm = __imx_drm_device();
317
318         INIT_LIST_HEAD(&imx_drm_encoder->possible_crtcs);
319
320         drm_encoder_init(imxdrm->drm, imx_drm_encoder->encoder,
321                         imx_drm_encoder->encoder->funcs,
322                         imx_drm_encoder->encoder->encoder_type);
323
324         drm_mode_group_reinit(imxdrm->drm);
325
326         return 0;
327 }
328
329 /*
330  * unregister an encoder from the drm core
331  */
332 static void imx_drm_encoder_unregister(struct imx_drm_encoder
333                 *imx_drm_encoder)
334 {
335         struct imx_drm_device *imxdrm = __imx_drm_device();
336
337         drm_encoder_cleanup(imx_drm_encoder->encoder);
338
339         drm_mode_group_reinit(imxdrm->drm);
340 }
341
342 /*
343  * register a connector to the drm core
344  */
345 static int imx_drm_connector_register(
346                 struct imx_drm_connector *imx_drm_connector)
347 {
348         struct imx_drm_device *imxdrm = __imx_drm_device();
349
350         drm_connector_init(imxdrm->drm, imx_drm_connector->connector,
351                         imx_drm_connector->connector->funcs,
352                         imx_drm_connector->connector->connector_type);
353         drm_mode_group_reinit(imxdrm->drm);
354
355         return drm_sysfs_connector_add(imx_drm_connector->connector);
356 }
357
358 /*
359  * unregister a connector from the drm core
360  */
361 static void imx_drm_connector_unregister(
362                 struct imx_drm_connector *imx_drm_connector)
363 {
364         struct imx_drm_device *imxdrm = __imx_drm_device();
365
366         drm_sysfs_connector_remove(imx_drm_connector->connector);
367         drm_connector_cleanup(imx_drm_connector->connector);
368
369         drm_mode_group_reinit(imxdrm->drm);
370 }
371
372 /*
373  * Called by the CRTC driver when all CRTCs are registered. This
374  * puts all the pieces together and initializes the driver.
375  * Once this is called no more CRTCs can be registered since
376  * the drm core has hardcoded the number of crtcs in several
377  * places.
378  */
379 static int imx_drm_driver_load(struct drm_device *drm, unsigned long flags)
380 {
381         struct imx_drm_device *imxdrm = __imx_drm_device();
382         int ret;
383
384         imxdrm->drm = drm;
385
386         drm->dev_private = imxdrm;
387
388         /*
389          * enable drm irq mode.
390          * - with irq_enabled = true, we can use the vblank feature.
391          *
392          * P.S. note that we wouldn't use drm irq handler but
393          *      just specific driver own one instead because
394          *      drm framework supports only one irq handler and
395          *      drivers can well take care of their interrupts
396          */
397         drm->irq_enabled = true;
398
399         drm_mode_config_init(drm);
400         imx_drm_mode_config_init(drm);
401
402         mutex_lock(&imxdrm->mutex);
403
404         drm_kms_helper_poll_init(drm);
405
406         /* setup the grouping for the legacy output */
407         ret = drm_mode_group_init_legacy_group(drm,
408                         &drm->primary->mode_group);
409         if (ret)
410                 goto err_kms;
411
412         ret = drm_vblank_init(drm, MAX_CRTC);
413         if (ret)
414                 goto err_kms;
415
416         /*
417          * with vblank_disable_allowed = true, vblank interrupt will be disabled
418          * by drm timer once a current process gives up ownership of
419          * vblank event.(after drm_vblank_put function is called)
420          */
421         drm->vblank_disable_allowed = true;
422
423         if (!imx_drm_device_get()) {
424                 ret = -EINVAL;
425                 goto err_vblank;
426         }
427
428         platform_set_drvdata(drm->platformdev, drm);
429         mutex_unlock(&imxdrm->mutex);
430         return 0;
431
432 err_vblank:
433         drm_vblank_cleanup(drm);
434 err_kms:
435         drm_kms_helper_poll_fini(drm);
436         drm_mode_config_cleanup(drm);
437         mutex_unlock(&imxdrm->mutex);
438
439         return ret;
440 }
441
442 static void imx_drm_update_possible_crtcs(void)
443 {
444         struct imx_drm_device *imxdrm = __imx_drm_device();
445         struct imx_drm_crtc *imx_drm_crtc;
446         struct imx_drm_encoder *enc;
447         struct crtc_cookie *cookie;
448
449         list_for_each_entry(enc, &imxdrm->encoder_list, list) {
450                 u32 possible_crtcs = 0;
451
452                 list_for_each_entry(cookie, &enc->possible_crtcs, list) {
453                         list_for_each_entry(imx_drm_crtc, &imxdrm->crtc_list, list) {
454                                 if (imx_drm_crtc->cookie.cookie == cookie->cookie &&
455                                                 imx_drm_crtc->cookie.id == cookie->id) {
456                                         possible_crtcs |= 1 << imx_drm_crtc->pipe;
457                                 }
458                         }
459                 }
460                 enc->encoder->possible_crtcs = possible_crtcs;
461                 enc->encoder->possible_clones = possible_crtcs;
462         }
463 }
464
465 /*
466  * imx_drm_add_crtc - add a new crtc
467  *
468  * The return value if !NULL is a cookie for the caller to pass to
469  * imx_drm_remove_crtc later.
470  */
471 int imx_drm_add_crtc(struct drm_crtc *crtc,
472                 struct imx_drm_crtc **new_crtc,
473                 const struct imx_drm_crtc_helper_funcs *imx_drm_helper_funcs,
474                 struct module *owner, void *cookie, int id)
475 {
476         struct imx_drm_device *imxdrm = __imx_drm_device();
477         struct imx_drm_crtc *imx_drm_crtc;
478         int ret;
479
480         mutex_lock(&imxdrm->mutex);
481
482         /*
483          * The vblank arrays are dimensioned by MAX_CRTC - we can't
484          * pass IDs greater than this to those functions.
485          */
486         if (imxdrm->pipes >= MAX_CRTC) {
487                 ret = -EINVAL;
488                 goto err_busy;
489         }
490
491         if (imxdrm->drm->open_count) {
492                 ret = -EBUSY;
493                 goto err_busy;
494         }
495
496         imx_drm_crtc = kzalloc(sizeof(*imx_drm_crtc), GFP_KERNEL);
497         if (!imx_drm_crtc) {
498                 ret = -ENOMEM;
499                 goto err_alloc;
500         }
501
502         imx_drm_crtc->imx_drm_helper_funcs = *imx_drm_helper_funcs;
503         imx_drm_crtc->pipe = imxdrm->pipes++;
504         imx_drm_crtc->cookie.cookie = cookie;
505         imx_drm_crtc->cookie.id = id;
506
507         imx_drm_crtc->crtc = crtc;
508         imx_drm_crtc->imxdrm = imxdrm;
509
510         imx_drm_crtc->owner = owner;
511
512         list_add_tail(&imx_drm_crtc->list, &imxdrm->crtc_list);
513
514         *new_crtc = imx_drm_crtc;
515
516         ret = drm_mode_crtc_set_gamma_size(imx_drm_crtc->crtc, 256);
517         if (ret)
518                 goto err_register;
519
520         drm_crtc_helper_add(crtc,
521                         imx_drm_crtc->imx_drm_helper_funcs.crtc_helper_funcs);
522
523         drm_crtc_init(imxdrm->drm, crtc,
524                         imx_drm_crtc->imx_drm_helper_funcs.crtc_funcs);
525
526         drm_mode_group_reinit(imxdrm->drm);
527
528         imx_drm_update_possible_crtcs();
529
530         mutex_unlock(&imxdrm->mutex);
531
532         return 0;
533
534 err_register:
535         list_del(&imx_drm_crtc->list);
536         kfree(imx_drm_crtc);
537 err_alloc:
538 err_busy:
539         mutex_unlock(&imxdrm->mutex);
540         return ret;
541 }
542 EXPORT_SYMBOL_GPL(imx_drm_add_crtc);
543
544 /*
545  * imx_drm_remove_crtc - remove a crtc
546  */
547 int imx_drm_remove_crtc(struct imx_drm_crtc *imx_drm_crtc)
548 {
549         struct imx_drm_device *imxdrm = imx_drm_crtc->imxdrm;
550
551         mutex_lock(&imxdrm->mutex);
552
553         drm_crtc_cleanup(imx_drm_crtc->crtc);
554
555         list_del(&imx_drm_crtc->list);
556
557         drm_mode_group_reinit(imxdrm->drm);
558
559         mutex_unlock(&imxdrm->mutex);
560
561         kfree(imx_drm_crtc);
562
563         return 0;
564 }
565 EXPORT_SYMBOL_GPL(imx_drm_remove_crtc);
566
567 /*
568  * imx_drm_add_encoder - add a new encoder
569  */
570 int imx_drm_add_encoder(struct drm_encoder *encoder,
571                 struct imx_drm_encoder **newenc, struct module *owner)
572 {
573         struct imx_drm_device *imxdrm = __imx_drm_device();
574         struct imx_drm_encoder *imx_drm_encoder;
575         int ret;
576
577         mutex_lock(&imxdrm->mutex);
578
579         if (imxdrm->drm->open_count) {
580                 ret = -EBUSY;
581                 goto err_busy;
582         }
583
584         imx_drm_encoder = kzalloc(sizeof(*imx_drm_encoder), GFP_KERNEL);
585         if (!imx_drm_encoder) {
586                 ret = -ENOMEM;
587                 goto err_alloc;
588         }
589
590         imx_drm_encoder->encoder = encoder;
591         imx_drm_encoder->owner = owner;
592
593         ret = imx_drm_encoder_register(imx_drm_encoder);
594         if (ret) {
595                 ret = -ENOMEM;
596                 goto err_register;
597         }
598
599         list_add_tail(&imx_drm_encoder->list, &imxdrm->encoder_list);
600
601         *newenc = imx_drm_encoder;
602
603         mutex_unlock(&imxdrm->mutex);
604
605         return 0;
606
607 err_register:
608         kfree(imx_drm_encoder);
609 err_alloc:
610 err_busy:
611         mutex_unlock(&imxdrm->mutex);
612
613         return ret;
614 }
615 EXPORT_SYMBOL_GPL(imx_drm_add_encoder);
616
617 int imx_drm_encoder_add_possible_crtcs(
618                 struct imx_drm_encoder *imx_drm_encoder,
619                 struct device_node *np)
620 {
621         struct imx_drm_device *imxdrm = __imx_drm_device();
622         struct of_phandle_args args;
623         struct crtc_cookie *c;
624         int ret = 0;
625         int i;
626
627         if (!list_empty(&imx_drm_encoder->possible_crtcs))
628                 return -EBUSY;
629
630         for (i = 0; !ret; i++) {
631                 ret = of_parse_phandle_with_args(np, "crtcs",
632                                 "#crtc-cells", i, &args);
633                 if (ret < 0)
634                         break;
635
636                 c = kzalloc(sizeof(*c), GFP_KERNEL);
637                 if (!c) {
638                         of_node_put(args.np);
639                         return -ENOMEM;
640                 }
641
642                 c->cookie = args.np;
643                 c->id = args.args_count > 0 ? args.args[0] : 0;
644
645                 of_node_put(args.np);
646
647                 mutex_lock(&imxdrm->mutex);
648
649                 list_add_tail(&c->list, &imx_drm_encoder->possible_crtcs);
650
651                 mutex_unlock(&imxdrm->mutex);
652         }
653
654         imx_drm_update_possible_crtcs();
655
656         return 0;
657 }
658 EXPORT_SYMBOL_GPL(imx_drm_encoder_add_possible_crtcs);
659
660 int imx_drm_encoder_get_mux_id(struct imx_drm_encoder *imx_drm_encoder,
661                 struct drm_crtc *crtc)
662 {
663         struct imx_drm_device *imxdrm = __imx_drm_device();
664         struct imx_drm_crtc *imx_crtc;
665         int i = 0;
666
667         list_for_each_entry(imx_crtc, &imxdrm->crtc_list, list) {
668                 if (imx_crtc->crtc == crtc)
669                         goto found;
670                 i++;
671         }
672
673         return -EINVAL;
674 found:
675         return i;
676 }
677 EXPORT_SYMBOL_GPL(imx_drm_encoder_get_mux_id);
678
679 /*
680  * imx_drm_remove_encoder - remove an encoder
681  */
682 int imx_drm_remove_encoder(struct imx_drm_encoder *imx_drm_encoder)
683 {
684         struct imx_drm_device *imxdrm = __imx_drm_device();
685         struct crtc_cookie *c, *tmp;
686
687         mutex_lock(&imxdrm->mutex);
688
689         imx_drm_encoder_unregister(imx_drm_encoder);
690
691         list_del(&imx_drm_encoder->list);
692
693         list_for_each_entry_safe(c, tmp, &imx_drm_encoder->possible_crtcs,
694                         list)
695                 kfree(c);
696
697         mutex_unlock(&imxdrm->mutex);
698
699         kfree(imx_drm_encoder);
700
701         return 0;
702 }
703 EXPORT_SYMBOL_GPL(imx_drm_remove_encoder);
704
705 /*
706  * imx_drm_add_connector - add a connector
707  */
708 int imx_drm_add_connector(struct drm_connector *connector,
709                 struct imx_drm_connector **new_con,
710                 struct module *owner)
711 {
712         struct imx_drm_device *imxdrm = __imx_drm_device();
713         struct imx_drm_connector *imx_drm_connector;
714         int ret;
715
716         mutex_lock(&imxdrm->mutex);
717
718         if (imxdrm->drm->open_count) {
719                 ret = -EBUSY;
720                 goto err_busy;
721         }
722
723         imx_drm_connector = kzalloc(sizeof(*imx_drm_connector), GFP_KERNEL);
724         if (!imx_drm_connector) {
725                 ret = -ENOMEM;
726                 goto err_alloc;
727         }
728
729         imx_drm_connector->connector = connector;
730         imx_drm_connector->owner = owner;
731
732         ret = imx_drm_connector_register(imx_drm_connector);
733         if (ret)
734                 goto err_register;
735
736         list_add_tail(&imx_drm_connector->list, &imxdrm->connector_list);
737
738         *new_con = imx_drm_connector;
739
740         mutex_unlock(&imxdrm->mutex);
741
742         return 0;
743
744 err_register:
745         kfree(imx_drm_connector);
746 err_alloc:
747 err_busy:
748         mutex_unlock(&imxdrm->mutex);
749
750         return ret;
751 }
752 EXPORT_SYMBOL_GPL(imx_drm_add_connector);
753
754 void imx_drm_fb_helper_set(struct drm_fbdev_cma *fbdev_helper)
755 {
756         struct imx_drm_device *imxdrm = __imx_drm_device();
757
758         imxdrm->fbhelper = fbdev_helper;
759 }
760 EXPORT_SYMBOL_GPL(imx_drm_fb_helper_set);
761
762 /*
763  * imx_drm_remove_connector - remove a connector
764  */
765 int imx_drm_remove_connector(struct imx_drm_connector *imx_drm_connector)
766 {
767         struct imx_drm_device *imxdrm = __imx_drm_device();
768
769         mutex_lock(&imxdrm->mutex);
770
771         imx_drm_connector_unregister(imx_drm_connector);
772
773         list_del(&imx_drm_connector->list);
774
775         mutex_unlock(&imxdrm->mutex);
776
777         kfree(imx_drm_connector);
778
779         return 0;
780 }
781 EXPORT_SYMBOL_GPL(imx_drm_remove_connector);
782
783 static const struct drm_ioctl_desc imx_drm_ioctls[] = {
784         /* none so far */
785 };
786
787 static struct drm_driver imx_drm_driver = {
788         .driver_features        = DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME,
789         .load                   = imx_drm_driver_load,
790         .unload                 = imx_drm_driver_unload,
791         .lastclose              = imx_drm_driver_lastclose,
792         .preclose               = imx_drm_driver_preclose,
793         .gem_free_object        = drm_gem_cma_free_object,
794         .gem_vm_ops             = &drm_gem_cma_vm_ops,
795         .dumb_create            = drm_gem_cma_dumb_create,
796         .dumb_map_offset        = drm_gem_cma_dumb_map_offset,
797         .dumb_destroy           = drm_gem_dumb_destroy,
798
799         .prime_handle_to_fd     = drm_gem_prime_handle_to_fd,
800         .prime_fd_to_handle     = drm_gem_prime_fd_to_handle,
801         .gem_prime_import       = drm_gem_prime_import,
802         .gem_prime_export       = drm_gem_prime_export,
803         .gem_prime_get_sg_table = drm_gem_cma_prime_get_sg_table,
804         .gem_prime_import_sg_table = drm_gem_cma_prime_import_sg_table,
805         .gem_prime_vmap         = drm_gem_cma_prime_vmap,
806         .gem_prime_vunmap       = drm_gem_cma_prime_vunmap,
807         .gem_prime_mmap         = drm_gem_cma_prime_mmap,
808         .get_vblank_counter     = drm_vblank_count,
809         .enable_vblank          = imx_drm_enable_vblank,
810         .disable_vblank         = imx_drm_disable_vblank,
811         .ioctls                 = imx_drm_ioctls,
812         .num_ioctls             = ARRAY_SIZE(imx_drm_ioctls),
813         .fops                   = &imx_drm_driver_fops,
814         .name                   = "imx-drm",
815         .desc                   = "i.MX DRM graphics",
816         .date                   = "20120507",
817         .major                  = 1,
818         .minor                  = 0,
819         .patchlevel             = 0,
820 };
821
822 static int imx_drm_platform_probe(struct platform_device *pdev)
823 {
824         int ret;
825
826         ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
827         if (ret)
828                 return ret;
829
830         imx_drm_device->dev = &pdev->dev;
831
832         return drm_platform_init(&imx_drm_driver, pdev);
833 }
834
835 static int imx_drm_platform_remove(struct platform_device *pdev)
836 {
837         drm_put_dev(platform_get_drvdata(pdev));
838
839         return 0;
840 }
841
842 static struct platform_driver imx_drm_pdrv = {
843         .probe          = imx_drm_platform_probe,
844         .remove         = imx_drm_platform_remove,
845         .driver         = {
846                 .owner  = THIS_MODULE,
847                 .name   = "imx-drm",
848         },
849 };
850
851 static struct platform_device *imx_drm_pdev;
852
853 static int __init imx_drm_init(void)
854 {
855         int ret;
856
857         imx_drm_device = kzalloc(sizeof(*imx_drm_device), GFP_KERNEL);
858         if (!imx_drm_device)
859                 return -ENOMEM;
860
861         mutex_init(&imx_drm_device->mutex);
862         INIT_LIST_HEAD(&imx_drm_device->crtc_list);
863         INIT_LIST_HEAD(&imx_drm_device->connector_list);
864         INIT_LIST_HEAD(&imx_drm_device->encoder_list);
865
866         imx_drm_pdev = platform_device_register_simple("imx-drm", -1, NULL, 0);
867         if (IS_ERR(imx_drm_pdev)) {
868                 ret = PTR_ERR(imx_drm_pdev);
869                 goto err_pdev;
870         }
871
872         ret = platform_driver_register(&imx_drm_pdrv);
873         if (ret)
874                 goto err_pdrv;
875
876         return 0;
877
878 err_pdrv:
879         platform_device_unregister(imx_drm_pdev);
880 err_pdev:
881         kfree(imx_drm_device);
882
883         return ret;
884 }
885
886 static void __exit imx_drm_exit(void)
887 {
888         platform_device_unregister(imx_drm_pdev);
889         platform_driver_unregister(&imx_drm_pdrv);
890
891         kfree(imx_drm_device);
892 }
893
894 module_init(imx_drm_init);
895 module_exit(imx_drm_exit);
896
897 MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>");
898 MODULE_DESCRIPTION("i.MX drm driver core");
899 MODULE_LICENSE("GPL");