blob: a5757b11b730254943cf98c2f68da512552c0443 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Maxime Ripard9026e0d2015-10-29 09:36:23 +01002/*
3 * Copyright (C) 2015 Free Electrons
4 * Copyright (C) 2015 NextThing Co
5 *
6 * Maxime Ripard <maxime.ripard@free-electrons.com>
Maxime Ripard9026e0d2015-10-29 09:36:23 +01007 */
8
9#include <linux/component.h>
Maxime Ripard8b11aaf2017-10-17 11:06:08 +020010#include <linux/kfifo.h>
Sam Ravnborg9c25a292019-07-16 08:42:06 +020011#include <linux/module.h>
Maxime Ripard9026e0d2015-10-29 09:36:23 +010012#include <linux/of_graph.h>
Maxime Ripard596afb62017-02-09 17:39:18 +010013#include <linux/of_reserved_mem.h>
Sam Ravnborg9c25a292019-07-16 08:42:06 +020014#include <linux/platform_device.h>
Maxime Ripard9026e0d2015-10-29 09:36:23 +010015
Paul Kocialkowski71adf602019-04-18 15:27:25 +020016#include <drm/drm_atomic_helper.h>
Sam Ravnborg9c25a292019-07-16 08:42:06 +020017#include <drm/drm_drv.h>
Maxime Ripard9026e0d2015-10-29 09:36:23 +010018#include <drm/drm_fb_cma_helper.h>
Daniel Vetter44adece2016-08-10 18:52:34 +020019#include <drm/drm_fb_helper.h>
Daniel Vetterfcd70cd2019-01-17 22:03:34 +010020#include <drm/drm_gem_cma_helper.h>
Russell King97ac0e42016-10-19 11:28:27 +010021#include <drm/drm_of.h>
Daniel Vetterfcd70cd2019-01-17 22:03:34 +010022#include <drm/drm_probe_helper.h>
Sam Ravnborg9c25a292019-07-16 08:42:06 +020023#include <drm/drm_vblank.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
Paul Kocialkowski31cf2822018-11-23 10:25:01 +010031static int drm_sun4i_gem_dumb_create(struct drm_file *file_priv,
32 struct drm_device *drm,
33 struct drm_mode_create_dumb *args)
34{
35 /* The hardware only allows even pitches for YUV buffers. */
36 args->pitch = ALIGN(DIV_ROUND_UP(args->width * args->bpp, 8), 2);
37
38 return drm_gem_cma_dumb_create_internal(file_priv, drm, args);
39}
40
Daniel Vetterd55f7e52017-03-08 15:12:56 +010041DEFINE_DRM_GEM_CMA_FOPS(sun4i_drv_fops);
Maxime Ripard9026e0d2015-10-29 09:36:23 +010042
43static struct drm_driver sun4i_drv_driver = {
Daniel Vetter0424fda2019-06-17 17:39:24 +020044 .driver_features = DRIVER_GEM | DRIVER_MODESET | DRIVER_ATOMIC,
Maxime Ripard9026e0d2015-10-29 09:36:23 +010045
46 /* Generic Operations */
47 .fops = &sun4i_drv_fops,
48 .name = "sun4i-drm",
49 .desc = "Allwinner sun4i Display Engine",
50 .date = "20150629",
51 .major = 1,
52 .minor = 0,
53
54 /* GEM Operations */
Paul Kocialkowskiad408c72019-04-18 15:05:09 +020055 DRM_GEM_CMA_VMAP_DRIVER_OPS,
Paul Kocialkowski31cf2822018-11-23 10:25:01 +010056 .dumb_create = drm_sun4i_gem_dumb_create,
Maxime Ripard9026e0d2015-10-29 09:36:23 +010057};
58
59static int sun4i_drv_bind(struct device *dev)
60{
61 struct drm_device *drm;
62 struct sun4i_drv *drv;
63 int ret;
64
65 drm = drm_dev_alloc(&sun4i_drv_driver, dev);
Tom Gundersen0f288602016-09-21 16:59:19 +020066 if (IS_ERR(drm))
67 return PTR_ERR(drm);
Maxime Ripard9026e0d2015-10-29 09:36:23 +010068
Maxime Ripard9026e0d2015-10-29 09:36:23 +010069 drv = devm_kzalloc(dev, sizeof(*drv), GFP_KERNEL);
70 if (!drv) {
71 ret = -ENOMEM;
72 goto free_drm;
73 }
Paul Kocialkowski02b92ad2019-04-18 15:27:26 +020074
75 dev_set_drvdata(dev, drm);
Maxime Ripard9026e0d2015-10-29 09:36:23 +010076 drm->dev_private = drv;
Maxime Riparddd0421f2018-01-22 10:25:22 +010077 INIT_LIST_HEAD(&drv->frontend_list);
Icenowy Zheng87969332017-05-17 22:47:17 +080078 INIT_LIST_HEAD(&drv->engine_list);
Chen-Yu Tsai80a58242017-04-21 16:38:50 +080079 INIT_LIST_HEAD(&drv->tcon_list);
Maxime Ripard9026e0d2015-10-29 09:36:23 +010080
Maxime Ripard596afb62017-02-09 17:39:18 +010081 ret = of_reserved_mem_device_init(dev);
82 if (ret && ret != -ENODEV) {
83 dev_err(drm->dev, "Couldn't claim our memory region\n");
84 goto free_drm;
85 }
86
Maxime Ripard9026e0d2015-10-29 09:36:23 +010087 drm_mode_config_init(drm);
Paul Kocialkowski9db9c0c2019-01-18 15:51:26 +010088 drm->mode_config.allow_fb_modifiers = true;
Maxime Ripard9026e0d2015-10-29 09:36:23 +010089
90 ret = component_bind_all(drm->dev, drm);
91 if (ret) {
92 dev_err(drm->dev, "Couldn't bind all pipelines components\n");
Chen-Yu Tsai9d56def2017-02-17 11:13:25 +080093 goto cleanup_mode_config;
Maxime Ripard9026e0d2015-10-29 09:36:23 +010094 }
95
Chen-Yu Tsai070badf2017-09-08 15:50:15 +080096 /* drm_vblank_init calls kcalloc, which can fail */
97 ret = drm_vblank_init(drm, drm->mode_config.num_crtc);
98 if (ret)
Christophe JAILLET9ca86142018-03-12 00:19:09 +010099 goto cleanup_mode_config;
Chen-Yu Tsai070badf2017-09-08 15:50:15 +0800100
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100101 drm->irq_enabled = true;
102
Maxime Ripard3d6bd902016-05-11 16:52:50 +0200103 /* Remove early framebuffers (ie. simplefb) */
Michał Mirosława7e3fa72018-09-01 16:08:51 +0200104 drm_fb_helper_remove_conflicting_framebuffers(NULL, "sun4i-drm-fb", false);
Maxime Ripard3d6bd902016-05-11 16:52:50 +0200105
Noralf Trønnes94ebfc02018-10-25 22:13:38 +0200106 sun4i_framebuffer_init(drm);
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100107
108 /* Enable connectors polling */
109 drm_kms_helper_poll_init(drm);
110
111 ret = drm_dev_register(drm, 0);
112 if (ret)
Chen-Yu Tsai9d56def2017-02-17 11:13:25 +0800113 goto finish_poll;
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100114
Noralf Trønnes94ebfc02018-10-25 22:13:38 +0200115 drm_fbdev_generic_setup(drm, 32);
116
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100117 return 0;
118
Chen-Yu Tsai9d56def2017-02-17 11:13:25 +0800119finish_poll:
120 drm_kms_helper_poll_fini(drm);
Chen-Yu Tsai9d56def2017-02-17 11:13:25 +0800121cleanup_mode_config:
122 drm_mode_config_cleanup(drm);
Maxime Ripard596afb62017-02-09 17:39:18 +0100123 of_reserved_mem_device_release(dev);
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100124free_drm:
Thomas Zimmermann4c2ae342018-07-17 10:48:14 +0200125 drm_dev_put(drm);
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100126 return ret;
127}
128
129static void sun4i_drv_unbind(struct device *dev)
130{
131 struct drm_device *drm = dev_get_drvdata(dev);
132
133 drm_dev_unregister(drm);
134 drm_kms_helper_poll_fini(drm);
Paul Kocialkowski71adf602019-04-18 15:27:25 +0200135 drm_atomic_helper_shutdown(drm);
Chen-Yu Tsai92caf9b2017-02-17 11:13:24 +0800136 drm_mode_config_cleanup(drm);
Paul Kocialkowskif5a9ed82019-04-18 15:27:27 +0200137
138 component_unbind_all(dev, NULL);
Maxime Ripard596afb62017-02-09 17:39:18 +0100139 of_reserved_mem_device_release(dev);
Paul Kocialkowskie02bc292019-04-24 11:04:13 +0200140
Thomas Zimmermann4c2ae342018-07-17 10:48:14 +0200141 drm_dev_put(drm);
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100142}
143
144static const struct component_master_ops sun4i_drv_master_ops = {
145 .bind = sun4i_drv_bind,
146 .unbind = sun4i_drv_unbind,
147};
148
Maxime Ripard49baeb02017-05-27 18:09:32 +0200149static bool sun4i_drv_node_is_connector(struct device_node *node)
150{
151 return of_device_is_compatible(node, "hdmi-connector");
152}
153
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100154static bool sun4i_drv_node_is_frontend(struct device_node *node)
155{
Chen-Yu Tsai9a8187c2017-10-17 20:18:01 +0800156 return of_device_is_compatible(node, "allwinner,sun4i-a10-display-frontend") ||
157 of_device_is_compatible(node, "allwinner,sun5i-a13-display-frontend") ||
Chen-Yu Tsai49c440e2016-10-20 11:43:41 +0800158 of_device_is_compatible(node, "allwinner,sun6i-a31-display-frontend") ||
Jonathan Liuaaddb6d2017-10-17 20:18:02 +0800159 of_device_is_compatible(node, "allwinner,sun7i-a20-display-frontend") ||
Chen-Yu Tsaid0ec0a32019-01-25 11:23:09 +0800160 of_device_is_compatible(node, "allwinner,sun8i-a23-display-frontend") ||
Chen-Yu Tsai33478952018-03-15 19:41:33 +0800161 of_device_is_compatible(node, "allwinner,sun8i-a33-display-frontend") ||
162 of_device_is_compatible(node, "allwinner,sun9i-a80-display-frontend");
163}
164
165static bool sun4i_drv_node_is_deu(struct device_node *node)
166{
167 return of_device_is_compatible(node, "allwinner,sun9i-a80-deu");
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100168}
169
Maxime Riparddd0421f2018-01-22 10:25:22 +0100170static bool sun4i_drv_node_is_supported_frontend(struct device_node *node)
171{
172 if (IS_ENABLED(CONFIG_DRM_SUN4I_BACKEND))
173 return !!of_match_node(sun4i_frontend_of_table, node);
174
175 return false;
176}
177
Maxime Ripard29e57fa2015-10-29 09:37:32 +0100178static bool sun4i_drv_node_is_tcon(struct device_node *node)
179{
Chen-Yu Tsaiff71c2c2017-11-27 16:46:32 +0800180 return !!of_match_node(sun4i_tcon_of_table, node);
Maxime Ripard29e57fa2015-10-29 09:37:32 +0100181}
182
Jernej Skrabecc5cf04d2018-06-25 14:02:49 +0200183static bool sun4i_drv_node_is_tcon_with_ch0(struct device_node *node)
184{
185 const struct of_device_id *match;
186
187 match = of_match_node(sun4i_tcon_of_table, node);
188 if (match) {
189 struct sun4i_tcon_quirks *quirks;
190
191 quirks = (struct sun4i_tcon_quirks *)match->data;
192
193 return quirks->has_channel_0;
194 }
195
196 return false;
197}
198
Jernej Skrabecef0cf642018-06-25 14:02:48 +0200199static bool sun4i_drv_node_is_tcon_top(struct device_node *node)
200{
Arnd Bergmann58d4d292018-07-11 16:43:10 +0200201 return IS_ENABLED(CONFIG_DRM_SUN8I_TCON_TOP) &&
202 !!of_match_node(sun8i_tcon_top_of_table, node);
Jernej Skrabecef0cf642018-06-25 14:02:48 +0200203}
204
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100205static int compare_of(struct device *dev, void *data)
206{
Rob Herring4bf99142017-07-18 16:43:04 -0500207 DRM_DEBUG_DRIVER("Comparing of node %pOF with %pOF\n",
208 dev->of_node,
209 data);
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100210
211 return dev->of_node == data;
212}
213
Chen-Yu Tsaida82b872017-09-08 15:50:10 +0800214/*
215 * The encoder drivers use drm_of_find_possible_crtcs to get upstream
216 * crtcs from the device tree using of_graph. For the results to be
217 * correct, encoders must be probed/bound after _all_ crtcs have been
218 * created. The existing code uses a depth first recursive traversal
219 * of the of_graph, which means the encoders downstream of the TCON
220 * get add right after the first TCON. The second TCON or CRTC will
221 * never be properly associated with encoders connected to it.
222 *
223 * Also, in a dual display pipeline setup, both frontends can feed
224 * either backend, and both backends can feed either TCON, we want
225 * all components of the same type to be added before the next type
226 * in the pipeline. Fortunately, the pipelines are perfectly symmetric,
227 * i.e. components of the same type are at the same depth when counted
228 * from the frontend. The only exception is the third pipeline in
229 * the A80 SoC, which we do not support anyway.
230 *
231 * Hence we can use a breadth first search traversal order to add
232 * components. We do not need to check for duplicates. The component
233 * matching system handles this for us.
234 */
235struct endpoint_list {
Maxime Ripard8b11aaf2017-10-17 11:06:08 +0200236 DECLARE_KFIFO(fifo, struct device_node *, 16);
Chen-Yu Tsaida82b872017-09-08 15:50:10 +0800237};
238
Jernej Skrabec71f47962018-06-25 14:02:47 +0200239static void sun4i_drv_traverse_endpoints(struct endpoint_list *list,
240 struct device_node *node,
241 int port_id)
242{
243 struct device_node *ep, *remote, *port;
244
245 port = of_graph_get_port_by_id(node, port_id);
246 if (!port) {
247 DRM_DEBUG_DRIVER("No output to bind on port %d\n", port_id);
248 return;
249 }
250
251 for_each_available_child_of_node(port, ep) {
252 remote = of_graph_get_remote_port_parent(ep);
253 if (!remote) {
254 DRM_DEBUG_DRIVER("Error retrieving the output node\n");
255 continue;
256 }
257
Jernej Skrabec71f47962018-06-25 14:02:47 +0200258 if (sun4i_drv_node_is_tcon(node)) {
Jernej Skrabecef0cf642018-06-25 14:02:48 +0200259 /*
260 * TCON TOP is always probed before TCON. However, TCON
261 * points back to TCON TOP when it is source for HDMI.
262 * We have to skip it here to prevent infinite looping
263 * between TCON TOP and TCON.
264 */
265 if (sun4i_drv_node_is_tcon_top(remote)) {
266 DRM_DEBUG_DRIVER("TCON output endpoint is TCON TOP... skipping\n");
267 of_node_put(remote);
268 continue;
269 }
270
Jernej Skrabecc5cf04d2018-06-25 14:02:49 +0200271 /*
272 * If the node is our TCON with channel 0, the first
273 * port is used for panel or bridges, and will not be
274 * part of the component framework.
275 */
276 if (sun4i_drv_node_is_tcon_with_ch0(node)) {
277 struct of_endpoint endpoint;
Jernej Skrabec71f47962018-06-25 14:02:47 +0200278
Jernej Skrabecc5cf04d2018-06-25 14:02:49 +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 }
Jernej Skrabec71f47962018-06-25 14:02:47 +0200290 }
291 }
292
293 kfifo_put(&list->fifo, remote);
294 }
295}
296
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100297static int sun4i_drv_add_endpoints(struct device *dev,
Maxime Ripard8b11aaf2017-10-17 11:06:08 +0200298 struct endpoint_list *list,
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100299 struct component_match **match,
300 struct device_node *node)
301{
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100302 int count = 0;
303
304 /*
Maxime Riparddd0421f2018-01-22 10:25:22 +0100305 * The frontend has been disabled in some of our old device
306 * trees. If we find a node that is the frontend and is
307 * disabled, we should just follow through and parse its
308 * child, but without adding it to the component list.
309 * Otherwise, we obviously want to add it to the list.
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100310 */
311 if (!sun4i_drv_node_is_frontend(node) &&
312 !of_device_is_available(node))
313 return 0;
314
Maxime Ripard49baeb02017-05-27 18:09:32 +0200315 /*
316 * The connectors will be the last nodes in our pipeline, we
317 * can just bail out.
318 */
319 if (sun4i_drv_node_is_connector(node))
320 return 0;
321
Maxime Riparddd0421f2018-01-22 10:25:22 +0100322 /*
323 * If the device is either just a regular device, or an
324 * enabled frontend supported by the driver, we add it to our
325 * component list.
326 */
Chen-Yu Tsai33478952018-03-15 19:41:33 +0800327 if (!(sun4i_drv_node_is_frontend(node) ||
328 sun4i_drv_node_is_deu(node)) ||
Maxime Riparddd0421f2018-01-22 10:25:22 +0100329 (sun4i_drv_node_is_supported_frontend(node) &&
330 of_device_is_available(node))) {
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100331 /* Add current component */
Rob Herring4bf99142017-07-18 16:43:04 -0500332 DRM_DEBUG_DRIVER("Adding component %pOF\n", node);
Russell King97ac0e42016-10-19 11:28:27 +0100333 drm_of_component_match_add(dev, match, compare_of, node);
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100334 count++;
335 }
336
Jernej Skrabec71f47962018-06-25 14:02:47 +0200337 /* each node has at least one output */
338 sun4i_drv_traverse_endpoints(list, node, 1);
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100339
Jernej Skrabecef0cf642018-06-25 14:02:48 +0200340 /* TCON TOP has second and third output */
341 if (sun4i_drv_node_is_tcon_top(node)) {
342 sun4i_drv_traverse_endpoints(list, node, 3);
343 sun4i_drv_traverse_endpoints(list, node, 5);
344 }
345
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100346 return count;
347}
348
349static int sun4i_drv_probe(struct platform_device *pdev)
350{
351 struct component_match *match = NULL;
Maxime Ripard8b11aaf2017-10-17 11:06:08 +0200352 struct device_node *np = pdev->dev.of_node, *endpoint;
353 struct endpoint_list list;
Chen-Yu Tsaida82b872017-09-08 15:50:10 +0800354 int i, ret, count = 0;
Maxime Ripard8b11aaf2017-10-17 11:06:08 +0200355
356 INIT_KFIFO(list.fifo);
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100357
358 for (i = 0;; i++) {
359 struct device_node *pipeline = of_parse_phandle(np,
360 "allwinner,pipelines",
361 i);
362 if (!pipeline)
363 break;
364
Maxime Ripard8b11aaf2017-10-17 11:06:08 +0200365 kfifo_put(&list.fifo, pipeline);
Chen-Yu Tsaida82b872017-09-08 15:50:10 +0800366 }
367
Maxime Ripard8b11aaf2017-10-17 11:06:08 +0200368 while (kfifo_get(&list.fifo, &endpoint)) {
Chen-Yu Tsaida82b872017-09-08 15:50:10 +0800369 /* process this endpoint */
Maxime Ripard8b11aaf2017-10-17 11:06:08 +0200370 ret = sun4i_drv_add_endpoints(&pdev->dev, &list, &match,
371 endpoint);
Chen-Yu Tsaida82b872017-09-08 15:50:10 +0800372
373 /* sun4i_drv_add_endpoints can fail to allocate memory */
374 if (ret < 0)
Maxime Ripard8b11aaf2017-10-17 11:06:08 +0200375 return ret;
Chen-Yu Tsaida82b872017-09-08 15:50:10 +0800376
377 count += ret;
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100378 }
379
380 if (count)
381 return component_master_add_with_match(&pdev->dev,
382 &sun4i_drv_master_ops,
383 match);
384 else
385 return 0;
386}
387
388static int sun4i_drv_remove(struct platform_device *pdev)
389{
Paul Kocialkowskif5a9ed82019-04-18 15:27:27 +0200390 component_master_del(&pdev->dev, &sun4i_drv_master_ops);
391
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100392 return 0;
393}
394
395static const struct of_device_id sun4i_drv_of_table[] = {
Chen-Yu Tsai9a8187c2017-10-17 20:18:01 +0800396 { .compatible = "allwinner,sun4i-a10-display-engine" },
Maxime Ripard110d33d2017-05-27 18:09:36 +0200397 { .compatible = "allwinner,sun5i-a10s-display-engine" },
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100398 { .compatible = "allwinner,sun5i-a13-display-engine" },
Chen-Yu Tsai49c440e2016-10-20 11:43:41 +0800399 { .compatible = "allwinner,sun6i-a31-display-engine" },
400 { .compatible = "allwinner,sun6i-a31s-display-engine" },
Jonathan Liuaaddb6d2017-10-17 20:18:02 +0800401 { .compatible = "allwinner,sun7i-a20-display-engine" },
Chen-Yu Tsaid0ec0a32019-01-25 11:23:09 +0800402 { .compatible = "allwinner,sun8i-a23-display-engine" },
Maxime Ripard4a408f12016-01-07 12:32:25 +0100403 { .compatible = "allwinner,sun8i-a33-display-engine" },
Maxime Ripard2f0d7bb2017-12-21 12:02:34 +0100404 { .compatible = "allwinner,sun8i-a83t-display-engine" },
Jernej Skrabec1ceb5f12018-03-01 22:34:33 +0100405 { .compatible = "allwinner,sun8i-h3-display-engine" },
Chen-Yu Tsai3dcf0f32018-09-21 22:27:43 +0800406 { .compatible = "allwinner,sun8i-r40-display-engine" },
Icenowy Zheng9df90c22017-05-17 22:47:21 +0800407 { .compatible = "allwinner,sun8i-v3s-display-engine" },
Chen-Yu Tsai33478952018-03-15 19:41:33 +0800408 { .compatible = "allwinner,sun9i-a80-display-engine" },
Jagan Tekidd8bd542018-09-04 12:40:47 +0800409 { .compatible = "allwinner,sun50i-a64-display-engine" },
Jernej Skrabec97f29302018-11-04 19:26:45 +0100410 { .compatible = "allwinner,sun50i-h6-display-engine" },
Maxime Ripard9026e0d2015-10-29 09:36:23 +0100411 { }
412};
413MODULE_DEVICE_TABLE(of, sun4i_drv_of_table);
414
415static struct platform_driver sun4i_drv_platform_driver = {
416 .probe = sun4i_drv_probe,
417 .remove = sun4i_drv_remove,
418 .driver = {
419 .name = "sun4i-drm",
420 .of_match_table = sun4i_drv_of_table,
421 },
422};
423module_platform_driver(sun4i_drv_platform_driver);
424
425MODULE_AUTHOR("Boris Brezillon <boris.brezillon@free-electrons.com>");
426MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>");
427MODULE_DESCRIPTION("Allwinner A10 Display Engine DRM/KMS Driver");
428MODULE_LICENSE("GPL");