1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Copyright (c) 2015, The Linux Foundation. All rights reserved. 4 */ 5 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" 16 17 static int tsens_get_temp(void *data, int *temp) 18 { 19 struct tsens_sensor *s = data; 20 struct tsens_priv *priv = s->priv; 21 22 return priv->ops->get_temp(s, temp); 23 } 24 25 static int tsens_get_trend(void *data, int trip, enum thermal_trend *trend) 26 { 27 struct tsens_sensor *s = data; 28 struct tsens_priv *priv = s->priv; 29 30 if (priv->ops->get_trend) 31 return priv->ops->get_trend(s, trend); 32 33 return -ENOTSUPP; 34 } 35 36 static int __maybe_unused tsens_suspend(struct device *dev) 37 { 38 struct tsens_priv *priv = dev_get_drvdata(dev); 39 40 if (priv->ops && priv->ops->suspend) 41 return priv->ops->suspend(priv); 42 43 return 0; 44 } 45 46 static int __maybe_unused tsens_resume(struct device *dev) 47 { 48 struct tsens_priv *priv = dev_get_drvdata(dev); 49 50 if (priv->ops && priv->ops->resume) 51 return priv->ops->resume(priv); 52 53 return 0; 54 } 55 56 static SIMPLE_DEV_PM_OPS(tsens_pm_ops, tsens_suspend, tsens_resume); 57 58 static const struct of_device_id tsens_table[] = { 59 { 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, 77 }, 78 {} 79 }; 80 MODULE_DEVICE_TABLE(of, tsens_table); 81 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, 86 }; 87 88 static int tsens_register(struct tsens_priv *priv) 89 { 90 int i, ret, irq; 91 struct thermal_zone_device *tzd; 92 struct platform_device *pdev; 93 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); 104 } 105 106 pdev = of_find_device_by_node(priv->dev->of_node); 107 if (!pdev) 108 return -ENODEV; 109 110 irq = platform_get_irq_byname(pdev, "uplow"); 111 if (irq < 0) { 112 ret = irq; 113 goto err_put_device; 114 } 115 116 ret = devm_request_threaded_irq(&pdev->dev, irq, 117 NULL, tsens_irq_thread, 118 IRQF_TRIGGER_HIGH | IRQF_ONESHOT, 119 dev_name(&pdev->dev), priv); 120 if (ret) { 121 dev_err(&pdev->dev, "%s: failed to get irq\n", __func__); 122 goto err_put_device; 123 } 124 125 enable_irq_wake(irq); 126 127 err_put_device: 128 put_device(&pdev->dev); 129 return ret; 130 } 131 132 static int tsens_probe(struct platform_device *pdev) 133 { 134 int ret, i; 135 struct device *dev; 136 struct device_node *np; 137 struct tsens_priv *priv; 138 const struct tsens_plat_data *data; 139 const struct of_device_id *id; 140 u32 num_sensors; 141 142 if (pdev->dev.of_node) 143 dev = &pdev->dev; 144 else 145 dev = pdev->dev.parent; 146 147 np = dev->of_node; 148 149 id = of_match_node(tsens_table, np); 150 if (id) 151 data = id->data; 152 else 153 data = &data_8960; 154 155 num_sensors = data->num_sensors; 156 157 if (np) 158 of_property_read_u32(np, "#qcom,sensors", &num_sensors); 159 160 if (num_sensors <= 0) { 161 dev_err(dev, "%s: invalid number of sensors\n", __func__); 162 return -EINVAL; 163 } 164 165 priv = devm_kzalloc(dev, 166 struct_size(priv, sensor, num_sensors), 167 GFP_KERNEL); 168 if (!priv) 169 return -ENOMEM; 170 171 priv->dev = dev; 172 priv->num_sensors = num_sensors; 173 priv->ops = data->ops; 174 for (i = 0; i < priv->num_sensors; i++) { 175 if (data->hw_ids) 176 priv->sensor[i].hw_id = data->hw_ids[i]; 177 else 178 priv->sensor[i].hw_id = i; 179 } 180 priv->feat = data->feat; 181 priv->fields = data->fields; 182 183 platform_set_drvdata(pdev, priv); 184 185 if (!priv->ops || !priv->ops->init || !priv->ops->get_temp) 186 return -EINVAL; 187 188 ret = priv->ops->init(priv); 189 if (ret < 0) { 190 dev_err(dev, "%s: init failed\n", __func__); 191 return ret; 192 } 193 194 if (priv->ops->calibrate) { 195 ret = priv->ops->calibrate(priv); 196 if (ret < 0) { 197 if (ret != -EPROBE_DEFER) 198 dev_err(dev, "%s: calibration failed\n", __func__); 199 return ret; 200 } 201 } 202 203 return tsens_register(priv); 204 } 205 206 static int tsens_remove(struct platform_device *pdev) 207 { 208 struct tsens_priv *priv = platform_get_drvdata(pdev); 209 210 debugfs_remove_recursive(priv->debug_root); 211 tsens_disable_irq(priv); 212 if (priv->ops->disable) 213 priv->ops->disable(priv); 214 215 return 0; 216 } 217 218 static struct platform_driver tsens_driver = { 219 .probe = tsens_probe, 220 .remove = tsens_remove, 221 .driver = { 222 .name = "qcom-tsens", 223 .pm = &tsens_pm_ops, 224 .of_match_table = tsens_table, 225 }, 226 }; 227 module_platform_driver(tsens_driver); 228 229 MODULE_LICENSE("GPL v2"); 230 MODULE_DESCRIPTION("QCOM Temperature Sensor driver"); 231 MODULE_ALIAS("platform:qcom-tsens"); 232