blob: bab109e46d228a2c5d01743acdd82df235a39ba3 [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
41/* object hierarchy -
42 this contains a helper + a amdgpu fb
43 the helper contains a pointer to amdgpu framebuffer baseclass.
44*/
45struct amdgpu_fbdev {
46 struct drm_fb_helper helper;
47 struct amdgpu_framebuffer rfb;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040048 struct amdgpu_device *adev;
49};
50
Alex Deucher7c1fa1d2016-08-27 12:37:22 -040051static int
52amdgpufb_open(struct fb_info *info, int user)
53{
54 struct amdgpu_fbdev *rfbdev = info->par;
55 struct amdgpu_device *adev = rfbdev->adev;
56 int ret = pm_runtime_get_sync(adev->ddev->dev);
57 if (ret < 0 && ret != -EACCES) {
58 pm_runtime_mark_last_busy(adev->ddev->dev);
59 pm_runtime_put_autosuspend(adev->ddev->dev);
60 return ret;
61 }
62 return 0;
63}
64
65static int
66amdgpufb_release(struct fb_info *info, int user)
67{
68 struct amdgpu_fbdev *rfbdev = info->par;
69 struct amdgpu_device *adev = rfbdev->adev;
70
71 pm_runtime_mark_last_busy(adev->ddev->dev);
72 pm_runtime_put_autosuspend(adev->ddev->dev);
73 return 0;
74}
75
Alex Deucherd38ceaf2015-04-20 16:55:21 -040076static struct fb_ops amdgpufb_ops = {
77 .owner = THIS_MODULE,
Stefan Christea4ffff2016-11-14 00:03:13 +010078 DRM_FB_HELPER_DEFAULT_OPS,
Alex Deucher7c1fa1d2016-08-27 12:37:22 -040079 .fb_open = amdgpufb_open,
80 .fb_release = amdgpufb_release,
Archit Taneja2dbaf3922015-07-31 16:22:00 +053081 .fb_fillrect = drm_fb_helper_cfb_fillrect,
82 .fb_copyarea = drm_fb_helper_cfb_copyarea,
83 .fb_imageblit = drm_fb_helper_cfb_imageblit,
Alex Deucherd38ceaf2015-04-20 16:55:21 -040084};
85
86
Laurent Pinchart8e911ab2016-10-18 01:41:17 +030087int amdgpu_align_pitch(struct amdgpu_device *adev, int width, int cpp, bool tiled)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040088{
89 int aligned = width;
90 int pitch_mask = 0;
91
Laurent Pinchart8e911ab2016-10-18 01:41:17 +030092 switch (cpp) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -040093 case 1:
94 pitch_mask = 255;
95 break;
96 case 2:
97 pitch_mask = 127;
98 break;
99 case 3:
100 case 4:
101 pitch_mask = 63;
102 break;
103 }
104
105 aligned += pitch_mask;
106 aligned &= ~pitch_mask;
Laurent Pinchart8e911ab2016-10-18 01:41:17 +0300107 return aligned * cpp;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400108}
109
110static void amdgpufb_destroy_pinned_object(struct drm_gem_object *gobj)
111{
Christian König765e7fb2016-09-15 15:06:50 +0200112 struct amdgpu_bo *abo = gem_to_amdgpu_bo(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400113 int ret;
114
Christian König765e7fb2016-09-15 15:06:50 +0200115 ret = amdgpu_bo_reserve(abo, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400116 if (likely(ret == 0)) {
Christian König765e7fb2016-09-15 15:06:50 +0200117 amdgpu_bo_kunmap(abo);
118 amdgpu_bo_unpin(abo);
119 amdgpu_bo_unreserve(abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400120 }
121 drm_gem_object_unreference_unlocked(gobj);
122}
123
124static int amdgpufb_create_pinned_object(struct amdgpu_fbdev *rfbdev,
125 struct drm_mode_fb_cmd2 *mode_cmd,
126 struct drm_gem_object **gobj_p)
127{
128 struct amdgpu_device *adev = rfbdev->adev;
129 struct drm_gem_object *gobj = NULL;
Christian König765e7fb2016-09-15 15:06:50 +0200130 struct amdgpu_bo *abo = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400131 bool fb_tiled = false; /* useful for testing */
132 u32 tiling_flags = 0;
133 int ret;
134 int aligned_size, size;
135 int height = mode_cmd->height;
Laurent Pinchart8e911ab2016-10-18 01:41:17 +0300136 u32 cpp;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400137
Laurent Pinchart8e911ab2016-10-18 01:41:17 +0300138 cpp = drm_format_plane_cpp(mode_cmd->pixel_format, 0);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400139
140 /* need to align pitch with crtc limits */
Laurent Pinchart8e911ab2016-10-18 01:41:17 +0300141 mode_cmd->pitches[0] = amdgpu_align_pitch(adev, mode_cmd->width, cpp,
142 fb_tiled);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400143
144 height = ALIGN(mode_cmd->height, 8);
145 size = mode_cmd->pitches[0] * height;
146 aligned_size = ALIGN(size, PAGE_SIZE);
147 ret = amdgpu_gem_object_create(adev, aligned_size, 0,
148 AMDGPU_GEM_DOMAIN_VRAM,
Christian König03f48dd2016-08-15 17:00:22 +0200149 AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED |
Pixel Dingcbabc8b2017-01-24 11:39:48 +0800150 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS |
151 AMDGPU_GEM_CREATE_VRAM_CLEARED,
Alex Deucher857d9132015-08-27 00:14:16 -0400152 true, &gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400153 if (ret) {
154 printk(KERN_ERR "failed to allocate framebuffer (%d)\n",
155 aligned_size);
156 return -ENOMEM;
157 }
Christian König765e7fb2016-09-15 15:06:50 +0200158 abo = gem_to_amdgpu_bo(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400159
160 if (fb_tiled)
Marek Olšákfbd76d52015-05-14 23:48:26 +0200161 tiling_flags = AMDGPU_TILING_SET(ARRAY_MODE, GRPH_ARRAY_2D_TILED_THIN1);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400162
Christian König765e7fb2016-09-15 15:06:50 +0200163 ret = amdgpu_bo_reserve(abo, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400164 if (unlikely(ret != 0))
165 goto out_unref;
166
167 if (tiling_flags) {
Christian König765e7fb2016-09-15 15:06:50 +0200168 ret = amdgpu_bo_set_tiling_flags(abo,
Marek Olšák63ab1c22015-05-14 23:03:57 +0200169 tiling_flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400170 if (ret)
171 dev_err(adev->dev, "FB failed to set tiling flags\n");
172 }
173
174
Alex Deucher7fe28572016-12-07 16:14:38 -0500175 ret = amdgpu_bo_pin(abo, AMDGPU_GEM_DOMAIN_VRAM, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400176 if (ret) {
Christian König765e7fb2016-09-15 15:06:50 +0200177 amdgpu_bo_unreserve(abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400178 goto out_unref;
179 }
Christian König765e7fb2016-09-15 15:06:50 +0200180 ret = amdgpu_bo_kmap(abo, NULL);
181 amdgpu_bo_unreserve(abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400182 if (ret) {
183 goto out_unref;
184 }
185
186 *gobj_p = gobj;
187 return 0;
188out_unref:
189 amdgpufb_destroy_pinned_object(gobj);
190 *gobj_p = NULL;
191 return ret;
192}
193
194static int amdgpufb_create(struct drm_fb_helper *helper,
195 struct drm_fb_helper_surface_size *sizes)
196{
197 struct amdgpu_fbdev *rfbdev = (struct amdgpu_fbdev *)helper;
198 struct amdgpu_device *adev = rfbdev->adev;
199 struct fb_info *info;
200 struct drm_framebuffer *fb = NULL;
201 struct drm_mode_fb_cmd2 mode_cmd;
202 struct drm_gem_object *gobj = NULL;
Christian König765e7fb2016-09-15 15:06:50 +0200203 struct amdgpu_bo *abo = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400204 int ret;
205 unsigned long tmp;
206
207 mode_cmd.width = sizes->surface_width;
208 mode_cmd.height = sizes->surface_height;
209
210 if (sizes->surface_bpp == 24)
211 sizes->surface_bpp = 32;
212
213 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
214 sizes->surface_depth);
215
216 ret = amdgpufb_create_pinned_object(rfbdev, &mode_cmd, &gobj);
217 if (ret) {
218 DRM_ERROR("failed to create fbcon object %d\n", ret);
219 return ret;
220 }
221
Christian König765e7fb2016-09-15 15:06:50 +0200222 abo = gem_to_amdgpu_bo(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400223
224 /* okay we have an object now allocate the framebuffer */
Archit Taneja2dbaf3922015-07-31 16:22:00 +0530225 info = drm_fb_helper_alloc_fbi(helper);
226 if (IS_ERR(info)) {
227 ret = PTR_ERR(info);
Daniel Vetterda7bdda2017-02-07 17:16:03 +0100228 goto out;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400229 }
230
231 info->par = rfbdev;
Alex Deucherdf7989f2015-11-02 10:52:32 -0500232 info->skip_vt_switch = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400233
234 ret = amdgpu_framebuffer_init(adev->ddev, &rfbdev->rfb, &mode_cmd, gobj);
235 if (ret) {
236 DRM_ERROR("failed to initialize framebuffer %d\n", ret);
Daniel Vetterda7bdda2017-02-07 17:16:03 +0100237 goto out;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400238 }
239
240 fb = &rfbdev->rfb.base;
241
242 /* setup helper */
243 rfbdev->helper.fb = fb;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400244
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400245 strcpy(info->fix.id, "amdgpudrmfb");
246
Ville Syrjäläb00c6002016-12-14 23:31:35 +0200247 drm_fb_helper_fill_fix(info, fb->pitches[0], fb->format->depth);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400248
249 info->flags = FBINFO_DEFAULT | FBINFO_CAN_FORCE_OUTPUT;
250 info->fbops = &amdgpufb_ops;
251
Christian König765e7fb2016-09-15 15:06:50 +0200252 tmp = amdgpu_bo_gpu_offset(abo) - adev->mc.vram_start;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400253 info->fix.smem_start = adev->mc.aper_base + tmp;
Christian König765e7fb2016-09-15 15:06:50 +0200254 info->fix.smem_len = amdgpu_bo_size(abo);
255 info->screen_base = abo->kptr;
256 info->screen_size = amdgpu_bo_size(abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400257
258 drm_fb_helper_fill_var(info, &rfbdev->helper, sizes->fb_width, sizes->fb_height);
259
260 /* setup aperture base/size for vesafb takeover */
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400261 info->apertures->ranges[0].base = adev->ddev->mode_config.fb_base;
262 info->apertures->ranges[0].size = adev->mc.aper_size;
263
264 /* Use default scratch pixmap (info->pixmap.flags = FB_PIXMAP_SYSTEM) */
265
266 if (info->screen_base == NULL) {
267 ret = -ENOSPC;
Daniel Vetterda7bdda2017-02-07 17:16:03 +0100268 goto out;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400269 }
270
271 DRM_INFO("fb mappable at 0x%lX\n", info->fix.smem_start);
272 DRM_INFO("vram apper at 0x%lX\n", (unsigned long)adev->mc.aper_base);
Christian König765e7fb2016-09-15 15:06:50 +0200273 DRM_INFO("size %lu\n", (unsigned long)amdgpu_bo_size(abo));
Ville Syrjäläb00c6002016-12-14 23:31:35 +0200274 DRM_INFO("fb depth is %d\n", fb->format->depth);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400275 DRM_INFO(" pitch is %d\n", fb->pitches[0]);
276
277 vga_switcheroo_client_fb_set(adev->ddev->pdev, info);
278 return 0;
279
Daniel Vetterda7bdda2017-02-07 17:16:03 +0100280out:
Christian König765e7fb2016-09-15 15:06:50 +0200281 if (abo) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400282
283 }
284 if (fb && ret) {
Daniel Vettera9906fd2015-11-23 10:32:37 +0100285 drm_gem_object_unreference_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400286 drm_framebuffer_unregister_private(fb);
287 drm_framebuffer_cleanup(fb);
288 kfree(fb);
289 }
290 return ret;
291}
292
293void amdgpu_fb_output_poll_changed(struct amdgpu_device *adev)
294{
295 if (adev->mode_info.rfbdev)
296 drm_fb_helper_hotplug_event(&adev->mode_info.rfbdev->helper);
297}
298
299static int amdgpu_fbdev_destroy(struct drm_device *dev, struct amdgpu_fbdev *rfbdev)
300{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400301 struct amdgpu_framebuffer *rfb = &rfbdev->rfb;
302
Archit Taneja2dbaf3922015-07-31 16:22:00 +0530303 drm_fb_helper_unregister_fbi(&rfbdev->helper);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400304
305 if (rfb->obj) {
306 amdgpufb_destroy_pinned_object(rfb->obj);
307 rfb->obj = NULL;
308 }
309 drm_fb_helper_fini(&rfbdev->helper);
310 drm_framebuffer_unregister_private(&rfb->base);
311 drm_framebuffer_cleanup(&rfb->base);
312
313 return 0;
314}
315
316/** Sets the color ramps on behalf of fbcon */
317static void amdgpu_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
318 u16 blue, int regno)
319{
320 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
321
322 amdgpu_crtc->lut_r[regno] = red >> 6;
323 amdgpu_crtc->lut_g[regno] = green >> 6;
324 amdgpu_crtc->lut_b[regno] = blue >> 6;
325}
326
327/** Gets the color ramps on behalf of fbcon */
328static void amdgpu_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
329 u16 *blue, int regno)
330{
331 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
332
333 *red = amdgpu_crtc->lut_r[regno] << 6;
334 *green = amdgpu_crtc->lut_g[regno] << 6;
335 *blue = amdgpu_crtc->lut_b[regno] << 6;
336}
337
338static const struct drm_fb_helper_funcs amdgpu_fb_helper_funcs = {
339 .gamma_set = amdgpu_crtc_fb_gamma_set,
340 .gamma_get = amdgpu_crtc_fb_gamma_get,
341 .fb_probe = amdgpufb_create,
342};
343
344int amdgpu_fbdev_init(struct amdgpu_device *adev)
345{
346 struct amdgpu_fbdev *rfbdev;
347 int bpp_sel = 32;
348 int ret;
349
350 /* don't init fbdev on hw without DCE */
351 if (!adev->mode_info.mode_config_initialized)
352 return 0;
353
Alex Deucherf49d45c2016-01-26 00:30:33 -0500354 /* don't init fbdev if there are no connectors */
355 if (list_empty(&adev->ddev->mode_config.connector_list))
356 return 0;
357
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400358 /* select 8 bpp console on low vram cards */
359 if (adev->mc.real_vram_size <= (32*1024*1024))
360 bpp_sel = 8;
361
362 rfbdev = kzalloc(sizeof(struct amdgpu_fbdev), GFP_KERNEL);
363 if (!rfbdev)
364 return -ENOMEM;
365
366 rfbdev->adev = adev;
367 adev->mode_info.rfbdev = rfbdev;
368
369 drm_fb_helper_prepare(adev->ddev, &rfbdev->helper,
370 &amdgpu_fb_helper_funcs);
371
372 ret = drm_fb_helper_init(adev->ddev, &rfbdev->helper,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400373 AMDGPUFB_CONN_LIMIT);
374 if (ret) {
375 kfree(rfbdev);
376 return ret;
377 }
378
379 drm_fb_helper_single_add_all_connectors(&rfbdev->helper);
380
381 /* disable all the possible outputs/crtcs before entering KMS mode */
382 drm_helper_disable_unused_functions(adev->ddev);
383
384 drm_fb_helper_initial_config(&rfbdev->helper, bpp_sel);
385 return 0;
386}
387
388void amdgpu_fbdev_fini(struct amdgpu_device *adev)
389{
390 if (!adev->mode_info.rfbdev)
391 return;
392
393 amdgpu_fbdev_destroy(adev->ddev, adev->mode_info.rfbdev);
394 kfree(adev->mode_info.rfbdev);
395 adev->mode_info.rfbdev = NULL;
396}
397
398void amdgpu_fbdev_set_suspend(struct amdgpu_device *adev, int state)
399{
400 if (adev->mode_info.rfbdev)
Archit Taneja2dbaf3922015-07-31 16:22:00 +0530401 drm_fb_helper_set_suspend(&adev->mode_info.rfbdev->helper,
402 state);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400403}
404
405int amdgpu_fbdev_total_size(struct amdgpu_device *adev)
406{
407 struct amdgpu_bo *robj;
408 int size = 0;
409
410 if (!adev->mode_info.rfbdev)
411 return 0;
412
413 robj = gem_to_amdgpu_bo(adev->mode_info.rfbdev->rfb.obj);
414 size += amdgpu_bo_size(robj);
415 return size;
416}
417
418bool amdgpu_fbdev_robj_is_fb(struct amdgpu_device *adev, struct amdgpu_bo *robj)
419{
420 if (!adev->mode_info.rfbdev)
421 return false;
422 if (robj == gem_to_amdgpu_bo(adev->mode_info.rfbdev->rfb.obj))
423 return true;
424 return false;
425}
Alex Deucher8b7530b2015-10-02 16:59:34 -0400426
427void amdgpu_fbdev_restore_mode(struct amdgpu_device *adev)
428{
429 struct amdgpu_fbdev *afbdev = adev->mode_info.rfbdev;
430 struct drm_fb_helper *fb_helper;
431 int ret;
432
433 if (!afbdev)
434 return;
435
436 fb_helper = &afbdev->helper;
437
438 ret = drm_fb_helper_restore_fbdev_mode_unlocked(fb_helper);
439 if (ret)
440 DRM_DEBUG("failed to restore crtc mode\n");
441}