mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-22 17:36:20 +03:00
Moved pmuif/* headers to drivers/gpu/nvgpu/include/nvgpu folder to support cross platform feature implementation. Made changes to files which accessed include pmuif/* to reflect pmuif/* movement changes. Deleted includes of gk20a.h/pmu_gk20a.h from pmuif/*.h files. Jira NVGPU-19 Change-Id: Iace4e107c24bdaff08a407eae3b147959173e485 Signed-off-by: Mahantesh Kumbar <mkumbar@nvidia.com> Reviewed-on: http://git-master/r/1299823 GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
75 lines
2.4 KiB
C
75 lines
2.4 KiB
C
/*
|
|
* Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*/
|
|
|
|
#ifndef _CLKVFPOINT_H_
|
|
#define _CLKVFPOINT_H_
|
|
#include "ctrl/ctrlclk.h"
|
|
#include "ctrl/ctrlboardobj.h"
|
|
#include <nvgpu/pmuif/nvgpu_gpmu_cmdif.h>
|
|
#include "boardobj/boardobjgrp_e32.h"
|
|
#include "boardobj/boardobjgrpmask.h"
|
|
|
|
u32 clk_vf_point_sw_setup(struct gk20a *g);
|
|
u32 clk_vf_point_pmu_setup(struct gk20a *g);
|
|
u32 clk_vf_point_cache(struct gk20a *g);
|
|
|
|
struct clk_vf_points {
|
|
struct boardobjgrp_e255 super;
|
|
};
|
|
|
|
struct clk_vf_point {
|
|
struct boardobj super;
|
|
u8 vfe_equ_idx;
|
|
u8 volt_rail_idx;
|
|
struct ctrl_clk_vf_pair pair;
|
|
};
|
|
|
|
struct clk_vf_point_volt {
|
|
struct clk_vf_point super;
|
|
u32 source_voltage_uv;
|
|
int freq_delta_khz;
|
|
};
|
|
|
|
struct clk_vf_point_freq {
|
|
struct clk_vf_point super;
|
|
int volt_delta_uv;
|
|
};
|
|
|
|
#define CLK_CLK_VF_POINT_GET(pclk, idx) \
|
|
((struct clk_vf_point *)BOARDOBJGRP_OBJ_GET_BY_IDX( \
|
|
&pclk->clk_vf_pointobjs.super.super, (u8)(idx)))
|
|
|
|
#define clkvfpointpairget(pvfpoint) \
|
|
(&((pvfpoint)->pair))
|
|
|
|
#define clkvfpointfreqmhzget(pgpu, pvfpoint) \
|
|
CTRL_CLK_VF_PAIR_FREQ_MHZ_GET(clkvfpointpairget(pvfpoint))
|
|
|
|
#define clkvfpointfreqdeltamhzGet(pgpu, pvfPoint) \
|
|
((BOARDOBJ_GET_TYPE(pvfpoint) == CTRL_CLK_CLK_VF_POINT_TYPE_VOLT) ? \
|
|
(((struct clk_vf_point_volt *)(pvfpoint))->freq_delta_khz / 1000) : 0)
|
|
|
|
#define clkvfpointfreqmhzset(pgpu, pvfpoint, _freqmhz) \
|
|
CTRL_CLK_VF_PAIR_FREQ_MHZ_SET(clkvfpointpairget(pvfpoint), _freqmhz)
|
|
|
|
#define clkvfpointvoltageuvset(pgpu, pvfpoint, _voltageuv) \
|
|
CTRL_CLK_VF_PAIR_VOLTAGE_UV_SET(clkvfpointpairget(pvfpoint), \
|
|
_voltageuv)
|
|
|
|
#define clkvfpointvoltageuvget(pgpu, pvfpoint) \
|
|
CTRL_CLK_VF_PAIR_VOLTAGE_UV_GET(clkvfpointpairget(pvfpoint)) \
|
|
|
|
struct clk_vf_point *construct_clk_vf_point(struct gk20a *g, void *pargs);
|
|
|
|
#endif
|