blob: e5ef6b673981596033a2d7241bf4243d0685c13b [file] [log] [blame]
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +02001/*
2 * Copyright (C) STMicroelectronics SA 2014
3 * Author: Benjamin Gaignard <benjamin.gaignard@st.com> for STMicroelectronics.
4 * License terms: GNU General Public License (GPL), version 2
5 */
6
7#include <drm/drmP.h>
8
9#include <linux/component.h>
10#include <linux/debugfs.h>
11#include <linux/kernel.h>
12#include <linux/module.h>
13#include <linux/of_platform.h>
14
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +010015#include <drm/drm_atomic.h>
16#include <drm/drm_atomic_helper.h>
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020017#include <drm/drm_crtc_helper.h>
18#include <drm/drm_gem_cma_helper.h>
19#include <drm/drm_fb_cma_helper.h>
20
Vincent Abriou9e1f05b2015-07-31 11:32:34 +020021#include "sti_crtc.h"
22#include "sti_drv.h"
Vincent Abrioubf8f9e42016-02-08 11:34:31 +010023#include "sti_plane.h"
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020024
25#define DRIVER_NAME "sti"
26#define DRIVER_DESC "STMicroelectronics SoC DRM"
27#define DRIVER_DATE "20140601"
28#define DRIVER_MAJOR 1
29#define DRIVER_MINOR 0
30
31#define STI_MAX_FB_HEIGHT 4096
32#define STI_MAX_FB_WIDTH 4096
33
Vincent Abrioubf8f9e42016-02-08 11:34:31 +010034static int sti_drm_fps_get(void *data, u64 *val)
35{
36 struct drm_device *drm_dev = data;
37 struct drm_plane *p;
38 unsigned int i = 0;
39
40 *val = 0;
41 list_for_each_entry(p, &drm_dev->mode_config.plane_list, head) {
42 struct sti_plane *plane = to_sti_plane(p);
43
44 *val |= plane->fps_info.output << i;
45 i++;
46 }
47
48 return 0;
49}
50
51static int sti_drm_fps_set(void *data, u64 val)
52{
53 struct drm_device *drm_dev = data;
54 struct drm_plane *p;
55 unsigned int i = 0;
56
57 list_for_each_entry(p, &drm_dev->mode_config.plane_list, head) {
58 struct sti_plane *plane = to_sti_plane(p);
59
60 plane->fps_info.output = (val >> i) & 1;
61 i++;
62 }
63
64 return 0;
65}
66
67DEFINE_SIMPLE_ATTRIBUTE(sti_drm_fps_fops,
68 sti_drm_fps_get, sti_drm_fps_set, "%llu\n");
69
70static int sti_drm_fps_dbg_show(struct seq_file *s, void *data)
71{
72 struct drm_info_node *node = s->private;
73 struct drm_device *dev = node->minor->dev;
74 struct drm_plane *p;
75 int ret;
76
77 ret = mutex_lock_interruptible(&dev->struct_mutex);
78 if (ret)
79 return ret;
80
81 list_for_each_entry(p, &dev->mode_config.plane_list, head) {
82 struct sti_plane *plane = to_sti_plane(p);
83
84 seq_printf(s, "%s%s\n",
85 plane->fps_info.fps_str,
86 plane->fps_info.fips_str);
87 }
88
89 mutex_unlock(&dev->struct_mutex);
90 return 0;
91}
92
93static struct drm_info_list sti_drm_dbg_list[] = {
94 {"fps_get", sti_drm_fps_dbg_show, 0},
95};
96
97static int sti_drm_debugfs_create(struct dentry *root,
98 struct drm_minor *minor,
99 const char *name,
100 const struct file_operations *fops)
101{
102 struct drm_device *dev = minor->dev;
103 struct drm_info_node *node;
104 struct dentry *ent;
105
106 ent = debugfs_create_file(name, S_IRUGO | S_IWUSR, root, dev, fops);
107 if (IS_ERR(ent))
108 return PTR_ERR(ent);
109
110 node = kmalloc(sizeof(*node), GFP_KERNEL);
111 if (!node) {
112 debugfs_remove(ent);
113 return -ENOMEM;
114 }
115
116 node->minor = minor;
117 node->dent = ent;
118 node->info_ent = (void *)fops;
119
120 mutex_lock(&minor->debugfs_lock);
121 list_add(&node->list, &minor->debugfs_list);
122 mutex_unlock(&minor->debugfs_lock);
123
124 return 0;
125}
126
127static int sti_drm_dbg_init(struct drm_minor *minor)
128{
129 int ret;
130
131 ret = drm_debugfs_create_files(sti_drm_dbg_list,
132 ARRAY_SIZE(sti_drm_dbg_list),
133 minor->debugfs_root, minor);
134 if (ret)
135 goto err;
136
137 ret = sti_drm_debugfs_create(minor->debugfs_root, minor, "fps_show",
138 &sti_drm_fps_fops);
139 if (ret)
140 goto err;
141
142 DRM_INFO("%s: debugfs installed\n", DRIVER_NAME);
143 return 0;
144err:
145 DRM_ERROR("%s: cannot install debugfs\n", DRIVER_NAME);
146 return ret;
147}
148
149void sti_drm_dbg_cleanup(struct drm_minor *minor)
150{
151 drm_debugfs_remove_files(sti_drm_dbg_list,
152 ARRAY_SIZE(sti_drm_dbg_list), minor);
153
154 drm_debugfs_remove_files((struct drm_info_list *)&sti_drm_fps_fops,
155 1, minor);
156}
157
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200158static void sti_atomic_schedule(struct sti_private *private,
159 struct drm_atomic_state *state)
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100160{
161 private->commit.state = state;
162 schedule_work(&private->commit.work);
163}
164
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200165static void sti_atomic_complete(struct sti_private *private,
166 struct drm_atomic_state *state)
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100167{
168 struct drm_device *drm = private->drm_dev;
169
170 /*
171 * Everything below can be run asynchronously without the need to grab
172 * any modeset locks at all under one condition: It must be guaranteed
173 * that the asynchronous work has either been cancelled (if the driver
174 * supports it, which at least requires that the framebuffers get
175 * cleaned up with drm_atomic_helper_cleanup_planes()) or completed
176 * before the new state gets committed on the software side with
177 * drm_atomic_helper_swap_state().
178 *
179 * This scheme allows new atomic state updates to be prepared and
180 * checked in parallel to the asynchronous completion of the previous
181 * update. Which is important since compositors need to figure out the
182 * composition of the next frame right after having submitted the
183 * current layout.
184 */
185
186 drm_atomic_helper_commit_modeset_disables(drm, state);
Daniel Vetteraef9dbb2015-09-08 12:02:07 +0200187 drm_atomic_helper_commit_planes(drm, state, false);
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100188 drm_atomic_helper_commit_modeset_enables(drm, state);
189
190 drm_atomic_helper_wait_for_vblanks(drm, state);
191
192 drm_atomic_helper_cleanup_planes(drm, state);
193 drm_atomic_state_free(state);
194}
195
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200196static void sti_atomic_work(struct work_struct *work)
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100197{
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200198 struct sti_private *private = container_of(work,
199 struct sti_private, commit.work);
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100200
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200201 sti_atomic_complete(private, private->commit.state);
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100202}
203
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200204static int sti_atomic_commit(struct drm_device *drm,
205 struct drm_atomic_state *state, bool async)
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100206{
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200207 struct sti_private *private = drm->dev_private;
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100208 int err;
209
210 err = drm_atomic_helper_prepare_planes(drm, state);
211 if (err)
212 return err;
213
214 /* serialize outstanding asynchronous commits */
215 mutex_lock(&private->commit.lock);
216 flush_work(&private->commit.work);
217
218 /*
219 * This is the point of no return - everything below never fails except
220 * when the hw goes bonghits. Which means we can commit the new state on
221 * the software side now.
222 */
223
224 drm_atomic_helper_swap_state(drm, state);
225
226 if (async)
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200227 sti_atomic_schedule(private, state);
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100228 else
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200229 sti_atomic_complete(private, state);
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100230
231 mutex_unlock(&private->commit.lock);
232 return 0;
233}
234
Ville Syrjäläc5de4852015-09-02 13:44:15 +0300235static const struct drm_mode_config_funcs sti_mode_config_funcs = {
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200236 .fb_create = drm_fb_cma_create,
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100237 .atomic_check = drm_atomic_helper_check,
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200238 .atomic_commit = sti_atomic_commit,
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200239};
240
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200241static void sti_mode_config_init(struct drm_device *dev)
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200242{
243 dev->mode_config.min_width = 0;
244 dev->mode_config.min_height = 0;
245
246 /*
247 * set max width and height as default value.
248 * this value would be used to check framebuffer size limitation
249 * at drm_mode_addfb().
250 */
Vincent Abriou738be9d2015-10-29 14:20:27 +0100251 dev->mode_config.max_width = STI_MAX_FB_WIDTH;
252 dev->mode_config.max_height = STI_MAX_FB_HEIGHT;
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200253
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200254 dev->mode_config.funcs = &sti_mode_config_funcs;
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200255}
256
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200257static int sti_load(struct drm_device *dev, unsigned long flags)
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200258{
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200259 struct sti_private *private;
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200260 int ret;
261
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200262 private = kzalloc(sizeof(*private), GFP_KERNEL);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200263 if (!private) {
264 DRM_ERROR("Failed to allocate private\n");
265 return -ENOMEM;
266 }
267 dev->dev_private = (void *)private;
268 private->drm_dev = dev;
269
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100270 mutex_init(&private->commit.lock);
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200271 INIT_WORK(&private->commit.work, sti_atomic_work);
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100272
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200273 drm_mode_config_init(dev);
274 drm_kms_helper_poll_init(dev);
275
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200276 sti_mode_config_init(dev);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200277
278 ret = component_bind_all(dev->dev, dev);
Benjamin Gaignardf78e7722014-12-11 13:35:29 +0100279 if (ret) {
280 drm_kms_helper_poll_fini(dev);
281 drm_mode_config_cleanup(dev);
282 kfree(private);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200283 return ret;
Benjamin Gaignardf78e7722014-12-11 13:35:29 +0100284 }
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200285
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100286 drm_mode_config_reset(dev);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200287
Maxime Ripard4314e192016-01-14 16:24:56 +0100288 drm_helper_disable_unused_functions(dev);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200289 drm_fbdev_cma_init(dev, 32,
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200290 dev->mode_config.num_crtc,
291 dev->mode_config.num_connector);
Archit Tanejab5d34a22015-10-27 13:40:58 +0530292
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200293 return 0;
294}
295
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200296static const struct file_operations sti_driver_fops = {
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200297 .owner = THIS_MODULE,
298 .open = drm_open,
299 .mmap = drm_gem_cma_mmap,
300 .poll = drm_poll,
301 .read = drm_read,
302 .unlocked_ioctl = drm_ioctl,
303#ifdef CONFIG_COMPAT
304 .compat_ioctl = drm_compat_ioctl,
305#endif
306 .release = drm_release,
307};
308
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200309static struct dma_buf *sti_gem_prime_export(struct drm_device *dev,
310 struct drm_gem_object *obj,
311 int flags)
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200312{
313 /* we want to be able to write in mmapped buffer */
314 flags |= O_RDWR;
315 return drm_gem_prime_export(dev, obj, flags);
316}
317
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200318static struct drm_driver sti_driver = {
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200319 .driver_features = DRIVER_HAVE_IRQ | DRIVER_MODESET |
benjamin.gaignard@linaro.orgf29ddaf2016-01-07 14:30:41 +0100320 DRIVER_GEM | DRIVER_PRIME | DRIVER_ATOMIC,
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200321 .load = sti_load,
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200322 .gem_free_object = drm_gem_cma_free_object,
323 .gem_vm_ops = &drm_gem_cma_vm_ops,
324 .dumb_create = drm_gem_cma_dumb_create,
325 .dumb_map_offset = drm_gem_cma_dumb_map_offset,
326 .dumb_destroy = drm_gem_dumb_destroy,
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200327 .fops = &sti_driver_fops,
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200328
Ville Syrjäläb44f8402015-09-30 16:46:48 +0300329 .get_vblank_counter = drm_vblank_no_hw_counter,
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200330 .enable_vblank = sti_crtc_enable_vblank,
331 .disable_vblank = sti_crtc_disable_vblank,
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200332
333 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
334 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200335 .gem_prime_export = sti_gem_prime_export,
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200336 .gem_prime_import = drm_gem_prime_import,
337 .gem_prime_get_sg_table = drm_gem_cma_prime_get_sg_table,
338 .gem_prime_import_sg_table = drm_gem_cma_prime_import_sg_table,
339 .gem_prime_vmap = drm_gem_cma_prime_vmap,
340 .gem_prime_vunmap = drm_gem_cma_prime_vunmap,
341 .gem_prime_mmap = drm_gem_cma_prime_mmap,
342
Vincent Abrioubf8f9e42016-02-08 11:34:31 +0100343 .debugfs_init = sti_drm_dbg_init,
344 .debugfs_cleanup = sti_drm_dbg_cleanup,
345
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200346 .name = DRIVER_NAME,
347 .desc = DRIVER_DESC,
348 .date = DRIVER_DATE,
349 .major = DRIVER_MAJOR,
350 .minor = DRIVER_MINOR,
351};
352
353static int compare_of(struct device *dev, void *data)
354{
355 return dev->of_node == data;
356}
357
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200358static int sti_bind(struct device *dev)
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200359{
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200360 return drm_platform_init(&sti_driver, to_platform_device(dev));
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200361}
362
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200363static void sti_unbind(struct device *dev)
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200364{
365 drm_put_dev(dev_get_drvdata(dev));
366}
367
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200368static const struct component_master_ops sti_ops = {
369 .bind = sti_bind,
370 .unbind = sti_unbind,
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200371};
372
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200373static int sti_platform_probe(struct platform_device *pdev)
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200374{
375 struct device *dev = &pdev->dev;
Benjamin Gaignard53bdcf52015-07-17 12:06:11 +0200376 struct device_node *node = dev->of_node;
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200377 struct device_node *child_np;
378 struct component_match *match = NULL;
379
380 dma_set_coherent_mask(dev, DMA_BIT_MASK(32));
381
Benjamin Gaignard53bdcf52015-07-17 12:06:11 +0200382 of_platform_populate(node, NULL, NULL, dev);
383
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200384 child_np = of_get_next_available_child(node, NULL);
385
386 while (child_np) {
387 component_match_add(dev, &match, compare_of, child_np);
388 of_node_put(child_np);
389 child_np = of_get_next_available_child(node, child_np);
390 }
391
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200392 return component_master_add_with_match(dev, &sti_ops, match);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200393}
394
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200395static int sti_platform_remove(struct platform_device *pdev)
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200396{
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200397 component_master_del(&pdev->dev, &sti_ops);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200398 of_platform_depopulate(&pdev->dev);
Benjamin Gaignard53bdcf52015-07-17 12:06:11 +0200399
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200400 return 0;
401}
402
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200403static const struct of_device_id sti_dt_ids[] = {
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200404 { .compatible = "st,sti-display-subsystem", },
405 { /* end node */ },
406};
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200407MODULE_DEVICE_TABLE(of, sti_dt_ids);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200408
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200409static struct platform_driver sti_platform_driver = {
410 .probe = sti_platform_probe,
411 .remove = sti_platform_remove,
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200412 .driver = {
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200413 .name = DRIVER_NAME,
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200414 .of_match_table = sti_dt_ids,
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200415 },
416};
417
Thierry Redingdcec16e2015-09-24 19:02:40 +0200418static struct platform_driver * const drivers[] = {
419 &sti_tvout_driver,
420 &sti_vtac_driver,
421 &sti_hqvdp_driver,
422 &sti_hdmi_driver,
423 &sti_hda_driver,
424 &sti_dvo_driver,
425 &sti_vtg_driver,
426 &sti_compositor_driver,
427 &sti_platform_driver,
428};
429
430static int sti_drm_init(void)
431{
432 return platform_register_drivers(drivers, ARRAY_SIZE(drivers));
433}
434module_init(sti_drm_init);
435
436static void sti_drm_exit(void)
437{
438 platform_unregister_drivers(drivers, ARRAY_SIZE(drivers));
439}
440module_exit(sti_drm_exit);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200441
442MODULE_AUTHOR("Benjamin Gaignard <benjamin.gaignard@st.com>");
443MODULE_DESCRIPTION("STMicroelectronics SoC DRM driver");
444MODULE_LICENSE("GPL");