1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Toshiba HDD Active Protection Sensor (HAPS) driver
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/init.h>
13 #include <linux/types.h>
14 #include <linux/acpi.h>
17 MODULE_DESCRIPTION("Toshiba HDD Active Protection Sensor");
18 MODULE_LICENSE("GPL");
20 struct toshiba_haps_dev {
21 struct acpi_device *acpi_dev;
26 static struct toshiba_haps_dev *toshiba_haps;
29 static int toshiba_haps_reset_protection(acpi_handle handle)
33 status = acpi_evaluate_object(handle, "RSSS", NULL, NULL);
34 if (ACPI_FAILURE(status)) {
35 pr_err("Unable to reset the HDD protection\n");
42 static int toshiba_haps_protection_level(acpi_handle handle, int level)
46 status = acpi_execute_simple_method(handle, "PTLV", level);
47 if (ACPI_FAILURE(status)) {
48 pr_err("Error while setting the protection level\n");
52 pr_debug("HDD protection level set to: %d\n", level);
58 static ssize_t protection_level_show(struct device *dev,
59 struct device_attribute *attr, char *buf)
61 struct toshiba_haps_dev *haps = dev_get_drvdata(dev);
63 return sprintf(buf, "%i\n", haps->protection_level);
66 static ssize_t protection_level_store(struct device *dev,
67 struct device_attribute *attr,
68 const char *buf, size_t count)
70 struct toshiba_haps_dev *haps = dev_get_drvdata(dev);
74 ret = kstrtoint(buf, 0, &level);
78 * Check for supported levels, which can be:
79 * 0 - Disabled | 1 - Low | 2 - Medium | 3 - High
81 if (level < 0 || level > 3)
84 /* Set the sensor level */
85 ret = toshiba_haps_protection_level(haps->acpi_dev->handle, level);
89 haps->protection_level = level;
93 static DEVICE_ATTR_RW(protection_level);
95 static ssize_t reset_protection_store(struct device *dev,
96 struct device_attribute *attr,
97 const char *buf, size_t count)
99 struct toshiba_haps_dev *haps = dev_get_drvdata(dev);
103 ret = kstrtoint(buf, 0, &reset);
106 /* The only accepted value is 1 */
110 /* Reset the protection interface */
111 ret = toshiba_haps_reset_protection(haps->acpi_dev->handle);
117 static DEVICE_ATTR_WO(reset_protection);
119 static struct attribute *haps_attributes[] = {
120 &dev_attr_protection_level.attr,
121 &dev_attr_reset_protection.attr,
125 static const struct attribute_group haps_attr_group = {
126 .attrs = haps_attributes,
132 static void toshiba_haps_notify(struct acpi_device *device, u32 event)
134 pr_debug("Received event: 0x%x\n", event);
136 acpi_bus_generate_netlink_event(device->pnp.device_class,
137 dev_name(&device->dev),
141 static int toshiba_haps_remove(struct acpi_device *device)
143 sysfs_remove_group(&device->dev.kobj, &haps_attr_group);
151 /* Helper function */
152 static int toshiba_haps_available(acpi_handle handle)
158 * A non existent device as well as having (only)
159 * Solid State Drives can cause the call to fail.
161 status = acpi_evaluate_integer(handle, "_STA", NULL, &hdd_present);
162 if (ACPI_FAILURE(status)) {
163 pr_err("ACPI call to query HDD protection failed\n");
168 pr_info("HDD protection not available or using SSD\n");
175 static int toshiba_haps_add(struct acpi_device *acpi_dev)
177 struct toshiba_haps_dev *haps;
183 if (!toshiba_haps_available(acpi_dev->handle))
186 pr_info("Toshiba HDD Active Protection Sensor device\n");
188 haps = kzalloc(sizeof(struct toshiba_haps_dev), GFP_KERNEL);
192 haps->acpi_dev = acpi_dev;
193 haps->protection_level = 2;
194 acpi_dev->driver_data = haps;
195 dev_set_drvdata(&acpi_dev->dev, haps);
197 /* Set the protection level, currently at level 2 (Medium) */
198 ret = toshiba_haps_protection_level(acpi_dev->handle, 2);
202 ret = sysfs_create_group(&acpi_dev->dev.kobj, &haps_attr_group);
211 #ifdef CONFIG_PM_SLEEP
212 static int toshiba_haps_suspend(struct device *device)
214 struct toshiba_haps_dev *haps;
217 haps = acpi_driver_data(to_acpi_device(device));
219 /* Deactivate the protection on suspend */
220 ret = toshiba_haps_protection_level(haps->acpi_dev->handle, 0);
225 static int toshiba_haps_resume(struct device *device)
227 struct toshiba_haps_dev *haps;
230 haps = acpi_driver_data(to_acpi_device(device));
232 /* Set the stored protection level */
233 ret = toshiba_haps_protection_level(haps->acpi_dev->handle,
234 haps->protection_level);
236 /* Reset the protection on resume */
237 ret = toshiba_haps_reset_protection(haps->acpi_dev->handle);
245 static SIMPLE_DEV_PM_OPS(toshiba_haps_pm,
246 toshiba_haps_suspend, toshiba_haps_resume);
248 static const struct acpi_device_id haps_device_ids[] = {
252 MODULE_DEVICE_TABLE(acpi, haps_device_ids);
254 static struct acpi_driver toshiba_haps_driver = {
255 .name = "Toshiba HAPS",
256 .owner = THIS_MODULE,
257 .ids = haps_device_ids,
258 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
260 .add = toshiba_haps_add,
261 .remove = toshiba_haps_remove,
262 .notify = toshiba_haps_notify,
264 .drv.pm = &toshiba_haps_pm,
267 module_acpi_driver(toshiba_haps_driver);