regmap-mmio.c 6.9 KB
Newer Older
S
Stephen Warren 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Register map access API - MMIO support
 *
 * Copyright (c) 2012, NVIDIA CORPORATION.  All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

19
#include <linux/clk.h>
S
Stephen Warren 已提交
20 21 22 23 24 25 26 27 28
#include <linux/err.h>
#include <linux/init.h>
#include <linux/io.h>
#include <linux/module.h>
#include <linux/regmap.h>
#include <linux/slab.h>

struct regmap_mmio_context {
	void __iomem *regs;
29
	unsigned reg_bytes;
S
Stephen Warren 已提交
30
	unsigned val_bytes;
31
	unsigned pad_bytes;
32
	struct clk *clk;
S
Stephen Warren 已提交
33 34
};

35 36
static inline void regmap_mmio_regsize_check(size_t reg_size)
{
37 38 39 40 41 42 43 44 45 46 47
	switch (reg_size) {
	case 1:
	case 2:
	case 4:
#ifdef CONFIG_64BIT
	case 8:
#endif
		break;
	default:
		BUG();
	}
48 49
}

50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
static int regmap_mmio_regbits_check(size_t reg_bits)
{
	switch (reg_bits) {
	case 8:
	case 16:
	case 32:
#ifdef CONFIG_64BIT
	case 64:
#endif
		return 0;
	default:
		return -EINVAL;
	}
}

65 66
static inline void regmap_mmio_count_check(size_t count)
{
67
	BUG_ON(count % 2 != 0);
68 69
}

S
Stephen Warren 已提交
70 71 72 73 74 75
static int regmap_mmio_gather_write(void *context,
				    const void *reg, size_t reg_size,
				    const void *val, size_t val_size)
{
	struct regmap_mmio_context *ctx = context;
	u32 offset;
76
	int ret;
S
Stephen Warren 已提交
77

78
	regmap_mmio_regsize_check(reg_size);
79

80
	if (!IS_ERR(ctx->clk)) {
81 82 83 84 85
		ret = clk_enable(ctx->clk);
		if (ret < 0)
			return ret;
	}

86
	offset = *(u32 *)reg;
S
Stephen Warren 已提交
87 88 89 90 91 92 93

	while (val_size) {
		switch (ctx->val_bytes) {
		case 1:
			writeb(*(u8 *)val, ctx->regs + offset);
			break;
		case 2:
94
			writew(*(u16 *)val, ctx->regs + offset);
S
Stephen Warren 已提交
95 96
			break;
		case 4:
97
			writel(*(u32 *)val, ctx->regs + offset);
S
Stephen Warren 已提交
98 99 100
			break;
#ifdef CONFIG_64BIT
		case 8:
101
			writeq(*(u64 *)val, ctx->regs + offset);
S
Stephen Warren 已提交
102 103 104 105
			break;
#endif
		default:
			/* Should be caught by regmap_mmio_check_config */
106
			BUG();
S
Stephen Warren 已提交
107 108 109 110 111 112
		}
		val_size -= ctx->val_bytes;
		val += ctx->val_bytes;
		offset += ctx->val_bytes;
	}

113
	if (!IS_ERR(ctx->clk))
114 115
		clk_disable(ctx->clk);

S
Stephen Warren 已提交
116 117 118 119 120
	return 0;
}

static int regmap_mmio_write(void *context, const void *data, size_t count)
{
121 122 123
	struct regmap_mmio_context *ctx = context;
	u32 offset = ctx->reg_bytes + ctx->pad_bytes;

124
	regmap_mmio_count_check(count);
125

126 127
	return regmap_mmio_gather_write(context, data, ctx->reg_bytes,
					data + offset, count - offset);
S
Stephen Warren 已提交
128 129 130 131 132 133 134 135
}

static int regmap_mmio_read(void *context,
			    const void *reg, size_t reg_size,
			    void *val, size_t val_size)
{
	struct regmap_mmio_context *ctx = context;
	u32 offset;
136
	int ret;
S
Stephen Warren 已提交
137

138
	regmap_mmio_regsize_check(reg_size);
139

140
	if (!IS_ERR(ctx->clk)) {
141 142 143 144 145
		ret = clk_enable(ctx->clk);
		if (ret < 0)
			return ret;
	}

146
	offset = *(u32 *)reg;
S
Stephen Warren 已提交
147 148 149 150 151 152 153

	while (val_size) {
		switch (ctx->val_bytes) {
		case 1:
			*(u8 *)val = readb(ctx->regs + offset);
			break;
		case 2:
154
			*(u16 *)val = readw(ctx->regs + offset);
S
Stephen Warren 已提交
155 156
			break;
		case 4:
157
			*(u32 *)val = readl(ctx->regs + offset);
S
Stephen Warren 已提交
158 159 160
			break;
#ifdef CONFIG_64BIT
		case 8:
161
			*(u64 *)val = readq(ctx->regs + offset);
S
Stephen Warren 已提交
162 163 164 165
			break;
#endif
		default:
			/* Should be caught by regmap_mmio_check_config */
166
			BUG();
S
Stephen Warren 已提交
167 168 169 170 171 172
		}
		val_size -= ctx->val_bytes;
		val += ctx->val_bytes;
		offset += ctx->val_bytes;
	}

173
	if (!IS_ERR(ctx->clk))
174 175
		clk_disable(ctx->clk);

S
Stephen Warren 已提交
176 177 178 179 180
	return 0;
}

static void regmap_mmio_free_context(void *context)
{
181 182
	struct regmap_mmio_context *ctx = context;

183
	if (!IS_ERR(ctx->clk)) {
184 185 186
		clk_unprepare(ctx->clk);
		clk_put(ctx->clk);
	}
S
Stephen Warren 已提交
187 188 189 190 191 192 193 194 195
	kfree(context);
}

