regmap.c 10.6 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 17
#include <dm/of_addr.h>
#include <linux/ioport.h>
18

19 20
DECLARE_GLOBAL_DATA_PTR;

M
Mario Six 已提交
21 22 23 24 25 26
/**
 * regmap_alloc() - Allocate a regmap with a given number of ranges.
 *
 * @count: Number of ranges to be allocated for the regmap.
 * Return: A pointer to the newly allocated regmap, or NULL on error.
 */
27
static struct regmap *regmap_alloc(int count)
28 29 30
{
	struct regmap *map;

31
	map = malloc(sizeof(*map) + sizeof(map->ranges[0]) * count);
32 33 34 35 36 37 38
	if (!map)
		return NULL;
	map->range_count = count;

	return map;
}

39
#if CONFIG_IS_ENABLED(OF_PLATDATA)
40
int regmap_init_mem_platdata(struct udevice *dev, fdt_val_t *reg, int count,
41 42
			     struct regmap **mapp)
{
43 44 45
	struct regmap_range *range;
	struct regmap *map;

46
	map = regmap_alloc(count);
47 48 49
	if (!map)
		return -ENOMEM;

50
	for (range = map->ranges; count > 0; reg += 2, range++, count--) {
51 52 53 54 55 56
		range->start = *reg;
		range->size = reg[1];
	}

