x86/topology: Fix function name in documentation
[cris-mirror.git] / drivers / thermal / tegra / tegra-bpmp-thermal.c
blobb0980dbca3b39ec616b2f530f25b9e77514902a8
1 /*
2 * Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
4 * Author:
5 * Mikko Perttunen <mperttunen@nvidia.com>
6 * Aapo Vienamo <avienamo@nvidia.com>
8 * This software is licensed under the terms of the GNU General Public
9 * License version 2, as published by the Free Software Foundation, and
10 * may be copied, distributed, and modified under those terms.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
19 #include <linux/err.h>
20 #include <linux/module.h>
21 #include <linux/platform_device.h>
22 #include <linux/thermal.h>
23 #include <linux/workqueue.h>
25 #include <soc/tegra/bpmp.h>
26 #include <soc/tegra/bpmp-abi.h>
28 struct tegra_bpmp_thermal_zone {
29 struct tegra_bpmp_thermal *tegra;
30 struct thermal_zone_device *tzd;
31 struct work_struct tz_device_update_work;
32 unsigned int idx;
35 struct tegra_bpmp_thermal {
36 struct device *dev;
37 struct tegra_bpmp *bpmp;
38 unsigned int num_zones;
39 struct tegra_bpmp_thermal_zone **zones;
42 static int tegra_bpmp_thermal_get_temp(void *data, int *out_temp)
44 struct tegra_bpmp_thermal_zone *zone = data;
45 struct mrq_thermal_host_to_bpmp_request req;
46 union mrq_thermal_bpmp_to_host_response reply;
47 struct tegra_bpmp_message msg;
48 int err;
50 memset(&req, 0, sizeof(req));
51 req.type = CMD_THERMAL_GET_TEMP;
52 req.get_temp.zone = zone->idx;
54 memset(&msg, 0, sizeof(msg));
55 msg.mrq = MRQ_THERMAL;
56 msg.tx.data = &req;
57 msg.tx.size = sizeof(req);
58 msg.rx.data = &reply;
59 msg.rx.size = sizeof(reply);
61 err = tegra_bpmp_transfer(zone->tegra->bpmp, &msg);
62 if (err)
63 return err;
65 *out_temp = reply.get_temp.temp;
67 return 0;
70 static int tegra_bpmp_thermal_set_trips(void *data, int low, int high)
72 struct tegra_bpmp_thermal_zone *zone = data;
73 struct mrq_thermal_host_to_bpmp_request req;
74 struct tegra_bpmp_message msg;
76 memset(&req, 0, sizeof(req));
77 req.type = CMD_THERMAL_SET_TRIP;
78 req.set_trip.zone = zone->idx;
79 req.set_trip.enabled = true;
80 req.set_trip.low = low;
81 req.set_trip.high = high;
83 memset(&msg, 0, sizeof(msg));
84 msg.mrq = MRQ_THERMAL;
85 msg.tx.data = &req;
86 msg.tx.size = sizeof(req);
88 return tegra_bpmp_transfer(zone->tegra->bpmp, &msg);
91 static void tz_device_update_work_fn(struct work_struct *work)
93 struct tegra_bpmp_thermal_zone *zone;
95 zone = container_of(work, struct tegra_bpmp_thermal_zone,
96 tz_device_update_work);
98 thermal_zone_device_update(zone->tzd, THERMAL_TRIP_VIOLATED);
101 static void bpmp_mrq_thermal(unsigned int mrq, struct tegra_bpmp_channel *ch,
102 void *data)
104 struct mrq_thermal_bpmp_to_host_request *req;
105 struct tegra_bpmp_thermal *tegra = data;
106 int i;
108 req = (struct mrq_thermal_bpmp_to_host_request *)ch->ib->data;
110 if (req->type != CMD_THERMAL_HOST_TRIP_REACHED) {
111 dev_err(tegra->dev, "%s: invalid request type: %d\n",
112 __func__, req->type);
113 tegra_bpmp_mrq_return(ch, -EINVAL, NULL, 0);
114 return;
117 for (i = 0; i < tegra->num_zones; ++i) {
118 if (tegra->zones[i]->idx != req->host_trip_reached.zone)
119 continue;
121 schedule_work(&tegra->zones[i]->tz_device_update_work);
122 tegra_bpmp_mrq_return(ch, 0, NULL, 0);
123 return;
126 dev_err(tegra->dev, "%s: invalid thermal zone: %d\n", __func__,
127 req->host_trip_reached.zone);
128 tegra_bpmp_mrq_return(ch, -EINVAL, NULL, 0);
131 static int tegra_bpmp_thermal_get_num_zones(struct tegra_bpmp *bpmp,
132 int *num_zones)
134 struct mrq_thermal_host_to_bpmp_request req;
135 union mrq_thermal_bpmp_to_host_response reply;
136 struct tegra_bpmp_message msg;
137 int err;
139 memset(&req, 0, sizeof(req));
140 req.type = CMD_THERMAL_GET_NUM_ZONES;
142 memset(&msg, 0, sizeof(msg));
143 msg.mrq = MRQ_THERMAL;
144 msg.tx.data = &req;
145 msg.tx.size = sizeof(req);
146 msg.rx.data = &reply;
147 msg.rx.size = sizeof(reply);
149 err = tegra_bpmp_transfer(bpmp, &msg);
150 if (err)
151 return err;
153 *num_zones = reply.get_num_zones.num;
155 return 0;
158 static const struct thermal_zone_of_device_ops tegra_bpmp_of_thermal_ops = {
159 .get_temp = tegra_bpmp_thermal_get_temp,
160 .set_trips = tegra_bpmp_thermal_set_trips,
163 static int tegra_bpmp_thermal_probe(struct platform_device *pdev)
165 struct tegra_bpmp *bpmp = dev_get_drvdata(pdev->dev.parent);
166 struct tegra_bpmp_thermal *tegra;
167 struct thermal_zone_device *tzd;
168 unsigned int i, max_num_zones;
169 int err;
171 tegra = devm_kzalloc(&pdev->dev, sizeof(*tegra), GFP_KERNEL);
172 if (!tegra)
173 return -ENOMEM;
175 tegra->dev = &pdev->dev;
176 tegra->bpmp = bpmp;
178 err = tegra_bpmp_thermal_get_num_zones(bpmp, &max_num_zones);
179 if (err) {
180 dev_err(&pdev->dev, "failed to get the number of zones: %d\n",
181 err);
182 return err;
185 tegra->zones = devm_kcalloc(&pdev->dev, max_num_zones,
186 sizeof(*tegra->zones), GFP_KERNEL);
187 if (!tegra->zones)
188 return -ENOMEM;
190 for (i = 0; i < max_num_zones; ++i) {
191 struct tegra_bpmp_thermal_zone *zone;
192 int temp;
194 zone = devm_kzalloc(&pdev->dev, sizeof(*zone), GFP_KERNEL);
195 if (!zone)
196 return -ENOMEM;
198 zone->idx = i;
199 zone->tegra = tegra;
201 err = tegra_bpmp_thermal_get_temp(zone, &temp);
202 if (err < 0) {
203 devm_kfree(&pdev->dev, zone);
204 continue;
207 tzd = devm_thermal_zone_of_sensor_register(
208 &pdev->dev, i, zone, &tegra_bpmp_of_thermal_ops);
209 if (IS_ERR(tzd)) {
210 if (PTR_ERR(tzd) == -EPROBE_DEFER)
211 return -EPROBE_DEFER;
212 devm_kfree(&pdev->dev, zone);
213 continue;
216 zone->tzd = tzd;
217 INIT_WORK(&zone->tz_device_update_work,
218 tz_device_update_work_fn);
220 tegra->zones[tegra->num_zones++] = zone;
223 err = tegra_bpmp_request_mrq(bpmp, MRQ_THERMAL, bpmp_mrq_thermal,
224 tegra);
225 if (err) {
226 dev_err(&pdev->dev, "failed to register mrq handler: %d\n",
227 err);
228 return err;
231 platform_set_drvdata(pdev, tegra);
233 return 0;
236 static int tegra_bpmp_thermal_remove(struct platform_device *pdev)
238 struct tegra_bpmp_thermal *tegra = platform_get_drvdata(pdev);
240 tegra_bpmp_free_mrq(tegra->bpmp, MRQ_THERMAL, tegra);
242 return 0;
245 static const struct of_device_id tegra_bpmp_thermal_of_match[] = {
246 { .compatible = "nvidia,tegra186-bpmp-thermal" },
247 { },
249 MODULE_DEVICE_TABLE(of, tegra_bpmp_thermal_of_match);
251 static struct platform_driver tegra_bpmp_thermal_driver = {
252 .probe = tegra_bpmp_thermal_probe,
253 .remove = tegra_bpmp_thermal_remove,
254 .driver = {
255 .name = "tegra-bpmp-thermal",
256 .of_match_table = tegra_bpmp_thermal_of_match,
259 module_platform_driver(tegra_bpmp_thermal_driver);
261 MODULE_AUTHOR("Mikko Perttunen <mperttunen@nvidia.com>");
262 MODULE_DESCRIPTION("NVIDIA Tegra BPMP thermal sensor driver");
263 MODULE_LICENSE("GPL v2");