blob: ae4741ddc1a573b2bf34b8b1da490f769eed89b2 [file] [log] [blame]
Siddartha Mohanadosscd8aa0b2017-04-06 15:17:46 -07001/* Copyright (c) 2017, The Linux Foundation. All rights reserved.
Siddartha Mohanadoss41b4cd92017-02-21 14:34:23 -08002 *
Siddartha Mohanadosscd8aa0b2017-04-06 15:17:46 -07003 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
Siddartha Mohanadoss41b4cd92017-02-21 14:34:23 -08006 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
Siddartha Mohanadosscd8aa0b2017-04-06 15:17:46 -070011 *
Siddartha Mohanadoss41b4cd92017-02-21 14:34:23 -080012 */
13#ifndef __QCOM_TSENS_H__
14#define __QCOM_TSENS_H__
15
16#include <linux/kernel.h>
17#include <linux/thermal.h>
18#include <linux/interrupt.h>
19#include <linux/types.h>
20#include <linux/workqueue.h>
21#include <linux/io.h>
22#include <linux/delay.h>
23
24#define DEBUG_SIZE 10
25#define TSENS_MAX_SENSORS 16
Siddartha Mohanadoss07b10612017-04-07 14:53:45 -070026#define TSENS_CONTROLLER_ID(n) (n)
Siddartha Mohanadoss41b4cd92017-02-21 14:34:23 -080027#define TSENS_CTRL_ADDR(n) (n)
Siddartha Mohanadoss07b10612017-04-07 14:53:45 -070028#define TSENS_TM_SN_STATUS(n) ((n) + 0xa0)
Siddartha Mohanadoss41b4cd92017-02-21 14:34:23 -080029
30enum tsens_dbg_type {
31 TSENS_DBG_POLL,
32 TSENS_DBG_LOG_TEMP_READS,
33 TSENS_DBG_LOG_INTERRUPT_TIMESTAMP,
Siddartha Mohanadoss64a5da32017-05-09 11:09:51 -070034 TSENS_DBG_LOG_BUS_ID_DATA,
Ashok Jammigumpulaa1b7ec12017-11-23 15:37:44 +053035 TSENS_DBG_MTC_DATA,
Siddartha Mohanadoss41b4cd92017-02-21 14:34:23 -080036 TSENS_DBG_LOG_MAX
37};
38
39#define tsens_sec_to_msec_value 1000
40
41struct tsens_device;
42
43#if defined(CONFIG_THERMAL_TSENS)
44int tsens2xxx_dbg(struct tsens_device *data, u32 id, u32 dbg_type, int *temp);
45#else
46static inline int tsens2xxx_dbg(struct tsens_device *data, u32 id,
47 u32 dbg_type, int *temp)
48{ return -ENXIO; }
49#endif
50
51struct tsens_dbg {
Siddartha Mohanadoss41b4cd92017-02-21 14:34:23 -080052 u32 idx;
53 unsigned long long time_stmp[DEBUG_SIZE];
54 unsigned long temp[DEBUG_SIZE];
55};
56
57struct tsens_dbg_context {
58 struct tsens_device *tmdev;
Siddartha Mohanadoss41b4cd92017-02-21 14:34:23 -080059 struct tsens_dbg sensor_dbg_info[TSENS_MAX_SENSORS];
60 int tsens_critical_wd_cnt;
Rama Krishna Phani A6ad66332017-10-25 21:20:04 +053061 u32 irq_idx;
62 unsigned long long irq_time_stmp[DEBUG_SIZE];
Siddartha Mohanadoss41b4cd92017-02-21 14:34:23 -080063 struct delayed_work tsens_critical_poll_test;
64};
65
66struct tsens_context {
67 enum thermal_device_mode high_th_state;
68 enum thermal_device_mode low_th_state;
69 enum thermal_device_mode crit_th_state;
70 int high_temp;
71 int low_temp;
72 int crit_temp;
73};
74
75struct tsens_sensor {
76 struct tsens_device *tmdev;
77 struct thermal_zone_device *tzd;
78 u32 hw_id;
79 u32 id;
80 const char *sensor_name;
81 struct tsens_context thr_state;
82};
83
84/**
85 * struct tsens_ops - operations as supported by the tsens device
86 * @init: Function to initialize the tsens device
87 * @get_temp: Function which returns the temp in millidegC
88 */
89struct tsens_ops {
90 int (*hw_init)(struct tsens_device *);
91 int (*get_temp)(struct tsens_sensor *, int *);
Siddartha Mohanadoss07b10612017-04-07 14:53:45 -070092 int (*set_trips)(struct tsens_sensor *, int, int);
Siddartha Mohanadoss41b4cd92017-02-21 14:34:23 -080093 int (*interrupts_reg)(struct tsens_device *);
94 int (*dbg)(struct tsens_device *, u32, u32, int *);
Siddartha Mohanadossf86413d2017-07-18 13:44:31 -070095 int (*sensor_en)(struct tsens_device *, u32);
Siddartha Mohanadoss41b4cd92017-02-21 14:34:23 -080096};
97
98struct tsens_irqs {
99 const char *name;
100 irqreturn_t (*handler)(int, void *);
101};
102
103/**
104 * struct tsens_data - tsens instance specific data
105 * @num_sensors: Max number of sensors supported by platform
106 * @ops: operations the tsens instance supports
107 * @hw_ids: Subset of sensors ids supported by platform, if not the first n
108 */
109struct tsens_data {
110 const u32 num_sensors;
111 const struct tsens_ops *ops;
112 unsigned int *hw_ids;
113 u32 temp_factor;
114 bool cycle_monitor;
Siddartha Mohanadoss64a5da32017-05-09 11:09:51 -0700115 u32 cycle_compltn_monitor_mask;
Siddartha Mohanadoss41b4cd92017-02-21 14:34:23 -0800116 bool wd_bark;
Siddartha Mohanadoss64a5da32017-05-09 11:09:51 -0700117 u32 wd_bark_mask;
Ashok Jammigumpulaa1b7ec12017-11-23 15:37:44 +0530118 bool mtc;
119};
120
121struct tsens_mtc_sysfs {
122 uint32_t zone_log;
123 int zone_mtc;
124 int th1;
125 int th2;
126 uint32_t zone_hist;
Siddartha Mohanadoss41b4cd92017-02-21 14:34:23 -0800127};
128
129struct tsens_device {
130 struct device *dev;
131 struct platform_device *pdev;
132 struct list_head list;
Siddartha Mohanadoss41b4cd92017-02-21 14:34:23 -0800133 struct regmap *map;
134 struct regmap_field *status_field;
Siddartha Mohanadoss07b10612017-04-07 14:53:45 -0700135 void __iomem *tsens_srot_addr;
136 void __iomem *tsens_tm_addr;
Siddartha Mohanadoss41b4cd92017-02-21 14:34:23 -0800137 const struct tsens_ops *ops;
138 struct tsens_dbg_context tsens_dbg;
139 spinlock_t tsens_crit_lock;
140 spinlock_t tsens_upp_low_lock;
141 const struct tsens_data *ctrl_data;
142 struct tsens_sensor sensor[0];
Ashok Jammigumpulaa1b7ec12017-11-23 15:37:44 +0530143 struct tsens_mtc_sysfs mtcsys;
Siddartha Mohanadoss41b4cd92017-02-21 14:34:23 -0800144};
145
146extern const struct tsens_data data_tsens2xxx, data_tsens23xx, data_tsens24xx;
Ashok Jammigumpulaa1b7ec12017-11-23 15:37:44 +0530147extern struct list_head tsens_device_list;
Siddartha Mohanadoss41b4cd92017-02-21 14:34:23 -0800148
149#endif /* __QCOM_TSENS_H__ */