regmap.c 12.3 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0+
2 3 4 5 6 7 8 9
/*
 * Copyright (c) 2015 Google, Inc
 * Written by Simon Glass <sjg@chromium.org>
 */

#include <common.h>
#include <dm.h>
#include <errno.h>
10
#include <log.h>
11
#include <linux/libfdt.h>
12 13 14
#include <malloc.h>
#include <mapmem.h>
#include <regmap.h>
15
#include <asm/io.h>
16
#include <dm/of_addr.h>
17
#include <dm/devres.h>
18
#include <linux/ioport.h>
19 20
#include <linux/compat.h>
#include <linux/err.h>
21

22 23
DECLARE_GLOBAL_DATA_PTR;

M
Mario Six 已提交
24 25 26 27
/**
 * regmap_alloc() - Allocate a regmap with a given number of ranges.
 *
 * @count: Number of ranges to be allocated for the regmap.
28 29 30 31
 *
 * The default regmap width is set to REGMAP_SIZE_32. Callers can override it
 * if they need.
 *
M
Mario Six 已提交
32 33
 * Return: A pointer to the newly allocated regmap, or NULL on error.
 */
34
static struct regmap *regmap_alloc(int count)
35 36
{
	struct regmap *map;
37
	size_t size = sizeof(*map) + sizeof(map->ranges[0]) * count;
38

39
	map = calloc(1, size);
40 41 42
	if (!map)
		return NULL;
	map->range_count = count;
43
	map->width = REGMAP_SIZE_32;
44 45 46 47

	return map;
}

48
#if CONFIG_IS_ENABLED(OF_PLATDATA)
49
int regmap_init_mem_platdata(struct udevice *dev, fdt_val_t *reg, int count,
50 51
			     struct regmap **mapp)
{
52 53 54
	struct regmap_range *range;
	struct regmap *map;

55
	map = regmap_alloc(count);
56 57 58
	if (!map)
		return -ENOMEM;

59
	for (range = map->ranges; count > 0; reg += 2, range++, count--) {
60 61 62 63 64 65
		range->start = *reg;
		range->size = reg[1];
	}

	*mapp = map;

66 67 68
	return 0;
}
#else
M
Mario Six 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
/**
 * init_range() - Initialize a single range of a regmap
 * @node:     Device node that will use the map in question
 * @range:    Pointer to a regmap_range structure that will be initialized
 * @addr_len: The length of the addr parts of the reg property
 * @size_len: The length of the size parts of the reg property
 * @index:    The index of the range to initialize
 *
 * This function will read the necessary 'reg' information from the device tree
 * (the 'addr' part, and the 'length' part), and initialize the range in
 * quesion.
 *
 * Return: 0 if OK, -ve on error
 */
static int init_range(ofnode node, struct regmap_range *range, int addr_len,
		      int size_len, int index)
{
	fdt_size_t sz;
	struct resource r;

	if (of_live_active()) {
		int ret;

		ret = of_address_to_resource(ofnode_to_np(node),
					     index, &r);
		if (ret) {
			debug("%s: Could not read resource of range %d (ret = %d)\n",
			      ofnode_get_name(node), index, ret);
			return ret;
		}

		range->start = r.start;
		range->size = r.end - r.start + 1;
	} else {
		int offset = ofnode_to_offset(node);

		range->start = fdtdec_get_addr_size_fixed(gd->fdt_blob, offset,
							  "reg", index,
							  addr_len, size_len,
							  &sz, true);
		if (range->start == FDT_ADDR_T_NONE) {
			debug("%s: Could not read start of range %d\n",
			      ofnode_get_name(node), index);
			return -EINVAL;
		}

		range->size = sz;
	}

	return 0;
}

121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
int regmap_init_mem_index(ofnode node, struct regmap **mapp, int index)
{
	struct regmap *map;
	int addr_len, size_len;
	int ret;

	addr_len = ofnode_read_simple_addr_cells(ofnode_get_parent(node));
	if (addr_len < 0) {
		debug("%s: Error while reading the addr length (ret = %d)\n",
		      ofnode_get_name(node), addr_len);
		return addr_len;
	}

	size_len = ofnode_read_simple_size_cells(ofnode_get_parent(node));
	if (size_len < 0) {
		debug("%s: Error while reading the size length: (ret = %d)\n",
		      ofnode_get_name(node), size_len);
		return size_len;
	}

	map = regmap_alloc(1);
	if (!map)
		return -ENOMEM;

	ret = init_range(node, map->ranges, addr_len, size_len, index);
	if (ret)
F
Faiz Abbas 已提交
147
		goto err;
148 149 150 151 152 153 154 155 156 157 158 159

	if (ofnode_read_bool(node, "little-endian"))
		map->endianness = REGMAP_LITTLE_ENDIAN;
	else if (ofnode_read_bool(node, "big-endian"))
		map->endianness = REGMAP_BIG_ENDIAN;
	else if (ofnode_read_bool(node, "native-endian"))
		map->endianness = REGMAP_NATIVE_ENDIAN;
	else /* Default: native endianness */
		map->endianness = REGMAP_NATIVE_ENDIAN;

	*mapp = map;

F
Faiz Abbas 已提交
160 161 162 163
	return 0;
err:
	regmap_uninit(map);

164 165 166
	return ret;
}

