2009-12-11 17:24:15 +08:00
|
|
|
/*
|
|
|
|
* Copyright © 2007 David Airlie
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* David Airlie
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/tty.h>
|
|
|
|
#include <linux/sysrq.h>
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/fb.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/screen_info.h>
|
2010-02-01 13:38:10 +08:00
|
|
|
#include <linux/vga_switcheroo.h>
|
2011-11-09 12:31:16 +08:00
|
|
|
#include <linux/console.h>
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2012-10-03 01:01:07 +08:00
|
|
|
#include <drm/drmP.h>
|
|
|
|
#include <drm/drm_crtc.h>
|
|
|
|
#include <drm/drm_crtc_helper.h>
|
|
|
|
#include <drm/drm_fb_helper.h>
|
2012-07-20 06:17:34 +08:00
|
|
|
|
|
|
|
#include "nouveau_drm.h"
|
|
|
|
#include "nouveau_gem.h"
|
|
|
|
#include "nouveau_bo.h"
|
2009-12-11 17:24:15 +08:00
|
|
|
#include "nouveau_fbcon.h"
|
2012-07-20 06:17:34 +08:00
|
|
|
#include "nouveau_chan.h"
|
|
|
|
|
|
|
|
#include "nouveau_crtc.h"
|
|
|
|
|
|
|
|
#include <core/client.h>
|
|
|
|
#include <core/device.h>
|
|
|
|
|
|
|
|
#include <subdev/fb.h>
|
|
|
|
|
|
|
|
MODULE_PARM_DESC(nofbaccel, "Disable fbcon acceleration");
|
|
|
|
static int nouveau_nofbaccel = 0;
|
|
|
|
module_param_named(nofbaccel, nouveau_nofbaccel, int, 0400);
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2010-10-05 14:41:29 +08:00
|
|
|
static void
|
|
|
|
nouveau_fbcon_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
|
|
|
|
{
|
2012-07-20 06:17:34 +08:00
|
|
|
struct nouveau_fbdev *fbcon = info->par;
|
2012-07-31 14:16:21 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(fbcon->dev);
|
2012-07-20 06:17:34 +08:00
|
|
|
struct nouveau_device *device = nv_device(drm->device);
|
2010-10-05 14:41:29 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (info->state != FBINFO_STATE_RUNNING)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ret = -ENODEV;
|
2010-10-14 12:55:23 +08:00
|
|
|
if (!in_interrupt() && !(info->flags & FBINFO_HWACCEL_DISABLED) &&
|
2012-07-20 06:17:34 +08:00
|
|
|
mutex_trylock(&drm->client.mutex)) {
|
|
|
|
if (device->card_type < NV_50)
|
2010-10-05 14:41:29 +08:00
|
|
|
ret = nv04_fbcon_fillrect(info, rect);
|
|
|
|
else
|
2012-07-20 06:17:34 +08:00
|
|
|
if (device->card_type < NV_C0)
|
2010-10-05 14:41:29 +08:00
|
|
|
ret = nv50_fbcon_fillrect(info, rect);
|
2010-11-24 08:52:43 +08:00
|
|
|
else
|
|
|
|
ret = nvc0_fbcon_fillrect(info, rect);
|
2012-07-20 06:17:34 +08:00
|
|
|
mutex_unlock(&drm->client.mutex);
|
2010-10-05 14:41:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ret == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ret != -ENODEV)
|
|
|
|
nouveau_fbcon_gpu_lockup(info);
|
|
|
|
cfb_fillrect(info, rect);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nouveau_fbcon_copyarea(struct fb_info *info, const struct fb_copyarea *image)
|
|
|
|
{
|
2012-07-20 06:17:34 +08:00
|
|
|
struct nouveau_fbdev *fbcon = info->par;
|
2012-07-31 14:16:21 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(fbcon->dev);
|
2012-07-20 06:17:34 +08:00
|
|
|
struct nouveau_device *device = nv_device(drm->device);
|
2010-10-05 14:41:29 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (info->state != FBINFO_STATE_RUNNING)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ret = -ENODEV;
|
2010-10-14 12:55:23 +08:00
|
|
|
if (!in_interrupt() && !(info->flags & FBINFO_HWACCEL_DISABLED) &&
|
2012-07-20 06:17:34 +08:00
|
|
|
mutex_trylock(&drm->client.mutex)) {
|
|
|
|
if (device->card_type < NV_50)
|
2010-10-05 14:41:29 +08:00
|
|
|
ret = nv04_fbcon_copyarea(info, image);
|
|
|
|
else
|
2012-07-20 06:17:34 +08:00
|
|
|
if (device->card_type < NV_C0)
|
2010-10-05 14:41:29 +08:00
|
|
|
ret = nv50_fbcon_copyarea(info, image);
|
2010-11-24 08:52:43 +08:00
|
|
|
else
|
|
|
|
ret = nvc0_fbcon_copyarea(info, image);
|
2012-07-20 06:17:34 +08:00
|
|
|
mutex_unlock(&drm->client.mutex);
|
2010-10-05 14:41:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ret == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ret != -ENODEV)
|
|
|
|
nouveau_fbcon_gpu_lockup(info);
|
|
|
|
cfb_copyarea(info, image);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nouveau_fbcon_imageblit(struct fb_info *info, const struct fb_image *image)
|
|
|
|
{
|
2012-07-20 06:17:34 +08:00
|
|
|
struct nouveau_fbdev *fbcon = info->par;
|
2012-07-31 14:16:21 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(fbcon->dev);
|
2012-07-20 06:17:34 +08:00
|
|
|
struct nouveau_device *device = nv_device(drm->device);
|
2010-10-05 14:41:29 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (info->state != FBINFO_STATE_RUNNING)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ret = -ENODEV;
|
2010-10-14 12:55:23 +08:00
|
|
|
if (!in_interrupt() && !(info->flags & FBINFO_HWACCEL_DISABLED) &&
|
2012-07-20 06:17:34 +08:00
|
|
|
mutex_trylock(&drm->client.mutex)) {
|
|
|
|
if (device->card_type < NV_50)
|
2010-10-05 14:41:29 +08:00
|
|
|
ret = nv04_fbcon_imageblit(info, image);
|
|
|
|
else
|
2012-07-20 06:17:34 +08:00
|
|
|
if (device->card_type < NV_C0)
|
2010-10-05 14:41:29 +08:00
|
|
|
ret = nv50_fbcon_imageblit(info, image);
|
2010-11-24 08:52:43 +08:00
|
|
|
else
|
|
|
|
ret = nvc0_fbcon_imageblit(info, image);
|
2012-07-20 06:17:34 +08:00
|
|
|
mutex_unlock(&drm->client.mutex);
|
2010-10-05 14:41:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ret == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ret != -ENODEV)
|
|
|
|
nouveau_fbcon_gpu_lockup(info);
|
|
|
|
cfb_imageblit(info, image);
|
|
|
|
}
|
|
|
|
|
2009-12-11 17:24:15 +08:00
|
|
|
static int
|
|
|
|
nouveau_fbcon_sync(struct fb_info *info)
|
|
|
|
{
|
2012-07-20 06:17:34 +08:00
|
|
|
struct nouveau_fbdev *fbcon = info->par;
|
2012-07-31 14:16:21 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(fbcon->dev);
|
2012-07-20 06:17:34 +08:00
|
|
|
struct nouveau_channel *chan = drm->channel;
|
2012-05-04 12:01:28 +08:00
|
|
|
int ret;
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2010-10-05 14:53:48 +08:00
|
|
|
if (!chan || !chan->accel_done || in_interrupt() ||
|
2009-12-11 17:24:15 +08:00
|
|
|
info->state != FBINFO_STATE_RUNNING ||
|
|
|
|
info->flags & FBINFO_HWACCEL_DISABLED)
|
|
|
|
return 0;
|
|
|
|
|
2012-07-20 06:17:34 +08:00
|
|
|
if (!mutex_trylock(&drm->client.mutex))
|
2010-10-14 12:55:23 +08:00
|
|
|
return 0;
|
|
|
|
|
2012-05-04 12:01:28 +08:00
|
|
|
ret = nouveau_channel_idle(chan);
|
2012-07-20 06:17:34 +08:00
|
|
|
mutex_unlock(&drm->client.mutex);
|
2009-12-11 17:24:15 +08:00
|
|
|
if (ret) {
|
2010-01-05 02:25:09 +08:00
|
|
|
nouveau_fbcon_gpu_lockup(info);
|
2009-12-11 17:24:15 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
chan->accel_done = false;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct fb_ops nouveau_fbcon_ops = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.fb_check_var = drm_fb_helper_check_var,
|
|
|
|
.fb_set_par = drm_fb_helper_set_par,
|
2010-10-05 14:41:29 +08:00
|
|
|
.fb_fillrect = nouveau_fbcon_fillrect,
|
|
|
|
.fb_copyarea = nouveau_fbcon_copyarea,
|
|
|
|
.fb_imageblit = nouveau_fbcon_imageblit,
|
2009-12-11 17:24:15 +08:00
|
|
|
.fb_sync = nouveau_fbcon_sync,
|
|
|
|
.fb_pan_display = drm_fb_helper_pan_display,
|
|
|
|
.fb_blank = drm_fb_helper_blank,
|
|
|
|
.fb_setcmap = drm_fb_helper_setcmap,
|
2010-09-26 19:47:24 +08:00
|
|
|
.fb_debug_enter = drm_fb_helper_debug_enter,
|
|
|
|
.fb_debug_leave = drm_fb_helper_debug_leave,
|
2009-12-11 17:24:15 +08:00
|
|
|
};
|
|
|
|
|
2010-10-05 14:41:29 +08:00
|
|
|
static struct fb_ops nouveau_fbcon_sw_ops = {
|
2010-01-27 22:03:18 +08:00
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.fb_check_var = drm_fb_helper_check_var,
|
|
|
|
.fb_set_par = drm_fb_helper_set_par,
|
2010-10-05 14:41:29 +08:00
|
|
|
.fb_fillrect = cfb_fillrect,
|
|
|
|
.fb_copyarea = cfb_copyarea,
|
|
|
|
.fb_imageblit = cfb_imageblit,
|
2010-01-27 22:03:18 +08:00
|
|
|
.fb_pan_display = drm_fb_helper_pan_display,
|
|
|
|
.fb_blank = drm_fb_helper_blank,
|
|
|
|
.fb_setcmap = drm_fb_helper_setcmap,
|
2010-09-26 19:47:24 +08:00
|
|
|
.fb_debug_enter = drm_fb_helper_debug_enter,
|
|
|
|
.fb_debug_leave = drm_fb_helper_debug_leave,
|
2010-01-27 22:03:18 +08:00
|
|
|
};
|
|
|
|
|
2009-12-11 17:24:15 +08:00
|
|
|
static void nouveau_fbcon_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
|
|
|
|
u16 blue, int regno)
|
|
|
|
{
|
|
|
|
struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
|
|
|
|
|
|
|
|
nv_crtc->lut.r[regno] = red;
|
|
|
|
nv_crtc->lut.g[regno] = green;
|
|
|
|
nv_crtc->lut.b[regno] = blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void nouveau_fbcon_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
|
|
|
|
u16 *blue, int regno)
|
|
|
|
{
|
|
|
|
struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
|
|
|
|
|
|
|
|
*red = nv_crtc->lut.r[regno];
|
|
|
|
*green = nv_crtc->lut.g[regno];
|
|
|
|
*blue = nv_crtc->lut.b[regno];
|
|
|
|
}
|
|
|
|
|
2010-03-30 13:34:13 +08:00
|
|
|
static void
|
2012-07-20 06:17:34 +08:00
|
|
|
nouveau_fbcon_zfill(struct drm_device *dev, struct nouveau_fbdev *fbcon)
|
2009-12-11 17:24:15 +08:00
|
|
|
{
|
2012-07-20 06:17:34 +08:00
|
|
|
struct fb_info *info = fbcon->helper.fbdev;
|
2009-12-11 17:24:15 +08:00
|
|
|
struct fb_fillrect rect;
|
|
|
|
|
|
|
|
/* Clear the entire fbcon. The drm will program every connector
|
|
|
|
* with it's preferred mode. If the sizes differ, one display will
|
|
|
|
* quite likely have garbage around the console.
|
|
|
|
*/
|
|
|
|
rect.dx = rect.dy = 0;
|
|
|
|
rect.width = info->var.xres_virtual;
|
|
|
|
rect.height = info->var.yres_virtual;
|
|
|
|
rect.color = 0;
|
|
|
|
rect.rop = ROP_COPY;
|
|
|
|
info->fbops->fb_fillrect(info, &rect);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2013-01-22 06:42:49 +08:00
|
|
|
nouveau_fbcon_create(struct drm_fb_helper *helper,
|
2010-03-30 13:34:14 +08:00
|
|
|
struct drm_fb_helper_surface_size *sizes)
|
2009-12-11 17:24:15 +08:00
|
|
|
{
|
2013-01-22 06:42:49 +08:00
|
|
|
struct nouveau_fbdev *fbcon = (struct nouveau_fbdev *)helper;
|
2012-07-20 06:17:34 +08:00
|
|
|
struct drm_device *dev = fbcon->dev;
|
2012-07-31 14:16:21 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(dev);
|
2012-07-20 06:17:34 +08:00
|
|
|
struct nouveau_device *device = nv_device(drm->device);
|
2009-12-11 17:24:15 +08:00
|
|
|
struct fb_info *info;
|
|
|
|
struct drm_framebuffer *fb;
|
|
|
|
struct nouveau_framebuffer *nouveau_fb;
|
2011-06-07 11:12:44 +08:00
|
|
|
struct nouveau_channel *chan;
|
2009-12-11 17:24:15 +08:00
|
|
|
struct nouveau_bo *nvbo;
|
2011-11-15 06:51:28 +08:00
|
|
|
struct drm_mode_fb_cmd2 mode_cmd;
|
2010-05-16 23:27:03 +08:00
|
|
|
struct pci_dev *pdev = dev->pdev;
|
2009-12-11 17:24:15 +08:00
|
|
|
int size, ret;
|
|
|
|
|
2010-03-30 13:34:13 +08:00
|
|
|
mode_cmd.width = sizes->surface_width;
|
|
|
|
mode_cmd.height = sizes->surface_height;
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2011-11-15 06:51:28 +08:00
|
|
|
mode_cmd.pitches[0] = mode_cmd.width * (sizes->surface_bpp >> 3);
|
|
|
|
mode_cmd.pitches[0] = roundup(mode_cmd.pitches[0], 256);
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2011-11-15 06:51:28 +08:00
|
|
|
mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
|
|
|
|
sizes->surface_depth);
|
|
|
|
|
|
|
|
size = mode_cmd.pitches[0] * mode_cmd.height;
|
2009-12-26 01:51:17 +08:00
|
|
|
size = roundup(size, PAGE_SIZE);
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2011-06-07 10:25:36 +08:00
|
|
|
ret = nouveau_gem_new(dev, size, 0, NOUVEAU_GEM_DOMAIN_VRAM,
|
|
|
|
0, 0x0000, &nvbo);
|
2009-12-11 17:24:15 +08:00
|
|
|
if (ret) {
|
2012-07-20 06:17:34 +08:00
|
|
|
NV_ERROR(drm, "failed to allocate framebuffer\n");
|
2009-12-11 17:24:15 +08:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = nouveau_bo_pin(nvbo, TTM_PL_FLAG_VRAM);
|
|
|
|
if (ret) {
|
2012-07-20 06:17:34 +08:00
|
|
|
NV_ERROR(drm, "failed to pin fb: %d\n", ret);
|
2013-06-27 19:38:21 +08:00
|
|
|
goto out_unref;
|
2009-12-11 17:24:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ret = nouveau_bo_map(nvbo);
|
|
|
|
if (ret) {
|
2012-07-20 06:17:34 +08:00
|
|
|
NV_ERROR(drm, "failed to map fb: %d\n", ret);
|
2013-06-27 19:38:21 +08:00
|
|
|
goto out_unpin;
|
2009-12-11 17:24:15 +08:00
|
|
|
}
|
|
|
|
|
2012-07-20 06:17:34 +08:00
|
|
|
chan = nouveau_nofbaccel ? NULL : drm->channel;
|
|
|
|
if (chan && device->card_type >= NV_50) {
|
|
|
|
ret = nouveau_bo_vma_add(nvbo, nv_client(chan->cli)->vm,
|
|
|
|
&fbcon->nouveau_fb.vma);
|
2011-06-07 11:12:44 +08:00
|
|
|
if (ret) {
|
2012-07-20 06:17:34 +08:00
|
|
|
NV_ERROR(drm, "failed to map fb into chan: %d\n", ret);
|
2011-06-07 11:12:44 +08:00
|
|
|
chan = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-11 17:24:15 +08:00
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
2012-07-20 06:17:34 +08:00
|
|
|
info = framebuffer_alloc(0, &pdev->dev);
|
2009-12-11 17:24:15 +08:00
|
|
|
if (!info) {
|
|
|
|
ret = -ENOMEM;
|
2013-06-27 19:38:21 +08:00
|
|
|
goto out_unlock;
|
2009-12-11 17:24:15 +08:00
|
|
|
}
|
|
|
|
|
2010-03-30 13:34:18 +08:00
|
|
|
ret = fb_alloc_cmap(&info->cmap, 256, 0);
|
|
|
|
if (ret) {
|
2009-12-11 17:24:15 +08:00
|
|
|
ret = -ENOMEM;
|
2013-06-27 19:38:21 +08:00
|
|
|
framebuffer_release(info);
|
|
|
|
goto out_unlock;
|
2009-12-11 17:24:15 +08:00
|
|
|
}
|
|
|
|
|
2012-07-20 06:17:34 +08:00
|
|
|
info->par = fbcon;
|
2010-03-30 13:34:13 +08:00
|
|
|
|
2012-07-20 06:17:34 +08:00
|
|
|
nouveau_framebuffer_init(dev, &fbcon->nouveau_fb, &mode_cmd, nvbo);
|
2010-03-30 13:34:13 +08:00
|
|
|
|
2012-07-20 06:17:34 +08:00
|
|
|
nouveau_fb = &fbcon->nouveau_fb;
|
2010-03-30 13:34:14 +08:00
|
|
|
fb = &nouveau_fb->base;
|
2010-03-30 13:34:13 +08:00
|
|
|
|
2010-03-30 13:34:14 +08:00
|
|
|
/* setup helper */
|
2012-07-20 06:17:34 +08:00
|
|
|
fbcon->helper.fb = fb;
|
|
|
|
fbcon->helper.fbdev = info;
|
2009-12-11 17:24:15 +08:00
|
|
|
|
|
|
|
strcpy(info->fix.id, "nouveaufb");
|
2013-06-27 19:38:21 +08:00
|
|
|
if (!chan)
|
2010-01-26 22:00:42 +08:00
|
|
|
info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_DISABLED;
|
|
|
|
else
|
|
|
|
info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_COPYAREA |
|
|
|
|
FBINFO_HWACCEL_FILLRECT |
|
|
|
|
FBINFO_HWACCEL_IMAGEBLIT;
|
2010-06-24 03:56:12 +08:00
|
|
|
info->flags |= FBINFO_CAN_FORCE_OUTPUT;
|
2010-10-05 14:41:29 +08:00
|
|
|
info->fbops = &nouveau_fbcon_sw_ops;
|
2011-01-17 09:22:38 +08:00
|
|
|
info->fix.smem_start = nvbo->bo.mem.bus.base +
|
|
|
|
nvbo->bo.mem.bus.offset;
|
2009-12-11 17:24:15 +08:00
|
|
|
info->fix.smem_len = size;
|
|
|
|
|
|
|
|
info->screen_base = nvbo_kmap_obj_iovirtual(nouveau_fb->nvbo);
|
|
|
|
info->screen_size = size;
|
|
|
|
|
2011-12-20 06:06:49 +08:00
|
|
|
drm_fb_helper_fill_fix(info, fb->pitches[0], fb->depth);
|
2012-07-20 06:17:34 +08:00
|
|
|
drm_fb_helper_fill_var(info, &fbcon->helper, sizes->fb_width, sizes->fb_height);
|
2010-05-16 23:27:03 +08:00
|
|
|
|
2012-02-06 17:58:19 +08:00
|
|
|
/* Use default scratch pixmap (info->pixmap.flags = FB_PIXMAP_SYSTEM) */
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2010-10-05 14:53:48 +08:00
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
2012-07-20 06:17:34 +08:00
|
|
|
if (chan) {
|
2010-10-05 14:41:29 +08:00
|
|
|
ret = -ENODEV;
|
2012-07-20 06:17:34 +08:00
|
|
|
if (device->card_type < NV_50)
|
2010-10-05 14:41:29 +08:00
|
|
|
ret = nv04_fbcon_accel_init(info);
|
|
|
|
else
|
2012-07-20 06:17:34 +08:00
|
|
|
if (device->card_type < NV_C0)
|
2010-10-05 14:41:29 +08:00
|
|
|
ret = nv50_fbcon_accel_init(info);
|
2010-11-24 08:52:43 +08:00
|
|
|
else
|
|
|
|
ret = nvc0_fbcon_accel_init(info);
|
2010-10-05 14:41:29 +08:00
|
|
|
|
|
|
|
if (ret == 0)
|
|
|
|
info->fbops = &nouveau_fbcon_ops;
|
2009-12-16 12:28:55 +08:00
|
|
|
}
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2012-07-20 06:17:34 +08:00
|
|
|
nouveau_fbcon_zfill(dev, fbcon);
|
2009-12-11 17:24:15 +08:00
|
|
|
|
|
|
|
/* To allow resizeing without swapping buffers */
|
2012-07-20 06:17:34 +08:00
|
|
|
NV_INFO(drm, "allocated %dx%d fb: 0x%lx, bo %p\n",
|
|
|
|
nouveau_fb->base.width, nouveau_fb->base.height,
|
|
|
|
nvbo->bo.offset, nvbo);
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2010-02-01 13:38:10 +08:00
|
|
|
vga_switcheroo_client_fb_set(dev->pdev, info);
|
2009-12-11 17:24:15 +08:00
|
|
|
return 0;
|
|
|
|
|
2013-06-27 19:38:21 +08:00
|
|
|
out_unlock:
|
2009-12-11 17:24:15 +08:00
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2013-06-27 19:38:21 +08:00
|
|
|
if (chan)
|
|
|
|
nouveau_bo_vma_del(nvbo, &fbcon->nouveau_fb.vma);
|
2013-07-08 12:50:54 +08:00
|
|
|
nouveau_bo_unmap(nvbo);
|
2013-06-27 19:38:21 +08:00
|
|
|
out_unpin:
|
|
|
|
nouveau_bo_unpin(nvbo);
|
|
|
|
out_unref:
|
|
|
|
nouveau_bo_ref(NULL, &nvbo);
|
2009-12-11 17:24:15 +08:00
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-05-07 14:42:51 +08:00
|
|
|
void
|
|
|
|
nouveau_fbcon_output_poll_changed(struct drm_device *dev)
|
2009-12-11 17:24:15 +08:00
|
|
|
{
|
2012-07-31 14:16:21 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(dev);
|
2013-07-23 21:45:11 +08:00
|
|
|
if (drm->fbcon)
|
|
|
|
drm_fb_helper_hotplug_event(&drm->fbcon->helper);
|
2009-12-11 17:24:15 +08:00
|
|
|
}
|
|
|
|
|
2010-07-04 00:36:39 +08:00
|
|
|
static int
|
2012-07-20 06:17:34 +08:00
|
|
|
nouveau_fbcon_destroy(struct drm_device *dev, struct nouveau_fbdev *fbcon)
|
2009-12-11 17:24:15 +08:00
|
|
|
{
|
2012-07-20 06:17:34 +08:00
|
|
|
struct nouveau_framebuffer *nouveau_fb = &fbcon->nouveau_fb;
|
2009-12-11 17:24:15 +08:00
|
|
|
struct fb_info *info;
|
|
|
|
|
2012-07-20 06:17:34 +08:00
|
|
|
if (fbcon->helper.fbdev) {
|
|
|
|
info = fbcon->helper.fbdev;
|
2009-12-11 17:24:15 +08:00
|
|
|
unregister_framebuffer(info);
|
2010-03-30 13:34:18 +08:00
|
|
|
if (info->cmap.len)
|
|
|
|
fb_dealloc_cmap(&info->cmap);
|
2010-03-30 13:34:14 +08:00
|
|
|
framebuffer_release(info);
|
|
|
|
}
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2010-03-30 13:34:14 +08:00
|
|
|
if (nouveau_fb->nvbo) {
|
2009-12-11 17:24:15 +08:00
|
|
|
nouveau_bo_unmap(nouveau_fb->nvbo);
|
2011-06-07 11:12:44 +08:00
|
|
|
nouveau_bo_vma_del(nouveau_fb->nvbo, &nouveau_fb->vma);
|
2013-06-27 19:38:21 +08:00
|
|
|
nouveau_bo_unpin(nouveau_fb->nvbo);
|
2013-10-02 16:15:17 +08:00
|
|
|
drm_gem_object_unreference_unlocked(&nouveau_fb->nvbo->gem);
|
2009-12-11 17:24:15 +08:00
|
|
|
nouveau_fb->nvbo = NULL;
|
|
|
|
}
|
2012-07-20 06:17:34 +08:00
|
|
|
drm_fb_helper_fini(&fbcon->helper);
|
drm: revamp framebuffer cleanup interfaces
We have two classes of framebuffer
- Created by the driver (atm only for fbdev), and the driver holds
onto the last reference count until destruction.
- Created by userspace and associated with a given fd. These
framebuffers will be reaped when their assoiciated fb is closed.
Now these two cases are set up differently, the framebuffers are on
different lists and hence destruction needs to clean up different
things. Also, for userspace framebuffers we remove them from any
current usage, whereas for internal framebuffers it is assumed that
the driver has done this already.
Long story short, we need two different ways to cleanup such drivers.
Three functions are involved in total:
- drm_framebuffer_remove: Convenience function which removes the fb
from all active usage and then drops the passed-in reference.
- drm_framebuffer_unregister_private: Will remove driver-private
framebuffers from relevant lists and drop the corresponding
references. Should be called for driver-private framebuffers before
dropping the last reference (or like for a lot of the drivers where
the fbdev is embedded someplace else, before doing the cleanup
manually).
- drm_framebuffer_cleanup: Final cleanup for both classes of fbs,
should be called by the driver's ->destroy callback once the last
reference is gone.
This patch just rolls out the new interfaces and updates all drivers
(by adding calls to drm_framebuffer_unregister_private at all the
right places)- no functional changes yet. Follow-on patches will move
drm core code around and update the lifetime management for
framebuffers, so that we are no longer required to keep framebuffers
alive by locking mode_config.mutex.
I've also updated the kerneldoc already.
vmwgfx seems to again be a bit special, at least I haven't figured out
how the fbdev support in that driver works. It smells like it's
external though.
v2: The i915 driver creates another private framebuffer in the
load-detect code. Adjust its cleanup code, too.
Reviewed-by: Rob Clark <rob@ti.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-12-11 03:42:17 +08:00
|
|
|
drm_framebuffer_unregister_private(&nouveau_fb->base);
|
2010-03-30 13:34:13 +08:00
|
|
|
drm_framebuffer_cleanup(&nouveau_fb->base);
|
2009-12-11 17:24:15 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2010-01-05 02:25:09 +08:00
|
|
|
|
|
|
|
void nouveau_fbcon_gpu_lockup(struct fb_info *info)
|
|
|
|
{
|
2012-07-20 06:17:34 +08:00
|
|
|
struct nouveau_fbdev *fbcon = info->par;
|
2012-07-31 14:16:21 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(fbcon->dev);
|
2010-01-05 02:25:09 +08:00
|
|
|
|
2012-07-20 06:17:34 +08:00
|
|
|
NV_ERROR(drm, "GPU lockup - switching to software fbcon\n");
|
2010-01-05 02:25:09 +08:00
|
|
|
info->flags |= FBINFO_HWACCEL_DISABLED;
|
|
|
|
}
|
2010-03-30 13:34:13 +08:00
|
|
|
|
2014-06-27 23:19:23 +08:00
|
|
|
static const struct drm_fb_helper_funcs nouveau_fbcon_helper_funcs = {
|
2010-03-30 13:34:18 +08:00
|
|
|
.gamma_set = nouveau_fbcon_gamma_set,
|
|
|
|
.gamma_get = nouveau_fbcon_gamma_get,
|
2013-01-22 06:42:49 +08:00
|
|
|
.fb_probe = nouveau_fbcon_create,
|
2010-03-30 13:34:18 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-07-20 06:17:34 +08:00
|
|
|
int
|
|
|
|
nouveau_fbcon_init(struct drm_device *dev)
|
2010-03-30 13:34:13 +08:00
|
|
|
{
|
2012-07-31 14:16:21 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(dev);
|
2012-07-20 06:17:34 +08:00
|
|
|
struct nouveau_fb *pfb = nouveau_fb(drm->device);
|
|
|
|
struct nouveau_fbdev *fbcon;
|
2011-11-07 03:32:04 +08:00
|
|
|
int preferred_bpp;
|
2010-06-06 17:50:03 +08:00
|
|
|
int ret;
|
2010-03-30 13:34:14 +08:00
|
|
|
|
2013-09-10 11:20:34 +08:00
|
|
|
if (!dev->mode_config.num_crtc ||
|
|
|
|
(dev->pdev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
|
2012-07-20 06:17:34 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
fbcon = kzalloc(sizeof(struct nouveau_fbdev), GFP_KERNEL);
|
|
|
|
if (!fbcon)
|
2010-03-30 13:34:14 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2012-07-20 06:17:34 +08:00
|
|
|
fbcon->dev = dev;
|
|
|
|
drm->fbcon = fbcon;
|
2014-06-27 23:19:24 +08:00
|
|
|
|
|
|
|
drm_fb_helper_prepare(dev, &fbcon->helper, &nouveau_fbcon_helper_funcs);
|
2010-03-30 13:34:14 +08:00
|
|
|
|
2012-07-20 06:17:34 +08:00
|
|
|
ret = drm_fb_helper_init(dev, &fbcon->helper,
|
2012-06-26 10:12:30 +08:00
|
|
|
dev->mode_config.num_crtc, 4);
|
2010-06-06 17:50:03 +08:00
|
|
|
if (ret) {
|
2012-07-20 06:17:34 +08:00
|
|
|
kfree(fbcon);
|
2010-06-06 17:50:03 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-07-20 06:17:34 +08:00
|
|
|
drm_fb_helper_single_add_all_connectors(&fbcon->helper);
|
2011-11-07 03:32:04 +08:00
|
|
|
|
2013-03-04 11:01:21 +08:00
|
|
|
if (pfb->ram->size <= 32 * 1024 * 1024)
|
2011-11-07 03:32:04 +08:00
|
|
|
preferred_bpp = 8;
|
2012-07-20 06:17:34 +08:00
|
|
|
else
|
2013-03-04 11:01:21 +08:00
|
|
|
if (pfb->ram->size <= 64 * 1024 * 1024)
|
2011-11-07 03:32:04 +08:00
|
|
|
preferred_bpp = 16;
|
|
|
|
else
|
|
|
|
preferred_bpp = 32;
|
|
|
|
|
2013-01-21 06:12:54 +08:00
|
|
|
/* disable all the possible outputs/crtcs before entering KMS mode */
|
|
|
|
drm_helper_disable_unused_functions(dev);
|
|
|
|
|
2012-07-20 06:17:34 +08:00
|
|
|
drm_fb_helper_initial_config(&fbcon->helper, preferred_bpp);
|
2010-03-30 13:34:13 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-20 06:17:34 +08:00
|
|
|
void
|
|
|
|
nouveau_fbcon_fini(struct drm_device *dev)
|
2010-03-30 13:34:13 +08:00
|
|
|
{
|
2012-07-31 14:16:21 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(dev);
|
2010-03-30 13:34:14 +08:00
|
|
|
|
2012-07-20 06:17:34 +08:00
|
|
|
if (!drm->fbcon)
|
2010-03-30 13:34:14 +08:00
|
|
|
return;
|
|
|
|
|
2012-07-20 06:17:34 +08:00
|
|
|
nouveau_fbcon_destroy(dev, drm->fbcon);
|
|
|
|
kfree(drm->fbcon);
|
|
|
|
drm->fbcon = NULL;
|
2010-03-30 13:34:13 +08:00
|
|
|
}
|
|
|
|
|
2013-11-04 09:15:38 +08:00
|
|
|
void
|
|
|
|
nouveau_fbcon_save_disable_accel(struct drm_device *dev)
|
2010-03-30 13:34:13 +08:00
|
|
|
{
|
2012-07-31 14:16:21 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(dev);
|
2013-11-04 09:15:38 +08:00
|
|
|
if (drm->fbcon) {
|
|
|
|
drm->fbcon->saved_flags = drm->fbcon->helper.fbdev->flags;
|
|
|
|
drm->fbcon->helper.fbdev->flags |= FBINFO_HWACCEL_DISABLED;
|
|
|
|
}
|
2010-03-30 13:34:13 +08:00
|
|
|
}
|
|
|
|
|
2013-11-04 09:15:38 +08:00
|
|
|
void
|
|
|
|
nouveau_fbcon_restore_accel(struct drm_device *dev)
|
2010-03-30 13:34:13 +08:00
|
|
|
{
|
2012-07-31 14:16:21 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(dev);
|
2013-11-04 09:15:38 +08:00
|
|
|
if (drm->fbcon) {
|
|
|
|
drm->fbcon->helper.fbdev->flags = drm->fbcon->saved_flags;
|
|
|
|
}
|
2010-03-30 13:34:13 +08:00
|
|
|
}
|
|
|
|
|
2013-11-04 09:15:38 +08:00
|
|
|
void
|
|
|
|
nouveau_fbcon_set_suspend(struct drm_device *dev, int state)
|
2010-03-30 13:34:13 +08:00
|
|
|
{
|
2012-07-31 14:16:21 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(dev);
|
2013-11-04 09:15:38 +08:00
|
|
|
if (drm->fbcon) {
|
|
|
|
console_lock();
|
2014-03-03 14:18:56 +08:00
|
|
|
if (state == 1)
|
2013-11-04 09:15:38 +08:00
|
|
|
nouveau_fbcon_save_disable_accel(dev);
|
|
|
|
fb_set_suspend(drm->fbcon->helper.fbdev, state);
|
drm/nouveau/kms: restore fbcon after display has been resumed
Under some complicated circumstances (boot, suspend, resume, attach
second display, suspend, resume, suspend, detach second display,
resume, suspend, attach second display, resume), the fb_set_suspend()
call can somehow result in a modeset being attempted before we're
ready for it and things blow up in fun ways.
Running display init first fixes the issue.
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
2014-06-30 11:04:14 +08:00
|
|
|
if (state == 0) {
|
2013-11-04 09:15:38 +08:00
|
|
|
nouveau_fbcon_restore_accel(dev);
|
drm/nouveau/kms: restore fbcon after display has been resumed
Under some complicated circumstances (boot, suspend, resume, attach
second display, suspend, resume, suspend, detach second display,
resume, suspend, attach second display, resume), the fb_set_suspend()
call can somehow result in a modeset being attempted before we're
ready for it and things blow up in fun ways.
Running display init first fixes the issue.
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
2014-06-30 11:04:14 +08:00
|
|
|
nouveau_fbcon_zfill(dev, drm->fbcon);
|
|
|
|
}
|
2013-11-04 09:15:38 +08:00
|
|
|
console_unlock();
|
|
|
|
}
|
2010-03-30 13:34:13 +08:00
|
|
|
}
|