2 * rcar_du_drv.c -- R-Car Display Unit DRM driver
4 * Copyright (C) 2013-2014 Renesas Electronics Corporation
6 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
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.
14 #include <linux/clk.h>
17 #include <linux/module.h>
18 #include <linux/of_device.h>
19 #include <linux/platform_device.h>
21 #include <linux/slab.h>
24 #include <drm/drm_crtc_helper.h>
25 #include <drm/drm_fb_cma_helper.h>
26 #include <drm/drm_gem_cma_helper.h>
28 #include "rcar_du_crtc.h"
29 #include "rcar_du_drv.h"
30 #include "rcar_du_kms.h"
31 #include "rcar_du_regs.h"
33 /* -----------------------------------------------------------------------------
37 static const struct rcar_du_device_info rcar_du_r8a7779_info
= {
41 /* R8A7779 has two RGB outputs and one (currently unsupported)
44 [RCAR_DU_OUTPUT_DPAD0
] = {
45 .possible_crtcs
= BIT(0),
46 .encoder_type
= DRM_MODE_ENCODER_NONE
,
49 [RCAR_DU_OUTPUT_DPAD1
] = {
50 .possible_crtcs
= BIT(1) | BIT(0),
51 .encoder_type
= DRM_MODE_ENCODER_NONE
,
58 static const struct rcar_du_device_info rcar_du_r8a7790_info
= {
59 .features
= RCAR_DU_FEATURE_CRTC_IRQ_CLOCK
60 | RCAR_DU_FEATURE_EXT_CTRL_REGS
,
61 .quirks
= RCAR_DU_QUIRK_ALIGN_128B
| RCAR_DU_QUIRK_LVDS_LANES
,
64 /* R8A7790 has one RGB output, two LVDS outputs and one
65 * (currently unsupported) TCON output.
67 [RCAR_DU_OUTPUT_DPAD0
] = {
68 .possible_crtcs
= BIT(2) | BIT(1) | BIT(0),
69 .encoder_type
= DRM_MODE_ENCODER_NONE
,
72 [RCAR_DU_OUTPUT_LVDS0
] = {
73 .possible_crtcs
= BIT(0),
74 .encoder_type
= DRM_MODE_ENCODER_LVDS
,
77 [RCAR_DU_OUTPUT_LVDS1
] = {
78 .possible_crtcs
= BIT(2) | BIT(1),
79 .encoder_type
= DRM_MODE_ENCODER_LVDS
,
86 static const struct rcar_du_device_info rcar_du_r8a7791_info
= {
87 .features
= RCAR_DU_FEATURE_CRTC_IRQ_CLOCK
88 | RCAR_DU_FEATURE_EXT_CTRL_REGS
,
91 /* R8A7791 has one RGB output, one LVDS output and one
92 * (currently unsupported) TCON output.
94 [RCAR_DU_OUTPUT_DPAD0
] = {
95 .possible_crtcs
= BIT(1),
96 .encoder_type
= DRM_MODE_ENCODER_NONE
,
99 [RCAR_DU_OUTPUT_LVDS0
] = {
100 .possible_crtcs
= BIT(0),
101 .encoder_type
= DRM_MODE_ENCODER_LVDS
,
108 static const struct platform_device_id rcar_du_id_table
[] = {
109 { "rcar-du-r8a7779", (kernel_ulong_t
)&rcar_du_r8a7779_info
},
110 { "rcar-du-r8a7790", (kernel_ulong_t
)&rcar_du_r8a7790_info
},
111 { "rcar-du-r8a7791", (kernel_ulong_t
)&rcar_du_r8a7791_info
},
115 MODULE_DEVICE_TABLE(platform
, rcar_du_id_table
);
117 static const struct of_device_id rcar_du_of_table
[] = {
118 { .compatible
= "renesas,du-r8a7779", .data
= &rcar_du_r8a7779_info
},
119 { .compatible
= "renesas,du-r8a7790", .data
= &rcar_du_r8a7790_info
},
120 { .compatible
= "renesas,du-r8a7791", .data
= &rcar_du_r8a7791_info
},
124 MODULE_DEVICE_TABLE(of
, rcar_du_of_table
);
126 /* -----------------------------------------------------------------------------
130 static int rcar_du_unload(struct drm_device
*dev
)
132 struct rcar_du_device
*rcdu
= dev
->dev_private
;
135 drm_fbdev_cma_fini(rcdu
->fbdev
);
137 drm_kms_helper_poll_fini(dev
);
138 drm_mode_config_cleanup(dev
);
139 drm_vblank_cleanup(dev
);
141 dev
->irq_enabled
= 0;
142 dev
->dev_private
= NULL
;
147 static int rcar_du_load(struct drm_device
*dev
, unsigned long flags
)
149 struct platform_device
*pdev
= dev
->platformdev
;
150 struct device_node
*np
= pdev
->dev
.of_node
;
151 struct rcar_du_device
*rcdu
;
152 struct resource
*mem
;
156 dev_err(dev
->dev
, "no platform data\n");
160 rcdu
= devm_kzalloc(&pdev
->dev
, sizeof(*rcdu
), GFP_KERNEL
);
162 dev_err(dev
->dev
, "failed to allocate private data\n");
166 rcdu
->dev
= &pdev
->dev
;
167 rcdu
->info
= np
? of_match_device(rcar_du_of_table
, rcdu
->dev
)->data
168 : (void *)platform_get_device_id(pdev
)->driver_data
;
170 dev
->dev_private
= rcdu
;
173 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
174 rcdu
->mmio
= devm_ioremap_resource(&pdev
->dev
, mem
);
175 if (IS_ERR(rcdu
->mmio
))
176 return PTR_ERR(rcdu
->mmio
);
178 /* DRM/KMS objects */
179 ret
= rcar_du_modeset_init(rcdu
);
181 dev_err(&pdev
->dev
, "failed to initialize DRM/KMS\n");
185 /* vblank handling */
186 ret
= drm_vblank_init(dev
, (1 << rcdu
->num_crtcs
) - 1);
188 dev_err(&pdev
->dev
, "failed to initialize vblank\n");
192 dev
->irq_enabled
= 1;
194 platform_set_drvdata(pdev
, rcdu
);
203 static void rcar_du_preclose(struct drm_device
*dev
, struct drm_file
*file
)
205 struct rcar_du_device
*rcdu
= dev
->dev_private
;
208 for (i
= 0; i
< rcdu
->num_crtcs
; ++i
)
209 rcar_du_crtc_cancel_page_flip(&rcdu
->crtcs
[i
], file
);
212 static void rcar_du_lastclose(struct drm_device
*dev
)
214 struct rcar_du_device
*rcdu
= dev
->dev_private
;
216 drm_fbdev_cma_restore_mode(rcdu
->fbdev
);
219 static int rcar_du_enable_vblank(struct drm_device
*dev
, int crtc
)
221 struct rcar_du_device
*rcdu
= dev
->dev_private
;
223 rcar_du_crtc_enable_vblank(&rcdu
->crtcs
[crtc
], true);
228 static void rcar_du_disable_vblank(struct drm_device
*dev
, int crtc
)
230 struct rcar_du_device
*rcdu
= dev
->dev_private
;
232 rcar_du_crtc_enable_vblank(&rcdu
->crtcs
[crtc
], false);
235 static const struct file_operations rcar_du_fops
= {
236 .owner
= THIS_MODULE
,
238 .release
= drm_release
,
239 .unlocked_ioctl
= drm_ioctl
,
241 .compat_ioctl
= drm_compat_ioctl
,
246 .mmap
= drm_gem_cma_mmap
,
249 static struct drm_driver rcar_du_driver
= {
250 .driver_features
= DRIVER_GEM
| DRIVER_MODESET
| DRIVER_PRIME
,
251 .load
= rcar_du_load
,
252 .unload
= rcar_du_unload
,
253 .preclose
= rcar_du_preclose
,
254 .lastclose
= rcar_du_lastclose
,
255 .set_busid
= drm_platform_set_busid
,
256 .get_vblank_counter
= drm_vblank_count
,
257 .enable_vblank
= rcar_du_enable_vblank
,
258 .disable_vblank
= rcar_du_disable_vblank
,
259 .gem_free_object
= drm_gem_cma_free_object
,
260 .gem_vm_ops
= &drm_gem_cma_vm_ops
,
261 .prime_handle_to_fd
= drm_gem_prime_handle_to_fd
,
262 .prime_fd_to_handle
= drm_gem_prime_fd_to_handle
,
263 .gem_prime_import
= drm_gem_prime_import
,
264 .gem_prime_export
= drm_gem_prime_export
,
265 .gem_prime_get_sg_table
= drm_gem_cma_prime_get_sg_table
,
266 .gem_prime_import_sg_table
= drm_gem_cma_prime_import_sg_table
,
267 .gem_prime_vmap
= drm_gem_cma_prime_vmap
,
268 .gem_prime_vunmap
= drm_gem_cma_prime_vunmap
,
269 .gem_prime_mmap
= drm_gem_cma_prime_mmap
,
270 .dumb_create
= rcar_du_dumb_create
,
271 .dumb_map_offset
= drm_gem_cma_dumb_map_offset
,
272 .dumb_destroy
= drm_gem_dumb_destroy
,
273 .fops
= &rcar_du_fops
,
275 .desc
= "Renesas R-Car Display Unit",
281 /* -----------------------------------------------------------------------------
285 #ifdef CONFIG_PM_SLEEP
286 static int rcar_du_pm_suspend(struct device
*dev
)
288 struct rcar_du_device
*rcdu
= dev_get_drvdata(dev
);
290 drm_kms_helper_poll_disable(rcdu
->ddev
);
291 /* TODO Suspend the CRTC */
296 static int rcar_du_pm_resume(struct device
*dev
)
298 struct rcar_du_device
*rcdu
= dev_get_drvdata(dev
);
300 /* TODO Resume the CRTC */
302 drm_kms_helper_poll_enable(rcdu
->ddev
);
307 static const struct dev_pm_ops rcar_du_pm_ops
= {
308 SET_SYSTEM_SLEEP_PM_OPS(rcar_du_pm_suspend
, rcar_du_pm_resume
)
311 /* -----------------------------------------------------------------------------
315 static int rcar_du_probe(struct platform_device
*pdev
)
317 return drm_platform_init(&rcar_du_driver
, pdev
);
320 static int rcar_du_remove(struct platform_device
*pdev
)
322 struct rcar_du_device
*rcdu
= platform_get_drvdata(pdev
);
324 drm_put_dev(rcdu
->ddev
);
329 static struct platform_driver rcar_du_platform_driver
= {
330 .probe
= rcar_du_probe
,
331 .remove
= rcar_du_remove
,
334 .pm
= &rcar_du_pm_ops
,
335 .of_match_table
= rcar_du_of_table
,
337 .id_table
= rcar_du_id_table
,
340 module_platform_driver(rcar_du_platform_driver
);
342 MODULE_AUTHOR("Laurent Pinchart <laurent.pinchart@ideasonboard.com>");
343 MODULE_DESCRIPTION("Renesas R-Car Display Unit DRM Driver");
344 MODULE_LICENSE("GPL");