regcache.c 16.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Register cache access API
 *
 * Copyright 2011 Wolfson Microelectronics plc
 *
 * Author: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/slab.h>
14
#include <linux/export.h>
15
#include <linux/device.h>
16
#include <trace/events/regmap.h>
17
#include <linux/bsearch.h>
18
#include <linux/sort.h>
19 20 21 22

#include "internal.h"

static const struct regcache_ops *cache_types[] = {
23
	&regcache_rbtree_ops,
24
	&regcache_lzo_ops,
M
Mark Brown 已提交
25
	&regcache_flat_ops,
26 27 28 29 30 31 32 33 34 35 36 37 38 39
};

static int regcache_hw_init(struct regmap *map)
{
	int i, j;
	int ret;
	int count;
	unsigned int val;
	void *tmp_buf;

	if (!map->num_reg_defaults_raw)
		return -EINVAL;

	if (!map->reg_defaults_raw) {
40
		u32 cache_bypass = map->cache_bypass;
41
		dev_warn(map->dev, "No cache defaults, reading back from HW\n");
42 43 44

		/* Bypass the cache access till data read from HW*/
		map->cache_bypass = 1;
45 46 47
		tmp_buf = kmalloc(map->cache_size_raw, GFP_KERNEL);
		if (!tmp_buf)
			return -EINVAL;
48 49
		ret = regmap_raw_read(map, 0, tmp_buf,
				      map->num_reg_defaults_raw);
50
		map->cache_bypass = cache_bypass;
51 52 53 54 55 56 57 58 59 60
		if (ret < 0) {
			kfree(tmp_buf);
			return ret;
		}
		map->reg_defaults_raw = tmp_buf;
		map->cache_free = 1;
	}

	/* calculate the size of reg_defaults */
	for (count = 0, i = 0; i < map->num_reg_defaults_raw; i++) {
61
		val = regcache_get_val(map, map->reg_defaults_raw, i);
62
		if (regmap_volatile(map, i * map->reg_stride))
63 64 65 66 67 68
			continue;
		count++;
	}

	map->reg_defaults = kmalloc(count * sizeof(struct reg_default),
				      GFP_KERNEL);
69 70 71 72
	if (!map->reg_defaults) {
		ret = -ENOMEM;
		goto err_free;
	}
73 74 75 76

	/* fill the reg_defaults */
	map->num_reg_defaults = count;
	for (i = 0, j = 0; i < map->num_reg_defaults_raw; i++) {
77
		val = regcache_get_val(map, map->reg_defaults_raw, i);
78
		if (regmap_volatile(map, i * map->reg_stride))
79
			continue;
80
		map->reg_defaults[j].reg = i * map->reg_stride;
81 82 83 84 85
		map->reg_defaults[j].def = val;
		j++;
	}

	return 0;
86 87 88 89 90 91

err_free:
	if (map->cache_free)
		kfree(map->reg_defaults_raw);

	return ret;
92 93
}

94
int regcache_init(struct regmap *map, const struct regmap_config *config)
95 96 97 98 99
{
	int ret;
	int i;
	void *tmp_buf;

100 101 102 103
	for (i = 0; i < config->num_reg_defaults; i++)
		if (config->reg_defaults[i].reg % map->reg_stride)
			return -EINVAL;

104 105
	if (map->cache_type == REGCACHE_NONE) {
		map->cache_bypass = true;
106
		return 0;
107
	}
108 109 110 111 112 113 114 115 116 117 118

	for (i = 0; i < ARRAY_SIZE(cache_types); i++)
		if (cache_types[i]->type == map->cache_type)
			break;

	if (i == ARRAY_SIZE(cache_types)) {
		dev_err(map->dev, "Could not match compress type: %d\n",
			map->cache_type);
		return -EINVAL;
	}

119 120 121
	map->num_reg_defaults = config->num_reg_defaults;
	map->num_reg_defaults_raw = config->num_reg_defaults_raw;
	map->reg_defaults_raw = config->reg_defaults_raw;
122 123
	map->cache_word_size = DIV_ROUND_UP(config->val_bits, 8);
	map->cache_size_raw = map->cache_word_size * config->num_reg_defaults_raw;
124 125
	map->cache_present = NULL;
	map->cache_present_nbits = 0;
126

127 128 129 130 131 132 133 134 135 136 137 138
	map->cache = NULL;
	map->cache_ops = cache_types[i];

	if (!map->cache_ops->read ||
	    !map->cache_ops->write ||
	    !map->cache_ops->name)
		return -EINVAL;

	/* We still need to ensure that the reg_defaults
	 * won't vanish from under us.  We'll need to make
	 * a copy of it.
	 */
139
	if (config->reg_defaults) {
140 141
		if (!map->num_reg_defaults)
			return -EINVAL;
142
		tmp_buf = kmemdup(config->reg_defaults, map->num_reg_defaults *
143 144 145 146
				  sizeof(struct reg_default), GFP_KERNEL);
		if (!tmp_buf)
			return -ENOMEM;
		map->reg_defaults = tmp_buf;
147
	} else if (map->num_reg_defaults_raw) {
M
Mark Brown 已提交
148
		/* Some devices such as PMICs don't have cache defaults,
149 150 151 152 153 154 155 156 157 158 159 160 161 162
		 * we cope with this by reading back the HW registers and
		 * crafting the cache defaults by hand.
		 */
		ret = regcache_hw_init(map);
		if (ret < 0)
			return ret;
	}

	if (!map->max_register)
		map->max_register = map->num_reg_defaults_raw;

	if (map->cache_ops->init) {
		dev_dbg(map->dev, "Initializing %s cache\n",
			map->cache_ops->name);
163 164 165
		ret = map->cache_ops->init(map);
		if (ret)
			goto err_free;
166 167
	}
	return 0;
168 169 170 171 172 173 174

err_free:
	kfree(map->reg_defaults);
	if (map->cache_free)
		kfree(map->reg_defaults_raw);

	return ret;
175 176 177 178 179 180 181 182 183
}

