regmap-mmio.c 6.2 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 29
#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;
	unsigned val_bytes;
30
	struct clk *clk;
S
Stephen Warren 已提交
31 32 33 34 35 36 37 38
};

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;
39
	int ret;
S
Stephen Warren 已提交
40

41 42
	BUG_ON(reg_size != 4);

43
	if (!IS_ERR(ctx->clk)) {
44 45 46 47 48
		ret = clk_enable(ctx->clk);
		if (ret < 0)
			return ret;
	}

49
	offset = *(u32 *)reg;
S
Stephen Warren 已提交
50 51 52 53 54 55 56

	while (val_size) {
		switch (ctx->val_bytes) {
		case 1:
			writeb(*(u8 *)val, ctx->regs + offset);
			break;
		case 2:
57
			writew(*(u16 *)val, ctx->regs + offset);
S
Stephen Warren 已提交
58 59
			break;
		case 4:
60
			writel(*(u32 *)val, ctx->regs + offset);
S
Stephen Warren 已提交
61 62 63
			break;
#ifdef CONFIG_64BIT
		case 8:
64
			writeq(*(u64 *)val, ctx->regs + offset);
S
Stephen Warren 已提交
65 66 67 68
			break;
#endif
		default:
			/* Should be caught by regmap_mmio_check_config */
69
			BUG();
S
Stephen Warren 已提交
70 71 72 73 74 75
		}
		val_size -= ctx->val_bytes;
		val += ctx->val_bytes;
		offset += ctx->val_bytes;
	}

76
	if (!IS_ERR(ctx->clk))
77 78
		clk_disable(ctx->clk);

S
Stephen Warren 已提交
79 80 81 82 83
	return 0;
}

static int regmap_mmio_write(void *context, const void *data, size_t count)
{
84 85
	BUG_ON(count < 4);

S
Stephen Warren 已提交
86 87 88 89 90 91 92 93 94
	return regmap_mmio_gather_write(context, data, 4, data + 4, count - 4);
}

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;
95
	int ret;
S
Stephen Warren 已提交
96

97 98
	BUG_ON(reg_size != 4);

99
	if (!IS_ERR(ctx->clk)) {
100 101 102 103 104
		ret = clk_enable(ctx->clk);
		if (ret < 0)
			return ret;
	}

105
	offset = *(u32 *)reg;
S
Stephen Warren 已提交
106 107 108 109 110 111 112

	while (val_size) {
		switch (ctx->val_bytes) {
		case 1:
			*(u8 *)val = readb(ctx->regs + offset);
			break;
		case 2:
113
			*(u16 *)val = readw(ctx->regs + offset);
S
Stephen Warren 已提交
114 115
			break;
		case 4:
116
			*(u32 *)val = readl(ctx->regs + offset);
S
Stephen Warren 已提交
117 118 119
			break;
#ifdef CONFIG_64BIT
		case 8:
120
			*(u64 *)val = readq(ctx->regs + offset);
S
Stephen Warren 已提交
121 122 123 124
			break;
#endif
		default:
			/* Should be caught by regmap_mmio_check_config */
125
			BUG();
S
Stephen Warren 已提交
126 127 128 129 130 131
		}
		val_size -= ctx->val_bytes;
		val += ctx->val_bytes;
		offset += ctx->val_bytes;
	}

132
	if (!IS_ERR(ctx->clk))
133 134
		clk_disable(ctx->clk);

S
Stephen Warren 已提交
135 136 137 138 139
	return 0;
}

static void regmap_mmio_free_context(void *context)
{
140 141
	struct regmap_mmio_context *ctx = context;

142
	if (!IS_ERR(ctx->clk)) {
143 144 145
		clk_unprepare(ctx->clk);
		clk_put(ctx->clk);
	}
S
Stephen Warren 已提交
146 147 148 149 150 151 152 153 154
	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,
155 156
	.reg_format_endian_default = REGMAP_ENDIAN_NATIVE,
	.val_format_endian_default = REGMAP_ENDIAN_NATIVE,
S
Stephen Warren 已提交
157 158
};

