1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd.
3  * Authors:
4  *	Inki Dae <inki.dae@samsung.com>
5  *	Joonyoung Shim <jy0922.shim@samsung.com>
6  *	Seung-Woo Kim <sw0312.kim@samsung.com>
7  *
8  * Permission is hereby granted, free of charge, to any person obtaining a
9  * copy of this software and associated documentation files (the "Software"),
10  * to deal in the Software without restriction, including without limitation
11  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12  * and/or sell copies of the Software, and to permit persons to whom the
13  * Software is furnished to do so, subject to the following conditions:
14  *
15  * The above copyright notice and this permission notice (including the next
16  * paragraph) shall be included in all copies or substantial portions of the
17  * Software.
18  *
19  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
22  * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
23  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
24  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
25  * OTHER DEALINGS IN THE SOFTWARE.
26  */
27 
28 #include "drmP.h"
29 #include "drm.h"
30 #include "drm_crtc_helper.h"
31 
32 #include <drm/exynos_drm.h>
33 
34 #include "exynos_drm_drv.h"
35 #include "exynos_drm_crtc.h"
36 #include "exynos_drm_encoder.h"
37 #include "exynos_drm_fbdev.h"
38 #include "exynos_drm_fb.h"
39 #include "exynos_drm_gem.h"
40 #include "exynos_drm_plane.h"
41 #include "exynos_drm_vidi.h"
42 #include "exynos_drm_dmabuf.h"
43 #include "exynos_drm_g2d.h"
44 
45 #define DRIVER_NAME	"exynos"
46 #define DRIVER_DESC	"Samsung SoC DRM"
47 #define DRIVER_DATE	"20110530"
48 #define DRIVER_MAJOR	1
49 #define DRIVER_MINOR	0
50 
51 #define VBLANK_OFF_DELAY	50000
52 
53 static int exynos_drm_load(struct drm_device *dev, unsigned long flags)
54 {
55 	struct exynos_drm_private *private;
56 	int ret;
57 	int nr;
58 
59 	DRM_DEBUG_DRIVER("%s\n", __FILE__);
60 
61 	private = kzalloc(sizeof(struct exynos_drm_private), GFP_KERNEL);
62 	if (!private) {
63 		DRM_ERROR("failed to allocate private\n");
64 		return -ENOMEM;
65 	}
66 
67 	INIT_LIST_HEAD(&private->pageflip_event_list);
68 	dev->dev_private = (void *)private;
69 
70 	drm_mode_config_init(dev);
71 
72 	/* init kms poll for handling hpd */
73 	drm_kms_helper_poll_init(dev);
74 
75 	exynos_drm_mode_config_init(dev);
76 
77 	/*
78 	 * EXYNOS4 is enough to have two CRTCs and each crtc would be used
79 	 * without dependency of hardware.
80 	 */
81 	for (nr = 0; nr < MAX_CRTC; nr++) {
82 		ret = exynos_drm_crtc_create(dev, nr);
83 		if (ret)
84 			goto err_crtc;
85 	}
86 
87 	for (nr = 0; nr < MAX_PLANE; nr++) {
88 		struct drm_plane *plane;
89 		unsigned int possible_crtcs = (1 << MAX_CRTC) - 1;
90 
91 		plane = exynos_plane_init(dev, possible_crtcs, false);
92 		if (!plane)
93 			goto err_crtc;
94 	}
95 
96 	ret = drm_vblank_init(dev, MAX_CRTC);
97 	if (ret)
98 		goto err_crtc;
99 
100 	/*
101 	 * probe sub drivers such as display controller and hdmi driver,
102 	 * that were registered at probe() of platform driver
103 	 * to the sub driver and create encoder and connector for them.
104 	 */
105 	ret = exynos_drm_device_register(dev);
106 	if (ret)
107 		goto err_vblank;
108 
109 	/* setup possible_clones. */
110 	exynos_drm_encoder_setup(dev);
111 
112 	/*
113 	 * create and configure fb helper and also exynos specific
114 	 * fbdev object.
115 	 */
116 	ret = exynos_drm_fbdev_init(dev);
117 	if (ret) {
118 		DRM_ERROR("failed to initialize drm fbdev\n");
119 		goto err_drm_device;
120 	}
121 
122 	drm_vblank_offdelay = VBLANK_OFF_DELAY;
123 
124 	return 0;
125 
126 err_drm_device:
127 	exynos_drm_device_unregister(dev);
128 err_vblank:
129 	drm_vblank_cleanup(dev);
130 err_crtc:
131 	drm_mode_config_cleanup(dev);
132 	kfree(private);
133 
134 	return ret;
135 }
136 
137 static int exynos_drm_unload(struct drm_device *dev)
138 {
139 	DRM_DEBUG_DRIVER("%s\n", __FILE__);
140 
141 	exynos_drm_fbdev_fini(dev);
142 	exynos_drm_device_unregister(dev);
143 	drm_vblank_cleanup(dev);
144 	drm_kms_helper_poll_fini(dev);
145 	drm_mode_config_cleanup(dev);
146 	kfree(dev->dev_private);
147 
148 	dev->dev_private = NULL;
149 
150 	return 0;
151 }
152 
153 static int exynos_drm_open(struct drm_device *dev, struct drm_file *file)
154 {
155 	struct drm_exynos_file_private *file_priv;
156 
157 	DRM_DEBUG_DRIVER("%s\n", __FILE__);
158 
159 	file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
160 	if (!file_priv)
161 		return -ENOMEM;
162 
163 	drm_prime_init_file_private(&file->prime);
164 	file->driver_priv = file_priv;
165 
166 	return exynos_drm_subdrv_open(dev, file);
167 }
168 
169 static void exynos_drm_preclose(struct drm_device *dev,
170 					struct drm_file *file)
171 {
172 	struct exynos_drm_private *private = dev->dev_private;
173 	struct drm_pending_vblank_event *e, *t;
174 	unsigned long flags;
175 
176 	DRM_DEBUG_DRIVER("%s\n", __FILE__);
177 
178 	/* release events of current file */
179 	spin_lock_irqsave(&dev->event_lock, flags);
180 	list_for_each_entry_safe(e, t, &private->pageflip_event_list,
181 			base.link) {
182 		if (e->base.file_priv == file) {
183 			list_del(&e->base.link);
184 			e->base.destroy(&e->base);
185 		}
186 	}
187 	drm_prime_destroy_file_private(&file->prime);
188 	spin_unlock_irqrestore(&dev->event_lock, flags);
189 
190 	exynos_drm_subdrv_close(dev, file);
191 }
192 
193 static void exynos_drm_postclose(struct drm_device *dev, struct drm_file *file)
194 {
195 	DRM_DEBUG_DRIVER("%s\n", __FILE__);
196 
197 	if (!file->driver_priv)
198 		return;
199 
200 	kfree(file->driver_priv);
201 	file->driver_priv = NULL;
202 }
203 
204 static void exynos_drm_lastclose(struct drm_device *dev)
205 {
206 	DRM_DEBUG_DRIVER("%s\n", __FILE__);
207 
208 	exynos_drm_fbdev_restore_mode(dev);
209 }
210 
211 static const struct vm_operations_struct exynos_drm_gem_vm_ops = {
212 	.fault = exynos_drm_gem_fault,
213 	.open = drm_gem_vm_open,
214 	.close = drm_gem_vm_close,
215 };
216 
217 static struct drm_ioctl_desc exynos_ioctls[] = {
218 	DRM_IOCTL_DEF_DRV(EXYNOS_GEM_CREATE, exynos_drm_gem_create_ioctl,
219 			DRM_UNLOCKED | DRM_AUTH),
220 	DRM_IOCTL_DEF_DRV(EXYNOS_GEM_MAP_OFFSET,
221 			exynos_drm_gem_map_offset_ioctl, DRM_UNLOCKED |
222 			DRM_AUTH),
223 	DRM_IOCTL_DEF_DRV(EXYNOS_GEM_MMAP,
224 			exynos_drm_gem_mmap_ioctl, DRM_UNLOCKED | DRM_AUTH),
225 	DRM_IOCTL_DEF_DRV(EXYNOS_GEM_GET,
226 			exynos_drm_gem_get_ioctl, DRM_UNLOCKED),
227 	DRM_IOCTL_DEF_DRV(EXYNOS_VIDI_CONNECTION,
228 			vidi_connection_ioctl, DRM_UNLOCKED | DRM_AUTH),
229 	DRM_IOCTL_DEF_DRV(EXYNOS_G2D_GET_VER,
230 			exynos_g2d_get_ver_ioctl, DRM_UNLOCKED | DRM_AUTH),
231 	DRM_IOCTL_DEF_DRV(EXYNOS_G2D_SET_CMDLIST,
232 			exynos_g2d_set_cmdlist_ioctl, DRM_UNLOCKED | DRM_AUTH),
233 	DRM_IOCTL_DEF_DRV(EXYNOS_G2D_EXEC,
234 			exynos_g2d_exec_ioctl, DRM_UNLOCKED | DRM_AUTH),
235 };
236 
237 static const struct file_operations exynos_drm_driver_fops = {
238 	.owner		= THIS_MODULE,
239 	.open		= drm_open,
240 	.mmap		= exynos_drm_gem_mmap,
241 	.poll		= drm_poll,
242 	.read		= drm_read,
243 	.unlocked_ioctl	= drm_ioctl,
244 	.release	= drm_release,
245 };
246 
247 static struct drm_driver exynos_drm_driver = {
248 	.driver_features	= DRIVER_HAVE_IRQ | DRIVER_MODESET |
249 					DRIVER_GEM | DRIVER_PRIME,
250 	.load			= exynos_drm_load,
251 	.unload			= exynos_drm_unload,
252 	.open			= exynos_drm_open,
253 	.preclose		= exynos_drm_preclose,
254 	.lastclose		= exynos_drm_lastclose,
255 	.postclose		= exynos_drm_postclose,
256 	.get_vblank_counter	= drm_vblank_count,
257 	.enable_vblank		= exynos_drm_crtc_enable_vblank,
258 	.disable_vblank		= exynos_drm_crtc_disable_vblank,
259 	.gem_init_object	= exynos_drm_gem_init_object,
260 	.gem_free_object	= exynos_drm_gem_free_object,
261 	.gem_vm_ops		= &exynos_drm_gem_vm_ops,
262 	.dumb_create		= exynos_drm_gem_dumb_create,
263 	.dumb_map_offset	= exynos_drm_gem_dumb_map_offset,
264 	.dumb_destroy		= exynos_drm_gem_dumb_destroy,
265 	.prime_handle_to_fd	= drm_gem_prime_handle_to_fd,
266 	.prime_fd_to_handle	= drm_gem_prime_fd_to_handle,
267 	.gem_prime_export	= exynos_dmabuf_prime_export,
268 	.gem_prime_import	= exynos_dmabuf_prime_import,
269 	.ioctls			= exynos_ioctls,
270 	.fops			= &exynos_drm_driver_fops,
271 	.name	= DRIVER_NAME,
272 	.desc	= DRIVER_DESC,
273 	.date	= DRIVER_DATE,
274 	.major	= DRIVER_MAJOR,
275 	.minor	= DRIVER_MINOR,
276 };
277 
278 static int exynos_drm_platform_probe(struct platform_device *pdev)
279 {
280 	DRM_DEBUG_DRIVER("%s\n", __FILE__);
281 
282 	exynos_drm_driver.num_ioctls = DRM_ARRAY_SIZE(exynos_ioctls);
283 
284 	return drm_platform_init(&exynos_drm_driver, pdev);
285 }
286 
287 static int exynos_drm_platform_remove(struct platform_device *pdev)
288 {
289 	DRM_DEBUG_DRIVER("%s\n", __FILE__);
290 
291 	drm_platform_exit(&exynos_drm_driver, pdev);
292 
293 	return 0;
294 }
295 
296 static struct platform_driver exynos_drm_platform_driver = {
297 	.probe		= exynos_drm_platform_probe,
298 	.remove		= __devexit_p(exynos_drm_platform_remove),
299 	.driver		= {
300 		.owner	= THIS_MODULE,
301 		.name	= "exynos-drm",
302 	},
303 };
304 
305 static int __init exynos_drm_init(void)
306 {
307 	int ret;
308 
309 	DRM_DEBUG_DRIVER("%s\n", __FILE__);
310 
311 #ifdef CONFIG_DRM_EXYNOS_FIMD
312 	ret = platform_driver_register(&fimd_driver);
313 	if (ret < 0)
314 		goto out_fimd;
315 #endif
316 
317 #ifdef CONFIG_DRM_EXYNOS_HDMI
318 	ret = platform_driver_register(&hdmi_driver);
319 	if (ret < 0)
320 		goto out_hdmi;
321 	ret = platform_driver_register(&mixer_driver);
322 	if (ret < 0)
323 		goto out_mixer;
324 	ret = platform_driver_register(&exynos_drm_common_hdmi_driver);
325 	if (ret < 0)
326 		goto out_common_hdmi;
327 #endif
328 
329 #ifdef CONFIG_DRM_EXYNOS_VIDI
330 	ret = platform_driver_register(&vidi_driver);
331 	if (ret < 0)
332 		goto out_vidi;
333 #endif
334 
335 #ifdef CONFIG_DRM_EXYNOS_G2D
336 	ret = platform_driver_register(&g2d_driver);
337 	if (ret < 0)
338 		goto out_g2d;
339 #endif
340 
341 	ret = platform_driver_register(&exynos_drm_platform_driver);
342 	if (ret < 0)
343 		goto out;
344 
345 	return 0;
346 
347 out:
348 #ifdef CONFIG_DRM_EXYNOS_G2D
349 	platform_driver_unregister(&g2d_driver);
350 out_g2d:
351 #endif
352 
353 #ifdef CONFIG_DRM_EXYNOS_VIDI
354 out_vidi:
355 	platform_driver_unregister(&vidi_driver);
356 #endif
357 
358 #ifdef CONFIG_DRM_EXYNOS_HDMI
359 	platform_driver_unregister(&exynos_drm_common_hdmi_driver);
360 out_common_hdmi:
361 	platform_driver_unregister(&mixer_driver);
362 out_mixer:
363 	platform_driver_unregister(&hdmi_driver);
364 out_hdmi:
365 #endif
366 
367 #ifdef CONFIG_DRM_EXYNOS_FIMD
368 	platform_driver_unregister(&fimd_driver);
369 out_fimd:
370 #endif
371 	return ret;
372 }
373 
374 static void __exit exynos_drm_exit(void)
375 {
376 	DRM_DEBUG_DRIVER("%s\n", __FILE__);
377 
378 	platform_driver_unregister(&exynos_drm_platform_driver);
379 
380 #ifdef CONFIG_DRM_EXYNOS_G2D
381 	platform_driver_unregister(&g2d_driver);
382 #endif
383 
384 #ifdef CONFIG_DRM_EXYNOS_HDMI
385 	platform_driver_unregister(&exynos_drm_common_hdmi_driver);
386 	platform_driver_unregister(&mixer_driver);
387 	platform_driver_unregister(&hdmi_driver);
388 #endif
389 
390 #ifdef CONFIG_DRM_EXYNOS_VIDI
391 	platform_driver_unregister(&vidi_driver);
392 #endif
393 
394 #ifdef CONFIG_DRM_EXYNOS_FIMD
395 	platform_driver_unregister(&fimd_driver);
396 #endif
397 }
398 
399 module_init(exynos_drm_init);
400 module_exit(exynos_drm_exit);
401 
402 MODULE_AUTHOR("Inki Dae <inki.dae@samsung.com>");
403 MODULE_AUTHOR("Joonyoung Shim <jy0922.shim@samsung.com>");
404 MODULE_AUTHOR("Seung-Woo Kim <sw0312.kim@samsung.com>");
405 MODULE_DESCRIPTION("Samsung SoC DRM Driver");
406 MODULE_LICENSE("GPL");
407