2019-05-29 22:12:36 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2010-12-15 05:14:24 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Red Hat
|
|
|
|
*
|
|
|
|
* based in parts on udlfb.c:
|
|
|
|
* Copyright (C) 2009 Roberto De Ioris <roberto@unbit.it>
|
|
|
|
* Copyright (C) 2009 Jaya Kumar <jayakumar.lkml@gmail.com>
|
|
|
|
* Copyright (C) 2009 Bernie Thompson <bernie@plugable.com>
|
|
|
|
*/
|
2019-07-16 14:42:09 +08:00
|
|
|
|
|
|
|
#include <linux/moduleparam.h>
|
2012-07-30 12:06:55 +08:00
|
|
|
#include <linux/dma-buf.h>
|
2010-12-15 05:14:24 +08:00
|
|
|
|
2012-10-03 01:01:07 +08:00
|
|
|
#include <drm/drm_crtc_helper.h>
|
2019-07-16 14:42:09 +08:00
|
|
|
#include <drm/drm_drv.h>
|
2012-10-03 01:01:07 +08:00
|
|
|
#include <drm/drm_fb_helper.h>
|
2019-07-16 14:42:09 +08:00
|
|
|
#include <drm/drm_fourcc.h>
|
|
|
|
#include <drm/drm_modeset_helper.h>
|
|
|
|
|
|
|
|
#include "udl_drv.h"
|
2010-12-15 05:14:24 +08:00
|
|
|
|
2013-02-07 10:30:25 +08:00
|
|
|
#define DL_DEFIO_WRITE_DELAY (HZ/20) /* fb_deferred_io.delay in jiffies */
|
2010-12-15 05:14:24 +08:00
|
|
|
|
2013-02-07 10:30:25 +08:00
|
|
|
static int fb_defio = 0; /* Optionally enable experimental fb_defio mmap support */
|
2010-12-15 05:14:24 +08:00
|
|
|
static int fb_bpp = 16;
|
|
|
|
|
|
|
|
module_param(fb_bpp, int, S_IWUSR | S_IRUSR | S_IWGRP | S_IRGRP);
|
|
|
|
module_param(fb_defio, int, S_IWUSR | S_IRUSR | S_IWGRP | S_IRGRP);
|
|
|
|
|
|
|
|
struct udl_fbdev {
|
2019-03-26 21:20:06 +08:00
|
|
|
struct drm_fb_helper helper; /* must be first */
|
2010-12-15 05:14:24 +08:00
|
|
|
struct udl_framebuffer ufb;
|
|
|
|
int fb_count;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define DL_ALIGN_UP(x, a) ALIGN(x, a)
|
2017-04-12 02:08:34 +08:00
|
|
|
#define DL_ALIGN_DOWN(x, a) ALIGN_DOWN(x, a)
|
2010-12-15 05:14:24 +08:00
|
|
|
|
|
|
|
/** Read the red component (0..255) of a 32 bpp colour. */
|
|
|
|
#define DLO_RGB_GETRED(col) (uint8_t)((col) & 0xFF)
|
|
|
|
|
|
|
|
/** Read the green component (0..255) of a 32 bpp colour. */
|
|
|
|
#define DLO_RGB_GETGRN(col) (uint8_t)(((col) >> 8) & 0xFF)
|
|
|
|
|
|
|
|
/** Read the blue component (0..255) of a 32 bpp colour. */
|
|
|
|
#define DLO_RGB_GETBLU(col) (uint8_t)(((col) >> 16) & 0xFF)
|
|
|
|
|
|
|
|
/** Return red/green component of a 16 bpp colour number. */
|
|
|
|
#define DLO_RG16(red, grn) (uint8_t)((((red) & 0xF8) | ((grn) >> 5)) & 0xFF)
|
|
|
|
|
|
|
|
/** Return green/blue component of a 16 bpp colour number. */
|
|
|
|
#define DLO_GB16(grn, blu) (uint8_t)(((((grn) & 0x1C) << 3) | ((blu) >> 3)) & 0xFF)
|
|
|
|
|
|
|
|
/** Return 8 bpp colour number from red, green and blue components. */
|
|
|
|
#define DLO_RGB8(red, grn, blu) ((((red) << 5) | (((grn) & 3) << 3) | ((blu) & 7)) & 0xFF)
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
static uint8_t rgb8(uint32_t col)
|
|
|
|
{
|
|
|
|
uint8_t red = DLO_RGB_GETRED(col);
|
|
|
|
uint8_t grn = DLO_RGB_GETGRN(col);
|
|
|
|
uint8_t blu = DLO_RGB_GETBLU(col);
|
|
|
|
|
|
|
|
return DLO_RGB8(red, grn, blu);
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint16_t rgb16(uint32_t col)
|
|
|
|
{
|
|
|
|
uint8_t red = DLO_RGB_GETRED(col);
|
|
|
|
uint8_t grn = DLO_RGB_GETGRN(col);
|
|
|
|
uint8_t blu = DLO_RGB_GETBLU(col);
|
|
|
|
|
|
|
|
return (DLO_RG16(red, grn) << 8) + DLO_GB16(grn, blu);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int udl_handle_damage(struct udl_framebuffer *fb, int x, int y,
|
|
|
|
int width, int height)
|
|
|
|
{
|
|
|
|
struct drm_device *dev = fb->base.dev;
|
2019-04-05 11:17:14 +08:00
|
|
|
struct udl_device *udl = to_udl(dev);
|
2010-12-15 05:14:24 +08:00
|
|
|
int i, ret;
|
|
|
|
char *cmd;
|
|
|
|
cycles_t start_cycles, end_cycles;
|
|
|
|
int bytes_sent = 0;
|
|
|
|
int bytes_identical = 0;
|
|
|
|
struct urb *urb;
|
|
|
|
int aligned_x;
|
2018-06-03 22:41:00 +08:00
|
|
|
int log_bpp;
|
|
|
|
|
|
|
|
BUG_ON(!is_power_of_2(fb->base.format->cpp[0]));
|
|
|
|
log_bpp = __ffs(fb->base.format->cpp[0]);
|
2010-12-15 05:14:24 +08:00
|
|
|
|
|
|
|
if (!fb->active_16)
|
|
|
|
return 0;
|
|
|
|
|
2012-03-26 21:36:56 +08:00
|
|
|
if (!fb->obj->vmapping) {
|
|
|
|
ret = udl_gem_vmap(fb->obj);
|
|
|
|
if (ret == -ENOMEM) {
|
|
|
|
DRM_ERROR("failed to vmap fb\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!fb->obj->vmapping) {
|
|
|
|
DRM_ERROR("failed to vmapping\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2010-12-15 05:14:24 +08:00
|
|
|
|
|
|
|
aligned_x = DL_ALIGN_DOWN(x, sizeof(unsigned long));
|
|
|
|
width = DL_ALIGN_UP(width + (x-aligned_x), sizeof(unsigned long));
|
|
|
|
x = aligned_x;
|
|
|
|
|
|
|
|
if ((width <= 0) ||
|
|
|
|
(x + width > fb->base.width) ||
|
|
|
|
(y + height > fb->base.height))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2013-02-07 09:19:15 +08:00
|
|
|
start_cycles = get_cycles();
|
|
|
|
|
2010-12-15 05:14:24 +08:00
|
|
|
urb = udl_get_urb(dev);
|
|
|
|
if (!urb)
|
|
|
|
return 0;
|
|
|
|
cmd = urb->transfer_buffer;
|
|
|
|
|
2016-09-23 18:36:02 +08:00
|
|
|
for (i = y; i < y + height ; i++) {
|
2010-12-15 05:14:24 +08:00
|
|
|
const int line_offset = fb->base.pitches[0] * i;
|
2018-06-03 22:41:00 +08:00
|
|
|
const int byte_offset = line_offset + (x << log_bpp);
|
|
|
|
const int dev_byte_offset = (fb->base.width * i + x) << log_bpp;
|
|
|
|
if (udl_render_hline(dev, log_bpp, &urb,
|
2010-12-15 05:14:24 +08:00
|
|
|
(char *) fb->obj->vmapping,
|
2012-11-01 11:47:09 +08:00
|
|
|
&cmd, byte_offset, dev_byte_offset,
|
2018-06-03 22:41:00 +08:00
|
|
|
width << log_bpp,
|
2010-12-15 05:14:24 +08:00
|
|
|
&bytes_identical, &bytes_sent))
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cmd > (char *) urb->transfer_buffer) {
|
|
|
|
/* Send partial buffer remaining before exiting */
|
2018-06-03 22:40:54 +08:00
|
|
|
int len;
|
|
|
|
if (cmd < (char *) urb->transfer_buffer + urb->transfer_buffer_length)
|
|
|
|
*cmd++ = 0xAF;
|
|
|
|
len = cmd - (char *) urb->transfer_buffer;
|
2010-12-15 05:14:24 +08:00
|
|
|
ret = udl_submit_urb(dev, urb, len);
|
|
|
|
bytes_sent += len;
|
|
|
|
} else
|
|
|
|
udl_urb_completion(urb);
|
|
|
|
|
|
|
|
error:
|
|
|
|
atomic_add(bytes_sent, &udl->bytes_sent);
|
|
|
|
atomic_add(bytes_identical, &udl->bytes_identical);
|
2018-06-03 22:41:00 +08:00
|
|
|
atomic_add((width * height) << log_bpp, &udl->bytes_rendered);
|
2010-12-15 05:14:24 +08:00
|
|
|
end_cycles = get_cycles();
|
|
|
|
atomic_add(((unsigned int) ((end_cycles - start_cycles)
|
|
|
|
>> 10)), /* Kcycles */
|
|
|
|
&udl->cpu_kcycles_used);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int udl_fb_mmap(struct fb_info *info, struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
unsigned long start = vma->vm_start;
|
|
|
|
unsigned long size = vma->vm_end - vma->vm_start;
|
2018-03-21 23:45:53 +08:00
|
|
|
unsigned long offset;
|
2010-12-15 05:14:24 +08:00
|
|
|
unsigned long page, pos;
|
|
|
|
|
2018-03-21 23:45:53 +08:00
|
|
|
if (vma->vm_pgoff > (~0UL >> PAGE_SHIFT))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
offset = vma->vm_pgoff << PAGE_SHIFT;
|
|
|
|
|
|
|
|
if (offset > info->fix.smem_len || size > info->fix.smem_len - offset)
|
2010-12-15 05:14:24 +08:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
pos = (unsigned long)info->fix.smem_start + offset;
|
|
|
|
|
2018-06-03 22:41:03 +08:00
|
|
|
pr_debug("mmap() framebuffer addr:%lu size:%lu\n",
|
2010-12-15 05:14:24 +08:00
|
|
|
pos, size);
|
|
|
|
|
2017-07-18 05:10:26 +08:00
|
|
|
/* We don't want the framebuffer to be mapped encrypted */
|
|
|
|
vma->vm_page_prot = pgprot_decrypted(vma->vm_page_prot);
|
|
|
|
|
2010-12-15 05:14:24 +08:00
|
|
|
while (size > 0) {
|
|
|
|
page = vmalloc_to_pfn((void *)pos);
|
|
|
|
if (remap_pfn_range(vma, start, page, PAGE_SIZE, PAGE_SHARED))
|
|
|
|
return -EAGAIN;
|
|
|
|
|
|
|
|
start += PAGE_SIZE;
|
|
|
|
pos += PAGE_SIZE;
|
|
|
|
if (size > PAGE_SIZE)
|
|
|
|
size -= PAGE_SIZE;
|
|
|
|
else
|
|
|
|
size = 0;
|
|
|
|
}
|
|
|
|
|
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 07:29:02 +08:00
|
|
|
/* VM_IO | VM_DONTEXPAND | VM_DONTDUMP are set by remap_pfn_range() */
|
2010-12-15 05:14:24 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* It's common for several clients to have framebuffer open simultaneously.
|
|
|
|
* e.g. both fbcon and X. Makes things interesting.
|
|
|
|
* Assumes caller is holding info->lock (for open and release at least)
|
|
|
|
*/
|
|
|
|
static int udl_fb_open(struct fb_info *info, int user)
|
|
|
|
{
|
|
|
|
struct udl_fbdev *ufbdev = info->par;
|
|
|
|
struct drm_device *dev = ufbdev->ufb.base.dev;
|
2019-04-05 11:17:14 +08:00
|
|
|
struct udl_device *udl = to_udl(dev);
|
2010-12-15 05:14:24 +08:00
|
|
|
|
|
|
|
/* If the USB device is gone, we don't accept new opens */
|
2019-04-05 11:17:15 +08:00
|
|
|
if (drm_dev_is_unplugged(&udl->drm))
|
2010-12-15 05:14:24 +08:00
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
ufbdev->fb_count++;
|
|
|
|
|
2016-08-11 00:52:38 +08:00
|
|
|
#ifdef CONFIG_DRM_FBDEV_EMULATION
|
2010-12-15 05:14:24 +08:00
|
|
|
if (fb_defio && (info->fbdefio == NULL)) {
|
|
|
|
/* enable defio at last moment if not disabled by client */
|
|
|
|
|
|
|
|
struct fb_deferred_io *fbdefio;
|
|
|
|
|
2018-06-03 22:40:57 +08:00
|
|
|
fbdefio = kzalloc(sizeof(struct fb_deferred_io), GFP_KERNEL);
|
2010-12-15 05:14:24 +08:00
|
|
|
|
|
|
|
if (fbdefio) {
|
|
|
|
fbdefio->delay = DL_DEFIO_WRITE_DELAY;
|
2016-04-28 23:18:37 +08:00
|
|
|
fbdefio->deferred_io = drm_fb_helper_deferred_io;
|
2010-12-15 05:14:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
info->fbdefio = fbdefio;
|
|
|
|
fb_deferred_io_init(info);
|
|
|
|
}
|
2016-08-11 00:52:38 +08:00
|
|
|
#endif
|
2010-12-15 05:14:24 +08:00
|
|
|
|
2018-06-03 22:41:03 +08:00
|
|
|
pr_debug("open /dev/fb%d user=%d fb_info=%p count=%d\n",
|
2010-12-15 05:14:24 +08:00
|
|
|
info->node, user, info, ufbdev->fb_count);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Assumes caller is holding info->lock mutex (for open and release at least)
|
|
|
|
*/
|
|
|
|
static int udl_fb_release(struct fb_info *info, int user)
|
|
|
|
{
|
|
|
|
struct udl_fbdev *ufbdev = info->par;
|
|
|
|
|
|
|
|
ufbdev->fb_count--;
|
|
|
|
|
2016-08-11 00:52:38 +08:00
|
|
|
#ifdef CONFIG_DRM_FBDEV_EMULATION
|
2010-12-15 05:14:24 +08:00
|
|
|
if ((ufbdev->fb_count == 0) && (info->fbdefio)) {
|
|
|
|
fb_deferred_io_cleanup(info);
|
|
|
|
kfree(info->fbdefio);
|
|
|
|
info->fbdefio = NULL;
|
|
|
|
info->fbops->fb_mmap = udl_fb_mmap;
|
|
|
|
}
|
2016-08-11 00:52:38 +08:00
|
|
|
#endif
|
2010-12-15 05:14:24 +08:00
|
|
|
|
2018-06-03 22:41:03 +08:00
|
|
|
pr_debug("released /dev/fb%d user=%d count=%d\n",
|
2010-12-15 05:14:24 +08:00
|
|
|
info->node, user, ufbdev->fb_count);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct fb_ops udlfb_ops = {
|
|
|
|
.owner = THIS_MODULE,
|
2016-11-14 07:03:23 +08:00
|
|
|
DRM_FB_HELPER_DEFAULT_OPS,
|
2016-04-28 23:18:37 +08:00
|
|
|
.fb_fillrect = drm_fb_helper_sys_fillrect,
|
|
|
|
.fb_copyarea = drm_fb_helper_sys_copyarea,
|
|
|
|
.fb_imageblit = drm_fb_helper_sys_imageblit,
|
2010-12-15 05:14:24 +08:00
|
|
|
.fb_mmap = udl_fb_mmap,
|
|
|
|
.fb_open = udl_fb_open,
|
|
|
|
.fb_release = udl_fb_release,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int udl_user_framebuffer_dirty(struct drm_framebuffer *fb,
|
|
|
|
struct drm_file *file,
|
|
|
|
unsigned flags, unsigned color,
|
|
|
|
struct drm_clip_rect *clips,
|
|
|
|
unsigned num_clips)
|
|
|
|
{
|
|
|
|
struct udl_framebuffer *ufb = to_udl_fb(fb);
|
|
|
|
int i;
|
2012-07-30 12:06:55 +08:00
|
|
|
int ret = 0;
|
2010-12-15 05:14:24 +08:00
|
|
|
|
2013-12-04 20:13:58 +08:00
|
|
|
drm_modeset_lock_all(fb->dev);
|
|
|
|
|
2010-12-15 05:14:24 +08:00
|
|
|
if (!ufb->active_16)
|
2013-12-04 20:13:58 +08:00
|
|
|
goto unlock;
|
2010-12-15 05:14:24 +08:00
|
|
|
|
2012-07-30 12:06:55 +08:00
|
|
|
if (ufb->obj->base.import_attach) {
|
|
|
|
ret = dma_buf_begin_cpu_access(ufb->obj->base.import_attach->dmabuf,
|
|
|
|
DMA_FROM_DEVICE);
|
|
|
|
if (ret)
|
2013-12-04 20:13:58 +08:00
|
|
|
goto unlock;
|
2012-07-30 12:06:55 +08:00
|
|
|
}
|
|
|
|
|
2010-12-15 05:14:24 +08:00
|
|
|
for (i = 0; i < num_clips; i++) {
|
2012-07-30 12:06:55 +08:00
|
|
|
ret = udl_handle_damage(ufb, clips[i].x1, clips[i].y1,
|
2010-12-15 05:14:24 +08:00
|
|
|
clips[i].x2 - clips[i].x1,
|
|
|
|
clips[i].y2 - clips[i].y1);
|
2012-07-30 12:06:55 +08:00
|
|
|
if (ret)
|
2014-01-21 02:52:29 +08:00
|
|
|
break;
|
2010-12-15 05:14:24 +08:00
|
|
|
}
|
2012-07-30 12:06:55 +08:00
|
|
|
|
|
|
|
if (ufb->obj->base.import_attach) {
|
dma-buf, drm, ion: Propagate error code from dma_buf_start_cpu_access()
Drivers, especially i915.ko, can fail during the initial migration of a
dma-buf for CPU access. However, the error code from the driver was not
being propagated back to ioctl and so userspace was blissfully ignorant
of the failure. Rendering corruption ensues.
Whilst fixing the ioctl to return the error code from
dma_buf_start_cpu_access(), also do the same for
dma_buf_end_cpu_access(). For most drivers, dma_buf_end_cpu_access()
cannot fail. i915.ko however, as most drivers would, wants to avoid being
uninterruptible (as would be required to guarrantee no failure when
flushing the buffer to the device). As userspace already has to handle
errors from the SYNC_IOCTL, take advantage of this to be able to restart
the syscall across signals.
This fixes a coherency issue for i915.ko as well as reducing the
uninterruptible hold upon its BKL, the struct_mutex.
Fixes commit c11e391da2a8fe973c3c2398452000bed505851e
Author: Daniel Vetter <daniel.vetter@ffwll.ch>
Date: Thu Feb 11 20:04:51 2016 -0200
dma-buf: Add ioctls to allow userspace to flush
Testcase: igt/gem_concurrent_blit/*dmabuf*interruptible
Testcase: igt/prime_mmap_coherency/ioctl-errors
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tiago Vignatti <tiago.vignatti@intel.com>
Cc: Stéphane Marchesin <marcheu@chromium.org>
Cc: David Herrmann <dh.herrmann@gmail.com>
Cc: Sumit Semwal <sumit.semwal@linaro.org>
Cc: Daniel Vetter <daniel.vetter@intel.com>
CC: linux-media@vger.kernel.org
Cc: dri-devel@lists.freedesktop.org
Cc: linaro-mm-sig@lists.linaro.org
Cc: intel-gfx@lists.freedesktop.org
Cc: devel@driverdev.osuosl.org
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/1458331359-2634-1-git-send-email-chris@chris-wilson.co.uk
2016-03-19 04:02:39 +08:00
|
|
|
ret = dma_buf_end_cpu_access(ufb->obj->base.import_attach->dmabuf,
|
|
|
|
DMA_FROM_DEVICE);
|
2012-07-30 12:06:55 +08:00
|
|
|
}
|
2013-12-04 20:13:58 +08:00
|
|
|
|
|
|
|
unlock:
|
|
|
|
drm_modeset_unlock_all(fb->dev);
|
|
|
|
|
2012-07-30 12:06:55 +08:00
|
|
|
return ret;
|
2010-12-15 05:14:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void udl_user_framebuffer_destroy(struct drm_framebuffer *fb)
|
|
|
|
{
|
|
|
|
struct udl_framebuffer *ufb = to_udl_fb(fb);
|
|
|
|
|
|
|
|
if (ufb->obj)
|
2017-08-11 20:33:09 +08:00
|
|
|
drm_gem_object_put_unlocked(&ufb->obj->base);
|
2010-12-15 05:14:24 +08:00
|
|
|
|
|
|
|
drm_framebuffer_cleanup(fb);
|
|
|
|
kfree(ufb);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct drm_framebuffer_funcs udlfb_funcs = {
|
|
|
|
.destroy = udl_user_framebuffer_destroy,
|
|
|
|
.dirty = udl_user_framebuffer_dirty,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
udl_framebuffer_init(struct drm_device *dev,
|
|
|
|
struct udl_framebuffer *ufb,
|
2015-11-12 01:11:29 +08:00
|
|
|
const struct drm_mode_fb_cmd2 *mode_cmd,
|
2010-12-15 05:14:24 +08:00
|
|
|
struct udl_gem_object *obj)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ufb->obj = obj;
|
drm: Pass 'dev' to drm_helper_mode_fill_fb_struct()
Pass the drm_device to drm_helper_mode_fill_fb_struct() so that we can
populate fb->dev early. Will make it easier to use the fb before we
register it.
@@
identifier fb, mode_cmd;
@@
void drm_helper_mode_fill_fb_struct(
+ struct drm_device *dev,
struct drm_framebuffer *fb,
const struct drm_mode_fb_cmd2 *mode_cmd
);
@@
identifier fb, mode_cmd;
@@
void drm_helper_mode_fill_fb_struct(
+ struct drm_device *dev,
struct drm_framebuffer *fb,
const struct drm_mode_fb_cmd2 *mode_cmd
)
{ ... }
@@
function func;
identifier dev;
expression E1, E2;
@@
func(struct drm_device *dev, ...)
{
...
drm_helper_mode_fill_fb_struct(
+ dev,
E1, E2);
...
}
@@
expression E1, E2;
@@
drm_helper_mode_fill_fb_struct(
+ dev,
E1, E2);
v2: Rerun spatch due to code changes
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1481748539-18283-1-git-send-email-ville.syrjala@linux.intel.com
2016-12-15 04:48:59 +08:00
|
|
|
drm_helper_mode_fill_fb_struct(dev, &ufb->base, mode_cmd);
|
2012-12-14 06:38:38 +08:00
|
|
|
ret = drm_framebuffer_init(dev, &ufb->base, &udlfb_funcs);
|
2010-12-15 05:14:24 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-22 06:42:49 +08:00
|
|
|
static int udlfb_create(struct drm_fb_helper *helper,
|
2010-12-15 05:14:24 +08:00
|
|
|
struct drm_fb_helper_surface_size *sizes)
|
|
|
|
{
|
2014-09-15 00:40:22 +08:00
|
|
|
struct udl_fbdev *ufbdev =
|
|
|
|
container_of(helper, struct udl_fbdev, helper);
|
2010-12-15 05:14:24 +08:00
|
|
|
struct drm_device *dev = ufbdev->helper.dev;
|
|
|
|
struct fb_info *info;
|
|
|
|
struct drm_framebuffer *fb;
|
|
|
|
struct drm_mode_fb_cmd2 mode_cmd;
|
|
|
|
struct udl_gem_object *obj;
|
|
|
|
uint32_t size;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
if (sizes->surface_bpp == 24)
|
|
|
|
sizes->surface_bpp = 32;
|
|
|
|
|
|
|
|
mode_cmd.width = sizes->surface_width;
|
|
|
|
mode_cmd.height = sizes->surface_height;
|
|
|
|
mode_cmd.pitches[0] = mode_cmd.width * ((sizes->surface_bpp + 7) / 8);
|
|
|
|
|
|
|
|
mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
|
|
|
|
sizes->surface_depth);
|
|
|
|
|
|
|
|
size = mode_cmd.pitches[0] * mode_cmd.height;
|
|
|
|
size = ALIGN(size, PAGE_SIZE);
|
|
|
|
|
|
|
|
obj = udl_gem_alloc_object(dev, size);
|
|
|
|
if (!obj)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
ret = udl_gem_vmap(obj);
|
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("failed to vmap fb\n");
|
|
|
|
goto out_gfree;
|
|
|
|
}
|
|
|
|
|
2015-07-22 17:28:16 +08:00
|
|
|
info = drm_fb_helper_alloc_fbi(helper);
|
|
|
|
if (IS_ERR(info)) {
|
|
|
|
ret = PTR_ERR(info);
|
2010-12-15 05:14:24 +08:00
|
|
|
goto out_gfree;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = udl_framebuffer_init(dev, &ufbdev->ufb, &mode_cmd, obj);
|
|
|
|
if (ret)
|
2017-02-08 00:16:03 +08:00
|
|
|
goto out_gfree;
|
2010-12-15 05:14:24 +08:00
|
|
|
|
|
|
|
fb = &ufbdev->ufb.base;
|
|
|
|
|
|
|
|
ufbdev->helper.fb = fb;
|
|
|
|
|
|
|
|
info->screen_base = ufbdev->ufb.obj->vmapping;
|
|
|
|
info->fix.smem_len = size;
|
|
|
|
info->fix.smem_start = (unsigned long)ufbdev->ufb.obj->vmapping;
|
|
|
|
|
|
|
|
info->fbops = &udlfb_ops;
|
2019-03-26 21:20:06 +08:00
|
|
|
drm_fb_helper_fill_info(info, &ufbdev->helper, sizes);
|
2010-12-15 05:14:24 +08:00
|
|
|
|
|
|
|
DRM_DEBUG_KMS("allocated %dx%d vmal %p\n",
|
|
|
|
fb->width, fb->height,
|
|
|
|
ufbdev->ufb.obj->vmapping);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
out_gfree:
|
2017-08-11 20:33:09 +08:00
|
|
|
drm_gem_object_put_unlocked(&ufbdev->ufb.obj->base);
|
2010-12-15 05:14:24 +08:00
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-06-27 23:19:23 +08:00
|
|
|
static const struct drm_fb_helper_funcs udl_fb_helper_funcs = {
|
2013-01-22 06:42:49 +08:00
|
|
|
.fb_probe = udlfb_create,
|
2010-12-15 05:14:24 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static void udl_fbdev_destroy(struct drm_device *dev,
|
|
|
|
struct udl_fbdev *ufbdev)
|
|
|
|
{
|
2015-07-22 17:28:16 +08:00
|
|
|
drm_fb_helper_unregister_fbi(&ufbdev->helper);
|
2010-12-15 05:14:24 +08:00
|
|
|
drm_fb_helper_fini(&ufbdev->helper);
|
2018-05-28 22:27:11 +08:00
|
|
|
if (ufbdev->ufb.obj) {
|
|
|
|
drm_framebuffer_unregister_private(&ufbdev->ufb.base);
|
|
|
|
drm_framebuffer_cleanup(&ufbdev->ufb.base);
|
|
|
|
drm_gem_object_put_unlocked(&ufbdev->ufb.obj->base);
|
|
|
|
}
|
2010-12-15 05:14:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int udl_fbdev_init(struct drm_device *dev)
|
|
|
|
{
|
2019-04-05 11:17:14 +08:00
|
|
|
struct udl_device *udl = to_udl(dev);
|
2010-12-15 05:14:24 +08:00
|
|
|
int bpp_sel = fb_bpp;
|
|
|
|
struct udl_fbdev *ufbdev;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ufbdev = kzalloc(sizeof(struct udl_fbdev), GFP_KERNEL);
|
|
|
|
if (!ufbdev)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
udl->fbdev = ufbdev;
|
2014-06-27 23:19:24 +08:00
|
|
|
|
|
|
|
drm_fb_helper_prepare(dev, &ufbdev->helper, &udl_fb_helper_funcs);
|
2010-12-15 05:14:24 +08:00
|
|
|
|
drm: Rely on mode_config data for fb_helper initialization
Instead of receiving the num_crts as a parameter, we can read it
directly from the mode_config structure. I audited the drivers that
invoke this helper and I believe all of them initialize the mode_config
struct accordingly, prior to calling the fb_helper.
I used the following coccinelle hack to make this transformation, except
for the function headers and comment updates. The first and second
rules are split because I couldn't find a way to remove the unused
temporary variables at the same time I removed the parameter.
// <smpl>
@r@
expression A,B,D,E;
identifier C;
@@
(
- drm_fb_helper_init(A,B,C,D)
+ drm_fb_helper_init(A,B,D)
|
- drm_fbdev_cma_init_with_funcs(A,B,C,D,E)
+ drm_fbdev_cma_init_with_funcs(A,B,D,E)
|
- drm_fbdev_cma_init(A,B,C,D)
+ drm_fbdev_cma_init(A,B,D)
)
@@
expression A,B,C,D,E;
@@
(
- drm_fb_helper_init(A,B,C,D)
+ drm_fb_helper_init(A,B,D)
|
- drm_fbdev_cma_init_with_funcs(A,B,C,D,E)
+ drm_fbdev_cma_init_with_funcs(A,B,D,E)
|
- drm_fbdev_cma_init(A,B,C,D)
+ drm_fbdev_cma_init(A,B,D)
)
@@
identifier r.C;
type T;
expression V;
@@
- T C;
<...
when != C
- C = V;
...>
// </smpl>
Changes since v1:
- Rebased on top of the tip of drm-misc-next.
- Remove mention to sti since a proper fix got merged.
Suggested-by: Daniel Vetter <daniel.vetter@intel.com>
Signed-off-by: Gabriel Krisman Bertazi <krisman@collabora.co.uk>
Reviewed-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20170202162640.27261-1-krisman@collabora.co.uk
2017-02-03 00:26:40 +08:00
|
|
|
ret = drm_fb_helper_init(dev, &ufbdev->helper, 1);
|
2014-12-19 18:21:32 +08:00
|
|
|
if (ret)
|
|
|
|
goto free;
|
2010-12-15 05:14:24 +08:00
|
|
|
|
2014-12-19 18:21:32 +08:00
|
|
|
ret = drm_fb_helper_single_add_all_connectors(&ufbdev->helper);
|
|
|
|
if (ret)
|
|
|
|
goto fini;
|
2013-01-21 06:12:54 +08:00
|
|
|
|
|
|
|
/* disable all the possible outputs/crtcs before entering KMS mode */
|
|
|
|
drm_helper_disable_unused_functions(dev);
|
|
|
|
|
2014-12-19 18:21:32 +08:00
|
|
|
ret = drm_fb_helper_initial_config(&ufbdev->helper, bpp_sel);
|
|
|
|
if (ret)
|
|
|
|
goto fini;
|
|
|
|
|
2010-12-15 05:14:24 +08:00
|
|
|
return 0;
|
2014-12-19 18:21:32 +08:00
|
|
|
|
|
|
|
fini:
|
|
|
|
drm_fb_helper_fini(&ufbdev->helper);
|
|
|
|
free:
|
|
|
|
kfree(ufbdev);
|
|
|
|
return ret;
|
2010-12-15 05:14:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void udl_fbdev_cleanup(struct drm_device *dev)
|
|
|
|
{
|
2019-04-05 11:17:14 +08:00
|
|
|
struct udl_device *udl = to_udl(dev);
|
2010-12-15 05:14:24 +08:00
|
|
|
if (!udl->fbdev)
|
|
|
|
return;
|
|
|
|
|
|
|
|
udl_fbdev_destroy(dev, udl->fbdev);
|
|
|
|
kfree(udl->fbdev);
|
|
|
|
udl->fbdev = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void udl_fbdev_unplug(struct drm_device *dev)
|
|
|
|
{
|
2019-04-05 11:17:14 +08:00
|
|
|
struct udl_device *udl = to_udl(dev);
|
2010-12-15 05:14:24 +08:00
|
|
|
struct udl_fbdev *ufbdev;
|
|
|
|
if (!udl->fbdev)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ufbdev = udl->fbdev;
|
2015-07-22 17:28:16 +08:00
|
|
|
drm_fb_helper_unlink_fbi(&ufbdev->helper);
|
2010-12-15 05:14:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
struct drm_framebuffer *
|
|
|
|
udl_fb_user_fb_create(struct drm_device *dev,
|
|
|
|
struct drm_file *file,
|
2015-11-12 01:11:29 +08:00
|
|
|
const struct drm_mode_fb_cmd2 *mode_cmd)
|
2010-12-15 05:14:24 +08:00
|
|
|
{
|
|
|
|
struct drm_gem_object *obj;
|
|
|
|
struct udl_framebuffer *ufb;
|
|
|
|
int ret;
|
2011-12-21 19:23:44 +08:00
|
|
|
uint32_t size;
|
2010-12-15 05:14:24 +08:00
|
|
|
|
2016-05-09 18:04:54 +08:00
|
|
|
obj = drm_gem_object_lookup(file, mode_cmd->handles[0]);
|
2010-12-15 05:14:24 +08:00
|
|
|
if (obj == NULL)
|
|
|
|
return ERR_PTR(-ENOENT);
|
|
|
|
|
2011-12-21 19:23:44 +08:00
|
|
|
size = mode_cmd->pitches[0] * mode_cmd->height;
|
|
|
|
size = ALIGN(size, PAGE_SIZE);
|
|
|
|
|
|
|
|
if (size > obj->size) {
|
|
|
|
DRM_ERROR("object size not sufficient for fb %d %zu %d %d\n", size, obj->size, mode_cmd->pitches[0], mode_cmd->height);
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
}
|
|
|
|
|
2010-12-15 05:14:24 +08:00
|
|
|
ufb = kzalloc(sizeof(*ufb), GFP_KERNEL);
|
|
|
|
if (ufb == NULL)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
|
|
|
|
ret = udl_framebuffer_init(dev, ufb, mode_cmd, to_udl_bo(obj));
|
|
|
|
if (ret) {
|
|
|
|
kfree(ufb);
|
|
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
}
|
|
|
|
return &ufb->base;
|
|
|
|
}
|