treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / drivers / thermal / qcom / tsens.c
blob0e7cf52369326af5d814c9874c35faf207a98e57
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (c) 2015, The Linux Foundation. All rights reserved.
4 */
6 #include <linux/debugfs.h>
7 #include <linux/err.h>
8 #include <linux/module.h>
9 #include <linux/of.h>
10 #include <linux/of_platform.h>
11 #include <linux/platform_device.h>
12 #include <linux/pm.h>
13 #include <linux/slab.h>
14 #include <linux/thermal.h>
15 #include "tsens.h"
17 static int tsens_get_temp(void *data, int *temp)
19 struct tsens_sensor *s = data;
20 struct tsens_priv *priv = s->priv;
22 return priv->ops->get_temp(s, temp);
25 static int tsens_get_trend(void *data, int trip, enum thermal_trend *trend)
27 struct tsens_sensor *s = data;
28 struct tsens_priv *priv = s->priv;
30 if (priv->ops->get_trend)
31 return priv->ops->get_trend(s, trend);
33 return -ENOTSUPP;
36 static int __maybe_unused tsens_suspend(struct device *dev)
38 struct tsens_priv *priv = dev_get_drvdata(dev);
40 if (priv->ops && priv->ops->suspend)
41 return priv->ops->suspend(priv);
43 return 0;
46 static int __maybe_unused tsens_resume(struct device *dev)
48 struct tsens_priv *priv = dev_get_drvdata(dev);
50 if (priv->ops && priv->ops->resume)
51 return priv->ops->resume(priv);
53 return 0;
56 static SIMPLE_DEV_PM_OPS(tsens_pm_ops, tsens_suspend, tsens_resume);
58 static const struct of_device_id tsens_table[] = {
60 .compatible = "qcom,msm8916-tsens",
61 .data = &data_8916,
62 }, {
63 .compatible = "qcom,msm8974-tsens",
64 .data = &data_8974,
65 }, {
66 .compatible = "qcom,msm8976-tsens",
67 .data = &data_8976,
68 }, {
69 .compatible = "qcom,msm8996-tsens",
70 .data = &data_8996,
71 }, {
72 .compatible = "qcom,tsens-v1",
73 .data = &data_tsens_v1,
74 }, {
75 .compatible = "qcom,tsens-v2",
76 .data = &data_tsens_v2,
80 MODULE_DEVICE_TABLE(of, tsens_table);
82 static const struct thermal_zone_of_device_ops tsens_of_ops = {
83 .get_temp = tsens_get_temp,
84 .get_trend = tsens_get_trend,
85 .set_trips = tsens_set_trips,
88 static int tsens_register(struct tsens_priv *priv)
90 int i, ret, irq;
91 struct thermal_zone_device *tzd;
92 struct platform_device *pdev;
94 for (i = 0; i < priv->num_sensors; i++) {
95 priv->sensor[i].priv = priv;
96 tzd = devm_thermal_zone_of_sensor_register(priv->dev, priv->sensor[i].hw_id,
97 &priv->sensor[i],
98 &tsens_of_ops);
99 if (IS_ERR(tzd))
100 continue;
101 priv->sensor[i].tzd = tzd;
102 if (priv->ops->enable)
103 priv->ops->enable(priv, i);
106 pdev = of_find_device_by_node(priv->dev->of_node);
107 if (!pdev)
108 return -ENODEV;
110 irq = platform_get_irq_byname(pdev, "uplow");
111 if (irq < 0) {
112 ret = irq;
113 /* For old DTs with no IRQ defined */
114 if (irq == -ENXIO)
115 ret = 0;
116 goto err_put_device;
119 ret = devm_request_threaded_irq(&pdev->dev, irq,
120 NULL, tsens_irq_thread,
121 IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
122 dev_name(&pdev->dev), priv);
123 if (ret) {
124 dev_err(&pdev->dev, "%s: failed to get irq\n", __func__);
125 goto err_put_device;
128 enable_irq_wake(irq);
130 err_put_device:
131 put_device(&pdev->dev);
132 return ret;
135 static int tsens_probe(struct platform_device *pdev)
137 int ret, i;
138 struct device *dev;
139 struct device_node *np;
140 struct tsens_priv *priv;
141 const struct tsens_plat_data *data;
142 const struct of_device_id *id;
143 u32 num_sensors;
145 if (pdev->dev.of_node)
146 dev = &pdev->dev;
147 else
148 dev = pdev->dev.parent;
150 np = dev->of_node;
152 id = of_match_node(tsens_table, np);
153 if (id)
154 data = id->data;
155 else
156 data = &data_8960;
158 num_sensors = data->num_sensors;
160 if (np)
161 of_property_read_u32(np, "#qcom,sensors", &num_sensors);
163 if (num_sensors <= 0) {
164 dev_err(dev, "%s: invalid number of sensors\n", __func__);
165 return -EINVAL;
168 priv = devm_kzalloc(dev,
169 struct_size(priv, sensor, num_sensors),
170 GFP_KERNEL);
171 if (!priv)
172 return -ENOMEM;
174 priv->dev = dev;
175 priv->num_sensors = num_sensors;
176 priv->ops = data->ops;
177 for (i = 0; i < priv->num_sensors; i++) {
178 if (data->hw_ids)
179 priv->sensor[i].hw_id = data->hw_ids[i];
180 else
181 priv->sensor[i].hw_id = i;
183 priv->feat = data->feat;
184 priv->fields = data->fields;
186 platform_set_drvdata(pdev, priv);
188 if (!priv->ops || !priv->ops->init || !priv->ops->get_temp)
189 return -EINVAL;
191 ret = priv->ops->init(priv);
192 if (ret < 0) {
193 dev_err(dev, "%s: init failed\n", __func__);
194 return ret;
197 if (priv->ops->calibrate) {
198 ret = priv->ops->calibrate(priv);
199 if (ret < 0) {
200 if (ret != -EPROBE_DEFER)
201 dev_err(dev, "%s: calibration failed\n", __func__);
202 return ret;
206 return tsens_register(priv);
209 static int tsens_remove(struct platform_device *pdev)
211 struct tsens_priv *priv = platform_get_drvdata(pdev);
213 debugfs_remove_recursive(priv->debug_root);
214 tsens_disable_irq(priv);
215 if (priv->ops->disable)
216 priv->ops->disable(priv);
218 return 0;
221 static struct platform_driver tsens_driver = {
222 .probe = tsens_probe,
223 .remove = tsens_remove,
224 .driver = {
225 .name = "qcom-tsens",
226 .pm = &tsens_pm_ops,
227 .of_match_table = tsens_table,
230 module_platform_driver(tsens_driver);
232 MODULE_LICENSE("GPL v2");
233 MODULE_DESCRIPTION("QCOM Temperature Sensor driver");
234 MODULE_ALIAS("platform:qcom-tsens");