159 160 161
static struct regmap_mmio_context *regmap_mmio_gen_context(struct device *dev,
					const char *clk_id,
					void __iomem *regs,
S
Stephen Warren 已提交
162 163 164
					const struct regmap_config *config)
{
	struct regmap_mmio_context *ctx;
165
	int min_stride;
166
	int ret;
S
Stephen Warren 已提交
167 168 169 170 171 172 173 174 175

	if (config->reg_bits != 32)
		return ERR_PTR(-EINVAL);

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

	switch (config->val_bits) {
	case 8:
176 177 178
		/* The core treats 0 as 1 */
		min_stride = 0;
		break;
S
Stephen Warren 已提交
179
	case 16:
180 181
		min_stride = 2;
		break;
S
Stephen Warren 已提交
182
	case 32:
183 184
		min_stride = 4;
		break;
S
Stephen Warren 已提交
185 186
#ifdef CONFIG_64BIT
	case 64:
187 188
		min_stride = 8;
		break;
S
Stephen Warren 已提交
189 190 191 192 193 194
#endif
		break;
	default:
		return ERR_PTR(-EINVAL);
	}

195 196 197
	if (config->reg_stride < min_stride)
		return ERR_PTR(-EINVAL);

198 199 200 201 202 203 204 205
	switch (config->reg_format_endian) {
	case REGMAP_ENDIAN_DEFAULT:
	case REGMAP_ENDIAN_NATIVE:
		break;
	default:
		return ERR_PTR(-EINVAL);
	}

206
	ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
S
Stephen Warren 已提交
207 208 209 210 211
	if (!ctx)
		return ERR_PTR(-ENOMEM);

	ctx->regs = regs;
	ctx->val_bytes = config->val_bits / 8;
212
	ctx->clk = ERR_PTR(-ENODEV);
S
Stephen Warren 已提交
213

214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
	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 已提交
229
	return ctx;
230 231 232 233 234

err_free:
	kfree(ctx);

	return ERR_PTR(ret);
S
Stephen Warren 已提交
235 236 237
}

/**
238
 * regmap_init_mmio_clk(): Initialise register map with register clock
S
Stephen Warren 已提交
239 240
 *
 * @dev: Device that will be interacted with
241
 * @clk_id: register clock consumer ID
S
Stephen Warren 已提交
242 243 244 245 246 247
 * @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.
 */
248 249 250
struct regmap *regmap_init_mmio_clk(struct device *dev, const char *clk_id,
				    void __iomem *regs,
				    const struct regmap_config *config)
S
Stephen Warren 已提交
251 252 253
{
	struct regmap_mmio_context *ctx;

254
	ctx = regmap_mmio_gen_context(dev, clk_id, regs, config);
S
Stephen Warren 已提交
255 256 257 258 259
	if (IS_ERR(ctx))
		return ERR_CAST(ctx);

	return regmap_init(dev, &regmap_mmio, ctx, config);
}
260
EXPORT_SYMBOL_GPL(regmap_init_mmio_clk);
S
Stephen Warren 已提交
261 262

/**
263
 * devm_regmap_init_mmio_clk(): Initialise managed register map with clock
S
Stephen Warren 已提交
264 265
 *
 * @dev: Device that will be interacted with
266
 * @clk_id: register clock consumer ID
S
Stephen Warren 已提交
267 268 269 270 271 272 273
 * @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.
 */
274 275 276
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 已提交
277 278 279
{
	struct regmap_mmio_context *ctx;

280
	ctx = regmap_mmio_gen_context(dev, clk_id, regs, config);
S
Stephen Warren 已提交
281 282 283 284 285
	if (IS_ERR(ctx))
		return ERR_CAST(ctx);

	return devm_regmap_init(dev, &regmap_mmio, ctx, config);
}
286
EXPORT_SYMBOL_GPL(devm_regmap_init_mmio_clk);
S
Stephen Warren 已提交
287 288

MODULE_LICENSE("GPL v2");