static struct regmap_bus regmap_mmio = {
	.fast_io = true,
	.write = regmap_mmio_write,
	.gather_write = regmap_mmio_gather_write,
	.read = regmap_mmio_read,
	.free_context = regmap_mmio_free_context,
196 197
	.reg_format_endian_default = REGMAP_ENDIAN_NATIVE,
	.val_format_endian_default = REGMAP_ENDIAN_NATIVE,
S
Stephen Warren 已提交
198 199
};

200 201 202
static struct regmap_mmio_context *regmap_mmio_gen_context(struct device *dev,
					const char *clk_id,
					void __iomem *regs,
S
Stephen Warren 已提交
203 204 205
					const struct regmap_config *config)
{
	struct regmap_mmio_context *ctx;
206
	int min_stride;
207
	int ret;
S
Stephen Warren 已提交
208

209 210 211
	ret = regmap_mmio_regbits_check(config->reg_bits);
	if (ret)
		return ERR_PTR(ret);
S
Stephen Warren 已提交
212 213 214 215 216 217

	if (config->pad_bits)
		return ERR_PTR(-EINVAL);

	switch (config->val_bits) {
	case 8:
218 219 220
		/* The core treats 0 as 1 */
		min_stride = 0;
		break;
S
Stephen Warren 已提交
221
	case 16:
222 223
		min_stride = 2;
		break;
S
Stephen Warren 已提交
224
	case 32:
225 226
		min_stride = 4;
		break;
S
Stephen Warren 已提交
227 228
#ifdef CONFIG_64BIT
	case 64:
229 230
		min_stride = 8;
		break;
S
Stephen Warren 已提交
231 232 233 234 235 236
#endif
		break;
	default:
		return ERR_PTR(-EINVAL);
	}

237 238 239
	if (config->reg_stride < min_stride)
		return ERR_PTR(-EINVAL);

240 241 242 243 244 245 246 247
	switch (config->reg_format_endian) {
	case REGMAP_ENDIAN_DEFAULT:
	case REGMAP_ENDIAN_NATIVE:
		break;
	default:
		return ERR_PTR(-EINVAL);
	}

248
	ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
S
Stephen Warren 已提交
249 250 251 252 253
	if (!ctx)
		return ERR_PTR(-ENOMEM);

	ctx->regs = regs;
	ctx->val_bytes = config->val_bits / 8;
254 255
	ctx->reg_bytes = config->reg_bits / 8;
	ctx->pad_bytes = config->pad_bits / 8;
256
	ctx->clk = ERR_PTR(-ENODEV);
S
Stephen Warren 已提交
257

258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
	if (clk_id == NULL)
		return ctx;

	ctx->clk = clk_get(dev, clk_id);
	if (IS_ERR(ctx->clk)) {
		ret = PTR_ERR(ctx->clk);
		goto err_free;
	}

	ret = clk_prepare(ctx->clk);
	if (ret < 0) {
		clk_put(ctx->clk);
		goto err_free;
	}

S
Stephen Warren 已提交
273
	return ctx;
274 275 276 277 278

err_free:
	kfree(ctx);

	return ERR_PTR(ret);
S
Stephen Warren 已提交
279 280 281
}

/**
282
 * regmap_init_mmio_clk(): Initialise register map with register clock
S
Stephen Warren 已提交
283 284
 *
 * @dev: Device that will be interacted with
285
 * @clk_id: register clock consumer ID
S
Stephen Warren 已提交
286 287 288 289 290 291
 * @regs: Pointer to memory-mapped IO region
 * @config: Configuration for register map
 *
 * The return value will be an ERR_PTR() on error or a valid pointer to
 * a struct regmap.
 */
292 293 294
struct regmap *regmap_init_mmio_clk(struct device *dev, const char *clk_id,
				    void __iomem *regs,
				    const struct regmap_config *config)
S
Stephen Warren 已提交
295 296 297
{
	struct regmap_mmio_context *ctx;

298
	ctx = regmap_mmio_gen_context(dev, clk_id, regs, config);
S
Stephen Warren 已提交
299 300 301 302 303
	if (IS_ERR(ctx))
		return ERR_CAST(ctx);

	return regmap_init(dev, &regmap_mmio, ctx, config);
}
304
EXPORT_SYMBOL_GPL(regmap_init_mmio_clk);
S
Stephen Warren 已提交
305 306

/**
307
 * devm_regmap_init_mmio_clk(): Initialise managed register map with clock
S
Stephen Warren 已提交
308 309
 *
 * @dev: Device that will be interacted with
310
 * @clk_id: register clock consumer ID
S
Stephen Warren 已提交
311 312 313 314 315 316 317
 * @regs: Pointer to memory-mapped IO region
 * @config: Configuration for register map
 *
 * The return value will be an ERR_PTR() on error or a valid pointer
 * to a struct regmap.  The regmap will be automatically freed by the
 * device management code.
 */
318 319 320
struct regmap *devm_regmap_init_mmio_clk(struct device *dev, const char *clk_id,
					 void __iomem *regs,
					 const struct regmap_config *config)
S
Stephen Warren 已提交
321 322 323
{
	struct regmap_mmio_context *ctx;

324
	ctx = regmap_mmio_gen_context(dev, clk_id, regs, config);
S
Stephen Warren 已提交
325 326 327 328 329
	if (IS_ERR(ctx))
		return ERR_CAST(ctx);

	return devm_regmap_init(dev, &regmap_mmio, ctx, config);
}
330
EXPORT_SYMBOL_GPL(devm_regmap_init_mmio_clk);
S
Stephen Warren 已提交
331 332

MODULE_LICENSE("GPL v2");