blob: a8dfca5575c8f4f52b837705188006729efbbbb5 [file] [log] [blame]
Laurent Pinchart4bf8e192013-06-19 13:54:11 +02001/*
2 * rcar_du_drv.c -- R-Car Display Unit DRM driver
3 *
Laurent Pinchart36d50462014-02-06 18:13:52 +01004 * Copyright (C) 2013-2014 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
29#include "rcar_du_crtc.h"
30#include "rcar_du_drv.h"
31#include "rcar_du_kms.h"
32#include "rcar_du_regs.h"
33
34/* -----------------------------------------------------------------------------
Laurent Pinchart96c02692014-01-21 15:57:26 +010035 * Device Information
36 */
37
38static const struct rcar_du_device_info rcar_du_r8a7779_info = {
39 .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 Pinchart0c1c8772014-12-09 00:21:12 +020060 .features = RCAR_DU_FEATURE_CRTC_IRQ_CLOCK
61 | RCAR_DU_FEATURE_EXT_CTRL_REGS,
Laurent Pinchart96c02692014-01-21 15:57:26 +010062 .quirks = RCAR_DU_QUIRK_ALIGN_128B | RCAR_DU_QUIRK_LVDS_LANES,
63 .num_crtcs = 3,
64 .routes = {
65 /* R8A7790 has one RGB output, two LVDS outputs and one
66 * (currently unsupported) TCON output.
67 */
68 [RCAR_DU_OUTPUT_DPAD0] = {
69 .possible_crtcs = BIT(2) | BIT(1) | BIT(0),
70 .encoder_type = DRM_MODE_ENCODER_NONE,
71 .port = 0,
72 },
73 [RCAR_DU_OUTPUT_LVDS0] = {
74 .possible_crtcs = BIT(0),
75 .encoder_type = DRM_MODE_ENCODER_LVDS,
76 .port = 1,
77 },
78 [RCAR_DU_OUTPUT_LVDS1] = {
79 .possible_crtcs = BIT(2) | BIT(1),
80 .encoder_type = DRM_MODE_ENCODER_LVDS,
81 .port = 2,
82 },
83 },
84 .num_lvds = 2,
85};
86
87static const struct rcar_du_device_info rcar_du_r8a7791_info = {
Laurent Pinchart0c1c8772014-12-09 00:21:12 +020088 .features = RCAR_DU_FEATURE_CRTC_IRQ_CLOCK
89 | RCAR_DU_FEATURE_EXT_CTRL_REGS,
Laurent Pinchart96c02692014-01-21 15:57:26 +010090 .num_crtcs = 2,
91 .routes = {
92 /* R8A7791 has one RGB output, one LVDS output and one
93 * (currently unsupported) TCON output.
94 */
95 [RCAR_DU_OUTPUT_DPAD0] = {
96 .possible_crtcs = BIT(1),
97 .encoder_type = DRM_MODE_ENCODER_NONE,
98 .port = 0,
99 },
100 [RCAR_DU_OUTPUT_LVDS0] = {
101 .possible_crtcs = BIT(0),
102 .encoder_type = DRM_MODE_ENCODER_LVDS,
103 .port = 1,
104 },
105 },
106 .num_lvds = 1,
107};
108
109static const struct platform_device_id rcar_du_id_table[] = {
110 { "rcar-du-r8a7779", (kernel_ulong_t)&rcar_du_r8a7779_info },
Laurent Pinchart96c02692014-01-21 15:57:26 +0100111 { }
112};
113
114MODULE_DEVICE_TABLE(platform, rcar_du_id_table);
115
116static const struct of_device_id rcar_du_of_table[] = {
117 { .compatible = "renesas,du-r8a7779", .data = &rcar_du_r8a7779_info },
118 { .compatible = "renesas,du-r8a7790", .data = &rcar_du_r8a7790_info },
119 { .compatible = "renesas,du-r8a7791", .data = &rcar_du_r8a7791_info },
120 { }
121};
122
123MODULE_DEVICE_TABLE(of, rcar_du_of_table);
124
125/* -----------------------------------------------------------------------------
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200126 * DRM operations
127 */
128
129static int rcar_du_unload(struct drm_device *dev)
130{
Laurent Pinchart3864c6f2013-03-14 22:45:22 +0100131 struct rcar_du_device *rcdu = dev->dev_private;
132
133 if (rcdu->fbdev)
134 drm_fbdev_cma_fini(rcdu->fbdev);
135
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200136 drm_kms_helper_poll_fini(dev);
137 drm_mode_config_cleanup(dev);
138 drm_vblank_cleanup(dev);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200139
Laurent Pinchartf66ee302013-06-14 14:15:01 +0200140 dev->irq_enabled = 0;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200141 dev->dev_private = NULL;
142
143 return 0;
144}
145
146static int rcar_du_load(struct drm_device *dev, unsigned long flags)
147{
148 struct platform_device *pdev = dev->platformdev;
Laurent Pinchart96c02692014-01-21 15:57:26 +0100149 struct device_node *np = pdev->dev.of_node;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200150 struct rcar_du_device *rcdu;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200151 struct resource *mem;
152 int ret;
153
Laurent Pinchart2378ad12014-09-17 02:07:52 +0300154 if (np == NULL) {
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200155 dev_err(dev->dev, "no platform data\n");
156 return -ENODEV;
157 }
158
159 rcdu = devm_kzalloc(&pdev->dev, sizeof(*rcdu), GFP_KERNEL);
160 if (rcdu == NULL) {
161 dev_err(dev->dev, "failed to allocate private data\n");
162 return -ENOMEM;
163 }
164
Laurent Pinchart8d3f9b22015-02-23 01:02:15 +0200165 init_waitqueue_head(&rcdu->commit.wait);
166
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200167 rcdu->dev = &pdev->dev;
Laurent Pinchart96c02692014-01-21 15:57:26 +0100168 rcdu->info = np ? of_match_device(rcar_du_of_table, rcdu->dev)->data
169 : (void *)platform_get_device_id(pdev)->driver_data;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200170 rcdu->ddev = dev;
171 dev->dev_private = rcdu;
172
Laurent Pinchartf66ee302013-06-14 14:15:01 +0200173 /* I/O resources */
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200174 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Laurent Pinchartd5b6dcc2013-06-17 02:29:07 +0200175 rcdu->mmio = devm_ioremap_resource(&pdev->dev, mem);
176 if (IS_ERR(rcdu->mmio))
177 return PTR_ERR(rcdu->mmio);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200178
Laurent Pinchart0cd90a52015-02-18 13:14:46 +0200179 /* Initialize vertical blanking interrupts handling. Start with vblank
180 * disabled for all CRTCs.
181 */
182 ret = drm_vblank_init(dev, (1 << rcdu->info->num_crtcs) - 1);
183 if (ret < 0) {
184 dev_err(&pdev->dev, "failed to initialize vblank\n");
185 goto done;
186 }
187
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200188 /* DRM/KMS objects */
189 ret = rcar_du_modeset_init(rcdu);
190 if (ret < 0) {
Laurent Pinchart6e0c6e12015-05-14 01:08:34 +0300191 dev_err(&pdev->dev, "failed to initialize DRM/KMS (%d)\n", ret);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200192 goto done;
193 }
194
Laurent Pinchartf66ee302013-06-14 14:15:01 +0200195 dev->irq_enabled = 1;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200196
197 platform_set_drvdata(pdev, rcdu);
198
199done:
200 if (ret)
201 rcar_du_unload(dev);
202
203 return ret;
204}
205
206static void rcar_du_preclose(struct drm_device *dev, struct drm_file *file)
207{
208 struct rcar_du_device *rcdu = dev->dev_private;
209 unsigned int i;
210
Laurent Pinchart990d07a2013-06-16 22:22:23 +0200211 for (i = 0; i < rcdu->num_crtcs; ++i)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200212 rcar_du_crtc_cancel_page_flip(&rcdu->crtcs[i], file);
213}
214
Laurent Pinchart3864c6f2013-03-14 22:45:22 +0100215static void rcar_du_lastclose(struct drm_device *dev)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200216{
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200217 struct rcar_du_device *rcdu = dev->dev_private;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200218
Laurent Pinchart3864c6f2013-03-14 22:45:22 +0100219 drm_fbdev_cma_restore_mode(rcdu->fbdev);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200220}
221
Thierry Reding88e72712015-09-24 18:35:31 +0200222static int rcar_du_enable_vblank(struct drm_device *dev, unsigned int pipe)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200223{
224 struct rcar_du_device *rcdu = dev->dev_private;
225
Thierry Reding88e72712015-09-24 18:35:31 +0200226 rcar_du_crtc_enable_vblank(&rcdu->crtcs[pipe], true);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200227
228 return 0;
229}
230
Thierry Reding88e72712015-09-24 18:35:31 +0200231static void rcar_du_disable_vblank(struct drm_device *dev, unsigned int pipe)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200232{
233 struct rcar_du_device *rcdu = dev->dev_private;
234
Thierry Reding88e72712015-09-24 18:35:31 +0200235 rcar_du_crtc_enable_vblank(&rcdu->crtcs[pipe], false);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200236}
237
238static const struct file_operations rcar_du_fops = {
239 .owner = THIS_MODULE,
240 .open = drm_open,
241 .release = drm_release,
242 .unlocked_ioctl = drm_ioctl,
243#ifdef CONFIG_COMPAT
244 .compat_ioctl = drm_compat_ioctl,
245#endif
246 .poll = drm_poll,
247 .read = drm_read,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200248 .llseek = no_llseek,
249 .mmap = drm_gem_cma_mmap,
250};
251
252static struct drm_driver rcar_du_driver = {
Laurent Pinchart6dbe6862015-02-26 21:22:10 +0200253 .driver_features = DRIVER_GEM | DRIVER_MODESET | DRIVER_PRIME
254 | DRIVER_ATOMIC,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200255 .load = rcar_du_load,
256 .unload = rcar_du_unload,
257 .preclose = rcar_du_preclose,
Laurent Pinchart3864c6f2013-03-14 22:45:22 +0100258 .lastclose = rcar_du_lastclose,
David Herrmann915b4d12014-08-29 12:12:43 +0200259 .set_busid = drm_platform_set_busid,
Ville Syrjäläb44f8402015-09-30 16:46:48 +0300260 .get_vblank_counter = drm_vblank_no_hw_counter,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200261 .enable_vblank = rcar_du_enable_vblank,
262 .disable_vblank = rcar_du_disable_vblank,
263 .gem_free_object = drm_gem_cma_free_object,
264 .gem_vm_ops = &drm_gem_cma_vm_ops,
265 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
266 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
Laurent Pinchartffb40402013-07-10 15:23:35 +0200267 .gem_prime_import = drm_gem_prime_import,
268 .gem_prime_export = drm_gem_prime_export,
269 .gem_prime_get_sg_table = drm_gem_cma_prime_get_sg_table,
270 .gem_prime_import_sg_table = drm_gem_cma_prime_import_sg_table,
271 .gem_prime_vmap = drm_gem_cma_prime_vmap,
272 .gem_prime_vunmap = drm_gem_cma_prime_vunmap,
273 .gem_prime_mmap = drm_gem_cma_prime_mmap,
Laurent Pinchart59e32642013-07-04 20:05:51 +0200274 .dumb_create = rcar_du_dumb_create,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200275 .dumb_map_offset = drm_gem_cma_dumb_map_offset,
Daniel Vetter43387b32013-07-16 09:12:04 +0200276 .dumb_destroy = drm_gem_dumb_destroy,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200277 .fops = &rcar_du_fops,
278 .name = "rcar-du",
279 .desc = "Renesas R-Car Display Unit",
280 .date = "20130110",
281 .major = 1,
282 .minor = 0,
283};
284
285/* -----------------------------------------------------------------------------
286 * Power management
287 */
288
Russell King396d7a22014-07-13 12:18:58 +0100289#ifdef CONFIG_PM_SLEEP
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200290static int rcar_du_pm_suspend(struct device *dev)
291{
292 struct rcar_du_device *rcdu = dev_get_drvdata(dev);
293
294 drm_kms_helper_poll_disable(rcdu->ddev);
295 /* TODO Suspend the CRTC */
296
297 return 0;
298}
299
300static int rcar_du_pm_resume(struct device *dev)
301{
302 struct rcar_du_device *rcdu = dev_get_drvdata(dev);
303
304 /* TODO Resume the CRTC */
305
306 drm_kms_helper_poll_enable(rcdu->ddev);
307 return 0;
308}
309#endif
310
311static const struct dev_pm_ops rcar_du_pm_ops = {
312 SET_SYSTEM_SLEEP_PM_OPS(rcar_du_pm_suspend, rcar_du_pm_resume)
313};
314
315/* -----------------------------------------------------------------------------
316 * Platform driver
317 */
318
319static int rcar_du_probe(struct platform_device *pdev)
320{
321 return drm_platform_init(&rcar_du_driver, pdev);
322}
323
324static int rcar_du_remove(struct platform_device *pdev)
325{
Daniel Vetter57a24cf2013-12-11 11:34:22 +0100326 struct rcar_du_device *rcdu = platform_get_drvdata(pdev);
327
328 drm_put_dev(rcdu->ddev);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200329
330 return 0;
331}
332
333static struct platform_driver rcar_du_platform_driver = {
334 .probe = rcar_du_probe,
335 .remove = rcar_du_remove,
336 .driver = {
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200337 .name = "rcar-du",
338 .pm = &rcar_du_pm_ops,
Laurent Pinchart96c02692014-01-21 15:57:26 +0100339 .of_match_table = rcar_du_of_table,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200340 },
Laurent Pinchart481d3422013-06-14 13:38:33 +0200341 .id_table = rcar_du_id_table,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200342};
343
344module_platform_driver(rcar_du_platform_driver);
345
346MODULE_AUTHOR("Laurent Pinchart <laurent.pinchart@ideasonboard.com>");
347MODULE_DESCRIPTION("Renesas R-Car Display Unit DRM Driver");
348MODULE_LICENSE("GPL");