| Mattias Nilsson | 90550d1 | 2011-02-14 11:17:12 +0100 | [diff] [blame] | 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> | 
| Paul Gortmaker | 4e36dd3 | 2011-07-03 15:13:27 -0400 | [diff] [blame] | 8 | #include <linux/module.h> | 
| Mattias Nilsson | 90550d1 | 2011-02-14 11:17:12 +0100 | [diff] [blame] | 9 | #include <linux/platform_device.h> | 
| Lee Jones | 379749c | 2013-01-14 13:26:15 +0000 | [diff] [blame] | 10 | #include <linux/pm.h> | 
| Jonas Aaberg | 7c34d7c | 2011-08-17 13:20:21 +0200 | [diff] [blame] | 11 | #include <linux/reboot.h> | 
| Lee Jones | 379749c | 2013-01-14 13:26:15 +0000 | [diff] [blame] | 12 | #include <linux/signal.h> | 
| Jonas Aaberg | 7c34d7c | 2011-08-17 13:20:21 +0200 | [diff] [blame] | 13 | #include <linux/power_supply.h> | 
| Mattias Nilsson | 90550d1 | 2011-02-14 11:17:12 +0100 | [diff] [blame] | 14 | #include <linux/mfd/abx500.h> | 
| Linus Walleij | ee66e65 | 2011-12-02 14:16:33 +0100 | [diff] [blame] | 15 | #include <linux/mfd/abx500/ab8500.h> | 
 | 16 | #include <linux/mfd/abx500/ab8500-sysctrl.h> | 
| Mattias Nilsson | 90550d1 | 2011-02-14 11:17:12 +0100 | [diff] [blame] | 17 |  | 
 | 18 | static struct device *sysctrl_dev; | 
 | 19 |  | 
| Lee Jones | 379749c | 2013-01-14 13:26:15 +0000 | [diff] [blame] | 20 | void ab8500_power_off(void) | 
 | 21 | { | 
 | 22 | 	sigset_t old; | 
 | 23 | 	sigset_t all; | 
| Jonas Aaberg | 7c34d7c | 2011-08-17 13:20:21 +0200 | [diff] [blame] | 24 | 	static char *pss[] = {"ab8500_ac", "ab8500_usb"}; | 
 | 25 | 	int i; | 
| Jonas Aaberg | 0903940 | 2011-08-17 15:58:52 +0200 | [diff] [blame] | 26 | 	bool charger_present = false; | 
 | 27 | 	union power_supply_propval val; | 
 | 28 | 	struct power_supply *psy; | 
 | 29 | 	int ret; | 
| Jonas Aaberg | 7c34d7c | 2011-08-17 13:20:21 +0200 | [diff] [blame] | 30 |  | 
 | 31 | 	/* | 
 | 32 | 	 * If we have a charger connected and we're powering off, | 
 | 33 | 	 * reboot into charge-only mode. | 
 | 34 | 	 */ | 
 | 35 |  | 
 | 36 | 	for (i = 0; i < ARRAY_SIZE(pss); i++) { | 
| Jonas Aaberg | 7c34d7c | 2011-08-17 13:20:21 +0200 | [diff] [blame] | 37 | 		psy = power_supply_get_by_name(pss[i]); | 
 | 38 | 		if (!psy) | 
 | 39 | 			continue; | 
| Jonas Aaberg | 0903940 | 2011-08-17 15:58:52 +0200 | [diff] [blame] | 40 |  | 
| Jonas Aaberg | 7c34d7c | 2011-08-17 13:20:21 +0200 | [diff] [blame] | 41 | 		ret = psy->get_property(psy, POWER_SUPPLY_PROP_ONLINE, &val); | 
 | 42 |  | 
 | 43 | 		if (!ret && val.intval) { | 
| Jonas Aaberg | 0903940 | 2011-08-17 15:58:52 +0200 | [diff] [blame] | 44 | 			charger_present = true; | 
 | 45 | 			break; | 
 | 46 | 		} | 
 | 47 | 	} | 
 | 48 |  | 
 | 49 | 	if (!charger_present) | 
 | 50 | 		goto shutdown; | 
 | 51 |  | 
 | 52 | 	/* Check if battery is known */ | 
 | 53 | 	psy = power_supply_get_by_name("ab8500_btemp"); | 
 | 54 | 	if (psy) { | 
 | 55 | 		ret = psy->get_property(psy, POWER_SUPPLY_PROP_TECHNOLOGY, | 
 | 56 | 					&val); | 
 | 57 | 		if (!ret && val.intval != POWER_SUPPLY_TECHNOLOGY_UNKNOWN) { | 
| Jonas Aaberg | 7c34d7c | 2011-08-17 13:20:21 +0200 | [diff] [blame] | 58 | 			printk(KERN_INFO | 
| Jonas Aaberg | 0903940 | 2011-08-17 15:58:52 +0200 | [diff] [blame] | 59 | 			       "Charger \"%s\" is connected with known battery." | 
 | 60 | 			       " Rebooting.\n", | 
| Jonas Aaberg | 7c34d7c | 2011-08-17 13:20:21 +0200 | [diff] [blame] | 61 | 			       pss[i]); | 
| Jonas Aaberg | 5a4bac6 | 2011-08-18 10:14:38 +0200 | [diff] [blame] | 62 | 			machine_restart("charging"); | 
| Jonas Aaberg | 7c34d7c | 2011-08-17 13:20:21 +0200 | [diff] [blame] | 63 | 		} | 
 | 64 | 	} | 
| Lee Jones | 379749c | 2013-01-14 13:26:15 +0000 | [diff] [blame] | 65 |  | 
| Jonas Aaberg | 0903940 | 2011-08-17 15:58:52 +0200 | [diff] [blame] | 66 | shutdown: | 
| Lee Jones | 379749c | 2013-01-14 13:26:15 +0000 | [diff] [blame] | 67 | 	sigfillset(&all); | 
 | 68 |  | 
 | 69 | 	if (!sigprocmask(SIG_BLOCK, &all, &old)) { | 
 | 70 | 		(void)ab8500_sysctrl_set(AB8500_STW4500CTRL1, | 
 | 71 | 					 AB8500_STW4500CTRL1_SWOFF | | 
 | 72 | 					 AB8500_STW4500CTRL1_SWRESET4500N); | 
 | 73 | 		(void)sigprocmask(SIG_SETMASK, &old, NULL); | 
 | 74 | 	} | 
 | 75 | } | 
 | 76 |  | 
