mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-23 18:16:01 +03:00
Reorganize HAL initialization to remove inheritance and construct the gpu_ops struct at compile time. This patch only covers the clk and clk_arb sub-module of the gpu_ops struct. Perform HAL function assignments in hal_gxxxx.c through the population of a chip-specific copy of gpu_ops. Jira NVGPU-74 Change-Id: I553353df836b187b8eac61e16b63080b570c96b8 Signed-off-by: Sunny He <suhe@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1511076 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Alex Waterman <alexw@nvidia.com> Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
60 lines
1.7 KiB
C
60 lines
1.7 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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef CLK_GP106_H
|
|
#define CLK_GP106_H
|
|
|
|
#include <nvgpu/lock.h>
|
|
|
|
#define CLK_NAMEMAP_INDEX_GPC2CLK 0x00
|
|
#define CLK_NAMEMAP_INDEX_XBAR2CLK 0x02
|
|
#define CLK_NAMEMAP_INDEX_SYS2CLK 0x07 /* SYSPLL */
|
|
#define CLK_NAMEMAP_INDEX_DRAMCLK 0x20 /* DRAMPLL */
|
|
|
|
#define CLK_DEFAULT_CNTRL_SETTLE_RETRIES 10
|
|
#define CLK_DEFAULT_CNTRL_SETTLE_USECS 5
|
|
|
|
#define XTAL_CNTR_CLKS 27000 /* 1000usec at 27KHz XTAL */
|
|
#define XTAL_CNTR_DELAY 1000 /* we need acuracy up to the ms */
|
|
#define XTAL_SCALE_TO_KHZ 1
|
|
|
|
|
|
|
|
struct namemap_cfg {
|
|
u32 namemap;
|
|
u32 is_enable; /* Namemap enabled */
|
|
u32 is_counter; /* Using cntr */
|
|
struct gk20a *g;
|
|
union {
|
|
struct {
|
|
u32 reg_ctrl_addr;
|
|
u32 reg_ctrl_idx;
|
|
u32 reg_cntr_addr;
|
|
} cntr;
|
|
struct {
|
|
/* Todo */
|
|
} pll;
|
|
};
|
|
u32 scale;
|
|
char name[24];
|
|
};
|
|
|
|
int gp106_init_clk_support(struct gk20a *g);
|
|
u32 gp106_crystal_clk_hz(struct gk20a *g);
|
|
unsigned long gp106_clk_measure_freq(struct gk20a *g, u32 api_domain);
|
|
int gp106_suspend_clk_support(struct gk20a *g);
|
|
|
|
#endif /* CLK_GP106_H */
|