radeon_fb.c revision 1.9
1/*	$NetBSD: radeon_fb.c,v 1.9 2021/04/24 23:37:00 thorpej Exp $	*/
2
3/*
4 * Copyright �� 2007 David Airlie
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23 * DEALINGS IN THE SOFTWARE.
24 *
25 * Authors:
26 *     David Airlie
27 */
28#include <sys/cdefs.h>
29__KERNEL_RCSID(0, "$NetBSD: radeon_fb.c,v 1.9 2021/04/24 23:37:00 thorpej Exp $");
30
31#include <linux/module.h>
32#include <linux/slab.h>
33#include <linux/fb.h>
34
35#include <drm/drmP.h>
36#include <drm/drm_crtc.h>
37#include <drm/drm_crtc_helper.h>
38#include <drm/radeon_drm.h>
39#include "radeon.h"
40
41#include <drm/drm_fb_helper.h>
42
43#include <linux/vga_switcheroo.h>
44
45#ifdef __NetBSD__
46#include "radeondrmkmsfb.h"
47
48#include <linux/nbsd-namespace.h>
49#endif
50
51/* object hierarchy -
52   this contains a helper + a radeon fb
53   the helper contains a pointer to radeon framebuffer baseclass.
54*/
55struct radeon_fbdev {
56	struct drm_fb_helper helper;
57	struct radeon_framebuffer rfb;
58	struct list_head fbdev_list;
59	struct radeon_device *rdev;
60};
61
62#ifndef __NetBSD__
63static struct fb_ops radeonfb_ops = {
64	.owner = THIS_MODULE,
65	.fb_check_var = drm_fb_helper_check_var,
66	.fb_set_par = drm_fb_helper_set_par,
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	.fb_pan_display = drm_fb_helper_pan_display,
71	.fb_blank = drm_fb_helper_blank,
72	.fb_setcmap = drm_fb_helper_setcmap,
73	.fb_debug_enter = drm_fb_helper_debug_enter,
74	.fb_debug_leave = drm_fb_helper_debug_leave,
75};
76#endif
77
78
79int radeon_align_pitch(struct radeon_device *rdev, int width, int bpp, bool tiled)
80{
81	int aligned = width;
82	int align_large = (ASIC_IS_AVIVO(rdev)) || tiled;
83	int pitch_mask = 0;
84
85	switch (bpp / 8) {
86	case 1:
87		pitch_mask = align_large ? 255 : 127;
88		break;
89	case 2:
90		pitch_mask = align_large ? 127 : 31;
91		break;
92	case 3:
93	case 4:
94		pitch_mask = align_large ? 63 : 15;
95		break;
96	}
97
98	aligned += pitch_mask;
99	aligned &= ~pitch_mask;
100	return aligned;
101}
102
103static void radeonfb_destroy_pinned_object(struct drm_gem_object *gobj)
104{
105	struct radeon_bo *rbo = gem_to_radeon_bo(gobj);
106	int ret;
107
108	ret = radeon_bo_reserve(rbo, false);
109	if (likely(ret == 0)) {
110		radeon_bo_kunmap(rbo);
111		radeon_bo_unpin(rbo);
112		radeon_bo_unreserve(rbo);
113	}
114	drm_gem_object_unreference_unlocked(gobj);
115}
116
117static int radeonfb_create_pinned_object(struct radeon_fbdev *rfbdev,
118					 struct drm_mode_fb_cmd2 *mode_cmd,
119					 struct drm_gem_object **gobj_p)
120{
121	struct radeon_device *rdev = rfbdev->rdev;
122	struct drm_gem_object *gobj = NULL;
123	struct radeon_bo *rbo = NULL;
124	bool fb_tiled = false; /* useful for testing */
125	u32 tiling_flags = 0;
126	int ret;
127	int aligned_size, size;
128	int height = mode_cmd->height;
129	u32 bpp, depth;
130
131	drm_fb_get_bpp_depth(mode_cmd->pixel_format, &depth, &bpp);
132
133	/* need to align pitch with crtc limits */
134	mode_cmd->pitches[0] = radeon_align_pitch(rdev, mode_cmd->width, bpp,
135						  fb_tiled) * ((bpp + 1) / 8);
136
137	if (rdev->family >= CHIP_R600)
138		height = ALIGN(mode_cmd->height, 8);
139	size = mode_cmd->pitches[0] * height;
140	aligned_size = ALIGN(size, PAGE_SIZE);
141	ret = radeon_gem_object_create(rdev, aligned_size, 0,
142				       RADEON_GEM_DOMAIN_VRAM,
143				       0, true, &gobj);
144	if (ret) {
145		printk(KERN_ERR "failed to allocate framebuffer (%d)\n",
146		       aligned_size);
147		return -ENOMEM;
148	}
149	rbo = gem_to_radeon_bo(gobj);
150
151	if (fb_tiled)
152		tiling_flags = RADEON_TILING_MACRO;
153
154#ifdef __BIG_ENDIAN
155	switch (bpp) {
156	case 32:
157		tiling_flags |= RADEON_TILING_SWAP_32BIT;
158		break;
159	case 16:
160		tiling_flags |= RADEON_TILING_SWAP_16BIT;
161	default:
162		break;
163	}
164#endif
165
166	if (tiling_flags) {
167		ret = radeon_bo_set_tiling_flags(rbo,
168						 tiling_flags | RADEON_TILING_SURFACE,
169						 mode_cmd->pitches[0]);
170		if (ret)
171			dev_err(rdev->dev, "FB failed to set tiling flags\n");
172	}
173
174
175	ret = radeon_bo_reserve(rbo, false);
176	if (unlikely(ret != 0))
177		goto out_unref;
178	/* Only 27 bit offset for legacy CRTC */
179	ret = radeon_bo_pin_restricted(rbo, RADEON_GEM_DOMAIN_VRAM,
180				       ASIC_IS_AVIVO(rdev) ? 0 : 1 << 27,
181				       NULL);
182	if (ret) {
183		radeon_bo_unreserve(rbo);
184		goto out_unref;
185	}
186	if (fb_tiled)
187		radeon_bo_check_tiling(rbo, 0, 0);
188	ret = radeon_bo_kmap(rbo, NULL);
189	radeon_bo_unreserve(rbo);
190	if (ret) {
191		goto out_unref;
192	}
193
194	*gobj_p = gobj;
195	return 0;
196out_unref:
197	radeonfb_destroy_pinned_object(gobj);
198	*gobj_p = NULL;
199	return ret;
200}
201
202static int radeonfb_create(struct drm_fb_helper *helper,
203			   struct drm_fb_helper_surface_size *sizes)
204{
205	struct radeon_fbdev *rfbdev =
206		container_of(helper, struct radeon_fbdev, helper);
207	struct radeon_device *rdev = rfbdev->rdev;
208#ifndef __NetBSD__
209	struct fb_info *info;
210#endif
211	struct drm_framebuffer *fb = NULL;
212	struct drm_mode_fb_cmd2 mode_cmd;
213	struct drm_gem_object *gobj = NULL;
214	struct radeon_bo *rbo = NULL;
215	int ret;
216#ifndef __NetBSD__
217	unsigned long tmp;
218#endif
219
220	mode_cmd.width = sizes->surface_width;
221	mode_cmd.height = sizes->surface_height;
222
223	/* avivo can't scanout real 24bpp */
224	if ((sizes->surface_bpp == 24) && ASIC_IS_AVIVO(rdev))
225		sizes->surface_bpp = 32;
226
227	mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
228							  sizes->surface_depth);
229
230	ret = radeonfb_create_pinned_object(rfbdev, &mode_cmd, &gobj);
231	if (ret) {
232		DRM_ERROR("failed to create fbcon object %d\n", ret);
233		return ret;
234	}
235
236	rbo = gem_to_radeon_bo(gobj);
237
238#ifdef __NetBSD__
239	ret = radeon_framebuffer_init(rdev->ddev, &rfbdev->rfb, &mode_cmd, gobj);
240	if (ret) {
241		DRM_ERROR("failed to initialize framebuffer %d\n", ret);
242		goto out_unref;
243	}
244
245	(void)memset(rbo->kptr, 0, radeon_bo_size(rbo));
246
247    {
248	static const struct radeonfb_attach_args zero_rfa;
249	struct radeonfb_attach_args rfa = zero_rfa;
250
251	rfa.rfa_fb_helper = helper;
252	rfa.rfa_fb_sizes = *sizes;
253	rfa.rfa_fb_ptr = rbo->kptr;
254	rfa.rfa_fb_linebytes = mode_cmd.pitches[0];
255
256	helper->fbdev = config_found(rdev->ddev->dev, &rfa, NULL,
257	    CFARG_IATTR, "radeonfbbus",
258	    CFARG_EOL);
259	if (helper->fbdev == NULL) {
260		DRM_ERROR("failed to attach genfb\n");
261		goto out_unref;
262	}
263    }
264	fb = &rfbdev->rfb.base;
265	rfbdev->helper.fb = fb;
266#else
267	/* okay we have an object now allocate the framebuffer */
268	info = drm_fb_helper_alloc_fbi(helper);
269	if (IS_ERR(info)) {
270		ret = PTR_ERR(info);
271		goto out_unref;
272	}
273
274	info->par = rfbdev;
275
276	ret = radeon_framebuffer_init(rdev->ddev, &rfbdev->rfb, &mode_cmd, gobj);
277	if (ret) {
278		DRM_ERROR("failed to initialize framebuffer %d\n", ret);
279		goto out_destroy_fbi;
280	}
281
282	fb = &rfbdev->rfb.base;
283
284	/* setup helper */
285	rfbdev->helper.fb = fb;
286
287	memset_io(rbo->kptr, 0x0, radeon_bo_size(rbo));
288
289	strcpy(info->fix.id, "radeondrmfb");
290
291	drm_fb_helper_fill_fix(info, fb->pitches[0], fb->depth);
292
293	info->flags = FBINFO_DEFAULT | FBINFO_CAN_FORCE_OUTPUT;
294	info->fbops = &radeonfb_ops;
295
296	tmp = radeon_bo_gpu_offset(rbo) - rdev->mc.vram_start;
297	info->fix.smem_start = rdev->mc.aper_base + tmp;
298	info->fix.smem_len = radeon_bo_size(rbo);
299	info->screen_base = rbo->kptr;
300	info->screen_size = radeon_bo_size(rbo);
301
302	drm_fb_helper_fill_var(info, &rfbdev->helper, sizes->fb_width, sizes->fb_height);
303
304	/* setup aperture base/size for vesafb takeover */
305	info->apertures->ranges[0].base = rdev->ddev->mode_config.fb_base;
306	info->apertures->ranges[0].size = rdev->mc.aper_size;
307
308	/* Use default scratch pixmap (info->pixmap.flags = FB_PIXMAP_SYSTEM) */
309
310	if (info->screen_base == NULL) {
311		ret = -ENOSPC;
312		goto out_destroy_fbi;
313	}
314
315	DRM_INFO("fb mappable at 0x%lX\n",  info->fix.smem_start);
316	DRM_INFO("vram apper at 0x%lX\n",  (unsigned long)rdev->mc.aper_base);
317	DRM_INFO("size %lu\n", (unsigned long)radeon_bo_size(rbo));
318	DRM_INFO("fb depth is %d\n", fb->depth);
319	DRM_INFO("   pitch is %d\n", fb->pitches[0]);
320
321	vga_switcheroo_client_fb_set(rdev->ddev->pdev, info);
322#endif
323	return 0;
324
325#ifndef __NetBSD__
326out_destroy_fbi:
327	drm_fb_helper_release_fbi(helper);
328#endif
329out_unref:
330	if (rbo) {
331
332	}
333	if (fb && ret) {
334		drm_gem_object_unreference(gobj);
335		drm_framebuffer_unregister_private(fb);
336		drm_framebuffer_cleanup(fb);
337		kfree(fb);
338	}
339	return ret;
340}
341
342void radeon_fb_output_poll_changed(struct radeon_device *rdev)
343{
344	drm_fb_helper_hotplug_event(&rdev->mode_info.rfbdev->helper);
345}
346
347static int radeon_fbdev_destroy(struct drm_device *dev, struct radeon_fbdev *rfbdev)
348{
349	struct radeon_framebuffer *rfb = &rfbdev->rfb;
350#ifdef __NetBSD__
351	int ret;
352#endif
353
354#ifdef __NetBSD__
355	/* XXX errno NetBSD->Linux */
356	ret = -config_detach(rfbdev->helper.fbdev, DETACH_FORCE);
357	if (ret)
358		DRM_ERROR("failed to detach radeonfb: %d\n", ret);
359	rfbdev->helper.fbdev = NULL;
360#else
361	drm_fb_helper_unregister_fbi(&rfbdev->helper);
362	drm_fb_helper_release_fbi(&rfbdev->helper);
363#endif
364
365	if (rfb->obj) {
366		radeonfb_destroy_pinned_object(rfb->obj);
367		rfb->obj = NULL;
368	}
369	drm_fb_helper_fini(&rfbdev->helper);
370	drm_framebuffer_unregister_private(&rfb->base);
371	drm_framebuffer_cleanup(&rfb->base);
372
373	return 0;
374}
375
376static const struct drm_fb_helper_funcs radeon_fb_helper_funcs = {
377	.gamma_set = radeon_crtc_fb_gamma_set,
378	.gamma_get = radeon_crtc_fb_gamma_get,
379	.fb_probe = radeonfb_create,
380};
381
382int radeon_fbdev_init(struct radeon_device *rdev)
383{
384	struct radeon_fbdev *rfbdev;
385	int bpp_sel = 32;
386	int ret;
387
388	/* select 8 bpp console on RN50 or 16MB cards */
389	if (ASIC_IS_RN50(rdev) || rdev->mc.real_vram_size <= (32*1024*1024))
390		bpp_sel = 8;
391
392	rfbdev = kzalloc(sizeof(struct radeon_fbdev), GFP_KERNEL);
393	if (!rfbdev)
394		return -ENOMEM;
395
396	rfbdev->rdev = rdev;
397	rdev->mode_info.rfbdev = rfbdev;
398
399	drm_fb_helper_prepare(rdev->ddev, &rfbdev->helper,
400			      &radeon_fb_helper_funcs);
401
402	ret = drm_fb_helper_init(rdev->ddev, &rfbdev->helper,
403				 rdev->num_crtc,
404				 RADEONFB_CONN_LIMIT);
405	if (ret)
406		goto free;
407
408	ret = drm_fb_helper_single_add_all_connectors(&rfbdev->helper);
409	if (ret)
410		goto fini;
411
412	/* disable all the possible outputs/crtcs before entering KMS mode */
413	drm_helper_disable_unused_functions(rdev->ddev);
414
415	ret = drm_fb_helper_initial_config(&rfbdev->helper, bpp_sel);
416	if (ret)
417		goto fini;
418
419	return 0;
420
421fini:
422	drm_fb_helper_fini(&rfbdev->helper);
423free:
424	kfree(rfbdev);
425	return ret;
426}
427
428void radeon_fbdev_fini(struct radeon_device *rdev)
429{
430	if (!rdev->mode_info.rfbdev)
431		return;
432
433	radeon_fbdev_destroy(rdev->ddev, rdev->mode_info.rfbdev);
434	kfree(rdev->mode_info.rfbdev);
435	rdev->mode_info.rfbdev = NULL;
436}
437
438void radeon_fbdev_set_suspend(struct radeon_device *rdev, int state)
439{
440#ifndef __NetBSD__		/* XXX radeon fb suspend */
441	fb_set_suspend(rdev->mode_info.rfbdev->helper.fbdev, state);
442#endif
443}
444
445bool radeon_fbdev_robj_is_fb(struct radeon_device *rdev, struct radeon_bo *robj)
446{
447	if (robj == gem_to_radeon_bo(rdev->mode_info.rfbdev->rfb.obj))
448		return true;
449	return false;
450}
451
452void radeon_fb_add_connector(struct radeon_device *rdev, struct drm_connector *connector)
453{
454	drm_fb_helper_add_one_connector(&rdev->mode_info.rfbdev->helper, connector);
455}
456
457void radeon_fb_remove_connector(struct radeon_device *rdev, struct drm_connector *connector)
458{
459	drm_fb_helper_remove_one_connector(&rdev->mode_info.rfbdev->helper, connector);
460}
461
462void radeon_fbdev_restore_mode(struct radeon_device *rdev)
463{
464	struct radeon_fbdev *rfbdev = rdev->mode_info.rfbdev;
465	struct drm_fb_helper *fb_helper;
466	int ret;
467
468	if (!rfbdev)
469		return;
470
471	fb_helper = &rfbdev->helper;
472
473	ret = drm_fb_helper_restore_fbdev_mode_unlocked(fb_helper);
474	if (ret)
475		DRM_DEBUG("failed to restore crtc mode\n");
476}
477