| Mattias Nilsson | 90550d1 | 2011-02-14 11:17:12 +0100 | [diff] [blame] | 77 | static inline bool valid_bank(u8 bank) | 
 | 78 | { | 
 | 79 | 	return ((bank == AB8500_SYS_CTRL1_BLOCK) || | 
 | 80 | 		(bank == AB8500_SYS_CTRL2_BLOCK)); | 
 | 81 | } | 
 | 82 |  | 
 | 83 | int ab8500_sysctrl_read(u16 reg, u8 *value) | 
 | 84 | { | 
 | 85 | 	u8 bank; | 
 | 86 |  | 
 | 87 | 	if (sysctrl_dev == NULL) | 
 | 88 | 		return -EAGAIN; | 
 | 89 |  | 
 | 90 | 	bank = (reg >> 8); | 
 | 91 | 	if (!valid_bank(bank)) | 
 | 92 | 		return -EINVAL; | 
 | 93 |  | 
 | 94 | 	return abx500_get_register_interruptible(sysctrl_dev, bank, | 
 | 95 | 		(u8)(reg & 0xFF), value); | 
 | 96 | } | 
| Jonas Aaberg | c73db9f | 2011-11-11 07:52:10 +0100 | [diff] [blame] | 97 | EXPORT_SYMBOL(ab8500_sysctrl_read); | 
| Mattias Nilsson | 90550d1 | 2011-02-14 11:17:12 +0100 | [diff] [blame] | 98 |  | 
 | 99 | int ab8500_sysctrl_write(u16 reg, u8 mask, u8 value) | 
 | 100 | { | 
 | 101 | 	u8 bank; | 
 | 102 |  | 
 | 103 | 	if (sysctrl_dev == NULL) | 
 | 104 | 		return -EAGAIN; | 
 | 105 |  | 
 | 106 | 	bank = (reg >> 8); | 
 | 107 | 	if (!valid_bank(bank)) | 
 | 108 | 		return -EINVAL; | 
 | 109 |  | 
 | 110 | 	return abx500_mask_and_set_register_interruptible(sysctrl_dev, bank, | 
 | 111 | 		(u8)(reg & 0xFF), mask, value); | 
 | 112 | } | 
