2 * ACPI INT3403 thermal driver
3 * Copyright (c) 2013, Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 #include <linux/kernel.h>
16 #include <linux/module.h>
17 #include <linux/init.h>
18 #include <linux/types.h>
19 #include <linux/acpi.h>
20 #include <linux/thermal.h>
21 #include <linux/platform_device.h>
22 #include "int340x_thermal_zone.h"
24 #define INT3403_TYPE_SENSOR 0x03
25 #define INT3403_TYPE_CHARGER 0x0B
26 #define INT3403_TYPE_BATTERY 0x0C
27 #define INT3403_PERF_CHANGED_EVENT 0x80
28 #define INT3403_THERMAL_EVENT 0x90
30 /* Preserved structure for future expandbility */
31 struct int3403_sensor
{
32 struct int34x_thermal_zone
*int340x_zone
;
35 struct int3403_performance_state
{
47 struct thermal_cooling_device
*cdev
;
48 unsigned long max_state
;
52 struct platform_device
*pdev
;
53 struct acpi_device
*adev
;
54 unsigned long long type
;
58 static void int3403_notify(acpi_handle handle
,
59 u32 event
, void *data
)
61 struct int3403_priv
*priv
= data
;
62 struct int3403_sensor
*obj
;
68 if (priv
->type
!= INT3403_TYPE_SENSOR
|| !obj
)
72 case INT3403_PERF_CHANGED_EVENT
:
74 case INT3403_THERMAL_EVENT
:
75 int340x_thermal_zone_device_update(obj
->int340x_zone
);
78 dev_err(&priv
->pdev
->dev
, "Unsupported event [0x%x]\n", event
);
83 static int int3403_sensor_add(struct int3403_priv
*priv
)
86 struct int3403_sensor
*obj
;
88 obj
= devm_kzalloc(&priv
->pdev
->dev
, sizeof(*obj
), GFP_KERNEL
);
94 obj
->int340x_zone
= int340x_thermal_zone_add(priv
->adev
, NULL
);
95 if (IS_ERR(obj
->int340x_zone
))
96 return PTR_ERR(obj
->int340x_zone
);
98 result
= acpi_install_notify_handler(priv
->adev
->handle
,
99 ACPI_DEVICE_NOTIFY
, int3403_notify
,
107 int340x_thermal_zone_remove(obj
->int340x_zone
);
111 static int int3403_sensor_remove(struct int3403_priv
*priv
)
113 struct int3403_sensor
*obj
= priv
->priv
;
115 acpi_remove_notify_handler(priv
->adev
->handle
,
116 ACPI_DEVICE_NOTIFY
, int3403_notify
);
117 int340x_thermal_zone_remove(obj
->int340x_zone
);
122 /* INT3403 Cooling devices */
123 static int int3403_get_max_state(struct thermal_cooling_device
*cdev
,
124 unsigned long *state
)
126 struct int3403_priv
*priv
= cdev
->devdata
;
127 struct int3403_cdev
*obj
= priv
->priv
;
129 *state
= obj
->max_state
;
133 static int int3403_get_cur_state(struct thermal_cooling_device
*cdev
,
134 unsigned long *state
)
136 struct int3403_priv
*priv
= cdev
->devdata
;
137 unsigned long long level
;
140 status
= acpi_evaluate_integer(priv
->adev
->handle
, "PPPC", NULL
, &level
);
141 if (ACPI_SUCCESS(status
)) {
149 int3403_set_cur_state(struct thermal_cooling_device
*cdev
, unsigned long state
)
151 struct int3403_priv
*priv
= cdev
->devdata
;
154 status
= acpi_execute_simple_method(priv
->adev
->handle
, "SPPC", state
);
155 if (ACPI_SUCCESS(status
))
161 static const struct thermal_cooling_device_ops int3403_cooling_ops
= {
162 .get_max_state
= int3403_get_max_state
,
163 .get_cur_state
= int3403_get_cur_state
,
164 .set_cur_state
= int3403_set_cur_state
,
167 static int int3403_cdev_add(struct int3403_priv
*priv
)
171 struct int3403_cdev
*obj
;
172 struct acpi_buffer buf
= { ACPI_ALLOCATE_BUFFER
, NULL
};
173 union acpi_object
*p
;
175 obj
= devm_kzalloc(&priv
->pdev
->dev
, sizeof(*obj
), GFP_KERNEL
);
179 status
= acpi_evaluate_object(priv
->adev
->handle
, "PPSS", NULL
, &buf
);
180 if (ACPI_FAILURE(status
))
184 if (!p
|| (p
->type
!= ACPI_TYPE_PACKAGE
)) {
185 printk(KERN_WARNING
"Invalid PPSS data\n");
190 obj
->max_state
= p
->package
.count
- 1;
192 thermal_cooling_device_register(acpi_device_bid(priv
->adev
),
193 priv
, &int3403_cooling_ops
);
194 if (IS_ERR(obj
->cdev
))
195 result
= PTR_ERR(obj
->cdev
);
200 /* TODO: add ACPI notification support */
205 static int int3403_cdev_remove(struct int3403_priv
*priv
)
207 struct int3403_cdev
*obj
= priv
->priv
;
209 thermal_cooling_device_unregister(obj
->cdev
);
213 static int int3403_add(struct platform_device
*pdev
)
215 struct int3403_priv
*priv
;
219 priv
= devm_kzalloc(&pdev
->dev
, sizeof(struct int3403_priv
),
225 priv
->adev
= ACPI_COMPANION(&(pdev
->dev
));
231 status
= acpi_evaluate_integer(priv
->adev
->handle
, "PTYP",
233 if (ACPI_FAILURE(status
)) {
238 platform_set_drvdata(pdev
, priv
);
239 switch (priv
->type
) {
240 case INT3403_TYPE_SENSOR
:
241 result
= int3403_sensor_add(priv
);
243 case INT3403_TYPE_CHARGER
:
244 case INT3403_TYPE_BATTERY
:
245 result
= int3403_cdev_add(priv
);
259 static int int3403_remove(struct platform_device
*pdev
)
261 struct int3403_priv
*priv
= platform_get_drvdata(pdev
);
263 switch (priv
->type
) {
264 case INT3403_TYPE_SENSOR
:
265 int3403_sensor_remove(priv
);
267 case INT3403_TYPE_CHARGER
:
268 case INT3403_TYPE_BATTERY
:
269 int3403_cdev_remove(priv
);
278 static const struct acpi_device_id int3403_device_ids
[] = {
282 MODULE_DEVICE_TABLE(acpi
, int3403_device_ids
);
284 static struct platform_driver int3403_driver
= {
285 .probe
= int3403_add
,
286 .remove
= int3403_remove
,
288 .name
= "int3403 thermal",
289 .acpi_match_table
= int3403_device_ids
,
293 module_platform_driver(int3403_driver
);
295 MODULE_AUTHOR("Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>");
296 MODULE_LICENSE("GPL v2");
297 MODULE_DESCRIPTION("ACPI INT3403 thermal driver");