void regcache_exit(struct regmap *map)
{
	if (map->cache_type == REGCACHE_NONE)
		return;

	BUG_ON(!map->cache_ops);

184
	kfree(map->cache_present);
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
	kfree(map->reg_defaults);
	if (map->cache_free)
		kfree(map->reg_defaults_raw);

	if (map->cache_ops->exit) {
		dev_dbg(map->dev, "Destroying %s cache\n",
			map->cache_ops->name);
		map->cache_ops->exit(map);
	}
}

/**
 * regcache_read: Fetch the value of a given register from the cache.
 *
 * @map: map to configure.
 * @reg: The register index.
 * @value: The value to be returned.
 *
 * Return a negative value on failure, 0 on success.
 */
int regcache_read(struct regmap *map,
		  unsigned int reg, unsigned int *value)
{
208 209
	int ret;

210 211 212 213 214
	if (map->cache_type == REGCACHE_NONE)
		return -ENOSYS;

	BUG_ON(!map->cache_ops);

215 216 217 218 219 220 221 222
	if (!regmap_volatile(map, reg)) {
		ret = map->cache_ops->read(map, reg, value);

		if (ret == 0)
			trace_regmap_reg_read_cache(map->dev, reg, *value);

		return ret;
	}
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249

	return -EINVAL;
}

/**
 * regcache_write: Set the value of a given register in the cache.
 *
 * @map: map to configure.
 * @reg: The register index.
 * @value: The new register value.
 *
 * Return a negative value on failure, 0 on success.
 */
int regcache_write(struct regmap *map,
		   unsigned int reg, unsigned int value)
{
	if (map->cache_type == REGCACHE_NONE)
		return 0;

	BUG_ON(!map->cache_ops);

	if (!regmap_volatile(map, reg))
		return map->cache_ops->write(map, reg, value);

	return 0;
}

250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
static int regcache_default_sync(struct regmap *map, unsigned int min,
				 unsigned int max)
{
	unsigned int reg;

	for (reg = min; reg <= max; reg++) {
		unsigned int val;
		int ret;

		if (regmap_volatile(map, reg))
			continue;

		ret = regcache_read(map, reg, &val);
		if (ret)
			return ret;

		/* Is this the hardware default?  If so skip. */
		ret = regcache_lookup_reg(map, reg);
		if (ret >= 0 && val == map->reg_defaults[ret].def)
			continue;

		map->cache_bypass = 1;
		ret = _regmap_write(map, reg, val);
		map->cache_bypass = 0;
		if (ret)
			return ret;
		dev_dbg(map->dev, "Synced register %#x, value %#x\n", reg, val);
	}

	return 0;
}

282 283 284 285 286 287 288 289 290 291 292 293 294
/**
 * regcache_sync: Sync the register cache with the hardware.
 *
 * @map: map to configure.
 *
 * Any registers that should not be synced should be marked as
 * volatile.  In general drivers can choose not to use the provided
 * syncing functionality if they so require.
 *
 * Return a negative value on failure, 0 on success.
 */
