mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-22 17:36:20 +03:00
Allocating space for struct nvgpu_pmu at run time as part of nvgpu_pmu_early_init() stage and made required changes to dependent fiels as needed. JIRA NVGPU-1972 Change-Id: I2d1c86d713e533c256ba95b730aa2e9543a66438 Signed-off-by: Mahantesh Kumbar <mkumbar@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2110109 Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com> GVS: Gerrit_Virtual_Submit Reviewed-by: Vijayakumar Subbu <vsubbu@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
761 lines
18 KiB
C
761 lines
18 KiB
C
/*
|
|
* Copyright (c) 2016-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/boardobjgrp.h>
|
|
#include <nvgpu/boardobj.h>
|
|
#include <nvgpu/pmu/cmd.h>
|
|
#include <nvgpu/pmu/super_surface.h>
|
|
#include <nvgpu/pmu/allocator.h>
|
|
|
|
static int check_boardobjgrp_param(struct gk20a *g,
|
|
struct boardobjgrp *pboardobjgrp)
|
|
{
|
|
if (pboardobjgrp == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (!pboardobjgrp->bconstructed) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (pboardobjgrp->pmu.unitid == BOARDOBJGRP_UNIT_ID_INVALID) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (pboardobjgrp->pmu.classid == BOARDOBJGRP_GRP_CLASS_ID_INVALID) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
/* If no objects in the group, return early */
|
|
if (BOARDOBJGRP_IS_EMPTY(pboardobjgrp)) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Inserts a previously constructed Board Object into a Board Object Group for
|
|
* tracking. Objects are inserted in the array based on the given index.
|
|
*/
|
|
static int
|
|
obj_insert_final(struct boardobjgrp *pboardobjgrp,
|
|
struct boardobj *pboardobj, u8 index)
|
|
{
|
|
struct gk20a *g = pboardobjgrp->g;
|
|
|
|
nvgpu_log_info(g, " ");
|
|
|
|
if (pboardobjgrp == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (pboardobj == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (index > pboardobjgrp->objslots) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (pboardobjgrp->ppobjects[index] != NULL) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
/*
|
|
* Check that this BOARDOBJ has not already been added to a
|
|
* BOARDOBJGRP
|
|
*/
|
|
if (pboardobj->idx != CTRL_BOARDOBJ_IDX_INVALID) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
pboardobjgrp->ppobjects[index] = pboardobj;
|
|
pboardobjgrp->objmaxidx = (u8)(BOARDOBJGRP_IS_EMPTY(pboardobjgrp) ?
|
|
index : max(pboardobjgrp->objmaxidx, index));
|
|
pboardobj->idx = index;
|
|
|
|
pboardobjgrp->objmask |= BIT32(index);
|
|
|
|
nvgpu_log_info(g, " Done");
|
|
|
|
return nvgpu_boardobjgrpmask_bit_set(pboardobjgrp->mask, index);
|
|
}
|
|
|
|
/*
|
|
* Retrieves a Board Object from a Board Object Group using the group's index.
|
|
*/
|
|
static struct boardobj *obj_get_by_idx_final(
|
|
struct boardobjgrp *pboardobjgrp, u8 index)
|
|
{
|
|
if (!boardobjgrp_idxisvalid(pboardobjgrp, index)) {
|
|
return NULL;
|
|
}
|
|
return pboardobjgrp->ppobjects[index];
|
|
}
|
|
|
|
/*
|
|
* Retrieve Board Object immediately following one pointed by @ref currentindex
|
|
* filtered out by the provided mask. If (mask == NULL) => no filtering.
|
|
*/
|
|
static struct boardobj *obj_get_next_final(
|
|
struct boardobjgrp *pboardobjgrp, u8 *currentindex,
|
|
struct boardobjgrpmask *mask)
|
|
{
|
|
struct boardobj *pboardobjnext = NULL;
|
|
u8 objmaxidx;
|
|
u8 index;
|
|
|
|
if (currentindex == NULL) {
|
|
return NULL;
|
|
}
|
|
|
|
if (pboardobjgrp == NULL) {
|
|
return NULL;
|
|
}
|
|
|
|
/* Search from next element unless first object was requested */
|
|
index = (*currentindex != CTRL_BOARDOBJ_IDX_INVALID) ?
|
|
(*currentindex + 1U) : 0U;
|
|
|
|
/* For the cases below in which we have to return NULL */
|
|
*currentindex = CTRL_BOARDOBJ_IDX_INVALID;
|
|
|
|
|
|
/* Validate provided mask */
|
|
if (mask != NULL) {
|
|
if (!(nvgpu_boardobjgrpmask_sizeeq(pboardobjgrp->mask, mask))) {
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
objmaxidx = pboardobjgrp->objmaxidx;
|
|
|
|
if (objmaxidx != CTRL_BOARDOBJ_IDX_INVALID) {
|
|
for (; index <= objmaxidx; index++) {
|
|
pboardobjnext = pboardobjgrp->ppobjects[index];
|
|
if (pboardobjnext != NULL) {
|
|
/* Filter results using client provided mask.*/
|
|
if (mask != NULL) {
|
|
if (!nvgpu_boardobjgrpmask_bit_get(mask,
|
|
index)) {
|
|
pboardobjnext = NULL;
|
|
continue;
|
|
}
|
|
}
|
|
*currentindex = index;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return pboardobjnext;
|
|
}
|
|
|
|
static int pmu_data_inst_get_stub(struct gk20a *g,
|
|
struct nv_pmu_boardobjgrp *boardobjgrppmu,
|
|
struct nv_pmu_boardobj **ppboardobjpmudata, u8 idx)
|
|
{
|
|
nvgpu_log_info(g, " ");
|
|
return -EINVAL;
|
|
}
|
|
|
|
|
|
static int pmu_status_inst_get_stub(struct gk20a *g,
|
|
void *pboardobjgrppmu,
|
|
struct nv_pmu_boardobj_query **ppBoardobjpmustatus, u8 idx)
|
|
{
|
|
nvgpu_log_info(g, " ");
|
|
return -EINVAL;
|
|
}
|
|
|
|
static int obj_remove_and_destroy_final(
|
|
struct boardobjgrp *pboardobjgrp,
|
|
u8 index)
|
|
{
|
|
int status = 0;
|
|
int stat;
|
|
struct gk20a *g = pboardobjgrp->g;
|
|
|
|
nvgpu_log_info(g, " ");
|
|
|
|
if (!boardobjgrp_idxisvalid(pboardobjgrp, index)) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (pboardobjgrp->objmaxidx == CTRL_BOARDOBJ_IDX_INVALID) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
status = pboardobjgrp->ppobjects[index]->destruct(
|
|
pboardobjgrp->ppobjects[index]);
|
|
|
|
pboardobjgrp->ppobjects[index] = NULL;
|
|
|
|
pboardobjgrp->objmask &= ~BIT32(index);
|
|
|
|
stat = nvgpu_boardobjgrpmask_bit_clr(pboardobjgrp->mask, index);
|
|
if (stat != 0) {
|
|
if (status == 0) {
|
|
status = stat;
|
|
}
|
|
}
|
|
|
|
/* objmaxidx requires update only if that very object was removed */
|
|
if (pboardobjgrp->objmaxidx == index) {
|
|
pboardobjgrp->objmaxidx =
|
|
nvgpu_boardobjgrpmask_bit_idx_highest(
|
|
pboardobjgrp->mask);
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
static int pmu_cmd_destroy_impl(struct gk20a *g,
|
|
struct boardobjgrp_pmu_cmd *cmd)
|
|
{
|
|
struct nvgpu_mem *mem = &cmd->surf.sysmem_desc;
|
|
|
|
nvgpu_pmu_surface_free(g, mem);
|
|
return 0;
|
|
}
|
|
|
|
static int destruct_super(struct boardobjgrp *pboardobjgrp)
|
|
{
|
|
struct boardobj *pboardobj;
|
|
struct gk20a *g = pboardobjgrp->g;
|
|
int status = 0;
|
|
int stat;
|
|
u8 index;
|
|
|
|
nvgpu_log_info(g, " ");
|
|
|
|
if (pboardobjgrp->mask == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
if (pboardobjgrp->ppobjects == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
BOARDOBJGRP_FOR_EACH(pboardobjgrp, struct boardobj*, pboardobj, index) {
|
|
stat = pboardobjgrp->objremoveanddestroy(pboardobjgrp, index);
|
|
if (status == 0) {
|
|
status = stat;
|
|
}
|
|
|
|
pboardobjgrp->ppobjects[index] = NULL;
|
|
pboardobjgrp->objmask &= ~BIT32(index);
|
|
}
|
|
|
|
pboardobjgrp->objmask = 0;
|
|
|
|
if (pboardobjgrp->objmaxidx != CTRL_BOARDOBJ_IDX_INVALID) {
|
|
if (status == 0) {
|
|
status = -EINVAL;
|
|
}
|
|
|
|
WARN_ON(true);
|
|
}
|
|
|
|
/* Destroy the PMU CMD data */
|
|
stat = pmu_cmd_destroy_impl(g, &pboardobjgrp->pmu.set);
|
|
if (status == 0) {
|
|
status = stat;
|
|
}
|
|
|
|
stat = pmu_cmd_destroy_impl(g, &pboardobjgrp->pmu.getstatus);
|
|
if (status == 0) {
|
|
status = stat;
|
|
}
|
|
|
|
nvgpu_list_del(&pboardobjgrp->node);
|
|
|
|
pboardobjgrp->bconstructed = false;
|
|
|
|
return status;
|
|
}
|
|
|
|
static int is_pmu_cmd_id_valid(struct gk20a *g,
|
|
struct boardobjgrp *pboardobjgrp,
|
|
struct boardobjgrp_pmu_cmd *cmd)
|
|
{
|
|
int err = 0;
|
|
|
|
if (pboardobjgrp->pmu.rpc_func_id ==
|
|
BOARDOBJGRP_GRP_RPC_FUNC_ID_INVALID) {
|
|
err = -EINVAL;
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
static int pmu_cmd_pmu_init_handle_impl(struct gk20a *g,
|
|
struct boardobjgrp *pboardobjgrp,
|
|
struct boardobjgrp_pmu_cmd *pcmd)
|
|
{
|
|
int status = 0;
|
|
struct nvgpu_mem *sysmem_desc = &pcmd->surf.sysmem_desc;
|
|
|
|
nvgpu_log_info(g, " ");
|
|
|
|
if (is_pmu_cmd_id_valid(g,
|
|
pboardobjgrp, pcmd) != 0) {
|
|
goto pmu_cmd_pmu_init_handle_impl_exit;
|
|
}
|
|
|
|
if (pcmd->fbsize == 0U) {
|
|
goto pmu_cmd_pmu_init_handle_impl_exit;
|
|
}
|
|
|
|
status = nvgpu_pmu_sysmem_surface_alloc(g, sysmem_desc, pcmd->fbsize);
|
|
if (status != 0) {
|
|
nvgpu_err(g, "failed to allocate memory\n");
|
|
return -ENOMEM;
|
|
}
|
|
|
|
/* we only have got sysmem later this will get copied to vidmem
|
|
surface*/
|
|
pcmd->surf.vidmem_desc.size = 0;
|
|
|
|
pcmd->buf = (struct nv_pmu_boardobjgrp_super *)sysmem_desc->cpu_va;
|
|
|
|
pmu_cmd_pmu_init_handle_impl_exit:
|
|
return status;
|
|
}
|
|
|
|
static int pmu_init_handle_impl(struct gk20a *g,
|
|
struct boardobjgrp *pboardobjgrp)
|
|
{
|
|
int status = 0;
|
|
|
|
nvgpu_log_info(g, " ");
|
|
|
|
status = pmu_cmd_pmu_init_handle_impl(g, pboardobjgrp,
|
|
&pboardobjgrp->pmu.set);
|
|
if (status != 0) {
|
|
nvgpu_err(g, "failed to init pmu set cmd");
|
|
goto pmu_init_handle_impl_exit;
|
|
}
|
|
|
|
status = pmu_cmd_pmu_init_handle_impl(g, pboardobjgrp,
|
|
&pboardobjgrp->pmu.getstatus);
|
|
if (status != 0) {
|
|
nvgpu_err(g, "failed to init get status command");
|
|
goto pmu_init_handle_impl_exit;
|
|
}
|
|
|
|
/* If the GRP_SET CMD has not been allocated, nothing left to do. */
|
|
if ((is_pmu_cmd_id_valid(g,
|
|
pboardobjgrp, &pboardobjgrp->pmu.set) != 0)||
|
|
(BOARDOBJGRP_IS_EMPTY(pboardobjgrp))) {
|
|
goto pmu_init_handle_impl_exit;
|
|
}
|
|
|
|
/* Send the BOARDOBJGRP to the pmu via RM_PMU_BOARDOBJ_CMD_GRP. */
|
|
status = pboardobjgrp->pmuset(g, pboardobjgrp);
|
|
if (status != 0) {
|
|
nvgpu_err(g, "failed to send boardobg grp to PMU");
|
|
}
|
|
|
|
pmu_init_handle_impl_exit:
|
|
return status;
|
|
}
|
|
|
|
static int pmu_cmd_send_rpc(struct gk20a *g,
|
|
struct boardobjgrp *pboardobjgrp,
|
|
struct boardobjgrp_pmu_cmd *pcmd,
|
|
bool copy_out)
|
|
{
|
|
struct nvgpu_pmu *pmu = g->pmu;
|
|
struct nv_pmu_rpc_struct_board_obj_grp_cmd rpc;
|
|
int status = 0;
|
|
|
|
nvgpu_log_fn(g, " ");
|
|
|
|
(void) memset(&rpc, 0,
|
|
sizeof(struct nv_pmu_rpc_struct_board_obj_grp_cmd));
|
|
|
|
rpc.class_id = pboardobjgrp->pmu.classid;
|
|
rpc.command_id = copy_out ?
|
|
NV_PMU_BOARDOBJGRP_CMD_GET_STATUS :
|
|
NV_PMU_BOARDOBJGRP_CMD_SET;
|
|
|
|
rpc.hdr.unit_id = pboardobjgrp->pmu.unitid;
|
|
rpc.hdr.function = pboardobjgrp->pmu.rpc_func_id;
|
|
rpc.hdr.flags = 0x0;
|
|
|
|
status = nvgpu_pmu_rpc_execute(pmu, &(rpc.hdr),
|
|
U16(sizeof(rpc) - sizeof(rpc.scratch)),
|
|
pcmd->dmem_buffer_size,
|
|
NULL, NULL, copy_out);
|
|
|
|
if (status != 0) {
|
|
nvgpu_err(g, "Failed to execute RPC, status=0x%x", status);
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
/*
|
|
* Sends a BOARDOBJGRP to the PMU via the PMU_BOARDOBJ_CMD_GRP interface.
|
|
* This interface leverages @ref boardobjgrp_pmudatainit to populate the
|
|
* structure.
|
|
*/
|
|
static int pmu_set_impl(struct gk20a *g,
|
|
struct boardobjgrp *pboardobjgrp)
|
|
{
|
|
struct nvgpu_pmu *pmu = g->pmu;
|
|
int status = 0;
|
|
struct boardobjgrp_pmu_cmd *pcmd =
|
|
(struct boardobjgrp_pmu_cmd *)(&pboardobjgrp->pmu.set);
|
|
|
|
nvgpu_log_info(g, " ");
|
|
|
|
if (check_boardobjgrp_param(g, pboardobjgrp) != 0) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
if ((pcmd->buf == NULL) &&
|
|
(pboardobjgrp->pmu.rpc_func_id ==
|
|
BOARDOBJGRP_GRP_RPC_FUNC_ID_INVALID)) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
/* Initialize PMU buffer with BOARDOBJGRP data. */
|
|
(void) memset(pcmd->buf, 0x0, pcmd->fbsize);
|
|
status = pboardobjgrp->pmudatainit(g, pboardobjgrp,
|
|
pcmd->buf);
|
|
if (status != 0) {
|
|
nvgpu_err(g, "could not parse pmu data");
|
|
goto pmu_set_impl_exit;
|
|
}
|
|
|
|
/*
|
|
* Reset the boolean that indicates set status
|
|
* for most recent instance of BOARDOBJGRP.
|
|
*/
|
|
pboardobjgrp->pmu.bset = false;
|
|
|
|
/*
|
|
* copy constructed pmu boardobjgrp data from
|
|
* sysmem to pmu super surface present in FB
|
|
*/
|
|
nvgpu_mem_wr_n(g, nvgpu_pmu_super_surface_mem(g,
|
|
pmu, pmu->super_surface),
|
|
pcmd->super_surface_offset, pcmd->buf,
|
|
pcmd->fbsize);
|
|
|
|
/* Send the SET PMU CMD to the PMU using RPC*/
|
|
status = pmu_cmd_send_rpc(g, pboardobjgrp,
|
|
pcmd, false);
|
|
if (status != 0) {
|
|
nvgpu_err(g, "could not send SET CMD to PMU");
|
|
goto pmu_set_impl_exit;
|
|
}
|
|
|
|
pboardobjgrp->pmu.bset = true;
|
|
|
|
pmu_set_impl_exit:
|
|
return status;
|
|
}
|
|
|
|
/*
|
|
* Gets the dynamic status of the PMU BOARDOBJGRP via the
|
|
* PMU_BOARDOBJ_CMD_GRP GET_STATUS interface.
|
|
*/
|
|
static int
|
|
pmu_get_status_impl(struct gk20a *g, struct boardobjgrp *pboardobjgrp,
|
|
struct boardobjgrpmask *mask)
|
|
{
|
|
struct nvgpu_pmu *pmu = g->pmu;
|
|
int status = 0;
|
|
struct boardobjgrp_pmu_cmd *pcmd =
|
|
(struct boardobjgrp_pmu_cmd *)(&pboardobjgrp->pmu.getstatus);
|
|
|
|
nvgpu_log_info(g, " ");
|
|
|
|
if (check_boardobjgrp_param(g, pboardobjgrp) != 0) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
if ((pcmd->buf == NULL) &&
|
|
(pboardobjgrp->pmu.rpc_func_id ==
|
|
BOARDOBJGRP_GRP_RPC_FUNC_ID_INVALID)) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
/*
|
|
* Can only GET_STATUS if the BOARDOBJGRP has been
|
|
* previously SET to the PMU
|
|
*/
|
|
if (!pboardobjgrp->pmu.bset) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
/*
|
|
* Initialize PMU buffer with the mask of
|
|
* BOARDOBJGRPs for which to retrieve status
|
|
*/
|
|
(void) memset(pcmd->buf, 0x0, pcmd->fbsize);
|
|
status = pboardobjgrp->pmuhdrdatainit(g, pboardobjgrp,
|
|
pcmd->buf, mask);
|
|
if (status != 0) {
|
|
nvgpu_err(g, "could not init PMU HDR data");
|
|
goto pmu_get_status_impl_exit;
|
|
}
|
|
|
|
/*
|
|
* copy constructed pmu boardobjgrp data from
|
|
* sysmem to pmu super surface present in FB
|
|
*/
|
|
nvgpu_mem_wr_n(g, nvgpu_pmu_super_surface_mem(g,
|
|
pmu, pmu->super_surface),
|
|
pcmd->super_surface_offset,
|
|
pcmd->buf, pcmd->fbsize);
|
|
/* Send the GET_STATUS PMU CMD to the PMU */
|
|
status = pmu_cmd_send_rpc(g, pboardobjgrp,
|
|
pcmd, true);
|
|
if (status != 0) {
|
|
nvgpu_err(g, "could not send GET_STATUS cmd to PMU");
|
|
goto pmu_get_status_impl_exit;
|
|
}
|
|
|
|
/*copy the data back to sysmem buffer that belongs to command*/
|
|
nvgpu_mem_rd_n(g, nvgpu_pmu_super_surface_mem(g,
|
|
pmu, pmu->super_surface),
|
|
pcmd->super_surface_offset,
|
|
pcmd->buf, pcmd->fbsize);
|
|
|
|
pmu_get_status_impl_exit:
|
|
return status;
|
|
}
|
|
|
|
int nvgpu_boardobjgrp_construct_super(struct gk20a *g,
|
|
struct boardobjgrp *pboardobjgrp)
|
|
{
|
|
nvgpu_log_info(g, " ");
|
|
|
|
if (pboardobjgrp == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (pboardobjgrp->ppobjects == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (pboardobjgrp->mask == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
pboardobjgrp->g = g;
|
|
pboardobjgrp->objmask = 0;
|
|
|
|
pboardobjgrp->classid = 0;
|
|
pboardobjgrp->pmu.unitid = BOARDOBJGRP_UNIT_ID_INVALID;
|
|
pboardobjgrp->pmu.classid = BOARDOBJGRP_GRP_CLASS_ID_INVALID;
|
|
pboardobjgrp->pmu.bset = false;
|
|
pboardobjgrp->pmu.rpc_func_id = BOARDOBJGRP_GRP_RPC_FUNC_ID_INVALID;
|
|
pboardobjgrp->pmu.set.id = BOARDOBJGRP_GRP_CMD_ID_INVALID;
|
|
pboardobjgrp->pmu.getstatus.id = BOARDOBJGRP_GRP_CMD_ID_INVALID;
|
|
|
|
/* Initialize basic interfaces */
|
|
pboardobjgrp->destruct = destruct_super;
|
|
pboardobjgrp->objinsert = obj_insert_final;
|
|
pboardobjgrp->objgetbyidx = obj_get_by_idx_final;
|
|
pboardobjgrp->objgetnext = obj_get_next_final;
|
|
pboardobjgrp->objremoveanddestroy =
|
|
obj_remove_and_destroy_final;
|
|
|
|
pboardobjgrp->pmuinithandle = pmu_init_handle_impl;
|
|
pboardobjgrp->pmuhdrdatainit = nvgpu_boardobjgrp_pmu_hdr_data_init_super;
|
|
pboardobjgrp->pmudatainit = nvgpu_boardobjgrp_pmu_data_init_super;
|
|
pboardobjgrp->pmuset = pmu_set_impl;
|
|
pboardobjgrp->pmugetstatus = pmu_get_status_impl;
|
|
|
|
pboardobjgrp->pmudatainstget = pmu_data_inst_get_stub;
|
|
pboardobjgrp->pmustatusinstget = pmu_status_inst_get_stub;
|
|
|
|
pboardobjgrp->objmaxidx = CTRL_BOARDOBJ_IDX_INVALID;
|
|
pboardobjgrp->bconstructed = true;
|
|
|
|
nvgpu_list_add(&pboardobjgrp->node, &g->boardobjgrp_head);
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
int nvgpu_boardobjgrp_pmucmd_construct_impl(struct gk20a *g, struct boardobjgrp
|
|
*pboardobjgrp, struct boardobjgrp_pmu_cmd *cmd, u8 id, u8 msgid,
|
|
u16 hdrsize, u16 entrysize, u32 fbsize, u32 ss_offset, u8 rpc_func_id)
|
|
{
|
|
nvgpu_log_fn(g, " ");
|
|
|
|
/* Copy the parameters into the CMD*/
|
|
cmd->dmem_buffer_size = ((hdrsize > entrysize) ? hdrsize : entrysize);
|
|
cmd->super_surface_offset = ss_offset;
|
|
pboardobjgrp->pmu.rpc_func_id = rpc_func_id;
|
|
cmd->fbsize = fbsize;
|
|
|
|
nvgpu_log_fn(g, "DONE");
|
|
return 0;
|
|
}
|
|
|
|
int nvgpu_boardobjgrp_pmu_hdr_data_init_super(struct gk20a *g, struct boardobjgrp
|
|
*pboardobjgrp, struct nv_pmu_boardobjgrp_super *pboardobjgrppmu,
|
|
struct boardobjgrpmask *mask)
|
|
{
|
|
nvgpu_log_info(g, " ");
|
|
|
|
if (pboardobjgrp == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
if (pboardobjgrppmu == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
pboardobjgrppmu->type = pboardobjgrp->type;
|
|
pboardobjgrppmu->class_id = pboardobjgrp->classid;
|
|
pboardobjgrppmu->obj_slots = BOARDOBJGRP_PMU_SLOTS_GET(pboardobjgrp);
|
|
pboardobjgrppmu->flags = 0;
|
|
|
|
nvgpu_log_info(g, " Done");
|
|
return 0;
|
|
}
|
|
|
|
int nvgpu_boardobjgrp_pmu_data_init_legacy(struct gk20a *g,
|
|
struct boardobjgrp *pboardobjgrp,
|
|
struct nv_pmu_boardobjgrp_super *pboardobjgrppmu)
|
|
{
|
|
int status = 0;
|
|
struct boardobj *pboardobj = NULL;
|
|
struct nv_pmu_boardobj *ppmudata = NULL;
|
|
u8 index;
|
|
|
|
nvgpu_log_info(g, " ");
|
|
|
|
if (pboardobjgrp == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
if (pboardobjgrppmu == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
nvgpu_boardobjgrp_e32_hdr_set((struct nv_pmu_boardobjgrp *)
|
|
(void *)pboardobjgrppmu, pboardobjgrp->objmask);
|
|
|
|
BOARDOBJGRP_FOR_EACH_INDEX_IN_MASK(32, index, pboardobjgrp->objmask) {
|
|
/* Obtain pointer to the current instance of the
|
|
* Object from the Group */
|
|
pboardobj = pboardobjgrp->objgetbyidx(pboardobjgrp, index);
|
|
if (NULL == pboardobj) {
|
|
nvgpu_err(g, "could not get object instance");
|
|
status = -EINVAL;
|
|
goto nvgpu_boardobjgrp_pmu_data_init_legacy_exit;
|
|
}
|
|
|
|
status = pboardobjgrp->pmudatainstget(g,
|
|
(struct nv_pmu_boardobjgrp *)
|
|
(void *)pboardobjgrppmu,
|
|
&ppmudata, index);
|
|
if (status != 0) {
|
|
nvgpu_err(g, "could not get object instance");
|
|
goto nvgpu_boardobjgrp_pmu_data_init_legacy_exit;
|
|
}
|
|
|
|
/* Initialize the PMU Data */
|
|
status = pboardobj->pmudatainit(g, pboardobj, ppmudata);
|
|
if (status != 0) {
|
|
nvgpu_err(g,
|
|
"could not parse pmu for device %d", index);
|
|
goto nvgpu_boardobjgrp_pmu_data_init_legacy_exit;
|
|
}
|
|
}
|
|
BOARDOBJGRP_FOR_EACH_INDEX_IN_MASK_END
|
|
|
|
nvgpu_boardobjgrp_pmu_data_init_legacy_exit:
|
|
nvgpu_log_info(g, " Done");
|
|
return status;
|
|
}
|
|
|
|
|
|
int nvgpu_boardobjgrp_pmu_data_init_super(struct gk20a *g, struct boardobjgrp
|
|
*pboardobjgrp, struct nv_pmu_boardobjgrp_super *pboardobjgrppmu)
|
|
{
|
|
int status = 0;
|
|
struct boardobj *pboardobj = NULL;
|
|
struct nv_pmu_boardobj *ppmudata = NULL;
|
|
u8 index;
|
|
|
|
nvgpu_log_info(g, " ");
|
|
|
|
if (pboardobjgrp == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
if (pboardobjgrppmu == NULL) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
/* Initialize the PMU HDR data.*/
|
|
status = pboardobjgrp->pmuhdrdatainit(g, pboardobjgrp, pboardobjgrppmu,
|
|
pboardobjgrp->mask);
|
|
if (status != 0) {
|
|
nvgpu_err(g, "unable to init boardobjgrp pmuhdr data");
|
|
goto boardobjgrp_pmu_data_init_super_exit;
|
|
}
|
|
|
|
BOARDOBJGRP_FOR_EACH(pboardobjgrp, struct boardobj*, pboardobj, index) {
|
|
status = pboardobjgrp->pmudatainstget(g,
|
|
(struct nv_pmu_boardobjgrp *)
|
|
(void *)pboardobjgrppmu, &ppmudata, index);
|
|
if (status != 0) {
|
|
nvgpu_err(g, "could not get object instance");
|
|
goto boardobjgrp_pmu_data_init_super_exit;
|
|
}
|
|
|
|
/* Initialize the PMU Data and send to PMU */
|
|
status = pboardobj->pmudatainit(g, pboardobj, ppmudata);
|
|
if (status != 0) {
|
|
nvgpu_err(g,
|
|
"could not parse pmu for device %d", index);
|
|
goto boardobjgrp_pmu_data_init_super_exit;
|
|
}
|
|
}
|
|
|
|
boardobjgrp_pmu_data_init_super_exit:
|
|
nvgpu_log_info(g, " Done");
|
|
return status;
|
|
}
|
|
|
|
void nvgpu_boardobjgrp_e32_hdr_set(struct nv_pmu_boardobjgrp *hdr, u32 objmask)
|
|
{
|
|
u32 slots = objmask;
|
|
|
|
HIGHESTBITIDX_32(slots);
|
|
slots++;
|
|
|
|
hdr->super.type = CTRL_BOARDOBJGRP_TYPE_E32;
|
|
hdr->super.class_id = 0;
|
|
hdr->super.obj_slots = (u8)slots;
|
|
hdr->obj_mask = objmask;
|
|
}
|
|
|