gpu: nvgpu: move Top unit HALs outside gk20a.h

This move is required for documenting the HALs. We divide the
Top unit HALs into 3 categories:
 1. Private HALs
 2. FUSA HALs
 3. NON-FUSA HALs
This classification will help focus only on FUSA HALs in design
document and exclude the non-safety related ones from design
document.

Also, add this HAL header file to yaml.

JIRA NVGPU-2500

Change-Id: I8325b4bb2677cba9be94e15ec2683d1c9e0bc68e
Signed-off-by: Tejal Kudav <tkudav@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/2215228
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
Tejal Kudav
2019-10-11 00:21:07 +05:30
committed by Alex Waterman
parent c0ad64cd77
commit 73695a0960
3 changed files with 75 additions and 33 deletions

View File

@@ -757,6 +757,7 @@ top_fusa:
safe: yes
owner: Tejal K
sources: [ include/nvgpu/top.h,
include/nvgpu/gops_top.h,
hal/top/top_gm20b_fusa.c,
hal/top/top_gm20b.h,
hal/top/top_gp10b_fusa.c,

View File

@@ -90,7 +90,6 @@ struct boardobjgrp_pmu_cmd;
struct boardobjgrpmask;
struct nvgpu_sgt;
struct nvgpu_sgl;
struct nvgpu_device_info;
struct nvgpu_channel_hw_state;
struct nvgpu_mem;
struct gk20a_cs_snapshot_client;
@@ -132,6 +131,7 @@ enum nvgpu_unit;
#include <nvgpu/semaphore.h>
#include <nvgpu/fifo.h>
#include <nvgpu/gops_top.h>
#include <nvgpu/gops_gr.h>
#include <nvgpu/gops_fifo.h>
#include <nvgpu/gops_fuse.h>
@@ -894,38 +894,7 @@ struct gpu_ops {
void (*isr)(struct gk20a *g);
} intr;
} nvlink;
struct {
u32 (*get_nvhsclk_ctrl_e_clk_nvl)(struct gk20a *g);
void (*set_nvhsclk_ctrl_e_clk_nvl)(struct gk20a *g, u32 val);
u32 (*get_nvhsclk_ctrl_swap_clk_nvl)(struct gk20a *g);
void (*set_nvhsclk_ctrl_swap_clk_nvl)(struct gk20a *g, u32 val);
int (*device_info_parse_enum)(struct gk20a *g,
u32 table_entry,
u32 *engine_id, u32 *runlist_id,
u32 *intr_id, u32 *reset_id);
int (*device_info_parse_data)(struct gk20a *g,
u32 table_entry, u32 *inst_id,
u32 *pri_base, u32 *fault_id);
u32 (*get_num_engine_type_entries)(struct gk20a *g,
u32 engine_type);
int (*get_device_info)(struct gk20a *g,
struct nvgpu_device_info *dev_info,
u32 engine_type, u32 inst_id);
bool (*is_engine_gr)(struct gk20a *g, u32 engine_type);
bool (*is_engine_ce)(struct gk20a *g, u32 engine_type);
u32 (*get_ce_inst_id)(struct gk20a *g, u32 engine_type);
u32 (*get_max_gpc_count)(struct gk20a *g);
u32 (*get_max_tpc_per_gpc_count)(struct gk20a *g);
u32 (*get_max_fbps_count)(struct gk20a *g);
u32 (*get_max_fbpas_count)(struct gk20a *g);
u32 (*get_max_ltc_per_fbp)(struct gk20a *g);
u32 (*get_max_lts_per_ltc)(struct gk20a *g);
u32 (*get_num_ltcs)(struct gk20a *g);
u32 (*get_num_lce)(struct gk20a *g);
u32 (*read_top_scratch1_reg)(struct gk20a *g);
u32 (*top_scratch1_devinit_completed)(struct gk20a *g,
u32 value);
} top;
struct gops_top top;
struct {
int (*init_sec2_setup_sw)(struct gk20a *g);
int (*init_sec2_support)(struct gk20a *g);

View File

@@ -0,0 +1,72 @@
/*
* 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_TOP_H
#define NVGPU_GOPS_TOP_H
#include <nvgpu/types.h>
struct gk20a;
struct nvgpu_device_info;
struct gops_top {
/**
* FUSA HALs
*/
u32 (*get_num_engine_type_entries)(struct gk20a *g, u32 engine_type);
int (*get_device_info)(struct gk20a *g,
struct nvgpu_device_info *dev_info,
u32 engine_type, u32 inst_id);
bool (*is_engine_gr)(struct gk20a *g, u32 engine_type);
bool (*is_engine_ce)(struct gk20a *g, u32 engine_type);
u32 (*get_ce_inst_id)(struct gk20a *g, u32 engine_type);
u32 (*get_max_gpc_count)(struct gk20a *g);
u32 (*get_max_tpc_per_gpc_count)(struct gk20a *g);
u32 (*get_max_fbps_count)(struct gk20a *g);
u32 (*get_max_ltc_per_fbp)(struct gk20a *g);
u32 (*get_num_ltcs)(struct gk20a *g);
u32 (*get_num_lce)(struct gk20a *g);
/**
* NON-FUSA HALs
*/
u32 (*get_nvhsclk_ctrl_e_clk_nvl)(struct gk20a *g);
void (*set_nvhsclk_ctrl_e_clk_nvl)(struct gk20a *g, u32 val);
u32 (*get_nvhsclk_ctrl_swap_clk_nvl)(struct gk20a *g);
void (*set_nvhsclk_ctrl_swap_clk_nvl)(struct gk20a *g, u32 val);
u32 (*get_max_fbpas_count)(struct gk20a *g);
u32 (*get_max_lts_per_ltc)(struct gk20a *g);
u32 (*read_top_scratch1_reg)(struct gk20a *g);
u32 (*top_scratch1_devinit_completed)(struct gk20a *g,
u32 value);
/**
* HALs used within "Top" unit. Private HALs.
*/
int (*device_info_parse_enum)(struct gk20a *g,
u32 table_entry,
u32 *engine_id, u32 *runlist_id,
u32 *intr_id, u32 *reset_id);
int (*device_info_parse_data)(struct gk20a *g,
u32 table_entry, u32 *inst_id,
u32 *pri_base, u32 *fault_id);
};
#endif /* NVGPU_GOPS_TOP_H */