int regcache_sync(struct regmap *map)
{
295 296
	int ret = 0;
	unsigned int i;
297
	const char *name;
298
	unsigned int bypass;
299

300
	BUG_ON(!map->cache_ops);
301

302
	map->lock(map->lock_arg);
303 304
	/* Remember the initial bypass state */
	bypass = map->cache_bypass;
305 306 307 308
	dev_dbg(map->dev, "Syncing %s cache\n",
		map->cache_ops->name);
	name = map->cache_ops->name;
	trace_regcache_sync(map->dev, name, "start");
M
Mark Brown 已提交
309

310 311
	if (!map->cache_dirty)
		goto out;
312

M
Mark Brown 已提交
313
	/* Apply any patch first */
314
	map->cache_bypass = 1;
M
Mark Brown 已提交
315
	for (i = 0; i < map->patch_regs; i++) {
316 317 318 319
		if (map->patch[i].reg % map->reg_stride) {
			ret = -EINVAL;
			goto out;
		}
M
Mark Brown 已提交
320 321 322 323 324 325 326
		ret = _regmap_write(map, map->patch[i].reg, map->patch[i].def);
		if (ret != 0) {
			dev_err(map->dev, "Failed to write %x = %x: %d\n",
				map->patch[i].reg, map->patch[i].def, ret);
			goto out;
		}
	}
327
	map->cache_bypass = 0;
M
Mark Brown 已提交
328

329 330 331 332
	if (map->cache_ops->sync)
		ret = map->cache_ops->sync(map, 0, map->max_register);
	else
		ret = regcache_default_sync(map, 0, map->max_register);
333

334 335
	if (ret == 0)
		map->cache_dirty = false;
336 337 338

out:
	trace_regcache_sync(map->dev, name, "stop");
339 340
	/* Restore the bypass state */
	map->cache_bypass = bypass;
341
	map->unlock(map->lock_arg);
342 343

	return ret;
344 345 346
}
EXPORT_SYMBOL_GPL(regcache_sync);

347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
/**
 * regcache_sync_region: Sync part  of the register cache with the hardware.
 *
 * @map: map to sync.
 * @min: first register to sync
 * @max: last register to sync
 *
 * Write all non-default register values in the specified region to
 * the hardware.
 *
 * Return a negative value on failure, 0 on success.
 */
int regcache_sync_region(struct regmap *map, unsigned int min,
			 unsigned int max)
{
	int ret = 0;
	const char *name;
	unsigned int bypass;

366
	BUG_ON(!map->cache_ops);
367

368
	map->lock(map->lock_arg);
369 370 371 372 373 374 375 376 377 378 379 380

	/* Remember the initial bypass state */
	bypass = map->cache_bypass;

	name = map->cache_ops->name;
	dev_dbg(map->dev, "Syncing %s cache from %d-%d\n", name, min, max);

	trace_regcache_sync(map->dev, name, "start region");

	if (!map->cache_dirty)
		goto out;

381 382 383 384
	if (map->cache_ops->sync)
		ret = map->cache_ops->sync(map, min, max);
	else
		ret = regcache_default_sync(map, min, max);
385 386 387 388 389

out:
	trace_regcache_sync(map->dev, name, "stop region");
	/* Restore the bypass state */
	map->cache_bypass = bypass;
390
	map->unlock(map->lock_arg);
391 392 393

	return ret;
}
394
EXPORT_SYMBOL_GPL(regcache_sync_region);
395

396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
/**
 * regcache_drop_region: Discard part of the register cache
 *
 * @map: map to operate on
 * @min: first register to discard
 * @max: last register to discard
 *
 * Discard part of the register cache.
 *
 * Return a negative value on failure, 0 on success.
 */
int regcache_drop_region(struct regmap *map, unsigned int min,
			 unsigned int max)
{
	unsigned int reg;
	int ret = 0;

	if (!map->cache_present && !(map->cache_ops && map->cache_ops->drop))
		return -EINVAL;

416
	map->lock(map->lock_arg);
417 418 419 420 421 422 423 424 425 426

	trace_regcache_drop_region(map->dev, min, max);

	if (map->cache_present)
		for (reg = min; reg < max + 1; reg++)
			clear_bit(reg, map->cache_present);

	if (map->cache_ops && map->cache_ops->drop)
		ret = map->cache_ops->drop(map, min, max);

427
	map->unlock(map->lock_arg);
428 429 430 431 432

	return ret;
}
EXPORT_SYMBOL_GPL(regcache_drop_region);