167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
int regmap_init_mem_range(ofnode node, ulong r_start, ulong r_size,
			  struct regmap **mapp)
{
	struct regmap *map;
	struct regmap_range *range;

	map = regmap_alloc(1);
	if (!map)
		return -ENOMEM;

	range = &map->ranges[0];
	range->start = r_start;
	range->size = r_size;

	if (ofnode_read_bool(node, "little-endian"))
		map->endianness = REGMAP_LITTLE_ENDIAN;
	else if (ofnode_read_bool(node, "big-endian"))
		map->endianness = REGMAP_BIG_ENDIAN;
	else if (ofnode_read_bool(node, "native-endian"))
		map->endianness = REGMAP_NATIVE_ENDIAN;
	else /* Default: native endianness */
		map->endianness = REGMAP_NATIVE_ENDIAN;

	*mapp = map;
	return 0;
}

194
int regmap_init_mem(ofnode node, struct regmap **mapp)
195 196 197 198 199 200
{
	struct regmap_range *range;
	struct regmap *map;
	int count;
	int addr_len, size_len, both_len;
	int len;
201
	int index;
F
Faiz Abbas 已提交
202
	int ret;
203

204
	addr_len = ofnode_read_simple_addr_cells(ofnode_get_parent(node));
M
Mario Six 已提交
205 206 207 208 209 210
	if (addr_len < 0) {
		debug("%s: Error while reading the addr length (ret = %d)\n",
		      ofnode_get_name(node), addr_len);
		return addr_len;
	}

211
	size_len = ofnode_read_simple_size_cells(ofnode_get_parent(node));
M
Mario Six 已提交
212 213 214 215 216 217
	if (size_len < 0) {
		debug("%s: Error while reading the size length: (ret = %d)\n",
		      ofnode_get_name(node), size_len);
		return size_len;
	}

218
	both_len = addr_len + size_len;
M
Mario Six 已提交
219 220 221 222 223
	if (!both_len) {
		debug("%s: Both addr and size length are zero\n",
		      ofnode_get_name(node));
		return -EINVAL;
	}
224

225
	len = ofnode_read_size(node, "reg");
M
Mario Six 已提交
226 227 228
	if (len < 0) {
		debug("%s: Error while reading reg size (ret = %d)\n",
		      ofnode_get_name(node), len);
229
		return len;
M
Mario Six 已提交
230
	}
231
	len /= sizeof(fdt32_t);
232
	count = len / both_len;
M
Mario Six 已提交
233 234 235
	if (!count) {
		debug("%s: Not enough data in reg property\n",
		      ofnode_get_name(node));
236
		return -EINVAL;
M
Mario Six 已提交
237
	}
238

239
	map = regmap_alloc(count);
240 241 242
	if (!map)
		return -ENOMEM;

243
	for (range = map->ranges, index = 0; count > 0;
244
	     count--, range++, index++) {
F
Faiz Abbas 已提交
245
		ret = init_range(node, range, addr_len, size_len, index);
M
Mario Six 已提交
246
		if (ret)
F
Faiz Abbas 已提交
247
			goto err;
248 249
	}

M
Mario Six 已提交
250 251 252 253 254 255 256 257 258
	if (ofnode_read_bool(node, "little-endian"))
		map->endianness = REGMAP_LITTLE_ENDIAN;
	else if (ofnode_read_bool(node, "big-endian"))
		map->endianness = REGMAP_BIG_ENDIAN;
	else if (ofnode_read_bool(node, "native-endian"))
		map->endianness = REGMAP_NATIVE_ENDIAN;
	else /* Default: native endianness */
		map->endianness = REGMAP_NATIVE_ENDIAN;

259 260 261
	*mapp = map;

	return 0;
F
Faiz Abbas 已提交
262 263 264 265
err:
	regmap_uninit(map);

	return ret;
266
}
267 268 269 270 271 272 273 274 275 276 277 278

static void devm_regmap_release(struct udevice *dev, void *res)
{
	regmap_uninit(*(struct regmap **)res);
}

