blob: 3a6c118457c36d5a1aca28a20e2779e572e6f3e8 [file] [log] [blame]
Laurent Pinchart4bf8e192013-06-19 13:54:11 +02001/*
2 * rcar_du_drv.c -- R-Car Display Unit DRM driver
3 *
Laurent Pinchart2427b302015-09-07 17:34:26 +03004 * Copyright (C) 2013-2015 Renesas Electronics Corporation
Laurent Pinchart4bf8e192013-06-19 13:54:11 +02005 *
6 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 */
13
14#include <linux/clk.h>
15#include <linux/io.h>
16#include <linux/mm.h>
17#include <linux/module.h>
Laurent Pinchart96c02692014-01-21 15:57:26 +010018#include <linux/of_device.h>
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020019#include <linux/platform_device.h>
20#include <linux/pm.h>
21#include <linux/slab.h>
Laurent Pinchart8d3f9b22015-02-23 01:02:15 +020022#include <linux/wait.h>
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020023
24#include <drm/drmP.h>
25#include <drm/drm_crtc_helper.h>
Laurent Pinchart3864c6f2013-03-14 22:45:22 +010026#include <drm/drm_fb_cma_helper.h>
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020027#include <drm/drm_gem_cma_helper.h>
28
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020029#include "rcar_du_drv.h"
30#include "rcar_du_kms.h"
31#include "rcar_du_regs.h"
32
33/* -----------------------------------------------------------------------------
Laurent Pinchart96c02692014-01-21 15:57:26 +010034 * Device Information
35 */
36
37static const struct rcar_du_device_info rcar_du_r8a7779_info = {
Laurent Pinchart2427b302015-09-07 17:34:26 +030038 .gen = 2,
Laurent Pinchart96c02692014-01-21 15:57:26 +010039 .features = 0,
40 .num_crtcs = 2,
41 .routes = {
42 /* R8A7779 has two RGB outputs and one (currently unsupported)
43 * TCON output.
44 */
45 [RCAR_DU_OUTPUT_DPAD0] = {
46 .possible_crtcs = BIT(0),
47 .encoder_type = DRM_MODE_ENCODER_NONE,
48 .port = 0,
49 },
50 [RCAR_DU_OUTPUT_DPAD1] = {
51 .possible_crtcs = BIT(1) | BIT(0),
52 .encoder_type = DRM_MODE_ENCODER_NONE,
53 .port = 1,
54 },
55 },
56 .num_lvds = 0,
57};
58
59static const struct rcar_du_device_info rcar_du_r8a7790_info = {
Laurent Pinchart2427b302015-09-07 17:34:26 +030060 .gen = 2,
Laurent Pinchart0c1c8772014-12-09 00:21:12 +020061 .features = RCAR_DU_FEATURE_CRTC_IRQ_CLOCK
62 | RCAR_DU_FEATURE_EXT_CTRL_REGS,
Laurent Pinchart96c02692014-01-21 15:57:26 +010063 .quirks = RCAR_DU_QUIRK_ALIGN_128B | RCAR_DU_QUIRK_LVDS_LANES,
64 .num_crtcs = 3,
65 .routes = {
66 /* R8A7790 has one RGB output, two LVDS outputs and one
67 * (currently unsupported) TCON output.
68 */
69 [RCAR_DU_OUTPUT_DPAD0] = {
70 .possible_crtcs = BIT(2) | BIT(1) | BIT(0),
71 .encoder_type = DRM_MODE_ENCODER_NONE,
72 .port = 0,
73 },
74 [RCAR_DU_OUTPUT_LVDS0] = {
75 .possible_crtcs = BIT(0),
76 .encoder_type = DRM_MODE_ENCODER_LVDS,
77 .port = 1,
78 },
79 [RCAR_DU_OUTPUT_LVDS1] = {
80 .possible_crtcs = BIT(2) | BIT(1),
81 .encoder_type = DRM_MODE_ENCODER_LVDS,
82 .port = 2,
83 },
84 },
85 .num_lvds = 2,
86};
87
Laurent Pinchartf1ceb84a2015-07-17 10:44:33 +030088/* M2-W (r8a7791) and M2-N (r8a7793) are identical */
Laurent Pinchart96c02692014-01-21 15:57:26 +010089static const struct rcar_du_device_info rcar_du_r8a7791_info = {
Laurent Pinchart2427b302015-09-07 17:34:26 +030090 .gen = 2,
Laurent Pinchart0c1c8772014-12-09 00:21:12 +020091 .features = RCAR_DU_FEATURE_CRTC_IRQ_CLOCK
92 | RCAR_DU_FEATURE_EXT_CTRL_REGS,
Laurent Pinchart96c02692014-01-21 15:57:26 +010093 .num_crtcs = 2,
94 .routes = {
Laurent Pinchartf1ceb84a2015-07-17 10:44:33 +030095 /* R8A779[13] has one RGB output, one LVDS output and one
Laurent Pinchart96c02692014-01-21 15:57:26 +010096 * (currently unsupported) TCON output.
97 */
98 [RCAR_DU_OUTPUT_DPAD0] = {
Laurent Pinchartf4f0fb72015-04-28 15:26:33 +030099 .possible_crtcs = BIT(1) | BIT(0),
Laurent Pinchart96c02692014-01-21 15:57:26 +0100100 .encoder_type = DRM_MODE_ENCODER_NONE,
101 .port = 0,
102 },
103 [RCAR_DU_OUTPUT_LVDS0] = {
104 .possible_crtcs = BIT(0),
105 .encoder_type = DRM_MODE_ENCODER_LVDS,
106 .port = 1,
107 },
108 },
109 .num_lvds = 1,
110};
111
Sergei Shtylyov73323dd2016-08-04 15:01:02 -0700112static const struct rcar_du_device_info rcar_du_r8a7792_info = {
113 .gen = 2,
114 .features = RCAR_DU_FEATURE_CRTC_IRQ_CLOCK
115 | RCAR_DU_FEATURE_EXT_CTRL_REGS,
116 .num_crtcs = 2,
117 .routes = {
118 /* R8A7792 has two RGB outputs. */
119 [RCAR_DU_OUTPUT_DPAD0] = {
120 .possible_crtcs = BIT(0),
121 .encoder_type = DRM_MODE_ENCODER_NONE,
122 .port = 0,
123 },
124 [RCAR_DU_OUTPUT_DPAD1] = {
125 .possible_crtcs = BIT(1),
126 .encoder_type = DRM_MODE_ENCODER_NONE,
127 .port = 1,
128 },
129 },
130 .num_lvds = 0,
131};
132
Laurent Pinchart090425c2015-07-17 10:44:33 +0300133static const struct rcar_du_device_info rcar_du_r8a7794_info = {
Laurent Pinchart2427b302015-09-07 17:34:26 +0300134 .gen = 2,
Laurent Pinchart090425c2015-07-17 10:44:33 +0300135 .features = RCAR_DU_FEATURE_CRTC_IRQ_CLOCK
136 | RCAR_DU_FEATURE_EXT_CTRL_REGS,
137 .num_crtcs = 2,
138 .routes = {
139 /* R8A7794 has two RGB outputs and one (currently unsupported)
140 * TCON output.
141 */
142 [RCAR_DU_OUTPUT_DPAD0] = {
143 .possible_crtcs = BIT(0),
144 .encoder_type = DRM_MODE_ENCODER_NONE,
145 .port = 0,
146 },
147 [RCAR_DU_OUTPUT_DPAD1] = {
148 .possible_crtcs = BIT(1),
149 .encoder_type = DRM_MODE_ENCODER_NONE,
150 .port = 1,
151 },
152 },
153 .num_lvds = 0,
154};
155
Laurent Pinchart2427b302015-09-07 17:34:26 +0300156static const struct rcar_du_device_info rcar_du_r8a7795_info = {
157 .gen = 3,
158 .features = RCAR_DU_FEATURE_CRTC_IRQ_CLOCK
159 | RCAR_DU_FEATURE_EXT_CTRL_REGS
160 | RCAR_DU_FEATURE_VSP1_SOURCE,
161 .num_crtcs = 4,
162 .routes = {
Koji Matsuoka6bc2e152015-07-28 20:12:43 +0900163 /* R8A7795 has one RGB output, one LVDS output and two
164 * (currently unsupported) HDMI outputs.
Laurent Pinchart2427b302015-09-07 17:34:26 +0300165 */
166 [RCAR_DU_OUTPUT_DPAD0] = {
167 .possible_crtcs = BIT(3),
168 .encoder_type = DRM_MODE_ENCODER_NONE,
169 .port = 0,
170 },
Koji Matsuoka6bc2e152015-07-28 20:12:43 +0900171 [RCAR_DU_OUTPUT_LVDS0] = {
172 .possible_crtcs = BIT(0),
173 .encoder_type = DRM_MODE_ENCODER_LVDS,
174 .port = 3,
175 },
Laurent Pinchart2427b302015-09-07 17:34:26 +0300176 },
Koji Matsuoka6bc2e152015-07-28 20:12:43 +0900177 .num_lvds = 1,
Laurent Pinchart2427b302015-09-07 17:34:26 +0300178};
179
Laurent Pinchart63b50532016-09-06 02:11:43 +0300180static const struct rcar_du_device_info rcar_du_r8a7796_info = {
181 .gen = 3,
182 .features = RCAR_DU_FEATURE_CRTC_IRQ_CLOCK
183 | RCAR_DU_FEATURE_EXT_CTRL_REGS
184 | RCAR_DU_FEATURE_VSP1_SOURCE,
185 .num_crtcs = 3,
186 .routes = {
187 /* R8A7796 has one RGB output, one LVDS output and one
188 * (currently unsupported) HDMI output.
189 */
190 [RCAR_DU_OUTPUT_DPAD0] = {
191 .possible_crtcs = BIT(2),
192 .encoder_type = DRM_MODE_ENCODER_NONE,
193 .port = 0,
194 },
195 [RCAR_DU_OUTPUT_LVDS0] = {
196 .possible_crtcs = BIT(0),
197 .encoder_type = DRM_MODE_ENCODER_LVDS,
198 .port = 2,
199 },
200 },
201 .num_lvds = 1,
202};
203
Laurent Pinchart96c02692014-01-21 15:57:26 +0100204static const struct of_device_id rcar_du_of_table[] = {
205 { .compatible = "renesas,du-r8a7779", .data = &rcar_du_r8a7779_info },
206 { .compatible = "renesas,du-r8a7790", .data = &rcar_du_r8a7790_info },
207 { .compatible = "renesas,du-r8a7791", .data = &rcar_du_r8a7791_info },
Sergei Shtylyov73323dd2016-08-04 15:01:02 -0700208 { .compatible = "renesas,du-r8a7792", .data = &rcar_du_r8a7792_info },
Laurent Pinchartf1ceb84a2015-07-17 10:44:33 +0300209 { .compatible = "renesas,du-r8a7793", .data = &rcar_du_r8a7791_info },
Laurent Pinchart090425c2015-07-17 10:44:33 +0300210 { .compatible = "renesas,du-r8a7794", .data = &rcar_du_r8a7794_info },
Laurent Pinchart2427b302015-09-07 17:34:26 +0300211 { .compatible = "renesas,du-r8a7795", .data = &rcar_du_r8a7795_info },
Laurent Pinchart63b50532016-09-06 02:11:43 +0300212 { .compatible = "renesas,du-r8a7796", .data = &rcar_du_r8a7796_info },
Laurent Pinchart96c02692014-01-21 15:57:26 +0100213 { }
214};
215
216MODULE_DEVICE_TABLE(of, rcar_du_of_table);
217
218/* -----------------------------------------------------------------------------
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200219 * DRM operations
220 */
221
Laurent Pinchart3864c6f2013-03-14 22:45:22 +0100222static void rcar_du_lastclose(struct drm_device *dev)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200223{
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200224 struct rcar_du_device *rcdu = dev->dev_private;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200225
Laurent Pinchart3864c6f2013-03-14 22:45:22 +0100226 drm_fbdev_cma_restore_mode(rcdu->fbdev);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200227}
228
Daniel Vetterd55f7e52017-03-08 15:12:56 +0100229DEFINE_DRM_GEM_CMA_FOPS(rcar_du_fops);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200230
231static struct drm_driver rcar_du_driver = {
Laurent Pinchart6dbe6862015-02-26 21:22:10 +0200232 .driver_features = DRIVER_GEM | DRIVER_MODESET | DRIVER_PRIME
233 | DRIVER_ATOMIC,
Laurent Pinchart3864c6f2013-03-14 22:45:22 +0100234 .lastclose = rcar_du_lastclose,
Daniel Vetter92e0f242016-05-30 19:53:02 +0200235 .gem_free_object_unlocked = drm_gem_cma_free_object,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200236 .gem_vm_ops = &drm_gem_cma_vm_ops,
237 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
238 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
Laurent Pinchartffb40402013-07-10 15:23:35 +0200239 .gem_prime_import = drm_gem_prime_import,
240 .gem_prime_export = drm_gem_prime_export,
241 .gem_prime_get_sg_table = drm_gem_cma_prime_get_sg_table,
242 .gem_prime_import_sg_table = drm_gem_cma_prime_import_sg_table,
243 .gem_prime_vmap = drm_gem_cma_prime_vmap,
244 .gem_prime_vunmap = drm_gem_cma_prime_vunmap,
245 .gem_prime_mmap = drm_gem_cma_prime_mmap,
Laurent Pinchart59e32642013-07-04 20:05:51 +0200246 .dumb_create = rcar_du_dumb_create,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200247 .dumb_map_offset = drm_gem_cma_dumb_map_offset,
Daniel Vetter43387b32013-07-16 09:12:04 +0200248 .dumb_destroy = drm_gem_dumb_destroy,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200249 .fops = &rcar_du_fops,
250 .name = "rcar-du",
251 .desc = "Renesas R-Car Display Unit",
252 .date = "20130110",
253 .major = 1,
254 .minor = 0,
255};
256
257/* -----------------------------------------------------------------------------
258 * Power management
259 */
260
Russell King396d7a22014-07-13 12:18:58 +0100261#ifdef CONFIG_PM_SLEEP
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200262static int rcar_du_pm_suspend(struct device *dev)
263{
264 struct rcar_du_device *rcdu = dev_get_drvdata(dev);
265
266 drm_kms_helper_poll_disable(rcdu->ddev);
267 /* TODO Suspend the CRTC */
268
269 return 0;
270}
271
272static int rcar_du_pm_resume(struct device *dev)
273{
274 struct rcar_du_device *rcdu = dev_get_drvdata(dev);
275
276 /* TODO Resume the CRTC */
277
278 drm_kms_helper_poll_enable(rcdu->ddev);
279 return 0;
280}
281#endif
282
283static const struct dev_pm_ops rcar_du_pm_ops = {
284 SET_SYSTEM_SLEEP_PM_OPS(rcar_du_pm_suspend, rcar_du_pm_resume)
285};
286
287/* -----------------------------------------------------------------------------
288 * Platform driver
289 */
290
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200291static int rcar_du_remove(struct platform_device *pdev)
292{
Daniel Vetter57a24cf2013-12-11 11:34:22 +0100293 struct rcar_du_device *rcdu = platform_get_drvdata(pdev);
Laurent Pinchartc1d4b382015-09-28 18:39:53 +0300294 struct drm_device *ddev = rcdu->ddev;
Daniel Vetter57a24cf2013-12-11 11:34:22 +0100295
Laurent Pinchartc1d4b382015-09-28 18:39:53 +0300296 drm_dev_unregister(ddev);
297
298 if (rcdu->fbdev)
299 drm_fbdev_cma_fini(rcdu->fbdev);
300
301 drm_kms_helper_poll_fini(ddev);
302 drm_mode_config_cleanup(ddev);
Laurent Pinchartc1d4b382015-09-28 18:39:53 +0300303
304 drm_dev_unref(ddev);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200305
306 return 0;
307}
308
Laurent Pinchartc1d4b382015-09-28 18:39:53 +0300309static int rcar_du_probe(struct platform_device *pdev)
310{
Laurent Pinchartc1d4b382015-09-28 18:39:53 +0300311 struct rcar_du_device *rcdu;
Laurent Pinchartc1d4b382015-09-28 18:39:53 +0300312 struct drm_device *ddev;
313 struct resource *mem;
314 int ret;
315
Laurent Pinchart4f7b0d22016-10-19 00:51:35 +0300316 /* Allocate and initialize the R-Car device structure. */
Laurent Pinchartc1d4b382015-09-28 18:39:53 +0300317 rcdu = devm_kzalloc(&pdev->dev, sizeof(*rcdu), GFP_KERNEL);
318 if (rcdu == NULL)
319 return -ENOMEM;
320
321 init_waitqueue_head(&rcdu->commit.wait);
322
323 rcdu->dev = &pdev->dev;
Wolfram Sang9e7d80e2016-10-16 10:01:47 +0200324 rcdu->info = of_device_get_match_data(rcdu->dev);
Laurent Pinchartc1d4b382015-09-28 18:39:53 +0300325
Laurent Pinchart4f7b0d22016-10-19 00:51:35 +0300326 platform_set_drvdata(pdev, rcdu);
327
328 /* I/O resources */
329 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
330 rcdu->mmio = devm_ioremap_resource(&pdev->dev, mem);
331 if (IS_ERR(rcdu->mmio))
332 return PTR_ERR(rcdu->mmio);
333
334 /* DRM/KMS objects */
Laurent Pinchartc1d4b382015-09-28 18:39:53 +0300335 ddev = drm_dev_alloc(&rcar_du_driver, &pdev->dev);
Tom Gundersen0f288602016-09-21 16:59:19 +0200336 if (IS_ERR(ddev))
337 return PTR_ERR(ddev);
Laurent Pinchartc1d4b382015-09-28 18:39:53 +0300338
Laurent Pinchartc1d4b382015-09-28 18:39:53 +0300339 rcdu->ddev = ddev;
340 ddev->dev_private = rcdu;
341
Laurent Pinchartc1d4b382015-09-28 18:39:53 +0300342 ret = rcar_du_modeset_init(rcdu);
343 if (ret < 0) {
Kuninori Morimotoccf49252016-05-25 00:41:18 +0000344 if (ret != -EPROBE_DEFER)
345 dev_err(&pdev->dev,
346 "failed to initialize DRM/KMS (%d)\n", ret);
Laurent Pinchartc1d4b382015-09-28 18:39:53 +0300347 goto error;
348 }
349
350 ddev->irq_enabled = 1;
351
352 /* Register the DRM device with the core and the connectors with
353 * sysfs.
354 */
355 ret = drm_dev_register(ddev, 0);
356 if (ret)
357 goto error;
358
Laurent Pinchartc1d4b382015-09-28 18:39:53 +0300359 DRM_INFO("Device %s probed\n", dev_name(&pdev->dev));
360
361 return 0;
362
363error:
364 rcar_du_remove(pdev);
365
366 return ret;
367}
368
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200369static struct platform_driver rcar_du_platform_driver = {
370 .probe = rcar_du_probe,
371 .remove = rcar_du_remove,
372 .driver = {
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200373 .name = "rcar-du",
374 .pm = &rcar_du_pm_ops,
Laurent Pinchart96c02692014-01-21 15:57:26 +0100375 .of_match_table = rcar_du_of_table,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200376 },
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200377};
378
379module_platform_driver(rcar_du_platform_driver);
380
381MODULE_AUTHOR("Laurent Pinchart <laurent.pinchart@ideasonboard.com>");
382MODULE_DESCRIPTION("Renesas R-Car Display Unit DRM Driver");
383MODULE_LICENSE("GPL");