433 434 435 436 437 438 439 440 441 442 443 444 445 446
/**
 * regcache_cache_only: Put a register map into cache only mode
 *
 * @map: map to configure
 * @cache_only: flag if changes should be written to the hardware
 *
 * When a register map is marked as cache only writes to the register
 * map API will only update the register cache, they will not cause
 * any hardware changes.  This is useful for allowing portions of
 * drivers to act as though the device were functioning as normal when
 * it is disabled for power saving reasons.
 */
void regcache_cache_only(struct regmap *map, bool enable)
{
447
	map->lock(map->lock_arg);
448
	WARN_ON(map->cache_bypass && enable);
449
	map->cache_only = enable;
450
	trace_regmap_cache_only(map->dev, enable);
451
	map->unlock(map->lock_arg);
452 453 454
}
EXPORT_SYMBOL_GPL(regcache_cache_only);

455 456 457 458 459 460 461 462 463 464 465
/**
 * regcache_mark_dirty: Mark the register cache as dirty
 *
 * @map: map to mark
 *
 * Mark the register cache as dirty, for example due to the device
 * having been powered down for suspend.  If the cache is not marked
 * as dirty then the cache sync will be suppressed.
 */
void regcache_mark_dirty(struct regmap *map)
{
466
	map->lock(map->lock_arg);
467
	map->cache_dirty = true;
468
	map->unlock(map->lock_arg);
469 470 471
}
EXPORT_SYMBOL_GPL(regcache_mark_dirty);

472 473 474 475
/**
 * regcache_cache_bypass: Put a register map into cache bypass mode
 *
 * @map: map to configure
D
Dimitris Papastamos 已提交
476
 * @cache_bypass: flag if changes should not be written to the hardware
477 478 479 480 481 482 483 484
 *
 * When a register map is marked with the cache bypass option, writes
 * to the register map API will only update the hardware and not the
 * the cache directly.  This is useful when syncing the cache back to
 * the hardware.
 */
void regcache_cache_bypass(struct regmap *map, bool enable)
{
485
	map->lock(map->lock_arg);
486
	WARN_ON(map->cache_only && enable);
487
	map->cache_bypass = enable;
488
	trace_regmap_cache_bypass(map->dev, enable);
489
	map->unlock(map->lock_arg);
490 491 492
}
EXPORT_SYMBOL_GPL(regcache_cache_bypass);

493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
int regcache_set_reg_present(struct regmap *map, unsigned int reg)
{
	unsigned long *cache_present;
	unsigned int cache_present_size;
	unsigned int nregs;
	int i;

	nregs = reg + 1;
	cache_present_size = BITS_TO_LONGS(nregs);
	cache_present_size *= sizeof(long);

	if (!map->cache_present) {
		cache_present = kmalloc(cache_present_size, GFP_KERNEL);
		if (!cache_present)
			return -ENOMEM;
		bitmap_zero(cache_present, nregs);
		map->cache_present = cache_present;
		map->cache_present_nbits = nregs;
	}

	if (nregs > map->cache_present_nbits) {
		cache_present = krealloc(map->cache_present,
					 cache_present_size, GFP_KERNEL);
		if (!cache_present)
			return -ENOMEM;
		for (i = 0; i < nregs; i++)
			if (i >= map->cache_present_nbits)
				clear_bit(i, cache_present);
		map->cache_present = cache_present;
		map->cache_present_nbits = nregs;
	}

	set_bit(reg, map->cache_present);
	return 0;
}

529 530
bool regcache_set_val(struct regmap *map, void *base, unsigned int idx,
		      unsigned int val)
531
{
532 533 534
	if (regcache_get_val(map, base, idx) == val)
		return true;

535 536 537 538 539 540 541
	/* Use device native format if possible */
	if (map->format.format_val) {
		map->format.format_val(base + (map->cache_word_size * idx),
				       val, 0);
		return false;
	}

542
	switch (map->cache_word_size) {
543 544 545 546 547 548 549 550 551 552
	case 1: {
		u8 *cache = base;
		cache[idx] = val;
		break;
	}
	case 2: {
		u16 *cache = base;
		cache[idx] = val;
		break;
	}
553 554 555 556 557
	case 4: {
		u32 *cache = base;
		cache[idx] = val;
		break;
	}
558 559 560 561 562 563
	default:
		BUG();
	}
	return false;
}

564 565
unsigned int regcache_get_val(struct regmap *map, const void *base,
			      unsigned int idx)
