asm-generic: make get_user() clear the destination on errors
[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 25#include <linux/platform_device.h>
03a69568
Z
26
27#define EFUSE_A_SHIFT 6
28#define EFUSE_A_MASK 0x3ff
29#define EFUSE_PGENB BIT(3)
30#define EFUSE_LOAD BIT(2)
31#define EFUSE_STROBE BIT(1)
32#define EFUSE_CSB BIT(0)
33
34#define REG_EFUSE_CTRL 0x0000
35#define REG_EFUSE_DOUT 0x0004
36
c37ff3fb 37struct rockchip_efuse_chip {
03a69568
Z
38 struct device *dev;
39 void __iomem *base;
c37ff3fb 40 struct clk *clk;
03a69568
Z
41};
42
cc907553
SK
43static int rockchip_efuse_read(void *context, unsigned int offset,
44 void *val, size_t bytes)
03a69568 45{
c37ff3fb 46 struct rockchip_efuse_chip *efuse = context;
03a69568
Z
47 u8 *buf = val;
48 int ret;
49
c37ff3fb 50 ret = clk_prepare_enable(efuse->clk);
03a69568 51 if (ret < 0) {
c37ff3fb 52 dev_err(efuse->dev, "failed to prepare/enable efuse clk\n");
03a69568
Z
53 return ret;
54 }
55
c37ff3fb 56 writel(EFUSE_LOAD | EFUSE_PGENB, efuse->base + REG_EFUSE_CTRL);
03a69568 57 udelay(1);
cc907553 58 while (bytes--) {
c37ff3fb 59 writel(readl(efuse->base + REG_EFUSE_CTRL) &
03a69568 60 (~(EFUSE_A_MASK << EFUSE_A_SHIFT)),
c37ff3fb
CW
61 efuse->base + REG_EFUSE_CTRL);
62 writel(readl(efuse->base + REG_EFUSE_CTRL) |
cc907553 63 ((offset++ & EFUSE_A_MASK) << EFUSE_A_SHIFT),
c37ff3fb 64 efuse->base + REG_EFUSE_CTRL);
03a69568 65 udelay(1);
c37ff3fb
CW
66 writel(readl(efuse->base + REG_EFUSE_CTRL) |
67 EFUSE_STROBE, efuse->base + REG_EFUSE_CTRL);
03a69568 68 udelay(1);
c37ff3fb
CW
69 *buf++ = readb(efuse->base + REG_EFUSE_DOUT);
70 writel(readl(efuse->base + REG_EFUSE_CTRL) &
71 (~EFUSE_STROBE), efuse->base + REG_EFUSE_CTRL);
03a69568 72 udelay(1);
03a69568
Z
73 }
74
75 /* Switch to standby mode */
c37ff3fb 76 writel(EFUSE_PGENB | EFUSE_CSB, efuse->base + REG_EFUSE_CTRL);
03a69568 77
c37ff3fb 78 clk_disable_unprepare(efuse->clk);
03a69568
Z
79
80 return 0;
81}
82
03a69568
Z
83static struct nvmem_config econfig = {
84 .name = "rockchip-efuse",
85 .owner = THIS_MODULE,
cc907553
SK
86 .stride = 1,
87 .word_size = 1,
03a69568
Z
88 .read_only = true,
89};
90
91static const struct of_device_id rockchip_efuse_match[] = {
c37ff3fb 92 { .compatible = "rockchip,rockchip-efuse", },
03a69568
Z
93 { /* sentinel */},
94};
95MODULE_DEVICE_TABLE(of, rockchip_efuse_match);
96
7e532f79 97static int rockchip_efuse_probe(struct platform_device *pdev)
03a69568 98{
03a69568
Z
99 struct resource *res;
100 struct nvmem_device *nvmem;
c37ff3fb 101 struct rockchip_efuse_chip *efuse;
03a69568 102
c37ff3fb
CW
103 efuse = devm_kzalloc(&pdev->dev, sizeof(struct rockchip_efuse_chip),
104 GFP_KERNEL);
105 if (!efuse)
106 return -ENOMEM;
03a69568 107
c37ff3fb
CW
108 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
109 efuse->base = devm_ioremap_resource(&pdev->dev, res);
110 if (IS_ERR(efuse->base))
111 return PTR_ERR(efuse->base);
03a69568 112
c37ff3fb
CW
113 efuse->clk = devm_clk_get(&pdev->dev, "pclk_efuse");
114 if (IS_ERR(efuse->clk))
115 return PTR_ERR(efuse->clk);
03a69568 116
c37ff3fb 117 efuse->dev = &pdev->dev;
cc907553
SK
118 econfig.size = resource_size(res);
119 econfig.reg_read = rockchip_efuse_read;
120 econfig.priv = efuse;
c37ff3fb 121 econfig.dev = efuse->dev;
03a69568
Z
122 nvmem = nvmem_register(&econfig);
123 if (IS_ERR(nvmem))
124 return PTR_ERR(nvmem);
125
126 platform_set_drvdata(pdev, nvmem);
127
128 return 0;
129}
130
7e532f79 131static int rockchip_efuse_remove(struct platform_device *pdev)
03a69568
Z
132{
133 struct nvmem_device *nvmem = platform_get_drvdata(pdev);
134
135 return nvmem_unregister(nvmem);
136}
137
138static struct platform_driver rockchip_efuse_driver = {
139 .probe = rockchip_efuse_probe,
140 .remove = rockchip_efuse_remove,
141 .driver = {
142 .name = "rockchip-efuse",
143 .of_match_table = rockchip_efuse_match,
144 },
145};
146
147module_platform_driver(rockchip_efuse_driver);
148MODULE_DESCRIPTION("rockchip_efuse driver");
149MODULE_LICENSE("GPL v2");