blob: 58c998b2e3bcdddccd8dbc119dffcfe93dfb688e [file] [log] [blame]
Andrew-CT Chen4c7e4fe2015-12-07 10:58:11 +00001/*
2 * Copyright (c) 2015 MediaTek Inc.
3 * Author: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14
15#include <linux/device.h>
16#include <linux/module.h>
Randy Dunlapac316722018-06-19 22:47:28 -070017#include <linux/mod_devicetable.h>
Srinivas Kandagatlaba360fd2016-05-02 19:36:13 +010018#include <linux/io.h>
Andrew-CT Chen4c7e4fe2015-12-07 10:58:11 +000019#include <linux/nvmem-provider.h>
20#include <linux/platform_device.h>
Andrew-CT Chen4c7e4fe2015-12-07 10:58:11 +000021
Masahiro Yamadaa48f1ff2017-10-21 01:57:40 +090022struct mtk_efuse_priv {
23 void __iomem *base;
24};
25
Srinivas Kandagatlaba360fd2016-05-02 19:36:13 +010026static int mtk_reg_read(void *context,
27 unsigned int reg, void *_val, size_t bytes)
28{
Masahiro Yamadaa48f1ff2017-10-21 01:57:40 +090029 struct mtk_efuse_priv *priv = context;
Srinivas Kandagatlaba360fd2016-05-02 19:36:13 +010030 u32 *val = _val;
31 int i = 0, words = bytes / 4;
32
33 while (words--)
Masahiro Yamadaa48f1ff2017-10-21 01:57:40 +090034 *val++ = readl(priv->base + reg + (i++ * 4));
Srinivas Kandagatlaba360fd2016-05-02 19:36:13 +010035
36 return 0;
37}
38
39static int mtk_reg_write(void *context,
40 unsigned int reg, void *_val, size_t bytes)
41{
Masahiro Yamadaa48f1ff2017-10-21 01:57:40 +090042 struct mtk_efuse_priv *priv = context;
Srinivas Kandagatlaba360fd2016-05-02 19:36:13 +010043 u32 *val = _val;
44 int i = 0, words = bytes / 4;
45
46 while (words--)
Masahiro Yamadaa48f1ff2017-10-21 01:57:40 +090047 writel(*val++, priv->base + reg + (i++ * 4));
Srinivas Kandagatlaba360fd2016-05-02 19:36:13 +010048
49 return 0;
50}
Andrew-CT Chen4c7e4fe2015-12-07 10:58:11 +000051
52static int mtk_efuse_probe(struct platform_device *pdev)
53{
54 struct device *dev = &pdev->dev;
55 struct resource *res;
56 struct nvmem_device *nvmem;
Masahiro Yamada4dd5f602017-10-21 01:57:39 +090057 struct nvmem_config econfig = {};
Masahiro Yamadaa48f1ff2017-10-21 01:57:40 +090058 struct mtk_efuse_priv *priv;
59
60 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
61 if (!priv)
62 return -ENOMEM;
Andrew-CT Chen4c7e4fe2015-12-07 10:58:11 +000063
64 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Masahiro Yamadaa48f1ff2017-10-21 01:57:40 +090065 priv->base = devm_ioremap_resource(dev, res);
66 if (IS_ERR(priv->base))
67 return PTR_ERR(priv->base);
Andrew-CT Chen4c7e4fe2015-12-07 10:58:11 +000068
Masahiro Yamada4dd5f602017-10-21 01:57:39 +090069 econfig.stride = 4;
70 econfig.word_size = 4;
71 econfig.reg_read = mtk_reg_read;
72 econfig.reg_write = mtk_reg_write;
73 econfig.size = resource_size(res);
Masahiro Yamadaa48f1ff2017-10-21 01:57:40 +090074 econfig.priv = priv;
Masahiro Yamada4dd5f602017-10-21 01:57:39 +090075 econfig.dev = dev;
Andrey Smirnov7e68a642018-03-09 14:47:03 +000076 nvmem = devm_nvmem_register(dev, &econfig);
Andrew-CT Chen4c7e4fe2015-12-07 10:58:11 +000077
Andrey Smirnov7e68a642018-03-09 14:47:03 +000078 return PTR_ERR_OR_ZERO(nvmem);
Andrew-CT Chen4c7e4fe2015-12-07 10:58:11 +000079}
80
81static const struct of_device_id mtk_efuse_of_match[] = {
82 { .compatible = "mediatek,mt8173-efuse",},
83 { .compatible = "mediatek,efuse",},
84 {/* sentinel */},
85};
86MODULE_DEVICE_TABLE(of, mtk_efuse_of_match);
87
88static struct platform_driver mtk_efuse_driver = {
89 .probe = mtk_efuse_probe,
Andrew-CT Chen4c7e4fe2015-12-07 10:58:11 +000090 .driver = {
91 .name = "mediatek,efuse",
92 .of_match_table = mtk_efuse_of_match,
93 },
94};
Andrew-CT Chen564e7f82016-02-22 11:24:05 +000095
96static int __init mtk_efuse_init(void)
97{
98 int ret;
99
100 ret = platform_driver_register(&mtk_efuse_driver);
101 if (ret) {
102 pr_err("Failed to register efuse driver\n");
103 return ret;
104 }
105
106 return 0;
107}
108
109static void __exit mtk_efuse_exit(void)
110{
111 return platform_driver_unregister(&mtk_efuse_driver);
112}
113
114subsys_initcall(mtk_efuse_init);
115module_exit(mtk_efuse_exit);
116
Andrew-CT Chen4c7e4fe2015-12-07 10:58:11 +0000117MODULE_AUTHOR("Andrew-CT Chen <andrew-ct.chen@mediatek.com>");
118MODULE_DESCRIPTION("Mediatek EFUSE driver");
119MODULE_LICENSE("GPL v2");