Merge branch 'acpica'
[linux-2.6-block.git] / drivers / nvmem / rockchip-efuse.c
CommitLineData
03a69568
Z
1/*
2 * Rockchip eFuse Driver
3 *
4 * Copyright (c) 2015 Rockchip Electronics Co. Ltd.
5 * Author: Caesar Wang <wxt@rock-chips.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of version 2 of the GNU General Public License as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 */
16
c37ff3fb
CW
17#include <linux/clk.h>
18#include <linux/delay.h>
03a69568
Z
19#include <linux/device.h>
20#include <linux/io.h>
21#include <linux/module.h>
c37ff3fb
CW
22#include <linux/nvmem-provider.h>
23#include <linux/slab.h>
03a69568 24#include <linux/of.h>
c37ff3fb
CW
25#include <linux/platform_device.h>
26#include <linux/regmap.h>
03a69568
Z
27
28#define EFUSE_A_SHIFT 6
29#define EFUSE_A_MASK 0x3ff
30#define EFUSE_PGENB BIT(3)
31#define EFUSE_LOAD BIT(2)
32#define EFUSE_STROBE BIT(1)
33#define EFUSE_CSB BIT(0)
34
35#define REG_EFUSE_CTRL 0x0000
36#define REG_EFUSE_DOUT 0x0004
37
c37ff3fb 38struct rockchip_efuse_chip {
03a69568
Z
39 struct device *dev;
40 void __iomem *base;
c37ff3fb 41 struct clk *clk;
03a69568
Z
42};
43
44static int rockchip_efuse_write(void *context, const void *data, size_t count)
45{
46 /* Nothing TBD, Read-Only */
47 return 0;
48}
49
50static int rockchip_efuse_read(void *context,
51 const void *reg, size_t reg_size,
52 void *val, size_t val_size)
53{
54 unsigned int offset = *(u32 *)reg;
c37ff3fb 55 struct rockchip_efuse_chip *efuse = context;
03a69568
Z
56 u8 *buf = val;
57 int ret;
58
c37ff3fb 59 ret = clk_prepare_enable(efuse->clk);
03a69568 60 if (ret < 0) {
c37ff3fb 61 dev_err(efuse->dev, "failed to prepare/enable efuse clk\n");
03a69568
Z
62 return ret;
63 }
64
c37ff3fb 65 writel(EFUSE_LOAD | EFUSE_PGENB, efuse->base + REG_EFUSE_CTRL);
03a69568
Z
66 udelay(1);
67 while (val_size) {
c37ff3fb 68 writel(readl(efuse->base + REG_EFUSE_CTRL) &
03a69568 69 (~(EFUSE_A_MASK << EFUSE_A_SHIFT)),
c37ff3fb
CW
70 efuse->base + REG_EFUSE_CTRL);
71 writel(readl(efuse->base + REG_EFUSE_CTRL) |
03a69568 72 ((offset & EFUSE_A_MASK) << EFUSE_A_SHIFT),
c37ff3fb 73 efuse->base + REG_EFUSE_CTRL);
03a69568 74 udelay(1);
c37ff3fb
CW
75 writel(readl(efuse->base + REG_EFUSE_CTRL) |
76 EFUSE_STROBE, efuse->base + REG_EFUSE_CTRL);
03a69568 77 udelay(1);
c37ff3fb
CW
78 *buf++ = readb(efuse->base + REG_EFUSE_DOUT);
79 writel(readl(efuse->base + REG_EFUSE_CTRL) &
80 (~EFUSE_STROBE), efuse->base + REG_EFUSE_CTRL);
03a69568
Z
81 udelay(1);
82
83 val_size -= 1;
84 offset += 1;
85 }
86
87 /* Switch to standby mode */
c37ff3fb 88 writel(EFUSE_PGENB | EFUSE_CSB, efuse->base + REG_EFUSE_CTRL);
03a69568 89
c37ff3fb 90 clk_disable_unprepare(efuse->clk);
03a69568
Z
91
92 return 0;
93}
94
95static struct regmap_bus rockchip_efuse_bus = {
96 .read = rockchip_efuse_read,
97 .write = rockchip_efuse_write,
98 .reg_format_endian_default = REGMAP_ENDIAN_NATIVE,
99 .val_format_endian_default = REGMAP_ENDIAN_NATIVE,
100};
101
7e532f79 102static struct regmap_config rockchip_efuse_regmap_config = {
03a69568
Z
103 .reg_bits = 32,
104 .reg_stride = 1,
105 .val_bits = 8,
106};
107
108static struct nvmem_config econfig = {
109 .name = "rockchip-efuse",
110 .owner = THIS_MODULE,
111 .read_only = true,
112};
113
114static const struct of_device_id rockchip_efuse_match[] = {
c37ff3fb 115 { .compatible = "rockchip,rockchip-efuse", },
03a69568
Z
116 { /* sentinel */},
117};
118MODULE_DEVICE_TABLE(of, rockchip_efuse_match);
119
7e532f79 120static int rockchip_efuse_probe(struct platform_device *pdev)
03a69568 121{
03a69568
Z
122 struct resource *res;
123 struct nvmem_device *nvmem;
124 struct regmap *regmap;
c37ff3fb 125 struct rockchip_efuse_chip *efuse;
03a69568 126
c37ff3fb
CW
127 efuse = devm_kzalloc(&pdev->dev, sizeof(struct rockchip_efuse_chip),
128 GFP_KERNEL);
129 if (!efuse)
130 return -ENOMEM;
03a69568 131
c37ff3fb
CW
132 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
133 efuse->base = devm_ioremap_resource(&pdev->dev, res);
134 if (IS_ERR(efuse->base))
135 return PTR_ERR(efuse->base);
03a69568 136
c37ff3fb
CW
137 efuse->clk = devm_clk_get(&pdev->dev, "pclk_efuse");
138 if (IS_ERR(efuse->clk))
139 return PTR_ERR(efuse->clk);
03a69568 140
c37ff3fb 141 efuse->dev = &pdev->dev;
03a69568
Z
142
143 rockchip_efuse_regmap_config.max_register = resource_size(res) - 1;
144
c37ff3fb
CW
145 regmap = devm_regmap_init(efuse->dev, &rockchip_efuse_bus,
146 efuse, &rockchip_efuse_regmap_config);
03a69568 147 if (IS_ERR(regmap)) {
c37ff3fb 148 dev_err(efuse->dev, "regmap init failed\n");
03a69568
Z
149 return PTR_ERR(regmap);
150 }
c37ff3fb
CW
151
152 econfig.dev = efuse->dev;
03a69568
Z
153 nvmem = nvmem_register(&econfig);
154 if (IS_ERR(nvmem))
155 return PTR_ERR(nvmem);
156
157 platform_set_drvdata(pdev, nvmem);
158
159 return 0;
160}
161
7e532f79 162static int rockchip_efuse_remove(struct platform_device *pdev)
03a69568
Z
163{
164 struct nvmem_device *nvmem = platform_get_drvdata(pdev);
165
166 return nvmem_unregister(nvmem);
167}
168
169static struct platform_driver rockchip_efuse_driver = {
170 .probe = rockchip_efuse_probe,
171 .remove = rockchip_efuse_remove,
172 .driver = {
173 .name = "rockchip-efuse",
174 .of_match_table = rockchip_efuse_match,
175 },
176};
177
178module_platform_driver(rockchip_efuse_driver);
179MODULE_DESCRIPTION("rockchip_efuse driver");
180MODULE_LICENSE("GPL v2");