regmap.c 11.4 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
int regmap_init_mem(ofnode node, struct regmap **mapp)
168 169 170 171 172 173
{
	struct regmap_range *range;
	struct regmap *map;
	int count;
	int addr_len, size_len, both_len;
	int len;
174
	int index;
F
Faiz Abbas 已提交
175
	int ret;
176

177
	addr_len = ofnode_read_simple_addr_cells(ofnode_get_parent(node));
M
Mario Six 已提交
178 179 180 181 182 183
	if (addr_len < 0) {
		debug("%s: Error while reading the addr length (ret = %d)\n",
		      ofnode_get_name(node), addr_len);
		return addr_len;
	}

184
	size_len = ofnode_read_simple_size_cells(ofnode_get_parent(node));
M
Mario Six 已提交
185 186 187 188 189 190
	if (size_len < 0) {
		debug("%s: Error while reading the size length: (ret = %d)\n",
		      ofnode_get_name(node), size_len);
		return size_len;
	}

191
	both_len = addr_len + size_len;
M
Mario Six 已提交
192 193 194 195 196
	if (!both_len) {
		debug("%s: Both addr and size length are zero\n",
		      ofnode_get_name(node));
		return -EINVAL;
	}
197

198
	len = ofnode_read_size(node, "reg");
M
Mario Six 已提交
199 200 201
	if (len < 0) {
		debug("%s: Error while reading reg size (ret = %d)\n",
		      ofnode_get_name(node), len);
202
		return len;
M
Mario Six 已提交
203
	}
204
	len /= sizeof(fdt32_t);
205
	count = len / both_len;
M
Mario Six 已提交
206 207 208
	if (!count) {
		debug("%s: Not enough data in reg property\n",
		      ofnode_get_name(node));
209
		return -EINVAL;
M
Mario Six 已提交
210
	}
211

212
	map = regmap_alloc(count);
213 214 215
	if (!map)
		return -ENOMEM;

216
	for (range = map->ranges, index = 0; count > 0;
217
	     count--, range++, index++) {
F
Faiz Abbas 已提交
218
		ret = init_range(node, range, addr_len, size_len, index);
M
Mario Six 已提交
219
		if (ret)
F
Faiz Abbas 已提交
220
			goto err;
221 222
	}

M
Mario Six 已提交
223 224 225 226 227 228 229 230 231
	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;

232 233 234
	*mapp = map;

	return 0;
F
Faiz Abbas 已提交
235 236 237 238
err:
	regmap_uninit(map);

	return ret;
239
}
240 241 242 243 244 245 246 247 248 249 250 251

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;
252
	struct regmap **mapp, *map;
253 254 255 256 257 258 259 260 261 262

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

	rc = regmap_init_mem(dev_ofnode(dev), mapp);
	if (rc)
		return ERR_PTR(rc);

263 264 265 266
	map = *mapp;
	if (config)
		map->width = config->width;

267 268 269
	devres_add(dev, mapp);
	return *mapp;
}
270
#endif
271 272 273 274 275 276 277

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

	if (range_num >= map->range_count)
		return NULL;
278
	range = &map->ranges[range_num];
279 280 281 282 283 284 285 286 287 288

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

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

	return 0;
}
289

M
Mario Six 已提交
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
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

339 340
int regmap_raw_read_range(struct regmap *map, uint range_num, uint offset,
			  void *valp, size_t val_len)
M
Mario Six 已提交
341
{
342
	struct regmap_range *range;
M
Mario Six 已提交
343 344
	void *ptr;

345 346 347 348 349 350 351 352 353 354 355
	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];

	if (offset + val_len > range->size) {
		debug("%s: offset/size combination invalid\n", __func__);
		return -ERANGE;
	}
M
Mario Six 已提交
356

357 358
	ptr = map_physmem(range->start + offset, val_len, MAP_NOCACHE);

M
Mario Six 已提交
359 360
	switch (val_len) {
	case REGMAP_SIZE_8:
M
Mario Six 已提交
361
		*((u8 *)valp) = __read_8(ptr, map->endianness);
M
Mario Six 已提交
362 363
		break;
	case REGMAP_SIZE_16:
M
Mario Six 已提交
364
		*((u16 *)valp) = __read_16(ptr, map->endianness);
M
Mario Six 已提交
365 366
		break;
	case REGMAP_SIZE_32:
M
Mario Six 已提交
367
		*((u32 *)valp) = __read_32(ptr, map->endianness);
M
Mario Six 已提交
368
		break;
M
Mario Six 已提交
369
#if defined(in_le64) && defined(in_be64) && defined(readq)
M
Mario Six 已提交
370
	case REGMAP_SIZE_64:
M
Mario Six 已提交
371
		*((u64 *)valp) = __read_64(ptr, map->endianness);
M
Mario Six 已提交
372 373 374 375 376 377
		break;
#endif
	default:
		debug("%s: regmap size %zu unknown\n", __func__, val_len);
		return -EINVAL;
	}
378

M
Mario Six 已提交
379 380 381
	return 0;
}

382 383 384 385 386
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);
}

387 388
int regmap_read(struct regmap *map, uint offset, uint *valp)
{
389
	return regmap_raw_read(map, offset, valp, map->width);
M
Mario Six 已提交
390
}
391

M
Mario Six 已提交
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
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

448 449
int regmap_raw_write_range(struct regmap *map, uint range_num, uint offset,
			   const void *val, size_t val_len)
M
Mario Six 已提交
450
{
451
	struct regmap_range *range;
M
Mario Six 已提交
452 453
	void *ptr;

454 455 456 457 458 459 460 461 462 463 464
	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];

	if (offset + val_len > range->size) {
		debug("%s: offset/size combination invalid\n", __func__);
		return -ERANGE;
	}
M
Mario Six 已提交
465

466 467
	ptr = map_physmem(range->start + offset, val_len, MAP_NOCACHE);

M
Mario Six 已提交
468 469
	switch (val_len) {
	case REGMAP_SIZE_8:
M
Mario Six 已提交
470
		__write_8(ptr, val, map->endianness);
M
Mario Six 已提交
471 472
		break;
	case REGMAP_SIZE_16:
M
Mario Six 已提交
473
		__write_16(ptr, val, map->endianness);
M
Mario Six 已提交
474 475
		break;
	case REGMAP_SIZE_32:
M
Mario Six 已提交
476
		__write_32(ptr, val, map->endianness);
M
Mario Six 已提交
477
		break;
M
Mario Six 已提交
478
#if defined(out_le64) && defined(out_be64) && defined(writeq)
M
Mario Six 已提交
479
	case REGMAP_SIZE_64:
M
Mario Six 已提交
480
		__write_64(ptr, val, map->endianness);
M
Mario Six 已提交
481 482 483 484 485 486
		break;
#endif
	default:
		debug("%s: regmap size %zu unknown\n", __func__, val_len);
		return -EINVAL;
	}
487 488 489 490

	return 0;
}

491 492 493 494 495 496
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);
}

497 498
int regmap_write(struct regmap *map, uint offset, uint val)
{
499
	return regmap_raw_write(map, offset, &val, map->width);
500
}
501 502 503 504 505 506 507 508 509 510 511 512

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;

513
	return regmap_write(map, offset, reg | (val & mask));
514
}