2 * Copyright (C) 2015 Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
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.
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.
14 #include <linux/device.h>
15 #include <linux/module.h>
16 #include <linux/mod_devicetable.h>
18 #include <linux/nvmem-provider.h>
19 #include <linux/platform_device.h>
25 static int qfprom_reg_read(void *context
,
26 unsigned int reg
, void *_val
, size_t bytes
)
28 struct qfprom_priv
*priv
= context
;
30 int i
= 0, words
= bytes
;
33 *val
++ = readb(priv
->base
+ reg
+ i
++);
38 static int qfprom_reg_write(void *context
,
39 unsigned int reg
, void *_val
, size_t bytes
)
41 struct qfprom_priv
*priv
= context
;
43 int i
= 0, words
= bytes
;
46 writeb(*val
++, priv
->base
+ reg
+ i
++);
51 static struct nvmem_config econfig
= {
55 .reg_read
= qfprom_reg_read
,
56 .reg_write
= qfprom_reg_write
,
59 static int qfprom_probe(struct platform_device
*pdev
)
61 struct device
*dev
= &pdev
->dev
;
63 struct nvmem_device
*nvmem
;
64 struct qfprom_priv
*priv
;
66 priv
= devm_kzalloc(dev
, sizeof(*priv
), GFP_KERNEL
);
70 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
71 priv
->base
= devm_ioremap_resource(dev
, res
);
72 if (IS_ERR(priv
->base
))
73 return PTR_ERR(priv
->base
);
75 econfig
.size
= resource_size(res
);
79 nvmem
= devm_nvmem_register(dev
, &econfig
);
81 return PTR_ERR_OR_ZERO(nvmem
);
84 static const struct of_device_id qfprom_of_match
[] = {
85 { .compatible
= "qcom,qfprom",},
88 MODULE_DEVICE_TABLE(of
, qfprom_of_match
);
90 static struct platform_driver qfprom_driver
= {
91 .probe
= qfprom_probe
,
93 .name
= "qcom,qfprom",
94 .of_match_table
= qfprom_of_match
,
97 module_platform_driver(qfprom_driver
);
98 MODULE_AUTHOR("Srinivas Kandagatla <srinivas.kandagatla@linaro.org>");
99 MODULE_DESCRIPTION("Qualcomm QFPROM driver");
100 MODULE_LICENSE("GPL v2");