struct regmap *devm_regmap_init(struct udevice *dev,
				const struct regmap_bus *bus,
				void *bus_context,
				const struct regmap_config *config)
{
	int rc;
279
	struct regmap **mapp, *map;
280 281 282 283 284 285

	mapp = devres_alloc(devm_regmap_release, sizeof(struct regmap *),
			    __GFP_ZERO);
	if (unlikely(!mapp))
		return ERR_PTR(-ENOMEM);

286 287 288 289 290
	if (config && config->r_size != 0)
		rc = regmap_init_mem_range(dev_ofnode(dev), config->r_start,
					   config->r_size, mapp);
	else
		rc = regmap_init_mem(dev_ofnode(dev), mapp);
291 292 293
	if (rc)
		return ERR_PTR(rc);

294
	map = *mapp;
295
	if (config) {
296
		map->width = config->width;
297 298
		map->reg_offset_shift = config->reg_offset_shift;
	}
299

300 301 302
	devres_add(dev, mapp);
	return *mapp;
}
303
#endif
304 305 306 307 308 309 310

void *regmap_get_range(struct regmap *map, unsigned int range_num)
{
	struct regmap_range *range;

	if (range_num >= map->range_count)
		return NULL;
311
	range = &map->ranges[range_num];
312 313 314 315 316 317 318 319 320 321

	return map_sysmem(range->start, range->size);
}

int regmap_uninit(struct regmap *map)
{
	free(map);

	return 0;
}
322

M
Mario Six 已提交
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
static inline u8 __read_8(u8 *addr, enum regmap_endianness_t endianness)
{
	return readb(addr);
}

static inline u16 __read_16(u16 *addr, enum regmap_endianness_t endianness)
{
	switch (endianness) {
	case REGMAP_LITTLE_ENDIAN:
		return in_le16(addr);
	case REGMAP_BIG_ENDIAN:
		return in_be16(addr);
	case REGMAP_NATIVE_ENDIAN:
		return readw(addr);
	}

	return readw(addr);
}

static inline u32 __read_32(u32 *addr, enum regmap_endianness_t endianness)
{
	switch (endianness) {
	case REGMAP_LITTLE_ENDIAN:
		return in_le32(addr);
	case REGMAP_BIG_ENDIAN:
		return in_be32(addr);
	case REGMAP_NATIVE_ENDIAN:
		return readl(addr);
	}

	return readl(addr);
}

#if defined(in_le64) && defined(in_be64) && defined(readq)
static inline u64 __read_64(u64 *addr, enum regmap_endianness_t endianness)
{
	switch (endianness) {
	case REGMAP_LITTLE_ENDIAN:
		return in_le64(addr);
	case REGMAP_BIG_ENDIAN:
		return in_be64(addr);
	case REGMAP_NATIVE_ENDIAN:
		return readq(addr);
	}

	return readq(addr);
}
#endif

372 373
int regmap_raw_read_range(struct regmap *map, uint range_num, uint offset,
			  void *valp, size_t val_len)
M
Mario Six 已提交
374
{
375
	struct regmap_range *range;
M
Mario Six 已提交
376 377
	void *ptr;

378 379 380 381 382 383 384
	if (range_num >= map->range_count) {
		debug("%s: range index %d larger than range count\n",
		      __func__, range_num);
		return -ERANGE;
	}
	range = &map->ranges[range_num];

385
	offset <<= map->reg_offset_shift;
386 387 388 389
	if (offset + val_len > range->size) {
		debug("%s: offset/size combination invalid\n", __func__);
		return -ERANGE;
	}
M
Mario Six 已提交
390

391 392
	ptr = map_physmem(range->start + offset, val_len, MAP_NOCACHE);

M
Mario Six 已提交
393 394
	switch (val_len) {
	case REGMAP_SIZE_8:
M
Mario Six 已提交
395
		*((u8 *)valp) = __read_8(ptr, map->endianness);
M
Mario Six 已提交
396 397
		break;
	case REGMAP_SIZE_16:
M
Mario Six 已提交
398
		*((u16 *)valp) = __read_16(ptr, map->endianness);
M
Mario Six 已提交
399 400
		break;
	case REGMAP_SIZE_32:
M
Mario Six 已提交
401
		*((u32 *)valp) = __read_32(ptr, map->endianness);
M
Mario Six 已提交
402
		break;
M
Mario Six 已提交
403
#if defined(in_le64) && defined(in_be64) && defined(readq)
M
Mario Six 已提交
404
	case REGMAP_SIZE_64:
M
Mario Six 已提交
405
		*((u64 *)valp) = __read_64(ptr, map->endianness);
M
Mario Six 已提交
406 407 408 409 410 411
		break;
#endif
	default:
		debug("%s: regmap size %zu unknown\n", __func__, val_len);
		return -EINVAL;
	}
412

M
Mario Six 已提交
413 414 415
	return 0;
}

