Linux Audio

Check our new training course

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