]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/mfd/ab8500-sysctrl.c
config: Add RTL8XXXU wifi module
[mirror_ubuntu-zesty-kernel.git] / drivers / mfd / ab8500-sysctrl.c
CommitLineData
90550d19 1/*
dac94efa
PG
2 * AB8500 system control driver
3 *
90550d19
MN
4 * Copyright (C) ST-Ericsson SA 2010
5 * Author: Mattias Nilsson <mattias.i.nilsson@stericsson.com> for ST Ericsson.
6 * License terms: GNU General Public License (GPL) version 2
7 */
8
9#include <linux/err.h>
dac94efa
PG
10#include <linux/init.h>
11#include <linux/export.h>
90550d19 12#include <linux/platform_device.h>
379749c4 13#include <linux/pm.h>
7c34d7c2 14#include <linux/reboot.h>
379749c4 15#include <linux/signal.h>
7c34d7c2 16#include <linux/power_supply.h>
90550d19 17#include <linux/mfd/abx500.h>
ee66e653
LW
18#include <linux/mfd/abx500/ab8500.h>
19#include <linux/mfd/abx500/ab8500-sysctrl.h>
90550d19 20
75932094
LJ
21/* RtcCtrl bits */
22#define AB8500_ALARM_MIN_LOW 0x08
23#define AB8500_ALARM_MIN_MID 0x09
24#define RTC_CTRL 0x0B
25#define RTC_ALARM_ENABLE 0x4
26
90550d19
MN
27static struct device *sysctrl_dev;
28
3d2088a1 29static void ab8500_power_off(void)
379749c4
LJ
30{
31 sigset_t old;
32 sigset_t all;
63b4fd75 33 static const char * const pss[] = {"ab8500_ac", "pm2301", "ab8500_usb"};
7c34d7c2 34 int i;
0903940d
JA
35 bool charger_present = false;
36 union power_supply_propval val;
37 struct power_supply *psy;
38 int ret;
7c34d7c2 39
2377e52f
MD
40 if (sysctrl_dev == NULL) {
41 pr_err("%s: sysctrl not initialized\n", __func__);
42 return;
43 }
44
7c34d7c2
JA
45 /*
46 * If we have a charger connected and we're powering off,
47 * reboot into charge-only mode.
48 */
49
50 for (i = 0; i < ARRAY_SIZE(pss); i++) {
7c34d7c2
JA
51 psy = power_supply_get_by_name(pss[i]);
52 if (!psy)
53 continue;
0903940d 54
091e73a2
KK
55 ret = power_supply_get_property(psy, POWER_SUPPLY_PROP_ONLINE,
56 &val);
6ff9d25b 57 power_supply_put(psy);
7c34d7c2
JA
58
59 if (!ret && val.intval) {
0903940d
JA
60 charger_present = true;
61 break;
62 }
63 }
64
65 if (!charger_present)
66 goto shutdown;
67
68 /* Check if battery is known */
69 psy = power_supply_get_by_name("ab8500_btemp");
70 if (psy) {
091e73a2
KK
71 ret = power_supply_get_property(psy,
72 POWER_SUPPLY_PROP_TECHNOLOGY, &val);
0903940d 73 if (!ret && val.intval != POWER_SUPPLY_TECHNOLOGY_UNKNOWN) {
63b4fd75
LJ
74 pr_info("Charger '%s' is connected with known battery",
75 pss[i]);
76 pr_info(" - Rebooting.\n");
5a4bac6e 77 machine_restart("charging");
7c34d7c2 78 }
6ff9d25b 79 power_supply_put(psy);
7c34d7c2 80 }
379749c4 81
0903940d 82shutdown:
379749c4
LJ
83 sigfillset(&all);
84
85 if (!sigprocmask(SIG_BLOCK, &all, &old)) {
86 (void)ab8500_sysctrl_set(AB8500_STW4500CTRL1,
87 AB8500_STW4500CTRL1_SWOFF |
88 AB8500_STW4500CTRL1_SWRESET4500N);
89 (void)sigprocmask(SIG_SETMASK, &old, NULL);
90 }
91}
92
90550d19
MN
93static inline bool valid_bank(u8 bank)
94{
95 return ((bank == AB8500_SYS_CTRL1_BLOCK) ||
96 (bank == AB8500_SYS_CTRL2_BLOCK));
97}
98
99int ab8500_sysctrl_read(u16 reg, u8 *value)
100{
101 u8 bank;
102
103 if (sysctrl_dev == NULL)
2377e52f 104 return -EINVAL;
90550d19
MN
105
106 bank = (reg >> 8);
107 if (!valid_bank(bank))
108 return -EINVAL;
109
110 return abx500_get_register_interruptible(sysctrl_dev, bank,
111 (u8)(reg & 0xFF), value);
112}
c73db9f7 113EXPORT_SYMBOL(ab8500_sysctrl_read);
90550d19
MN
114
115int ab8500_sysctrl_write(u16 reg, u8 mask, u8 value)
116{
117 u8 bank;
118
119 if (sysctrl_dev == NULL)
2377e52f 120 return -EINVAL;
90550d19
MN
121
122 bank = (reg >> 8);
123 if (!valid_bank(bank))
124 return -EINVAL;
125
126 return abx500_mask_and_set_register_interruptible(sysctrl_dev, bank,
127 (u8)(reg & 0xFF), mask, value);
128}
c73db9f7 129EXPORT_SYMBOL(ab8500_sysctrl_write);
90550d19 130
f791be49 131static int ab8500_sysctrl_probe(struct platform_device *pdev)
90550d19 132{
9f7af61a
FB
133 sysctrl_dev = &pdev->dev;
134
0b8ebdb1 135 if (!pm_power_off)
379749c4 136 pm_power_off = ab8500_power_off;
1abf063f 137
90550d19
MN
138 return 0;
139}
140
4740f73f 141static int ab8500_sysctrl_remove(struct platform_device *pdev)
90550d19
MN
142{
143 sysctrl_dev = NULL;
0b8ebdb1
FB
144
145 if (pm_power_off == ab8500_power_off)
146 pm_power_off = NULL;
147
90550d19
MN
148 return 0;
149}
150
151static struct platform_driver ab8500_sysctrl_driver = {
152 .driver = {
153 .name = "ab8500-sysctrl",
90550d19
MN
154 },
155 .probe = ab8500_sysctrl_probe,
84449216 156 .remove = ab8500_sysctrl_remove,
90550d19
MN
157};
158
159static int __init ab8500_sysctrl_init(void)
160{
161 return platform_driver_register(&ab8500_sysctrl_driver);
162}
caa62d64 163arch_initcall(ab8500_sysctrl_init);