xref: /linux/drivers/gpu/drm/sti/sti_drv.c (revision e58e871becec2d3b04ed91c0c16fe8deac9c9dfa)
1 /*
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 
15 #include <drm/drm_atomic.h>
16 #include <drm/drm_atomic_helper.h>
17 #include <drm/drm_crtc_helper.h>
18 #include <drm/drm_gem_cma_helper.h>
19 #include <drm/drm_fb_cma_helper.h>
20 #include <drm/drm_of.h>
21 
22 #include "sti_crtc.h"
23 #include "sti_drv.h"
24 #include "sti_plane.h"
25 
26 #define DRIVER_NAME	"sti"
27 #define DRIVER_DESC	"STMicroelectronics SoC DRM"
28 #define DRIVER_DATE	"20140601"
29 #define DRIVER_MAJOR	1
30 #define DRIVER_MINOR	0
31 
32 #define STI_MAX_FB_HEIGHT	4096
33 #define STI_MAX_FB_WIDTH	4096
34 
35 static int sti_drm_fps_get(void *data, u64 *val)
36 {
37 	struct drm_device *drm_dev = data;
38 	struct drm_plane *p;
39 	unsigned int i = 0;
40 
41 	*val = 0;
42 	list_for_each_entry(p, &drm_dev->mode_config.plane_list, head) {
43 		struct sti_plane *plane = to_sti_plane(p);
44 
45 		*val |= plane->fps_info.output << i;
46 		i++;
47 	}
48 
49 	return 0;
50 }
51 
52 static int sti_drm_fps_set(void *data, u64 val)
53 {
54 	struct drm_device *drm_dev = data;
55 	struct drm_plane *p;
56 	unsigned int i = 0;
57 
58 	list_for_each_entry(p, &drm_dev->mode_config.plane_list, head) {
59 		struct sti_plane *plane = to_sti_plane(p);
60 
61 		memset(&plane->fps_info, 0, sizeof(plane->fps_info));
62 		plane->fps_info.output = (val >> i) & 1;
63 
64 		i++;
65 	}
66 
67 	return 0;
68 }
69 
70 DEFINE_SIMPLE_ATTRIBUTE(sti_drm_fps_fops,
71 			sti_drm_fps_get, sti_drm_fps_set, "%llu\n");
72 
73 static int sti_drm_fps_dbg_show(struct seq_file *s, void *data)
74 {
75 	struct drm_info_node *node = s->private;
76 	struct drm_device *dev = node->minor->dev;
77 	struct drm_plane *p;
78 
79 	list_for_each_entry(p, &dev->mode_config.plane_list, head) {
80 		struct sti_plane *plane = to_sti_plane(p);
81 
82 		seq_printf(s, "%s%s\n",
83 			   plane->fps_info.fps_str,
84 			   plane->fps_info.fips_str);
85 	}
86 
87 	return 0;
88 }
89 
90 static struct drm_info_list sti_drm_dbg_list[] = {
91 	{"fps_get", sti_drm_fps_dbg_show, 0},
92 };
93 
94 static int sti_drm_dbg_init(struct drm_minor *minor)
95 {
96 	struct dentry *dentry;
97 	int ret;
98 
99 	ret = drm_debugfs_create_files(sti_drm_dbg_list,
100 				       ARRAY_SIZE(sti_drm_dbg_list),
101 				       minor->debugfs_root, minor);
102 	if (ret)
103 		goto err;
104 
105 	dentry = debugfs_create_file("fps_show", S_IRUGO | S_IWUSR,
106 				     minor->debugfs_root, minor->dev,
107 				     &sti_drm_fps_fops);
108 	if (!dentry) {
109 		ret = -ENOMEM;
110 		goto err;
111 	}
112 
113 	DRM_INFO("%s: debugfs installed\n", DRIVER_NAME);
114 	return 0;
115 err:
116 	DRM_ERROR("%s: cannot install debugfs\n", DRIVER_NAME);
117 	return ret;
118 }
119 
120 static int sti_atomic_check(struct drm_device *dev,
121 			    struct drm_atomic_state *state)
122 {
123 	int ret;
124 
125 	ret = drm_atomic_helper_check_modeset(dev, state);
126 	if (ret)
127 		return ret;
128 
129 	ret = drm_atomic_normalize_zpos(dev, state);
130 	if (ret)
131 		return ret;
132 
133 	ret = drm_atomic_helper_check_planes(dev, state);
134 	if (ret)
135 		return ret;
136 
137 	return ret;
138 }
139 
140 static void sti_output_poll_changed(struct drm_device *ddev)
141 {
142 	struct sti_private *private = ddev->dev_private;
143 
144 	drm_fbdev_cma_hotplug_event(private->fbdev);
145 }
146 
147 static const struct drm_mode_config_funcs sti_mode_config_funcs = {
148 	.fb_create = drm_fb_cma_create,
149 	.output_poll_changed = sti_output_poll_changed,
150 	.atomic_check = sti_atomic_check,
151 	.atomic_commit = drm_atomic_helper_commit,
152 };
153 
154 static void sti_mode_config_init(struct drm_device *dev)
155 {
156 	dev->mode_config.min_width = 0;
157 	dev->mode_config.min_height = 0;
158 
159 	/*
160 	 * set max width and height as default value.
161 	 * this value would be used to check framebuffer size limitation
162 	 * at drm_mode_addfb().
163 	 */
164 	dev->mode_config.max_width = STI_MAX_FB_WIDTH;
165 	dev->mode_config.max_height = STI_MAX_FB_HEIGHT;
166 
167 	dev->mode_config.funcs = &sti_mode_config_funcs;
168 }
169 
170 DEFINE_DRM_GEM_CMA_FOPS(sti_driver_fops);
171 
172 static struct drm_driver sti_driver = {
173 	.driver_features = DRIVER_MODESET |
174 	    DRIVER_GEM | DRIVER_PRIME | DRIVER_ATOMIC,
175 	.gem_free_object_unlocked = drm_gem_cma_free_object,
176 	.gem_vm_ops = &drm_gem_cma_vm_ops,
177 	.dumb_create = drm_gem_cma_dumb_create,
178 	.dumb_map_offset = drm_gem_cma_dumb_map_offset,
179 	.dumb_destroy = drm_gem_dumb_destroy,
180 	.fops = &sti_driver_fops,
181 
182 	.enable_vblank = sti_crtc_enable_vblank,
183 	.disable_vblank = sti_crtc_disable_vblank,
184 
185 	.prime_handle_to_fd = drm_gem_prime_handle_to_fd,
186 	.prime_fd_to_handle = drm_gem_prime_fd_to_handle,
187 	.gem_prime_export = drm_gem_prime_export,
188 	.gem_prime_import = drm_gem_prime_import,
189 	.gem_prime_get_sg_table = drm_gem_cma_prime_get_sg_table,
190 	.gem_prime_import_sg_table = drm_gem_cma_prime_import_sg_table,
191 	.gem_prime_vmap = drm_gem_cma_prime_vmap,
192 	.gem_prime_vunmap = drm_gem_cma_prime_vunmap,
193 	.gem_prime_mmap = drm_gem_cma_prime_mmap,
194 
195 	.debugfs_init = sti_drm_dbg_init,
196 
197 	.name = DRIVER_NAME,
198 	.desc = DRIVER_DESC,
199 	.date = DRIVER_DATE,
200 	.major = DRIVER_MAJOR,
201 	.minor = DRIVER_MINOR,
202 };
203 
204 static int compare_of(struct device *dev, void *data)
205 {
206 	return dev->of_node == data;
207 }
208 
209 static int sti_init(struct drm_device *ddev)
210 {
211 	struct sti_private *private;
212 
213 	private = kzalloc(sizeof(*private), GFP_KERNEL);
214 	if (!private)
215 		return -ENOMEM;
216 
217 	ddev->dev_private = (void *)private;
218 	dev_set_drvdata(ddev->dev, ddev);
219 	private->drm_dev = ddev;
220 
221 	drm_mode_config_init(ddev);
222 
223 	sti_mode_config_init(ddev);
224 
225 	drm_kms_helper_poll_init(ddev);
226 
227 	return 0;
228 }
229 
230 static void sti_cleanup(struct drm_device *ddev)
231 {
232 	struct sti_private *private = ddev->dev_private;
233 
234 	if (private->fbdev) {
235 		drm_fbdev_cma_fini(private->fbdev);
236 		private->fbdev = NULL;
237 	}
238 
239 	drm_kms_helper_poll_fini(ddev);
240 	drm_vblank_cleanup(ddev);
241 	component_unbind_all(ddev->dev, ddev);
242 	kfree(private);
243 	ddev->dev_private = NULL;
244 }
245 
246 static int sti_bind(struct device *dev)
247 {
248 	struct drm_device *ddev;
249 	struct sti_private *private;
250 	struct drm_fbdev_cma *fbdev;
251 	int ret;
252 
253 	ddev = drm_dev_alloc(&sti_driver, dev);
254 	if (IS_ERR(ddev))
255 		return PTR_ERR(ddev);
256 
257 	ret = sti_init(ddev);
258 	if (ret)
259 		goto err_drm_dev_unref;
260 
261 	ret = component_bind_all(ddev->dev, ddev);
262 	if (ret)
263 		goto err_cleanup;
264 
265 	ret = drm_dev_register(ddev, 0);
266 	if (ret)
267 		goto err_register;
268 
269 	drm_mode_config_reset(ddev);
270 
271 	private = ddev->dev_private;
272 	if (ddev->mode_config.num_connector) {
273 		fbdev = drm_fbdev_cma_init(ddev, 32,
274 					   ddev->mode_config.num_connector);
275 		if (IS_ERR(fbdev)) {
276 			DRM_DEBUG_DRIVER("Warning: fails to create fbdev\n");
277 			fbdev = NULL;
278 		}
279 		private->fbdev = fbdev;
280 	}
281 
282 	return 0;
283 
284 err_register:
285 	drm_mode_config_cleanup(ddev);
286 err_cleanup:
287 	sti_cleanup(ddev);
288 err_drm_dev_unref:
289 	drm_dev_unref(ddev);
290 	return ret;
291 }
292 
293 static void sti_unbind(struct device *dev)
294 {
295 	struct drm_device *ddev = dev_get_drvdata(dev);
296 
297 	drm_dev_unregister(ddev);
298 	sti_cleanup(ddev);
299 	drm_dev_unref(ddev);
300 }
301 
302 static const struct component_master_ops sti_ops = {
303 	.bind = sti_bind,
304 	.unbind = sti_unbind,
305 };
306 
307 static int sti_platform_probe(struct platform_device *pdev)
308 {
309 	struct device *dev = &pdev->dev;
310 	struct device_node *node = dev->of_node;
311 	struct device_node *child_np;
312 	struct component_match *match = NULL;
313 
314 	dma_set_coherent_mask(dev, DMA_BIT_MASK(32));
315 
316 	devm_of_platform_populate(dev);
317 
318 	child_np = of_get_next_available_child(node, NULL);
319 
320 	while (child_np) {
321 		drm_of_component_match_add(dev, &match, compare_of,
322 					   child_np);
323 		child_np = of_get_next_available_child(node, child_np);
324 	}
325 
326 	return component_master_add_with_match(dev, &sti_ops, match);
327 }
328 
329 static int sti_platform_remove(struct platform_device *pdev)
330 {
331 	component_master_del(&pdev->dev, &sti_ops);
332 
333 	return 0;
334 }
335 
336 static const struct of_device_id sti_dt_ids[] = {
337 	{ .compatible = "st,sti-display-subsystem", },
338 	{ /* end node */ },
339 };
340 MODULE_DEVICE_TABLE(of, sti_dt_ids);
341 
342 static struct platform_driver sti_platform_driver = {
343 	.probe = sti_platform_probe,
344 	.remove = sti_platform_remove,
345 	.driver = {
346 		.name = DRIVER_NAME,
347 		.of_match_table = sti_dt_ids,
348 	},
349 };
350 
351 static struct platform_driver * const drivers[] = {
352 	&sti_tvout_driver,
353 	&sti_hqvdp_driver,
354 	&sti_hdmi_driver,
355 	&sti_hda_driver,
356 	&sti_dvo_driver,
357 	&sti_vtg_driver,
358 	&sti_compositor_driver,
359 	&sti_platform_driver,
360 };
361 
362 static int sti_drm_init(void)
363 {
364 	return platform_register_drivers(drivers, ARRAY_SIZE(drivers));
365 }
366 module_init(sti_drm_init);
367 
368 static void sti_drm_exit(void)
369 {
370 	platform_unregister_drivers(drivers, ARRAY_SIZE(drivers));
371 }
372 module_exit(sti_drm_exit);
373 
374 MODULE_AUTHOR("Benjamin Gaignard <benjamin.gaignard@st.com>");
375 MODULE_DESCRIPTION("STMicroelectronics SoC DRM driver");
376 MODULE_LICENSE("GPL");
377