Files
linux-nvgpu/drivers/gpu/nvgpu/common/gr/global_ctx.c
Philip Elcan 6679ee9811 gpu: nvgpu: gr: fix MISRA 10.3 issues in gr unit
This fixes a number of MISRA Rule 10.3 violations in the common/gr unit
for implicit assignment of different essential or narrower type.

JIRA NVGPU-2955

Change-Id: If74c8cb1de1035c35b90c3b1e9f001bce364ac0d
Signed-off-by: Philip Elcan <pelcan@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/2075754
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
2019-03-22 08:48:09 -07:00

305 lines
7.7 KiB
C

/*
* Copyright (c) 2018-2019, 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 <nvgpu/gk20a.h>
#include <nvgpu/log.h>
#include <nvgpu/nvgpu_mem.h>
#include <nvgpu/kmem.h>
#include <nvgpu/bug.h>
#include <nvgpu/gr/global_ctx.h>
struct nvgpu_gr_global_ctx_buffer_desc *
nvgpu_gr_global_ctx_desc_alloc(struct gk20a *g)
{
struct nvgpu_gr_global_ctx_buffer_desc *desc =
nvgpu_kzalloc(g, sizeof(*desc) * NVGPU_GR_GLOBAL_CTX_COUNT);
return desc;
}
void nvgpu_gr_global_ctx_desc_free(struct gk20a *g,
struct nvgpu_gr_global_ctx_buffer_desc *desc)
{
nvgpu_kfree(g, desc);
}
void nvgpu_gr_global_ctx_set_size(struct nvgpu_gr_global_ctx_buffer_desc *desc,
enum nvgpu_gr_global_ctx_index index, size_t size)
{
desc[index].size = size;
}
size_t nvgpu_gr_global_ctx_get_size(struct nvgpu_gr_global_ctx_buffer_desc *desc,
enum nvgpu_gr_global_ctx_index index)
{
return desc[index].size;
}
static void nvgpu_gr_global_ctx_buffer_destroy(struct gk20a *g,
struct nvgpu_gr_global_ctx_buffer_desc *desc,
enum nvgpu_gr_global_ctx_index index)
{
nvgpu_dma_free(g, &desc[index].mem);
desc[index].destroy = NULL;
}
void nvgpu_gr_global_ctx_buffer_free(struct gk20a *g,
struct nvgpu_gr_global_ctx_buffer_desc *desc)
{
u32 i;
for (i = 0U; i < NVGPU_GR_GLOBAL_CTX_COUNT; i++) {
if (desc[i].destroy != NULL) {
desc[i].destroy(g, desc, i);
}
}
nvgpu_log_fn(g, "done");
}
static int nvgpu_gr_global_ctx_buffer_alloc_sys(struct gk20a *g,
struct nvgpu_gr_global_ctx_buffer_desc *desc,
enum nvgpu_gr_global_ctx_index index)
{
int err = 0;
nvgpu_log_fn(g, " ");
if (nvgpu_mem_is_valid(&desc[index].mem)) {
return 0;
}
err = nvgpu_dma_alloc_sys(g, desc[index].size,
&desc[index].mem);
if (err != 0) {
return err;
}
desc[index].destroy = nvgpu_gr_global_ctx_buffer_destroy;
return err;
}
static int nvgpu_gr_global_ctx_buffer_alloc_vpr(struct gk20a *g,
struct nvgpu_gr_global_ctx_buffer_desc *desc,
enum nvgpu_gr_global_ctx_index index)
{
int err = 0;
nvgpu_log_fn(g, " ");
if (nvgpu_mem_is_valid(&desc[index].mem)) {
return 0;
}
if (g->ops.secure_alloc != NULL) {
err = g->ops.secure_alloc(g, &desc[index],
desc[index].size);
if (err != 0) {
return err;
}
}
return err;
}
int nvgpu_gr_global_ctx_buffer_alloc(struct gk20a *g,
struct nvgpu_gr_global_ctx_buffer_desc *desc)
{
int err = 0;
if (desc[NVGPU_GR_GLOBAL_CTX_CIRCULAR].size == 0U ||
desc[NVGPU_GR_GLOBAL_CTX_PAGEPOOL].size == 0U ||
desc[NVGPU_GR_GLOBAL_CTX_ATTRIBUTE].size == 0U ||
desc[NVGPU_GR_GLOBAL_CTX_CIRCULAR_VPR].size == 0U ||
desc[NVGPU_GR_GLOBAL_CTX_PAGEPOOL_VPR].size == 0U ||
desc[NVGPU_GR_GLOBAL_CTX_ATTRIBUTE_VPR].size == 0U ||
desc[NVGPU_GR_GLOBAL_CTX_PRIV_ACCESS_MAP].size == 0U) {
return -EINVAL;
}
err = nvgpu_gr_global_ctx_buffer_alloc_sys(g, desc,
NVGPU_GR_GLOBAL_CTX_CIRCULAR);
if (err != 0) {
goto clean_up;
}
err = nvgpu_gr_global_ctx_buffer_alloc_sys(g, desc,
NVGPU_GR_GLOBAL_CTX_PAGEPOOL);
if (err != 0) {
goto clean_up;
}
err = nvgpu_gr_global_ctx_buffer_alloc_sys(g, desc,
NVGPU_GR_GLOBAL_CTX_ATTRIBUTE);
if (err != 0) {
goto clean_up;
}
err = nvgpu_gr_global_ctx_buffer_alloc_sys(g, desc,
NVGPU_GR_GLOBAL_CTX_PRIV_ACCESS_MAP);
if (err != 0) {
goto clean_up;
}
if (desc[NVGPU_GR_GLOBAL_CTX_FECS_TRACE_BUFFER].size != 0U) {
err = nvgpu_gr_global_ctx_buffer_alloc_sys(g, desc,
NVGPU_GR_GLOBAL_CTX_FECS_TRACE_BUFFER);
if (err != 0) {
goto clean_up;
}
}
if (desc[NVGPU_GR_GLOBAL_CTX_RTV_CIRCULAR_BUFFER].size != 0U) {
err = nvgpu_gr_global_ctx_buffer_alloc_sys(g, desc,
NVGPU_GR_GLOBAL_CTX_RTV_CIRCULAR_BUFFER);
if (err != 0) {
goto clean_up;
}
}
err = nvgpu_gr_global_ctx_buffer_alloc_vpr(g, desc,
NVGPU_GR_GLOBAL_CTX_CIRCULAR_VPR);
if (err != 0) {
goto clean_up;
}
err = nvgpu_gr_global_ctx_buffer_alloc_vpr(g, desc,
NVGPU_GR_GLOBAL_CTX_PAGEPOOL_VPR);
if (err != 0) {
return err;
}
err = nvgpu_gr_global_ctx_buffer_alloc_vpr(g, desc,
NVGPU_GR_GLOBAL_CTX_ATTRIBUTE_VPR);
if (err != 0) {
goto clean_up;
}
return err;
clean_up:
nvgpu_gr_global_ctx_buffer_free(g, desc);
return err;
}
u64 nvgpu_gr_global_ctx_buffer_map(struct nvgpu_gr_global_ctx_buffer_desc *desc,
enum nvgpu_gr_global_ctx_index index,
struct vm_gk20a *vm, u32 flags, bool priv)
{
u64 gpu_va;
if (!nvgpu_mem_is_valid(&desc[index].mem)) {
return 0;
}
gpu_va = nvgpu_gmmu_map(vm, &desc[index].mem, desc[index].mem.size,
flags, gk20a_mem_flag_none, priv,
desc[index].mem.aperture);
return gpu_va;
}
void nvgpu_gr_global_ctx_buffer_unmap(
struct nvgpu_gr_global_ctx_buffer_desc *desc,
enum nvgpu_gr_global_ctx_index index,
struct vm_gk20a *vm, u64 gpu_va)
{
if (nvgpu_mem_is_valid(&desc[index].mem)) {
nvgpu_gmmu_unmap(vm, &desc[index].mem, gpu_va);
}
}
struct nvgpu_mem *nvgpu_gr_global_ctx_buffer_get_mem(
struct nvgpu_gr_global_ctx_buffer_desc *desc,
enum nvgpu_gr_global_ctx_index index)
{
if (nvgpu_mem_is_valid(&desc[index].mem)) {
return &desc[index].mem;
}
return NULL;
}
bool nvgpu_gr_global_ctx_buffer_ready(
struct nvgpu_gr_global_ctx_buffer_desc *desc,
enum nvgpu_gr_global_ctx_index index)
{
if (nvgpu_mem_is_valid(&desc[index].mem)) {
return true;
}
return false;
}
struct nvgpu_gr_global_ctx_local_golden_image *
nvgpu_gr_global_ctx_init_local_golden_image(struct gk20a *g,
struct nvgpu_mem *source_mem, size_t size)
{
struct nvgpu_gr_global_ctx_local_golden_image *local_golden_image;
local_golden_image = nvgpu_kzalloc(g, sizeof(*local_golden_image));
if (local_golden_image == NULL) {
return NULL;
}
local_golden_image->context = nvgpu_vzalloc(g, size);
if (local_golden_image->context == NULL) {
nvgpu_kfree(g, local_golden_image);
return NULL;
}
local_golden_image->size = size;
nvgpu_assert(size <= U64(U32_MAX));
nvgpu_mem_rd_n(g, source_mem, 0, local_golden_image->context,
U32(size));
return local_golden_image;
}
void nvgpu_gr_global_ctx_load_local_golden_image(struct gk20a *g,
struct nvgpu_gr_global_ctx_local_golden_image *local_golden_image,
struct nvgpu_mem *target_mem)
{
/* Channel gr_ctx buffer is gpu cacheable.
Flush and invalidate before cpu update. */
if (g->ops.mm.l2_flush(g, true) != 0) {
nvgpu_err(g, "l2_flush failed");
}
nvgpu_assert(local_golden_image->size <= U64(U32_MAX));
nvgpu_mem_wr_n(g, target_mem, 0, local_golden_image->context,
U32(local_golden_image->size));
}
void nvgpu_gr_global_ctx_deinit_local_golden_image(struct gk20a *g,
struct nvgpu_gr_global_ctx_local_golden_image *local_golden_image)
{
nvgpu_vfree(g, local_golden_image->context);
nvgpu_kfree(g, local_golden_image);
}
u32 *nvgpu_gr_global_ctx_get_local_golden_image_ptr(
struct nvgpu_gr_global_ctx_local_golden_image *local_golden_image)
{
return local_golden_image->context;
}