1 /* exynos_drm_fbdev.c
2  *
3  * Copyright (c) 2011 Samsung Electronics Co., Ltd.
4  * Authors:
5  *	Inki Dae <inki.dae@samsung.com>
6  *	Joonyoung Shim <jy0922.shim@samsung.com>
7  *	Seung-Woo Kim <sw0312.kim@samsung.com>
8  *
9  * This program is free software; you can redistribute  it and/or modify it
10  * under  the terms of  the GNU General  Public License as published by the
11  * Free Software Foundation;  either version 2 of the  License, or (at your
12  * option) any later version.
13  */
14 
15 #include <drm/drmP.h>
16 #include <drm/drm_crtc.h>
17 #include <drm/drm_fb_helper.h>
18 #include <drm/drm_crtc_helper.h>
19 #include <drm/exynos_drm.h>
20 
21 #include "exynos_drm_drv.h"
22 #include "exynos_drm_fb.h"
23 #include "exynos_drm_fbdev.h"
24 #include "exynos_drm_iommu.h"
25 
26 #define MAX_CONNECTOR		4
27 #define PREFERRED_BPP		32
28 
29 #define to_exynos_fbdev(x)	container_of(x, struct exynos_drm_fbdev,\
30 				drm_fb_helper)
31 
32 struct exynos_drm_fbdev {
33 	struct drm_fb_helper	drm_fb_helper;
34 	struct exynos_drm_gem	*exynos_gem;
35 };
36 
37 static int exynos_drm_fb_mmap(struct fb_info *info,
38 			struct vm_area_struct *vma)
39 {
40 	struct drm_fb_helper *helper = info->par;
41 	struct exynos_drm_fbdev *exynos_fbd = to_exynos_fbdev(helper);
42 	struct exynos_drm_gem *exynos_gem = exynos_fbd->exynos_gem;
43 	unsigned long vm_size;
44 	int ret;
45 
46 	vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
47 
48 	vm_size = vma->vm_end - vma->vm_start;
49 
50 	if (vm_size > exynos_gem->size)
51 		return -EINVAL;
52 
53 	ret = dma_mmap_attrs(to_dma_dev(helper->dev), vma, exynos_gem->cookie,
54 			     exynos_gem->dma_addr, exynos_gem->size,
55 			     exynos_gem->dma_attrs);
56 	if (ret < 0) {
57 		DRM_ERROR("failed to mmap.\n");
58 		return ret;
59 	}
60 
61 	return 0;
62 }
63 
64 static struct fb_ops exynos_drm_fb_ops = {
65 	.owner		= THIS_MODULE,
66 	DRM_FB_HELPER_DEFAULT_OPS,
67 	.fb_mmap        = exynos_drm_fb_mmap,
68 	.fb_fillrect	= drm_fb_helper_cfb_fillrect,
69 	.fb_copyarea	= drm_fb_helper_cfb_copyarea,
70 	.fb_imageblit	= drm_fb_helper_cfb_imageblit,
71 };
72 
73 static int exynos_drm_fbdev_update(struct drm_fb_helper *helper,
74 				   struct drm_fb_helper_surface_size *sizes,
75 				   struct exynos_drm_gem *exynos_gem)
76 {
77 	struct fb_info *fbi;
78 	struct drm_framebuffer *fb = helper->fb;
79 	unsigned int size = fb->width * fb->height * fb->format->cpp[0];
80 	unsigned int nr_pages;
81 	unsigned long offset;
82 
83 	fbi = drm_fb_helper_alloc_fbi(helper);
84 	if (IS_ERR(fbi)) {
85 		DRM_ERROR("failed to allocate fb info.\n");
86 		return PTR_ERR(fbi);
87 	}
88 
89 	fbi->par = helper;
90 	fbi->flags = FBINFO_FLAG_DEFAULT;
91 	fbi->fbops = &exynos_drm_fb_ops;
92 
93 	drm_fb_helper_fill_fix(fbi, fb->pitches[0], fb->format->depth);
94 	drm_fb_helper_fill_var(fbi, helper, sizes->fb_width, sizes->fb_height);
95 
96 	nr_pages = exynos_gem->size >> PAGE_SHIFT;
97 
98 	exynos_gem->kvaddr = (void __iomem *) vmap(exynos_gem->pages, nr_pages,
99 				VM_MAP, pgprot_writecombine(PAGE_KERNEL));
100 	if (!exynos_gem->kvaddr) {
101 		DRM_ERROR("failed to map pages to kernel space.\n");
102 		return -EIO;
103 	}
104 
105 	offset = fbi->var.xoffset * fb->format->cpp[0];
106 	offset += fbi->var.yoffset * fb->pitches[0];
107 
108 	fbi->screen_base = exynos_gem->kvaddr + offset;
109 	fbi->screen_size = size;
110 	fbi->fix.smem_len = size;
111 
112 	return 0;
113 }
114 
115 static int exynos_drm_fbdev_create(struct drm_fb_helper *helper,
116 				    struct drm_fb_helper_surface_size *sizes)
117 {
118 	struct exynos_drm_fbdev *exynos_fbdev = to_exynos_fbdev(helper);
119 	struct exynos_drm_gem *exynos_gem;
120 	struct drm_device *dev = helper->dev;
121 	struct drm_mode_fb_cmd2 mode_cmd = { 0 };
122 	unsigned long size;
123 	int ret;
124 
125 	DRM_DEBUG_KMS("surface width(%d), height(%d) and bpp(%d\n",
126 			sizes->surface_width, sizes->surface_height,
127 			sizes->surface_bpp);
128 
129 	mode_cmd.width = sizes->surface_width;
130 	mode_cmd.height = sizes->surface_height;
131 	mode_cmd.pitches[0] = sizes->surface_width * (sizes->surface_bpp >> 3);
132 	mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
133 							  sizes->surface_depth);
134 
135 	size = mode_cmd.pitches[0] * mode_cmd.height;
136 
137 	exynos_gem = exynos_drm_gem_create(dev, EXYNOS_BO_CONTIG, size);
138 	/*
139 	 * If physically contiguous memory allocation fails and if IOMMU is
140 	 * supported then try to get buffer from non physically contiguous
141 	 * memory area.
142 	 */
143 	if (IS_ERR(exynos_gem) && is_drm_iommu_supported(dev)) {
144 		dev_warn(dev->dev, "contiguous FB allocation failed, falling back to non-contiguous\n");
145 		exynos_gem = exynos_drm_gem_create(dev, EXYNOS_BO_NONCONTIG,
146 						   size);
147 	}
148 
149 	if (IS_ERR(exynos_gem))
150 		return PTR_ERR(exynos_gem);
151 
152 	exynos_fbdev->exynos_gem = exynos_gem;
153 
154 	helper->fb =
155 		exynos_drm_framebuffer_init(dev, &mode_cmd, &exynos_gem, 1);
156 	if (IS_ERR(helper->fb)) {
157 		DRM_ERROR("failed to create drm framebuffer.\n");
158 		ret = PTR_ERR(helper->fb);
159 		goto err_destroy_gem;
160 	}
161 
162 	ret = exynos_drm_fbdev_update(helper, sizes, exynos_gem);
163 	if (ret < 0)
164 		goto err_destroy_framebuffer;
165 
166 	return ret;
167 
168 err_destroy_framebuffer:
169 	drm_framebuffer_cleanup(helper->fb);
170 err_destroy_gem:
171 	exynos_drm_gem_destroy(exynos_gem);
172 
173 	/*
174 	 * if failed, all resources allocated above would be released by
175 	 * drm_mode_config_cleanup() when drm_load() had been called prior
176 	 * to any specific driver such as fimd or hdmi driver.
177 	 */
178 
179 	return ret;
180 }
181 
182 static const struct drm_fb_helper_funcs exynos_drm_fb_helper_funcs = {
183 	.fb_probe =	exynos_drm_fbdev_create,
184 };
185 
186 static bool exynos_drm_fbdev_is_anything_connected(struct drm_device *dev)
187 {
188 	struct drm_connector *connector;
189 	bool ret = false;
190 
191 	mutex_lock(&dev->mode_config.mutex);
192 	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
193 		if (connector->status != connector_status_connected)
194 			continue;
195 
196 		ret = true;
197 		break;
198 	}
199 	mutex_unlock(&dev->mode_config.mutex);
200 
201 	return ret;
202 }
203 
204 int exynos_drm_fbdev_init(struct drm_device *dev)
205 {
206 	struct exynos_drm_fbdev *fbdev;
207 	struct exynos_drm_private *private = dev->dev_private;
208 	struct drm_fb_helper *helper;
209 	int ret;
210 
211 	if (!dev->mode_config.num_crtc || !dev->mode_config.num_connector)
212 		return 0;
213 
214 	if (!exynos_drm_fbdev_is_anything_connected(dev))
215 		return 0;
216 
217 	fbdev = kzalloc(sizeof(*fbdev), GFP_KERNEL);
218 	if (!fbdev)
219 		return -ENOMEM;
220 
221 	private->fb_helper = helper = &fbdev->drm_fb_helper;
222 
223 	drm_fb_helper_prepare(dev, helper, &exynos_drm_fb_helper_funcs);
224 
225 	ret = drm_fb_helper_init(dev, helper, MAX_CONNECTOR);
226 	if (ret < 0) {
227 		DRM_ERROR("failed to initialize drm fb helper.\n");
228 		goto err_init;
229 	}
230 
231 	ret = drm_fb_helper_single_add_all_connectors(helper);
232 	if (ret < 0) {
233 		DRM_ERROR("failed to register drm_fb_helper_connector.\n");
234 		goto err_setup;
235 
236 	}
237 
238 	ret = drm_fb_helper_initial_config(helper, PREFERRED_BPP);
239 	if (ret < 0) {
240 		DRM_ERROR("failed to set up hw configuration.\n");
241 		goto err_setup;
242 	}
243 
244 	return 0;
245 
246 err_setup:
247 	drm_fb_helper_fini(helper);
248 
249 err_init:
250 	private->fb_helper = NULL;
251 	kfree(fbdev);
252 
253 	return ret;
254 }
255 
256 static void exynos_drm_fbdev_destroy(struct drm_device *dev,
257 				      struct drm_fb_helper *fb_helper)
258 {
259 	struct exynos_drm_fbdev *exynos_fbd = to_exynos_fbdev(fb_helper);
260 	struct exynos_drm_gem *exynos_gem = exynos_fbd->exynos_gem;
261 	struct drm_framebuffer *fb;
262 
263 	vunmap(exynos_gem->kvaddr);
264 
265 	/* release drm framebuffer and real buffer */
266 	if (fb_helper->fb && fb_helper->fb->funcs) {
267 		fb = fb_helper->fb;
268 		if (fb)
269 			drm_framebuffer_remove(fb);
270 	}
271 
272 	drm_fb_helper_unregister_fbi(fb_helper);
273 
274 	drm_fb_helper_fini(fb_helper);
275 }
276 
277 void exynos_drm_fbdev_fini(struct drm_device *dev)
278 {
279 	struct exynos_drm_private *private = dev->dev_private;
280 	struct exynos_drm_fbdev *fbdev;
281 
282 	if (!private || !private->fb_helper)
283 		return;
284 
285 	fbdev = to_exynos_fbdev(private->fb_helper);
286 
287 	exynos_drm_fbdev_destroy(dev, private->fb_helper);
288 	kfree(fbdev);
289 	private->fb_helper = NULL;
290 }
291 
292 void exynos_drm_fbdev_restore_mode(struct drm_device *dev)
293 {
294 	struct exynos_drm_private *private = dev->dev_private;
295 
296 	if (!private || !private->fb_helper)
297 		return;
298 
299 	drm_fb_helper_restore_fbdev_mode_unlocked(private->fb_helper);
300 }
301 
302 void exynos_drm_output_poll_changed(struct drm_device *dev)
303 {
304 	struct exynos_drm_private *private = dev->dev_private;
305 	struct drm_fb_helper *fb_helper = private->fb_helper;
306 
307 	if (fb_helper)
308 		drm_fb_helper_hotplug_event(fb_helper);
309 	else
310 		exynos_drm_fbdev_init(dev);
311 }
312