566 567 568 569
{
	if (!base)
		return -EINVAL;

570 571
	/* Use device native format if possible */
	if (map->format.parse_val)
572 573
		return map->format.parse_val(regcache_get_val_addr(map, base,
								   idx));
574

575
	switch (map->cache_word_size) {
576 577 578 579 580 581 582 583
	case 1: {
		const u8 *cache = base;
		return cache[idx];
	}
	case 2: {
		const u16 *cache = base;
		return cache[idx];
	}
584 585 586 587
	case 4: {
		const u32 *cache = base;
		return cache[idx];
	}
588 589 590 591 592 593 594
	default:
		BUG();
	}
	/* unreachable */
	return -1;
}

595
static int regcache_default_cmp(const void *a, const void *b)
596 597 598 599 600 601 602
{
	const struct reg_default *_a = a;
	const struct reg_default *_b = b;

	return _a->reg - _b->reg;
}

603 604 605 606 607 608 609 610 611 612 613 614 615 616
int regcache_lookup_reg(struct regmap *map, unsigned int reg)
{
	struct reg_default key;
	struct reg_default *r;

	key.reg = reg;
	key.def = 0;

	r = bsearch(&key, map->reg_defaults, map->num_reg_defaults,
		    sizeof(struct reg_default), regcache_default_cmp);

	if (r)
		return r - map->reg_defaults;
	else
617
		return -ENOENT;
618
}
619

620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653
static int regcache_sync_block_single(struct regmap *map, void *block,
				      unsigned int block_base,
				      unsigned int start, unsigned int end)
{
	unsigned int i, regtmp, val;
	int ret;

	for (i = start; i < end; i++) {
		regtmp = block_base + (i * map->reg_stride);

		if (!regcache_reg_present(map, regtmp))
			continue;

		val = regcache_get_val(map, block, i);

		/* Is this the hardware default?  If so skip. */
		ret = regcache_lookup_reg(map, regtmp);
		if (ret >= 0 && val == map->reg_defaults[ret].def)
			continue;

		map->cache_bypass = 1;

		ret = _regmap_write(map, regtmp, val);

		map->cache_bypass = 0;
		if (ret != 0)
			return ret;
		dev_dbg(map->dev, "Synced register %#x, value %#x\n",
			regtmp, val);
	}

	return 0;
}

654 655 656 657 658 659 660 661 662 663 664
static int regcache_sync_block_raw_flush(struct regmap *map, const void **data,
					 unsigned int base, unsigned int cur)
{
	size_t val_bytes = map->format.val_bytes;
	int ret, count;

	if (*data == NULL)
		return 0;

	count = cur - base;

665
	dev_dbg(map->dev, "Writing %zu bytes for %d registers from 0x%x-0x%x\n",
666 667 668 669 670 671 672 673 674 675 676 677 678 679
		count * val_bytes, count, base, cur - 1);

	map->cache_bypass = 1;

	ret = _regmap_raw_write(map, base, *data, count * val_bytes,
				false);

	map->cache_bypass = 0;

	*data = NULL;

	return ret;
}

680
static int regcache_sync_block_raw(struct regmap *map, void *block,
681 682
			    unsigned int block_base, unsigned int start,
			    unsigned int end)
683
{
684 685 686 687
	unsigned int i, val;
	unsigned int regtmp = 0;
	unsigned int base = 0;
	const void *data = NULL;
688 689 690 691 692
	int ret;

	for (i = start; i < end; i++) {
		regtmp = block_base + (i * map->reg_stride);

693 694 695 696 697
		if (!regcache_reg_present(map, regtmp)) {
			ret = regcache_sync_block_raw_flush(map, &data,
							    base, regtmp);
			if (ret != 0)
				return ret;
698
			continue;
699
		}
700 701 702 703 704

		val = regcache_get_val(map, block, i);

		/* Is this the hardware default?  If so skip. */
		ret = regcache_lookup_reg(map, regtmp);
705 706 707 708 709
		if (ret >= 0 && val == map->reg_defaults[ret].def) {
			ret = regcache_sync_block_raw_flush(map, &data,
							    base, regtmp);
			if (ret != 0)
				return ret;
710
			continue;
711
		}
712

713 714 715 716
		if (!data) {
			data = regcache_get_val_addr(map, block, i);
			base = regtmp;
		}
717 718
	}

719
	return regcache_sync_block_raw_flush(map, &data, base, regtmp);
720
}
721 722 723 724 725 726 727 728 729 730 731 732

int regcache_sync_block(struct regmap *map, void *block,
			unsigned int block_base, unsigned int start,
			unsigned int end)
{
	if (regmap_can_raw_write(map))
		return regcache_sync_block_raw(map, block, block_base,
					       start, end);
	else
		return regcache_sync_block_single(map, block, block_base,
						  start, end);
}