spi: pic32: Fix checking return value of devm_ioremap_resource
[cascardo/linux.git] / drivers / gpu / drm / imx / 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 #include <linux/component.h>
17 #include <linux/device.h>
18 #include <linux/fb.h>
19 #include <linux/module.h>
20 #include <linux/platform_device.h>
21 #include <drm/drmP.h>
22 #include <drm/drm_fb_helper.h>
23 #include <drm/drm_crtc_helper.h>
24 #include <drm/drm_gem_cma_helper.h>
25 #include <drm/drm_fb_cma_helper.h>
26 #include <drm/drm_plane_helper.h>
27 #include <drm/drm_of.h>
28
29 #include "imx-drm.h"
30
31 #define MAX_CRTC        4
32
33 struct imx_drm_component {
34         struct device_node *of_node;
35         struct list_head list;
36 };
37
38 struct imx_drm_device {
39         struct drm_device                       *drm;
40         struct imx_drm_crtc                     *crtc[MAX_CRTC];
41         unsigned int                            pipes;
42         struct drm_fbdev_cma                    *fbhelper;
43 };
44
45 struct imx_drm_crtc {
46         struct drm_crtc                         *crtc;
47         struct imx_drm_crtc_helper_funcs        imx_drm_helper_funcs;
48 };
49
50 #if IS_ENABLED(CONFIG_DRM_FBDEV_EMULATION)
51 static int legacyfb_depth = 16;
52 module_param(legacyfb_depth, int, 0444);
53 #endif
54
55 unsigned int imx_drm_crtc_id(struct imx_drm_crtc *crtc)
56 {
57         return drm_crtc_index(crtc->crtc);
58 }
59 EXPORT_SYMBOL_GPL(imx_drm_crtc_id);
60
61 static void imx_drm_driver_lastclose(struct drm_device *drm)
62 {
63         struct imx_drm_device *imxdrm = drm->dev_private;
64
65         drm_fbdev_cma_restore_mode(imxdrm->fbhelper);
66 }
67
68 static int imx_drm_driver_unload(struct drm_device *drm)
69 {
70         struct imx_drm_device *imxdrm = drm->dev_private;
71
72         drm_kms_helper_poll_fini(drm);
73
74         if (imxdrm->fbhelper)
75                 drm_fbdev_cma_fini(imxdrm->fbhelper);
76
77         component_unbind_all(drm->dev, drm);
78
79         drm_vblank_cleanup(drm);
80         drm_mode_config_cleanup(drm);
81
82         platform_set_drvdata(drm->platformdev, NULL);
83
84         return 0;
85 }
86
87 static struct imx_drm_crtc *imx_drm_find_crtc(struct drm_crtc *crtc)
88 {
89         struct imx_drm_device *imxdrm = crtc->dev->dev_private;
90         unsigned i;
91
92         for (i = 0; i < MAX_CRTC; i++)
93                 if (imxdrm->crtc[i] && imxdrm->crtc[i]->crtc == crtc)
94                         return imxdrm->crtc[i];
95
96         return NULL;
97 }
98
99 int imx_drm_set_bus_format_pins(struct drm_encoder *encoder, u32 bus_format,
100                 int hsync_pin, int vsync_pin)
101 {
102         struct imx_drm_crtc_helper_funcs *helper;
103         struct imx_drm_crtc *imx_crtc;
104
105         imx_crtc = imx_drm_find_crtc(encoder->crtc);
106         if (!imx_crtc)
107                 return -EINVAL;
108
109         helper = &imx_crtc->imx_drm_helper_funcs;
110         if (helper->set_interface_pix_fmt)
111                 return helper->set_interface_pix_fmt(encoder->crtc,
112                                         bus_format, hsync_pin, vsync_pin);
113         return 0;
114 }
115 EXPORT_SYMBOL_GPL(imx_drm_set_bus_format_pins);
116
117 int imx_drm_set_bus_format(struct drm_encoder *encoder, u32 bus_format)
118 {
119         return imx_drm_set_bus_format_pins(encoder, bus_format, 2, 3);
120 }
121 EXPORT_SYMBOL_GPL(imx_drm_set_bus_format);
122
123 int imx_drm_crtc_vblank_get(struct imx_drm_crtc *imx_drm_crtc)
124 {
125         return drm_crtc_vblank_get(imx_drm_crtc->crtc);
126 }
127 EXPORT_SYMBOL_GPL(imx_drm_crtc_vblank_get);
128
129 void imx_drm_crtc_vblank_put(struct imx_drm_crtc *imx_drm_crtc)
130 {
131         drm_crtc_vblank_put(imx_drm_crtc->crtc);
132 }
133 EXPORT_SYMBOL_GPL(imx_drm_crtc_vblank_put);
134
135 void imx_drm_handle_vblank(struct imx_drm_crtc *imx_drm_crtc)
136 {
137         drm_crtc_handle_vblank(imx_drm_crtc->crtc);
138 }
139 EXPORT_SYMBOL_GPL(imx_drm_handle_vblank);
140
141 static int imx_drm_enable_vblank(struct drm_device *drm, unsigned int pipe)
142 {
143         struct imx_drm_device *imxdrm = drm->dev_private;
144         struct imx_drm_crtc *imx_drm_crtc = imxdrm->crtc[pipe];
145         int ret;
146
147         if (!imx_drm_crtc)
148                 return -EINVAL;
149
150         if (!imx_drm_crtc->imx_drm_helper_funcs.enable_vblank)
151                 return -ENOSYS;
152
153         ret = imx_drm_crtc->imx_drm_helper_funcs.enable_vblank(
154                         imx_drm_crtc->crtc);
155
156         return ret;
157 }
158
159 static void imx_drm_disable_vblank(struct drm_device *drm, unsigned int pipe)
160 {
161         struct imx_drm_device *imxdrm = drm->dev_private;
162         struct imx_drm_crtc *imx_drm_crtc = imxdrm->crtc[pipe];
163
164         if (!imx_drm_crtc)
165                 return;
166
167         if (!imx_drm_crtc->imx_drm_helper_funcs.disable_vblank)
168                 return;
169
170         imx_drm_crtc->imx_drm_helper_funcs.disable_vblank(imx_drm_crtc->crtc);
171 }
172
173 static const struct file_operations imx_drm_driver_fops = {
174         .owner = THIS_MODULE,
175         .open = drm_open,
176         .release = drm_release,
177         .unlocked_ioctl = drm_ioctl,
178         .mmap = drm_gem_cma_mmap,
179         .poll = drm_poll,
180         .read = drm_read,
181         .llseek = noop_llseek,
182 };
183
184 void imx_drm_connector_destroy(struct drm_connector *connector)
185 {
186         drm_connector_unregister(connector);
187         drm_connector_cleanup(connector);
188 }
189 EXPORT_SYMBOL_GPL(imx_drm_connector_destroy);
190
191 void imx_drm_encoder_destroy(struct drm_encoder *encoder)
192 {
193         drm_encoder_cleanup(encoder);
194 }
195 EXPORT_SYMBOL_GPL(imx_drm_encoder_destroy);
196
197 static void imx_drm_output_poll_changed(struct drm_device *drm)
198 {
199         struct imx_drm_device *imxdrm = drm->dev_private;
200
201         drm_fbdev_cma_hotplug_event(imxdrm->fbhelper);
202 }
203
204 static const struct drm_mode_config_funcs imx_drm_mode_config_funcs = {
205         .fb_create = drm_fb_cma_create,
206         .output_poll_changed = imx_drm_output_poll_changed,
207 };
208
209 /*
210  * Main DRM initialisation. This binds, initialises and registers
211  * with DRM the subcomponents of the driver.
212  */
213 static int imx_drm_driver_load(struct drm_device *drm, unsigned long flags)
214 {
215         struct imx_drm_device *imxdrm;
216         struct drm_connector *connector;
217         int ret;
218
219         imxdrm = devm_kzalloc(drm->dev, sizeof(*imxdrm), GFP_KERNEL);
220         if (!imxdrm)
221                 return -ENOMEM;
222
223         imxdrm->drm = drm;
224
225         drm->dev_private = imxdrm;
226
227         /*
228          * enable drm irq mode.
229          * - with irq_enabled = true, we can use the vblank feature.
230          *
231          * P.S. note that we wouldn't use drm irq handler but
232          *      just specific driver own one instead because
233          *      drm framework supports only one irq handler and
234          *      drivers can well take care of their interrupts
235          */
236         drm->irq_enabled = true;
237
238         /*
239          * set max width and height as default value(4096x4096).
240          * this value would be used to check framebuffer size limitation
241          * at drm_mode_addfb().
242          */
243         drm->mode_config.min_width = 64;
244         drm->mode_config.min_height = 64;
245         drm->mode_config.max_width = 4096;
246         drm->mode_config.max_height = 4096;
247         drm->mode_config.funcs = &imx_drm_mode_config_funcs;
248
249         drm_mode_config_init(drm);
250
251         ret = drm_vblank_init(drm, MAX_CRTC);
252         if (ret)
253                 goto err_kms;
254
255         /*
256          * with vblank_disable_allowed = true, vblank interrupt will be
257          * disabled by drm timer once a current process gives up ownership
258          * of vblank event. (after drm_vblank_put function is called)
259          */
260         drm->vblank_disable_allowed = true;
261
262         platform_set_drvdata(drm->platformdev, drm);
263
264         /* Now try and bind all our sub-components */
265         ret = component_bind_all(drm->dev, drm);
266         if (ret)
267                 goto err_vblank;
268
269         /*
270          * All components are now added, we can publish the connector sysfs
271          * entries to userspace.  This will generate hotplug events and so
272          * userspace will expect to be able to access DRM at this point.
273          */
274         list_for_each_entry(connector, &drm->mode_config.connector_list, head) {
275                 ret = drm_connector_register(connector);
276                 if (ret) {
277                         dev_err(drm->dev,
278                                 "[CONNECTOR:%d:%s] drm_connector_register failed: %d\n",
279                                 connector->base.id,
280                                 connector->name, ret);
281                         goto err_unbind;
282                 }
283         }
284
285         /*
286          * All components are now initialised, so setup the fb helper.
287          * The fb helper takes copies of key hardware information, so the
288          * crtcs/connectors/encoders must not change after this point.
289          */
290 #if IS_ENABLED(CONFIG_DRM_FBDEV_EMULATION)
291         if (legacyfb_depth != 16 && legacyfb_depth != 32) {
292                 dev_warn(drm->dev, "Invalid legacyfb_depth.  Defaulting to 16bpp\n");
293                 legacyfb_depth = 16;
294         }
295         drm_helper_disable_unused_functions(drm);
296         imxdrm->fbhelper = drm_fbdev_cma_init(drm, legacyfb_depth,
297                                 drm->mode_config.num_crtc, MAX_CRTC);
298         if (IS_ERR(imxdrm->fbhelper)) {
299                 ret = PTR_ERR(imxdrm->fbhelper);
300                 imxdrm->fbhelper = NULL;
301                 goto err_unbind;
302         }
303 #endif
304
305         drm_kms_helper_poll_init(drm);
306
307         return 0;
308
309 err_unbind:
310         component_unbind_all(drm->dev, drm);
311 err_vblank:
312         drm_vblank_cleanup(drm);
313 err_kms:
314         drm_mode_config_cleanup(drm);
315
316         return ret;
317 }
318
319 /*
320  * imx_drm_add_crtc - add a new crtc
321  */
322 int imx_drm_add_crtc(struct drm_device *drm, struct drm_crtc *crtc,
323                 struct imx_drm_crtc **new_crtc, struct drm_plane *primary_plane,
324                 const struct imx_drm_crtc_helper_funcs *imx_drm_helper_funcs,
325                 struct device_node *port)
326 {
327         struct imx_drm_device *imxdrm = drm->dev_private;
328         struct imx_drm_crtc *imx_drm_crtc;
329         int ret;
330
331         /*
332          * The vblank arrays are dimensioned by MAX_CRTC - we can't
333          * pass IDs greater than this to those functions.
334          */
335         if (imxdrm->pipes >= MAX_CRTC)
336                 return -EINVAL;
337
338         if (imxdrm->drm->open_count)
339                 return -EBUSY;
340
341         imx_drm_crtc = kzalloc(sizeof(*imx_drm_crtc), GFP_KERNEL);
342         if (!imx_drm_crtc)
343                 return -ENOMEM;
344
345         imx_drm_crtc->imx_drm_helper_funcs = *imx_drm_helper_funcs;
346         imx_drm_crtc->crtc = crtc;
347
348         crtc->port = port;
349
350         imxdrm->crtc[imxdrm->pipes++] = imx_drm_crtc;
351
352         *new_crtc = imx_drm_crtc;
353
354         ret = drm_mode_crtc_set_gamma_size(imx_drm_crtc->crtc, 256);
355         if (ret)
356                 goto err_register;
357
358         drm_crtc_helper_add(crtc,
359                         imx_drm_crtc->imx_drm_helper_funcs.crtc_helper_funcs);
360
361         drm_crtc_init_with_planes(drm, crtc, primary_plane, NULL,
362                         imx_drm_crtc->imx_drm_helper_funcs.crtc_funcs, NULL);
363
364         return 0;
365
366 err_register:
367         imxdrm->crtc[--imxdrm->pipes] = NULL;
368         kfree(imx_drm_crtc);
369         return ret;
370 }
371 EXPORT_SYMBOL_GPL(imx_drm_add_crtc);
372
373 /*
374  * imx_drm_remove_crtc - remove a crtc
375  */
376 int imx_drm_remove_crtc(struct imx_drm_crtc *imx_drm_crtc)
377 {
378         struct imx_drm_device *imxdrm = imx_drm_crtc->crtc->dev->dev_private;
379         unsigned int pipe = drm_crtc_index(imx_drm_crtc->crtc);
380
381         drm_crtc_cleanup(imx_drm_crtc->crtc);
382
383         imxdrm->crtc[pipe] = NULL;
384
385         kfree(imx_drm_crtc);
386
387         return 0;
388 }
389 EXPORT_SYMBOL_GPL(imx_drm_remove_crtc);
390
391 int imx_drm_encoder_parse_of(struct drm_device *drm,
392         struct drm_encoder *encoder, struct device_node *np)
393 {
394         uint32_t crtc_mask = drm_of_find_possible_crtcs(drm, np);
395
396         /*
397          * If we failed to find the CRTC(s) which this encoder is
398          * supposed to be connected to, it's because the CRTC has
399          * not been registered yet.  Defer probing, and hope that
400          * the required CRTC is added later.
401          */
402         if (crtc_mask == 0)
403                 return -EPROBE_DEFER;
404
405         encoder->possible_crtcs = crtc_mask;
406
407         /* FIXME: this is the mask of outputs which can clone this output. */
408         encoder->possible_clones = ~0;
409
410         return 0;
411 }
412 EXPORT_SYMBOL_GPL(imx_drm_encoder_parse_of);
413
414 static const struct drm_ioctl_desc imx_drm_ioctls[] = {
415         /* none so far */
416 };
417
418 static struct drm_driver imx_drm_driver = {
419         .driver_features        = DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME,
420         .load                   = imx_drm_driver_load,
421         .unload                 = imx_drm_driver_unload,
422         .lastclose              = imx_drm_driver_lastclose,
423         .set_busid              = drm_platform_set_busid,
424         .gem_free_object        = drm_gem_cma_free_object,
425         .gem_vm_ops             = &drm_gem_cma_vm_ops,
426         .dumb_create            = drm_gem_cma_dumb_create,
427         .dumb_map_offset        = drm_gem_cma_dumb_map_offset,
428         .dumb_destroy           = drm_gem_dumb_destroy,
429
430         .prime_handle_to_fd     = drm_gem_prime_handle_to_fd,
431         .prime_fd_to_handle     = drm_gem_prime_fd_to_handle,
432         .gem_prime_import       = drm_gem_prime_import,
433         .gem_prime_export       = drm_gem_prime_export,
434         .gem_prime_get_sg_table = drm_gem_cma_prime_get_sg_table,
435         .gem_prime_import_sg_table = drm_gem_cma_prime_import_sg_table,
436         .gem_prime_vmap         = drm_gem_cma_prime_vmap,
437         .gem_prime_vunmap       = drm_gem_cma_prime_vunmap,
438         .gem_prime_mmap         = drm_gem_cma_prime_mmap,
439         .get_vblank_counter     = drm_vblank_no_hw_counter,
440         .enable_vblank          = imx_drm_enable_vblank,
441         .disable_vblank         = imx_drm_disable_vblank,
442         .ioctls                 = imx_drm_ioctls,
443         .num_ioctls             = ARRAY_SIZE(imx_drm_ioctls),
444         .fops                   = &imx_drm_driver_fops,
445         .name                   = "imx-drm",
446         .desc                   = "i.MX DRM graphics",
447         .date                   = "20120507",
448         .major                  = 1,
449         .minor                  = 0,
450         .patchlevel             = 0,
451 };
452
453 static int compare_of(struct device *dev, void *data)
454 {
455         struct device_node *np = data;
456
457         /* Special case for LDB, one device for two channels */
458         if (of_node_cmp(np->name, "lvds-channel") == 0) {
459                 np = of_get_parent(np);
460                 of_node_put(np);
461         }
462
463         return dev->of_node == np;
464 }
465
466 static int imx_drm_bind(struct device *dev)
467 {
468         return drm_platform_init(&imx_drm_driver, to_platform_device(dev));
469 }
470
471 static void imx_drm_unbind(struct device *dev)
472 {
473         drm_put_dev(dev_get_drvdata(dev));
474 }
475
476 static const struct component_master_ops imx_drm_ops = {
477         .bind = imx_drm_bind,
478         .unbind = imx_drm_unbind,
479 };
480
481 static int imx_drm_platform_probe(struct platform_device *pdev)
482 {
483         int ret = drm_of_component_probe(&pdev->dev, compare_of, &imx_drm_ops);
484
485         if (!ret)
486                 ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
487
488         return ret;
489 }
490
491 static int imx_drm_platform_remove(struct platform_device *pdev)
492 {
493         component_master_del(&pdev->dev, &imx_drm_ops);
494         return 0;
495 }
496
497 #ifdef CONFIG_PM_SLEEP
498 static int imx_drm_suspend(struct device *dev)
499 {
500         struct drm_device *drm_dev = dev_get_drvdata(dev);
501
502         /* The drm_dev is NULL before .load hook is called */
503         if (drm_dev == NULL)
504                 return 0;
505
506         drm_kms_helper_poll_disable(drm_dev);
507
508         return 0;
509 }
510
511 static int imx_drm_resume(struct device *dev)
512 {
513         struct drm_device *drm_dev = dev_get_drvdata(dev);
514
515         if (drm_dev == NULL)
516                 return 0;
517
518         drm_helper_resume_force_mode(drm_dev);
519         drm_kms_helper_poll_enable(drm_dev);
520
521         return 0;
522 }
523 #endif
524
525 static SIMPLE_DEV_PM_OPS(imx_drm_pm_ops, imx_drm_suspend, imx_drm_resume);
526
527 static const struct of_device_id imx_drm_dt_ids[] = {
528         { .compatible = "fsl,imx-display-subsystem", },
529         { /* sentinel */ },
530 };
531 MODULE_DEVICE_TABLE(of, imx_drm_dt_ids);
532
533 static struct platform_driver imx_drm_pdrv = {
534         .probe          = imx_drm_platform_probe,
535         .remove         = imx_drm_platform_remove,
536         .driver         = {
537                 .name   = "imx-drm",
538                 .pm     = &imx_drm_pm_ops,
539                 .of_match_table = imx_drm_dt_ids,
540         },
541 };
542 module_platform_driver(imx_drm_pdrv);
543
544 MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>");
545 MODULE_DESCRIPTION("i.MX drm driver core");
546 MODULE_LICENSE("GPL");