| Jonas Aaberg | c73db9f | 2011-11-11 07:52:10 +0100 | [diff] [blame] | 113 | EXPORT_SYMBOL(ab8500_sysctrl_write); | 
| Mattias Nilsson | 90550d1 | 2011-02-14 11:17:12 +0100 | [diff] [blame] | 114 |  | 
| Bill Pemberton | f791be4 | 2012-11-19 13:23:04 -0500 | [diff] [blame] | 115 | static int ab8500_sysctrl_probe(struct platform_device *pdev) | 
| Mattias Nilsson | 90550d1 | 2011-02-14 11:17:12 +0100 | [diff] [blame] | 116 | { | 
| Lee Jones | 379749c | 2013-01-14 13:26:15 +0000 | [diff] [blame] | 117 | 	struct ab8500_platform_data *plat; | 
| Kennet Wallden | 1abf063 | 2011-09-27 09:23:56 +0200 | [diff] [blame] | 118 | 	struct ab8500_sysctrl_platform_data *pdata; | 
| Lee Jones | 379749c | 2013-01-14 13:26:15 +0000 | [diff] [blame] | 119 |  | 
| Mattias Nilsson | 90550d1 | 2011-02-14 11:17:12 +0100 | [diff] [blame] | 120 | 	sysctrl_dev = &pdev->dev; | 
| Lee Jones | 379749c | 2013-01-14 13:26:15 +0000 | [diff] [blame] | 121 | 	plat = dev_get_platdata(pdev->dev.parent); | 
 | 122 | 	if (plat->pm_power_off) | 
 | 123 | 		pm_power_off = ab8500_power_off; | 
| Kennet Wallden | 1abf063 | 2011-09-27 09:23:56 +0200 | [diff] [blame] | 124 |  | 
 | 125 | 	pdata = plat->sysctrl; | 
 | 126 |  | 
 | 127 | 	if (pdata) { | 
 | 128 | 		int ret, i, j; | 
 | 129 |  | 
 | 130 | 		for (i = AB8500_SYSCLKREQ1RFCLKBUF; | 
 | 131 | 		     i <= AB8500_SYSCLKREQ8RFCLKBUF; i++) { | 
 | 132 | 			j = i - AB8500_SYSCLKREQ1RFCLKBUF; | 
 | 133 | 			ret = ab8500_sysctrl_write(i, 0xff, | 
 | 134 | 						   pdata->initial_req_buf_config[j]); | 
 | 135 | 			dev_dbg(&pdev->dev, | 
 | 136 | 				"Setting SysClkReq%dRfClkBuf 0x%X\n", | 
 | 137 | 				j + 1, | 
 | 138 | 				pdata->initial_req_buf_config[j]); | 
 | 139 | 			if (ret < 0) { | 
 | 140 | 				dev_err(&pdev->dev, | 
 | 141 | 					"unable to set sysClkReq%dRfClkBuf: " | 
 | 142 | 					"%d\n", j + 1, ret); | 
 | 143 | 			} | 
 | 144 | 		} | 
 | 145 | 	} | 
 | 146 |  | 
| Mattias Nilsson | 90550d1 | 2011-02-14 11:17:12 +0100 | [diff] [blame] | 147 | 	return 0; | 
 | 148 | } | 
 | 149 |  | 
| Bill Pemberton | 4740f73 | 2012-11-19 13:26:01 -0500 | [diff] [blame] | 150 | static int ab8500_sysctrl_remove(struct platform_device *pdev) | 
| Mattias Nilsson | 90550d1 | 2011-02-14 11:17:12 +0100 | [diff] [blame] | 151 | { | 
 | 152 | 	sysctrl_dev = NULL; | 
 | 153 | 	return 0; | 
 | 154 | } | 
 | 155 |  | 
 | 156 | static struct platform_driver ab8500_sysctrl_driver = { | 
 | 157 | 	.driver = { | 
 | 158 | 		.name = "ab8500-sysctrl", | 
 | 159 | 		.owner = THIS_MODULE, | 
| Mattias Nilsson | 90550d1 | 2011-02-14 11:17:12 +0100 | [diff] [blame] | 160 | 	}, | 
 | 161 | 	.probe = ab8500_sysctrl_probe, | 
| Bill Pemberton | 8444921 | 2012-11-19 13:20:24 -0500 | [diff] [blame] | 162 | 	.remove = ab8500_sysctrl_remove, | 
| Mattias Nilsson | 90550d1 | 2011-02-14 11:17:12 +0100 | [diff] [blame] | 163 | }; | 
 | 164 |  | 
 | 165 | static int __init ab8500_sysctrl_init(void) | 
 | 166 | { | 
 | 167 | 	return platform_driver_register(&ab8500_sysctrl_driver); | 
 | 168 | } | 
 | 169 | subsys_initcall(ab8500_sysctrl_init); | 
 | 170 |  | 
 | 171 | MODULE_AUTHOR("Mattias Nilsson <mattias.i.nilsson@stericsson.com"); | 
 | 172 | MODULE_DESCRIPTION("AB8500 system control driver"); | 
 | 173 | MODULE_LICENSE("GPL v2"); |