drm/xen-front: Add support for Xen PV display frontend
Add support for Xen para-virtualized frontend display driver.
Accompanying backend [1] is implemented as a user-space application
and its helper library [2], capable of running as a Weston client
or DRM master.
Configuration of both backend and frontend is done via
Xen guest domain configuration options [3].
Driver limitations:
1. Only primary plane without additional properties is supported.
2. Only one video mode supported which resolution is configured
via XenStore.
3. All CRTCs operate at fixed frequency of 60Hz.
1. Implement Xen bus state machine for the frontend driver according to
the state diagram and recovery flow from display para-virtualized
protocol: xen/interface/io/displif.h.
2. Read configuration values from Xen store according
to xen/interface/io/displif.h protocol:
- read connector(s) configuration
- read buffer allocation mode (backend/frontend)
3. Handle Xen event channels:
- create for all configured connectors and publish
corresponding ring references and event channels in Xen store,
so backend can connect
- implement event channels interrupt handlers
- create and destroy event channels with respect to Xen bus state
4. Implement shared buffer handling according to the
para-virtualized display device protocol at xen/interface/io/displif.h:
- handle page directories according to displif protocol:
- allocate and share page directories
- grant references to the required set of pages for the
page directory
- allocate xen balllooned pages via Xen balloon driver
with alloc_xenballooned_pages/free_xenballooned_pages
- grant references to the required set of pages for the
shared buffer itself
- implement pages map/unmap for the buffers allocated by the
backend (gnttab_map_refs/gnttab_unmap_refs)
5. Implement kernel modesetiing/connector handling using
DRM simple KMS helper pipeline:
- implement KMS part of the driver with the help of DRM
simple pipepline helper which is possible due to the fact
that the para-virtualized driver only supports a single
(primary) plane:
- initialize connectors according to XenStore configuration
- handle frame done events from the backend
- create and destroy frame buffers and propagate those
to the backend
- propagate set/reset mode configuration to the backend on display
enable/disable callbacks
- send page flip request to the backend and implement logic for
reporting backend IO errors on prepare fb callback
- implement virtual connector handling:
- support only pixel formats suitable for single plane modes
- make sure the connector is always connected
- support a single video mode as per para-virtualized driver
configuration
6. Implement GEM handling depending on driver mode of operation:
depending on the requirements for the para-virtualized environment,
namely requirements dictated by the accompanying DRM/(v)GPU drivers
running in both host and guest environments, number of operating
modes of para-virtualized display driver are supported:
- display buffers can be allocated by either
frontend driver or backend
- display buffers can be allocated to be contiguous
in memory or not
Note! Frontend driver itself has no dependency on contiguous memory for
its operation.
6.1. Buffers allocated by the frontend driver.
The below modes of operation are configured at compile-time via
frontend driver's kernel configuration.
6.1.1. Front driver configured to use GEM CMA helpers
This use-case is useful when used with accompanying DRM/vGPU driver
in guest domain which was designed to only work with contiguous
buffers, e.g. DRM driver based on GEM CMA helpers: such drivers can
only import contiguous PRIME buffers, thus requiring frontend driver
to provide such. In order to implement this mode of operation
para-virtualized frontend driver can be configured to use
GEM CMA helpers.
6.1.2. Front driver doesn't use GEM CMA
If accompanying drivers can cope with non-contiguous memory then, to
lower pressure on CMA subsystem of the kernel, driver can allocate
buffers from system memory.
Note! If used with accompanying DRM/(v)GPU drivers this mode of operation
may require IOMMU support on the platform, so accompanying DRM/vGPU
hardware can still reach display buffer memory while importing PRIME
buffers from the frontend driver.
6.2. Buffers allocated by the backend
This mode of operation is run-time configured via guest domain
configuration through XenStore entries.
For systems which do not provide IOMMU support, but having specific
requirements for display buffers it is possible to allocate such buffers
at backend side and share those with the frontend.
For example, if host domain is 1:1 mapped and has DRM/GPU hardware
expecting physically contiguous memory, this allows implementing
zero-copying use-cases.
Note, while using this scenario the following should be considered:
a) If guest domain dies then pages/grants received from the backend
cannot be claimed back
b) Misbehaving guest may send too many requests to the
backend exhausting its grant references and memory
(consider this from security POV).
Note! Configuration options 1.1 (contiguous display buffers) and 2
(backend allocated buffers) are not supported at the same time.
7. Handle communication with the backend:
- send requests and wait for the responses according
to the displif protocol
- serialize access to the communication channel
- time-out used for backend communication is set to 3000 ms
- manage display buffers shared with the backend
[1] https://github.com/xen-troops/displ_be
[2] https://github.com/xen-troops/libxenbe
[3] https://xenbits.xen.org/gitweb/?p=xen.git;a=blob;f=docs/man/xl.cfg.pod.5.in;h=a699367779e2ae1212ff8f638eff0206ec1a1cc9;hb=refs/heads/master#l1257
Signed-off-by: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20180403112317.28751-2-andr2000@gmail.com
2018-04-03 19:23:17 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0 OR MIT
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Xen para-virtual DRM device
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016-2018 EPAM Systems Inc.
|
|
|
|
*
|
|
|
|
* Author: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "xen_drm_front_gem.h"
|
|
|
|
|
|
|
|
#include <drm/drmP.h>
|
|
|
|
#include <drm/drm_crtc_helper.h>
|
|
|
|
#include <drm/drm_fb_helper.h>
|
|
|
|
#include <drm/drm_gem.h>
|
|
|
|
|
|
|
|
#include <linux/dma-buf.h>
|
|
|
|
#include <linux/scatterlist.h>
|
|
|
|
#include <linux/shmem_fs.h>
|
|
|
|
|
|
|
|
#include <xen/balloon.h>
|
|
|
|
|
|
|
|
#include "xen_drm_front.h"
|
|
|
|
#include "xen_drm_front_shbuf.h"
|
|
|
|
|
|
|
|
struct xen_gem_object {
|
|
|
|
struct drm_gem_object base;
|
|
|
|
|
|
|
|
size_t num_pages;
|
|
|
|
struct page **pages;
|
|
|
|
|
|
|
|
/* set for buffers allocated by the backend */
|
|
|
|
bool be_alloc;
|
|
|
|
|
|
|
|
/* this is for imported PRIME buffer */
|
|
|
|
struct sg_table *sgt_imported;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct xen_gem_object *
|
|
|
|
to_xen_gem_obj(struct drm_gem_object *gem_obj)
|
|
|
|
{
|
|
|
|
return container_of(gem_obj, struct xen_gem_object, base);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int gem_alloc_pages_array(struct xen_gem_object *xen_obj,
|
|
|
|
size_t buf_size)
|
|
|
|
{
|
|
|
|
xen_obj->num_pages = DIV_ROUND_UP(buf_size, PAGE_SIZE);
|
|
|
|
xen_obj->pages = kvmalloc_array(xen_obj->num_pages,
|
|
|
|
sizeof(struct page *), GFP_KERNEL);
|
|
|
|
return !xen_obj->pages ? -ENOMEM : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gem_free_pages_array(struct xen_gem_object *xen_obj)
|
|
|
|
{
|
|
|
|
kvfree(xen_obj->pages);
|
|
|
|
xen_obj->pages = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct xen_gem_object *gem_create_obj(struct drm_device *dev,
|
|
|
|
size_t size)
|
|
|
|
{
|
|
|
|
struct xen_gem_object *xen_obj;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
xen_obj = kzalloc(sizeof(*xen_obj), GFP_KERNEL);
|
|
|
|
if (!xen_obj)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
|
|
|
|
ret = drm_gem_object_init(dev, &xen_obj->base, size);
|
|
|
|
if (ret < 0) {
|
|
|
|
kfree(xen_obj);
|
|
|
|
return ERR_PTR(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
return xen_obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct xen_gem_object *gem_create(struct drm_device *dev, size_t size)
|
|
|
|
{
|
|
|
|
struct xen_drm_front_drm_info *drm_info = dev->dev_private;
|
|
|
|
struct xen_gem_object *xen_obj;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
size = round_up(size, PAGE_SIZE);
|
|
|
|
xen_obj = gem_create_obj(dev, size);
|
|
|
|
if (IS_ERR_OR_NULL(xen_obj))
|
|
|
|
return xen_obj;
|
|
|
|
|
|
|
|
if (drm_info->front_info->cfg.be_alloc) {
|
|
|
|
/*
|
|
|
|
* backend will allocate space for this buffer, so
|
|
|
|
* only allocate array of pointers to pages
|
|
|
|
*/
|
|
|
|
ret = gem_alloc_pages_array(xen_obj, size);
|
|
|
|
if (ret < 0)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* allocate ballooned pages which will be used to map
|
|
|
|
* grant references provided by the backend
|
|
|
|
*/
|
|
|
|
ret = alloc_xenballooned_pages(xen_obj->num_pages,
|
|
|
|
xen_obj->pages);
|
|
|
|
if (ret < 0) {
|
|
|
|
DRM_ERROR("Cannot allocate %zu ballooned pages: %d\n",
|
|
|
|
xen_obj->num_pages, ret);
|
|
|
|
gem_free_pages_array(xen_obj);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
xen_obj->be_alloc = true;
|
|
|
|
return xen_obj;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* need to allocate backing pages now, so we can share those
|
|
|
|
* with the backend
|
|
|
|
*/
|
|
|
|
xen_obj->num_pages = DIV_ROUND_UP(size, PAGE_SIZE);
|
|
|
|
xen_obj->pages = drm_gem_get_pages(&xen_obj->base);
|
|
|
|
if (IS_ERR_OR_NULL(xen_obj->pages)) {
|
|
|
|
ret = PTR_ERR(xen_obj->pages);
|
|
|
|
xen_obj->pages = NULL;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
return xen_obj;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
DRM_ERROR("Failed to allocate buffer with size %zu\n", size);
|
|
|
|
return ERR_PTR(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct drm_gem_object *xen_drm_front_gem_create(struct drm_device *dev,
|
|
|
|
size_t size)
|
|
|
|
{
|
|
|
|
struct xen_gem_object *xen_obj;
|
|
|
|
|
|
|
|
xen_obj = gem_create(dev, size);
|
|
|
|
if (IS_ERR_OR_NULL(xen_obj))
|
|
|
|
return ERR_CAST(xen_obj);
|
|
|
|
|
|
|
|
return &xen_obj->base;
|
|
|
|
}
|
|
|
|
|
|
|
|
void xen_drm_front_gem_free_object_unlocked(struct drm_gem_object *gem_obj)
|
|
|
|
{
|
|
|
|
struct xen_gem_object *xen_obj = to_xen_gem_obj(gem_obj);
|
|
|
|
|
|
|
|
if (xen_obj->base.import_attach) {
|
|
|
|
drm_prime_gem_destroy(&xen_obj->base, xen_obj->sgt_imported);
|
|
|
|
gem_free_pages_array(xen_obj);
|
|
|
|
} else {
|
|
|
|
if (xen_obj->pages) {
|
|
|
|
if (xen_obj->be_alloc) {
|
|
|
|
free_xenballooned_pages(xen_obj->num_pages,
|
|
|
|
xen_obj->pages);
|
|
|
|
gem_free_pages_array(xen_obj);
|
|
|
|
} else {
|
|
|
|
drm_gem_put_pages(&xen_obj->base,
|
|
|
|
xen_obj->pages, true, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
drm_gem_object_release(gem_obj);
|
|
|
|
kfree(xen_obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct page **xen_drm_front_gem_get_pages(struct drm_gem_object *gem_obj)
|
|
|
|
{
|
|
|
|
struct xen_gem_object *xen_obj = to_xen_gem_obj(gem_obj);
|
|
|
|
|
|
|
|
return xen_obj->pages;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sg_table *xen_drm_front_gem_get_sg_table(struct drm_gem_object *gem_obj)
|
|
|
|
{
|
|
|
|
struct xen_gem_object *xen_obj = to_xen_gem_obj(gem_obj);
|
|
|
|
|
|
|
|
if (!xen_obj->pages)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return drm_prime_pages_to_sg(xen_obj->pages, xen_obj->num_pages);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct drm_gem_object *
|
|
|
|
xen_drm_front_gem_import_sg_table(struct drm_device *dev,
|
|
|
|
struct dma_buf_attachment *attach,
|
|
|
|
struct sg_table *sgt)
|
|
|
|
{
|
|
|
|
struct xen_drm_front_drm_info *drm_info = dev->dev_private;
|
|
|
|
struct xen_gem_object *xen_obj;
|
|
|
|
size_t size;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
size = attach->dmabuf->size;
|
|
|
|
xen_obj = gem_create_obj(dev, size);
|
|
|
|
if (IS_ERR_OR_NULL(xen_obj))
|
|
|
|
return ERR_CAST(xen_obj);
|
|
|
|
|
|
|
|
ret = gem_alloc_pages_array(xen_obj, size);
|
|
|
|
if (ret < 0)
|
|
|
|
return ERR_PTR(ret);
|
|
|
|
|
|
|
|
xen_obj->sgt_imported = sgt;
|
|
|
|
|
|
|
|
ret = drm_prime_sg_to_page_addr_arrays(sgt, xen_obj->pages,
|
|
|
|
NULL, xen_obj->num_pages);
|
|
|
|
if (ret < 0)
|
|
|
|
return ERR_PTR(ret);
|
|
|
|
|
2018-04-17 15:40:12 +08:00
|
|
|
ret = xen_drm_front_dbuf_create(drm_info->front_info,
|
|
|
|
xen_drm_front_dbuf_to_cookie(&xen_obj->base),
|
|
|
|
0, 0, 0, size, xen_obj->pages);
|
drm/xen-front: Add support for Xen PV display frontend
Add support for Xen para-virtualized frontend display driver.
Accompanying backend [1] is implemented as a user-space application
and its helper library [2], capable of running as a Weston client
or DRM master.
Configuration of both backend and frontend is done via
Xen guest domain configuration options [3].
Driver limitations:
1. Only primary plane without additional properties is supported.
2. Only one video mode supported which resolution is configured
via XenStore.
3. All CRTCs operate at fixed frequency of 60Hz.
1. Implement Xen bus state machine for the frontend driver according to
the state diagram and recovery flow from display para-virtualized
protocol: xen/interface/io/displif.h.
2. Read configuration values from Xen store according
to xen/interface/io/displif.h protocol:
- read connector(s) configuration
- read buffer allocation mode (backend/frontend)
3. Handle Xen event channels:
- create for all configured connectors and publish
corresponding ring references and event channels in Xen store,
so backend can connect
- implement event channels interrupt handlers
- create and destroy event channels with respect to Xen bus state
4. Implement shared buffer handling according to the
para-virtualized display device protocol at xen/interface/io/displif.h:
- handle page directories according to displif protocol:
- allocate and share page directories
- grant references to the required set of pages for the
page directory
- allocate xen balllooned pages via Xen balloon driver
with alloc_xenballooned_pages/free_xenballooned_pages
- grant references to the required set of pages for the
shared buffer itself
- implement pages map/unmap for the buffers allocated by the
backend (gnttab_map_refs/gnttab_unmap_refs)
5. Implement kernel modesetiing/connector handling using
DRM simple KMS helper pipeline:
- implement KMS part of the driver with the help of DRM
simple pipepline helper which is possible due to the fact
that the para-virtualized driver only supports a single
(primary) plane:
- initialize connectors according to XenStore configuration
- handle frame done events from the backend
- create and destroy frame buffers and propagate those
to the backend
- propagate set/reset mode configuration to the backend on display
enable/disable callbacks
- send page flip request to the backend and implement logic for
reporting backend IO errors on prepare fb callback
- implement virtual connector handling:
- support only pixel formats suitable for single plane modes
- make sure the connector is always connected
- support a single video mode as per para-virtualized driver
configuration
6. Implement GEM handling depending on driver mode of operation:
depending on the requirements for the para-virtualized environment,
namely requirements dictated by the accompanying DRM/(v)GPU drivers
running in both host and guest environments, number of operating
modes of para-virtualized display driver are supported:
- display buffers can be allocated by either
frontend driver or backend
- display buffers can be allocated to be contiguous
in memory or not
Note! Frontend driver itself has no dependency on contiguous memory for
its operation.
6.1. Buffers allocated by the frontend driver.
The below modes of operation are configured at compile-time via
frontend driver's kernel configuration.
6.1.1. Front driver configured to use GEM CMA helpers
This use-case is useful when used with accompanying DRM/vGPU driver
in guest domain which was designed to only work with contiguous
buffers, e.g. DRM driver based on GEM CMA helpers: such drivers can
only import contiguous PRIME buffers, thus requiring frontend driver
to provide such. In order to implement this mode of operation
para-virtualized frontend driver can be configured to use
GEM CMA helpers.
6.1.2. Front driver doesn't use GEM CMA
If accompanying drivers can cope with non-contiguous memory then, to
lower pressure on CMA subsystem of the kernel, driver can allocate
buffers from system memory.
Note! If used with accompanying DRM/(v)GPU drivers this mode of operation
may require IOMMU support on the platform, so accompanying DRM/vGPU
hardware can still reach display buffer memory while importing PRIME
buffers from the frontend driver.
6.2. Buffers allocated by the backend
This mode of operation is run-time configured via guest domain
configuration through XenStore entries.
For systems which do not provide IOMMU support, but having specific
requirements for display buffers it is possible to allocate such buffers
at backend side and share those with the frontend.
For example, if host domain is 1:1 mapped and has DRM/GPU hardware
expecting physically contiguous memory, this allows implementing
zero-copying use-cases.
Note, while using this scenario the following should be considered:
a) If guest domain dies then pages/grants received from the backend
cannot be claimed back
b) Misbehaving guest may send too many requests to the
backend exhausting its grant references and memory
(consider this from security POV).
Note! Configuration options 1.1 (contiguous display buffers) and 2
(backend allocated buffers) are not supported at the same time.
7. Handle communication with the backend:
- send requests and wait for the responses according
to the displif protocol
- serialize access to the communication channel
- time-out used for backend communication is set to 3000 ms
- manage display buffers shared with the backend
[1] https://github.com/xen-troops/displ_be
[2] https://github.com/xen-troops/libxenbe
[3] https://xenbits.xen.org/gitweb/?p=xen.git;a=blob;f=docs/man/xl.cfg.pod.5.in;h=a699367779e2ae1212ff8f638eff0206ec1a1cc9;hb=refs/heads/master#l1257
Signed-off-by: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20180403112317.28751-2-andr2000@gmail.com
2018-04-03 19:23:17 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ERR_PTR(ret);
|
|
|
|
|
|
|
|
DRM_DEBUG("Imported buffer of size %zu with nents %u\n",
|
|
|
|
size, sgt->nents);
|
|
|
|
|
|
|
|
return &xen_obj->base;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int gem_mmap_obj(struct xen_gem_object *xen_obj,
|
|
|
|
struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
unsigned long addr = vma->vm_start;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* clear the VM_PFNMAP flag that was set by drm_gem_mmap(), and set the
|
|
|
|
* vm_pgoff (used as a fake buffer offset by DRM) to 0 as we want to map
|
|
|
|
* the whole buffer.
|
|
|
|
*/
|
|
|
|
vma->vm_flags &= ~VM_PFNMAP;
|
|
|
|
vma->vm_flags |= VM_MIXEDMAP;
|
|
|
|
vma->vm_pgoff = 0;
|
|
|
|
vma->vm_page_prot =
|
|
|
|
pgprot_writecombine(vm_get_page_prot(vma->vm_flags));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* vm_operations_struct.fault handler will be called if CPU access
|
|
|
|
* to VM is here. For GPUs this isn't the case, because CPU
|
|
|
|
* doesn't touch the memory. Insert pages now, so both CPU and GPU are
|
|
|
|
* happy.
|
|
|
|
* FIXME: as we insert all the pages now then no .fault handler must
|
|
|
|
* be called, so don't provide one
|
|
|
|
*/
|
|
|
|
for (i = 0; i < xen_obj->num_pages; i++) {
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = vm_insert_page(vma, addr, xen_obj->pages[i]);
|
|
|
|
if (ret < 0) {
|
|
|
|
DRM_ERROR("Failed to insert pages into vma: %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
addr += PAGE_SIZE;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xen_drm_front_gem_mmap(struct file *filp, struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
struct xen_gem_object *xen_obj;
|
|
|
|
struct drm_gem_object *gem_obj;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = drm_gem_mmap(filp, vma);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
gem_obj = vma->vm_private_data;
|
|
|
|
xen_obj = to_xen_gem_obj(gem_obj);
|
|
|
|
return gem_mmap_obj(xen_obj, vma);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *xen_drm_front_gem_prime_vmap(struct drm_gem_object *gem_obj)
|
|
|
|
{
|
|
|
|
struct xen_gem_object *xen_obj = to_xen_gem_obj(gem_obj);
|
|
|
|
|
|
|
|
if (!xen_obj->pages)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return vmap(xen_obj->pages, xen_obj->num_pages,
|
|
|
|
VM_MAP, pgprot_writecombine(PAGE_KERNEL));
|
|
|
|
}
|
|
|
|
|
|
|
|
void xen_drm_front_gem_prime_vunmap(struct drm_gem_object *gem_obj,
|
|
|
|
void *vaddr)
|
|
|
|
{
|
|
|
|
vunmap(vaddr);
|
|
|
|
}
|
|
|
|
|
|
|
|
int xen_drm_front_gem_prime_mmap(struct drm_gem_object *gem_obj,
|
|
|
|
struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
struct xen_gem_object *xen_obj;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = drm_gem_mmap_obj(gem_obj, gem_obj->size, vma);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
xen_obj = to_xen_gem_obj(gem_obj);
|
|
|
|
return gem_mmap_obj(xen_obj, vma);
|
|
|
|
}
|