Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Register cache access API |
| 3 | * |
| 4 | * Copyright 2011 Wolfson Microelectronics plc |
| 5 | * |
| 6 | * Author: Dimitris Papastamos <dp@opensource.wolfsonmicro.com> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/slab.h> |
Paul Gortmaker | 1b6bc32 | 2011-05-27 07:12:15 -0400 | [diff] [blame] | 14 | #include <linux/export.h> |
Paul Gortmaker | 51990e8 | 2012-01-22 11:23:42 -0500 | [diff] [blame] | 15 | #include <linux/device.h> |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 16 | #include <trace/events/regmap.h> |
Mark Brown | f094fea | 2011-10-04 22:05:47 +0100 | [diff] [blame] | 17 | #include <linux/bsearch.h> |
Dimitris Papastamos | c08604b | 2011-10-03 10:50:14 +0100 | [diff] [blame] | 18 | #include <linux/sort.h> |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 19 | |
| 20 | #include "internal.h" |
| 21 | |
| 22 | static const struct regcache_ops *cache_types[] = { |
Dimitris Papastamos | 28644c80 | 2011-09-19 14:34:02 +0100 | [diff] [blame] | 23 | ®cache_rbtree_ops, |
Dimitris Papastamos | 2cbbb57 | 2011-09-19 14:34:03 +0100 | [diff] [blame] | 24 | ®cache_lzo_ops, |
Mark Brown | 2ac902c | 2012-12-19 14:51:55 +0000 | [diff] [blame] | 25 | ®cache_flat_ops, |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 26 | }; |
| 27 | |
| 28 | static int regcache_hw_init(struct regmap *map) |
| 29 | { |
| 30 | int i, j; |
| 31 | int ret; |
| 32 | int count; |
| 33 | unsigned int val; |
| 34 | void *tmp_buf; |
| 35 | |
| 36 | if (!map->num_reg_defaults_raw) |
| 37 | return -EINVAL; |
| 38 | |
| 39 | if (!map->reg_defaults_raw) { |
Laxman Dewangan | df00c79 | 2012-02-17 18:57:26 +0530 | [diff] [blame] | 40 | u32 cache_bypass = map->cache_bypass; |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 41 | dev_warn(map->dev, "No cache defaults, reading back from HW\n"); |
Laxman Dewangan | df00c79 | 2012-02-17 18:57:26 +0530 | [diff] [blame] | 42 | |
| 43 | /* Bypass the cache access till data read from HW*/ |
| 44 | map->cache_bypass = 1; |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 45 | tmp_buf = kmalloc(map->cache_size_raw, GFP_KERNEL); |
| 46 | if (!tmp_buf) |
| 47 | return -EINVAL; |
Mark Brown | eb4cb76 | 2013-02-21 18:39:47 +0000 | [diff] [blame] | 48 | ret = regmap_raw_read(map, 0, tmp_buf, |
| 49 | map->num_reg_defaults_raw); |
Laxman Dewangan | df00c79 | 2012-02-17 18:57:26 +0530 | [diff] [blame] | 50 | map->cache_bypass = cache_bypass; |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 51 | if (ret < 0) { |
| 52 | kfree(tmp_buf); |
| 53 | return ret; |
| 54 | } |
| 55 | map->reg_defaults_raw = tmp_buf; |
| 56 | map->cache_free = 1; |
| 57 | } |
| 58 | |
| 59 | /* calculate the size of reg_defaults */ |
| 60 | for (count = 0, i = 0; i < map->num_reg_defaults_raw; i++) { |
Mark Brown | 879082c | 2013-02-21 18:03:13 +0000 | [diff] [blame] | 61 | val = regcache_get_val(map, map->reg_defaults_raw, i); |
Stephen Warren | f01ee60 | 2012-04-09 13:40:24 -0600 | [diff] [blame] | 62 | if (regmap_volatile(map, i * map->reg_stride)) |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 63 | continue; |
| 64 | count++; |
| 65 | } |
| 66 | |
| 67 | map->reg_defaults = kmalloc(count * sizeof(struct reg_default), |
| 68 | GFP_KERNEL); |
Lars-Peter Clausen | 021cd61 | 2011-11-14 10:40:16 +0100 | [diff] [blame] | 69 | if (!map->reg_defaults) { |
| 70 | ret = -ENOMEM; |
| 71 | goto err_free; |
| 72 | } |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 73 | |
| 74 | /* fill the reg_defaults */ |
| 75 | map->num_reg_defaults = count; |
| 76 | for (i = 0, j = 0; i < map->num_reg_defaults_raw; i++) { |
Mark Brown | 879082c | 2013-02-21 18:03:13 +0000 | [diff] [blame] | 77 | val = regcache_get_val(map, map->reg_defaults_raw, i); |
Stephen Warren | f01ee60 | 2012-04-09 13:40:24 -0600 | [diff] [blame] | 78 | if (regmap_volatile(map, i * map->reg_stride)) |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 79 | continue; |
Stephen Warren | f01ee60 | 2012-04-09 13:40:24 -0600 | [diff] [blame] | 80 | map->reg_defaults[j].reg = i * map->reg_stride; |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 81 | map->reg_defaults[j].def = val; |
| 82 | j++; |
| 83 | } |
| 84 | |
| 85 | return 0; |
Lars-Peter Clausen | 021cd61 | 2011-11-14 10:40:16 +0100 | [diff] [blame] | 86 | |
| 87 | err_free: |
| 88 | if (map->cache_free) |
| 89 | kfree(map->reg_defaults_raw); |
| 90 | |
| 91 | return ret; |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 92 | } |
| 93 | |
Lars-Peter Clausen | e5e3b8a | 2011-11-16 16:28:16 +0100 | [diff] [blame] | 94 | int regcache_init(struct regmap *map, const struct regmap_config *config) |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 95 | { |
| 96 | int ret; |
| 97 | int i; |
| 98 | void *tmp_buf; |
| 99 | |
Stephen Warren | f01ee60 | 2012-04-09 13:40:24 -0600 | [diff] [blame] | 100 | for (i = 0; i < config->num_reg_defaults; i++) |
| 101 | if (config->reg_defaults[i].reg % map->reg_stride) |
| 102 | return -EINVAL; |
| 103 | |
Mark Brown | e7a6db3 | 2011-09-19 16:08:03 +0100 | [diff] [blame] | 104 | if (map->cache_type == REGCACHE_NONE) { |
| 105 | map->cache_bypass = true; |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 106 | return 0; |
Mark Brown | e7a6db3 | 2011-09-19 16:08:03 +0100 | [diff] [blame] | 107 | } |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 108 | |
| 109 | for (i = 0; i < ARRAY_SIZE(cache_types); i++) |
| 110 | if (cache_types[i]->type == map->cache_type) |
| 111 | break; |
| 112 | |
| 113 | if (i == ARRAY_SIZE(cache_types)) { |
| 114 | dev_err(map->dev, "Could not match compress type: %d\n", |
| 115 | map->cache_type); |
| 116 | return -EINVAL; |
| 117 | } |
| 118 | |
Lars-Peter Clausen | e5e3b8a | 2011-11-16 16:28:16 +0100 | [diff] [blame] | 119 | map->num_reg_defaults = config->num_reg_defaults; |
| 120 | map->num_reg_defaults_raw = config->num_reg_defaults_raw; |
| 121 | map->reg_defaults_raw = config->reg_defaults_raw; |
Lars-Peter Clausen | 064d4db | 2011-11-16 20:34:03 +0100 | [diff] [blame] | 122 | map->cache_word_size = DIV_ROUND_UP(config->val_bits, 8); |
| 123 | map->cache_size_raw = map->cache_word_size * config->num_reg_defaults_raw; |
Mark Brown | 78493f2 | 2013-03-29 19:18:59 +0000 | [diff] [blame] | 124 | map->cache_present = NULL; |
| 125 | map->cache_present_nbits = 0; |
Lars-Peter Clausen | e5e3b8a | 2011-11-16 16:28:16 +0100 | [diff] [blame] | 126 | |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 127 | map->cache = NULL; |
| 128 | map->cache_ops = cache_types[i]; |
| 129 | |
| 130 | if (!map->cache_ops->read || |
| 131 | !map->cache_ops->write || |
| 132 | !map->cache_ops->name) |
| 133 | return -EINVAL; |
| 134 | |
| 135 | /* We still need to ensure that the reg_defaults |
| 136 | * won't vanish from under us. We'll need to make |
| 137 | * a copy of it. |
| 138 | */ |
Lars-Peter Clausen | 720e461 | 2011-11-16 16:28:17 +0100 | [diff] [blame] | 139 | if (config->reg_defaults) { |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 140 | if (!map->num_reg_defaults) |
| 141 | return -EINVAL; |
Lars-Peter Clausen | 720e461 | 2011-11-16 16:28:17 +0100 | [diff] [blame] | 142 | tmp_buf = kmemdup(config->reg_defaults, map->num_reg_defaults * |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 143 | sizeof(struct reg_default), GFP_KERNEL); |
| 144 | if (!tmp_buf) |
| 145 | return -ENOMEM; |
| 146 | map->reg_defaults = tmp_buf; |
Mark Brown | 8528bdd | 2011-10-09 13:13:58 +0100 | [diff] [blame] | 147 | } else if (map->num_reg_defaults_raw) { |
Mark Brown | 5fcd256 | 2011-09-29 15:24:54 +0100 | [diff] [blame] | 148 | /* Some devices such as PMICs don't have cache defaults, |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 149 | * we cope with this by reading back the HW registers and |
| 150 | * crafting the cache defaults by hand. |
| 151 | */ |
| 152 | ret = regcache_hw_init(map); |
| 153 | if (ret < 0) |
| 154 | return ret; |
| 155 | } |
| 156 | |
| 157 | if (!map->max_register) |
| 158 | map->max_register = map->num_reg_defaults_raw; |
| 159 | |
| 160 | if (map->cache_ops->init) { |
| 161 | dev_dbg(map->dev, "Initializing %s cache\n", |
| 162 | map->cache_ops->name); |
Lars-Peter Clausen | bd061c7 | 2011-11-14 10:40:17 +0100 | [diff] [blame] | 163 | ret = map->cache_ops->init(map); |
| 164 | if (ret) |
| 165 | goto err_free; |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 166 | } |
| 167 | return 0; |
Lars-Peter Clausen | bd061c7 | 2011-11-14 10:40:17 +0100 | [diff] [blame] | 168 | |
| 169 | err_free: |
| 170 | kfree(map->reg_defaults); |
| 171 | if (map->cache_free) |
| 172 | kfree(map->reg_defaults_raw); |
| 173 | |
| 174 | return ret; |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 175 | } |
| 176 | |
| 177 | void regcache_exit(struct regmap *map) |
| 178 | { |
| 179 | if (map->cache_type == REGCACHE_NONE) |
| 180 | return; |
| 181 | |
| 182 | BUG_ON(!map->cache_ops); |
| 183 | |
Mark Brown | 78493f2 | 2013-03-29 19:18:59 +0000 | [diff] [blame] | 184 | kfree(map->cache_present); |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 185 | kfree(map->reg_defaults); |
| 186 | if (map->cache_free) |
| 187 | kfree(map->reg_defaults_raw); |
| 188 | |
| 189 | if (map->cache_ops->exit) { |
| 190 | dev_dbg(map->dev, "Destroying %s cache\n", |
| 191 | map->cache_ops->name); |
| 192 | map->cache_ops->exit(map); |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * regcache_read: Fetch the value of a given register from the cache. |
| 198 | * |
| 199 | * @map: map to configure. |
| 200 | * @reg: The register index. |
| 201 | * @value: The value to be returned. |
| 202 | * |
| 203 | * Return a negative value on failure, 0 on success. |
| 204 | */ |
| 205 | int regcache_read(struct regmap *map, |
| 206 | unsigned int reg, unsigned int *value) |
| 207 | { |
Mark Brown | bc7ee55 | 2011-11-30 14:27:08 +0000 | [diff] [blame] | 208 | int ret; |
| 209 | |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 210 | if (map->cache_type == REGCACHE_NONE) |
| 211 | return -ENOSYS; |
| 212 | |
| 213 | BUG_ON(!map->cache_ops); |
| 214 | |
Mark Brown | bc7ee55 | 2011-11-30 14:27:08 +0000 | [diff] [blame] | 215 | if (!regmap_volatile(map, reg)) { |
| 216 | ret = map->cache_ops->read(map, reg, value); |
| 217 | |
| 218 | if (ret == 0) |
| 219 | trace_regmap_reg_read_cache(map->dev, reg, *value); |
| 220 | |
| 221 | return ret; |
| 222 | } |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 223 | |
| 224 | return -EINVAL; |
| 225 | } |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 226 | |
| 227 | /** |
| 228 | * regcache_write: Set the value of a given register in the cache. |
| 229 | * |
| 230 | * @map: map to configure. |
| 231 | * @reg: The register index. |
| 232 | * @value: The new register value. |
| 233 | * |
| 234 | * Return a negative value on failure, 0 on success. |
| 235 | */ |
| 236 | int regcache_write(struct regmap *map, |
| 237 | unsigned int reg, unsigned int value) |
| 238 | { |
| 239 | if (map->cache_type == REGCACHE_NONE) |
| 240 | return 0; |
| 241 | |
| 242 | BUG_ON(!map->cache_ops); |
| 243 | |
| 244 | if (!regmap_writeable(map, reg)) |
| 245 | return -EIO; |
| 246 | |
| 247 | if (!regmap_volatile(map, reg)) |
| 248 | return map->cache_ops->write(map, reg, value); |
| 249 | |
| 250 | return 0; |
| 251 | } |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 252 | |
| 253 | /** |
| 254 | * regcache_sync: Sync the register cache with the hardware. |
| 255 | * |
| 256 | * @map: map to configure. |
| 257 | * |
| 258 | * Any registers that should not be synced should be marked as |
| 259 | * volatile. In general drivers can choose not to use the provided |
| 260 | * syncing functionality if they so require. |
| 261 | * |
| 262 | * Return a negative value on failure, 0 on success. |
| 263 | */ |
| 264 | int regcache_sync(struct regmap *map) |
| 265 | { |
Dimitris Papastamos | 954757d | 2011-09-27 11:25:06 +0100 | [diff] [blame] | 266 | int ret = 0; |
Dimitris Papastamos | 954757d | 2011-09-27 11:25:06 +0100 | [diff] [blame] | 267 | unsigned int i; |
Dimitris Papastamos | 5936008 | 2011-09-19 14:34:04 +0100 | [diff] [blame] | 268 | const char *name; |
Dimitris Papastamos | beb1a10 | 2011-09-29 14:36:26 +0100 | [diff] [blame] | 269 | unsigned int bypass; |
Dimitris Papastamos | 5936008 | 2011-09-19 14:34:04 +0100 | [diff] [blame] | 270 | |
Mark Brown | c3ec232 | 2012-02-23 20:48:40 +0000 | [diff] [blame] | 271 | BUG_ON(!map->cache_ops || !map->cache_ops->sync); |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 272 | |
Stephen Warren | bacdbe0 | 2012-04-04 15:48:28 -0600 | [diff] [blame] | 273 | map->lock(map); |
Dimitris Papastamos | beb1a10 | 2011-09-29 14:36:26 +0100 | [diff] [blame] | 274 | /* Remember the initial bypass state */ |
| 275 | bypass = map->cache_bypass; |
Dimitris Papastamos | 954757d | 2011-09-27 11:25:06 +0100 | [diff] [blame] | 276 | dev_dbg(map->dev, "Syncing %s cache\n", |
| 277 | map->cache_ops->name); |
| 278 | name = map->cache_ops->name; |
| 279 | trace_regcache_sync(map->dev, name, "start"); |
Mark Brown | 22f0d90 | 2012-01-21 12:01:14 +0000 | [diff] [blame] | 280 | |
Mark Brown | 8ae0d7e | 2011-10-26 10:34:22 +0200 | [diff] [blame] | 281 | if (!map->cache_dirty) |
| 282 | goto out; |
Mark Brown | d9db762 | 2012-01-25 21:06:33 +0000 | [diff] [blame] | 283 | |
Mark Brown | 22f0d90 | 2012-01-21 12:01:14 +0000 | [diff] [blame] | 284 | /* Apply any patch first */ |
Mark Brown | 8a892d6 | 2012-01-25 21:05:48 +0000 | [diff] [blame] | 285 | map->cache_bypass = 1; |
Mark Brown | 22f0d90 | 2012-01-21 12:01:14 +0000 | [diff] [blame] | 286 | for (i = 0; i < map->patch_regs; i++) { |
Stephen Warren | f01ee60 | 2012-04-09 13:40:24 -0600 | [diff] [blame] | 287 | if (map->patch[i].reg % map->reg_stride) { |
| 288 | ret = -EINVAL; |
| 289 | goto out; |
| 290 | } |
Mark Brown | 22f0d90 | 2012-01-21 12:01:14 +0000 | [diff] [blame] | 291 | ret = _regmap_write(map, map->patch[i].reg, map->patch[i].def); |
| 292 | if (ret != 0) { |
| 293 | dev_err(map->dev, "Failed to write %x = %x: %d\n", |
| 294 | map->patch[i].reg, map->patch[i].def, ret); |
| 295 | goto out; |
| 296 | } |
| 297 | } |
Mark Brown | 8a892d6 | 2012-01-25 21:05:48 +0000 | [diff] [blame] | 298 | map->cache_bypass = 0; |
Mark Brown | 22f0d90 | 2012-01-21 12:01:14 +0000 | [diff] [blame] | 299 | |
Mark Brown | ac8d91c | 2012-02-23 19:31:04 +0000 | [diff] [blame] | 300 | ret = map->cache_ops->sync(map, 0, map->max_register); |
Dimitris Papastamos | 954757d | 2011-09-27 11:25:06 +0100 | [diff] [blame] | 301 | |
Mark Brown | 6ff7373 | 2012-02-23 22:05:59 +0000 | [diff] [blame] | 302 | if (ret == 0) |
| 303 | map->cache_dirty = false; |
| 304 | |
Dimitris Papastamos | 954757d | 2011-09-27 11:25:06 +0100 | [diff] [blame] | 305 | out: |
| 306 | trace_regcache_sync(map->dev, name, "stop"); |
Dimitris Papastamos | beb1a10 | 2011-09-29 14:36:26 +0100 | [diff] [blame] | 307 | /* Restore the bypass state */ |
| 308 | map->cache_bypass = bypass; |
Stephen Warren | bacdbe0 | 2012-04-04 15:48:28 -0600 | [diff] [blame] | 309 | map->unlock(map); |
Dimitris Papastamos | 954757d | 2011-09-27 11:25:06 +0100 | [diff] [blame] | 310 | |
| 311 | return ret; |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 312 | } |
| 313 | EXPORT_SYMBOL_GPL(regcache_sync); |
| 314 | |
Mark Brown | 92afb28 | 2011-09-19 18:22:14 +0100 | [diff] [blame] | 315 | /** |
Mark Brown | 4d4cfd1 | 2012-02-23 20:53:37 +0000 | [diff] [blame] | 316 | * regcache_sync_region: Sync part of the register cache with the hardware. |
| 317 | * |
| 318 | * @map: map to sync. |
| 319 | * @min: first register to sync |
| 320 | * @max: last register to sync |
| 321 | * |
| 322 | * Write all non-default register values in the specified region to |
| 323 | * the hardware. |
| 324 | * |
| 325 | * Return a negative value on failure, 0 on success. |
| 326 | */ |
| 327 | int regcache_sync_region(struct regmap *map, unsigned int min, |
| 328 | unsigned int max) |
| 329 | { |
| 330 | int ret = 0; |
| 331 | const char *name; |
| 332 | unsigned int bypass; |
| 333 | |
| 334 | BUG_ON(!map->cache_ops || !map->cache_ops->sync); |
| 335 | |
Stephen Warren | bacdbe0 | 2012-04-04 15:48:28 -0600 | [diff] [blame] | 336 | map->lock(map); |
Mark Brown | 4d4cfd1 | 2012-02-23 20:53:37 +0000 | [diff] [blame] | 337 | |
| 338 | /* Remember the initial bypass state */ |
| 339 | bypass = map->cache_bypass; |
| 340 | |
| 341 | name = map->cache_ops->name; |
| 342 | dev_dbg(map->dev, "Syncing %s cache from %d-%d\n", name, min, max); |
| 343 | |
| 344 | trace_regcache_sync(map->dev, name, "start region"); |
| 345 | |
| 346 | if (!map->cache_dirty) |
| 347 | goto out; |
| 348 | |
| 349 | ret = map->cache_ops->sync(map, min, max); |
| 350 | |
| 351 | out: |
| 352 | trace_regcache_sync(map->dev, name, "stop region"); |
| 353 | /* Restore the bypass state */ |
| 354 | map->cache_bypass = bypass; |
Stephen Warren | bacdbe0 | 2012-04-04 15:48:28 -0600 | [diff] [blame] | 355 | map->unlock(map); |
Mark Brown | 4d4cfd1 | 2012-02-23 20:53:37 +0000 | [diff] [blame] | 356 | |
| 357 | return ret; |
| 358 | } |
Mark Brown | e466de0 | 2012-04-03 13:08:53 +0100 | [diff] [blame] | 359 | EXPORT_SYMBOL_GPL(regcache_sync_region); |
Mark Brown | 4d4cfd1 | 2012-02-23 20:53:37 +0000 | [diff] [blame] | 360 | |
| 361 | /** |
Mark Brown | 92afb28 | 2011-09-19 18:22:14 +0100 | [diff] [blame] | 362 | * regcache_cache_only: Put a register map into cache only mode |
| 363 | * |
| 364 | * @map: map to configure |
| 365 | * @cache_only: flag if changes should be written to the hardware |
| 366 | * |
| 367 | * When a register map is marked as cache only writes to the register |
| 368 | * map API will only update the register cache, they will not cause |
| 369 | * any hardware changes. This is useful for allowing portions of |
| 370 | * drivers to act as though the device were functioning as normal when |
| 371 | * it is disabled for power saving reasons. |
| 372 | */ |
| 373 | void regcache_cache_only(struct regmap *map, bool enable) |
| 374 | { |
Stephen Warren | bacdbe0 | 2012-04-04 15:48:28 -0600 | [diff] [blame] | 375 | map->lock(map); |
Dimitris Papastamos | ac77a76 | 2011-09-29 14:36:28 +0100 | [diff] [blame] | 376 | WARN_ON(map->cache_bypass && enable); |
Mark Brown | 92afb28 | 2011-09-19 18:22:14 +0100 | [diff] [blame] | 377 | map->cache_only = enable; |
Mark Brown | 5d5b7d4 | 2012-02-23 22:02:57 +0000 | [diff] [blame] | 378 | trace_regmap_cache_only(map->dev, enable); |
Stephen Warren | bacdbe0 | 2012-04-04 15:48:28 -0600 | [diff] [blame] | 379 | map->unlock(map); |
Mark Brown | 92afb28 | 2011-09-19 18:22:14 +0100 | [diff] [blame] | 380 | } |
| 381 | EXPORT_SYMBOL_GPL(regcache_cache_only); |
| 382 | |
Dimitris Papastamos | 6eb0f5e | 2011-09-29 14:36:27 +0100 | [diff] [blame] | 383 | /** |
Mark Brown | 8ae0d7e | 2011-10-26 10:34:22 +0200 | [diff] [blame] | 384 | * regcache_mark_dirty: Mark the register cache as dirty |
| 385 | * |
| 386 | * @map: map to mark |
| 387 | * |
| 388 | * Mark the register cache as dirty, for example due to the device |
| 389 | * having been powered down for suspend. If the cache is not marked |
| 390 | * as dirty then the cache sync will be suppressed. |
| 391 | */ |
| 392 | void regcache_mark_dirty(struct regmap *map) |
| 393 | { |
Stephen Warren | bacdbe0 | 2012-04-04 15:48:28 -0600 | [diff] [blame] | 394 | map->lock(map); |
Mark Brown | 8ae0d7e | 2011-10-26 10:34:22 +0200 | [diff] [blame] | 395 | map->cache_dirty = true; |
Stephen Warren | bacdbe0 | 2012-04-04 15:48:28 -0600 | [diff] [blame] | 396 | map->unlock(map); |
Mark Brown | 8ae0d7e | 2011-10-26 10:34:22 +0200 | [diff] [blame] | 397 | } |
| 398 | EXPORT_SYMBOL_GPL(regcache_mark_dirty); |
| 399 | |
| 400 | /** |
Dimitris Papastamos | 6eb0f5e | 2011-09-29 14:36:27 +0100 | [diff] [blame] | 401 | * regcache_cache_bypass: Put a register map into cache bypass mode |
| 402 | * |
| 403 | * @map: map to configure |
Dimitris Papastamos | 0eef6b0 | 2011-10-03 06:54:16 +0100 | [diff] [blame] | 404 | * @cache_bypass: flag if changes should not be written to the hardware |
Dimitris Papastamos | 6eb0f5e | 2011-09-29 14:36:27 +0100 | [diff] [blame] | 405 | * |
| 406 | * When a register map is marked with the cache bypass option, writes |
| 407 | * to the register map API will only update the hardware and not the |
| 408 | * the cache directly. This is useful when syncing the cache back to |
| 409 | * the hardware. |
| 410 | */ |
| 411 | void regcache_cache_bypass(struct regmap *map, bool enable) |
| 412 | { |
Stephen Warren | bacdbe0 | 2012-04-04 15:48:28 -0600 | [diff] [blame] | 413 | map->lock(map); |
Dimitris Papastamos | ac77a76 | 2011-09-29 14:36:28 +0100 | [diff] [blame] | 414 | WARN_ON(map->cache_only && enable); |
Dimitris Papastamos | 6eb0f5e | 2011-09-29 14:36:27 +0100 | [diff] [blame] | 415 | map->cache_bypass = enable; |
Mark Brown | 5d5b7d4 | 2012-02-23 22:02:57 +0000 | [diff] [blame] | 416 | trace_regmap_cache_bypass(map->dev, enable); |
Stephen Warren | bacdbe0 | 2012-04-04 15:48:28 -0600 | [diff] [blame] | 417 | map->unlock(map); |
Dimitris Papastamos | 6eb0f5e | 2011-09-29 14:36:27 +0100 | [diff] [blame] | 418 | } |
| 419 | EXPORT_SYMBOL_GPL(regcache_cache_bypass); |
| 420 | |
Mark Brown | 78493f2 | 2013-03-29 19:18:59 +0000 | [diff] [blame] | 421 | int regcache_set_reg_present(struct regmap *map, unsigned int reg) |
| 422 | { |
| 423 | unsigned long *cache_present; |
| 424 | unsigned int cache_present_size; |
| 425 | unsigned int nregs; |
| 426 | int i; |
| 427 | |
| 428 | nregs = reg + 1; |
| 429 | cache_present_size = BITS_TO_LONGS(nregs); |
| 430 | cache_present_size *= sizeof(long); |
| 431 | |
| 432 | if (!map->cache_present) { |
| 433 | cache_present = kmalloc(cache_present_size, GFP_KERNEL); |
| 434 | if (!cache_present) |
| 435 | return -ENOMEM; |
| 436 | bitmap_zero(cache_present, nregs); |
| 437 | map->cache_present = cache_present; |
| 438 | map->cache_present_nbits = nregs; |
| 439 | } |
| 440 | |
| 441 | if (nregs > map->cache_present_nbits) { |
| 442 | cache_present = krealloc(map->cache_present, |
| 443 | cache_present_size, GFP_KERNEL); |
| 444 | if (!cache_present) |
| 445 | return -ENOMEM; |
| 446 | for (i = 0; i < nregs; i++) |
| 447 | if (i >= map->cache_present_nbits) |
| 448 | clear_bit(i, cache_present); |
| 449 | map->cache_present = cache_present; |
| 450 | map->cache_present_nbits = nregs; |
| 451 | } |
| 452 | |
| 453 | set_bit(reg, map->cache_present); |
| 454 | return 0; |
| 455 | } |
| 456 | |
Mark Brown | 879082c | 2013-02-21 18:03:13 +0000 | [diff] [blame] | 457 | bool regcache_set_val(struct regmap *map, void *base, unsigned int idx, |
| 458 | unsigned int val) |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 459 | { |
Mark Brown | 325acab | 2013-02-21 18:07:01 +0000 | [diff] [blame] | 460 | if (regcache_get_val(map, base, idx) == val) |
| 461 | return true; |
| 462 | |
Mark Brown | eb4cb76 | 2013-02-21 18:39:47 +0000 | [diff] [blame] | 463 | /* Use device native format if possible */ |
| 464 | if (map->format.format_val) { |
| 465 | map->format.format_val(base + (map->cache_word_size * idx), |
| 466 | val, 0); |
| 467 | return false; |
| 468 | } |
| 469 | |
Mark Brown | 879082c | 2013-02-21 18:03:13 +0000 | [diff] [blame] | 470 | switch (map->cache_word_size) { |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 471 | case 1: { |
| 472 | u8 *cache = base; |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 473 | cache[idx] = val; |
| 474 | break; |
| 475 | } |
| 476 | case 2: { |
| 477 | u16 *cache = base; |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 478 | cache[idx] = val; |
| 479 | break; |
| 480 | } |
Mark Brown | 7d5e525 | 2012-02-17 15:58:25 -0800 | [diff] [blame] | 481 | case 4: { |
| 482 | u32 *cache = base; |
Mark Brown | 7d5e525 | 2012-02-17 15:58:25 -0800 | [diff] [blame] | 483 | cache[idx] = val; |
| 484 | break; |
| 485 | } |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 486 | default: |
| 487 | BUG(); |
| 488 | } |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 489 | return false; |
| 490 | } |
| 491 | |
Mark Brown | 879082c | 2013-02-21 18:03:13 +0000 | [diff] [blame] | 492 | unsigned int regcache_get_val(struct regmap *map, const void *base, |
| 493 | unsigned int idx) |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 494 | { |
| 495 | if (!base) |
| 496 | return -EINVAL; |
| 497 | |
Mark Brown | eb4cb76 | 2013-02-21 18:39:47 +0000 | [diff] [blame] | 498 | /* Use device native format if possible */ |
| 499 | if (map->format.parse_val) |
Mark Brown | 8817796 | 2013-03-13 19:29:36 +0000 | [diff] [blame] | 500 | return map->format.parse_val(regcache_get_val_addr(map, base, |
| 501 | idx)); |
Mark Brown | eb4cb76 | 2013-02-21 18:39:47 +0000 | [diff] [blame] | 502 | |
Mark Brown | 879082c | 2013-02-21 18:03:13 +0000 | [diff] [blame] | 503 | switch (map->cache_word_size) { |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 504 | case 1: { |
| 505 | const u8 *cache = base; |
| 506 | return cache[idx]; |
| 507 | } |
| 508 | case 2: { |
| 509 | const u16 *cache = base; |
| 510 | return cache[idx]; |
| 511 | } |
Mark Brown | 7d5e525 | 2012-02-17 15:58:25 -0800 | [diff] [blame] | 512 | case 4: { |
| 513 | const u32 *cache = base; |
| 514 | return cache[idx]; |
| 515 | } |
Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 516 | default: |
| 517 | BUG(); |
| 518 | } |
| 519 | /* unreachable */ |
| 520 | return -1; |
| 521 | } |
| 522 | |
Mark Brown | f094fea | 2011-10-04 22:05:47 +0100 | [diff] [blame] | 523 | static int regcache_default_cmp(const void *a, const void *b) |
Dimitris Papastamos | c08604b | 2011-10-03 10:50:14 +0100 | [diff] [blame] | 524 | { |
| 525 | const struct reg_default *_a = a; |
| 526 | const struct reg_default *_b = b; |
| 527 | |
| 528 | return _a->reg - _b->reg; |
| 529 | } |
| 530 | |
Mark Brown | f094fea | 2011-10-04 22:05:47 +0100 | [diff] [blame] | 531 | int regcache_lookup_reg(struct regmap *map, unsigned int reg) |
| 532 | { |
| 533 | struct reg_default key; |
| 534 | struct reg_default *r; |
| 535 | |
| 536 | key.reg = reg; |
| 537 | key.def = 0; |
| 538 | |
| 539 | r = bsearch(&key, map->reg_defaults, map->num_reg_defaults, |
| 540 | sizeof(struct reg_default), regcache_default_cmp); |
| 541 | |
| 542 | if (r) |
| 543 | return r - map->reg_defaults; |
| 544 | else |
Mark Brown | 6e6ace0 | 2011-10-09 13:23:31 +0100 | [diff] [blame] | 545 | return -ENOENT; |
Mark Brown | f094fea | 2011-10-04 22:05:47 +0100 | [diff] [blame] | 546 | } |
Mark Brown | f8bd822 | 2013-03-29 19:32:28 +0000 | [diff] [blame^] | 547 | |
| 548 | int regcache_sync_block(struct regmap *map, void *block, |
| 549 | unsigned int block_base, unsigned int start, |
| 550 | unsigned int end) |
| 551 | { |
| 552 | unsigned int i, regtmp, val; |
| 553 | const void *addr; |
| 554 | int ret; |
| 555 | |
| 556 | for (i = start; i < end; i++) { |
| 557 | regtmp = block_base + (i * map->reg_stride); |
| 558 | |
| 559 | if (!regcache_reg_present(map, regtmp)) |
| 560 | continue; |
| 561 | |
| 562 | val = regcache_get_val(map, block, i); |
| 563 | |
| 564 | /* Is this the hardware default? If so skip. */ |
| 565 | ret = regcache_lookup_reg(map, regtmp); |
| 566 | if (ret >= 0 && val == map->reg_defaults[ret].def) |
| 567 | continue; |
| 568 | |
| 569 | map->cache_bypass = 1; |
| 570 | |
| 571 | if (regmap_can_raw_write(map)) { |
| 572 | addr = regcache_get_val_addr(map, block, i); |
| 573 | ret = _regmap_raw_write(map, regtmp, addr, |
| 574 | map->format.val_bytes, |
| 575 | false); |
| 576 | } else { |
| 577 | ret = _regmap_write(map, regtmp, val); |
| 578 | } |
| 579 | |
| 580 | map->cache_bypass = 0; |
| 581 | if (ret != 0) |
| 582 | return ret; |
| 583 | dev_dbg(map->dev, "Synced register %#x, value %#x\n", |
| 584 | regtmp, val); |
| 585 | } |
| 586 | |
| 587 | return 0; |
| 588 | } |