blob: 4f650baad9835beec7fbc9f926b661b815b71a07 [file] [log] [blame]
Srinivas Kandagatla4ab11992015-07-27 12:15:00 +01001/*
2 * Copyright (C) 2015 Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 and
6 * only version 2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14#include <linux/device.h>
15#include <linux/module.h>
Srinivas Kandagatla382c62f2016-04-24 20:28:08 +010016#include <linux/io.h>
Srinivas Kandagatla4ab11992015-07-27 12:15:00 +010017#include <linux/nvmem-provider.h>
18#include <linux/platform_device.h>
Srinivas Kandagatla4ab11992015-07-27 12:15:00 +010019
Masahiro Yamadaec3672b2017-10-21 01:57:41 +090020struct qfprom_priv {
21 void __iomem *base;
22};
23
Srinivas Kandagatla382c62f2016-04-24 20:28:08 +010024static int qfprom_reg_read(void *context,
25 unsigned int reg, void *_val, size_t bytes)
26{
Masahiro Yamadaec3672b2017-10-21 01:57:41 +090027 struct qfprom_priv *priv = context;
Vivek Gautam01d0d2c2017-01-04 16:18:09 +000028 u8 *val = _val;
29 int i = 0, words = bytes;
Srinivas Kandagatla4ab11992015-07-27 12:15:00 +010030
Srinivas Kandagatla382c62f2016-04-24 20:28:08 +010031 while (words--)
Masahiro Yamadaec3672b2017-10-21 01:57:41 +090032 *val++ = readb(priv->base + reg + i++);
Srinivas Kandagatla382c62f2016-04-24 20:28:08 +010033
34 return 0;
35}
36
37static int qfprom_reg_write(void *context,
38 unsigned int reg, void *_val, size_t bytes)
39{
Masahiro Yamadaec3672b2017-10-21 01:57:41 +090040 struct qfprom_priv *priv = context;
Vivek Gautam01d0d2c2017-01-04 16:18:09 +000041 u8 *val = _val;
42 int i = 0, words = bytes;
Srinivas Kandagatla382c62f2016-04-24 20:28:08 +010043
44 while (words--)
Masahiro Yamadaec3672b2017-10-21 01:57:41 +090045 writeb(*val++, priv->base + reg + i++);
Srinivas Kandagatla382c62f2016-04-24 20:28:08 +010046
47 return 0;
48}
Srinivas Kandagatla4ab11992015-07-27 12:15:00 +010049
Srinivas Kandagatla382c62f2016-04-24 20:28:08 +010050static struct nvmem_config econfig = {
51 .name = "qfprom",
Vivek Gautam01d0d2c2017-01-04 16:18:09 +000052 .stride = 1,
Srinivas Kandagatla382c62f2016-04-24 20:28:08 +010053 .word_size = 1,
54 .reg_read = qfprom_reg_read,
55 .reg_write = qfprom_reg_write,
56};
57
Srinivas Kandagatla4ab11992015-07-27 12:15:00 +010058static int qfprom_probe(struct platform_device *pdev)
59{
60 struct device *dev = &pdev->dev;
61 struct resource *res;
62 struct nvmem_device *nvmem;
Masahiro Yamadaec3672b2017-10-21 01:57:41 +090063 struct qfprom_priv *priv;
64
65 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
66 if (!priv)
67 return -ENOMEM;
Srinivas Kandagatla4ab11992015-07-27 12:15:00 +010068
69 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Masahiro Yamadaec3672b2017-10-21 01:57:41 +090070 priv->base = devm_ioremap_resource(dev, res);
71 if (IS_ERR(priv->base))
72 return PTR_ERR(priv->base);
Srinivas Kandagatla4ab11992015-07-27 12:15:00 +010073
Srinivas Kandagatla382c62f2016-04-24 20:28:08 +010074 econfig.size = resource_size(res);
Srinivas Kandagatla4ab11992015-07-27 12:15:00 +010075 econfig.dev = dev;
Masahiro Yamadaec3672b2017-10-21 01:57:41 +090076 econfig.priv = priv;
Srinivas Kandagatla382c62f2016-04-24 20:28:08 +010077
Andrey Smirnove5692ef2018-03-09 14:47:09 +000078 nvmem = devm_nvmem_register(dev, &econfig);
Srinivas Kandagatla4ab11992015-07-27 12:15:00 +010079
Andrey Smirnove5692ef2018-03-09 14:47:09 +000080 return PTR_ERR_OR_ZERO(nvmem);
Srinivas Kandagatla4ab11992015-07-27 12:15:00 +010081}
82
83static const struct of_device_id qfprom_of_match[] = {
84 { .compatible = "qcom,qfprom",},
85 {/* sentinel */},
86};
87MODULE_DEVICE_TABLE(of, qfprom_of_match);
88
89static struct platform_driver qfprom_driver = {
90 .probe = qfprom_probe,
Srinivas Kandagatla4ab11992015-07-27 12:15:00 +010091 .driver = {
92 .name = "qcom,qfprom",
93 .of_match_table = qfprom_of_match,
94 },
95};
96module_platform_driver(qfprom_driver);
97MODULE_AUTHOR("Srinivas Kandagatla <srinivas.kandagatla@linaro.org>");
98MODULE_DESCRIPTION("Qualcomm QFPROM driver");
99MODULE_LICENSE("GPL v2");