mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-23 18:16:01 +03:00
This patch removes dependency between pmu.clk and hal.clk. Below is the implementation. *Init the clk domains inside pmu.clk unit. *Set this in a member variable and send it to hal.clk unit *Use this to determine the valid clock domains and read the monitor registers for each valid domains. *Return the domain with error code. *With this all the clk domain data is removed from hal.clk and only pmu.clk uses it as it owns it. JIRA NVGPU-4491 Change-Id: Ie57b2472cfaacfd2ce43ac7f95702bd95fb8bbaa Signed-off-by: Abdul Salam <absalam@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2272416 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
56 lines
2.2 KiB
C
56 lines
2.2 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.
|
|
*/
|
|
#ifndef CLK_TU104_H
|
|
#define CLK_TU104_H
|
|
|
|
#include <nvgpu/lock.h>
|
|
#include <nvgpu/gk20a.h>
|
|
|
|
/**
|
|
* FMON register types
|
|
*/
|
|
#define FMON_THRESHOLD_HIGH 0x0U
|
|
#define FMON_THRESHOLD_LOW 0x1U
|
|
#define FMON_FAULT_STATUS 0x2U
|
|
#define FMON_FAULT_STATUS_PRIV_MASK 0x3U
|
|
#define CLK_CLOCK_MON_REG_TYPE_COUNT 0x4U
|
|
#define CLK_MON_BITS_PER_BYTE 0x8U
|
|
|
|
u32 tu104_get_rate_cntr(struct gk20a *g, struct namemap_cfg *c);
|
|
int tu104_init_clk_support(struct gk20a *g);
|
|
u32 tu104_crystal_clk_hz(struct gk20a *g);
|
|
unsigned long tu104_clk_measure_freq(struct gk20a *g, u32 api_domain);
|
|
void tu104_suspend_clk_support(struct gk20a *g);
|
|
int tu104_clk_domain_get_f_points(
|
|
struct gk20a *g,
|
|
u32 clkapidomain,
|
|
u32 *pfpointscount,
|
|
u16 *pfreqpointsinmhz);
|
|
unsigned long tu104_clk_maxrate(struct gk20a *g, u32 api_domain);
|
|
void tu104_get_change_seq_time(struct gk20a *g, s64 *change_time);
|
|
void tu104_change_host_clk_source(struct gk20a *g);
|
|
bool nvgpu_clk_mon_check_master_fault_status(struct gk20a *g);
|
|
int nvgpu_clk_mon_check_status(struct gk20a *g, struct
|
|
clk_domains_mon_status_params *clk_mon_status,
|
|
u32 domain_mask);
|
|
#endif /* CLK_TU104_H */
|