mirror of
https://github.com/NVIDIA/open-gpu-kernel-modules.git
synced 2024-12-12 21:08:56 +01:00
258 lines
7.7 KiB
C
258 lines
7.7 KiB
C
/*
|
|
* Copyright (c) 2015, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
* DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include "nvidia-drm-conftest.h" /* NV_DRM_ATOMIC_MODESET_AVAILABLE */
|
|
|
|
#if defined(NV_DRM_ATOMIC_MODESET_AVAILABLE)
|
|
|
|
#include "nvidia-drm-priv.h"
|
|
#include "nvidia-drm-ioctl.h"
|
|
#include "nvidia-drm-fb.h"
|
|
#include "nvidia-drm-utils.h"
|
|
#include "nvidia-drm-gem.h"
|
|
#include "nvidia-drm-helper.h"
|
|
#include "nvidia-drm-format.h"
|
|
|
|
#include <drm/drm_crtc_helper.h>
|
|
|
|
static void __nv_drm_framebuffer_free(struct nv_drm_framebuffer *nv_fb)
|
|
{
|
|
uint32_t i;
|
|
|
|
/* Unreference gem object */
|
|
for (i = 0; i < ARRAY_SIZE(nv_fb->nv_gem); i++) {
|
|
if (nv_fb->nv_gem[i] != NULL) {
|
|
nv_drm_gem_object_unreference_unlocked(nv_fb->nv_gem[i]);
|
|
}
|
|
}
|
|
|
|
/* Free framebuffer */
|
|
nv_drm_free(nv_fb);
|
|
}
|
|
|
|
static void nv_drm_framebuffer_destroy(struct drm_framebuffer *fb)
|
|
{
|
|
struct nv_drm_device *nv_dev = to_nv_device(fb->dev);
|
|
struct nv_drm_framebuffer *nv_fb = to_nv_framebuffer(fb);
|
|
|
|
/* Cleaup core framebuffer object */
|
|
|
|
drm_framebuffer_cleanup(fb);
|
|
|
|
/* Free NvKmsKapiSurface associated with this framebuffer object */
|
|
|
|
nvKms->destroySurface(nv_dev->pDevice, nv_fb->pSurface);
|
|
|
|
__nv_drm_framebuffer_free(nv_fb);
|
|
}
|
|
|
|
static int
|
|
nv_drm_framebuffer_create_handle(struct drm_framebuffer *fb,
|
|
struct drm_file *file, unsigned int *handle)
|
|
{
|
|
struct nv_drm_framebuffer *nv_fb = to_nv_framebuffer(fb);
|
|
|
|
return nv_drm_gem_handle_create(file,
|
|
nv_fb->nv_gem[0],
|
|
handle);
|
|
}
|
|
|
|
static struct drm_framebuffer_funcs nv_framebuffer_funcs = {
|
|
.destroy = nv_drm_framebuffer_destroy,
|
|
.create_handle = nv_drm_framebuffer_create_handle,
|
|
};
|
|
|
|
static struct nv_drm_framebuffer *nv_drm_framebuffer_alloc(
|
|
struct drm_device *dev,
|
|
struct drm_file *file,
|
|
struct drm_mode_fb_cmd2 *cmd)
|
|
{
|
|
struct nv_drm_device *nv_dev = to_nv_device(dev);
|
|
struct nv_drm_framebuffer *nv_fb;
|
|
const int num_planes = nv_drm_format_num_planes(cmd->pixel_format);
|
|
uint32_t i;
|
|
|
|
/* Allocate memory for the framebuffer object */
|
|
nv_fb = nv_drm_calloc(1, sizeof(*nv_fb));
|
|
|
|
if (nv_fb == NULL) {
|
|
NV_DRM_DEV_DEBUG_DRIVER(
|
|
nv_dev,
|
|
"Failed to allocate memory for framebuffer object");
|
|
return ERR_PTR(-ENOMEM);
|
|
}
|
|
|
|
if (num_planes > ARRAY_SIZE(nv_fb->nv_gem)) {
|
|
NV_DRM_DEV_DEBUG_DRIVER(nv_dev, "Unsupported number of planes");
|
|
goto failed;
|
|
}
|
|
|
|
for (i = 0; i < num_planes; i++) {
|
|
if ((nv_fb->nv_gem[i] = nv_drm_gem_object_lookup(
|
|
dev,
|
|
file,
|
|
cmd->handles[i])) == NULL) {
|
|
NV_DRM_DEV_DEBUG_DRIVER(
|
|
nv_dev,
|
|
"Failed to find gem object of type nvkms memory");
|
|
goto failed;
|
|
}
|
|
}
|
|
|
|
return nv_fb;
|
|
|
|
failed:
|
|
|
|
__nv_drm_framebuffer_free(nv_fb);
|
|
|
|
return ERR_PTR(-ENOENT);
|
|
}
|
|
|
|
static int nv_drm_framebuffer_init(struct drm_device *dev,
|
|
struct nv_drm_framebuffer *nv_fb,
|
|
enum NvKmsSurfaceMemoryFormat format,
|
|
bool have_modifier,
|
|
uint64_t modifier)
|
|
{
|
|
struct nv_drm_device *nv_dev = to_nv_device(dev);
|
|
struct NvKmsKapiCreateSurfaceParams params = { };
|
|
uint32_t i;
|
|
int ret;
|
|
|
|
/* Initialize the base framebuffer object and add it to drm subsystem */
|
|
|
|
ret = drm_framebuffer_init(dev, &nv_fb->base, &nv_framebuffer_funcs);
|
|
if (ret != 0) {
|
|
NV_DRM_DEV_DEBUG_DRIVER(
|
|
nv_dev,
|
|
"Failed to initialize framebuffer object");
|
|
return ret;
|
|
}
|
|
|
|
for (i = 0; i < ARRAY_SIZE(nv_fb->nv_gem); i++) {
|
|
if (nv_fb->nv_gem[i] != NULL) {
|
|
params.planes[i].memory = nv_fb->nv_gem[i]->pMemory;
|
|
params.planes[i].offset = nv_fb->base.offsets[i];
|
|
params.planes[i].pitch = nv_fb->base.pitches[i];
|
|
}
|
|
}
|
|
params.height = nv_fb->base.height;
|
|
params.width = nv_fb->base.width;
|
|
params.format = format;
|
|
|
|
if (have_modifier) {
|
|
params.explicit_layout = true;
|
|
params.layout = (modifier & 0x10) ?
|
|
NvKmsSurfaceMemoryLayoutBlockLinear :
|
|
NvKmsSurfaceMemoryLayoutPitch;
|
|
params.log2GobsPerBlockY = modifier & 0xf;
|
|
} else {
|
|
params.explicit_layout = false;
|
|
}
|
|
|
|
/* Create NvKmsKapiSurface */
|
|
|
|
nv_fb->pSurface = nvKms->createSurface(nv_dev->pDevice, ¶ms);
|
|
if (nv_fb->pSurface == NULL) {
|
|
NV_DRM_DEV_DEBUG_DRIVER(nv_dev, "Failed to create NvKmsKapiSurface");
|
|
drm_framebuffer_cleanup(&nv_fb->base);
|
|
return -EINVAL;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
struct drm_framebuffer *nv_drm_internal_framebuffer_create(
|
|
struct drm_device *dev,
|
|
struct drm_file *file,
|
|
struct drm_mode_fb_cmd2 *cmd)
|
|
{
|
|
struct nv_drm_device *nv_dev = to_nv_device(dev);
|
|
struct nv_drm_framebuffer *nv_fb;
|
|
uint64_t modifier = 0;
|
|
int ret;
|
|
enum NvKmsSurfaceMemoryFormat format;
|
|
#if defined(NV_DRM_FORMAT_MODIFIERS_PRESENT)
|
|
int i;
|
|
#endif
|
|
bool have_modifier = false;
|
|
|
|
/* Check whether NvKms supports the given pixel format */
|
|
if (!nv_drm_format_to_nvkms_format(cmd->pixel_format, &format)) {
|
|
NV_DRM_DEV_DEBUG_DRIVER(
|
|
nv_dev,
|
|
"Unsupported drm pixel format 0x%08x", cmd->pixel_format);
|
|
return ERR_PTR(-EINVAL);
|
|
}
|
|
|
|
#if defined(NV_DRM_FORMAT_MODIFIERS_PRESENT)
|
|
if (cmd->flags & DRM_MODE_FB_MODIFIERS) {
|
|
have_modifier = true;
|
|
modifier = cmd->modifier[0];
|
|
|
|
for (i = 0; nv_dev->modifiers[i] != DRM_FORMAT_MOD_INVALID; i++) {
|
|
if (nv_dev->modifiers[i] == modifier) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (nv_dev->modifiers[i] == DRM_FORMAT_MOD_INVALID) {
|
|
NV_DRM_DEV_DEBUG_DRIVER(
|
|
nv_dev,
|
|
"Invalid format modifier for framebuffer object: 0x%016llx",
|
|
modifier);
|
|
return ERR_PTR(-EINVAL);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
nv_fb = nv_drm_framebuffer_alloc(dev, file, cmd);
|
|
if (IS_ERR(nv_fb)) {
|
|
return (struct drm_framebuffer *)nv_fb;
|
|
}
|
|
|
|
/* Fill out framebuffer metadata from the userspace fb creation request */
|
|
|
|
drm_helper_mode_fill_fb_struct(
|
|
#if defined(NV_DRM_HELPER_MODE_FILL_FB_STRUCT_HAS_DEV_ARG)
|
|
dev,
|
|
#endif
|
|
&nv_fb->base,
|
|
cmd);
|
|
|
|
/*
|
|
* Finish up FB initialization by creating the backing NVKMS surface and
|
|
* publishing the DRM fb
|
|
*/
|
|
|
|
ret = nv_drm_framebuffer_init(dev, nv_fb, format, have_modifier, modifier);
|
|
|
|
if (ret != 0) {
|
|
__nv_drm_framebuffer_free(nv_fb);
|
|
return ERR_PTR(ret);
|
|
}
|
|
|
|
return &nv_fb->base;
|
|
}
|
|
|
|
#endif
|