Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux...
[linux-2.6-block.git] / drivers / mfd / ab8500-sysctrl.c
CommitLineData
90550d19
MN
1/*
2 * Copyright (C) ST-Ericsson SA 2010
3 * Author: Mattias Nilsson <mattias.i.nilsson@stericsson.com> for ST Ericsson.
4 * License terms: GNU General Public License (GPL) version 2
5 */
6
7#include <linux/err.h>
4e36dd33 8#include <linux/module.h>
90550d19 9#include <linux/platform_device.h>
379749c4 10#include <linux/pm.h>
7c34d7c2 11#include <linux/reboot.h>
379749c4 12#include <linux/signal.h>
7c34d7c2 13#include <linux/power_supply.h>
90550d19 14#include <linux/mfd/abx500.h>
ee66e653
LW
15#include <linux/mfd/abx500/ab8500.h>
16#include <linux/mfd/abx500/ab8500-sysctrl.h>
90550d19 17
75932094
LJ
18/* RtcCtrl bits */
19#define AB8500_ALARM_MIN_LOW 0x08
20#define AB8500_ALARM_MIN_MID 0x09
21#define RTC_CTRL 0x0B
22#define RTC_ALARM_ENABLE 0x4
23
90550d19
MN
24static struct device *sysctrl_dev;
25
3d2088a1 26static void ab8500_power_off(void)
379749c4
LJ
27{
28 sigset_t old;
29 sigset_t all;
f04a9d8a 30 static char *pss[] = {"ab8500_ac", "pm2301", "ab8500_usb"};
7c34d7c2 31 int i;
0903940d
JA
32 bool charger_present = false;
33 union power_supply_propval val;
34 struct power_supply *psy;
35 int ret;
7c34d7c2 36
2377e52f
MD
37 if (sysctrl_dev == NULL) {
38 pr_err("%s: sysctrl not initialized\n", __func__);
39 return;
40 }
41
7c34d7c2
JA
42 /*
43 * If we have a charger connected and we're powering off,
44 * reboot into charge-only mode.
45 */
46
47 for (i = 0; i < ARRAY_SIZE(pss); i++) {
7c34d7c2
JA
48 psy = power_supply_get_by_name(pss[i]);
49 if (!psy)
50 continue;
0903940d 51
7c34d7c2
JA
52 ret = psy->get_property(psy, POWER_SUPPLY_PROP_ONLINE, &val);
53
54 if (!ret && val.intval) {
0903940d
JA
55 charger_present = true;
56 break;
57 }
58 }
59
60 if (!charger_present)
61 goto shutdown;
62
63 /* Check if battery is known */
64 psy = power_supply_get_by_name("ab8500_btemp");
65 if (psy) {
66 ret = psy->get_property(psy, POWER_SUPPLY_PROP_TECHNOLOGY,
67 &val);
68 if (!ret && val.intval != POWER_SUPPLY_TECHNOLOGY_UNKNOWN) {
7c34d7c2 69 printk(KERN_INFO
0903940d
JA
70 "Charger \"%s\" is connected with known battery."
71 " Rebooting.\n",
7c34d7c2 72 pss[i]);
5a4bac6e 73 machine_restart("charging");
7c34d7c2
JA
74 }
75 }
379749c4 76
0903940d 77shutdown:
379749c4
LJ
78 sigfillset(&all);
79
80 if (!sigprocmask(SIG_BLOCK, &all, &old)) {
81 (void)ab8500_sysctrl_set(AB8500_STW4500CTRL1,
82 AB8500_STW4500CTRL1_SWOFF |
83 AB8500_STW4500CTRL1_SWRESET4500N);
84 (void)sigprocmask(SIG_SETMASK, &old, NULL);
85 }
86}
87
90550d19
MN
88static inline bool valid_bank(u8 bank)
89{
90 return ((bank == AB8500_SYS_CTRL1_BLOCK) ||
91 (bank == AB8500_SYS_CTRL2_BLOCK));
92}
93
94int ab8500_sysctrl_read(u16 reg, u8 *value)
95{
96 u8 bank;
97
98 if (sysctrl_dev == NULL)
2377e52f 99 return -EINVAL;
90550d19
MN
100
101 bank = (reg >> 8);
102 if (!valid_bank(bank))
103 return -EINVAL;
104
105 return abx500_get_register_interruptible(sysctrl_dev, bank,
106 (u8)(reg & 0xFF), value);
107}
c73db9f7 108EXPORT_SYMBOL(ab8500_sysctrl_read);
90550d19
MN
109
110int ab8500_sysctrl_write(u16 reg, u8 mask, u8 value)
111{
112 u8 bank;
113
114 if (sysctrl_dev == NULL)
2377e52f 115 return -EINVAL;
90550d19
MN
116
117 bank = (reg >> 8);
118 if (!valid_bank(bank))
119 return -EINVAL;
120
121 return abx500_mask_and_set_register_interruptible(sysctrl_dev, bank,
122 (u8)(reg & 0xFF), mask, value);
123}
c73db9f7 124EXPORT_SYMBOL(ab8500_sysctrl_write);
90550d19 125
f791be49 126static int ab8500_sysctrl_probe(struct platform_device *pdev)
90550d19 127{
c5535522 128 struct ab8500 *ab8500 = dev_get_drvdata(pdev->dev.parent);
379749c4 129 struct ab8500_platform_data *plat;
1abf063f 130 struct ab8500_sysctrl_platform_data *pdata;
379749c4 131
379749c4 132 plat = dev_get_platdata(pdev->dev.parent);
2377e52f 133
5649d8f9 134 if (!plat)
2377e52f
MD
135 return -EINVAL;
136
9f7af61a
FB
137 sysctrl_dev = &pdev->dev;
138
0b8ebdb1 139 if (!pm_power_off)
379749c4 140 pm_power_off = ab8500_power_off;
1abf063f
KW
141
142 pdata = plat->sysctrl;
c5535522
RV
143 if (pdata) {
144 int last, ret, i, j;
145
146 if (is_ab8505(ab8500))
147 last = AB8500_SYSCLKREQ4RFCLKBUF;
148 else
149 last = AB8500_SYSCLKREQ8RFCLKBUF;
150
151 for (i = AB8500_SYSCLKREQ1RFCLKBUF; i <= last; i++) {
152 j = i - AB8500_SYSCLKREQ1RFCLKBUF;
153 ret = ab8500_sysctrl_write(i, 0xff,
154 pdata->initial_req_buf_config[j]);
155 dev_dbg(&pdev->dev,
156 "Setting SysClkReq%dRfClkBuf 0x%X\n",
157 j + 1,
158 pdata->initial_req_buf_config[j]);
159 if (ret < 0) {
160 dev_err(&pdev->dev,
161 "unable to set sysClkReq%dRfClkBuf: "
162 "%d\n", j + 1, ret);
163 }
1abf063f
KW
164 }
165 }
166
90550d19
MN
167 return 0;
168}
169
4740f73f 170static int ab8500_sysctrl_remove(struct platform_device *pdev)
90550d19
MN
171{
172 sysctrl_dev = NULL;
0b8ebdb1
FB
173
174 if (pm_power_off == ab8500_power_off)
175 pm_power_off = NULL;
176
90550d19
MN
177 return 0;
178}
179
180static struct platform_driver ab8500_sysctrl_driver = {
181 .driver = {
182 .name = "ab8500-sysctrl",
90550d19
MN
183 },
184 .probe = ab8500_sysctrl_probe,
84449216 185 .remove = ab8500_sysctrl_remove,
90550d19
MN
186};
187
188static int __init ab8500_sysctrl_init(void)
189{
190 return platform_driver_register(&ab8500_sysctrl_driver);
191}
caa62d64 192arch_initcall(ab8500_sysctrl_init);
90550d19
MN
193
194MODULE_AUTHOR("Mattias Nilsson <mattias.i.nilsson@stericsson.com");
195MODULE_DESCRIPTION("AB8500 system control driver");
196MODULE_LICENSE("GPL v2");