Files
linux-nvgpu/drivers/gpu/nvgpu/include/nvgpu/gops_bus.h
Vedashree Vidwans a615604411 gpu: nvgpu: fix MISRA 11.2 nvgpu_sgl
MISRA rule 11.2 doesn't allow conversions of a pointer from or to an
incomplete type. These type of conversions may result in a pointer
aligned incorrectly and may further result in undefined behavior.

This patch addresses rule 11.2 violations related to pointers to and
from struct nvgpu_sgl. This patch replaces struct nvgpu_sgl pointers by
void pointers.

Jira NVGPU-3736

Change-Id: I8fd5766eacace596f2761b308bce79f22f2cb207
Signed-off-by: Vedashree Vidwans <vvidwans@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/2267876
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
2020-12-15 14:10:29 -06:00

135 lines
4.9 KiB
C

/*
* Copyright (c) 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.
*/
#ifndef NVGPU_GOPS_BUS_H
#define NVGPU_GOPS_BUS_H
#include <nvgpu/types.h>
/**
* @file
*
* common.bus interface.
*/
struct gk20a;
/**
*
* This structure stores common.bus unit hal pointers.
*
* @see gpu_ops
*/
struct gops_bus {
/**
* @brief Initialize h/w access to gpu bus.
*
* @param g [in] Pointer to GPU driver struct.
*
* This function enables bus unit stalling interrupt at MC level.
* This function enables interrupts for following errors:
* NV_PBUS_INTR_EN_0_PRI_SQUASH - Error due to request sent to
* while h/w block is in reset.
* NV_PBUS_INTR_EN_0_PRI_FECSERR - Error due to fecs returning
* error status from priv ring.
* NV_PBUS_INTR_EN_0_PRI_TIMEOUT - Error due to request timing out.
* This function also disables access to debug bus on safety build.
*
* @return 0 in case of success, < 0 in case of failure.
*/
int (*init_hw)(struct gk20a *g);
/**
* @brief ISR handler for gpu bus errors.
*
* @param g [in] Pointer to GPU driver struct.
*
* This functions handles interrupts related to generic gpu bus errors.
* These interrupts are reported as host errors with following
* description:
* Bus Error Type |Host Error
* :---------------------------:|:--------------------------:
* SQUASH | GPU_HOST_PBUS_SQUASH_ERROR
* FECSERR | GPU_HOST_PBUS_FECS_ERROR
* TIMEOUT | GPU_HOST_PBUS_TIMEOUT_ERROR
* FB_ACK_TIMEOUT | GPU_HOST_PBUS_TIMEOUT_ERROR
* FB_ACK_EXTRA | GPU_HOST_PBUS_TIMEOUT_ERROR
* FB_RDATA_TIMEOUT | GPU_HOST_PBUS_TIMEOUT_ERROR
* FB_RDATA_EXTRA | GPU_HOST_PBUS_TIMEOUT_ERROR
* POSTED_DEADLOCK_TIMEOUT | GPU_HOST_PBUS_TIMEOUT_ERROR
* ACCESS_TIMEOUT | GPU_HOST_PBUS_TIMEOUT_ERROR
*/
void (*isr)(struct gk20a *g);
/**
* @brief Binds instance block address space for BAR1 memory access.
*
* @param g [in] Pointer to GPU driver struct.
* @param bar1_inst [in] Instance memory to be used for
* BAR1 access.
*
* BAR1 is generic memory to support sharing of data between h/w and
* s/w. As a part of bar1 binding, bar1 is mapped to the virtual memory
* space indicated by the instance block pointer and target memory
* space. After programming bar1 block register, s/w will wait until
* bar1 binding is done for maximum of 1000 retires with 5 usec delay
* before each retry.
*
* @return 0 in case of success, < 0 in case of failure.
* @retval -EINVAL if h/w bar1 binding times out.
* @retval -EINVAL if s/w init of nvgpu timer fails.
*/
int (*bar1_bind)(struct gk20a *g, struct nvgpu_mem *bar1_inst);
/**
* @brief Binds instance block address space for BAR2 memory access.
*
* @param g [in] Pointer to GPU driver struct.
* @param bar2_inst [in] Instance memory to be used for
* BAR2 access.
*
* BAR2 is virtual memory set-up done by s/w using system memory for
* sharing of data between h/w and s/w, generally used for fault
* buffers. As a part of bar2 binding, bar2 is mapped to the virtual
* memory space ndicated by the instance block pointer and target
* memory space. After programming bar2 block register, s/w will wait
* until bar2 binding is done for maximum of 1000 retires with 5 usec
* delay before each retry.
*
* @return 0 in case of success, < 0 in case of failure.
* @retval -EINVAL if h/w bar2 binding times out.
* @retval -EINVAL if s/w init of nvgpu timer fails.
*/
int (*bar2_bind)(struct gk20a *g, struct nvgpu_mem *bar2_inst);
/** @cond DOXYGEN_SHOULD_SKIP_THIS */
#ifdef CONFIG_NVGPU_DGPU
u32 (*set_bar0_window)(struct gk20a *g, struct nvgpu_mem *mem,
struct nvgpu_sgt *sgt, void *sgl, u32 w);
#endif
u32 (*read_sw_scratch)(struct gk20a *g, u32 index);
void (*write_sw_scratch)(struct gk20a *g, u32 index, u32 val);
void (*configure_debug_bus)(struct gk20a *g);
/** @endcond DOXYGEN_SHOULD_SKIP_THIS */
};
#endif /* NVGPU_GOPS_BUS_H */