1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2012 Russell King
7 #include <linux/component.h>
8 #include <linux/module.h>
9 #include <linux/of_graph.h>
10 #include <linux/platform_device.h>
12 #include <drm/drm_atomic_helper.h>
13 #include <drm/drm_drv.h>
14 #include <drm/drm_ioctl.h>
15 #include <drm/drm_prime.h>
16 #include <drm/drm_probe_helper.h>
17 #include <drm/drm_fb_helper.h>
18 #include <drm/drm_of.h>
19 #include <drm/drm_vblank.h>
21 #include "armada_crtc.h"
22 #include "armada_drm.h"
23 #include "armada_gem.h"
24 #include "armada_fb.h"
25 #include "armada_hw.h"
26 #include <drm/armada_drm.h>
27 #include "armada_ioctlP.h"
29 static struct drm_ioctl_desc armada_ioctls[] = {
30 DRM_IOCTL_DEF_DRV(ARMADA_GEM_CREATE, armada_gem_create_ioctl,0),
31 DRM_IOCTL_DEF_DRV(ARMADA_GEM_MMAP, armada_gem_mmap_ioctl, 0),
32 DRM_IOCTL_DEF_DRV(ARMADA_GEM_PWRITE, armada_gem_pwrite_ioctl, 0),
35 DEFINE_DRM_GEM_FOPS(armada_drm_fops);
37 static struct drm_driver armada_drm_driver = {
38 .lastclose = drm_fb_helper_lastclose,
39 .gem_free_object_unlocked = armada_gem_free_object,
40 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
41 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
42 .gem_prime_export = armada_gem_prime_export,
43 .gem_prime_import = armada_gem_prime_import,
44 .dumb_create = armada_gem_dumb_create,
45 .gem_vm_ops = &armada_gem_vm_ops,
49 .desc = "Armada SoC DRM",
51 .driver_features = DRIVER_GEM | DRIVER_MODESET | DRIVER_ATOMIC,
52 .ioctls = armada_ioctls,
53 .fops = &armada_drm_fops,
56 static const struct drm_mode_config_funcs armada_drm_mode_config_funcs = {
57 .fb_create = armada_fb_create,
58 .output_poll_changed = drm_fb_helper_output_poll_changed,
59 .atomic_check = drm_atomic_helper_check,
60 .atomic_commit = drm_atomic_helper_commit,
63 static int armada_drm_bind(struct device *dev)
65 struct armada_private *priv;
66 struct resource *mem = NULL;
70 struct resource *r = platform_get_resource(to_platform_device(dev),
75 /* Resources above 64K are graphics memory */
76 if (resource_size(r) > SZ_64K)
85 if (!devm_request_mem_region(dev, mem->start, resource_size(mem),
89 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
94 * The drm_device structure must be at the start of
95 * armada_private for drm_dev_put() to work correctly.
97 BUILD_BUG_ON(offsetof(struct armada_private, drm) != 0);
99 ret = drm_dev_init(&priv->drm, &armada_drm_driver, dev);
101 dev_err(dev, "[" DRM_NAME ":%s] drm_dev_init failed: %d\n",
107 /* Remove early framebuffers */
108 ret = drm_fb_helper_remove_conflicting_framebuffers(NULL,
112 dev_err(dev, "[" DRM_NAME ":%s] can't kick out simple-fb: %d\n",
118 priv->drm.dev_private = priv;
120 dev_set_drvdata(dev, &priv->drm);
122 /* Mode setting support */
123 drm_mode_config_init(&priv->drm);
124 priv->drm.mode_config.min_width = 320;
125 priv->drm.mode_config.min_height = 200;
128 * With vscale enabled, the maximum width is 1920 due to the
129 * 1920 by 3 lines RAM
131 priv->drm.mode_config.max_width = 1920;
132 priv->drm.mode_config.max_height = 2048;
134 priv->drm.mode_config.preferred_depth = 24;
135 priv->drm.mode_config.funcs = &armada_drm_mode_config_funcs;
136 drm_mm_init(&priv->linear, mem->start, resource_size(mem));
137 mutex_init(&priv->linear_lock);
139 ret = component_bind_all(dev, &priv->drm);
143 ret = drm_vblank_init(&priv->drm, priv->drm.mode_config.num_crtc);
147 priv->drm.irq_enabled = true;
149 drm_mode_config_reset(&priv->drm);
151 ret = armada_fbdev_init(&priv->drm);
155 drm_kms_helper_poll_init(&priv->drm);
157 ret = drm_dev_register(&priv->drm, 0);
161 #ifdef CONFIG_DEBUG_FS
162 armada_drm_debugfs_init(priv->drm.primary);
168 drm_kms_helper_poll_fini(&priv->drm);
169 armada_fbdev_fini(&priv->drm);
171 component_unbind_all(dev, &priv->drm);
173 drm_mode_config_cleanup(&priv->drm);
174 drm_mm_takedown(&priv->linear);
175 drm_dev_put(&priv->drm);
179 static void armada_drm_unbind(struct device *dev)
181 struct drm_device *drm = dev_get_drvdata(dev);
182 struct armada_private *priv = drm->dev_private;
184 drm_kms_helper_poll_fini(&priv->drm);
185 armada_fbdev_fini(&priv->drm);
187 drm_dev_unregister(&priv->drm);
189 drm_atomic_helper_shutdown(&priv->drm);
191 component_unbind_all(dev, &priv->drm);
193 drm_mode_config_cleanup(&priv->drm);
194 drm_mm_takedown(&priv->linear);
196 drm_dev_put(&priv->drm);
199 static int compare_of(struct device *dev, void *data)
201 return dev->of_node == data;
204 static int compare_dev_name(struct device *dev, void *data)
206 const char *name = data;
207 return !strcmp(dev_name(dev), name);
210 static void armada_add_endpoints(struct device *dev,
211 struct component_match **match, struct device_node *dev_node)
213 struct device_node *ep, *remote;
215 for_each_endpoint_of_node(dev_node, ep) {
216 remote = of_graph_get_remote_port_parent(ep);
217 if (remote && of_device_is_available(remote))
218 drm_of_component_match_add(dev, match, compare_of,
224 static const struct component_master_ops armada_master_ops = {
225 .bind = armada_drm_bind,
226 .unbind = armada_drm_unbind,
229 static int armada_drm_probe(struct platform_device *pdev)
231 struct component_match *match = NULL;
232 struct device *dev = &pdev->dev;
235 ret = drm_of_component_probe(dev, compare_dev_name, &armada_master_ops);
239 if (dev->platform_data) {
240 char **devices = dev->platform_data;
244 for (i = 0; devices[i]; i++)
245 component_match_add(dev, &match, compare_dev_name,
249 dev_err(dev, "missing 'ports' property\n");
253 for (i = 0; devices[i]; i++) {
254 d = bus_find_device_by_name(&platform_bus_type, NULL,
257 armada_add_endpoints(dev, &match, d->of_node);
262 return component_master_add_with_match(&pdev->dev, &armada_master_ops,
266 static int armada_drm_remove(struct platform_device *pdev)
268 component_master_del(&pdev->dev, &armada_master_ops);
272 static const struct platform_device_id armada_drm_platform_ids[] = {
274 .name = "armada-drm",
276 .name = "armada-510-drm",
280 MODULE_DEVICE_TABLE(platform, armada_drm_platform_ids);
282 static struct platform_driver armada_drm_platform_driver = {
283 .probe = armada_drm_probe,
284 .remove = armada_drm_remove,
286 .name = "armada-drm",
288 .id_table = armada_drm_platform_ids,
291 static int __init armada_drm_init(void)
295 armada_drm_driver.num_ioctls = ARRAY_SIZE(armada_ioctls);
297 ret = platform_driver_register(&armada_lcd_platform_driver);
300 ret = platform_driver_register(&armada_drm_platform_driver);
302 platform_driver_unregister(&armada_lcd_platform_driver);
305 module_init(armada_drm_init);
307 static void __exit armada_drm_exit(void)
309 platform_driver_unregister(&armada_drm_platform_driver);
310 platform_driver_unregister(&armada_lcd_platform_driver);
312 module_exit(armada_drm_exit);
315 MODULE_DESCRIPTION("Armada DRM Driver");
316 MODULE_LICENSE("GPL");
317 MODULE_ALIAS("platform:armada-drm");