blob: 9dfc9cee3232c439db6da6676a60ba920a307834 [file] [log] [blame]
Pawel Moll790440b2012-10-18 17:58:47 +01001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License version 2 as
4 * published by the Free Software Foundation.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * Copyright (C) 2012 ARM Limited
12 */
13
Pawel Molld08b8032014-04-24 17:19:30 +010014#include <linux/delay.h>
Guenter Roeck46c99ac2014-09-30 10:48:27 -070015#include <linux/notifier.h>
Pawel Moll790440b2012-10-18 17:58:47 +010016#include <linux/of.h>
17#include <linux/of_device.h>
18#include <linux/platform_device.h>
Guenter Roeck46c99ac2014-09-30 10:48:27 -070019#include <linux/reboot.h>
Pawel Moll790440b2012-10-18 17:58:47 +010020#include <linux/stat.h>
21#include <linux/vexpress.h>
22
23static void vexpress_reset_do(struct device *dev, const char *what)
24{
25 int err = -ENOENT;
Pawel Moll3b9334a2014-04-30 16:46:29 +010026 struct regmap *reg = dev_get_drvdata(dev);
Pawel Moll790440b2012-10-18 17:58:47 +010027
Pawel Moll3b9334a2014-04-30 16:46:29 +010028 if (reg) {
29 err = regmap_write(reg, 0, 0);
Pawel Molld08b8032014-04-24 17:19:30 +010030 if (!err)
31 mdelay(1000);
Pawel Moll790440b2012-10-18 17:58:47 +010032 }
33
34 dev_emerg(dev, "Unable to %s (%d)\n", what, err);
35}
36
37static struct device *vexpress_power_off_device;
38
Catalin Marinas65deb782013-02-28 16:43:19 +000039static void vexpress_power_off(void)
Pawel Moll790440b2012-10-18 17:58:47 +010040{
41 vexpress_reset_do(vexpress_power_off_device, "power off");
42}
43
44static struct device *vexpress_restart_device;
45
Guenter Roeck46c99ac2014-09-30 10:48:27 -070046static int vexpress_restart(struct notifier_block *this, unsigned long mode,
47 void *cmd)
Pawel Moll790440b2012-10-18 17:58:47 +010048{
49 vexpress_reset_do(vexpress_restart_device, "restart");
Guenter Roeck46c99ac2014-09-30 10:48:27 -070050
51 return NOTIFY_DONE;
Pawel Moll790440b2012-10-18 17:58:47 +010052}
53
Guenter Roeck46c99ac2014-09-30 10:48:27 -070054static struct notifier_block vexpress_restart_nb = {
55 .notifier_call = vexpress_restart,
56 .priority = 128,
57};
58
Pawel Moll790440b2012-10-18 17:58:47 +010059static ssize_t vexpress_reset_active_show(struct device *dev,
60 struct device_attribute *attr, char *buf)
61{
62 return sprintf(buf, "%d\n", vexpress_restart_device == dev);
63}
64
65static ssize_t vexpress_reset_active_store(struct device *dev,
66 struct device_attribute *attr, const char *buf, size_t count)
67{
68 long value;
69 int err = kstrtol(buf, 0, &value);
70
71 if (!err && value)
72 vexpress_restart_device = dev;
73
74 return err ? err : count;
75}
76
77DEVICE_ATTR(active, S_IRUGO | S_IWUSR, vexpress_reset_active_show,
78 vexpress_reset_active_store);
79
80
81enum vexpress_reset_func { FUNC_RESET, FUNC_SHUTDOWN, FUNC_REBOOT };
82
83static struct of_device_id vexpress_reset_of_match[] = {
84 {
85 .compatible = "arm,vexpress-reset",
86 .data = (void *)FUNC_RESET,
87 }, {
88 .compatible = "arm,vexpress-shutdown",
89 .data = (void *)FUNC_SHUTDOWN
90 }, {
91 .compatible = "arm,vexpress-reboot",
92 .data = (void *)FUNC_REBOOT
93 },
94 {}
95};
96
Guenter Roeck46c99ac2014-09-30 10:48:27 -070097static int _vexpress_register_restart_handler(struct device *dev)
98{
99 int err;
100
101 vexpress_restart_device = dev;
102 err = register_restart_handler(&vexpress_restart_nb);
103 if (err) {
104 dev_err(dev, "cannot register restart handler (err=%d)\n", err);
105 return err;
106 }
107 device_create_file(dev, &dev_attr_active);
108
109 return 0;
110}
111
Pawel Moll790440b2012-10-18 17:58:47 +0100112static int vexpress_reset_probe(struct platform_device *pdev)
113{
114 enum vexpress_reset_func func;
115 const struct of_device_id *match =
116 of_match_device(vexpress_reset_of_match, &pdev->dev);
Pawel Moll3b9334a2014-04-30 16:46:29 +0100117 struct regmap *regmap;
Guenter Roeck46c99ac2014-09-30 10:48:27 -0700118 int ret = 0;
Pawel Moll790440b2012-10-18 17:58:47 +0100119
120 if (match)
121 func = (enum vexpress_reset_func)match->data;
122 else
123 func = pdev->id_entry->driver_data;
124
Pawel Moll3b9334a2014-04-30 16:46:29 +0100125 regmap = devm_regmap_init_vexpress_config(&pdev->dev);
126 if (IS_ERR(regmap))
127 return PTR_ERR(regmap);
128 dev_set_drvdata(&pdev->dev, regmap);
Pawel Molld08b8032014-04-24 17:19:30 +0100129
Pawel Moll790440b2012-10-18 17:58:47 +0100130 switch (func) {
131 case FUNC_SHUTDOWN:
132 vexpress_power_off_device = &pdev->dev;
Catalin Marinas65deb782013-02-28 16:43:19 +0000133 pm_power_off = vexpress_power_off;
Pawel Moll790440b2012-10-18 17:58:47 +0100134 break;
135 case FUNC_RESET:
136 if (!vexpress_restart_device)
Guenter Roeck46c99ac2014-09-30 10:48:27 -0700137 ret = _vexpress_register_restart_handler(&pdev->dev);
Pawel Moll790440b2012-10-18 17:58:47 +0100138 break;
139 case FUNC_REBOOT:
Guenter Roeck46c99ac2014-09-30 10:48:27 -0700140 ret = _vexpress_register_restart_handler(&pdev->dev);
Pawel Moll790440b2012-10-18 17:58:47 +0100141 break;
142 };
143
Guenter Roeck46c99ac2014-09-30 10:48:27 -0700144 return ret;
Pawel Moll790440b2012-10-18 17:58:47 +0100145}
146
147static const struct platform_device_id vexpress_reset_id_table[] = {
148 { .name = "vexpress-reset", .driver_data = FUNC_RESET, },
149 { .name = "vexpress-shutdown", .driver_data = FUNC_SHUTDOWN, },
150 { .name = "vexpress-reboot", .driver_data = FUNC_REBOOT, },
151 {}
152};
153
154static struct platform_driver vexpress_reset_driver = {
155 .probe = vexpress_reset_probe,
156 .driver = {
157 .name = "vexpress-reset",
158 .of_match_table = vexpress_reset_of_match,
159 },
160 .id_table = vexpress_reset_id_table,
161};
162
163static int __init vexpress_reset_init(void)
164{
165 return platform_driver_register(&vexpress_reset_driver);
166}
167device_initcall(vexpress_reset_init);