Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.19-rc7 162 lines 5.1 kB view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved. 4 * 5 * This software is licensed under the terms of the GNU General Public 6 * License version 2, as published by the Free Software Foundation, and 7 * may be copied, distributed, and modified under those terms. 8 * 9 * This program is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * GNU General Public License for more details. 13 * 14 */ 15 16#ifndef __DRIVERS_THERMAL_TEGRA_SOCTHERM_H 17#define __DRIVERS_THERMAL_TEGRA_SOCTHERM_H 18 19#define THERMCTL_LEVEL0_GROUP_CPU 0x0 20#define THERMCTL_LEVEL0_GROUP_GPU 0x4 21#define THERMCTL_LEVEL0_GROUP_MEM 0x8 22#define THERMCTL_LEVEL0_GROUP_TSENSE 0xc 23 24#define SENSOR_CONFIG2 8 25#define SENSOR_CONFIG2_THERMA_MASK (0xffff << 16) 26#define SENSOR_CONFIG2_THERMA_SHIFT 16 27#define SENSOR_CONFIG2_THERMB_MASK 0xffff 28#define SENSOR_CONFIG2_THERMB_SHIFT 0 29 30#define THERMCTL_THERMTRIP_CTL 0x80 31/* BITs are defined in device file */ 32 33#define THERMCTL_INTR_ENABLE 0x88 34#define THERMCTL_INTR_DISABLE 0x8c 35#define TH_INTR_UP_DN_EN 0x3 36#define THERM_IRQ_MEM_MASK (TH_INTR_UP_DN_EN << 24) 37#define THERM_IRQ_GPU_MASK (TH_INTR_UP_DN_EN << 16) 38#define THERM_IRQ_CPU_MASK (TH_INTR_UP_DN_EN << 8) 39#define THERM_IRQ_TSENSE_MASK (TH_INTR_UP_DN_EN << 0) 40 41#define SENSOR_PDIV 0x1c0 42#define SENSOR_PDIV_CPU_MASK (0xf << 12) 43#define SENSOR_PDIV_GPU_MASK (0xf << 8) 44#define SENSOR_PDIV_MEM_MASK (0xf << 4) 45#define SENSOR_PDIV_PLLX_MASK (0xf << 0) 46 47#define SENSOR_HOTSPOT_OFF 0x1c4 48#define SENSOR_HOTSPOT_CPU_MASK (0xff << 16) 49#define SENSOR_HOTSPOT_GPU_MASK (0xff << 8) 50#define SENSOR_HOTSPOT_MEM_MASK (0xff << 0) 51 52#define SENSOR_TEMP1 0x1c8 53#define SENSOR_TEMP1_CPU_TEMP_MASK (0xffff << 16) 54#define SENSOR_TEMP1_GPU_TEMP_MASK 0xffff 55#define SENSOR_TEMP2 0x1cc 56#define SENSOR_TEMP2_MEM_TEMP_MASK (0xffff << 16) 57#define SENSOR_TEMP2_PLLX_TEMP_MASK 0xffff 58 59#define FUSE_VSENSOR_CALIB 0x08c 60#define FUSE_TSENSOR_COMMON 0x180 61 62/** 63 * struct tegra_tsensor_group - SOC_THERM sensor group data 64 * @name: short name of the temperature sensor group 65 * @id: numeric ID of the temperature sensor group 66 * @sensor_temp_offset: offset of the SENSOR_TEMP* register 67 * @sensor_temp_mask: bit mask for this sensor group in SENSOR_TEMP* register 68 * @pdiv: the sensor count post-divider to use during runtime 69 * @pdiv_ate: the sensor count post-divider used during automated test 70 * @pdiv_mask: register bitfield mask for the PDIV field for this sensor 71 * @pllx_hotspot_diff: hotspot offset from the PLLX sensor, must be 0 for 72 PLLX sensor group 73 * @pllx_hotspot_mask: register bitfield mask for the HOTSPOT field 74 */ 75struct tegra_tsensor_group { 76 const char *name; 77 u8 id; 78 u16 sensor_temp_offset; 79 u32 sensor_temp_mask; 80 u32 pdiv, pdiv_ate, pdiv_mask; 81 u32 pllx_hotspot_diff, pllx_hotspot_mask; 82 u32 thermtrip_enable_mask; 83 u32 thermtrip_any_en_mask; 84 u32 thermtrip_threshold_mask; 85 u32 thermctl_isr_mask; 86 u16 thermctl_lvl0_offset; 87 u32 thermctl_lvl0_up_thresh_mask; 88 u32 thermctl_lvl0_dn_thresh_mask; 89}; 90 91struct tegra_tsensor_configuration { 92 u32 tall, tiddq_en, ten_count, pdiv, pdiv_ate, tsample, tsample_ate; 93}; 94 95struct tegra_tsensor { 96 const char *name; 97 const u32 base; 98 const struct tegra_tsensor_configuration *config; 99 const u32 calib_fuse_offset; 100 /* 101 * Correction values used to modify values read from 102 * calibration fuses 103 */ 104 const s32 fuse_corr_alpha, fuse_corr_beta; 105 const struct tegra_tsensor_group *group; 106}; 107 108struct tsensor_group_thermtrips { 109 u8 id; 110 u32 temp; 111}; 112 113struct tegra_soctherm_fuse { 114 u32 fuse_base_cp_mask, fuse_base_cp_shift; 115 u32 fuse_shift_cp_mask, fuse_shift_cp_shift; 116 u32 fuse_base_ft_mask, fuse_base_ft_shift; 117 u32 fuse_shift_ft_mask, fuse_shift_ft_shift; 118 u32 fuse_common_reg, fuse_spare_realignment; 119 u32 nominal_calib_ft; 120}; 121 122struct tsensor_shared_calib { 123 u32 base_cp, base_ft; 124 u32 actual_temp_cp, actual_temp_ft; 125}; 126 127struct tegra_soctherm_soc { 128 const struct tegra_tsensor *tsensors; 129 const unsigned int num_tsensors; 130 const struct tegra_tsensor_group **ttgs; 131 const unsigned int num_ttgs; 132 const struct tegra_soctherm_fuse *tfuse; 133 const int thresh_grain; 134 const unsigned int bptt; 135 const bool use_ccroc; 136 struct tsensor_group_thermtrips *thermtrips; 137}; 138 139int tegra_calc_shared_calib(const struct tegra_soctherm_fuse *tfuse, 140 struct tsensor_shared_calib *shared); 141int tegra_calc_tsensor_calib(const struct tegra_tsensor *sensor, 142 const struct tsensor_shared_calib *shared, 143 u32 *calib); 144 145#ifdef CONFIG_ARCH_TEGRA_114_SOC 146extern const struct tegra_soctherm_soc tegra114_soctherm; 147#endif 148 149#ifdef CONFIG_ARCH_TEGRA_124_SOC 150extern const struct tegra_soctherm_soc tegra124_soctherm; 151#endif 152 153#ifdef CONFIG_ARCH_TEGRA_132_SOC 154extern const struct tegra_soctherm_soc tegra132_soctherm; 155#endif 156 157#ifdef CONFIG_ARCH_TEGRA_210_SOC 158extern const struct tegra_soctherm_soc tegra210_soctherm; 159#endif 160 161#endif 162