gpu: nvgpu: doxygen for common.priv_ring hals

Separated priv_ring hals from gk20a.h to newly created file gops_priv_ring.h.
Added doxygen documentation for priv_ring hal functions.

JIRA NVGPU-2451

Change-Id: I7c16bdc62d698e86eda7b75a4231efa1c847389e
Signed-off-by: Seshendra Gadagottu <sgadagottu@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/2221432
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
Seshendra Gadagottu
2019-10-18 18:03:51 -07:00
committed by Alex Waterman
parent d49848d4a1
commit 56359946aa
3 changed files with 128 additions and 10 deletions

View File

@@ -78,7 +78,8 @@ init:
priv_ring_fusa:
safe: yes
owner: Seema K
sources: [ hal/priv_ring/priv_ring_gm20b_fusa.c,
sources: [ include/nvgpu/gops_priv_ring.h,
hal/priv_ring/priv_ring_gm20b_fusa.c,
hal/priv_ring/priv_ring_gm20b.h,
hal/priv_ring/priv_ring_gp10b_fusa.c,
hal/priv_ring/priv_ring_gp10b.h ]

View File

@@ -45,6 +45,7 @@
* - @ref unit-acr
* - @ref unit-cg
* - @ref unit-pmu
* - @ref unit-common-priv-ring
* - @ref unit-common-nvgpu
* - @ref unit-common-ltc
* - @ref unit-common-utils
@@ -150,6 +151,7 @@ enum nvgpu_unit;
#include <nvgpu/gops_tsg.h>
#include <nvgpu/gops_usermode.h>
#include <nvgpu/gops_mm.h>
#include <nvgpu/gops_priv_ring.h>
#include <nvgpu/gops_therm.h>
#include "hal/clk/clk_gk20a.h"
@@ -768,15 +770,7 @@ struct gpu_ops {
struct {
int (*fbp_init_support)(struct gk20a *g);
} fbp;
struct {
int (*enable_priv_ring)(struct gk20a *g);
void (*isr)(struct gk20a *g);
void (*decode_error_code)(struct gk20a *g, u32 error_code);
void (*set_ppriv_timeout_settings)(struct gk20a *g);
u32 (*enum_ltc)(struct gk20a *g);
u32 (*get_gpc_count)(struct gk20a *g);
u32 (*get_fbp_count)(struct gk20a *g);
} priv_ring;
struct gops_priv_ring priv_ring;
struct {
u32 (*get_link_reset_mask)(struct gk20a *g);
int (*init)(struct gk20a *g);

View File

@@ -0,0 +1,123 @@
/*
* 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_PRIV_RING_H
#define NVGPU_GOPS_PRIV_RING_H
#include <nvgpu/types.h>
/**
* @file
*
* common.priv_ring interface.
*/
struct gk20a;
/**
* common.priv_ring unit hal operations.
*
* This structure stores priv_ring unit hal pointers.
*
* @see gpu_ops
*/
struct gops_priv_ring {
/**
* @brief Enable priv ring h/w register access for s/w.
*
* @param g [in] Pointer to GPU driver struct.
*
* This function enables PRIvilege Ring to access h/w functionality.
* This function loads slcg priv ring prod values through
* #nvgpu_cg_slcg_priring_load_enable, then initiate priv ring
* enumeration and wait for priv ring enumeration complete to
* accept s/w register.
*
* @return 0 in case of success, < 0 in case of failure.
*/
int (*enable_priv_ring)(struct gk20a *g);
/**
* @brief ISR handler for priv ring error.
*
* @param g [in] Pointer to GPU driver struct.
*
* This functions handles interrupts related to priv ring faults.
* Priv ring faults are related to priv ring connection errors and
* global register write errors.
*/
void (*isr)(struct gk20a *g);
/**
* @brief Sets Priv ring timeout value in cycles.
*
* @param g [in] Pointer to GPU driver struct.
*
* This functions sets h/w specified timeout value in the number of
* cycles after sending a priv request. If timeout is exceeded then
* timeout error reported back.
*/
void (*set_ppriv_timeout_settings)(struct gk20a *g);
/**
* @brief Returns number of enumerated Level Two Cache (LTC) chiplets.
*
* @param g [in] Pointer to GPU driver struct.
*
* This function returns number of enumerated ltc chiplets after
* floor-sweeping.
*
* @return U32 Number of ltc units.
*/
u32 (*enum_ltc)(struct gk20a *g);
/**
* @brief Returns number of enumerated Graphics Processing Cluster (GPC)
* chiplets.
*
* @param g [in] Pointer to GPU driver struct.
*
* This function returns number of enumerated gpc chiplets after
* floor-sweeping.
*
* @return U32 Number of gpc units.
*/
u32 (*get_gpc_count)(struct gk20a *g);
/**
* @brief Returns number of enumerated Frame Buffer Partitions (FBP).
*
* @param g [in] Pointer to GPU driver struct.
*
* This function returns number of enumerated fbp chiplets after
* floor-sweeping.
*
* @return U32 Number of fbp units.
*/
u32 (*get_fbp_count)(struct gk20a *g);
/** @cond DOXYGEN_SHOULD_SKIP_THIS */
void (*decode_error_code)(struct gk20a *g, u32 error_code);
/** @endcond DOXYGEN_SHOULD_SKIP_THIS */
};
#endif /* NVGPU_GOPS_PRIV_RING_H */