Graeme Gregory | 27c6750 | 2011-05-02 16:19:46 -0500 | [diff] [blame] | 1 | /* |
| 2 | * tps65910.c -- TI TPS6591x |
| 3 | * |
| 4 | * Copyright 2010 Texas Instruments Inc. |
| 5 | * |
| 6 | * Author: Graeme Gregory <gg@slimlogic.co.uk> |
| 7 | * Author: Jorge Eduardo Candelaria <jedu@slimlogic.co.uk> |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify it |
| 10 | * under the terms of the GNU General Public License as published by the |
| 11 | * Free Software Foundation; either version 2 of the License, or (at your |
| 12 | * option) any later version. |
| 13 | * |
| 14 | */ |
| 15 | |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/moduleparam.h> |
| 18 | #include <linux/init.h> |
Laxman Dewangan | dc9913a | 2012-02-21 18:21:34 +0530 | [diff] [blame] | 19 | #include <linux/err.h> |
Graeme Gregory | 27c6750 | 2011-05-02 16:19:46 -0500 | [diff] [blame] | 20 | #include <linux/slab.h> |
| 21 | #include <linux/i2c.h> |
| 22 | #include <linux/gpio.h> |
| 23 | #include <linux/mfd/core.h> |
Laxman Dewangan | dc9913a | 2012-02-21 18:21:34 +0530 | [diff] [blame] | 24 | #include <linux/regmap.h> |
Graeme Gregory | 27c6750 | 2011-05-02 16:19:46 -0500 | [diff] [blame] | 25 | #include <linux/mfd/tps65910.h> |
| 26 | |
| 27 | static struct mfd_cell tps65910s[] = { |
| 28 | { |
| 29 | .name = "tps65910-pmic", |
| 30 | }, |
| 31 | { |
| 32 | .name = "tps65910-rtc", |
| 33 | }, |
| 34 | { |
| 35 | .name = "tps65910-power", |
| 36 | }, |
| 37 | }; |
| 38 | |
| 39 | |
Laxman Dewangan | dc9913a | 2012-02-21 18:21:34 +0530 | [diff] [blame] | 40 | static bool is_volatile_reg(struct device *dev, unsigned int reg) |
| 41 | { |
| 42 | struct tps65910 *tps65910 = dev_get_drvdata(dev); |
| 43 | |
| 44 | /* |
| 45 | * Caching all regulator registers. |
| 46 | * All regualator register address range is same for |
| 47 | * TPS65910 and TPS65911 |
| 48 | */ |
| 49 | if ((reg >= TPS65910_VIO) && (reg <= TPS65910_VDAC)) { |
| 50 | /* Check for non-existing register */ |
| 51 | if (tps65910_chip_id(tps65910) == TPS65910) |
| 52 | if ((reg == TPS65911_VDDCTRL_OP) || |
| 53 | (reg == TPS65911_VDDCTRL_SR)) |
| 54 | return true; |
| 55 | return false; |
| 56 | } |
| 57 | return true; |
| 58 | } |
| 59 | |
Laxman Dewangan | 39ecb03 | 2012-03-07 18:46:05 +0530 | [diff] [blame] | 60 | static const struct regmap_config tps65910_regmap_config = { |
Laxman Dewangan | dc9913a | 2012-02-21 18:21:34 +0530 | [diff] [blame] | 61 | .reg_bits = 8, |
| 62 | .val_bits = 8, |
| 63 | .volatile_reg = is_volatile_reg, |
| 64 | .max_register = TPS65910_MAX_REGISTER, |
| 65 | .num_reg_defaults_raw = TPS65910_MAX_REGISTER, |
| 66 | .cache_type = REGCACHE_RBTREE, |
| 67 | }; |
| 68 | |
Mark Brown | 63745d4 | 2012-05-07 10:03:19 +0100 | [diff] [blame] | 69 | static int __devinit tps65910_sleepinit(struct tps65910 *tps65910, |
Laxman Dewangan | 201cf05 | 2012-04-18 12:13:51 +0200 | [diff] [blame] | 70 | struct tps65910_board *pmic_pdata) |
| 71 | { |
| 72 | struct device *dev = NULL; |
| 73 | int ret = 0; |
| 74 | |
| 75 | dev = tps65910->dev; |
| 76 | |
| 77 | if (!pmic_pdata->en_dev_slp) |
| 78 | return 0; |
| 79 | |
| 80 | /* enabling SLEEP device state */ |
Rhyland Klein | 3f7e827 | 2012-05-08 11:42:38 -0700 | [diff] [blame^] | 81 | ret = tps65910_reg_set_bits(tps65910, TPS65910_DEVCTRL, |
Laxman Dewangan | 201cf05 | 2012-04-18 12:13:51 +0200 | [diff] [blame] | 82 | DEVCTRL_DEV_SLP_MASK); |
| 83 | if (ret < 0) { |
| 84 | dev_err(dev, "set dev_slp failed: %d\n", ret); |
| 85 | goto err_sleep_init; |
| 86 | } |
| 87 | |
| 88 | /* Return if there is no sleep keepon data. */ |
| 89 | if (!pmic_pdata->slp_keepon) |
| 90 | return 0; |
| 91 | |
| 92 | if (pmic_pdata->slp_keepon->therm_keepon) { |
Rhyland Klein | 3f7e827 | 2012-05-08 11:42:38 -0700 | [diff] [blame^] | 93 | ret = tps65910_reg_set_bits(tps65910, |
| 94 | TPS65910_SLEEP_KEEP_RES_ON, |
Laxman Dewangan | 201cf05 | 2012-04-18 12:13:51 +0200 | [diff] [blame] | 95 | SLEEP_KEEP_RES_ON_THERM_KEEPON_MASK); |
| 96 | if (ret < 0) { |
| 97 | dev_err(dev, "set therm_keepon failed: %d\n", ret); |
| 98 | goto disable_dev_slp; |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | if (pmic_pdata->slp_keepon->clkout32k_keepon) { |
Rhyland Klein | 3f7e827 | 2012-05-08 11:42:38 -0700 | [diff] [blame^] | 103 | ret = tps65910_reg_set_bits(tps65910, |
| 104 | TPS65910_SLEEP_KEEP_RES_ON, |
Laxman Dewangan | 201cf05 | 2012-04-18 12:13:51 +0200 | [diff] [blame] | 105 | SLEEP_KEEP_RES_ON_CLKOUT32K_KEEPON_MASK); |
| 106 | if (ret < 0) { |
| 107 | dev_err(dev, "set clkout32k_keepon failed: %d\n", ret); |
| 108 | goto disable_dev_slp; |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | if (pmic_pdata->slp_keepon->i2chs_keepon) { |
Rhyland Klein | 3f7e827 | 2012-05-08 11:42:38 -0700 | [diff] [blame^] | 113 | ret = tps65910_reg_set_bits(tps65910, |
| 114 | TPS65910_SLEEP_KEEP_RES_ON, |
Laxman Dewangan | 201cf05 | 2012-04-18 12:13:51 +0200 | [diff] [blame] | 115 | SLEEP_KEEP_RES_ON_I2CHS_KEEPON_MASK); |
| 116 | if (ret < 0) { |
| 117 | dev_err(dev, "set i2chs_keepon failed: %d\n", ret); |
| 118 | goto disable_dev_slp; |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | return 0; |
| 123 | |
| 124 | disable_dev_slp: |
Rhyland Klein | 3f7e827 | 2012-05-08 11:42:38 -0700 | [diff] [blame^] | 125 | tps65910_reg_clear_bits(tps65910, TPS65910_DEVCTRL, |
| 126 | DEVCTRL_DEV_SLP_MASK); |
Laxman Dewangan | 201cf05 | 2012-04-18 12:13:51 +0200 | [diff] [blame] | 127 | |
| 128 | err_sleep_init: |
| 129 | return ret; |
| 130 | } |
| 131 | |
| 132 | |
Mark Brown | 63745d4 | 2012-05-07 10:03:19 +0100 | [diff] [blame] | 133 | static __devinit int tps65910_i2c_probe(struct i2c_client *i2c, |
| 134 | const struct i2c_device_id *id) |
Graeme Gregory | 27c6750 | 2011-05-02 16:19:46 -0500 | [diff] [blame] | 135 | { |
| 136 | struct tps65910 *tps65910; |
Graeme Gregory | 2537df7 | 2011-05-02 16:19:52 -0500 | [diff] [blame] | 137 | struct tps65910_board *pmic_plat_data; |
Graeme Gregory | e3471bd | 2011-05-02 16:20:04 -0500 | [diff] [blame] | 138 | struct tps65910_platform_data *init_data; |
Graeme Gregory | 27c6750 | 2011-05-02 16:19:46 -0500 | [diff] [blame] | 139 | int ret = 0; |
| 140 | |
Graeme Gregory | 2537df7 | 2011-05-02 16:19:52 -0500 | [diff] [blame] | 141 | pmic_plat_data = dev_get_platdata(&i2c->dev); |
| 142 | if (!pmic_plat_data) |
| 143 | return -EINVAL; |
| 144 | |
Graeme Gregory | e3471bd | 2011-05-02 16:20:04 -0500 | [diff] [blame] | 145 | init_data = kzalloc(sizeof(struct tps65910_platform_data), GFP_KERNEL); |
| 146 | if (init_data == NULL) |
| 147 | return -ENOMEM; |
| 148 | |
Graeme Gregory | 27c6750 | 2011-05-02 16:19:46 -0500 | [diff] [blame] | 149 | tps65910 = kzalloc(sizeof(struct tps65910), GFP_KERNEL); |
Jesper Juhl | dc7e412 | 2011-07-06 00:29:07 +0200 | [diff] [blame] | 150 | if (tps65910 == NULL) { |
| 151 | kfree(init_data); |
Graeme Gregory | 27c6750 | 2011-05-02 16:19:46 -0500 | [diff] [blame] | 152 | return -ENOMEM; |
Jesper Juhl | dc7e412 | 2011-07-06 00:29:07 +0200 | [diff] [blame] | 153 | } |
Graeme Gregory | 27c6750 | 2011-05-02 16:19:46 -0500 | [diff] [blame] | 154 | |
| 155 | i2c_set_clientdata(i2c, tps65910); |
| 156 | tps65910->dev = &i2c->dev; |
| 157 | tps65910->i2c_client = i2c; |
Jorge Eduardo Candelaria | 7955705 | 2011-05-16 18:34:59 -0500 | [diff] [blame] | 158 | tps65910->id = id->driver_data; |
Graeme Gregory | 27c6750 | 2011-05-02 16:19:46 -0500 | [diff] [blame] | 159 | mutex_init(&tps65910->io_mutex); |
| 160 | |
Laxman Dewangan | 39ecb03 | 2012-03-07 18:46:05 +0530 | [diff] [blame] | 161 | tps65910->regmap = regmap_init_i2c(i2c, &tps65910_regmap_config); |
Laxman Dewangan | dc9913a | 2012-02-21 18:21:34 +0530 | [diff] [blame] | 162 | if (IS_ERR(tps65910->regmap)) { |
| 163 | ret = PTR_ERR(tps65910->regmap); |
| 164 | dev_err(&i2c->dev, "regmap initialization failed: %d\n", ret); |
| 165 | goto regmap_err; |
| 166 | } |
| 167 | |
Graeme Gregory | 27c6750 | 2011-05-02 16:19:46 -0500 | [diff] [blame] | 168 | ret = mfd_add_devices(tps65910->dev, -1, |
| 169 | tps65910s, ARRAY_SIZE(tps65910s), |
| 170 | NULL, 0); |
| 171 | if (ret < 0) |
| 172 | goto err; |
| 173 | |
Jesper Juhl | b1224cd | 2011-07-13 23:22:26 +0200 | [diff] [blame] | 174 | init_data->irq = pmic_plat_data->irq; |
Laxman Dewangan | 1773140 | 2012-01-18 20:19:16 +0530 | [diff] [blame] | 175 | init_data->irq_base = pmic_plat_data->irq_base; |
Jesper Juhl | b1224cd | 2011-07-13 23:22:26 +0200 | [diff] [blame] | 176 | |
Graeme Gregory | 2537df7 | 2011-05-02 16:19:52 -0500 | [diff] [blame] | 177 | tps65910_gpio_init(tps65910, pmic_plat_data->gpio_base); |
| 178 | |
Afzal Mohammed | 1e351a9 | 2011-12-14 16:05:35 +0530 | [diff] [blame] | 179 | tps65910_irq_init(tps65910, init_data->irq, init_data); |
Graeme Gregory | e3471bd | 2011-05-02 16:20:04 -0500 | [diff] [blame] | 180 | |
Laxman Dewangan | 201cf05 | 2012-04-18 12:13:51 +0200 | [diff] [blame] | 181 | tps65910_sleepinit(tps65910, pmic_plat_data); |
| 182 | |
Jesper Juhl | dc7e412 | 2011-07-06 00:29:07 +0200 | [diff] [blame] | 183 | kfree(init_data); |
Graeme Gregory | 27c6750 | 2011-05-02 16:19:46 -0500 | [diff] [blame] | 184 | return ret; |
| 185 | |
| 186 | err: |
Laxman Dewangan | dc9913a | 2012-02-21 18:21:34 +0530 | [diff] [blame] | 187 | regmap_exit(tps65910->regmap); |
| 188 | regmap_err: |
Graeme Gregory | 27c6750 | 2011-05-02 16:19:46 -0500 | [diff] [blame] | 189 | kfree(tps65910); |
Jesper Juhl | dc7e412 | 2011-07-06 00:29:07 +0200 | [diff] [blame] | 190 | kfree(init_data); |
Graeme Gregory | 27c6750 | 2011-05-02 16:19:46 -0500 | [diff] [blame] | 191 | return ret; |
| 192 | } |
| 193 | |
Mark Brown | 63745d4 | 2012-05-07 10:03:19 +0100 | [diff] [blame] | 194 | static __devexit int tps65910_i2c_remove(struct i2c_client *i2c) |
Graeme Gregory | 27c6750 | 2011-05-02 16:19:46 -0500 | [diff] [blame] | 195 | { |
| 196 | struct tps65910 *tps65910 = i2c_get_clientdata(i2c); |
| 197 | |
Mark Brown | ec2328c | 2011-06-20 11:47:55 +0100 | [diff] [blame] | 198 | tps65910_irq_exit(tps65910); |
Afzal Mohammed | 1e351a9 | 2011-12-14 16:05:35 +0530 | [diff] [blame] | 199 | mfd_remove_devices(tps65910->dev); |
Laxman Dewangan | dc9913a | 2012-02-21 18:21:34 +0530 | [diff] [blame] | 200 | regmap_exit(tps65910->regmap); |
Graeme Gregory | 27c6750 | 2011-05-02 16:19:46 -0500 | [diff] [blame] | 201 | kfree(tps65910); |
| 202 | |
| 203 | return 0; |
| 204 | } |
| 205 | |
| 206 | static const struct i2c_device_id tps65910_i2c_id[] = { |
Jorge Eduardo Candelaria | 7955705 | 2011-05-16 18:34:59 -0500 | [diff] [blame] | 207 | { "tps65910", TPS65910 }, |
| 208 | { "tps65911", TPS65911 }, |
Graeme Gregory | 27c6750 | 2011-05-02 16:19:46 -0500 | [diff] [blame] | 209 | { } |
| 210 | }; |
| 211 | MODULE_DEVICE_TABLE(i2c, tps65910_i2c_id); |
| 212 | |
| 213 | |
| 214 | static struct i2c_driver tps65910_i2c_driver = { |
| 215 | .driver = { |
| 216 | .name = "tps65910", |
| 217 | .owner = THIS_MODULE, |
| 218 | }, |
| 219 | .probe = tps65910_i2c_probe, |
Mark Brown | 63745d4 | 2012-05-07 10:03:19 +0100 | [diff] [blame] | 220 | .remove = __devexit_p(tps65910_i2c_remove), |
Graeme Gregory | 27c6750 | 2011-05-02 16:19:46 -0500 | [diff] [blame] | 221 | .id_table = tps65910_i2c_id, |
| 222 | }; |
| 223 | |
| 224 | static int __init tps65910_i2c_init(void) |
| 225 | { |
| 226 | return i2c_add_driver(&tps65910_i2c_driver); |
| 227 | } |
| 228 | /* init early so consumer devices can complete system boot */ |
| 229 | subsys_initcall(tps65910_i2c_init); |
| 230 | |
| 231 | static void __exit tps65910_i2c_exit(void) |
| 232 | { |
| 233 | i2c_del_driver(&tps65910_i2c_driver); |
| 234 | } |
| 235 | module_exit(tps65910_i2c_exit); |
| 236 | |
| 237 | MODULE_AUTHOR("Graeme Gregory <gg@slimlogic.co.uk>"); |
| 238 | MODULE_AUTHOR("Jorge Eduardo Candelaria <jedu@slimlogic.co.uk>"); |
| 239 | MODULE_DESCRIPTION("TPS6591x chip family multi-function driver"); |
| 240 | MODULE_LICENSE("GPL"); |