blob: 0d1825696153127862c7f369285bec72476702e6 [file] [log] [blame]
Mattias Nilsson90550d12011-02-14 11:17:12 +01001/*
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>
Paul Gortmaker4e36dd32011-07-03 15:13:27 -04008#include <linux/module.h>
Mattias Nilsson90550d12011-02-14 11:17:12 +01009#include <linux/platform_device.h>
Lee Jones379749c2013-01-14 13:26:15 +000010#include <linux/pm.h>
Jonas Aaberg7c34d7c2011-08-17 13:20:21 +020011#include <linux/reboot.h>
Lee Jones379749c2013-01-14 13:26:15 +000012#include <linux/signal.h>
Jonas Aaberg7c34d7c2011-08-17 13:20:21 +020013#include <linux/power_supply.h>
Mattias Nilsson90550d12011-02-14 11:17:12 +010014#include <linux/mfd/abx500.h>
Linus Walleijee66e652011-12-02 14:16:33 +010015#include <linux/mfd/abx500/ab8500.h>
16#include <linux/mfd/abx500/ab8500-sysctrl.h>
Mattias Nilsson90550d12011-02-14 11:17:12 +010017
Lee Jones75932092013-02-12 15:11:19 +000018/* 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
Mattias Nilsson90550d12011-02-14 11:17:12 +010024static struct device *sysctrl_dev;
25
Fabio Baltieri3d2088a2013-04-26 14:17:15 +020026static void ab8500_power_off(void)
Lee Jones379749c2013-01-14 13:26:15 +000027{
28 sigset_t old;
29 sigset_t all;
Rajkumar Kasirajanf04a9d82012-05-30 16:32:37 +053030 static char *pss[] = {"ab8500_ac", "pm2301", "ab8500_usb"};
Jonas Aaberg7c34d7c2011-08-17 13:20:21 +020031 int i;
Jonas Aaberg09039402011-08-17 15:58:52 +020032 bool charger_present = false;
33 union power_supply_propval val;
34 struct power_supply *psy;
35 int ret;
Jonas Aaberg7c34d7c2011-08-17 13:20:21 +020036
Marcus Danielsson2377e522012-06-18 15:00:40 +020037 if (sysctrl_dev == NULL) {
38 pr_err("%s: sysctrl not initialized\n", __func__);
39 return;
40 }
41
Jonas Aaberg7c34d7c2011-08-17 13:20:21 +020042 /*
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++) {
Jonas Aaberg7c34d7c2011-08-17 13:20:21 +020048 psy = power_supply_get_by_name(pss[i]);
49 if (!psy)
50 continue;
Jonas Aaberg09039402011-08-17 15:58:52 +020051
Krzysztof Kozlowski091e73a2015-03-12 08:44:07 +010052 ret = power_supply_get_property(psy, POWER_SUPPLY_PROP_ONLINE,
53 &val);
Krzysztof Kozlowski6ff9d252015-03-12 08:44:19 +010054 power_supply_put(psy);
Jonas Aaberg7c34d7c2011-08-17 13:20:21 +020055
56 if (!ret && val.intval) {
Jonas Aaberg09039402011-08-17 15:58:52 +020057 charger_present = true;
58 break;
59 }
60 }
61
62 if (!charger_present)
63 goto shutdown;
64
65 /* Check if battery is known */
66 psy = power_supply_get_by_name("ab8500_btemp");
67 if (psy) {
Krzysztof Kozlowski091e73a2015-03-12 08:44:07 +010068 ret = power_supply_get_property(psy,
69 POWER_SUPPLY_PROP_TECHNOLOGY, &val);
Jonas Aaberg09039402011-08-17 15:58:52 +020070 if (!ret && val.intval != POWER_SUPPLY_TECHNOLOGY_UNKNOWN) {
Jonas Aaberg7c34d7c2011-08-17 13:20:21 +020071 printk(KERN_INFO
Jonas Aaberg09039402011-08-17 15:58:52 +020072 "Charger \"%s\" is connected with known battery."
73 " Rebooting.\n",
Jonas Aaberg7c34d7c2011-08-17 13:20:21 +020074 pss[i]);
Jonas Aaberg5a4bac62011-08-18 10:14:38 +020075 machine_restart("charging");
Jonas Aaberg7c34d7c2011-08-17 13:20:21 +020076 }
Krzysztof Kozlowski6ff9d252015-03-12 08:44:19 +010077 power_supply_put(psy);
Jonas Aaberg7c34d7c2011-08-17 13:20:21 +020078 }
Lee Jones379749c2013-01-14 13:26:15 +000079
Jonas Aaberg09039402011-08-17 15:58:52 +020080shutdown:
Lee Jones379749c2013-01-14 13:26:15 +000081 sigfillset(&all);
82
83 if (!sigprocmask(SIG_BLOCK, &all, &old)) {
84 (void)ab8500_sysctrl_set(AB8500_STW4500CTRL1,
85 AB8500_STW4500CTRL1_SWOFF |
86 AB8500_STW4500CTRL1_SWRESET4500N);
87 (void)sigprocmask(SIG_SETMASK, &old, NULL);
88 }
89}
90
Mattias Nilsson90550d12011-02-14 11:17:12 +010091static inline bool valid_bank(u8 bank)
92{
93 return ((bank == AB8500_SYS_CTRL1_BLOCK) ||
94 (bank == AB8500_SYS_CTRL2_BLOCK));
95}
96
97int ab8500_sysctrl_read(u16 reg, u8 *value)
98{
99 u8 bank;
100
101 if (sysctrl_dev == NULL)
Marcus Danielsson2377e522012-06-18 15:00:40 +0200102 return -EINVAL;
Mattias Nilsson90550d12011-02-14 11:17:12 +0100103
104 bank = (reg >> 8);
105 if (!valid_bank(bank))
106 return -EINVAL;
107
108 return abx500_get_register_interruptible(sysctrl_dev, bank,
109 (u8)(reg & 0xFF), value);
110}
Jonas Aabergc73db9f2011-11-11 07:52:10 +0100111EXPORT_SYMBOL(ab8500_sysctrl_read);
Mattias Nilsson90550d12011-02-14 11:17:12 +0100112
113int ab8500_sysctrl_write(u16 reg, u8 mask, u8 value)
114{
115 u8 bank;
116
117 if (sysctrl_dev == NULL)
Marcus Danielsson2377e522012-06-18 15:00:40 +0200118 return -EINVAL;
Mattias Nilsson90550d12011-02-14 11:17:12 +0100119
120 bank = (reg >> 8);
121 if (!valid_bank(bank))
122 return -EINVAL;
123
124 return abx500_mask_and_set_register_interruptible(sysctrl_dev, bank,
125 (u8)(reg & 0xFF), mask, value);
126}
Jonas Aabergc73db9f2011-11-11 07:52:10 +0100127EXPORT_SYMBOL(ab8500_sysctrl_write);
Mattias Nilsson90550d12011-02-14 11:17:12 +0100128
Bill Pembertonf791be42012-11-19 13:23:04 -0500129static int ab8500_sysctrl_probe(struct platform_device *pdev)
Mattias Nilsson90550d12011-02-14 11:17:12 +0100130{
Rabin Vincentc5535522012-08-22 13:08:11 +0200131 struct ab8500 *ab8500 = dev_get_drvdata(pdev->dev.parent);
Lee Jones379749c2013-01-14 13:26:15 +0000132 struct ab8500_platform_data *plat;
Kennet Wallden1abf0632011-09-27 09:23:56 +0200133 struct ab8500_sysctrl_platform_data *pdata;
Lee Jones379749c2013-01-14 13:26:15 +0000134
Lee Jones379749c2013-01-14 13:26:15 +0000135 plat = dev_get_platdata(pdev->dev.parent);
Marcus Danielsson2377e522012-06-18 15:00:40 +0200136
Fabio Baltieri5649d8f2013-04-26 14:17:18 +0200137 if (!plat)
Marcus Danielsson2377e522012-06-18 15:00:40 +0200138 return -EINVAL;
139
Fabio Baltieri9f7af612013-04-26 14:17:17 +0200140 sysctrl_dev = &pdev->dev;
141
Fabio Baltieri0b8ebdb2013-05-09 13:08:08 +0200142 if (!pm_power_off)
Lee Jones379749c2013-01-14 13:26:15 +0000143 pm_power_off = ab8500_power_off;
Kennet Wallden1abf0632011-09-27 09:23:56 +0200144
145 pdata = plat->sysctrl;
Rabin Vincentc5535522012-08-22 13:08:11 +0200146 if (pdata) {
147 int last, ret, i, j;
Kennet Wallden1abf0632011-09-27 09:23:56 +0200148
Rabin Vincentc5535522012-08-22 13:08:11 +0200149 if (is_ab8505(ab8500))
150 last = AB8500_SYSCLKREQ4RFCLKBUF;
151 else
152 last = AB8500_SYSCLKREQ8RFCLKBUF;
153
154 for (i = AB8500_SYSCLKREQ1RFCLKBUF; i <= last; i++) {
155 j = i - AB8500_SYSCLKREQ1RFCLKBUF;
156 ret = ab8500_sysctrl_write(i, 0xff,
157 pdata->initial_req_buf_config[j]);
158 dev_dbg(&pdev->dev,
159 "Setting SysClkReq%dRfClkBuf 0x%X\n",
160 j + 1,
161 pdata->initial_req_buf_config[j]);
162 if (ret < 0) {
163 dev_err(&pdev->dev,
164 "unable to set sysClkReq%dRfClkBuf: "
165 "%d\n", j + 1, ret);
166 }
Kennet Wallden1abf0632011-09-27 09:23:56 +0200167 }
168 }
169
Mattias Nilsson90550d12011-02-14 11:17:12 +0100170 return 0;
171}
172
Bill Pemberton4740f732012-11-19 13:26:01 -0500173static int ab8500_sysctrl_remove(struct platform_device *pdev)
Mattias Nilsson90550d12011-02-14 11:17:12 +0100174{
175 sysctrl_dev = NULL;
Fabio Baltieri0b8ebdb2013-05-09 13:08:08 +0200176
177 if (pm_power_off == ab8500_power_off)
178 pm_power_off = NULL;
179
Mattias Nilsson90550d12011-02-14 11:17:12 +0100180 return 0;
181}
182
183static struct platform_driver ab8500_sysctrl_driver = {
184 .driver = {
185 .name = "ab8500-sysctrl",
Mattias Nilsson90550d12011-02-14 11:17:12 +0100186 },
187 .probe = ab8500_sysctrl_probe,
Bill Pemberton84449212012-11-19 13:20:24 -0500188 .remove = ab8500_sysctrl_remove,
Mattias Nilsson90550d12011-02-14 11:17:12 +0100189};
190
191static int __init ab8500_sysctrl_init(void)
192{
193 return platform_driver_register(&ab8500_sysctrl_driver);
194}
Ulf Hanssoncaa62d62013-04-03 01:06:27 +0200195arch_initcall(ab8500_sysctrl_init);
Mattias Nilsson90550d12011-02-14 11:17:12 +0100196
197MODULE_AUTHOR("Mattias Nilsson <mattias.i.nilsson@stericsson.com");
198MODULE_DESCRIPTION("AB8500 system control driver");
199MODULE_LICENSE("GPL v2");