blob: 01afeafe17b1cda0143caf652adb70e131b7464f [file] [log] [blame]
Boris Brezillon1a396782015-01-06 11:13:28 +01001/*
2 * Copyright (C) 2014 Traphandler
3 * Copyright (C) 2014 Free Electrons
4 * Copyright (C) 2014 Atmel
5 *
6 * Author: Jean-Jacques Hiblot <jjhiblot@traphandler.com>
7 * Author: Boris BREZILLON <boris.brezillon@free-electrons.com>
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License version 2 as published by
11 * the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#include <linux/clk.h>
23#include <linux/irq.h>
24#include <linux/irqchip.h>
25#include <linux/module.h>
26#include <linux/pm_runtime.h>
27
28#include "atmel_hlcdc_dc.h"
29
30#define ATMEL_HLCDC_LAYER_IRQS_OFFSET 8
31
32static const struct atmel_hlcdc_layer_desc atmel_hlcdc_sama5d3_layers[] = {
33 {
34 .name = "base",
35 .formats = &atmel_hlcdc_plane_rgb_formats,
36 .regs_offset = 0x40,
37 .id = 0,
38 .type = ATMEL_HLCDC_BASE_LAYER,
39 .nconfigs = 7,
40 .layout = {
41 .xstride = { 2 },
42 .default_color = 3,
43 .general_config = 4,
44 .disc_pos = 5,
45 .disc_size = 6,
46 },
47 },
48 {
49 .name = "overlay1",
50 .formats = &atmel_hlcdc_plane_rgb_formats,
51 .regs_offset = 0x140,
52 .id = 1,
53 .type = ATMEL_HLCDC_OVERLAY_LAYER,
54 .nconfigs = 10,
55 .layout = {
56 .pos = 2,
57 .size = 3,
58 .xstride = { 4 },
59 .pstride = { 5 },
60 .default_color = 6,
61 .chroma_key = 7,
62 .chroma_key_mask = 8,
63 .general_config = 9,
64 },
65 },
66 {
67 .name = "overlay2",
68 .formats = &atmel_hlcdc_plane_rgb_formats,
69 .regs_offset = 0x240,
70 .id = 2,
71 .type = ATMEL_HLCDC_OVERLAY_LAYER,
72 .nconfigs = 10,
73 .layout = {
74 .pos = 2,
75 .size = 3,
76 .xstride = { 4 },
77 .pstride = { 5 },
78 .default_color = 6,
79 .chroma_key = 7,
80 .chroma_key_mask = 8,
81 .general_config = 9,
82 },
83 },
84 {
85 .name = "high-end-overlay",
86 .formats = &atmel_hlcdc_plane_rgb_and_yuv_formats,
87 .regs_offset = 0x340,
88 .id = 3,
89 .type = ATMEL_HLCDC_OVERLAY_LAYER,
90 .nconfigs = 42,
91 .layout = {
92 .pos = 2,
93 .size = 3,
94 .memsize = 4,
95 .xstride = { 5, 7 },
96 .pstride = { 6, 8 },
97 .default_color = 9,
98 .chroma_key = 10,
99 .chroma_key_mask = 11,
100 .general_config = 12,
101 .csc = 14,
102 },
103 },
104 {
105 .name = "cursor",
106 .formats = &atmel_hlcdc_plane_rgb_formats,
107 .regs_offset = 0x440,
108 .id = 4,
109 .type = ATMEL_HLCDC_CURSOR_LAYER,
110 .nconfigs = 10,
111 .max_width = 128,
112 .max_height = 128,
113 .layout = {
114 .pos = 2,
115 .size = 3,
116 .xstride = { 4 },
117 .pstride = { 5 },
118 .default_color = 6,
119 .chroma_key = 7,
120 .chroma_key_mask = 8,
121 .general_config = 9,
122 },
123 },
124};
125
126static const struct atmel_hlcdc_dc_desc atmel_hlcdc_dc_sama5d3 = {
127 .min_width = 0,
128 .min_height = 0,
129 .max_width = 2048,
130 .max_height = 2048,
131 .nlayers = ARRAY_SIZE(atmel_hlcdc_sama5d3_layers),
132 .layers = atmel_hlcdc_sama5d3_layers,
133};
134
135static const struct of_device_id atmel_hlcdc_of_match[] = {
136 {
137 .compatible = "atmel,sama5d3-hlcdc",
138 .data = &atmel_hlcdc_dc_sama5d3,
139 },
140 { /* sentinel */ },
141};
142
143int atmel_hlcdc_dc_mode_valid(struct atmel_hlcdc_dc *dc,
144 struct drm_display_mode *mode)
145{
146 int vfront_porch = mode->vsync_start - mode->vdisplay;
147 int vback_porch = mode->vtotal - mode->vsync_end;
148 int vsync_len = mode->vsync_end - mode->vsync_start;
149 int hfront_porch = mode->hsync_start - mode->hdisplay;
150 int hback_porch = mode->htotal - mode->hsync_end;
151 int hsync_len = mode->hsync_end - mode->hsync_start;
152
153 if (hsync_len > 0x40 || hsync_len < 1)
154 return MODE_HSYNC;
155
156 if (vsync_len > 0x40 || vsync_len < 1)
157 return MODE_VSYNC;
158
159 if (hfront_porch > 0x200 || hfront_porch < 1 ||
160 hback_porch > 0x200 || hback_porch < 1 ||
161 mode->hdisplay < 1)
162 return MODE_H_ILLEGAL;
163
164 if (vfront_porch > 0x40 || vfront_porch < 1 ||
165 vback_porch > 0x40 || vback_porch < 0 ||
166 mode->vdisplay < 1)
167 return MODE_V_ILLEGAL;
168
169 return MODE_OK;
170}
171
172static irqreturn_t atmel_hlcdc_dc_irq_handler(int irq, void *data)
173{
174 struct drm_device *dev = data;
175 struct atmel_hlcdc_dc *dc = dev->dev_private;
176 unsigned long status;
177 unsigned int imr, isr;
178 int i;
179
180 regmap_read(dc->hlcdc->regmap, ATMEL_HLCDC_IMR, &imr);
181 regmap_read(dc->hlcdc->regmap, ATMEL_HLCDC_ISR, &isr);
182 status = imr & isr;
183 if (!status)
184 return IRQ_NONE;
185
186 if (status & ATMEL_HLCDC_SOF)
187 atmel_hlcdc_crtc_irq(dc->crtc);
188
189 for (i = 0; i < ATMEL_HLCDC_MAX_LAYERS; i++) {
190 struct atmel_hlcdc_layer *layer = dc->layers[i];
191
192 if (!(ATMEL_HLCDC_LAYER_STATUS(i) & status) || !layer)
193 continue;
194
195 atmel_hlcdc_layer_irq(layer);
196 }
197
198 return IRQ_HANDLED;
199}
200
201static struct drm_framebuffer *atmel_hlcdc_fb_create(struct drm_device *dev,
202 struct drm_file *file_priv, struct drm_mode_fb_cmd2 *mode_cmd)
203{
204 return drm_fb_cma_create(dev, file_priv, mode_cmd);
205}
206
207static void atmel_hlcdc_fb_output_poll_changed(struct drm_device *dev)
208{
209 struct atmel_hlcdc_dc *dc = dev->dev_private;
210
211 if (dc->fbdev) {
212 drm_fbdev_cma_hotplug_event(dc->fbdev);
213 } else {
214 dc->fbdev = drm_fbdev_cma_init(dev, 24,
215 dev->mode_config.num_crtc,
216 dev->mode_config.num_connector);
217 if (IS_ERR(dc->fbdev))
218 dc->fbdev = NULL;
219 }
220}
221
222static const struct drm_mode_config_funcs mode_config_funcs = {
223 .fb_create = atmel_hlcdc_fb_create,
224 .output_poll_changed = atmel_hlcdc_fb_output_poll_changed,
Boris Brezillon2389fc12015-02-05 16:32:33 +0100225 .atomic_check = drm_atomic_helper_check,
226 .atomic_commit = drm_atomic_helper_commit,
Boris Brezillon1a396782015-01-06 11:13:28 +0100227};
228
229static int atmel_hlcdc_dc_modeset_init(struct drm_device *dev)
230{
231 struct atmel_hlcdc_dc *dc = dev->dev_private;
232 struct atmel_hlcdc_planes *planes;
233 int ret;
234 int i;
235
236 drm_mode_config_init(dev);
237
238 ret = atmel_hlcdc_create_outputs(dev);
239 if (ret) {
240 dev_err(dev->dev, "failed to create panel: %d\n", ret);
241 return ret;
242 }
243
244 planes = atmel_hlcdc_create_planes(dev);
245 if (IS_ERR(planes)) {
246 dev_err(dev->dev, "failed to create planes\n");
247 return PTR_ERR(planes);
248 }
249
250 dc->planes = planes;
251
252 dc->layers[planes->primary->layer.desc->id] =
253 &planes->primary->layer;
254
255 if (planes->cursor)
256 dc->layers[planes->cursor->layer.desc->id] =
257 &planes->cursor->layer;
258
259 for (i = 0; i < planes->noverlays; i++)
260 dc->layers[planes->overlays[i]->layer.desc->id] =
261 &planes->overlays[i]->layer;
262
263 ret = atmel_hlcdc_crtc_create(dev);
264 if (ret) {
265 dev_err(dev->dev, "failed to create crtc\n");
266 return ret;
267 }
268
269 dev->mode_config.min_width = dc->desc->min_width;
270 dev->mode_config.min_height = dc->desc->min_height;
271 dev->mode_config.max_width = dc->desc->max_width;
272 dev->mode_config.max_height = dc->desc->max_height;
273 dev->mode_config.funcs = &mode_config_funcs;
274
275 return 0;
276}
277
278static int atmel_hlcdc_dc_load(struct drm_device *dev)
279{
280 struct platform_device *pdev = to_platform_device(dev->dev);
281 const struct of_device_id *match;
282 struct atmel_hlcdc_dc *dc;
283 int ret;
284
285 match = of_match_node(atmel_hlcdc_of_match, dev->dev->parent->of_node);
286 if (!match) {
287 dev_err(&pdev->dev, "invalid compatible string\n");
288 return -ENODEV;
289 }
290
291 if (!match->data) {
292 dev_err(&pdev->dev, "invalid hlcdc description\n");
293 return -EINVAL;
294 }
295
296 dc = devm_kzalloc(dev->dev, sizeof(*dc), GFP_KERNEL);
297 if (!dc)
298 return -ENOMEM;
299
300 dc->wq = alloc_ordered_workqueue("atmel-hlcdc-dc", 0);
301 if (!dc->wq)
302 return -ENOMEM;
303
304 dc->desc = match->data;
305 dc->hlcdc = dev_get_drvdata(dev->dev->parent);
306 dev->dev_private = dc;
307
308 ret = clk_prepare_enable(dc->hlcdc->periph_clk);
309 if (ret) {
310 dev_err(dev->dev, "failed to enable periph_clk\n");
311 goto err_destroy_wq;
312 }
313
314 pm_runtime_enable(dev->dev);
315
316 pm_runtime_put_sync(dev->dev);
317
318 ret = atmel_hlcdc_dc_modeset_init(dev);
319 if (ret < 0) {
320 dev_err(dev->dev, "failed to initialize mode setting\n");
321 goto err_periph_clk_disable;
322 }
323
Boris Brezillon2389fc12015-02-05 16:32:33 +0100324 drm_mode_config_reset(dev);
325
Boris Brezillon1a396782015-01-06 11:13:28 +0100326 ret = drm_vblank_init(dev, 1);
327 if (ret < 0) {
328 dev_err(dev->dev, "failed to initialize vblank\n");
329 goto err_periph_clk_disable;
330 }
331
332 pm_runtime_get_sync(dev->dev);
333 ret = drm_irq_install(dev, dc->hlcdc->irq);
334 pm_runtime_put_sync(dev->dev);
335 if (ret < 0) {
336 dev_err(dev->dev, "failed to install IRQ handler\n");
337 goto err_periph_clk_disable;
338 }
339
340 platform_set_drvdata(pdev, dev);
341
342 drm_kms_helper_poll_init(dev);
343
344 /* force connectors detection */
345 drm_helper_hpd_irq_event(dev);
346
347 return 0;
348
349err_periph_clk_disable:
350 pm_runtime_disable(dev->dev);
351 clk_disable_unprepare(dc->hlcdc->periph_clk);
352
353err_destroy_wq:
354 destroy_workqueue(dc->wq);
355
356 return ret;
357}
358
359static void atmel_hlcdc_dc_unload(struct drm_device *dev)
360{
361 struct atmel_hlcdc_dc *dc = dev->dev_private;
362
363 if (dc->fbdev)
364 drm_fbdev_cma_fini(dc->fbdev);
365 flush_workqueue(dc->wq);
366 drm_kms_helper_poll_fini(dev);
367 drm_mode_config_cleanup(dev);
368 drm_vblank_cleanup(dev);
369
370 pm_runtime_get_sync(dev->dev);
371 drm_irq_uninstall(dev);
372 pm_runtime_put_sync(dev->dev);
373
374 dev->dev_private = NULL;
375
376 pm_runtime_disable(dev->dev);
377 clk_disable_unprepare(dc->hlcdc->periph_clk);
378 destroy_workqueue(dc->wq);
379}
380
381static int atmel_hlcdc_dc_connector_plug_all(struct drm_device *dev)
382{
383 struct drm_connector *connector, *failed;
384 int ret;
385
386 mutex_lock(&dev->mode_config.mutex);
387 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
388 ret = drm_connector_register(connector);
389 if (ret) {
390 failed = connector;
391 goto err;
392 }
393 }
394 mutex_unlock(&dev->mode_config.mutex);
395 return 0;
396
397err:
398 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
399 if (failed == connector)
400 break;
401
402 drm_connector_unregister(connector);
403 }
404 mutex_unlock(&dev->mode_config.mutex);
405
406 return ret;
407}
408
409static void atmel_hlcdc_dc_connector_unplug_all(struct drm_device *dev)
410{
411 mutex_lock(&dev->mode_config.mutex);
412 drm_connector_unplug_all(dev);
413 mutex_unlock(&dev->mode_config.mutex);
414}
415
416static void atmel_hlcdc_dc_preclose(struct drm_device *dev,
417 struct drm_file *file)
418{
419 struct drm_crtc *crtc;
420
421 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
422 atmel_hlcdc_crtc_cancel_page_flip(crtc, file);
423}
424
425static void atmel_hlcdc_dc_lastclose(struct drm_device *dev)
426{
427 struct atmel_hlcdc_dc *dc = dev->dev_private;
428
429 drm_fbdev_cma_restore_mode(dc->fbdev);
430}
431
432static int atmel_hlcdc_dc_irq_postinstall(struct drm_device *dev)
433{
434 struct atmel_hlcdc_dc *dc = dev->dev_private;
435 unsigned int cfg = 0;
436 int i;
437
438 /* Enable interrupts on activated layers */
439 for (i = 0; i < ATMEL_HLCDC_MAX_LAYERS; i++) {
440 if (dc->layers[i])
441 cfg |= ATMEL_HLCDC_LAYER_STATUS(i);
442 }
443
444 regmap_write(dc->hlcdc->regmap, ATMEL_HLCDC_IER, cfg);
445
446 return 0;
447}
448
449static void atmel_hlcdc_dc_irq_uninstall(struct drm_device *dev)
450{
451 struct atmel_hlcdc_dc *dc = dev->dev_private;
452 unsigned int isr;
453
454 regmap_write(dc->hlcdc->regmap, ATMEL_HLCDC_IDR, 0xffffffff);
455 regmap_read(dc->hlcdc->regmap, ATMEL_HLCDC_ISR, &isr);
456}
457
458static int atmel_hlcdc_dc_enable_vblank(struct drm_device *dev, int crtc)
459{
460 struct atmel_hlcdc_dc *dc = dev->dev_private;
461
462 /* Enable SOF (Start Of Frame) interrupt for vblank counting */
463 regmap_write(dc->hlcdc->regmap, ATMEL_HLCDC_IER, ATMEL_HLCDC_SOF);
464
465 return 0;
466}
467
468static void atmel_hlcdc_dc_disable_vblank(struct drm_device *dev, int crtc)
469{
470 struct atmel_hlcdc_dc *dc = dev->dev_private;
471
472 regmap_write(dc->hlcdc->regmap, ATMEL_HLCDC_IDR, ATMEL_HLCDC_SOF);
473}
474
475static const struct file_operations fops = {
476 .owner = THIS_MODULE,
477 .open = drm_open,
478 .release = drm_release,
479 .unlocked_ioctl = drm_ioctl,
480#ifdef CONFIG_COMPAT
481 .compat_ioctl = drm_compat_ioctl,
482#endif
483 .poll = drm_poll,
484 .read = drm_read,
485 .llseek = no_llseek,
486 .mmap = drm_gem_cma_mmap,
487};
488
489static struct drm_driver atmel_hlcdc_dc_driver = {
490 .driver_features = DRIVER_HAVE_IRQ | DRIVER_GEM | DRIVER_MODESET,
491 .preclose = atmel_hlcdc_dc_preclose,
492 .lastclose = atmel_hlcdc_dc_lastclose,
493 .irq_handler = atmel_hlcdc_dc_irq_handler,
494 .irq_preinstall = atmel_hlcdc_dc_irq_uninstall,
495 .irq_postinstall = atmel_hlcdc_dc_irq_postinstall,
496 .irq_uninstall = atmel_hlcdc_dc_irq_uninstall,
497 .get_vblank_counter = drm_vblank_count,
498 .enable_vblank = atmel_hlcdc_dc_enable_vblank,
499 .disable_vblank = atmel_hlcdc_dc_disable_vblank,
500 .gem_free_object = drm_gem_cma_free_object,
501 .gem_vm_ops = &drm_gem_cma_vm_ops,
502 .dumb_create = drm_gem_cma_dumb_create,
503 .dumb_map_offset = drm_gem_cma_dumb_map_offset,
504 .dumb_destroy = drm_gem_dumb_destroy,
505 .fops = &fops,
506 .name = "atmel-hlcdc",
507 .desc = "Atmel HLCD Controller DRM",
508 .date = "20141504",
509 .major = 1,
510 .minor = 0,
511};
512
513static int atmel_hlcdc_dc_drm_probe(struct platform_device *pdev)
514{
515 struct drm_device *ddev;
516 int ret;
517
518 ddev = drm_dev_alloc(&atmel_hlcdc_dc_driver, &pdev->dev);
519 if (!ddev)
520 return -ENOMEM;
521
522 ret = drm_dev_set_unique(ddev, dev_name(ddev->dev));
523 if (ret)
524 goto err_unref;
525
526 ret = atmel_hlcdc_dc_load(ddev);
527 if (ret)
528 goto err_unref;
529
530 ret = drm_dev_register(ddev, 0);
531 if (ret)
532 goto err_unload;
533
534 ret = atmel_hlcdc_dc_connector_plug_all(ddev);
535 if (ret)
536 goto err_unregister;
537
538 return 0;
539
540err_unregister:
541 drm_dev_unregister(ddev);
542
543err_unload:
544 atmel_hlcdc_dc_unload(ddev);
545
546err_unref:
547 drm_dev_unref(ddev);
548
549 return ret;
550}
551
552static int atmel_hlcdc_dc_drm_remove(struct platform_device *pdev)
553{
554 struct drm_device *ddev = platform_get_drvdata(pdev);
555
556 atmel_hlcdc_dc_connector_unplug_all(ddev);
557 drm_dev_unregister(ddev);
558 atmel_hlcdc_dc_unload(ddev);
559 drm_dev_unref(ddev);
560
561 return 0;
562}
563
Sylvain Rochet58486982015-02-22 18:51:03 +0100564#ifdef CONFIG_PM
565static int atmel_hlcdc_dc_drm_suspend(struct device *dev)
566{
567 struct drm_device *drm_dev = dev_get_drvdata(dev);
568 struct drm_crtc *crtc;
569
570 if (pm_runtime_suspended(dev))
571 return 0;
572
573 drm_modeset_lock_all(drm_dev);
574 list_for_each_entry(crtc, &drm_dev->mode_config.crtc_list, head) {
575 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
576 if (crtc->enabled) {
577 crtc_funcs->disable(crtc);
578 /* save enable state for resume */
579 crtc->enabled = true;
580 }
581 }
582 drm_modeset_unlock_all(drm_dev);
583 return 0;
584}
585
586static int atmel_hlcdc_dc_drm_resume(struct device *dev)
587{
588 struct drm_device *drm_dev = dev_get_drvdata(dev);
589 struct drm_crtc *crtc;
590
591 if (pm_runtime_suspended(dev))
592 return 0;
593
594 drm_modeset_lock_all(drm_dev);
595 list_for_each_entry(crtc, &drm_dev->mode_config.crtc_list, head) {
596 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
597 if (crtc->enabled) {
598 crtc->enabled = false;
599 crtc_funcs->enable(crtc);
600 }
601 }
602 drm_modeset_unlock_all(drm_dev);
603 return 0;
604}
605#endif
606
607static SIMPLE_DEV_PM_OPS(atmel_hlcdc_dc_drm_pm_ops,
608 atmel_hlcdc_dc_drm_suspend, atmel_hlcdc_dc_drm_resume);
609
Boris Brezillon1a396782015-01-06 11:13:28 +0100610static const struct of_device_id atmel_hlcdc_dc_of_match[] = {
611 { .compatible = "atmel,hlcdc-display-controller" },
612 { },
613};
614
615static struct platform_driver atmel_hlcdc_dc_platform_driver = {
616 .probe = atmel_hlcdc_dc_drm_probe,
617 .remove = atmel_hlcdc_dc_drm_remove,
618 .driver = {
619 .name = "atmel-hlcdc-display-controller",
Sylvain Rochet58486982015-02-22 18:51:03 +0100620 .pm = &atmel_hlcdc_dc_drm_pm_ops,
Boris Brezillon1a396782015-01-06 11:13:28 +0100621 .of_match_table = atmel_hlcdc_dc_of_match,
622 },
623};
624module_platform_driver(atmel_hlcdc_dc_platform_driver);
625
626MODULE_AUTHOR("Jean-Jacques Hiblot <jjhiblot@traphandler.com>");
627MODULE_AUTHOR("Boris Brezillon <boris.brezillon@free-electrons.com>");
628MODULE_DESCRIPTION("Atmel HLCDC Display Controller DRM Driver");
629MODULE_LICENSE("GPL");
630MODULE_ALIAS("platform:atmel-hlcdc-dc");