2 * Copyright (C) 2014 Traphandler
3 * Copyright (C) 2014 Free Electrons
4 * Copyright (C) 2014 Atmel
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.
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
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/>.
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>
28 #include "atmel_hlcdc_dc.h"
30 #define ATMEL_HLCDC_LAYER_IRQS_OFFSET 8
32 static const struct atmel_hlcdc_layer_desc atmel_hlcdc_at91sam9n12_layers[] = {
35 .formats = &atmel_hlcdc_plane_rgb_formats,
38 .type = ATMEL_HLCDC_BASE_LAYER,
48 static const struct atmel_hlcdc_dc_desc atmel_hlcdc_dc_at91sam9n12 = {
53 .nlayers = ARRAY_SIZE(atmel_hlcdc_at91sam9n12_layers),
54 .layers = atmel_hlcdc_at91sam9n12_layers,
57 static const struct atmel_hlcdc_layer_desc atmel_hlcdc_at91sam9x5_layers[] = {
60 .formats = &atmel_hlcdc_plane_rgb_formats,
63 .type = ATMEL_HLCDC_BASE_LAYER,
75 .formats = &atmel_hlcdc_plane_rgb_formats,
78 .type = ATMEL_HLCDC_OVERLAY_LAYER,
92 .name = "high-end-overlay",
93 .formats = &atmel_hlcdc_plane_rgb_and_yuv_formats,
96 .type = ATMEL_HLCDC_OVERLAY_LAYER,
106 .chroma_key_mask = 11,
107 .general_config = 12,
113 .formats = &atmel_hlcdc_plane_rgb_formats,
114 .regs_offset = 0x340,
116 .type = ATMEL_HLCDC_CURSOR_LAYER,
126 .chroma_key_mask = 8,
132 static const struct atmel_hlcdc_dc_desc atmel_hlcdc_dc_at91sam9x5 = {
137 .nlayers = ARRAY_SIZE(atmel_hlcdc_at91sam9x5_layers),
138 .layers = atmel_hlcdc_at91sam9x5_layers,
141 static const struct atmel_hlcdc_layer_desc atmel_hlcdc_sama5d3_layers[] = {
144 .formats = &atmel_hlcdc_plane_rgb_formats,
147 .type = ATMEL_HLCDC_BASE_LAYER,
159 .formats = &atmel_hlcdc_plane_rgb_formats,
160 .regs_offset = 0x140,
162 .type = ATMEL_HLCDC_OVERLAY_LAYER,
171 .chroma_key_mask = 8,
177 .formats = &atmel_hlcdc_plane_rgb_formats,
178 .regs_offset = 0x240,
180 .type = ATMEL_HLCDC_OVERLAY_LAYER,
189 .chroma_key_mask = 8,
194 .name = "high-end-overlay",
195 .formats = &atmel_hlcdc_plane_rgb_and_yuv_formats,
196 .regs_offset = 0x340,
198 .type = ATMEL_HLCDC_OVERLAY_LAYER,
208 .chroma_key_mask = 11,
209 .general_config = 12,
215 .formats = &atmel_hlcdc_plane_rgb_formats,
216 .regs_offset = 0x440,
218 .type = ATMEL_HLCDC_CURSOR_LAYER,
229 .chroma_key_mask = 8,
235 static const struct atmel_hlcdc_dc_desc atmel_hlcdc_dc_sama5d3 = {
240 .nlayers = ARRAY_SIZE(atmel_hlcdc_sama5d3_layers),
241 .layers = atmel_hlcdc_sama5d3_layers,
244 static const struct atmel_hlcdc_layer_desc atmel_hlcdc_sama5d4_layers[] = {
247 .formats = &atmel_hlcdc_plane_rgb_formats,
250 .type = ATMEL_HLCDC_BASE_LAYER,
262 .formats = &atmel_hlcdc_plane_rgb_formats,
263 .regs_offset = 0x140,
265 .type = ATMEL_HLCDC_OVERLAY_LAYER,
274 .chroma_key_mask = 8,
280 .formats = &atmel_hlcdc_plane_rgb_formats,
281 .regs_offset = 0x240,
283 .type = ATMEL_HLCDC_OVERLAY_LAYER,
292 .chroma_key_mask = 8,
297 .name = "high-end-overlay",
298 .formats = &atmel_hlcdc_plane_rgb_and_yuv_formats,
299 .regs_offset = 0x340,
301 .type = ATMEL_HLCDC_OVERLAY_LAYER,
311 .chroma_key_mask = 11,
312 .general_config = 12,
318 static const struct atmel_hlcdc_dc_desc atmel_hlcdc_dc_sama5d4 = {
323 .nlayers = ARRAY_SIZE(atmel_hlcdc_sama5d4_layers),
324 .layers = atmel_hlcdc_sama5d4_layers,
326 static const struct of_device_id atmel_hlcdc_of_match[] = {
328 .compatible = "atmel,at91sam9n12-hlcdc",
329 .data = &atmel_hlcdc_dc_at91sam9n12,
332 .compatible = "atmel,at91sam9x5-hlcdc",
333 .data = &atmel_hlcdc_dc_at91sam9x5,
336 .compatible = "atmel,sama5d3-hlcdc",
337 .data = &atmel_hlcdc_dc_sama5d3,
340 .compatible = "atmel,sama5d4-hlcdc",
341 .data = &atmel_hlcdc_dc_sama5d4,
346 int atmel_hlcdc_dc_mode_valid(struct atmel_hlcdc_dc *dc,
347 struct drm_display_mode *mode)
349 int vfront_porch = mode->vsync_start - mode->vdisplay;
350 int vback_porch = mode->vtotal - mode->vsync_end;
351 int vsync_len = mode->vsync_end - mode->vsync_start;
352 int hfront_porch = mode->hsync_start - mode->hdisplay;
353 int hback_porch = mode->htotal - mode->hsync_end;
354 int hsync_len = mode->hsync_end - mode->hsync_start;
356 if (hsync_len > 0x40 || hsync_len < 1)
359 if (vsync_len > 0x40 || vsync_len < 1)
362 if (hfront_porch > 0x200 || hfront_porch < 1 ||
363 hback_porch > 0x200 || hback_porch < 1 ||
365 return MODE_H_ILLEGAL;
367 if (vfront_porch > 0x40 || vfront_porch < 1 ||
368 vback_porch > 0x40 || vback_porch < 0 ||
370 return MODE_V_ILLEGAL;
375 static irqreturn_t atmel_hlcdc_dc_irq_handler(int irq, void *data)
377 struct drm_device *dev = data;
378 struct atmel_hlcdc_dc *dc = dev->dev_private;
379 unsigned long status;
380 unsigned int imr, isr;
383 regmap_read(dc->hlcdc->regmap, ATMEL_HLCDC_IMR, &imr);
384 regmap_read(dc->hlcdc->regmap, ATMEL_HLCDC_ISR, &isr);
389 if (status & ATMEL_HLCDC_SOF)
390 atmel_hlcdc_crtc_irq(dc->crtc);
392 for (i = 0; i < ATMEL_HLCDC_MAX_LAYERS; i++) {
393 struct atmel_hlcdc_layer *layer = dc->layers[i];
395 if (!(ATMEL_HLCDC_LAYER_STATUS(i) & status) || !layer)
398 atmel_hlcdc_layer_irq(layer);
404 static struct drm_framebuffer *atmel_hlcdc_fb_create(struct drm_device *dev,
405 struct drm_file *file_priv, struct drm_mode_fb_cmd2 *mode_cmd)
407 return drm_fb_cma_create(dev, file_priv, mode_cmd);
410 static void atmel_hlcdc_fb_output_poll_changed(struct drm_device *dev)
412 struct atmel_hlcdc_dc *dc = dev->dev_private;
415 drm_fbdev_cma_hotplug_event(dc->fbdev);
417 dc->fbdev = drm_fbdev_cma_init(dev, 24,
418 dev->mode_config.num_crtc,
419 dev->mode_config.num_connector);
420 if (IS_ERR(dc->fbdev))
425 static const struct drm_mode_config_funcs mode_config_funcs = {
426 .fb_create = atmel_hlcdc_fb_create,
427 .output_poll_changed = atmel_hlcdc_fb_output_poll_changed,
428 .atomic_check = drm_atomic_helper_check,
429 .atomic_commit = drm_atomic_helper_commit,
432 static int atmel_hlcdc_dc_modeset_init(struct drm_device *dev)
434 struct atmel_hlcdc_dc *dc = dev->dev_private;
435 struct atmel_hlcdc_planes *planes;
439 drm_mode_config_init(dev);
441 ret = atmel_hlcdc_create_outputs(dev);
443 dev_err(dev->dev, "failed to create panel: %d\n", ret);
447 planes = atmel_hlcdc_create_planes(dev);
448 if (IS_ERR(planes)) {
449 dev_err(dev->dev, "failed to create planes\n");
450 return PTR_ERR(planes);
455 dc->layers[planes->primary->layer.desc->id] =
456 &planes->primary->layer;
459 dc->layers[planes->cursor->layer.desc->id] =
460 &planes->cursor->layer;
462 for (i = 0; i < planes->noverlays; i++)
463 dc->layers[planes->overlays[i]->layer.desc->id] =
464 &planes->overlays[i]->layer;
466 ret = atmel_hlcdc_crtc_create(dev);
468 dev_err(dev->dev, "failed to create crtc\n");
472 dev->mode_config.min_width = dc->desc->min_width;
473 dev->mode_config.min_height = dc->desc->min_height;
474 dev->mode_config.max_width = dc->desc->max_width;
475 dev->mode_config.max_height = dc->desc->max_height;
476 dev->mode_config.funcs = &mode_config_funcs;
481 static int atmel_hlcdc_dc_load(struct drm_device *dev)
483 struct platform_device *pdev = to_platform_device(dev->dev);
484 const struct of_device_id *match;
485 struct atmel_hlcdc_dc *dc;
488 match = of_match_node(atmel_hlcdc_of_match, dev->dev->parent->of_node);
490 dev_err(&pdev->dev, "invalid compatible string\n");
495 dev_err(&pdev->dev, "invalid hlcdc description\n");
499 dc = devm_kzalloc(dev->dev, sizeof(*dc), GFP_KERNEL);
503 dc->wq = alloc_ordered_workqueue("atmel-hlcdc-dc", 0);
507 dc->desc = match->data;
508 dc->hlcdc = dev_get_drvdata(dev->dev->parent);
509 dev->dev_private = dc;
511 ret = clk_prepare_enable(dc->hlcdc->periph_clk);
513 dev_err(dev->dev, "failed to enable periph_clk\n");
517 pm_runtime_enable(dev->dev);
519 ret = drm_vblank_init(dev, 1);
521 dev_err(dev->dev, "failed to initialize vblank\n");
522 goto err_periph_clk_disable;
525 ret = atmel_hlcdc_dc_modeset_init(dev);
527 dev_err(dev->dev, "failed to initialize mode setting\n");
528 goto err_periph_clk_disable;
531 drm_mode_config_reset(dev);
533 pm_runtime_get_sync(dev->dev);
534 ret = drm_irq_install(dev, dc->hlcdc->irq);
535 pm_runtime_put_sync(dev->dev);
537 dev_err(dev->dev, "failed to install IRQ handler\n");
538 goto err_periph_clk_disable;
541 platform_set_drvdata(pdev, dev);
543 drm_kms_helper_poll_init(dev);
545 /* force connectors detection */
546 drm_helper_hpd_irq_event(dev);
550 err_periph_clk_disable:
551 pm_runtime_disable(dev->dev);
552 clk_disable_unprepare(dc->hlcdc->periph_clk);
555 destroy_workqueue(dc->wq);
560 static void atmel_hlcdc_dc_unload(struct drm_device *dev)
562 struct atmel_hlcdc_dc *dc = dev->dev_private;
565 drm_fbdev_cma_fini(dc->fbdev);
566 flush_workqueue(dc->wq);
567 drm_kms_helper_poll_fini(dev);
568 drm_mode_config_cleanup(dev);
569 drm_vblank_cleanup(dev);
571 pm_runtime_get_sync(dev->dev);
572 drm_irq_uninstall(dev);
573 pm_runtime_put_sync(dev->dev);
575 dev->dev_private = NULL;
577 pm_runtime_disable(dev->dev);
578 clk_disable_unprepare(dc->hlcdc->periph_clk);
579 destroy_workqueue(dc->wq);
582 static int atmel_hlcdc_dc_connector_plug_all(struct drm_device *dev)
584 struct drm_connector *connector, *failed;
587 mutex_lock(&dev->mode_config.mutex);
588 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
589 ret = drm_connector_register(connector);
595 mutex_unlock(&dev->mode_config.mutex);
599 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
600 if (failed == connector)
603 drm_connector_unregister(connector);
605 mutex_unlock(&dev->mode_config.mutex);
610 static void atmel_hlcdc_dc_connector_unplug_all(struct drm_device *dev)
612 mutex_lock(&dev->mode_config.mutex);
613 drm_connector_unplug_all(dev);
614 mutex_unlock(&dev->mode_config.mutex);
617 static void atmel_hlcdc_dc_preclose(struct drm_device *dev,
618 struct drm_file *file)
620 struct drm_crtc *crtc;
622 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
623 atmel_hlcdc_crtc_cancel_page_flip(crtc, file);
626 static void atmel_hlcdc_dc_lastclose(struct drm_device *dev)
628 struct atmel_hlcdc_dc *dc = dev->dev_private;
630 drm_fbdev_cma_restore_mode(dc->fbdev);
633 static int atmel_hlcdc_dc_irq_postinstall(struct drm_device *dev)
635 struct atmel_hlcdc_dc *dc = dev->dev_private;
636 unsigned int cfg = 0;
639 /* Enable interrupts on activated layers */
640 for (i = 0; i < ATMEL_HLCDC_MAX_LAYERS; i++) {
642 cfg |= ATMEL_HLCDC_LAYER_STATUS(i);
645 regmap_write(dc->hlcdc->regmap, ATMEL_HLCDC_IER, cfg);
650 static void atmel_hlcdc_dc_irq_uninstall(struct drm_device *dev)
652 struct atmel_hlcdc_dc *dc = dev->dev_private;
655 regmap_write(dc->hlcdc->regmap, ATMEL_HLCDC_IDR, 0xffffffff);
656 regmap_read(dc->hlcdc->regmap, ATMEL_HLCDC_ISR, &isr);
659 static int atmel_hlcdc_dc_enable_vblank(struct drm_device *dev, int crtc)
661 struct atmel_hlcdc_dc *dc = dev->dev_private;
663 /* Enable SOF (Start Of Frame) interrupt for vblank counting */
664 regmap_write(dc->hlcdc->regmap, ATMEL_HLCDC_IER, ATMEL_HLCDC_SOF);
669 static void atmel_hlcdc_dc_disable_vblank(struct drm_device *dev, int crtc)
671 struct atmel_hlcdc_dc *dc = dev->dev_private;
673 regmap_write(dc->hlcdc->regmap, ATMEL_HLCDC_IDR, ATMEL_HLCDC_SOF);
676 static const struct file_operations fops = {
677 .owner = THIS_MODULE,
679 .release = drm_release,
680 .unlocked_ioctl = drm_ioctl,
682 .compat_ioctl = drm_compat_ioctl,
687 .mmap = drm_gem_cma_mmap,
690 static struct drm_driver atmel_hlcdc_dc_driver = {
691 .driver_features = DRIVER_HAVE_IRQ | DRIVER_GEM |
692 DRIVER_MODESET | DRIVER_PRIME |
694 .preclose = atmel_hlcdc_dc_preclose,
695 .lastclose = atmel_hlcdc_dc_lastclose,
696 .irq_handler = atmel_hlcdc_dc_irq_handler,
697 .irq_preinstall = atmel_hlcdc_dc_irq_uninstall,
698 .irq_postinstall = atmel_hlcdc_dc_irq_postinstall,
699 .irq_uninstall = atmel_hlcdc_dc_irq_uninstall,
700 .get_vblank_counter = drm_vblank_count,
701 .enable_vblank = atmel_hlcdc_dc_enable_vblank,
702 .disable_vblank = atmel_hlcdc_dc_disable_vblank,
703 .gem_free_object = drm_gem_cma_free_object,
704 .gem_vm_ops = &drm_gem_cma_vm_ops,
705 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
706 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
707 .gem_prime_import = drm_gem_prime_import,
708 .gem_prime_export = drm_gem_prime_export,
709 .gem_prime_get_sg_table = drm_gem_cma_prime_get_sg_table,
710 .gem_prime_import_sg_table = drm_gem_cma_prime_import_sg_table,
711 .gem_prime_vmap = drm_gem_cma_prime_vmap,
712 .gem_prime_vunmap = drm_gem_cma_prime_vunmap,
713 .gem_prime_mmap = drm_gem_cma_prime_mmap,
714 .dumb_create = drm_gem_cma_dumb_create,
715 .dumb_map_offset = drm_gem_cma_dumb_map_offset,
716 .dumb_destroy = drm_gem_dumb_destroy,
718 .name = "atmel-hlcdc",
719 .desc = "Atmel HLCD Controller DRM",
725 static int atmel_hlcdc_dc_drm_probe(struct platform_device *pdev)
727 struct drm_device *ddev;
730 ddev = drm_dev_alloc(&atmel_hlcdc_dc_driver, &pdev->dev);
734 ret = drm_dev_set_unique(ddev, dev_name(ddev->dev));
738 ret = atmel_hlcdc_dc_load(ddev);
742 ret = drm_dev_register(ddev, 0);
746 ret = atmel_hlcdc_dc_connector_plug_all(ddev);
753 drm_dev_unregister(ddev);
756 atmel_hlcdc_dc_unload(ddev);
764 static int atmel_hlcdc_dc_drm_remove(struct platform_device *pdev)
766 struct drm_device *ddev = platform_get_drvdata(pdev);
768 atmel_hlcdc_dc_connector_unplug_all(ddev);
769 drm_dev_unregister(ddev);
770 atmel_hlcdc_dc_unload(ddev);
776 #ifdef CONFIG_PM_SLEEP
777 static int atmel_hlcdc_dc_drm_suspend(struct device *dev)
779 struct drm_device *drm_dev = dev_get_drvdata(dev);
780 struct drm_crtc *crtc;
782 if (pm_runtime_suspended(dev))
785 drm_modeset_lock_all(drm_dev);
786 list_for_each_entry(crtc, &drm_dev->mode_config.crtc_list, head)
787 atmel_hlcdc_crtc_suspend(crtc);
788 drm_modeset_unlock_all(drm_dev);
792 static int atmel_hlcdc_dc_drm_resume(struct device *dev)
794 struct drm_device *drm_dev = dev_get_drvdata(dev);
795 struct drm_crtc *crtc;
797 if (pm_runtime_suspended(dev))
800 drm_modeset_lock_all(drm_dev);
801 list_for_each_entry(crtc, &drm_dev->mode_config.crtc_list, head)
802 atmel_hlcdc_crtc_resume(crtc);
803 drm_modeset_unlock_all(drm_dev);
808 static SIMPLE_DEV_PM_OPS(atmel_hlcdc_dc_drm_pm_ops,
809 atmel_hlcdc_dc_drm_suspend, atmel_hlcdc_dc_drm_resume);
811 static const struct of_device_id atmel_hlcdc_dc_of_match[] = {
812 { .compatible = "atmel,hlcdc-display-controller" },
816 static struct platform_driver atmel_hlcdc_dc_platform_driver = {
817 .probe = atmel_hlcdc_dc_drm_probe,
818 .remove = atmel_hlcdc_dc_drm_remove,
820 .name = "atmel-hlcdc-display-controller",
821 .pm = &atmel_hlcdc_dc_drm_pm_ops,
822 .of_match_table = atmel_hlcdc_dc_of_match,
825 module_platform_driver(atmel_hlcdc_dc_platform_driver);
829 MODULE_DESCRIPTION("Atmel HLCDC Display Controller DRM Driver");
830 MODULE_LICENSE("GPL");
831 MODULE_ALIAS("platform:atmel-hlcdc-dc");