Loading...
1/*
2 * Copyright (C) 2012 Texas Instruments
3 * Author: Rob Clark <robdclark@gmail.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/* LCDC DRM driver, based on da8xx-fb */
19
20#include <linux/component.h>
21#include <linux/pinctrl/consumer.h>
22#include <linux/suspend.h>
23#include <drm/drm_atomic.h>
24#include <drm/drm_atomic_helper.h>
25#include <drm/drm_fb_helper.h>
26#include <drm/drm_gem_framebuffer_helper.h>
27
28#include "tilcdc_drv.h"
29#include "tilcdc_regs.h"
30#include "tilcdc_tfp410.h"
31#include "tilcdc_panel.h"
32#include "tilcdc_external.h"
33
34static LIST_HEAD(module_list);
35
36static const u32 tilcdc_rev1_formats[] = { DRM_FORMAT_RGB565 };
37
38static const u32 tilcdc_straight_formats[] = { DRM_FORMAT_RGB565,
39 DRM_FORMAT_BGR888,
40 DRM_FORMAT_XBGR8888 };
41
42static const u32 tilcdc_crossed_formats[] = { DRM_FORMAT_BGR565,
43 DRM_FORMAT_RGB888,
44 DRM_FORMAT_XRGB8888 };
45
46static const u32 tilcdc_legacy_formats[] = { DRM_FORMAT_RGB565,
47 DRM_FORMAT_RGB888,
48 DRM_FORMAT_XRGB8888 };
49
50void tilcdc_module_init(struct tilcdc_module *mod, const char *name,
51 const struct tilcdc_module_ops *funcs)
52{
53 mod->name = name;
54 mod->funcs = funcs;
55 INIT_LIST_HEAD(&mod->list);
56 list_add(&mod->list, &module_list);
57}
58
59void tilcdc_module_cleanup(struct tilcdc_module *mod)
60{
61 list_del(&mod->list);
62}
63
64static struct of_device_id tilcdc_of_match[];
65
66static struct drm_framebuffer *tilcdc_fb_create(struct drm_device *dev,
67 struct drm_file *file_priv, const struct drm_mode_fb_cmd2 *mode_cmd)
68{
69 return drm_gem_fb_create(dev, file_priv, mode_cmd);
70}
71
72static int tilcdc_atomic_check(struct drm_device *dev,
73 struct drm_atomic_state *state)
74{
75 int ret;
76
77 ret = drm_atomic_helper_check_modeset(dev, state);
78 if (ret)
79 return ret;
80
81 ret = drm_atomic_helper_check_planes(dev, state);
82 if (ret)
83 return ret;
84
85 /*
86 * tilcdc ->atomic_check can update ->mode_changed if pixel format
87 * changes, hence will we check modeset changes again.
88 */
89 ret = drm_atomic_helper_check_modeset(dev, state);
90 if (ret)
91 return ret;
92
93 return ret;
94}
95
96static int tilcdc_commit(struct drm_device *dev,
97 struct drm_atomic_state *state,
98 bool async)
99{
100 int ret;
101
102 ret = drm_atomic_helper_prepare_planes(dev, state);
103 if (ret)
104 return ret;
105
106 ret = drm_atomic_helper_swap_state(state, true);
107 if (ret) {
108 drm_atomic_helper_cleanup_planes(dev, state);
109 return ret;
110 }
111
112 /*
113 * Everything below can be run asynchronously without the need to grab
114 * any modeset locks at all under one condition: It must be guaranteed
115 * that the asynchronous work has either been cancelled (if the driver
116 * supports it, which at least requires that the framebuffers get
117 * cleaned up with drm_atomic_helper_cleanup_planes()) or completed
118 * before the new state gets committed on the software side with
119 * drm_atomic_helper_swap_state().
120 *
121 * This scheme allows new atomic state updates to be prepared and
122 * checked in parallel to the asynchronous completion of the previous
123 * update. Which is important since compositors need to figure out the
124 * composition of the next frame right after having submitted the
125 * current layout.
126 */
127
128 drm_atomic_helper_commit_modeset_disables(dev, state);
129
130 drm_atomic_helper_commit_planes(dev, state, 0);
131
132 drm_atomic_helper_commit_modeset_enables(dev, state);
133
134 drm_atomic_helper_wait_for_vblanks(dev, state);
135
136 drm_atomic_helper_cleanup_planes(dev, state);
137
138 return 0;
139}
140
141static const struct drm_mode_config_funcs mode_config_funcs = {
142 .fb_create = tilcdc_fb_create,
143 .output_poll_changed = drm_fb_helper_output_poll_changed,
144 .atomic_check = tilcdc_atomic_check,
145 .atomic_commit = tilcdc_commit,
146};
147
148static void modeset_init(struct drm_device *dev)
149{
150 struct tilcdc_drm_private *priv = dev->dev_private;
151 struct tilcdc_module *mod;
152
153 list_for_each_entry(mod, &module_list, list) {
154 DBG("loading module: %s", mod->name);
155 mod->funcs->modeset_init(mod, dev);
156 }
157
158 dev->mode_config.min_width = 0;
159 dev->mode_config.min_height = 0;
160 dev->mode_config.max_width = tilcdc_crtc_max_width(priv->crtc);
161 dev->mode_config.max_height = 2048;
162 dev->mode_config.funcs = &mode_config_funcs;
163}
164
165#ifdef CONFIG_CPU_FREQ
166static int cpufreq_transition(struct notifier_block *nb,
167 unsigned long val, void *data)
168{
169 struct tilcdc_drm_private *priv = container_of(nb,
170 struct tilcdc_drm_private, freq_transition);
171
172 if (val == CPUFREQ_POSTCHANGE)
173 tilcdc_crtc_update_clk(priv->crtc);
174
175 return 0;
176}
177#endif
178
179/*
180 * DRM operations:
181 */
182
183static void tilcdc_fini(struct drm_device *dev)
184{
185 struct tilcdc_drm_private *priv = dev->dev_private;
186
187 if (priv->crtc)
188 tilcdc_crtc_shutdown(priv->crtc);
189
190 if (priv->is_registered)
191 drm_dev_unregister(dev);
192
193 drm_kms_helper_poll_fini(dev);
194
195 drm_fb_cma_fbdev_fini(dev);
196
197 drm_irq_uninstall(dev);
198 drm_mode_config_cleanup(dev);
199 tilcdc_remove_external_device(dev);
200
201#ifdef CONFIG_CPU_FREQ
202 if (priv->freq_transition.notifier_call)
203 cpufreq_unregister_notifier(&priv->freq_transition,
204 CPUFREQ_TRANSITION_NOTIFIER);
205#endif
206
207 if (priv->clk)
208 clk_put(priv->clk);
209
210 if (priv->mmio)
211 iounmap(priv->mmio);
212
213 if (priv->wq) {
214 flush_workqueue(priv->wq);
215 destroy_workqueue(priv->wq);
216 }
217
218 dev->dev_private = NULL;
219
220 pm_runtime_disable(dev->dev);
221
222 drm_dev_put(dev);
223}
224
225static int tilcdc_init(struct drm_driver *ddrv, struct device *dev)
226{
227 struct drm_device *ddev;
228 struct platform_device *pdev = to_platform_device(dev);
229 struct device_node *node = dev->of_node;
230 struct tilcdc_drm_private *priv;
231 struct resource *res;
232 u32 bpp = 0;
233 int ret;
234
235 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
236 if (!priv)
237 return -ENOMEM;
238
239 ddev = drm_dev_alloc(ddrv, dev);
240 if (IS_ERR(ddev))
241 return PTR_ERR(ddev);
242
243 ddev->dev_private = priv;
244 platform_set_drvdata(pdev, ddev);
245 drm_mode_config_init(ddev);
246
247 priv->is_componentized =
248 tilcdc_get_external_components(dev, NULL) > 0;
249
250 priv->wq = alloc_ordered_workqueue("tilcdc", 0);
251 if (!priv->wq) {
252 ret = -ENOMEM;
253 goto init_failed;
254 }
255
256 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
257 if (!res) {
258 dev_err(dev, "failed to get memory resource\n");
259 ret = -EINVAL;
260 goto init_failed;
261 }
262
263 priv->mmio = ioremap_nocache(res->start, resource_size(res));
264 if (!priv->mmio) {
265 dev_err(dev, "failed to ioremap\n");
266 ret = -ENOMEM;
267 goto init_failed;
268 }
269
270 priv->clk = clk_get(dev, "fck");
271 if (IS_ERR(priv->clk)) {
272 dev_err(dev, "failed to get functional clock\n");
273 ret = -ENODEV;
274 goto init_failed;
275 }
276
277#ifdef CONFIG_CPU_FREQ
278 priv->freq_transition.notifier_call = cpufreq_transition;
279 ret = cpufreq_register_notifier(&priv->freq_transition,
280 CPUFREQ_TRANSITION_NOTIFIER);
281 if (ret) {
282 dev_err(dev, "failed to register cpufreq notifier\n");
283 priv->freq_transition.notifier_call = NULL;
284 goto init_failed;
285 }
286#endif
287
288 if (of_property_read_u32(node, "max-bandwidth", &priv->max_bandwidth))
289 priv->max_bandwidth = TILCDC_DEFAULT_MAX_BANDWIDTH;
290
291 DBG("Maximum Bandwidth Value %d", priv->max_bandwidth);
292
293 if (of_property_read_u32(node, "max-width", &priv->max_width))
294 priv->max_width = TILCDC_DEFAULT_MAX_WIDTH;
295
296 DBG("Maximum Horizontal Pixel Width Value %dpixels", priv->max_width);
297
298 if (of_property_read_u32(node, "max-pixelclock",
299 &priv->max_pixelclock))
300 priv->max_pixelclock = TILCDC_DEFAULT_MAX_PIXELCLOCK;
301
302 DBG("Maximum Pixel Clock Value %dKHz", priv->max_pixelclock);
303
304 pm_runtime_enable(dev);
305
306 /* Determine LCD IP Version */
307 pm_runtime_get_sync(dev);
308 switch (tilcdc_read(ddev, LCDC_PID_REG)) {
309 case 0x4c100102:
310 priv->rev = 1;
311 break;
312 case 0x4f200800:
313 case 0x4f201000:
314 priv->rev = 2;
315 break;
316 default:
317 dev_warn(dev, "Unknown PID Reg value 0x%08x, "
318 "defaulting to LCD revision 1\n",
319 tilcdc_read(ddev, LCDC_PID_REG));
320 priv->rev = 1;
321 break;
322 }
323
324 pm_runtime_put_sync(dev);
325
326 if (priv->rev == 1) {
327 DBG("Revision 1 LCDC supports only RGB565 format");
328 priv->pixelformats = tilcdc_rev1_formats;
329 priv->num_pixelformats = ARRAY_SIZE(tilcdc_rev1_formats);
330 bpp = 16;
331 } else {
332 const char *str = "\0";
333
334 of_property_read_string(node, "blue-and-red-wiring", &str);
335 if (0 == strcmp(str, "crossed")) {
336 DBG("Configured for crossed blue and red wires");
337 priv->pixelformats = tilcdc_crossed_formats;
338 priv->num_pixelformats =
339 ARRAY_SIZE(tilcdc_crossed_formats);
340 bpp = 32; /* Choose bpp with RGB support for fbdef */
341 } else if (0 == strcmp(str, "straight")) {
342 DBG("Configured for straight blue and red wires");
343 priv->pixelformats = tilcdc_straight_formats;
344 priv->num_pixelformats =
345 ARRAY_SIZE(tilcdc_straight_formats);
346 bpp = 16; /* Choose bpp with RGB support for fbdef */
347 } else {
348 DBG("Blue and red wiring '%s' unknown, use legacy mode",
349 str);
350 priv->pixelformats = tilcdc_legacy_formats;
351 priv->num_pixelformats =
352 ARRAY_SIZE(tilcdc_legacy_formats);
353 bpp = 16; /* This is just a guess */
354 }
355 }
356
357 ret = tilcdc_crtc_create(ddev);
358 if (ret < 0) {
359 dev_err(dev, "failed to create crtc\n");
360 goto init_failed;
361 }
362 modeset_init(ddev);
363
364 if (priv->is_componentized) {
365 ret = component_bind_all(dev, ddev);
366 if (ret < 0)
367 goto init_failed;
368
369 ret = tilcdc_add_component_encoder(ddev);
370 if (ret < 0)
371 goto init_failed;
372 } else {
373 ret = tilcdc_attach_external_device(ddev);
374 if (ret)
375 goto init_failed;
376 }
377
378 if (!priv->external_connector &&
379 ((priv->num_encoders == 0) || (priv->num_connectors == 0))) {
380 dev_err(dev, "no encoders/connectors found\n");
381 ret = -ENXIO;
382 goto init_failed;
383 }
384
385 ret = drm_vblank_init(ddev, 1);
386 if (ret < 0) {
387 dev_err(dev, "failed to initialize vblank\n");
388 goto init_failed;
389 }
390
391 ret = drm_irq_install(ddev, platform_get_irq(pdev, 0));
392 if (ret < 0) {
393 dev_err(dev, "failed to install IRQ handler\n");
394 goto init_failed;
395 }
396
397 drm_mode_config_reset(ddev);
398
399 ret = drm_fb_cma_fbdev_init(ddev, bpp, 0);
400 if (ret)
401 goto init_failed;
402
403 drm_kms_helper_poll_init(ddev);
404
405 ret = drm_dev_register(ddev, 0);
406 if (ret)
407 goto init_failed;
408
409 priv->is_registered = true;
410 return 0;
411
412init_failed:
413 tilcdc_fini(ddev);
414
415 return ret;
416}
417
418static irqreturn_t tilcdc_irq(int irq, void *arg)
419{
420 struct drm_device *dev = arg;
421 struct tilcdc_drm_private *priv = dev->dev_private;
422 return tilcdc_crtc_irq(priv->crtc);
423}
424
425#if defined(CONFIG_DEBUG_FS)
426static const struct {
427 const char *name;
428 uint8_t rev;
429 uint8_t save;
430 uint32_t reg;
431} registers[] = {
432#define REG(rev, save, reg) { #reg, rev, save, reg }
433 /* exists in revision 1: */
434 REG(1, false, LCDC_PID_REG),
435 REG(1, true, LCDC_CTRL_REG),
436 REG(1, false, LCDC_STAT_REG),
437 REG(1, true, LCDC_RASTER_CTRL_REG),
438 REG(1, true, LCDC_RASTER_TIMING_0_REG),
439 REG(1, true, LCDC_RASTER_TIMING_1_REG),
440 REG(1, true, LCDC_RASTER_TIMING_2_REG),
441 REG(1, true, LCDC_DMA_CTRL_REG),
442 REG(1, true, LCDC_DMA_FB_BASE_ADDR_0_REG),
443 REG(1, true, LCDC_DMA_FB_CEILING_ADDR_0_REG),
444 REG(1, true, LCDC_DMA_FB_BASE_ADDR_1_REG),
445 REG(1, true, LCDC_DMA_FB_CEILING_ADDR_1_REG),
446 /* new in revision 2: */
447 REG(2, false, LCDC_RAW_STAT_REG),
448 REG(2, false, LCDC_MASKED_STAT_REG),
449 REG(2, true, LCDC_INT_ENABLE_SET_REG),
450 REG(2, false, LCDC_INT_ENABLE_CLR_REG),
451 REG(2, false, LCDC_END_OF_INT_IND_REG),
452 REG(2, true, LCDC_CLK_ENABLE_REG),
453#undef REG
454};
455
456#endif
457
458#ifdef CONFIG_DEBUG_FS
459static int tilcdc_regs_show(struct seq_file *m, void *arg)
460{
461 struct drm_info_node *node = (struct drm_info_node *) m->private;
462 struct drm_device *dev = node->minor->dev;
463 struct tilcdc_drm_private *priv = dev->dev_private;
464 unsigned i;
465
466 pm_runtime_get_sync(dev->dev);
467
468 seq_printf(m, "revision: %d\n", priv->rev);
469
470 for (i = 0; i < ARRAY_SIZE(registers); i++)
471 if (priv->rev >= registers[i].rev)
472 seq_printf(m, "%s:\t %08x\n", registers[i].name,
473 tilcdc_read(dev, registers[i].reg));
474
475 pm_runtime_put_sync(dev->dev);
476
477 return 0;
478}
479
480static int tilcdc_mm_show(struct seq_file *m, void *arg)
481{
482 struct drm_info_node *node = (struct drm_info_node *) m->private;
483 struct drm_device *dev = node->minor->dev;
484 struct drm_printer p = drm_seq_file_printer(m);
485 drm_mm_print(&dev->vma_offset_manager->vm_addr_space_mm, &p);
486 return 0;
487}
488
489static struct drm_info_list tilcdc_debugfs_list[] = {
490 { "regs", tilcdc_regs_show, 0 },
491 { "mm", tilcdc_mm_show, 0 },
492};
493
494static int tilcdc_debugfs_init(struct drm_minor *minor)
495{
496 struct drm_device *dev = minor->dev;
497 struct tilcdc_module *mod;
498 int ret;
499
500 ret = drm_debugfs_create_files(tilcdc_debugfs_list,
501 ARRAY_SIZE(tilcdc_debugfs_list),
502 minor->debugfs_root, minor);
503
504 list_for_each_entry(mod, &module_list, list)
505 if (mod->funcs->debugfs_init)
506 mod->funcs->debugfs_init(mod, minor);
507
508 if (ret) {
509 dev_err(dev->dev, "could not install tilcdc_debugfs_list\n");
510 return ret;
511 }
512
513 return ret;
514}
515#endif
516
517DEFINE_DRM_GEM_CMA_FOPS(fops);
518
519static struct drm_driver tilcdc_driver = {
520 .driver_features = (DRIVER_HAVE_IRQ | DRIVER_GEM | DRIVER_MODESET |
521 DRIVER_PRIME | DRIVER_ATOMIC),
522 .lastclose = drm_fb_helper_lastclose,
523 .irq_handler = tilcdc_irq,
524 .gem_free_object_unlocked = drm_gem_cma_free_object,
525 .gem_print_info = drm_gem_cma_print_info,
526 .gem_vm_ops = &drm_gem_cma_vm_ops,
527 .dumb_create = drm_gem_cma_dumb_create,
528
529 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
530 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
531 .gem_prime_import = drm_gem_prime_import,
532 .gem_prime_export = drm_gem_prime_export,
533 .gem_prime_get_sg_table = drm_gem_cma_prime_get_sg_table,
534 .gem_prime_import_sg_table = drm_gem_cma_prime_import_sg_table,
535 .gem_prime_vmap = drm_gem_cma_prime_vmap,
536 .gem_prime_vunmap = drm_gem_cma_prime_vunmap,
537 .gem_prime_mmap = drm_gem_cma_prime_mmap,
538#ifdef CONFIG_DEBUG_FS
539 .debugfs_init = tilcdc_debugfs_init,
540#endif
541 .fops = &fops,
542 .name = "tilcdc",
543 .desc = "TI LCD Controller DRM",
544 .date = "20121205",
545 .major = 1,
546 .minor = 0,
547};
548
549/*
550 * Power management:
551 */
552
553#ifdef CONFIG_PM_SLEEP
554static int tilcdc_pm_suspend(struct device *dev)
555{
556 struct drm_device *ddev = dev_get_drvdata(dev);
557 struct tilcdc_drm_private *priv = ddev->dev_private;
558
559 priv->saved_state = drm_atomic_helper_suspend(ddev);
560
561 /* Select sleep pin state */
562 pinctrl_pm_select_sleep_state(dev);
563
564 return 0;
565}
566
567static int tilcdc_pm_resume(struct device *dev)
568{
569 struct drm_device *ddev = dev_get_drvdata(dev);
570 struct tilcdc_drm_private *priv = ddev->dev_private;
571 int ret = 0;
572
573 /* Select default pin state */
574 pinctrl_pm_select_default_state(dev);
575
576 if (priv->saved_state)
577 ret = drm_atomic_helper_resume(ddev, priv->saved_state);
578
579 return ret;
580}
581#endif
582
583static const struct dev_pm_ops tilcdc_pm_ops = {
584 SET_SYSTEM_SLEEP_PM_OPS(tilcdc_pm_suspend, tilcdc_pm_resume)
585};
586
587/*
588 * Platform driver:
589 */
590static int tilcdc_bind(struct device *dev)
591{
592 return tilcdc_init(&tilcdc_driver, dev);
593}
594
595static void tilcdc_unbind(struct device *dev)
596{
597 struct drm_device *ddev = dev_get_drvdata(dev);
598
599 /* Check if a subcomponent has already triggered the unloading. */
600 if (!ddev->dev_private)
601 return;
602
603 tilcdc_fini(dev_get_drvdata(dev));
604}
605
606static const struct component_master_ops tilcdc_comp_ops = {
607 .bind = tilcdc_bind,
608 .unbind = tilcdc_unbind,
609};
610
611static int tilcdc_pdev_probe(struct platform_device *pdev)
612{
613 struct component_match *match = NULL;
614 int ret;
615
616 /* bail out early if no DT data: */
617 if (!pdev->dev.of_node) {
618 dev_err(&pdev->dev, "device-tree data is missing\n");
619 return -ENXIO;
620 }
621
622 ret = tilcdc_get_external_components(&pdev->dev, &match);
623 if (ret < 0)
624 return ret;
625 else if (ret == 0)
626 return tilcdc_init(&tilcdc_driver, &pdev->dev);
627 else
628 return component_master_add_with_match(&pdev->dev,
629 &tilcdc_comp_ops,
630 match);
631}
632
633static int tilcdc_pdev_remove(struct platform_device *pdev)
634{
635 int ret;
636
637 ret = tilcdc_get_external_components(&pdev->dev, NULL);
638 if (ret < 0)
639 return ret;
640 else if (ret == 0)
641 tilcdc_fini(platform_get_drvdata(pdev));
642 else
643 component_master_del(&pdev->dev, &tilcdc_comp_ops);
644
645 return 0;
646}
647
648static struct of_device_id tilcdc_of_match[] = {
649 { .compatible = "ti,am33xx-tilcdc", },
650 { .compatible = "ti,da850-tilcdc", },
651 { },
652};
653MODULE_DEVICE_TABLE(of, tilcdc_of_match);
654
655static struct platform_driver tilcdc_platform_driver = {
656 .probe = tilcdc_pdev_probe,
657 .remove = tilcdc_pdev_remove,
658 .driver = {
659 .name = "tilcdc",
660 .pm = &tilcdc_pm_ops,
661 .of_match_table = tilcdc_of_match,
662 },
663};
664
665static int __init tilcdc_drm_init(void)
666{
667 DBG("init");
668 tilcdc_tfp410_init();
669 tilcdc_panel_init();
670 return platform_driver_register(&tilcdc_platform_driver);
671}
672
673static void __exit tilcdc_drm_fini(void)
674{
675 DBG("fini");
676 platform_driver_unregister(&tilcdc_platform_driver);
677 tilcdc_panel_fini();
678 tilcdc_tfp410_fini();
679}
680
681module_init(tilcdc_drm_init);
682module_exit(tilcdc_drm_fini);
683
684MODULE_AUTHOR("Rob Clark <robdclark@gmail.com");
685MODULE_DESCRIPTION("TI LCD Controller DRM Driver");
686MODULE_LICENSE("GPL");
1/*
2 * Copyright (C) 2012 Texas Instruments
3 * Author: Rob Clark <robdclark@gmail.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/* LCDC DRM driver, based on da8xx-fb */
19
20#include "tilcdc_drv.h"
21#include "tilcdc_regs.h"
22#include "tilcdc_tfp410.h"
23#include "tilcdc_slave.h"
24#include "tilcdc_panel.h"
25
26#include "drm_fb_helper.h"
27
28static LIST_HEAD(module_list);
29static bool slave_probing;
30
31void tilcdc_module_init(struct tilcdc_module *mod, const char *name,
32 const struct tilcdc_module_ops *funcs)
33{
34 mod->name = name;
35 mod->funcs = funcs;
36 INIT_LIST_HEAD(&mod->list);
37 list_add(&mod->list, &module_list);
38}
39
40void tilcdc_module_cleanup(struct tilcdc_module *mod)
41{
42 list_del(&mod->list);
43}
44
45void tilcdc_slave_probedefer(bool defered)
46{
47 slave_probing = defered;
48}
49
50static struct of_device_id tilcdc_of_match[];
51
52static struct drm_framebuffer *tilcdc_fb_create(struct drm_device *dev,
53 struct drm_file *file_priv, struct drm_mode_fb_cmd2 *mode_cmd)
54{
55 return drm_fb_cma_create(dev, file_priv, mode_cmd);
56}
57
58static void tilcdc_fb_output_poll_changed(struct drm_device *dev)
59{
60 struct tilcdc_drm_private *priv = dev->dev_private;
61 if (priv->fbdev)
62 drm_fbdev_cma_hotplug_event(priv->fbdev);
63}
64
65static const struct drm_mode_config_funcs mode_config_funcs = {
66 .fb_create = tilcdc_fb_create,
67 .output_poll_changed = tilcdc_fb_output_poll_changed,
68};
69
70static int modeset_init(struct drm_device *dev)
71{
72 struct tilcdc_drm_private *priv = dev->dev_private;
73 struct tilcdc_module *mod;
74
75 drm_mode_config_init(dev);
76
77 priv->crtc = tilcdc_crtc_create(dev);
78
79 list_for_each_entry(mod, &module_list, list) {
80 DBG("loading module: %s", mod->name);
81 mod->funcs->modeset_init(mod, dev);
82 }
83
84 if ((priv->num_encoders == 0) || (priv->num_connectors == 0)) {
85 /* oh nos! */
86 dev_err(dev->dev, "no encoders/connectors found\n");
87 return -ENXIO;
88 }
89
90 dev->mode_config.min_width = 0;
91 dev->mode_config.min_height = 0;
92 dev->mode_config.max_width = tilcdc_crtc_max_width(priv->crtc);
93 dev->mode_config.max_height = 2048;
94 dev->mode_config.funcs = &mode_config_funcs;
95
96 return 0;
97}
98
99#ifdef CONFIG_CPU_FREQ
100static int cpufreq_transition(struct notifier_block *nb,
101 unsigned long val, void *data)
102{
103 struct tilcdc_drm_private *priv = container_of(nb,
104 struct tilcdc_drm_private, freq_transition);
105 if (val == CPUFREQ_POSTCHANGE) {
106 if (priv->lcd_fck_rate != clk_get_rate(priv->clk)) {
107 priv->lcd_fck_rate = clk_get_rate(priv->clk);
108 tilcdc_crtc_update_clk(priv->crtc);
109 }
110 }
111
112 return 0;
113}
114#endif
115
116/*
117 * DRM operations:
118 */
119
120static int tilcdc_unload(struct drm_device *dev)
121{
122 struct tilcdc_drm_private *priv = dev->dev_private;
123 struct tilcdc_module *mod, *cur;
124
125 drm_kms_helper_poll_fini(dev);
126 drm_mode_config_cleanup(dev);
127 drm_vblank_cleanup(dev);
128
129 pm_runtime_get_sync(dev->dev);
130 drm_irq_uninstall(dev);
131 pm_runtime_put_sync(dev->dev);
132
133#ifdef CONFIG_CPU_FREQ
134 cpufreq_unregister_notifier(&priv->freq_transition,
135 CPUFREQ_TRANSITION_NOTIFIER);
136#endif
137
138 if (priv->clk)
139 clk_put(priv->clk);
140
141 if (priv->mmio)
142 iounmap(priv->mmio);
143
144 flush_workqueue(priv->wq);
145 destroy_workqueue(priv->wq);
146
147 dev->dev_private = NULL;
148
149 pm_runtime_disable(dev->dev);
150
151 list_for_each_entry_safe(mod, cur, &module_list, list) {
152 DBG("destroying module: %s", mod->name);
153 mod->funcs->destroy(mod);
154 }
155
156 kfree(priv);
157
158 return 0;
159}
160
161static int tilcdc_load(struct drm_device *dev, unsigned long flags)
162{
163 struct platform_device *pdev = dev->platformdev;
164 struct device_node *node = pdev->dev.of_node;
165 struct tilcdc_drm_private *priv;
166 struct tilcdc_module *mod;
167 struct resource *res;
168 u32 bpp = 0;
169 int ret;
170
171 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
172 if (!priv) {
173 dev_err(dev->dev, "failed to allocate private data\n");
174 return -ENOMEM;
175 }
176
177 dev->dev_private = priv;
178
179 priv->wq = alloc_ordered_workqueue("tilcdc", 0);
180
181 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
182 if (!res) {
183 dev_err(dev->dev, "failed to get memory resource\n");
184 ret = -EINVAL;
185 goto fail;
186 }
187
188 priv->mmio = ioremap_nocache(res->start, resource_size(res));
189 if (!priv->mmio) {
190 dev_err(dev->dev, "failed to ioremap\n");
191 ret = -ENOMEM;
192 goto fail;
193 }
194
195 priv->clk = clk_get(dev->dev, "fck");
196 if (IS_ERR(priv->clk)) {
197 dev_err(dev->dev, "failed to get functional clock\n");
198 ret = -ENODEV;
199 goto fail;
200 }
201
202 priv->disp_clk = clk_get(dev->dev, "dpll_disp_ck");
203 if (IS_ERR(priv->clk)) {
204 dev_err(dev->dev, "failed to get display clock\n");
205 ret = -ENODEV;
206 goto fail;
207 }
208
209#ifdef CONFIG_CPU_FREQ
210 priv->lcd_fck_rate = clk_get_rate(priv->clk);
211 priv->freq_transition.notifier_call = cpufreq_transition;
212 ret = cpufreq_register_notifier(&priv->freq_transition,
213 CPUFREQ_TRANSITION_NOTIFIER);
214 if (ret) {
215 dev_err(dev->dev, "failed to register cpufreq notifier\n");
216 goto fail;
217 }
218#endif
219
220 if (of_property_read_u32(node, "max-bandwidth", &priv->max_bandwidth))
221 priv->max_bandwidth = TILCDC_DEFAULT_MAX_BANDWIDTH;
222
223 DBG("Maximum Bandwidth Value %d", priv->max_bandwidth);
224
225 if (of_property_read_u32(node, "ti,max-width", &priv->max_width))
226 priv->max_width = TILCDC_DEFAULT_MAX_WIDTH;
227
228 DBG("Maximum Horizontal Pixel Width Value %dpixels", priv->max_width);
229
230 if (of_property_read_u32(node, "ti,max-pixelclock",
231 &priv->max_pixelclock))
232 priv->max_pixelclock = TILCDC_DEFAULT_MAX_PIXELCLOCK;
233
234 DBG("Maximum Pixel Clock Value %dKHz", priv->max_pixelclock);
235
236 pm_runtime_enable(dev->dev);
237
238 /* Determine LCD IP Version */
239 pm_runtime_get_sync(dev->dev);
240 switch (tilcdc_read(dev, LCDC_PID_REG)) {
241 case 0x4c100102:
242 priv->rev = 1;
243 break;
244 case 0x4f200800:
245 case 0x4f201000:
246 priv->rev = 2;
247 break;
248 default:
249 dev_warn(dev->dev, "Unknown PID Reg value 0x%08x, "
250 "defaulting to LCD revision 1\n",
251 tilcdc_read(dev, LCDC_PID_REG));
252 priv->rev = 1;
253 break;
254 }
255
256 pm_runtime_put_sync(dev->dev);
257
258 ret = modeset_init(dev);
259 if (ret < 0) {
260 dev_err(dev->dev, "failed to initialize mode setting\n");
261 goto fail;
262 }
263
264 ret = drm_vblank_init(dev, 1);
265 if (ret < 0) {
266 dev_err(dev->dev, "failed to initialize vblank\n");
267 goto fail;
268 }
269
270 pm_runtime_get_sync(dev->dev);
271 ret = drm_irq_install(dev);
272 pm_runtime_put_sync(dev->dev);
273 if (ret < 0) {
274 dev_err(dev->dev, "failed to install IRQ handler\n");
275 goto fail;
276 }
277
278 platform_set_drvdata(pdev, dev);
279
280
281 list_for_each_entry(mod, &module_list, list) {
282 DBG("%s: preferred_bpp: %d", mod->name, mod->preferred_bpp);
283 bpp = mod->preferred_bpp;
284 if (bpp > 0)
285 break;
286 }
287
288 priv->fbdev = drm_fbdev_cma_init(dev, bpp,
289 dev->mode_config.num_crtc,
290 dev->mode_config.num_connector);
291
292 drm_kms_helper_poll_init(dev);
293
294 return 0;
295
296fail:
297 tilcdc_unload(dev);
298 return ret;
299}
300
301static void tilcdc_preclose(struct drm_device *dev, struct drm_file *file)
302{
303 struct tilcdc_drm_private *priv = dev->dev_private;
304
305 tilcdc_crtc_cancel_page_flip(priv->crtc, file);
306}
307
308static void tilcdc_lastclose(struct drm_device *dev)
309{
310 struct tilcdc_drm_private *priv = dev->dev_private;
311 drm_fbdev_cma_restore_mode(priv->fbdev);
312}
313
314static irqreturn_t tilcdc_irq(int irq, void *arg)
315{
316 struct drm_device *dev = arg;
317 struct tilcdc_drm_private *priv = dev->dev_private;
318 return tilcdc_crtc_irq(priv->crtc);
319}
320
321static void tilcdc_irq_preinstall(struct drm_device *dev)
322{
323 tilcdc_clear_irqstatus(dev, 0xffffffff);
324}
325
326static int tilcdc_irq_postinstall(struct drm_device *dev)
327{
328 struct tilcdc_drm_private *priv = dev->dev_private;
329
330 /* enable FIFO underflow irq: */
331 if (priv->rev == 1)
332 tilcdc_set(dev, LCDC_RASTER_CTRL_REG, LCDC_V1_UNDERFLOW_INT_ENA);
333 else
334 tilcdc_set(dev, LCDC_INT_ENABLE_SET_REG, LCDC_V2_UNDERFLOW_INT_ENA);
335
336 return 0;
337}
338
339static void tilcdc_irq_uninstall(struct drm_device *dev)
340{
341 struct tilcdc_drm_private *priv = dev->dev_private;
342
343 /* disable irqs that we might have enabled: */
344 if (priv->rev == 1) {
345 tilcdc_clear(dev, LCDC_RASTER_CTRL_REG,
346 LCDC_V1_UNDERFLOW_INT_ENA | LCDC_V1_PL_INT_ENA);
347 tilcdc_clear(dev, LCDC_DMA_CTRL_REG, LCDC_V1_END_OF_FRAME_INT_ENA);
348 } else {
349 tilcdc_clear(dev, LCDC_INT_ENABLE_SET_REG,
350 LCDC_V2_UNDERFLOW_INT_ENA | LCDC_V2_PL_INT_ENA |
351 LCDC_V2_END_OF_FRAME0_INT_ENA | LCDC_V2_END_OF_FRAME1_INT_ENA |
352 LCDC_FRAME_DONE);
353 }
354
355}
356
357static void enable_vblank(struct drm_device *dev, bool enable)
358{
359 struct tilcdc_drm_private *priv = dev->dev_private;
360 u32 reg, mask;
361
362 if (priv->rev == 1) {
363 reg = LCDC_DMA_CTRL_REG;
364 mask = LCDC_V1_END_OF_FRAME_INT_ENA;
365 } else {
366 reg = LCDC_INT_ENABLE_SET_REG;
367 mask = LCDC_V2_END_OF_FRAME0_INT_ENA |
368 LCDC_V2_END_OF_FRAME1_INT_ENA | LCDC_FRAME_DONE;
369 }
370
371 if (enable)
372 tilcdc_set(dev, reg, mask);
373 else
374 tilcdc_clear(dev, reg, mask);
375}
376
377static int tilcdc_enable_vblank(struct drm_device *dev, int crtc)
378{
379 enable_vblank(dev, true);
380 return 0;
381}
382
383static void tilcdc_disable_vblank(struct drm_device *dev, int crtc)
384{
385 enable_vblank(dev, false);
386}
387
388#if defined(CONFIG_DEBUG_FS) || defined(CONFIG_PM_SLEEP)
389static const struct {
390 const char *name;
391 uint8_t rev;
392 uint8_t save;
393 uint32_t reg;
394} registers[] = {
395#define REG(rev, save, reg) { #reg, rev, save, reg }
396 /* exists in revision 1: */
397 REG(1, false, LCDC_PID_REG),
398 REG(1, true, LCDC_CTRL_REG),
399 REG(1, false, LCDC_STAT_REG),
400 REG(1, true, LCDC_RASTER_CTRL_REG),
401 REG(1, true, LCDC_RASTER_TIMING_0_REG),
402 REG(1, true, LCDC_RASTER_TIMING_1_REG),
403 REG(1, true, LCDC_RASTER_TIMING_2_REG),
404 REG(1, true, LCDC_DMA_CTRL_REG),
405 REG(1, true, LCDC_DMA_FB_BASE_ADDR_0_REG),
406 REG(1, true, LCDC_DMA_FB_CEILING_ADDR_0_REG),
407 REG(1, true, LCDC_DMA_FB_BASE_ADDR_1_REG),
408 REG(1, true, LCDC_DMA_FB_CEILING_ADDR_1_REG),
409 /* new in revision 2: */
410 REG(2, false, LCDC_RAW_STAT_REG),
411 REG(2, false, LCDC_MASKED_STAT_REG),
412 REG(2, false, LCDC_INT_ENABLE_SET_REG),
413 REG(2, false, LCDC_INT_ENABLE_CLR_REG),
414 REG(2, false, LCDC_END_OF_INT_IND_REG),
415 REG(2, true, LCDC_CLK_ENABLE_REG),
416 REG(2, true, LCDC_INT_ENABLE_SET_REG),
417#undef REG
418};
419#endif
420
421#ifdef CONFIG_DEBUG_FS
422static int tilcdc_regs_show(struct seq_file *m, void *arg)
423{
424 struct drm_info_node *node = (struct drm_info_node *) m->private;
425 struct drm_device *dev = node->minor->dev;
426 struct tilcdc_drm_private *priv = dev->dev_private;
427 unsigned i;
428
429 pm_runtime_get_sync(dev->dev);
430
431 seq_printf(m, "revision: %d\n", priv->rev);
432
433 for (i = 0; i < ARRAY_SIZE(registers); i++)
434 if (priv->rev >= registers[i].rev)
435 seq_printf(m, "%s:\t %08x\n", registers[i].name,
436 tilcdc_read(dev, registers[i].reg));
437
438 pm_runtime_put_sync(dev->dev);
439
440 return 0;
441}
442
443static int tilcdc_mm_show(struct seq_file *m, void *arg)
444{
445 struct drm_info_node *node = (struct drm_info_node *) m->private;
446 struct drm_device *dev = node->minor->dev;
447 return drm_mm_dump_table(m, &dev->vma_offset_manager->vm_addr_space_mm);
448}
449
450static struct drm_info_list tilcdc_debugfs_list[] = {
451 { "regs", tilcdc_regs_show, 0 },
452 { "mm", tilcdc_mm_show, 0 },
453 { "fb", drm_fb_cma_debugfs_show, 0 },
454};
455
456static int tilcdc_debugfs_init(struct drm_minor *minor)
457{
458 struct drm_device *dev = minor->dev;
459 struct tilcdc_module *mod;
460 int ret;
461
462 ret = drm_debugfs_create_files(tilcdc_debugfs_list,
463 ARRAY_SIZE(tilcdc_debugfs_list),
464 minor->debugfs_root, minor);
465
466 list_for_each_entry(mod, &module_list, list)
467 if (mod->funcs->debugfs_init)
468 mod->funcs->debugfs_init(mod, minor);
469
470 if (ret) {
471 dev_err(dev->dev, "could not install tilcdc_debugfs_list\n");
472 return ret;
473 }
474
475 return ret;
476}
477
478static void tilcdc_debugfs_cleanup(struct drm_minor *minor)
479{
480 struct tilcdc_module *mod;
481 drm_debugfs_remove_files(tilcdc_debugfs_list,
482 ARRAY_SIZE(tilcdc_debugfs_list), minor);
483
484 list_for_each_entry(mod, &module_list, list)
485 if (mod->funcs->debugfs_cleanup)
486 mod->funcs->debugfs_cleanup(mod, minor);
487}
488#endif
489
490static const struct file_operations fops = {
491 .owner = THIS_MODULE,
492 .open = drm_open,
493 .release = drm_release,
494 .unlocked_ioctl = drm_ioctl,
495#ifdef CONFIG_COMPAT
496 .compat_ioctl = drm_compat_ioctl,
497#endif
498 .poll = drm_poll,
499 .read = drm_read,
500 .llseek = no_llseek,
501 .mmap = drm_gem_cma_mmap,
502};
503
504static struct drm_driver tilcdc_driver = {
505 .driver_features = DRIVER_HAVE_IRQ | DRIVER_GEM | DRIVER_MODESET,
506 .load = tilcdc_load,
507 .unload = tilcdc_unload,
508 .preclose = tilcdc_preclose,
509 .lastclose = tilcdc_lastclose,
510 .irq_handler = tilcdc_irq,
511 .irq_preinstall = tilcdc_irq_preinstall,
512 .irq_postinstall = tilcdc_irq_postinstall,
513 .irq_uninstall = tilcdc_irq_uninstall,
514 .get_vblank_counter = drm_vblank_count,
515 .enable_vblank = tilcdc_enable_vblank,
516 .disable_vblank = tilcdc_disable_vblank,
517 .gem_free_object = drm_gem_cma_free_object,
518 .gem_vm_ops = &drm_gem_cma_vm_ops,
519 .dumb_create = drm_gem_cma_dumb_create,
520 .dumb_map_offset = drm_gem_cma_dumb_map_offset,
521 .dumb_destroy = drm_gem_dumb_destroy,
522#ifdef CONFIG_DEBUG_FS
523 .debugfs_init = tilcdc_debugfs_init,
524 .debugfs_cleanup = tilcdc_debugfs_cleanup,
525#endif
526 .fops = &fops,
527 .name = "tilcdc",
528 .desc = "TI LCD Controller DRM",
529 .date = "20121205",
530 .major = 1,
531 .minor = 0,
532};
533
534/*
535 * Power management:
536 */
537
538#ifdef CONFIG_PM_SLEEP
539static int tilcdc_pm_suspend(struct device *dev)
540{
541 struct drm_device *ddev = dev_get_drvdata(dev);
542 struct tilcdc_drm_private *priv = ddev->dev_private;
543 unsigned i, n = 0;
544
545 drm_kms_helper_poll_disable(ddev);
546
547 /* Save register state: */
548 for (i = 0; i < ARRAY_SIZE(registers); i++)
549 if (registers[i].save && (priv->rev >= registers[i].rev))
550 priv->saved_register[n++] = tilcdc_read(ddev, registers[i].reg);
551
552 return 0;
553}
554
555static int tilcdc_pm_resume(struct device *dev)
556{
557 struct drm_device *ddev = dev_get_drvdata(dev);
558 struct tilcdc_drm_private *priv = ddev->dev_private;
559 unsigned i, n = 0;
560
561 /* Restore register state: */
562 for (i = 0; i < ARRAY_SIZE(registers); i++)
563 if (registers[i].save && (priv->rev >= registers[i].rev))
564 tilcdc_write(ddev, registers[i].reg, priv->saved_register[n++]);
565
566 drm_kms_helper_poll_enable(ddev);
567
568 return 0;
569}
570#endif
571
572static const struct dev_pm_ops tilcdc_pm_ops = {
573 SET_SYSTEM_SLEEP_PM_OPS(tilcdc_pm_suspend, tilcdc_pm_resume)
574};
575
576/*
577 * Platform driver:
578 */
579
580static int tilcdc_pdev_probe(struct platform_device *pdev)
581{
582 /* bail out early if no DT data: */
583 if (!pdev->dev.of_node) {
584 dev_err(&pdev->dev, "device-tree data is missing\n");
585 return -ENXIO;
586 }
587
588 /* defer probing if slave is in deferred probing */
589 if (slave_probing == true)
590 return -EPROBE_DEFER;
591
592 return drm_platform_init(&tilcdc_driver, pdev);
593}
594
595static int tilcdc_pdev_remove(struct platform_device *pdev)
596{
597 drm_put_dev(platform_get_drvdata(pdev));
598
599 return 0;
600}
601
602static struct of_device_id tilcdc_of_match[] = {
603 { .compatible = "ti,am33xx-tilcdc", },
604 { },
605};
606MODULE_DEVICE_TABLE(of, tilcdc_of_match);
607
608static struct platform_driver tilcdc_platform_driver = {
609 .probe = tilcdc_pdev_probe,
610 .remove = tilcdc_pdev_remove,
611 .driver = {
612 .owner = THIS_MODULE,
613 .name = "tilcdc",
614 .pm = &tilcdc_pm_ops,
615 .of_match_table = tilcdc_of_match,
616 },
617};
618
619static int __init tilcdc_drm_init(void)
620{
621 DBG("init");
622 tilcdc_tfp410_init();
623 tilcdc_slave_init();
624 tilcdc_panel_init();
625 return platform_driver_register(&tilcdc_platform_driver);
626}
627
628static void __exit tilcdc_drm_fini(void)
629{
630 DBG("fini");
631 tilcdc_tfp410_fini();
632 tilcdc_slave_fini();
633 tilcdc_panel_fini();
634 platform_driver_unregister(&tilcdc_platform_driver);
635}
636
637late_initcall(tilcdc_drm_init);
638module_exit(tilcdc_drm_fini);
639
640MODULE_AUTHOR("Rob Clark <robdclark@gmail.com");
641MODULE_DESCRIPTION("TI LCD Controller DRM Driver");
642MODULE_LICENSE("GPL");