blob: 12063019751bf4e5221834b046144d2482b5d1c7 [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
2 * Copyright © 2007 David Airlie
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * David Airlie
25 */
26#include <linux/module.h>
27#include <linux/slab.h>
Alex Deucher7c1fa1d2016-08-27 12:37:22 -040028#include <linux/pm_runtime.h>
Alex Deucherd38ceaf2015-04-20 16:55:21 -040029
30#include <drm/drmP.h>
31#include <drm/drm_crtc.h>
32#include <drm/drm_crtc_helper.h>
33#include <drm/amdgpu_drm.h>
34#include "amdgpu.h"
Marek Olšákfbd76d52015-05-14 23:48:26 +020035#include "cikd.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040036
37#include <drm/drm_fb_helper.h>
38
39#include <linux/vga_switcheroo.h>
40
Christian König5d43be02017-10-26 18:06:23 +020041#include "amdgpu_display.h"
42
Alex Deucherd38ceaf2015-04-20 16:55:21 -040043/* object hierarchy -
44 this contains a helper + a amdgpu fb
45 the helper contains a pointer to amdgpu framebuffer baseclass.
46*/
Alex Deucherd38ceaf2015-04-20 16:55:21 -040047
Alex Deucher7c1fa1d2016-08-27 12:37:22 -040048static int
49amdgpufb_open(struct fb_info *info, int user)
50{
51 struct amdgpu_fbdev *rfbdev = info->par;
52 struct amdgpu_device *adev = rfbdev->adev;
53 int ret = pm_runtime_get_sync(adev->ddev->dev);
54 if (ret < 0 && ret != -EACCES) {
55 pm_runtime_mark_last_busy(adev->ddev->dev);
56 pm_runtime_put_autosuspend(adev->ddev->dev);
57 return ret;
58 }
59 return 0;
60}
61
62static int
63amdgpufb_release(struct fb_info *info, int user)
64{
65 struct amdgpu_fbdev *rfbdev = info->par;
66 struct amdgpu_device *adev = rfbdev->adev;
67
68 pm_runtime_mark_last_busy(adev->ddev->dev);
69 pm_runtime_put_autosuspend(adev->ddev->dev);
70 return 0;
71}
72
Alex Deucherd38ceaf2015-04-20 16:55:21 -040073static struct fb_ops amdgpufb_ops = {
74 .owner = THIS_MODULE,
Stefan Christea4ffff2016-11-14 00:03:13 +010075 DRM_FB_HELPER_DEFAULT_OPS,
Alex Deucher7c1fa1d2016-08-27 12:37:22 -040076 .fb_open = amdgpufb_open,
77 .fb_release = amdgpufb_release,
Archit Taneja2dbaf3922015-07-31 16:22:00 +053078 .fb_fillrect = drm_fb_helper_cfb_fillrect,
79 .fb_copyarea = drm_fb_helper_cfb_copyarea,
80 .fb_imageblit = drm_fb_helper_cfb_imageblit,
Alex Deucherd38ceaf2015-04-20 16:55:21 -040081};
82
83
Laurent Pinchart8e911ab2016-10-18 01:41:17 +030084int amdgpu_align_pitch(struct amdgpu_device *adev, int width, int cpp, bool tiled)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040085{
86 int aligned = width;
87 int pitch_mask = 0;
88
Laurent Pinchart8e911ab2016-10-18 01:41:17 +030089 switch (cpp) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -040090 case 1:
91 pitch_mask = 255;
92 break;
93 case 2:
94 pitch_mask = 127;
95 break;
96 case 3:
97 case 4:
98 pitch_mask = 63;
99 break;
100 }
101
102 aligned += pitch_mask;
103 aligned &= ~pitch_mask;
Laurent Pinchart8e911ab2016-10-18 01:41:17 +0300104 return aligned * cpp;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400105}
106
107static void amdgpufb_destroy_pinned_object(struct drm_gem_object *gobj)
108{
Christian König765e7fb2016-09-15 15:06:50 +0200109 struct amdgpu_bo *abo = gem_to_amdgpu_bo(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400110 int ret;
111
Michel Dänzerc81a1a72017-04-28 17:28:14 +0900112 ret = amdgpu_bo_reserve(abo, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400113 if (likely(ret == 0)) {
Christian König765e7fb2016-09-15 15:06:50 +0200114 amdgpu_bo_kunmap(abo);
115 amdgpu_bo_unpin(abo);
116 amdgpu_bo_unreserve(abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400117 }
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300118 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400119}
120
121static int amdgpufb_create_pinned_object(struct amdgpu_fbdev *rfbdev,
122 struct drm_mode_fb_cmd2 *mode_cmd,
123 struct drm_gem_object **gobj_p)
124{
125 struct amdgpu_device *adev = rfbdev->adev;
126 struct drm_gem_object *gobj = NULL;
Christian König765e7fb2016-09-15 15:06:50 +0200127 struct amdgpu_bo *abo = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400128 bool fb_tiled = false; /* useful for testing */
Christian König5d43be02017-10-26 18:06:23 +0200129 u32 tiling_flags = 0, domain;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400130 int ret;
131 int aligned_size, size;
132 int height = mode_cmd->height;
Laurent Pinchart8e911ab2016-10-18 01:41:17 +0300133 u32 cpp;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400134
Laurent Pinchart8e911ab2016-10-18 01:41:17 +0300135 cpp = drm_format_plane_cpp(mode_cmd->pixel_format, 0);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400136
137 /* need to align pitch with crtc limits */
Laurent Pinchart8e911ab2016-10-18 01:41:17 +0300138 mode_cmd->pitches[0] = amdgpu_align_pitch(adev, mode_cmd->width, cpp,
139 fb_tiled);
Christian König5d43be02017-10-26 18:06:23 +0200140 domain = amdgpu_display_framebuffer_domains(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400141
142 height = ALIGN(mode_cmd->height, 8);
143 size = mode_cmd->pitches[0] * height;
144 aligned_size = ALIGN(size, PAGE_SIZE);
Christian König5d43be02017-10-26 18:06:23 +0200145 ret = amdgpu_gem_object_create(adev, aligned_size, 0, domain,
Christian König03f48dd2016-08-15 17:00:22 +0200146 AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED |
Pixel Dingcbabc8b2017-01-24 11:39:48 +0800147 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
148 AMDGPU_GEM_CREATE_VRAM_CLEARED,
Christian Könige1eb899b42017-08-25 09:14:43 +0200149 true, NULL, &gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400150 if (ret) {
Joe Perches7ca85292017-02-28 04:55:52 -0800151 pr_err("failed to allocate framebuffer (%d)\n", aligned_size);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400152 return -ENOMEM;
153 }
Christian König765e7fb2016-09-15 15:06:50 +0200154 abo = gem_to_amdgpu_bo(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400155
156 if (fb_tiled)
Marek Olšákfbd76d52015-05-14 23:48:26 +0200157 tiling_flags = AMDGPU_TILING_SET(ARRAY_MODE, GRPH_ARRAY_2D_TILED_THIN1);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400158
Christian König765e7fb2016-09-15 15:06:50 +0200159 ret = amdgpu_bo_reserve(abo, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400160 if (unlikely(ret != 0))
161 goto out_unref;
162
163 if (tiling_flags) {
Christian König765e7fb2016-09-15 15:06:50 +0200164 ret = amdgpu_bo_set_tiling_flags(abo,
Marek Olšák63ab1c22015-05-14 23:03:57 +0200165 tiling_flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400166 if (ret)
167 dev_err(adev->dev, "FB failed to set tiling flags\n");
168 }
169
170
Christian König5d43be02017-10-26 18:06:23 +0200171 ret = amdgpu_bo_pin(abo, domain, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400172 if (ret) {
Christian König765e7fb2016-09-15 15:06:50 +0200173 amdgpu_bo_unreserve(abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400174 goto out_unref;
175 }
Christian König765e7fb2016-09-15 15:06:50 +0200176 ret = amdgpu_bo_kmap(abo, NULL);
177 amdgpu_bo_unreserve(abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400178 if (ret) {
179 goto out_unref;
180 }
181
182 *gobj_p = gobj;
183 return 0;
184out_unref:
185 amdgpufb_destroy_pinned_object(gobj);
186 *gobj_p = NULL;
187 return ret;
188}
189
190static int amdgpufb_create(struct drm_fb_helper *helper,
191 struct drm_fb_helper_surface_size *sizes)
192{
193 struct amdgpu_fbdev *rfbdev = (struct amdgpu_fbdev *)helper;
194 struct amdgpu_device *adev = rfbdev->adev;
195 struct fb_info *info;
196 struct drm_framebuffer *fb = NULL;
197 struct drm_mode_fb_cmd2 mode_cmd;
198 struct drm_gem_object *gobj = NULL;
Christian König765e7fb2016-09-15 15:06:50 +0200199 struct amdgpu_bo *abo = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400200 int ret;
201 unsigned long tmp;
202
203 mode_cmd.width = sizes->surface_width;
204 mode_cmd.height = sizes->surface_height;
205
206 if (sizes->surface_bpp == 24)
207 sizes->surface_bpp = 32;
208
209 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
210 sizes->surface_depth);
211
212 ret = amdgpufb_create_pinned_object(rfbdev, &mode_cmd, &gobj);
213 if (ret) {
214 DRM_ERROR("failed to create fbcon object %d\n", ret);
215 return ret;
216 }
217
Christian König765e7fb2016-09-15 15:06:50 +0200218 abo = gem_to_amdgpu_bo(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400219
220 /* okay we have an object now allocate the framebuffer */
Archit Taneja2dbaf3922015-07-31 16:22:00 +0530221 info = drm_fb_helper_alloc_fbi(helper);
222 if (IS_ERR(info)) {
223 ret = PTR_ERR(info);
Daniel Vetterda7bdda2017-02-07 17:16:03 +0100224 goto out;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400225 }
226
227 info->par = rfbdev;
Alex Deucherdf7989f2015-11-02 10:52:32 -0500228 info->skip_vt_switch = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400229
Samuel Li9da3f2d2018-01-19 12:17:42 -0500230 ret = amdgpu_display_framebuffer_init(adev->ddev, &rfbdev->rfb,
231 &mode_cmd, gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400232 if (ret) {
233 DRM_ERROR("failed to initialize framebuffer %d\n", ret);
Daniel Vetterda7bdda2017-02-07 17:16:03 +0100234 goto out;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400235 }
236
237 fb = &rfbdev->rfb.base;
238
239 /* setup helper */
240 rfbdev->helper.fb = fb;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400241
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400242 strcpy(info->fix.id, "amdgpudrmfb");
243
Ville Syrjäläb00c6002016-12-14 23:31:35 +0200244 drm_fb_helper_fill_fix(info, fb->pitches[0], fb->format->depth);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400245
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400246 info->fbops = &amdgpufb_ops;
247
Christian König770d13b2018-01-12 14:52:22 +0100248 tmp = amdgpu_bo_gpu_offset(abo) - adev->gmc.vram_start;
249 info->fix.smem_start = adev->gmc.aper_base + tmp;
Christian König765e7fb2016-09-15 15:06:50 +0200250 info->fix.smem_len = amdgpu_bo_size(abo);
Christian Königf5e1c742017-07-20 23:45:18 +0200251 info->screen_base = amdgpu_bo_kptr(abo);
Christian König765e7fb2016-09-15 15:06:50 +0200252 info->screen_size = amdgpu_bo_size(abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400253
254 drm_fb_helper_fill_var(info, &rfbdev->helper, sizes->fb_width, sizes->fb_height);
255
256 /* setup aperture base/size for vesafb takeover */
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400257 info->apertures->ranges[0].base = adev->ddev->mode_config.fb_base;
Christian König770d13b2018-01-12 14:52:22 +0100258 info->apertures->ranges[0].size = adev->gmc.aper_size;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400259
260 /* Use default scratch pixmap (info->pixmap.flags = FB_PIXMAP_SYSTEM) */
261
262 if (info->screen_base == NULL) {
263 ret = -ENOSPC;
Daniel Vetterda7bdda2017-02-07 17:16:03 +0100264 goto out;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400265 }
266
267 DRM_INFO("fb mappable at 0x%lX\n", info->fix.smem_start);
Christian König770d13b2018-01-12 14:52:22 +0100268 DRM_INFO("vram apper at 0x%lX\n", (unsigned long)adev->gmc.aper_base);
Christian König765e7fb2016-09-15 15:06:50 +0200269 DRM_INFO("size %lu\n", (unsigned long)amdgpu_bo_size(abo));
Ville Syrjäläb00c6002016-12-14 23:31:35 +0200270 DRM_INFO("fb depth is %d\n", fb->format->depth);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400271 DRM_INFO(" pitch is %d\n", fb->pitches[0]);
272
273 vga_switcheroo_client_fb_set(adev->ddev->pdev, info);
274 return 0;
275
Daniel Vetterda7bdda2017-02-07 17:16:03 +0100276out:
Christian König765e7fb2016-09-15 15:06:50 +0200277 if (abo) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400278
279 }
280 if (fb && ret) {
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300281 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400282 drm_framebuffer_unregister_private(fb);
283 drm_framebuffer_cleanup(fb);
284 kfree(fb);
285 }
286 return ret;
287}
288
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400289static int amdgpu_fbdev_destroy(struct drm_device *dev, struct amdgpu_fbdev *rfbdev)
290{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400291 struct amdgpu_framebuffer *rfb = &rfbdev->rfb;
292
Archit Taneja2dbaf3922015-07-31 16:22:00 +0530293 drm_fb_helper_unregister_fbi(&rfbdev->helper);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400294
295 if (rfb->obj) {
296 amdgpufb_destroy_pinned_object(rfb->obj);
297 rfb->obj = NULL;
Michel Dänzera072c5f2017-09-11 17:04:41 +0900298 drm_framebuffer_unregister_private(&rfb->base);
299 drm_framebuffer_cleanup(&rfb->base);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400300 }
301 drm_fb_helper_fini(&rfbdev->helper);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400302
303 return 0;
304}
305
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400306static const struct drm_fb_helper_funcs amdgpu_fb_helper_funcs = {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400307 .fb_probe = amdgpufb_create,
308};
309
310int amdgpu_fbdev_init(struct amdgpu_device *adev)
311{
312 struct amdgpu_fbdev *rfbdev;
313 int bpp_sel = 32;
314 int ret;
315
316 /* don't init fbdev on hw without DCE */
317 if (!adev->mode_info.mode_config_initialized)
318 return 0;
319
Alex Deucherf49d45c2016-01-26 00:30:33 -0500320 /* don't init fbdev if there are no connectors */
321 if (list_empty(&adev->ddev->mode_config.connector_list))
322 return 0;
323
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400324 /* select 8 bpp console on low vram cards */
Christian König770d13b2018-01-12 14:52:22 +0100325 if (adev->gmc.real_vram_size <= (32*1024*1024))
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400326 bpp_sel = 8;
327
328 rfbdev = kzalloc(sizeof(struct amdgpu_fbdev), GFP_KERNEL);
329 if (!rfbdev)
330 return -ENOMEM;
331
332 rfbdev->adev = adev;
333 adev->mode_info.rfbdev = rfbdev;
334
335 drm_fb_helper_prepare(adev->ddev, &rfbdev->helper,
336 &amdgpu_fb_helper_funcs);
337
338 ret = drm_fb_helper_init(adev->ddev, &rfbdev->helper,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400339 AMDGPUFB_CONN_LIMIT);
340 if (ret) {
341 kfree(rfbdev);
342 return ret;
343 }
344
345 drm_fb_helper_single_add_all_connectors(&rfbdev->helper);
346
347 /* disable all the possible outputs/crtcs before entering KMS mode */
Andrey Grodzovsky93b8ca92017-05-30 16:49:59 -0400348 if (!amdgpu_device_has_dc_support(adev))
349 drm_helper_disable_unused_functions(adev->ddev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400350
351 drm_fb_helper_initial_config(&rfbdev->helper, bpp_sel);
352 return 0;
353}
354
355void amdgpu_fbdev_fini(struct amdgpu_device *adev)
356{
357 if (!adev->mode_info.rfbdev)
358 return;
359
360 amdgpu_fbdev_destroy(adev->ddev, adev->mode_info.rfbdev);
361 kfree(adev->mode_info.rfbdev);
362 adev->mode_info.rfbdev = NULL;
363}
364
365void amdgpu_fbdev_set_suspend(struct amdgpu_device *adev, int state)
366{
367 if (adev->mode_info.rfbdev)
Archit Taneja2dbaf3922015-07-31 16:22:00 +0530368 drm_fb_helper_set_suspend(&adev->mode_info.rfbdev->helper,
369 state);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400370}
371
372int amdgpu_fbdev_total_size(struct amdgpu_device *adev)
373{
374 struct amdgpu_bo *robj;
375 int size = 0;
376
377 if (!adev->mode_info.rfbdev)
378 return 0;
379
380 robj = gem_to_amdgpu_bo(adev->mode_info.rfbdev->rfb.obj);
381 size += amdgpu_bo_size(robj);
382 return size;
383}
384
385bool amdgpu_fbdev_robj_is_fb(struct amdgpu_device *adev, struct amdgpu_bo *robj)
386{
387 if (!adev->mode_info.rfbdev)
388 return false;
389 if (robj == gem_to_amdgpu_bo(adev->mode_info.rfbdev->rfb.obj))
390 return true;
391 return false;
392}