blob: e6c62c079146641bab00639a9860c4271d16969c [file] [log] [blame]
Maxime Ripard9026e0d2015-10-29 09:36:23 +01001/*
2 * Copyright (C) 2015 Free Electrons
3 * Copyright (C) 2015 NextThing Co
4 *
5 * Maxime Ripard <maxime.ripard@free-electrons.com>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 */
12
13#include <linux/component.h>
Maxime Ripard8b11aaf2017-10-17 11:06:08 +020014#include <linux/kfifo.h>
Maxime Ripard9026e0d2015-10-29 09:36:23 +010015#include <linux/of_graph.h>
Maxime Ripard596afb62017-02-09 17:39:18 +010016#include <linux/of_reserved_mem.h>
Maxime Ripard9026e0d2015-10-29 09:36:23 +010017
18#include <drm/drmP.h>
19#include <drm/drm_crtc_helper.h>
20#include <drm/drm_fb_cma_helper.h>
21#include <drm/drm_gem_cma_helper.h>
Daniel Vetter44adece2016-08-10 18:52:34 +020022#include <drm/drm_fb_helper.h>
Russell King97ac0e42016-10-19 11:28:27 +010023#include <drm/drm_of.h>
Maxime Ripard9026e0d2015-10-29 09:36:23 +010024
Maxime Ripard9026e0d2015-10-29 09:36:23 +010025#include "sun4i_drv.h"
Maxime Riparddd0421f2018-01-22 10:25:22 +010026#include "sun4i_frontend.h"
Maxime Ripard9026e0d2015-10-29 09:36:23 +010027#include "sun4i_framebuffer.h"
Chen-Yu Tsaib3f266e2017-02-23 16:05:36 +080028#include "sun4i_tcon.h"
Jernej Skrabecef0cf642018-06-25 14:02:48 +020029#include "sun8i_tcon_top.h"
Maxime Ripard9026e0d2015-10-29 09:36:23 +010030
Daniel Vetterd55f7e52017-03-08 15:12:56 +010031DEFINE_DRM_GEM_CMA_FOPS(sun4i_drv_fops);
Maxime Ripard9026e0d2015-10-29 09:36:23 +010032
33static struct drm_driver sun4i_drv_driver = {
34 .driver_features = DRIVER_GEM | DRIVER_MODESET | DRIVER_PRIME | DRIVER_ATOMIC,
35
36 /* Generic Operations */
Noralf Trønnes22efc852017-11-15 15:19:53 +010037 .lastclose = drm_fb_helper_lastclose,
Maxime Ripard9026e0d2015-10-29 09:36:23 +010038 .fops = &sun4i_drv_fops,
39 .name = "sun4i-drm",
40 .desc = "Allwinner sun4i Display Engine",
41 .date = "20150629",
42 .major = 1,
43 .minor = 0,
44
45 /* GEM Operations */
46 .dumb_create = drm_gem_cma_dumb_create,
Daniel Vetterae2c6222016-05-30 19:53:15 +020047 .gem_free_object_unlocked = drm_gem_cma_free_object,
Maxime Ripard9026e0d2015-10-29 09:36:23 +010048 .gem_vm_ops = &drm_gem_cma_vm_ops,
49
50 /* PRIME Operations */
51 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
52 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
53 .gem_prime_import = drm_gem_prime_import,
54 .gem_prime_export = drm_gem_prime_export,
55 .gem_prime_get_sg_table = drm_gem_cma_prime_get_sg_table,
56 .gem_prime_import_sg_table = drm_gem_cma_prime_import_sg_table,
57 .gem_prime_vmap = drm_gem_cma_prime_vmap,
58 .gem_prime_vunmap = drm_gem_cma_prime_vunmap,
59 .gem_prime_mmap = drm_gem_cma_prime_mmap,
60
61 /* Frame Buffer Operations */
Maxime Ripard9026e0d2015-10-29 09:36:23 +010062};
63
Maxime Ripard3d6bd902016-05-11 16:52:50 +020064static void sun4i_remove_framebuffers(void)
65{
66 struct apertures_struct *ap;
67
68 ap = alloc_apertures(1);
69 if (!ap)
70 return;
71
72 /* The framebuffer can be located anywhere in RAM */
73 ap->ranges[0].base = 0;
74 ap->ranges[0].size = ~0;
75
Daniel Vetter44adece2016-08-10 18:52:34 +020076 drm_fb_helper_remove_conflicting_framebuffers(ap, "sun4i-drm-fb", false);
Maxime Ripard3d6bd902016-05-11 16:52:50 +020077 kfree(ap);
78}
79
Maxime Ripard9026e0d2015-10-29 09:36:23 +010080static int sun4i_drv_bind(struct device *dev)
81{
82 struct drm_device *drm;
83 struct sun4i_drv *drv;
84 int ret;
85
86 drm = drm_dev_alloc(&sun4i_drv_driver, dev);
Tom Gundersen0f288602016-09-21 16:59:19 +020087 if (IS_ERR(drm))
88 return PTR_ERR(drm);
Maxime Ripard9026e0d2015-10-29 09:36:23 +010089
Maxime Ripard9026e0d2015-10-29 09:36:23 +010090 drv = devm_kzalloc(dev, sizeof(*drv), GFP_KERNEL);
91 if (!drv) {
92 ret = -ENOMEM;
93 goto free_drm;
94 }
95 drm->dev_private = drv;
Maxime Riparddd0421f2018-01-22 10:25:22 +010096 INIT_LIST_HEAD(&drv->frontend_list);
Icenowy Zheng87969332017-05-17 22:47:17 +080097 INIT_LIST_HEAD(&drv->engine_list);
Chen-Yu Tsai80a58242017-04-21 16:38:50 +080098 INIT_LIST_HEAD(&drv->tcon_list);
Maxime Ripard9026e0d2015-10-29 09:36:23 +010099
Maxime Ripard596afb62017-02-09 17:39:18 +0100100 ret = of_reserved_mem_device_init(dev);
101 if (ret && ret != -ENODEV) {
102 dev_err(drm->dev, "Couldn't claim our memory region\n");
103 goto free_drm;
104 }
105
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100106 drm_mode_config_init(drm);
107
108 ret = component_bind_all(drm->dev, drm);
109 if (ret) {
110 dev_err(drm->dev, "Couldn't bind all pipelines components\n");
Chen-Yu Tsai9d56def2017-02-17 11:13:25 +0800111 goto cleanup_mode_config;
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100112 }
113
Chen-Yu Tsai070badf2017-09-08 15:50:15 +0800114 /* drm_vblank_init calls kcalloc, which can fail */
115 ret = drm_vblank_init(drm, drm->mode_config.num_crtc);
116 if (ret)
Christophe JAILLET9ca86142018-03-12 00:19:09 +0100117 goto cleanup_mode_config;
Chen-Yu Tsai070badf2017-09-08 15:50:15 +0800118
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100119 drm->irq_enabled = true;
120
Maxime Ripard3d6bd902016-05-11 16:52:50 +0200121 /* Remove early framebuffers (ie. simplefb) */
122 sun4i_remove_framebuffers();
123
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100124 /* Create our framebuffer */
Noralf Trønnes22efc852017-11-15 15:19:53 +0100125 ret = sun4i_framebuffer_init(drm);
126 if (ret) {
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100127 dev_err(drm->dev, "Couldn't create our framebuffer\n");
Chen-Yu Tsai9d56def2017-02-17 11:13:25 +0800128 goto cleanup_mode_config;
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100129 }
130
131 /* Enable connectors polling */
132 drm_kms_helper_poll_init(drm);
133
134 ret = drm_dev_register(drm, 0);
135 if (ret)
Chen-Yu Tsai9d56def2017-02-17 11:13:25 +0800136 goto finish_poll;
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100137
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100138 return 0;
139
Chen-Yu Tsai9d56def2017-02-17 11:13:25 +0800140finish_poll:
141 drm_kms_helper_poll_fini(drm);
142 sun4i_framebuffer_free(drm);
143cleanup_mode_config:
144 drm_mode_config_cleanup(drm);
Maxime Ripard596afb62017-02-09 17:39:18 +0100145 of_reserved_mem_device_release(dev);
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100146free_drm:
147 drm_dev_unref(drm);
148 return ret;
149}
150
151static void sun4i_drv_unbind(struct device *dev)
152{
153 struct drm_device *drm = dev_get_drvdata(dev);
154
155 drm_dev_unregister(drm);
156 drm_kms_helper_poll_fini(drm);
157 sun4i_framebuffer_free(drm);
Chen-Yu Tsai92caf9b2017-02-17 11:13:24 +0800158 drm_mode_config_cleanup(drm);
Maxime Ripard596afb62017-02-09 17:39:18 +0100159 of_reserved_mem_device_release(dev);
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100160 drm_dev_unref(drm);
161}
162
163static const struct component_master_ops sun4i_drv_master_ops = {
164 .bind = sun4i_drv_bind,
165 .unbind = sun4i_drv_unbind,
166};
167
Maxime Ripard49baeb02017-05-27 18:09:32 +0200168static bool sun4i_drv_node_is_connector(struct device_node *node)
169{
170 return of_device_is_compatible(node, "hdmi-connector");
171}
172
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100173static bool sun4i_drv_node_is_frontend(struct device_node *node)
174{
Chen-Yu Tsai9a8187c2017-10-17 20:18:01 +0800175 return of_device_is_compatible(node, "allwinner,sun4i-a10-display-frontend") ||
176 of_device_is_compatible(node, "allwinner,sun5i-a13-display-frontend") ||
Chen-Yu Tsai49c440e2016-10-20 11:43:41 +0800177 of_device_is_compatible(node, "allwinner,sun6i-a31-display-frontend") ||
Jonathan Liuaaddb6d2017-10-17 20:18:02 +0800178 of_device_is_compatible(node, "allwinner,sun7i-a20-display-frontend") ||
Chen-Yu Tsai33478952018-03-15 19:41:33 +0800179 of_device_is_compatible(node, "allwinner,sun8i-a33-display-frontend") ||
180 of_device_is_compatible(node, "allwinner,sun9i-a80-display-frontend");
181}
182
183static bool sun4i_drv_node_is_deu(struct device_node *node)
184{
185 return of_device_is_compatible(node, "allwinner,sun9i-a80-deu");
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100186}
187
Maxime Riparddd0421f2018-01-22 10:25:22 +0100188static bool sun4i_drv_node_is_supported_frontend(struct device_node *node)
189{
190 if (IS_ENABLED(CONFIG_DRM_SUN4I_BACKEND))
191 return !!of_match_node(sun4i_frontend_of_table, node);
192
193 return false;
194}
195
Maxime Ripard29e57fa2015-10-29 09:37:32 +0100196static bool sun4i_drv_node_is_tcon(struct device_node *node)
197{
Chen-Yu Tsaiff71c2c2017-11-27 16:46:32 +0800198 return !!of_match_node(sun4i_tcon_of_table, node);
Maxime Ripard29e57fa2015-10-29 09:37:32 +0100199}
200
Jernej Skrabecef0cf642018-06-25 14:02:48 +0200201static bool sun4i_drv_node_is_tcon_top(struct device_node *node)
202{
203 return !!of_match_node(sun8i_tcon_top_of_table, node);
204}
205
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100206static int compare_of(struct device *dev, void *data)
207{
Rob Herring4bf99142017-07-18 16:43:04 -0500208 DRM_DEBUG_DRIVER("Comparing of node %pOF with %pOF\n",
209 dev->of_node,
210 data);
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100211
212 return dev->of_node == data;
213}
214
Chen-Yu Tsaida82b872017-09-08 15:50:10 +0800215/*
216 * The encoder drivers use drm_of_find_possible_crtcs to get upstream
217 * crtcs from the device tree using of_graph. For the results to be
218 * correct, encoders must be probed/bound after _all_ crtcs have been
219 * created. The existing code uses a depth first recursive traversal
220 * of the of_graph, which means the encoders downstream of the TCON
221 * get add right after the first TCON. The second TCON or CRTC will
222 * never be properly associated with encoders connected to it.
223 *
224 * Also, in a dual display pipeline setup, both frontends can feed
225 * either backend, and both backends can feed either TCON, we want
226 * all components of the same type to be added before the next type
227 * in the pipeline. Fortunately, the pipelines are perfectly symmetric,
228 * i.e. components of the same type are at the same depth when counted
229 * from the frontend. The only exception is the third pipeline in
230 * the A80 SoC, which we do not support anyway.
231 *
232 * Hence we can use a breadth first search traversal order to add
233 * components. We do not need to check for duplicates. The component
234 * matching system handles this for us.
235 */
236struct endpoint_list {
Maxime Ripard8b11aaf2017-10-17 11:06:08 +0200237 DECLARE_KFIFO(fifo, struct device_node *, 16);
Chen-Yu Tsaida82b872017-09-08 15:50:10 +0800238};
239
Jernej Skrabec71f47962018-06-25 14:02:47 +0200240static void sun4i_drv_traverse_endpoints(struct endpoint_list *list,
241 struct device_node *node,
242 int port_id)
243{
244 struct device_node *ep, *remote, *port;
245
246 port = of_graph_get_port_by_id(node, port_id);
247 if (!port) {
248 DRM_DEBUG_DRIVER("No output to bind on port %d\n", port_id);
249 return;
250 }
251
252 for_each_available_child_of_node(port, ep) {
253 remote = of_graph_get_remote_port_parent(ep);
254 if (!remote) {
255 DRM_DEBUG_DRIVER("Error retrieving the output node\n");
256 continue;
257 }
258
259 /*
260 * If the node is our TCON, the first port is used for
261 * panel or bridges, and will not be part of the
262 * component framework.
263 */
264 if (sun4i_drv_node_is_tcon(node)) {
265 struct of_endpoint endpoint;
266
Jernej Skrabecef0cf642018-06-25 14:02:48 +0200267 /*
268 * TCON TOP is always probed before TCON. However, TCON
269 * points back to TCON TOP when it is source for HDMI.
270 * We have to skip it here to prevent infinite looping
271 * between TCON TOP and TCON.
272 */
273 if (sun4i_drv_node_is_tcon_top(remote)) {
274 DRM_DEBUG_DRIVER("TCON output endpoint is TCON TOP... skipping\n");
275 of_node_put(remote);
276 continue;
277 }
278
Jernej Skrabec71f47962018-06-25 14:02:47 +0200279 if (of_graph_parse_endpoint(ep, &endpoint)) {
280 DRM_DEBUG_DRIVER("Couldn't parse endpoint\n");
281 of_node_put(remote);
282 continue;
283 }
284
285 if (!endpoint.id) {
286 DRM_DEBUG_DRIVER("Endpoint is our panel... skipping\n");
287 of_node_put(remote);
288 continue;
289 }
290 }
291
292 kfifo_put(&list->fifo, remote);
293 }
294}
295
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100296static int sun4i_drv_add_endpoints(struct device *dev,
Maxime Ripard8b11aaf2017-10-17 11:06:08 +0200297 struct endpoint_list *list,
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100298 struct component_match **match,
299 struct device_node *node)
300{
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100301 int count = 0;
302
303 /*
Maxime Riparddd0421f2018-01-22 10:25:22 +0100304 * The frontend has been disabled in some of our old device
305 * trees. If we find a node that is the frontend and is
306 * disabled, we should just follow through and parse its
307 * child, but without adding it to the component list.
308 * Otherwise, we obviously want to add it to the list.
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100309 */
310 if (!sun4i_drv_node_is_frontend(node) &&
311 !of_device_is_available(node))
312 return 0;
313
Maxime Ripard49baeb02017-05-27 18:09:32 +0200314 /*
315 * The connectors will be the last nodes in our pipeline, we
316 * can just bail out.
317 */
318 if (sun4i_drv_node_is_connector(node))
319 return 0;
320
Maxime Riparddd0421f2018-01-22 10:25:22 +0100321 /*
322 * If the device is either just a regular device, or an
323 * enabled frontend supported by the driver, we add it to our
324 * component list.
325 */
Chen-Yu Tsai33478952018-03-15 19:41:33 +0800326 if (!(sun4i_drv_node_is_frontend(node) ||
327 sun4i_drv_node_is_deu(node)) ||
Maxime Riparddd0421f2018-01-22 10:25:22 +0100328 (sun4i_drv_node_is_supported_frontend(node) &&
329 of_device_is_available(node))) {
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100330 /* Add current component */
Rob Herring4bf99142017-07-18 16:43:04 -0500331 DRM_DEBUG_DRIVER("Adding component %pOF\n", node);
Russell King97ac0e42016-10-19 11:28:27 +0100332 drm_of_component_match_add(dev, match, compare_of, node);
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100333 count++;
334 }
335
Jernej Skrabec71f47962018-06-25 14:02:47 +0200336 /* each node has at least one output */
337 sun4i_drv_traverse_endpoints(list, node, 1);
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100338
Jernej Skrabecef0cf642018-06-25 14:02:48 +0200339 /* TCON TOP has second and third output */
340 if (sun4i_drv_node_is_tcon_top(node)) {
341 sun4i_drv_traverse_endpoints(list, node, 3);
342 sun4i_drv_traverse_endpoints(list, node, 5);
343 }
344
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100345 return count;
346}
347
348static int sun4i_drv_probe(struct platform_device *pdev)
349{
350 struct component_match *match = NULL;
Maxime Ripard8b11aaf2017-10-17 11:06:08 +0200351 struct device_node *np = pdev->dev.of_node, *endpoint;
352 struct endpoint_list list;
Chen-Yu Tsaida82b872017-09-08 15:50:10 +0800353 int i, ret, count = 0;
Maxime Ripard8b11aaf2017-10-17 11:06:08 +0200354
355 INIT_KFIFO(list.fifo);
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100356
357 for (i = 0;; i++) {
358 struct device_node *pipeline = of_parse_phandle(np,
359 "allwinner,pipelines",
360 i);
361 if (!pipeline)
362 break;
363
Maxime Ripard8b11aaf2017-10-17 11:06:08 +0200364 kfifo_put(&list.fifo, pipeline);
Chen-Yu Tsaida82b872017-09-08 15:50:10 +0800365 }
366
Maxime Ripard8b11aaf2017-10-17 11:06:08 +0200367 while (kfifo_get(&list.fifo, &endpoint)) {
Chen-Yu Tsaida82b872017-09-08 15:50:10 +0800368 /* process this endpoint */
Maxime Ripard8b11aaf2017-10-17 11:06:08 +0200369 ret = sun4i_drv_add_endpoints(&pdev->dev, &list, &match,
370 endpoint);
Chen-Yu Tsaida82b872017-09-08 15:50:10 +0800371
372 /* sun4i_drv_add_endpoints can fail to allocate memory */
373 if (ret < 0)
Maxime Ripard8b11aaf2017-10-17 11:06:08 +0200374 return ret;
Chen-Yu Tsaida82b872017-09-08 15:50:10 +0800375
376 count += ret;
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100377 }
378
379 if (count)
380 return component_master_add_with_match(&pdev->dev,
381 &sun4i_drv_master_ops,
382 match);
383 else
384 return 0;
385}
386
387static int sun4i_drv_remove(struct platform_device *pdev)
388{
389 return 0;
390}
391
392static const struct of_device_id sun4i_drv_of_table[] = {
Chen-Yu Tsai9a8187c2017-10-17 20:18:01 +0800393 { .compatible = "allwinner,sun4i-a10-display-engine" },
Maxime Ripard110d33d2017-05-27 18:09:36 +0200394 { .compatible = "allwinner,sun5i-a10s-display-engine" },
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100395 { .compatible = "allwinner,sun5i-a13-display-engine" },
Chen-Yu Tsai49c440e2016-10-20 11:43:41 +0800396 { .compatible = "allwinner,sun6i-a31-display-engine" },
397 { .compatible = "allwinner,sun6i-a31s-display-engine" },
Jonathan Liuaaddb6d2017-10-17 20:18:02 +0800398 { .compatible = "allwinner,sun7i-a20-display-engine" },
Maxime Ripard4a408f12016-01-07 12:32:25 +0100399 { .compatible = "allwinner,sun8i-a33-display-engine" },
Maxime Ripard2f0d7bb2017-12-21 12:02:34 +0100400 { .compatible = "allwinner,sun8i-a83t-display-engine" },
Jernej Skrabec1ceb5f12018-03-01 22:34:33 +0100401 { .compatible = "allwinner,sun8i-h3-display-engine" },
Icenowy Zheng9df90c22017-05-17 22:47:21 +0800402 { .compatible = "allwinner,sun8i-v3s-display-engine" },
Chen-Yu Tsai33478952018-03-15 19:41:33 +0800403 { .compatible = "allwinner,sun9i-a80-display-engine" },
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100404 { }
405};
406MODULE_DEVICE_TABLE(of, sun4i_drv_of_table);
407
408static struct platform_driver sun4i_drv_platform_driver = {
409 .probe = sun4i_drv_probe,
410 .remove = sun4i_drv_remove,
411 .driver = {
412 .name = "sun4i-drm",
413 .of_match_table = sun4i_drv_of_table,
414 },
415};
416module_platform_driver(sun4i_drv_platform_driver);
417
418MODULE_AUTHOR("Boris Brezillon <boris.brezillon@free-electrons.com>");
419MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>");
420MODULE_DESCRIPTION("Allwinner A10 Display Engine DRM/KMS Driver");
421MODULE_LICENSE("GPL");