416 417 418 419 420
int regmap_raw_read(struct regmap *map, uint offset, void *valp, size_t val_len)
{
	return regmap_raw_read_range(map, 0, offset, valp, val_len);
}

421 422
int regmap_read(struct regmap *map, uint offset, uint *valp)
{
423
	return regmap_raw_read(map, offset, valp, map->width);
M
Mario Six 已提交
424
}
425

M
Mario Six 已提交
426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481
static inline void __write_8(u8 *addr, const u8 *val,
			     enum regmap_endianness_t endianness)
{
	writeb(*val, addr);
}

static inline void __write_16(u16 *addr, const u16 *val,
			      enum regmap_endianness_t endianness)
{
	switch (endianness) {
	case REGMAP_NATIVE_ENDIAN:
		writew(*val, addr);
		break;
	case REGMAP_LITTLE_ENDIAN:
		out_le16(addr, *val);
		break;
	case REGMAP_BIG_ENDIAN:
		out_be16(addr, *val);
		break;
	}
}

static inline void __write_32(u32 *addr, const u32 *val,
			      enum regmap_endianness_t endianness)
{
	switch (endianness) {
	case REGMAP_NATIVE_ENDIAN:
		writel(*val, addr);
		break;
	case REGMAP_LITTLE_ENDIAN:
		out_le32(addr, *val);
		break;
	case REGMAP_BIG_ENDIAN:
		out_be32(addr, *val);
		break;
	}
}

#if defined(out_le64) && defined(out_be64) && defined(writeq)
static inline void __write_64(u64 *addr, const u64 *val,
			      enum regmap_endianness_t endianness)
{
	switch (endianness) {
	case REGMAP_NATIVE_ENDIAN:
		writeq(*val, addr);
		break;
	case REGMAP_LITTLE_ENDIAN:
		out_le64(addr, *val);
		break;
	case REGMAP_BIG_ENDIAN:
		out_be64(addr, *val);
		break;
	}
}
#endif

482 483
int regmap_raw_write_range(struct regmap *map, uint range_num, uint offset,
			   const void *val, size_t val_len)
M
Mario Six 已提交
484
{
485
	struct regmap_range *range;
M
Mario Six 已提交
486 487
	void *ptr;

488 489 490 491 492 493 494
	if (range_num >= map->range_count) {
		debug("%s: range index %d larger than range count\n",
		      __func__, range_num);
		return -ERANGE;
	}
	range = &map->ranges[range_num];

495
	offset <<= map->reg_offset_shift;
496 497 498 499
	if (offset + val_len > range->size) {
		debug("%s: offset/size combination invalid\n", __func__);
		return -ERANGE;
	}
M
Mario Six 已提交
500

501 502
	ptr = map_physmem(range->start + offset, val_len, MAP_NOCACHE);

M
Mario Six 已提交
503 504
	switch (val_len) {
	case REGMAP_SIZE_8:
M
Mario Six 已提交
505
		__write_8(ptr, val, map->endianness);
M
Mario Six 已提交
506 507
		break;
	case REGMAP_SIZE_16:
M
Mario Six 已提交
508
		__write_16(ptr, val, map->endianness);
M
Mario Six 已提交
509 510
		break;
	case REGMAP_SIZE_32:
M
Mario Six 已提交
511
		__write_32(ptr, val, map->endianness);
M
Mario Six 已提交
512
		break;
M
Mario Six 已提交
513
#if defined(out_le64) && defined(out_be64) && defined(writeq)
M
Mario Six 已提交
514
	case REGMAP_SIZE_64:
M
Mario Six 已提交
515
		__write_64(ptr, val, map->endianness);
M
Mario Six 已提交
516 517 518 519 520 521
		break;
#endif
	default:
		debug("%s: regmap size %zu unknown\n", __func__, val_len);
		return -EINVAL;
	}
522 523 524 525

	return 0;
}

526 527 528 529 530 531
int regmap_raw_write(struct regmap *map, uint offset, const void *val,
		     size_t val_len)
{
	return regmap_raw_write_range(map, 0, offset, val, val_len);
}

532 533
int regmap_write(struct regmap *map, uint offset, uint val)
{
534
	return regmap_raw_write(map, offset, &val, map->width);
535
}
536 537 538 539 540 541 542 543 544 545 546 547

int regmap_update_bits(struct regmap *map, uint offset, uint mask, uint val)
{
	uint reg;
	int ret;

	ret = regmap_read(map, offset, &reg);
	if (ret)
		return ret;

	reg &= ~mask;

548
	return regmap_write(map, offset, reg | (val & mask));
549
}