Commit 559c9eb6 authored by Thomas Zimmermann's avatar Thomas Zimmermann Committed by Ben Skeggs

drm/nouveau/kms: Remove struct nouveau_framebuffer

After its cleanup, struct nouveau_framebuffer is only a wrapper around
struct drm_framebuffer. Use the latter directly.
Signed-off-by: default avatarThomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 18340587
...@@ -40,11 +40,11 @@ nv50_wndw_ctxdma_del(struct nv50_wndw_ctxdma *ctxdma) ...@@ -40,11 +40,11 @@ nv50_wndw_ctxdma_del(struct nv50_wndw_ctxdma *ctxdma)
} }
static struct nv50_wndw_ctxdma * static struct nv50_wndw_ctxdma *
nv50_wndw_ctxdma_new(struct nv50_wndw *wndw, struct nouveau_framebuffer *fb) nv50_wndw_ctxdma_new(struct nv50_wndw *wndw, struct drm_framebuffer *fb)
{ {
struct nouveau_drm *drm = nouveau_drm(fb->base.dev); struct nouveau_drm *drm = nouveau_drm(fb->dev);
struct nv50_wndw_ctxdma *ctxdma; struct nv50_wndw_ctxdma *ctxdma;
struct nouveau_bo *nvbo = nouveau_gem_object(fb->base.obj[0]); struct nouveau_bo *nvbo = nouveau_gem_object(fb->obj[0]);
const u8 kind = nvbo->kind; const u8 kind = nvbo->kind;
const u32 handle = 0xfb000000 | kind; const u32 handle = 0xfb000000 | kind;
struct { struct {
...@@ -236,16 +236,16 @@ nv50_wndw_atomic_check_acquire(struct nv50_wndw *wndw, bool modeset, ...@@ -236,16 +236,16 @@ nv50_wndw_atomic_check_acquire(struct nv50_wndw *wndw, bool modeset,
struct nv50_wndw_atom *asyw, struct nv50_wndw_atom *asyw,
struct nv50_head_atom *asyh) struct nv50_head_atom *asyh)
{ {
struct nouveau_framebuffer *fb = nouveau_framebuffer(asyw->state.fb); struct drm_framebuffer *fb = asyw->state.fb;
struct nouveau_drm *drm = nouveau_drm(wndw->plane.dev); struct nouveau_drm *drm = nouveau_drm(wndw->plane.dev);
struct nouveau_bo *nvbo = nouveau_gem_object(fb->base.obj[0]); struct nouveau_bo *nvbo = nouveau_gem_object(fb->obj[0]);
int ret; int ret;
NV_ATOMIC(drm, "%s acquire\n", wndw->plane.name); NV_ATOMIC(drm, "%s acquire\n", wndw->plane.name);
if (asyw->state.fb != armw->state.fb || !armw->visible || modeset) { if (fb != armw->state.fb || !armw->visible || modeset) {
asyw->image.w = fb->base.width; asyw->image.w = fb->width;
asyw->image.h = fb->base.height; asyw->image.h = fb->height;
asyw->image.kind = nvbo->kind; asyw->image.kind = nvbo->kind;
ret = nv50_wndw_atomic_check_acquire_rgb(asyw); ret = nv50_wndw_atomic_check_acquire_rgb(asyw);
...@@ -261,13 +261,13 @@ nv50_wndw_atomic_check_acquire(struct nv50_wndw *wndw, bool modeset, ...@@ -261,13 +261,13 @@ nv50_wndw_atomic_check_acquire(struct nv50_wndw *wndw, bool modeset,
asyw->image.blockh = nvbo->mode >> 4; asyw->image.blockh = nvbo->mode >> 4;
else else
asyw->image.blockh = nvbo->mode; asyw->image.blockh = nvbo->mode;
asyw->image.blocks[0] = fb->base.pitches[0] / 64; asyw->image.blocks[0] = fb->pitches[0] / 64;
asyw->image.pitch[0] = 0; asyw->image.pitch[0] = 0;
} else { } else {
asyw->image.layout = 1; asyw->image.layout = 1;
asyw->image.blockh = 0; asyw->image.blockh = 0;
asyw->image.blocks[0] = 0; asyw->image.blocks[0] = 0;
asyw->image.pitch[0] = fb->base.pitches[0]; asyw->image.pitch[0] = fb->pitches[0];
} }
if (!asyh->state.async_flip) if (!asyh->state.async_flip)
...@@ -488,7 +488,7 @@ nv50_wndw_cleanup_fb(struct drm_plane *plane, struct drm_plane_state *old_state) ...@@ -488,7 +488,7 @@ nv50_wndw_cleanup_fb(struct drm_plane *plane, struct drm_plane_state *old_state)
static int static int
nv50_wndw_prepare_fb(struct drm_plane *plane, struct drm_plane_state *state) nv50_wndw_prepare_fb(struct drm_plane *plane, struct drm_plane_state *state)
{ {
struct nouveau_framebuffer *fb = nouveau_framebuffer(state->fb); struct drm_framebuffer *fb = state->fb;
struct nouveau_drm *drm = nouveau_drm(plane->dev); struct nouveau_drm *drm = nouveau_drm(plane->dev);
struct nv50_wndw *wndw = nv50_wndw(plane); struct nv50_wndw *wndw = nv50_wndw(plane);
struct nv50_wndw_atom *asyw = nv50_wndw_atom(state); struct nv50_wndw_atom *asyw = nv50_wndw_atom(state);
...@@ -497,11 +497,11 @@ nv50_wndw_prepare_fb(struct drm_plane *plane, struct drm_plane_state *state) ...@@ -497,11 +497,11 @@ nv50_wndw_prepare_fb(struct drm_plane *plane, struct drm_plane_state *state)
struct nv50_wndw_ctxdma *ctxdma; struct nv50_wndw_ctxdma *ctxdma;
int ret; int ret;
NV_ATOMIC(drm, "%s prepare: %p\n", plane->name, state->fb); NV_ATOMIC(drm, "%s prepare: %p\n", plane->name, fb);
if (!asyw->state.fb) if (!asyw->state.fb)
return 0; return 0;
nvbo = nouveau_gem_object(state->fb->obj[0]); nvbo = nouveau_gem_object(fb->obj[0]);
ret = nouveau_bo_pin(nvbo, TTM_PL_FLAG_VRAM, true); ret = nouveau_bo_pin(nvbo, TTM_PL_FLAG_VRAM, true);
if (ret) if (ret)
return ret; return ret;
......
...@@ -189,10 +189,10 @@ int ...@@ -189,10 +189,10 @@ int
nouveau_framebuffer_new(struct drm_device *dev, nouveau_framebuffer_new(struct drm_device *dev,
const struct drm_mode_fb_cmd2 *mode_cmd, const struct drm_mode_fb_cmd2 *mode_cmd,
struct drm_gem_object *gem, struct drm_gem_object *gem,
struct nouveau_framebuffer **pfb) struct drm_framebuffer **pfb)
{ {
struct nouveau_drm *drm = nouveau_drm(dev); struct nouveau_drm *drm = nouveau_drm(dev);
struct nouveau_framebuffer *fb; struct drm_framebuffer *fb;
int ret; int ret;
/* YUV overlays have special requirements pre-NV50 */ /* YUV overlays have special requirements pre-NV50 */
...@@ -218,10 +218,10 @@ nouveau_framebuffer_new(struct drm_device *dev, ...@@ -218,10 +218,10 @@ nouveau_framebuffer_new(struct drm_device *dev,
if (!(fb = *pfb = kzalloc(sizeof(*fb), GFP_KERNEL))) if (!(fb = *pfb = kzalloc(sizeof(*fb), GFP_KERNEL)))
return -ENOMEM; return -ENOMEM;
drm_helper_mode_fill_fb_struct(dev, &fb->base, mode_cmd); drm_helper_mode_fill_fb_struct(dev, fb, mode_cmd);
fb->base.obj[0] = gem; fb->obj[0] = gem;
ret = drm_framebuffer_init(dev, &fb->base, &nouveau_framebuffer_funcs); ret = drm_framebuffer_init(dev, fb, &nouveau_framebuffer_funcs);
if (ret) if (ret)
kfree(fb); kfree(fb);
return ret; return ret;
...@@ -232,7 +232,7 @@ nouveau_user_framebuffer_create(struct drm_device *dev, ...@@ -232,7 +232,7 @@ nouveau_user_framebuffer_create(struct drm_device *dev,
struct drm_file *file_priv, struct drm_file *file_priv,
const struct drm_mode_fb_cmd2 *mode_cmd) const struct drm_mode_fb_cmd2 *mode_cmd)
{ {
struct nouveau_framebuffer *fb; struct drm_framebuffer *fb;
struct drm_gem_object *gem; struct drm_gem_object *gem;
int ret; int ret;
...@@ -242,7 +242,7 @@ nouveau_user_framebuffer_create(struct drm_device *dev, ...@@ -242,7 +242,7 @@ nouveau_user_framebuffer_create(struct drm_device *dev,
ret = nouveau_framebuffer_new(dev, mode_cmd, gem, &fb); ret = nouveau_framebuffer_new(dev, mode_cmd, gem, &fb);
if (ret == 0) if (ret == 0)
return &fb->base; return fb;
drm_gem_object_put_unlocked(gem); drm_gem_object_put_unlocked(gem);
return ERR_PTR(ret); return ERR_PTR(ret);
......
...@@ -8,21 +8,11 @@ ...@@ -8,21 +8,11 @@
#include <drm/drm_framebuffer.h> #include <drm/drm_framebuffer.h>
struct nouveau_framebuffer {
struct drm_framebuffer base;
};
static inline struct nouveau_framebuffer *
nouveau_framebuffer(struct drm_framebuffer *fb)
{
return container_of(fb, struct nouveau_framebuffer, base);
}
int int
nouveau_framebuffer_new(struct drm_device *dev, nouveau_framebuffer_new(struct drm_device *dev,
const struct drm_mode_fb_cmd2 *mode_cmd, const struct drm_mode_fb_cmd2 *mode_cmd,
struct drm_gem_object *gem, struct drm_gem_object *gem,
struct nouveau_framebuffer **pfb); struct drm_framebuffer **pfb);
struct nouveau_display { struct nouveau_display {
void *priv; void *priv;
......
...@@ -312,7 +312,7 @@ nouveau_fbcon_create(struct drm_fb_helper *helper, ...@@ -312,7 +312,7 @@ nouveau_fbcon_create(struct drm_fb_helper *helper,
struct nouveau_drm *drm = nouveau_drm(dev); struct nouveau_drm *drm = nouveau_drm(dev);
struct nvif_device *device = &drm->client.device; struct nvif_device *device = &drm->client.device;
struct fb_info *info; struct fb_info *info;
struct nouveau_framebuffer *fb; struct drm_framebuffer *fb;
struct nouveau_channel *chan; struct nouveau_channel *chan;
struct nouveau_bo *nvbo; struct nouveau_bo *nvbo;
struct drm_mode_fb_cmd2 mode_cmd; struct drm_mode_fb_cmd2 mode_cmd;
...@@ -367,7 +367,7 @@ nouveau_fbcon_create(struct drm_fb_helper *helper, ...@@ -367,7 +367,7 @@ nouveau_fbcon_create(struct drm_fb_helper *helper,
} }
/* setup helper */ /* setup helper */
fbcon->helper.fb = &fb->base; fbcon->helper.fb = fb;
if (!chan) if (!chan)
info->flags = FBINFO_HWACCEL_DISABLED; info->flags = FBINFO_HWACCEL_DISABLED;
...@@ -393,7 +393,7 @@ nouveau_fbcon_create(struct drm_fb_helper *helper, ...@@ -393,7 +393,7 @@ nouveau_fbcon_create(struct drm_fb_helper *helper,
/* To allow resizeing without swapping buffers */ /* To allow resizeing without swapping buffers */
NV_INFO(drm, "allocated %dx%d fb: 0x%llx, bo %p\n", NV_INFO(drm, "allocated %dx%d fb: 0x%llx, bo %p\n",
fb->base.width, fb->base.height, nvbo->bo.offset, nvbo); fb->width, fb->height, nvbo->bo.offset, nvbo);
vga_switcheroo_client_fb_set(dev->pdev, info); vga_switcheroo_client_fb_set(dev->pdev, info);
return 0; return 0;
...@@ -413,18 +413,18 @@ nouveau_fbcon_create(struct drm_fb_helper *helper, ...@@ -413,18 +413,18 @@ nouveau_fbcon_create(struct drm_fb_helper *helper,
static int static int
nouveau_fbcon_destroy(struct drm_device *dev, struct nouveau_fbdev *fbcon) nouveau_fbcon_destroy(struct drm_device *dev, struct nouveau_fbdev *fbcon)
{ {
struct nouveau_framebuffer *nouveau_fb = nouveau_framebuffer(fbcon->helper.fb); struct drm_framebuffer *fb = fbcon->helper.fb;
struct nouveau_bo *nvbo; struct nouveau_bo *nvbo;
drm_fb_helper_unregister_fbi(&fbcon->helper); drm_fb_helper_unregister_fbi(&fbcon->helper);
drm_fb_helper_fini(&fbcon->helper); drm_fb_helper_fini(&fbcon->helper);
if (nouveau_fb && nouveau_fb->base.obj[0]) { if (fb && fb->obj[0]) {
nvbo = nouveau_gem_object(nouveau_fb->base.obj[0]); nvbo = nouveau_gem_object(fb->obj[0]);
nouveau_vma_del(&fbcon->vma); nouveau_vma_del(&fbcon->vma);
nouveau_bo_unmap(nvbo); nouveau_bo_unmap(nvbo);
nouveau_bo_unpin(nvbo); nouveau_bo_unpin(nvbo);
drm_framebuffer_put(&nouveau_fb->base); drm_framebuffer_put(fb);
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment