2019-05-30 02:57:49 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2011-11-03 22:21:20 +04:00
|
|
|
/**************************************************************************
|
|
|
|
* Copyright (c) 2007-2011, Intel Corporation.
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
**************************************************************************/
|
|
|
|
|
2019-05-19 22:55:26 +03:00
|
|
|
#include <linux/console.h>
|
|
|
|
#include <linux/delay.h>
|
2011-11-03 22:21:20 +04:00
|
|
|
#include <linux/errno.h>
|
2019-05-19 22:55:26 +03:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/kernel.h>
|
2011-11-03 22:21:20 +04:00
|
|
|
#include <linux/mm.h>
|
2019-05-19 22:55:26 +03:00
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/pfn_t.h>
|
2011-11-03 22:21:20 +04:00
|
|
|
#include <linux/slab.h>
|
2019-05-19 22:55:26 +03:00
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/tty.h>
|
2011-11-03 22:21:20 +04:00
|
|
|
|
|
|
|
#include <drm/drm.h>
|
|
|
|
#include <drm/drm_crtc.h>
|
2011-11-28 18:08:46 +04:00
|
|
|
#include <drm/drm_fb_helper.h>
|
2019-05-19 22:55:26 +03:00
|
|
|
#include <drm/drm_fourcc.h>
|
2018-03-30 17:11:34 +03:00
|
|
|
#include <drm/drm_gem_framebuffer_helper.h>
|
2011-11-03 22:21:20 +04:00
|
|
|
|
|
|
|
#include "framebuffer.h"
|
2011-11-30 02:27:22 +04:00
|
|
|
#include "gtt.h"
|
2019-05-19 22:55:26 +03:00
|
|
|
#include "psb_drv.h"
|
|
|
|
#include "psb_intel_drv.h"
|
|
|
|
#include "psb_intel_reg.h"
|
2011-11-03 22:21:20 +04:00
|
|
|
|
|
|
|
static const struct drm_framebuffer_funcs psb_fb_funcs = {
|
2018-03-30 17:11:34 +03:00
|
|
|
.destroy = drm_gem_fb_destroy,
|
|
|
|
.create_handle = drm_gem_fb_create_handle,
|
2011-11-03 22:21:20 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#define CMAP_TOHW(_val, _width) ((((_val) << (_width)) + 0x7FFF - (_val)) >> 16)
|
|
|
|
|
|
|
|
static int psbfb_setcolreg(unsigned regno, unsigned red, unsigned green,
|
|
|
|
unsigned blue, unsigned transp,
|
|
|
|
struct fb_info *info)
|
|
|
|
{
|
2019-11-22 13:05:45 +03:00
|
|
|
struct drm_fb_helper *fb_helper = info->par;
|
|
|
|
struct drm_framebuffer *fb = fb_helper->fb;
|
2011-11-03 22:21:20 +04:00
|
|
|
uint32_t v;
|
|
|
|
|
|
|
|
if (!fb)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
if (regno > 255)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
red = CMAP_TOHW(red, info->var.red.length);
|
|
|
|
blue = CMAP_TOHW(blue, info->var.blue.length);
|
|
|
|
green = CMAP_TOHW(green, info->var.green.length);
|
|
|
|
transp = CMAP_TOHW(transp, info->var.transp.length);
|
|
|
|
|
|
|
|
v = (red << info->var.red.offset) |
|
|
|
|
(green << info->var.green.offset) |
|
|
|
|
(blue << info->var.blue.offset) |
|
|
|
|
(transp << info->var.transp.offset);
|
|
|
|
|
|
|
|
if (regno < 16) {
|
2016-12-15 00:32:20 +03:00
|
|
|
switch (fb->format->cpp[0] * 8) {
|
2011-11-03 22:21:20 +04:00
|
|
|
case 16:
|
|
|
|
((uint32_t *) info->pseudo_palette)[regno] = v;
|
|
|
|
break;
|
|
|
|
case 24:
|
|
|
|
case 32:
|
|
|
|
((uint32_t *) info->pseudo_palette)[regno] = v;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-11-30 02:27:22 +04:00
|
|
|
static int psbfb_pan(struct fb_var_screeninfo *var, struct fb_info *info)
|
|
|
|
{
|
2019-11-22 13:05:45 +03:00
|
|
|
struct drm_fb_helper *fb_helper = info->par;
|
|
|
|
struct drm_framebuffer *fb = fb_helper->fb;
|
2019-11-22 13:05:42 +03:00
|
|
|
struct drm_device *dev = fb->dev;
|
|
|
|
struct gtt_range *gtt = to_gtt_range(fb->obj[0]);
|
2011-11-30 02:27:22 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We have to poke our nose in here. The core fb code assumes
|
|
|
|
* panning is part of the hardware that can be invoked before
|
|
|
|
* the actual fb is mapped. In our case that isn't quite true.
|
|
|
|
*/
|
2018-03-30 17:11:34 +03:00
|
|
|
if (gtt->npage) {
|
2011-11-30 02:27:22 +04:00
|
|
|
/* GTT roll shifts in 4K pages, we need to shift the right
|
|
|
|
number of pages */
|
|
|
|
int pages = info->fix.line_length >> 12;
|
2018-03-30 17:11:34 +03:00
|
|
|
psb_gtt_roll(dev, gtt, var->yoffset * pages);
|
2011-11-30 02:27:22 +04:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2011-11-03 22:21:20 +04:00
|
|
|
|
2018-08-24 03:01:22 +03:00
|
|
|
static vm_fault_t psbfb_vm_fault(struct vm_fault *vmf)
|
2011-11-03 22:21:20 +04:00
|
|
|
{
|
2017-02-25 01:56:41 +03:00
|
|
|
struct vm_area_struct *vma = vmf->vma;
|
2019-11-22 13:05:42 +03:00
|
|
|
struct drm_framebuffer *fb = vma->vm_private_data;
|
|
|
|
struct drm_device *dev = fb->dev;
|
2011-11-03 22:21:20 +04:00
|
|
|
struct drm_psb_private *dev_priv = dev->dev_private;
|
2019-11-22 13:05:42 +03:00
|
|
|
struct gtt_range *gtt = to_gtt_range(fb->obj[0]);
|
2011-11-03 22:21:20 +04:00
|
|
|
int page_num;
|
|
|
|
int i;
|
|
|
|
unsigned long address;
|
2018-08-24 03:01:22 +03:00
|
|
|
vm_fault_t ret = VM_FAULT_SIGBUS;
|
2011-11-03 22:21:20 +04:00
|
|
|
unsigned long pfn;
|
2013-05-14 16:37:10 +04:00
|
|
|
unsigned long phys_addr = (unsigned long)dev_priv->stolen_base +
|
2018-03-30 17:11:34 +03:00
|
|
|
gtt->offset;
|
2011-11-03 22:21:20 +04:00
|
|
|
|
2016-10-10 02:07:16 +03:00
|
|
|
page_num = vma_pages(vma);
|
2016-12-15 02:07:01 +03:00
|
|
|
address = vmf->address - (vmf->pgoff << PAGE_SHIFT);
|
2011-11-03 22:21:20 +04:00
|
|
|
|
|
|
|
vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
|
|
|
|
|
|
|
|
for (i = 0; i < page_num; i++) {
|
|
|
|
pfn = (phys_addr >> PAGE_SHIFT);
|
|
|
|
|
2018-08-24 03:01:22 +03:00
|
|
|
ret = vmf_insert_mixed(vma, address,
|
2016-01-16 03:56:40 +03:00
|
|
|
__pfn_to_pfn_t(pfn, PFN_DEV));
|
2018-08-24 03:01:22 +03:00
|
|
|
if (unlikely(ret & VM_FAULT_ERROR))
|
2011-11-03 22:21:20 +04:00
|
|
|
break;
|
|
|
|
address += PAGE_SIZE;
|
|
|
|
phys_addr += PAGE_SIZE;
|
|
|
|
}
|
2018-08-24 03:01:22 +03:00
|
|
|
return ret;
|
2011-11-03 22:21:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void psbfb_vm_open(struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void psbfb_vm_close(struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-05-17 15:27:22 +04:00
|
|
|
static const struct vm_operations_struct psbfb_vm_ops = {
|
2011-11-03 22:21:20 +04:00
|
|
|
.fault = psbfb_vm_fault,
|
|
|
|
.open = psbfb_vm_open,
|
|
|
|
.close = psbfb_vm_close
|
|
|
|
};
|
|
|
|
|
|
|
|
static int psbfb_mmap(struct fb_info *info, struct vm_area_struct *vma)
|
|
|
|
{
|
2019-11-22 13:05:45 +03:00
|
|
|
struct drm_fb_helper *fb_helper = info->par;
|
|
|
|
struct drm_framebuffer *fb = fb_helper->fb;
|
2011-11-03 22:21:20 +04:00
|
|
|
|
|
|
|
if (vma->vm_pgoff != 0)
|
|
|
|
return -EINVAL;
|
|
|
|
if (vma->vm_pgoff > (~0UL >> PAGE_SHIFT))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If this is a GEM object then info->screen_base is the virtual
|
|
|
|
* kernel remapping of the object. FIXME: Review if this is
|
|
|
|
* suitable for our mmap work
|
|
|
|
*/
|
|
|
|
vma->vm_ops = &psbfb_vm_ops;
|
2019-11-22 13:05:42 +03:00
|
|
|
vma->vm_private_data = (void *)fb;
|
mm: kill vma flag VM_RESERVED and mm->reserved_vm counter
A long time ago, in v2.4, VM_RESERVED kept swapout process off VMA,
currently it lost original meaning but still has some effects:
| effect | alternative flags
-+------------------------+---------------------------------------------
1| account as reserved_vm | VM_IO
2| skip in core dump | VM_IO, VM_DONTDUMP
3| do not merge or expand | VM_IO, VM_DONTEXPAND, VM_HUGETLB, VM_PFNMAP
4| do not mlock | VM_IO, VM_DONTEXPAND, VM_HUGETLB, VM_PFNMAP
This patch removes reserved_vm counter from mm_struct. Seems like nobody
cares about it, it does not exported into userspace directly, it only
reduces total_vm showed in proc.
Thus VM_RESERVED can be replaced with VM_IO or pair VM_DONTEXPAND | VM_DONTDUMP.
remap_pfn_range() and io_remap_pfn_range() set VM_IO|VM_DONTEXPAND|VM_DONTDUMP.
remap_vmalloc_range() set VM_DONTEXPAND | VM_DONTDUMP.
[akpm@linux-foundation.org: drivers/vfio/pci/vfio_pci.c fixup]
Signed-off-by: Konstantin Khlebnikov <khlebnikov@openvz.org>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: Carsten Otte <cotte@de.ibm.com>
Cc: Chris Metcalf <cmetcalf@tilera.com>
Cc: Cyrill Gorcunov <gorcunov@openvz.org>
Cc: Eric Paris <eparis@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: James Morris <james.l.morris@oracle.com>
Cc: Jason Baron <jbaron@redhat.com>
Cc: Kentaro Takeda <takedakn@nttdata.co.jp>
Cc: Matt Helsley <matthltc@us.ibm.com>
Cc: Nick Piggin <npiggin@kernel.dk>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Robert Richter <robert.richter@amd.com>
Cc: Suresh Siddha <suresh.b.siddha@intel.com>
Cc: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Cc: Venkatesh Pallipadi <venki@google.com>
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2012-10-09 03:29:02 +04:00
|
|
|
vma->vm_flags |= VM_IO | VM_MIXEDMAP | VM_DONTEXPAND | VM_DONTDUMP;
|
2011-11-03 22:21:20 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct fb_ops psbfb_ops = {
|
|
|
|
.owner = THIS_MODULE,
|
2016-11-14 02:03:28 +03:00
|
|
|
DRM_FB_HELPER_DEFAULT_OPS,
|
2011-11-03 22:21:20 +04:00
|
|
|
.fb_setcolreg = psbfb_setcolreg,
|
2015-07-22 12:28:10 +03:00
|
|
|
.fb_fillrect = drm_fb_helper_cfb_fillrect,
|
2011-11-03 22:21:20 +04:00
|
|
|
.fb_copyarea = psbfb_copyarea,
|
2015-07-22 12:28:10 +03:00
|
|
|
.fb_imageblit = drm_fb_helper_cfb_imageblit,
|
2011-11-03 22:21:20 +04:00
|
|
|
.fb_mmap = psbfb_mmap,
|
|
|
|
.fb_sync = psbfb_sync,
|
|
|
|
};
|
|
|
|
|
2011-11-30 02:27:22 +04:00
|
|
|
static struct fb_ops psbfb_roll_ops = {
|
|
|
|
.owner = THIS_MODULE,
|
2016-11-14 02:03:28 +03:00
|
|
|
DRM_FB_HELPER_DEFAULT_OPS,
|
2011-11-30 02:27:22 +04:00
|
|
|
.fb_setcolreg = psbfb_setcolreg,
|
2015-07-22 12:28:10 +03:00
|
|
|
.fb_fillrect = drm_fb_helper_cfb_fillrect,
|
|
|
|
.fb_copyarea = drm_fb_helper_cfb_copyarea,
|
|
|
|
.fb_imageblit = drm_fb_helper_cfb_imageblit,
|
2011-11-30 02:27:22 +04:00
|
|
|
.fb_pan_display = psbfb_pan,
|
|
|
|
.fb_mmap = psbfb_mmap,
|
|
|
|
};
|
|
|
|
|
2011-11-03 22:21:20 +04:00
|
|
|
static struct fb_ops psbfb_unaccel_ops = {
|
|
|
|
.owner = THIS_MODULE,
|
2016-11-14 02:03:28 +03:00
|
|
|
DRM_FB_HELPER_DEFAULT_OPS,
|
2011-11-03 22:21:20 +04:00
|
|
|
.fb_setcolreg = psbfb_setcolreg,
|
2015-07-22 12:28:10 +03:00
|
|
|
.fb_fillrect = drm_fb_helper_cfb_fillrect,
|
|
|
|
.fb_copyarea = drm_fb_helper_cfb_copyarea,
|
|
|
|
.fb_imageblit = drm_fb_helper_cfb_imageblit,
|
2011-11-03 22:21:20 +04:00
|
|
|
.fb_mmap = psbfb_mmap,
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* psb_framebuffer_init - initialize a framebuffer
|
|
|
|
* @dev: our DRM device
|
|
|
|
* @fb: framebuffer to set up
|
|
|
|
* @mode_cmd: mode description
|
|
|
|
* @gt: backing object
|
|
|
|
*
|
|
|
|
* Configure and fill in the boilerplate for our frame buffer. Return
|
|
|
|
* 0 on success or an error code if we fail.
|
|
|
|
*/
|
|
|
|
static int psb_framebuffer_init(struct drm_device *dev,
|
2019-11-22 13:05:42 +03:00
|
|
|
struct drm_framebuffer *fb,
|
2015-11-11 20:11:29 +03:00
|
|
|
const struct drm_mode_fb_cmd2 *mode_cmd,
|
2019-11-22 13:05:43 +03:00
|
|
|
struct drm_gem_object *obj)
|
2011-11-03 22:21:20 +04:00
|
|
|
{
|
2016-10-18 01:41:16 +03:00
|
|
|
const struct drm_format_info *info;
|
2011-11-03 22:21:20 +04:00
|
|
|
int ret;
|
|
|
|
|
2016-10-18 01:41:16 +03:00
|
|
|
/*
|
|
|
|
* Reject unknown formats, YUV formats, and formats with more than
|
|
|
|
* 4 bytes per pixel.
|
|
|
|
*/
|
2019-05-16 13:31:51 +03:00
|
|
|
info = drm_get_format_info(dev, mode_cmd);
|
2016-10-18 01:41:16 +03:00
|
|
|
if (!info || !info->depth || info->cpp[0] > 4)
|
|
|
|
return -EINVAL;
|
2011-11-28 18:08:46 +04:00
|
|
|
|
|
|
|
if (mode_cmd->pitches[0] & 63)
|
2011-11-03 22:21:20 +04:00
|
|
|
return -EINVAL;
|
2016-10-18 01:41:16 +03:00
|
|
|
|
2019-11-22 13:05:42 +03:00
|
|
|
drm_helper_mode_fill_fb_struct(dev, fb, mode_cmd);
|
2019-11-22 13:05:43 +03:00
|
|
|
fb->obj[0] = obj;
|
2019-11-22 13:05:42 +03:00
|
|
|
ret = drm_framebuffer_init(dev, fb, &psb_fb_funcs);
|
2011-11-03 22:21:20 +04:00
|
|
|
if (ret) {
|
|
|
|
dev_err(dev->dev, "framebuffer init failed: %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* psb_framebuffer_create - create a framebuffer backed by gt
|
|
|
|
* @dev: our DRM device
|
|
|
|
* @mode_cmd: the description of the requested mode
|
|
|
|
* @gt: the backing object
|
|
|
|
*
|
|
|
|
* Create a framebuffer object backed by the gt, and fill in the
|
|
|
|
* boilerplate required
|
|
|
|
*
|
|
|
|
* TODO: review object references
|
|
|
|
*/
|
|
|
|
|
|
|
|
static struct drm_framebuffer *psb_framebuffer_create
|
|
|
|
(struct drm_device *dev,
|
2015-11-11 20:11:29 +03:00
|
|
|
const struct drm_mode_fb_cmd2 *mode_cmd,
|
2019-11-22 13:05:43 +03:00
|
|
|
struct drm_gem_object *obj)
|
2011-11-03 22:21:20 +04:00
|
|
|
{
|
2019-11-22 13:05:42 +03:00
|
|
|
struct drm_framebuffer *fb;
|
2011-11-03 22:21:20 +04:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
fb = kzalloc(sizeof(*fb), GFP_KERNEL);
|
|
|
|
if (!fb)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
|
2019-11-22 13:05:43 +03:00
|
|
|
ret = psb_framebuffer_init(dev, fb, mode_cmd, obj);
|
2011-11-03 22:21:20 +04:00
|
|
|
if (ret) {
|
|
|
|
kfree(fb);
|
|
|
|
return ERR_PTR(ret);
|
|
|
|
}
|
2019-11-22 13:05:42 +03:00
|
|
|
return fb;
|
2011-11-03 22:21:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* psbfb_alloc - allocate frame buffer memory
|
|
|
|
* @dev: the DRM device
|
|
|
|
* @aligned_size: space needed
|
|
|
|
*
|
|
|
|
* Allocate the frame buffer. In the usual case we get a GTT range that
|
|
|
|
* is stolen memory backed and life is simple. If there isn't sufficient
|
2011-11-30 02:19:47 +04:00
|
|
|
* we fail as we don't have the virtual mapping space to really vmap it
|
|
|
|
* and the kernel console code can't handle non linear framebuffers.
|
2011-11-03 22:21:20 +04:00
|
|
|
*
|
2011-11-30 02:19:47 +04:00
|
|
|
* Re-address this as and if the framebuffer layer grows this ability.
|
2011-11-03 22:21:20 +04:00
|
|
|
*/
|
|
|
|
static struct gtt_range *psbfb_alloc(struct drm_device *dev, int aligned_size)
|
|
|
|
{
|
|
|
|
struct gtt_range *backing;
|
|
|
|
/* Begin by trying to use stolen memory backing */
|
2014-01-06 05:39:10 +04:00
|
|
|
backing = psb_gtt_alloc_range(dev, aligned_size, "fb", 1, PAGE_SIZE);
|
2011-11-03 22:21:20 +04:00
|
|
|
if (backing) {
|
2013-07-11 13:56:32 +04:00
|
|
|
drm_gem_private_object_init(dev, &backing->gem, aligned_size);
|
|
|
|
return backing;
|
2011-11-03 22:21:20 +04:00
|
|
|
}
|
2011-11-30 02:19:47 +04:00
|
|
|
return NULL;
|
2011-11-03 22:21:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* psbfb_create - create a framebuffer
|
|
|
|
* @fbdev: the framebuffer device
|
|
|
|
* @sizes: specification of the layout
|
|
|
|
*
|
|
|
|
* Create a framebuffer to the specifications provided
|
|
|
|
*/
|
2019-11-22 13:05:45 +03:00
|
|
|
static int psbfb_create(struct drm_fb_helper *fb_helper,
|
2011-11-03 22:21:20 +04:00
|
|
|
struct drm_fb_helper_surface_size *sizes)
|
|
|
|
{
|
2019-11-22 13:05:45 +03:00
|
|
|
struct drm_device *dev = fb_helper->dev;
|
2011-11-03 22:21:20 +04:00
|
|
|
struct drm_psb_private *dev_priv = dev->dev_private;
|
|
|
|
struct fb_info *info;
|
2019-11-22 13:05:44 +03:00
|
|
|
struct drm_framebuffer *fb;
|
2011-11-28 18:08:46 +04:00
|
|
|
struct drm_mode_fb_cmd2 mode_cmd;
|
2011-11-03 22:21:20 +04:00
|
|
|
int size;
|
|
|
|
int ret;
|
|
|
|
struct gtt_range *backing;
|
2011-11-28 18:08:46 +04:00
|
|
|
u32 bpp, depth;
|
2011-11-30 02:27:34 +04:00
|
|
|
int gtt_roll = 0;
|
|
|
|
int pitch_lines = 0;
|
2011-11-03 22:21:20 +04:00
|
|
|
|
|
|
|
mode_cmd.width = sizes->surface_width;
|
|
|
|
mode_cmd.height = sizes->surface_height;
|
2011-11-28 18:08:46 +04:00
|
|
|
bpp = sizes->surface_bpp;
|
2012-03-08 20:02:36 +04:00
|
|
|
depth = sizes->surface_depth;
|
2011-11-03 22:21:20 +04:00
|
|
|
|
|
|
|
/* No 24bit packed */
|
2011-11-28 18:08:46 +04:00
|
|
|
if (bpp == 24)
|
|
|
|
bpp = 32;
|
2011-11-03 22:21:20 +04:00
|
|
|
|
2011-11-30 02:27:34 +04:00
|
|
|
do {
|
|
|
|
/*
|
|
|
|
* Acceleration via the GTT requires pitch to be
|
|
|
|
* power of two aligned. Preferably page but less
|
|
|
|
* is ok with some fonts
|
|
|
|
*/
|
|
|
|
mode_cmd.pitches[0] = ALIGN(mode_cmd.width * ((bpp + 7) / 8), 4096 >> pitch_lines);
|
|
|
|
|
|
|
|
size = mode_cmd.pitches[0] * mode_cmd.height;
|
|
|
|
size = ALIGN(size, PAGE_SIZE);
|
|
|
|
|
|
|
|
/* Allocate the fb in the GTT with stolen page backing */
|
|
|
|
backing = psbfb_alloc(dev, size);
|
|
|
|
|
|
|
|
if (pitch_lines)
|
|
|
|
pitch_lines *= 2;
|
|
|
|
else
|
|
|
|
pitch_lines = 1;
|
|
|
|
gtt_roll++;
|
|
|
|
} while (backing == NULL && pitch_lines <= 16);
|
2011-11-03 22:21:20 +04:00
|
|
|
|
2011-11-30 02:27:34 +04:00
|
|
|
/* The final pitch we accepted if we succeeded */
|
|
|
|
pitch_lines /= 2;
|
2011-11-03 22:21:20 +04:00
|
|
|
|
2011-11-30 02:27:22 +04:00
|
|
|
if (backing == NULL) {
|
|
|
|
/*
|
|
|
|
* We couldn't get the space we wanted, fall back to the
|
|
|
|
* display engine requirement instead. The HW requires
|
|
|
|
* the pitch to be 64 byte aligned
|
|
|
|
*/
|
|
|
|
|
|
|
|
gtt_roll = 0; /* Don't use GTT accelerated scrolling */
|
2011-11-30 02:27:34 +04:00
|
|
|
pitch_lines = 64;
|
2011-11-30 02:27:22 +04:00
|
|
|
|
|
|
|
mode_cmd.pitches[0] = ALIGN(mode_cmd.width * ((bpp + 7) / 8), 64);
|
|
|
|
|
|
|
|
size = mode_cmd.pitches[0] * mode_cmd.height;
|
|
|
|
size = ALIGN(size, PAGE_SIZE);
|
|
|
|
|
|
|
|
/* Allocate the framebuffer in the GTT with stolen page backing */
|
|
|
|
backing = psbfb_alloc(dev, size);
|
|
|
|
if (backing == NULL)
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
2011-11-03 22:21:20 +04:00
|
|
|
|
2012-05-03 18:05:53 +04:00
|
|
|
memset(dev_priv->vram_addr + backing->offset, 0, size);
|
|
|
|
|
2019-11-22 13:05:45 +03:00
|
|
|
info = drm_fb_helper_alloc_fbi(fb_helper);
|
2015-07-22 12:28:10 +03:00
|
|
|
if (IS_ERR(info)) {
|
|
|
|
ret = PTR_ERR(info);
|
2017-02-07 19:16:03 +03:00
|
|
|
goto out;
|
2011-11-03 22:21:20 +04:00
|
|
|
}
|
|
|
|
|
2011-11-28 18:08:46 +04:00
|
|
|
mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
|
|
|
|
|
2019-11-22 13:05:44 +03:00
|
|
|
fb = psb_framebuffer_create(dev, &mode_cmd, &backing->gem);
|
|
|
|
if (IS_ERR(fb)) {
|
|
|
|
ret = PTR_ERR(fb);
|
2017-02-07 19:16:03 +03:00
|
|
|
goto out;
|
2019-11-22 13:05:44 +03:00
|
|
|
}
|
2011-11-03 22:21:20 +04:00
|
|
|
|
2019-11-22 13:05:45 +03:00
|
|
|
fb_helper->fb = fb;
|
2011-11-03 22:21:20 +04:00
|
|
|
|
2011-11-30 02:27:34 +04:00
|
|
|
if (dev_priv->ops->accel_2d && pitch_lines > 8) /* 2D engine */
|
|
|
|
info->fbops = &psbfb_ops;
|
|
|
|
else if (gtt_roll) { /* GTT rolling seems best */
|
2011-11-30 02:27:22 +04:00
|
|
|
info->fbops = &psbfb_roll_ops;
|
|
|
|
info->flags |= FBINFO_HWACCEL_YPAN;
|
2011-11-30 02:27:34 +04:00
|
|
|
} else /* Software */
|
2011-11-30 02:27:22 +04:00
|
|
|
info->fbops = &psbfb_unaccel_ops;
|
2011-11-03 22:21:20 +04:00
|
|
|
|
|
|
|
info->fix.smem_start = dev->mode_config.fb_base;
|
|
|
|
info->fix.smem_len = size;
|
2011-11-30 02:27:22 +04:00
|
|
|
info->fix.ywrapstep = gtt_roll;
|
|
|
|
info->fix.ypanstep = 0;
|
2011-11-03 22:21:20 +04:00
|
|
|
|
2011-11-30 02:19:47 +04:00
|
|
|
/* Accessed stolen memory directly */
|
2012-05-03 18:08:26 +04:00
|
|
|
info->screen_base = dev_priv->vram_addr + backing->offset;
|
2011-11-03 22:21:20 +04:00
|
|
|
info->screen_size = size;
|
|
|
|
|
|
|
|
if (dev_priv->gtt.stolen_size) {
|
|
|
|
info->apertures->ranges[0].base = dev->mode_config.fb_base;
|
|
|
|
info->apertures->ranges[0].size = dev_priv->gtt.stolen_size;
|
|
|
|
}
|
|
|
|
|
2019-11-22 13:05:45 +03:00
|
|
|
drm_fb_helper_fill_info(info, fb_helper, sizes);
|
2011-11-03 22:21:20 +04:00
|
|
|
|
|
|
|
info->fix.mmio_start = pci_resource_start(dev->pdev, 0);
|
|
|
|
info->fix.mmio_len = pci_resource_len(dev->pdev, 0);
|
|
|
|
|
2012-02-06 13:58:19 +04:00
|
|
|
/* Use default scratch pixmap (info->pixmap.flags = FB_PIXMAP_SYSTEM) */
|
2011-11-03 22:21:20 +04:00
|
|
|
|
2019-11-22 13:05:42 +03:00
|
|
|
dev_dbg(dev->dev, "allocated %dx%d fb\n", fb->width, fb->height);
|
2011-11-03 22:21:20 +04:00
|
|
|
|
|
|
|
return 0;
|
2017-02-07 19:16:03 +03:00
|
|
|
out:
|
2011-11-03 22:21:20 +04:00
|
|
|
psb_gtt_free_range(dev, backing);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* psb_user_framebuffer_create - create framebuffer
|
|
|
|
* @dev: our DRM device
|
|
|
|
* @filp: client file
|
|
|
|
* @cmd: mode request
|
|
|
|
*
|
|
|
|
* Create a new framebuffer backed by a userspace GEM object
|
|
|
|
*/
|
|
|
|
static struct drm_framebuffer *psb_user_framebuffer_create
|
|
|
|
(struct drm_device *dev, struct drm_file *filp,
|
2015-11-11 20:11:29 +03:00
|
|
|
const struct drm_mode_fb_cmd2 *cmd)
|
2011-11-03 22:21:20 +04:00
|
|
|
{
|
|
|
|
struct drm_gem_object *obj;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find the GEM object and thus the gtt range object that is
|
|
|
|
* to back this space
|
|
|
|
*/
|
2016-05-09 13:04:54 +03:00
|
|
|
obj = drm_gem_object_lookup(filp, cmd->handles[0]);
|
2011-11-03 22:21:20 +04:00
|
|
|
if (obj == NULL)
|
|
|
|
return ERR_PTR(-ENOENT);
|
|
|
|
|
|
|
|
/* Let the core code do all the work */
|
2019-11-22 13:05:43 +03:00
|
|
|
return psb_framebuffer_create(dev, cmd, obj);
|
2011-11-03 22:21:20 +04:00
|
|
|
}
|
|
|
|
|
2019-11-22 13:05:45 +03:00
|
|
|
static int psbfb_probe(struct drm_fb_helper *fb_helper,
|
2011-11-03 22:21:20 +04:00
|
|
|
struct drm_fb_helper_surface_size *sizes)
|
|
|
|
{
|
2019-11-22 13:05:45 +03:00
|
|
|
struct drm_device *dev = fb_helper->dev;
|
2012-04-25 17:37:40 +04:00
|
|
|
struct drm_psb_private *dev_priv = dev->dev_private;
|
2019-11-07 18:30:48 +03:00
|
|
|
unsigned int fb_size;
|
2012-04-25 17:37:40 +04:00
|
|
|
int bytespp;
|
2011-11-03 22:21:20 +04:00
|
|
|
|
2012-04-25 17:37:40 +04:00
|
|
|
bytespp = sizes->surface_bpp / 8;
|
|
|
|
if (bytespp == 3) /* no 24bit packed */
|
|
|
|
bytespp = 4;
|
|
|
|
|
|
|
|
/* If the mode will not fit in 32bit then switch to 16bit to get
|
|
|
|
a console on full resolution. The X mode setting server will
|
|
|
|
allocate its own 32bit GEM framebuffer */
|
2019-11-07 18:30:48 +03:00
|
|
|
fb_size = ALIGN(sizes->surface_width * bytespp, 64) *
|
|
|
|
sizes->surface_height;
|
|
|
|
fb_size = ALIGN(fb_size, PAGE_SIZE);
|
|
|
|
|
|
|
|
if (fb_size > dev_priv->vram_stolen_size) {
|
2012-04-25 17:37:40 +04:00
|
|
|
sizes->surface_bpp = 16;
|
|
|
|
sizes->surface_depth = 16;
|
|
|
|
}
|
|
|
|
|
2019-11-22 13:05:45 +03:00
|
|
|
return psbfb_create(fb_helper, sizes);
|
2011-11-03 22:21:20 +04:00
|
|
|
}
|
|
|
|
|
2014-06-27 19:19:23 +04:00
|
|
|
static const struct drm_fb_helper_funcs psb_fb_helper_funcs = {
|
2011-11-03 22:21:20 +04:00
|
|
|
.fb_probe = psbfb_probe,
|
|
|
|
};
|
|
|
|
|
2019-11-22 13:05:45 +03:00
|
|
|
static int psb_fbdev_destroy(struct drm_device *dev,
|
|
|
|
struct drm_fb_helper *fb_helper)
|
2011-11-03 22:21:20 +04:00
|
|
|
{
|
2019-11-22 13:05:45 +03:00
|
|
|
struct drm_framebuffer *fb = fb_helper->fb;
|
2011-11-03 22:21:20 +04:00
|
|
|
|
2019-11-22 13:05:45 +03:00
|
|
|
drm_fb_helper_unregister_fbi(fb_helper);
|
2015-07-22 12:28:10 +03:00
|
|
|
|
2019-11-22 13:05:45 +03:00
|
|
|
drm_fb_helper_fini(fb_helper);
|
2019-11-22 13:05:42 +03:00
|
|
|
drm_framebuffer_unregister_private(fb);
|
|
|
|
drm_framebuffer_cleanup(fb);
|
2011-11-03 22:21:20 +04:00
|
|
|
|
2019-11-22 13:05:42 +03:00
|
|
|
if (fb->obj[0])
|
|
|
|
drm_gem_object_put_unlocked(fb->obj[0]);
|
2019-11-22 13:05:44 +03:00
|
|
|
kfree(fb);
|
|
|
|
|
2011-11-03 22:21:20 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int psb_fbdev_init(struct drm_device *dev)
|
|
|
|
{
|
2019-11-22 13:05:45 +03:00
|
|
|
struct drm_fb_helper *fb_helper;
|
2011-11-03 22:21:20 +04:00
|
|
|
struct drm_psb_private *dev_priv = dev->dev_private;
|
2014-12-19 13:21:32 +03:00
|
|
|
int ret;
|
2011-11-03 22:21:20 +04:00
|
|
|
|
2019-11-22 13:05:45 +03:00
|
|
|
fb_helper = kzalloc(sizeof(*fb_helper), GFP_KERNEL);
|
|
|
|
if (!fb_helper) {
|
2011-11-03 22:21:20 +04:00
|
|
|
dev_err(dev->dev, "no memory\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2019-11-22 13:05:45 +03:00
|
|
|
dev_priv->fb_helper = fb_helper;
|
2014-06-27 19:19:24 +04:00
|
|
|
|
2019-11-22 13:05:45 +03:00
|
|
|
drm_fb_helper_prepare(dev, fb_helper, &psb_fb_helper_funcs);
|
2011-11-03 22:21:20 +04:00
|
|
|
|
2020-03-05 15:04:28 +03:00
|
|
|
ret = drm_fb_helper_init(dev, fb_helper);
|
2014-12-19 13:21:32 +03:00
|
|
|
if (ret)
|
|
|
|
goto free;
|
2011-11-03 22:21:20 +04:00
|
|
|
|
2013-01-21 02:12:54 +04:00
|
|
|
/* disable all the possible outputs/crtcs before entering KMS mode */
|
|
|
|
drm_helper_disable_unused_functions(dev);
|
|
|
|
|
2019-11-22 13:05:45 +03:00
|
|
|
ret = drm_fb_helper_initial_config(fb_helper, 32);
|
2014-12-19 13:21:32 +03:00
|
|
|
if (ret)
|
|
|
|
goto fini;
|
|
|
|
|
2011-11-03 22:21:20 +04:00
|
|
|
return 0;
|
2014-12-19 13:21:32 +03:00
|
|
|
|
|
|
|
fini:
|
2019-11-22 13:05:45 +03:00
|
|
|
drm_fb_helper_fini(fb_helper);
|
2014-12-19 13:21:32 +03:00
|
|
|
free:
|
2019-11-22 13:05:45 +03:00
|
|
|
kfree(fb_helper);
|
2014-12-19 13:21:32 +03:00
|
|
|
return ret;
|
2011-11-03 22:21:20 +04:00
|
|
|
}
|
|
|
|
|
2012-03-08 20:03:44 +04:00
|
|
|
static void psb_fbdev_fini(struct drm_device *dev)
|
2011-11-03 22:21:20 +04:00
|
|
|
{
|
|
|
|
struct drm_psb_private *dev_priv = dev->dev_private;
|
|
|
|
|
2019-11-22 13:05:45 +03:00
|
|
|
if (!dev_priv->fb_helper)
|
2011-11-03 22:21:20 +04:00
|
|
|
return;
|
|
|
|
|
2019-11-22 13:05:45 +03:00
|
|
|
psb_fbdev_destroy(dev, dev_priv->fb_helper);
|
|
|
|
kfree(dev_priv->fb_helper);
|
|
|
|
dev_priv->fb_helper = NULL;
|
2011-11-03 22:21:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct drm_mode_config_funcs psb_mode_funcs = {
|
|
|
|
.fb_create = psb_user_framebuffer_create,
|
2017-12-05 21:24:58 +03:00
|
|
|
.output_poll_changed = drm_fb_helper_output_poll_changed,
|
2011-11-03 22:21:20 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static void psb_setup_outputs(struct drm_device *dev)
|
|
|
|
{
|
|
|
|
struct drm_psb_private *dev_priv = dev->dev_private;
|
|
|
|
struct drm_connector *connector;
|
|
|
|
|
|
|
|
drm_mode_create_scaling_mode_property(dev);
|
|
|
|
|
2016-01-29 22:37:48 +03:00
|
|
|
/* It is ok for this to fail - we just don't get backlight control */
|
|
|
|
if (!dev_priv->backlight_property)
|
|
|
|
dev_priv->backlight_property = drm_property_create_range(dev, 0,
|
|
|
|
"backlight", 0, 100);
|
2011-11-03 22:21:20 +04:00
|
|
|
dev_priv->ops->output_init(dev);
|
|
|
|
|
|
|
|
list_for_each_entry(connector, &dev->mode_config.connector_list,
|
|
|
|
head) {
|
2013-07-22 19:45:26 +04:00
|
|
|
struct gma_encoder *gma_encoder = gma_attached_encoder(connector);
|
|
|
|
struct drm_encoder *encoder = &gma_encoder->base;
|
2011-11-03 22:21:20 +04:00
|
|
|
int crtc_mask = 0, clone_mask = 0;
|
|
|
|
|
|
|
|
/* valid crtcs */
|
2013-07-22 19:45:26 +04:00
|
|
|
switch (gma_encoder->type) {
|
2011-11-03 22:21:20 +04:00
|
|
|
case INTEL_OUTPUT_ANALOG:
|
|
|
|
crtc_mask = (1 << 0);
|
|
|
|
clone_mask = (1 << INTEL_OUTPUT_ANALOG);
|
|
|
|
break;
|
|
|
|
case INTEL_OUTPUT_SDVO:
|
2013-09-16 19:54:54 +04:00
|
|
|
crtc_mask = dev_priv->ops->sdvo_mask;
|
2011-11-03 22:21:20 +04:00
|
|
|
clone_mask = (1 << INTEL_OUTPUT_SDVO);
|
|
|
|
break;
|
|
|
|
case INTEL_OUTPUT_LVDS:
|
2012-04-25 17:38:07 +04:00
|
|
|
crtc_mask = dev_priv->ops->lvds_mask;
|
2011-11-03 22:21:20 +04:00
|
|
|
clone_mask = (1 << INTEL_OUTPUT_LVDS);
|
|
|
|
break;
|
|
|
|
case INTEL_OUTPUT_MIPI:
|
|
|
|
crtc_mask = (1 << 0);
|
|
|
|
clone_mask = (1 << INTEL_OUTPUT_MIPI);
|
|
|
|
break;
|
|
|
|
case INTEL_OUTPUT_MIPI2:
|
|
|
|
crtc_mask = (1 << 2);
|
|
|
|
clone_mask = (1 << INTEL_OUTPUT_MIPI2);
|
|
|
|
break;
|
|
|
|
case INTEL_OUTPUT_HDMI:
|
2012-04-25 17:38:07 +04:00
|
|
|
crtc_mask = dev_priv->ops->hdmi_mask;
|
2011-11-03 22:21:20 +04:00
|
|
|
clone_mask = (1 << INTEL_OUTPUT_HDMI);
|
|
|
|
break;
|
2012-08-08 17:54:41 +04:00
|
|
|
case INTEL_OUTPUT_DISPLAYPORT:
|
|
|
|
crtc_mask = (1 << 0) | (1 << 1);
|
|
|
|
clone_mask = (1 << INTEL_OUTPUT_DISPLAYPORT);
|
|
|
|
break;
|
2012-08-08 17:55:55 +04:00
|
|
|
case INTEL_OUTPUT_EDP:
|
|
|
|
crtc_mask = (1 << 1);
|
|
|
|
clone_mask = (1 << INTEL_OUTPUT_EDP);
|
2011-11-03 22:21:20 +04:00
|
|
|
}
|
|
|
|
encoder->possible_crtcs = crtc_mask;
|
|
|
|
encoder->possible_clones =
|
2013-07-22 19:05:25 +04:00
|
|
|
gma_connector_clones(dev, clone_mask);
|
2011-11-03 22:21:20 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void psb_modeset_init(struct drm_device *dev)
|
|
|
|
{
|
|
|
|
struct drm_psb_private *dev_priv = dev->dev_private;
|
|
|
|
struct psb_intel_mode_device *mode_dev = &dev_priv->mode_dev;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
drm_mode_config_init(dev);
|
|
|
|
|
|
|
|
dev->mode_config.min_width = 0;
|
|
|
|
dev->mode_config.min_height = 0;
|
|
|
|
|
2012-05-17 15:27:23 +04:00
|
|
|
dev->mode_config.funcs = &psb_mode_funcs;
|
2011-11-03 22:21:20 +04:00
|
|
|
|
|
|
|
/* set memory base */
|
2011-11-30 02:19:47 +04:00
|
|
|
/* Oaktrail and Poulsbo should use BAR 2*/
|
2011-11-03 22:21:20 +04:00
|
|
|
pci_read_config_dword(dev->pdev, PSB_BSM, (u32 *)
|
|
|
|
&(dev->mode_config.fb_base));
|
|
|
|
|
|
|
|
/* num pipes is 2 for PSB but 1 for Mrst */
|
|
|
|
for (i = 0; i < dev_priv->num_pipe; i++)
|
|
|
|
psb_intel_crtc_init(dev, i, mode_dev);
|
|
|
|
|
2013-04-26 00:23:36 +04:00
|
|
|
dev->mode_config.max_width = 4096;
|
|
|
|
dev->mode_config.max_height = 4096;
|
2011-11-03 22:21:20 +04:00
|
|
|
|
|
|
|
psb_setup_outputs(dev);
|
2012-04-25 17:38:07 +04:00
|
|
|
|
|
|
|
if (dev_priv->ops->errata)
|
|
|
|
dev_priv->ops->errata(dev);
|
2012-05-14 15:04:00 +04:00
|
|
|
|
|
|
|
dev_priv->modeset = true;
|
2011-11-03 22:21:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void psb_modeset_cleanup(struct drm_device *dev)
|
|
|
|
{
|
2012-05-14 15:04:00 +04:00
|
|
|
struct drm_psb_private *dev_priv = dev->dev_private;
|
|
|
|
if (dev_priv->modeset) {
|
|
|
|
drm_kms_helper_poll_fini(dev);
|
|
|
|
psb_fbdev_fini(dev);
|
|
|
|
drm_mode_config_cleanup(dev);
|
|
|
|
}
|
2011-11-03 22:21:20 +04:00
|
|
|
}
|