blob: 8b9d567134d01a4aa95afd4981aec0ed7545c5bd [file] [log] [blame]
Vincenzo Frascino6a92c362012-03-21 12:55:03 -07001/*
2 * SPEAr thermal driver.
3 *
4 * Copyright (C) 2011-2012 ST Microelectronics
5 * Author: Vincenzo Frascino <vincenzo.frascino@st.com>
6 *
7 * This software is licensed under the terms of the GNU General Public
8 * License version 2, as published by the Free Software Foundation, and
9 * may be copied, distributed, and modified under those terms.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 */
17
18#include <linux/clk.h>
19#include <linux/device.h>
20#include <linux/err.h>
21#include <linux/io.h>
22#include <linux/kernel.h>
Viresh Kumarb9c7aff2012-05-29 11:18:51 -070023#include <linux/of.h>
Vincenzo Frascino6a92c362012-03-21 12:55:03 -070024#include <linux/module.h>
25#include <linux/platform_device.h>
Vincenzo Frascino6a92c362012-03-21 12:55:03 -070026#include <linux/thermal.h>
27
28#define MD_FACTOR 1000
29
30/* SPEAr Thermal Sensor Dev Structure */
31struct spear_thermal_dev {
32 /* pointer to base address of the thermal sensor */
33 void __iomem *thermal_base;
34 /* clk structure */
35 struct clk *clk;
36 /* pointer to thermal flags */
37 unsigned int flags;
38};
39
40static inline int thermal_get_temp(struct thermal_zone_device *thermal,
Sascha Hauer17e83512015-07-24 08:12:54 +020041 int *temp)
Vincenzo Frascino6a92c362012-03-21 12:55:03 -070042{
43 struct spear_thermal_dev *stdev = thermal->devdata;
44
45 /*
46 * Data are ready to be read after 628 usec from POWERDOWN signal
47 * (PDN) = 1
48 */
Viresh Kumarde716e32012-03-21 12:55:03 -070049 *temp = (readl_relaxed(stdev->thermal_base) & 0x7F) * MD_FACTOR;
Vincenzo Frascino6a92c362012-03-21 12:55:03 -070050 return 0;
51}
52
53static struct thermal_zone_device_ops ops = {
54 .get_temp = thermal_get_temp,
55};
56
Arnd Bergmannd612c642016-01-25 17:44:10 +010057static int __maybe_unused spear_thermal_suspend(struct device *dev)
Vincenzo Frascino6a92c362012-03-21 12:55:03 -070058{
Wolfram Sang3fc62ef2018-10-21 22:00:50 +020059 struct thermal_zone_device *spear_thermal = dev_get_drvdata(dev);
Vincenzo Frascino6a92c362012-03-21 12:55:03 -070060 struct spear_thermal_dev *stdev = spear_thermal->devdata;
61 unsigned int actual_mask = 0;
62
63 /* Disable SPEAr Thermal Sensor */
Viresh Kumarde716e32012-03-21 12:55:03 -070064 actual_mask = readl_relaxed(stdev->thermal_base);
65 writel_relaxed(actual_mask & ~stdev->flags, stdev->thermal_base);
Vincenzo Frascino6a92c362012-03-21 12:55:03 -070066
67 clk_disable(stdev->clk);
68 dev_info(dev, "Suspended.\n");
69
70 return 0;
71}
72
Arnd Bergmannd612c642016-01-25 17:44:10 +010073static int __maybe_unused spear_thermal_resume(struct device *dev)
Vincenzo Frascino6a92c362012-03-21 12:55:03 -070074{
Wolfram Sang3fc62ef2018-10-21 22:00:50 +020075 struct thermal_zone_device *spear_thermal = dev_get_drvdata(dev);
Vincenzo Frascino6a92c362012-03-21 12:55:03 -070076 struct spear_thermal_dev *stdev = spear_thermal->devdata;
77 unsigned int actual_mask = 0;
78 int ret = 0;
79
80 ret = clk_enable(stdev->clk);
81 if (ret) {
Wolfram Sang3fc62ef2018-10-21 22:00:50 +020082 dev_err(dev, "Can't enable clock\n");
Vincenzo Frascino6a92c362012-03-21 12:55:03 -070083 return ret;
84 }
85
86 /* Enable SPEAr Thermal Sensor */
Viresh Kumarde716e32012-03-21 12:55:03 -070087 actual_mask = readl_relaxed(stdev->thermal_base);
88 writel_relaxed(actual_mask | stdev->flags, stdev->thermal_base);
Vincenzo Frascino6a92c362012-03-21 12:55:03 -070089
90 dev_info(dev, "Resumed.\n");
91
92 return 0;
93}
Vincenzo Frascino6a92c362012-03-21 12:55:03 -070094
95static SIMPLE_DEV_PM_OPS(spear_thermal_pm_ops, spear_thermal_suspend,
96 spear_thermal_resume);
97
98static int spear_thermal_probe(struct platform_device *pdev)
99{
100 struct thermal_zone_device *spear_thermal = NULL;
101 struct spear_thermal_dev *stdev;
Viresh Kumarb9c7aff2012-05-29 11:18:51 -0700102 struct device_node *np = pdev->dev.of_node;
Zhang Rui253e3ae2013-05-16 02:16:20 +0000103 struct resource *res;
Viresh Kumarb9c7aff2012-05-29 11:18:51 -0700104 int ret = 0, val;
105
106 if (!np || !of_property_read_u32(np, "st,thermal-flags", &val)) {
107 dev_err(&pdev->dev, "Failed: DT Pdata not passed\n");
108 return -EINVAL;
109 }
Vincenzo Frascino6a92c362012-03-21 12:55:03 -0700110
Vincenzo Frascino6a92c362012-03-21 12:55:03 -0700111 stdev = devm_kzalloc(&pdev->dev, sizeof(*stdev), GFP_KERNEL);
Jingoo Hanfa018d32014-05-07 15:05:32 +0900112 if (!stdev)
Vincenzo Frascino6a92c362012-03-21 12:55:03 -0700113 return -ENOMEM;
Vincenzo Frascino6a92c362012-03-21 12:55:03 -0700114
115 /* Enable thermal sensor */
Zhang Ruic21bec82013-05-16 02:16:21 +0000116 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
117 stdev->thermal_base = devm_ioremap_resource(&pdev->dev, res);
118 if (IS_ERR(stdev->thermal_base))
Zhang Rui253e3ae2013-05-16 02:16:20 +0000119 return PTR_ERR(stdev->thermal_base);
Vincenzo Frascino6a92c362012-03-21 12:55:03 -0700120
Julia Lawall03b79bd2012-12-07 11:29:32 +0100121 stdev->clk = devm_clk_get(&pdev->dev, NULL);
Vincenzo Frascino6a92c362012-03-21 12:55:03 -0700122 if (IS_ERR(stdev->clk)) {
123 dev_err(&pdev->dev, "Can't get clock\n");
124 return PTR_ERR(stdev->clk);
125 }
126
127 ret = clk_enable(stdev->clk);
128 if (ret) {
129 dev_err(&pdev->dev, "Can't enable clock\n");
Julia Lawall03b79bd2012-12-07 11:29:32 +0100130 return ret;
Vincenzo Frascino6a92c362012-03-21 12:55:03 -0700131 }
132
Viresh Kumarb9c7aff2012-05-29 11:18:51 -0700133 stdev->flags = val;
Viresh Kumarde716e32012-03-21 12:55:03 -0700134 writel_relaxed(stdev->flags, stdev->thermal_base);
Vincenzo Frascino6a92c362012-03-21 12:55:03 -0700135
Durgadoss Rc56f5c02012-07-25 10:10:58 +0800136 spear_thermal = thermal_zone_device_register("spear_thermal", 0, 0,
Durgadoss R50125a92012-09-18 11:04:56 +0530137 stdev, &ops, NULL, 0, 0);
Dan Carpenter03ee62f2012-03-21 12:55:04 -0700138 if (IS_ERR(spear_thermal)) {
Vincenzo Frascino6a92c362012-03-21 12:55:03 -0700139 dev_err(&pdev->dev, "thermal zone device is NULL\n");
Dan Carpenter03ee62f2012-03-21 12:55:04 -0700140 ret = PTR_ERR(spear_thermal);
Vincenzo Frascino6a92c362012-03-21 12:55:03 -0700141 goto disable_clk;
142 }
143
144 platform_set_drvdata(pdev, spear_thermal);
145
146 dev_info(&spear_thermal->device, "Thermal Sensor Loaded at: 0x%p.\n",
147 stdev->thermal_base);
148
149 return 0;
150
151disable_clk:
152 clk_disable(stdev->clk);
Vincenzo Frascino6a92c362012-03-21 12:55:03 -0700153
154 return ret;
155}
156
157static int spear_thermal_exit(struct platform_device *pdev)
158{
159 unsigned int actual_mask = 0;
160 struct thermal_zone_device *spear_thermal = platform_get_drvdata(pdev);
161 struct spear_thermal_dev *stdev = spear_thermal->devdata;
162
163 thermal_zone_device_unregister(spear_thermal);
Vincenzo Frascino6a92c362012-03-21 12:55:03 -0700164
165 /* Disable SPEAr Thermal Sensor */
Viresh Kumarde716e32012-03-21 12:55:03 -0700166 actual_mask = readl_relaxed(stdev->thermal_base);
167 writel_relaxed(actual_mask & ~stdev->flags, stdev->thermal_base);
Vincenzo Frascino6a92c362012-03-21 12:55:03 -0700168
169 clk_disable(stdev->clk);
Vincenzo Frascino6a92c362012-03-21 12:55:03 -0700170
171 return 0;
172}
173
Viresh Kumarb9c7aff2012-05-29 11:18:51 -0700174static const struct of_device_id spear_thermal_id_table[] = {
175 { .compatible = "st,thermal-spear1340" },
176 {}
177};
178MODULE_DEVICE_TABLE(of, spear_thermal_id_table);
179
Vincenzo Frascino6a92c362012-03-21 12:55:03 -0700180static struct platform_driver spear_thermal_driver = {
181 .probe = spear_thermal_probe,
182 .remove = spear_thermal_exit,
183 .driver = {
184 .name = "spear_thermal",
Vincenzo Frascino6a92c362012-03-21 12:55:03 -0700185 .pm = &spear_thermal_pm_ops,
Sachin Kamat5454f212013-05-16 10:28:11 +0000186 .of_match_table = spear_thermal_id_table,
Vincenzo Frascino6a92c362012-03-21 12:55:03 -0700187 },
188};
189
190module_platform_driver(spear_thermal_driver);
191
192MODULE_AUTHOR("Vincenzo Frascino <vincenzo.frascino@st.com>");
193MODULE_DESCRIPTION("SPEAr thermal driver");
194MODULE_LICENSE("GPL");