	*mapp = map;

57 58 59
	return 0;
}
#else
M
Mario Six 已提交
60 61 62 63 64 65 66 67 68 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
/**
 * 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;
}

112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
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 已提交
138
		goto err;
139 140 141 142 143 144 145 146 147 148 149 150

	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 已提交
151 152 153 154
	return 0;
err:
	regmap_uninit(map);

155 156 157
	return ret;
}

158
int regmap_init_mem(ofnode node, struct regmap **mapp)
159 160 161 162 163 164
{
	struct regmap_range *range;
	struct regmap *map;
	int count;
	int addr_len, size_len, both_len;
	int len;
165
	int index;
F
Faiz Abbas 已提交
166
	int ret;
167

168
	addr_len = ofnode_read_simple_addr_cells(ofnode_get_parent(node));
M
Mario Six 已提交
169 170 171 172 173 174
	if (addr_len < 0) {
		debug("%s: Error while reading the addr length (ret = %d)\n",
		      ofnode_get_name(node), addr_len);
		return addr_len;
	}

175
	size_len = ofnode_read_simple_size_cells(ofnode_get_parent(node));
M
Mario Six 已提交
176 177 178 179 180 181
	if (size_len < 0) {
		debug("%s: Error while reading the size length: (ret = %d)\n",
		      ofnode_get_name(node), size_len);
		return size_len;
	}

182
	both_len = addr_len + size_len;
M
Mario Six 已提交
183 184 185 186 187
	if (!both_len) {
		debug("%s: Both addr and size length are zero\n",
		      ofnode_get_name(node));
		return -EINVAL;
	}
188

189
	len = ofnode_read_size(node, "reg");
M
Mario Six 已提交
190 191 192
	if (len < 0) {
		debug("%s: Error while reading reg size (ret = %d)\n",
		      ofnode_get_name(node), len);
193
		return len;
M
Mario Six 已提交
194
	}
195
	len /= sizeof(fdt32_t);
196
	count = len / both_len;
M
Mario Six 已提交
197 198 199
	if (!count) {
		debug("%s: Not enough data in reg property\n",
		      ofnode_get_name(node));
200
		return -EINVAL;
M
Mario Six 已提交
201
	}
202

203
	map = regmap_alloc(count);
204 205 206
	if (!map)
		return -ENOMEM;

207
	for (range = map->ranges, index = 0; count > 0;
208
	     count--, range++, index++) {
F
Faiz Abbas 已提交
209
		ret = init_range(node, range, addr_len, size_len, index);
M
Mario Six 已提交
210
		if (ret)
F
Faiz Abbas 已提交
211
			goto err;
212 213
	}

M
Mario Six 已提交
214 215 216 217 218 219 220 221 222
	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;

223 224 225
	*mapp = map;

	return 0;
F
Faiz Abbas 已提交
226 227 228 229
err:
	regmap_uninit(map);

	return ret;
230
}
231
#endif
232 233 234 235 236 237 238

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

	if (range_num >= map->range_count)
		return NULL;
239
	range = &map->ranges[range_num];
240 241 242 243 244 245 246 247 248 249

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

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

	return 0;
}
250

M
Mario Six 已提交
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 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
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

300 301
int regmap_raw_read_range(struct regmap *map, uint range_num, uint offset,
			  void *valp, size_t val_len)
M
Mario Six 已提交
302
{
303
	struct regmap_range *range;
M
Mario Six 已提交
304 305
	void *ptr;

306 307 308 309 310 311 312 313 314 315 316
	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 已提交
317

318 319
	ptr = map_physmem(range->start + offset, val_len, MAP_NOCACHE);

M
Mario Six 已提交
320 321
	switch (val_len) {
	case REGMAP_SIZE_8:
M
Mario Six 已提交
322
		*((u8 *)valp) = __read_8(ptr, map->endianness);
M
Mario Six 已提交
323 324
		break;
	case REGMAP_SIZE_16:
M
Mario Six 已提交
325
		*((u16 *)valp) = __read_16(ptr, map->endianness);
M
Mario Six 已提交
326 327
		break;
	case REGMAP_SIZE_32:
M
Mario Six 已提交
328
		*((u32 *)valp) = __read_32(ptr, map->endianness);
M
Mario Six 已提交
329
		break;
M
Mario Six 已提交
330
#if defined(in_le64) && defined(in_be64) && defined(readq)
M
Mario Six 已提交
331
	case REGMAP_SIZE_64:
M
Mario Six 已提交
332
		*((u64 *)valp) = __read_64(ptr, map->endianness);
M
Mario Six 已提交
333 334 335 336 337 338
		break;
#endif
	default:
		debug("%s: regmap size %zu unknown\n", __func__, val_len);
		return -EINVAL;
	}
339

M
Mario Six 已提交
340 341 342
	return 0;
}

343 344 345 346 347
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);
}

348 349
int regmap_read(struct regmap *map, uint offset, uint *valp)
{
M
Mario Six 已提交
350 351
	return regmap_raw_read(map, offset, valp, REGMAP_SIZE_32);
}
352

M
Mario Six 已提交
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
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

409 410
int regmap_raw_write_range(struct regmap *map, uint range_num, uint offset,
			   const void *val, size_t val_len)
M
Mario Six 已提交
411
{
412
	struct regmap_range *range;
M
Mario Six 已提交
413 414
	void *ptr;

415 416 417 418 419 420 421 422 423 424 425
	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 已提交
426

427 428
	ptr = map_physmem(range->start + offset, val_len, MAP_NOCACHE);

M
Mario Six 已提交
429 430
	switch (val_len) {
	case REGMAP_SIZE_8:
M
Mario Six 已提交
431
		__write_8(ptr, val, map->endianness);
M
Mario Six 已提交
432 433
		break;
	case REGMAP_SIZE_16:
M
Mario Six 已提交
434
		__write_16(ptr, val, map->endianness);
M
Mario Six 已提交
435 436
		break;
	case REGMAP_SIZE_32:
M
Mario Six 已提交
437
		__write_32(ptr, val, map->endianness);
M
Mario Six 已提交
438
		break;
M
Mario Six 已提交
439
#if defined(out_le64) && defined(out_be64) && defined(writeq)
M
Mario Six 已提交
440
	case REGMAP_SIZE_64:
M
Mario Six 已提交
441
		__write_64(ptr, val, map->endianness);
M
Mario Six 已提交
442 443 444 445 446 447
		break;
#endif
	default:
		debug("%s: regmap size %zu unknown\n", __func__, val_len);
		return -EINVAL;
	}
448 449 450 451

	return 0;
}

452 453 454 455 456 457
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);
}

458 459
int regmap_write(struct regmap *map, uint offset, uint val)
{
M
Mario Six 已提交
460
	return regmap_raw_write(map, offset, &val, REGMAP_SIZE_32);
461
}
462 463 464 465 466 467 468 469 470 471 472 473

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;

474
	return regmap_write(map, offset, reg | (val & mask));
475
}