xref: /netbsd-src/sys/external/bsd/drm2/dist/drm/virtio/virtgpu_prime.c (revision 41ec02673d281bbb3d38e6c78504ce6e30c228c1)
1*41ec0267Sriastradh /*	$NetBSD: virtgpu_prime.c,v 1.3 2021/12/18 23:45:45 riastradh Exp $	*/
2efa246c0Sriastradh 
3efa246c0Sriastradh /*
4efa246c0Sriastradh  * Copyright 2014 Canonical
5efa246c0Sriastradh  *
6efa246c0Sriastradh  * Permission is hereby granted, free of charge, to any person obtaining a
7efa246c0Sriastradh  * copy of this software and associated documentation files (the "Software"),
8efa246c0Sriastradh  * to deal in the Software without restriction, including without limitation
9efa246c0Sriastradh  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10efa246c0Sriastradh  * and/or sell copies of the Software, and to permit persons to whom the
11efa246c0Sriastradh  * Software is furnished to do so, subject to the following conditions:
12efa246c0Sriastradh  *
13efa246c0Sriastradh  * The above copyright notice and this permission notice shall be included in
14efa246c0Sriastradh  * all copies or substantial portions of the Software.
15efa246c0Sriastradh  *
16efa246c0Sriastradh  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17efa246c0Sriastradh  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18efa246c0Sriastradh  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19efa246c0Sriastradh  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20efa246c0Sriastradh  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21efa246c0Sriastradh  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22efa246c0Sriastradh  * OTHER DEALINGS IN THE SOFTWARE.
23efa246c0Sriastradh  *
24efa246c0Sriastradh  * Authors: Andreas Pokorny
25efa246c0Sriastradh  */
26efa246c0Sriastradh 
27efa246c0Sriastradh #include <sys/cdefs.h>
28*41ec0267Sriastradh __KERNEL_RCSID(0, "$NetBSD: virtgpu_prime.c,v 1.3 2021/12/18 23:45:45 riastradh Exp $");
29*41ec0267Sriastradh 
30*41ec0267Sriastradh #include <drm/drm_prime.h>
31efa246c0Sriastradh 
32efa246c0Sriastradh #include "virtgpu_drv.h"
33efa246c0Sriastradh 
34efa246c0Sriastradh /* Empty Implementations as there should not be any other driver for a virtual
35*41ec0267Sriastradh  * device that might share buffers with virtgpu
36*41ec0267Sriastradh  */
37efa246c0Sriastradh 
virtgpu_gem_prime_import_sg_table(struct drm_device * dev,struct dma_buf_attachment * attach,struct sg_table * table)38efa246c0Sriastradh struct drm_gem_object *virtgpu_gem_prime_import_sg_table(
39efa246c0Sriastradh 	struct drm_device *dev, struct dma_buf_attachment *attach,
40efa246c0Sriastradh 	struct sg_table *table)
41efa246c0Sriastradh {
42efa246c0Sriastradh 	return ERR_PTR(-ENODEV);
43efa246c0Sriastradh }
44