mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 02:22:34 +03:00
JIRA DNVGPU-184 Add structures and commands to send noise unware vmin value to pmu. This is needed to enable closed loop frequency controller support Change-Id: If2dfd5e76752a25765ba68821460b7fd2df23aed Signed-off-by: Vijayakumar <vsubbu@nvidia.com> Reviewed-on: http://git-master/r/1248208 (cherry picked from commit fcd73e0f0bca755ea745f62b52b9e641bc3aa1ae) Reviewed-on: http://git-master/r/1267434 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit
329 lines
8.9 KiB
C
329 lines
8.9 KiB
C
/*
|
|
* Copyright (c) 2016, 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 _GPMUIFVOLT_H_
|
|
#define _GPMUIFVOLT_H_
|
|
|
|
#include "gk20a/gk20a.h"
|
|
#include "gk20a/pmu_gk20a.h"
|
|
#include "pmuif/gpmuifboardobj.h"
|
|
#include "gk20a/pmu_common.h"
|
|
#include "ctrl/ctrlvolt.h"
|
|
|
|
#define NV_PMU_VOLT_VALUE_0V_IN_UV (0)
|
|
|
|
/* ------------- VOLT_RAIL's GRP_SET defines and structures ------------- */
|
|
|
|
#define NV_PMU_VOLT_BOARDOBJGRP_CLASS_ID_VOLT_RAIL 0x00
|
|
#define NV_PMU_VOLT_BOARDOBJGRP_CLASS_ID_VOLT_DEVICE 0x01
|
|
#define NV_PMU_VOLT_BOARDOBJGRP_CLASS_ID_VOLT_POLICY 0x02
|
|
|
|
|
|
struct nv_pmu_volt_volt_rail_boardobjgrp_set_header {
|
|
struct nv_pmu_boardobjgrp_e32 super;
|
|
};
|
|
|
|
struct nv_pmu_volt_volt_rail_boardobj_set {
|
|
|
|
struct nv_pmu_boardobj super;
|
|
u8 rel_limit_vfe_equ_idx;
|
|
u8 alt_rel_limit_vfe_equ_idx;
|
|
u8 ov_limit_vfe_equ_idx;
|
|
u8 vmin_limit_vfe_equ_idx;
|
|
u8 volt_margin_limit_vfe_equ_idx;
|
|
u8 pwr_equ_idx;
|
|
u8 volt_dev_idx_default;
|
|
struct ctrl_boardobjgrp_mask_e32 volt_dev_mask;
|
|
s32 volt_delta_uv[CTRL_VOLT_RAIL_VOLT_DELTA_MAX_ENTRIES];
|
|
};
|
|
|
|
union nv_pmu_volt_volt_rail_boardobj_set_union {
|
|
struct nv_pmu_boardobj board_obj;
|
|
struct nv_pmu_volt_volt_rail_boardobj_set super;
|
|
};
|
|
|
|
NV_PMU_BOARDOBJ_GRP_SET_MAKE_E32(volt, volt_rail);
|
|
|
|
/* ------------ VOLT_DEVICE's GRP_SET defines and structures ------------ */
|
|
|
|
struct nv_pmu_volt_volt_device_boardobjgrp_set_header {
|
|
struct nv_pmu_boardobjgrp_e32 super;
|
|
};
|
|
|
|
struct nv_pmu_volt_volt_device_boardobj_set {
|
|
struct nv_pmu_boardobj super;
|
|
u32 switch_delay_us;
|
|
u32 voltage_min_uv;
|
|
u32 voltage_max_uv;
|
|
u32 volt_step_uv;
|
|
};
|
|
|
|
struct nv_pmu_volt_volt_device_vid_boardobj_set {
|
|
struct nv_pmu_volt_volt_device_boardobj_set super;
|
|
s32 voltage_base_uv;
|
|
s32 voltage_offset_scale_uv;
|
|
u8 gpio_pin[CTRL_VOLT_VOLT_DEV_VID_VSEL_MAX_ENTRIES];
|
|
u8 vsel_mask;
|
|
};
|
|
|
|
struct nv_pmu_volt_volt_device_pwm_boardobj_set {
|
|
struct nv_pmu_volt_volt_device_boardobj_set super;
|
|
u32 raw_period;
|
|
s32 voltage_base_uv;
|
|
s32 voltage_offset_scale_uv;
|
|
enum nv_pmu_pmgr_pwm_source pwm_source;
|
|
};
|
|
|
|
union nv_pmu_volt_volt_device_boardobj_set_union {
|
|
struct nv_pmu_boardobj board_obj;
|
|
struct nv_pmu_volt_volt_device_boardobj_set super;
|
|
struct nv_pmu_volt_volt_device_vid_boardobj_set vid;
|
|
struct nv_pmu_volt_volt_device_pwm_boardobj_set pwm;
|
|
};
|
|
|
|
NV_PMU_BOARDOBJ_GRP_SET_MAKE_E32(volt, volt_device);
|
|
|
|
/* ------------ VOLT_POLICY's GRP_SET defines and structures ------------ */
|
|
struct nv_pmu_volt_volt_policy_boardobjgrp_set_header {
|
|
|
|
struct nv_pmu_boardobjgrp_e32 super;
|
|
};
|
|
|
|
struct nv_pmu_volt_volt_policy_boardobj_set {
|
|
struct nv_pmu_boardobj super;
|
|
};
|
|
struct nv_pmu_volt_volt_policy_sr_boardobj_set {
|
|
struct nv_pmu_volt_volt_policy_boardobj_set super;
|
|
u8 rail_idx;
|
|
};
|
|
|
|
struct nv_pmu_volt_volt_policy_splt_r_boardobj_set {
|
|
struct nv_pmu_volt_volt_policy_boardobj_set super;
|
|
u8 rail_idx_master;
|
|
u8 rail_idx_slave;
|
|
u8 delta_min_vfe_equ_idx;
|
|
u8 delta_max_vfe_equ_idx;
|
|
s32 offset_delta_min_uv;
|
|
s32 offset_delta_max_uv;
|
|
};
|
|
|
|
struct nv_pmu_volt_volt_policy_srms_boardobj_set {
|
|
struct nv_pmu_volt_volt_policy_splt_r_boardobj_set super;
|
|
u16 inter_switch_delayus;
|
|
};
|
|
|
|
/* sr - > single_rail */
|
|
struct nv_pmu_volt_volt_policy_srss_boardobj_set {
|
|
struct nv_pmu_volt_volt_policy_splt_r_boardobj_set super;
|
|
};
|
|
|
|
union nv_pmu_volt_volt_policy_boardobj_set_union {
|
|
struct nv_pmu_boardobj board_obj;
|
|
struct nv_pmu_volt_volt_policy_boardobj_set super;
|
|
struct nv_pmu_volt_volt_policy_sr_boardobj_set single_rail;
|
|
struct nv_pmu_volt_volt_policy_splt_r_boardobj_set split_rail;
|
|
struct nv_pmu_volt_volt_policy_srms_boardobj_set
|
|
split_rail_m_s;
|
|
struct nv_pmu_volt_volt_policy_srss_boardobj_set
|
|
split_rail_s_s;
|
|
};
|
|
|
|
NV_PMU_BOARDOBJ_GRP_SET_MAKE_E32(volt, volt_policy);
|
|
|
|
/* ----------- VOLT_RAIL's GRP_GET_STATUS defines and structures ----------- */
|
|
struct nv_pmu_volt_volt_rail_boardobjgrp_get_status_header {
|
|
struct nv_pmu_boardobjgrp_e32 super;
|
|
};
|
|
|
|
struct nv_pmu_volt_volt_rail_boardobj_get_status {
|
|
struct nv_pmu_boardobj_query super;
|
|
u32 curr_volt_defaultu_v;
|
|
u32 rel_limitu_v;
|
|
u32 alt_rel_limitu_v;
|
|
u32 ov_limitu_v;
|
|
u32 max_limitu_v;
|
|
u32 vmin_limitu_v;
|
|
s32 volt_margin_limitu_v;
|
|
u32 rsvd;
|
|
};
|
|
|
|
union nv_pmu_volt_volt_rail_boardobj_get_status_union {
|
|
struct nv_pmu_boardobj_query board_obj;
|
|
struct nv_pmu_volt_volt_rail_boardobj_get_status super;
|
|
};
|
|
|
|
NV_PMU_BOARDOBJ_GRP_GET_STATUS_MAKE_E32(volt, volt_rail);
|
|
|
|
/* ---------- VOLT_DEVICE's GRP_GET_STATUS defines and structures ---------- */
|
|
struct nv_pmu_volt_volt_device_boardobjgrp_get_status_header {
|
|
struct nv_pmu_boardobjgrp_e32 super;
|
|
};
|
|
|
|
struct nv_pmu_volt_volt_device_boardobj_get_status {
|
|
struct nv_pmu_boardobj_query super;
|
|
};
|
|
|
|
union nv_pmu_volt_volt_device_boardobj_get_status_union {
|
|
struct nv_pmu_boardobj_query board_obj;
|
|
struct nv_pmu_volt_volt_device_boardobj_get_status super;
|
|
};
|
|
|
|
NV_PMU_BOARDOBJ_GRP_GET_STATUS_MAKE_E32(volt, volt_device);
|
|
|
|
/* ---------- VOLT_POLICY's GRP_GET_STATUS defines and structures ---------- */
|
|
struct nv_pmu_volt_volt_policy_boardobjgrp_get_status_header {
|
|
struct nv_pmu_boardobjgrp_e32 super;
|
|
};
|
|
|
|
struct nv_pmu_volt_volt_policy_boardobj_get_status {
|
|
struct nv_pmu_boardobj_query super;
|
|
u32 offset_volt_requ_v;
|
|
u32 offset_volt_curru_v;
|
|
};
|
|
|
|
struct nv_pmu_volt_volt_policy_sr_boardobj_get_status {
|
|
struct nv_pmu_volt_volt_policy_boardobj_get_status super;
|
|
u32 curr_voltu_v;
|
|
};
|
|
|
|
struct nv_pmu_volt_volt_policy_splt_r_boardobj_get_status {
|
|
struct nv_pmu_volt_volt_policy_boardobj_get_status super;
|
|
s32 delta_minu_v;
|
|
s32 delta_maxu_v;
|
|
s32 orig_delta_minu_v;
|
|
s32 orig_delta_maxu_v;
|
|
u32 curr_volt_masteru_v;
|
|
u32 curr_volt_slaveu_v;
|
|
bool b_violation;
|
|
};
|
|
|
|
/* srms -> split_rail_multi_step */
|
|
struct nv_pmu_volt_volt_policy_srms_boardobj_get_status {
|
|
struct nv_pmu_volt_volt_policy_splt_r_boardobj_get_status super;
|
|
};
|
|
|
|
/* srss -> split_rail_single_step */
|
|
struct nv_pmu_volt_volt_policy_srss_boardobj_get_status {
|
|
struct nv_pmu_volt_volt_policy_splt_r_boardobj_get_status super;
|
|
};
|
|
|
|
union nv_pmu_volt_volt_policy_boardobj_get_status_union {
|
|
struct nv_pmu_boardobj_query board_obj;
|
|
struct nv_pmu_volt_volt_policy_boardobj_get_status super;
|
|
struct nv_pmu_volt_volt_policy_sr_boardobj_get_status single_rail;
|
|
struct nv_pmu_volt_volt_policy_splt_r_boardobj_get_status split_rail;
|
|
struct nv_pmu_volt_volt_policy_srms_boardobj_get_status
|
|
split_rail_m_s;
|
|
struct nv_pmu_volt_volt_policy_srss_boardobj_get_status
|
|
split_rail_s_s;
|
|
};
|
|
|
|
NV_PMU_BOARDOBJ_GRP_GET_STATUS_MAKE_E32(volt, volt_policy);
|
|
|
|
struct nv_pmu_volt_policy_voltage_data {
|
|
u8 policy_idx;
|
|
struct ctrl_perf_volt_rail_list
|
|
rail_list;
|
|
};
|
|
|
|
struct nv_pmu_volt_rail_get_voltage {
|
|
u8 rail_idx;
|
|
u32 voltage_uv;
|
|
};
|
|
|
|
struct nv_pmu_volt_volt_rail_set_noise_unaware_vmin {
|
|
u8 num_rails;
|
|
struct ctrl_volt_volt_rail_list
|
|
rail_list;
|
|
};
|
|
|
|
#define NV_PMU_VOLT_CMD_ID_BOARDOBJ_GRP_SET (0x00000000)
|
|
#define NV_PMU_VOLT_CMD_ID_RPC (0x00000001)
|
|
#define NV_PMU_VOLT_CMD_ID_BOARDOBJ_GRP_GET_STATUS (0x00000002)
|
|
#define NV_PMU_VOLT_RPC_ID_VOLT_RAIL_SET_NOISE_UNAWARE_VMIN (0x00000004)
|
|
|
|
/*!
|
|
* PMU VOLT RPC calls.
|
|
*/
|
|
#define NV_PMU_VOLT_RPC_ID_LOAD (0x00000000)
|
|
#define NV_PMU_VOLT_RPC_ID_VOLT_POLICY_SET_VOLTAGE (0x00000002)
|
|
#define NV_PMU_VOLT_RPC_ID_VOLT_RAIL_GET_VOLTAGE (0x00000003)
|
|
|
|
struct nv_pmu_volt_cmd_rpc {
|
|
u8 cmd_type;
|
|
u8 pad[3];
|
|
struct nv_pmu_allocation request;
|
|
};
|
|
|
|
#define NV_PMU_VOLT_CMD_RPC_ALLOC_OFFSET \
|
|
offsetof(struct nv_pmu_volt_cmd_rpc, request)
|
|
|
|
struct nv_pmu_volt_cmd {
|
|
union {
|
|
u8 cmd_type;
|
|
struct nv_pmu_boardobj_cmd_grp grp_set;
|
|
struct nv_pmu_volt_cmd_rpc rpc;
|
|
struct nv_pmu_boardobj_cmd_grp grp_get_status;
|
|
};
|
|
};
|
|
|
|
struct nv_pmu_volt_rpc {
|
|
u8 function;
|
|
bool b_supported;
|
|
bool b_success;
|
|
flcn_status flcn_status;
|
|
union {
|
|
struct nv_pmu_volt_policy_voltage_data volt_policy_voltage_data;
|
|
struct nv_pmu_volt_rail_get_voltage volt_rail_get_voltage;
|
|
struct nv_pmu_volt_volt_rail_set_noise_unaware_vmin
|
|
volt_rail_set_noise_unaware_vmin;
|
|
} params;
|
|
};
|
|
|
|
/*!
|
|
* VOLT MSG ID definitions
|
|
*/
|
|
#define NV_PMU_VOLT_MSG_ID_BOARDOBJ_GRP_SET (0x00000000)
|
|
#define NV_PMU_VOLT_MSG_ID_RPC (0x00000001)
|
|
#define NV_PMU_VOLT_MSG_ID_BOARDOBJ_GRP_GET_STATUS (0x00000002)
|
|
|
|
/*!
|
|
* Message carrying the result of the VOLT RPC execution.
|
|
*/
|
|
struct nv_pmu_volt_msg_rpc {
|
|
u8 msg_type;
|
|
u8 rsvd[3];
|
|
struct nv_pmu_allocation response;
|
|
};
|
|
|
|
#define NV_PMU_VOLT_MSG_RPC_ALLOC_OFFSET \
|
|
offsetof(struct nv_pmu_volt_msg_rpc, response)
|
|
|
|
struct nv_pmu_volt_msg {
|
|
union {
|
|
u8 msg_type;
|
|
struct nv_pmu_boardobj_msg_grp grp_set;
|
|
struct nv_pmu_volt_msg_rpc rpc;
|
|
struct nv_pmu_boardobj_msg_grp grp_get_status;
|
|
};
|
|
};
|
|
|
|
#define NV_PMU_VF_INJECT_MAX_VOLT_RAILS (2)
|
|
|
|
struct nv_pmu_volt_volt_rail_list {
|
|
u8 num_rails;
|
|
struct ctrl_perf_volt_rail_list_item
|
|
rails[NV_PMU_VF_INJECT_MAX_VOLT_RAILS];
|
|
};
|
|
|
|
#endif /* _GPMUIFVOLT_H_*/
|