/* * Copyright (c) 2020, 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 #include #include #include "volt.h" #include "volt_rail.h" #include "volt_dev.h" #include "volt_policy.h" static int volt_send_load_cmd_to_pmu(struct gk20a *g) { struct nvgpu_pmu *pmu = g->pmu; struct nv_pmu_rpc_struct_volt_load rpc; int status = 0; (void) memset(&rpc, 0, sizeof(struct nv_pmu_rpc_struct_volt_load)); PMU_RPC_EXECUTE(status, pmu, VOLT, LOAD, &rpc, 0); if (status != 0) { nvgpu_err(g, "Failed to execute RPC status=0x%x", status); } return status; } void nvgpu_pmu_volt_rpc_handler(struct gk20a *g, struct nv_pmu_rpc_header *rpc) { switch (rpc->function) { case NV_PMU_RPC_ID_VOLT_BOARD_OBJ_GRP_CMD: nvgpu_pmu_dbg(g, "reply NV_PMU_RPC_ID_VOLT_BOARD_OBJ_GRP_CMD"); break; case NV_PMU_RPC_ID_VOLT_LOAD: nvgpu_pmu_dbg(g, "reply NV_PMU_RPC_ID_VOLT_LOAD"); break; default: nvgpu_pmu_dbg(g, "invalid reply"); break; } } int nvgpu_pmu_volt_sw_setup(struct gk20a *g) { int err; nvgpu_log_fn(g, " "); err = volt_rail_sw_setup(g); if (err != 0) { return err; } err = volt_dev_sw_setup(g); if (err != 0) { return err; } err = volt_policy_sw_setup(g); if (err != 0) { return err; } g->pmu->volt->volt_rpc_handler = nvgpu_pmu_volt_rpc_handler; return 0; } int nvgpu_pmu_volt_init(struct gk20a *g) { int err = 0; nvgpu_log_fn(g, " "); /* If already allocated, do not re-allocate */ if (g->pmu->volt != NULL) { return 0; } g->pmu->volt = (struct nvgpu_pmu_volt *) nvgpu_kzalloc(g, sizeof(struct nvgpu_pmu_volt)); if (g->pmu->volt == NULL) { err = -ENOMEM; return err; } g->pmu->volt->volt_metadata = (struct nvgpu_pmu_volt_metadata *) nvgpu_kzalloc(g, sizeof(struct nvgpu_pmu_volt_metadata)); if (g->pmu->volt->volt_metadata == NULL) { err = -ENOMEM; return err; } return err; } void nvgpu_pmu_volt_deinit(struct gk20a *g) { if (g->pmu == NULL) { return; } if ((g->pmu->volt != NULL) && (g->pmu->volt->volt_metadata != NULL)) { nvgpu_kfree(g, g->pmu->volt->volt_metadata); nvgpu_kfree(g, g->pmu->volt); g->pmu->volt = NULL; } } int nvgpu_pmu_volt_pmu_setup(struct gk20a *g) { int err; nvgpu_log_fn(g, " "); err = volt_rail_pmu_setup(g); if (err != 0) { return err; } err = volt_dev_pmu_setup(g); if (err != 0) { return err; } err = volt_policy_pmu_setup(g); if (err != 0) { return err; } err = volt_send_load_cmd_to_pmu(g); if (err != 0) { nvgpu_err(g, "Failed to send VOLT LOAD CMD to PMU: status = 0x%08x.", err); return err; } return 0; }