nvmem: sunxi-sid: remove nvmem regmap dependency
authorSrinivas Kandagatla <srinivas.kandagatla@linaro.org>
Sun, 24 Apr 2016 19:28:10 +0000 (20:28 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 1 May 2016 21:01:00 +0000 (14:01 -0700)
This patch moves to nvmem support in the driver to use callback
instead of regmap.

Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/nvmem/Kconfig
drivers/nvmem/sunxi_sid.c

index df05b1a24514c649bd98630af4cd88ce17ba6c52..3041d48e71558f80131ee10c1295c7bca20ae083 100644 (file)
@@ -83,7 +83,6 @@ config ROCKCHIP_EFUSE
 config NVMEM_SUNXI_SID
        tristate "Allwinner SoCs SID support"
        depends on ARCH_SUNXI
-       select REGMAP_MMIO
        help
          This is a driver for the 'security ID' available on various Allwinner
          devices.
index bc88b40840552eb07b347fa9db41fc811ccf9c4b..1567ccca8de3f29c81d70e4d4f97ae53971685fc 100644 (file)
 #include <linux/nvmem-provider.h>
 #include <linux/of.h>
 #include <linux/platform_device.h>
-#include <linux/regmap.h>
 #include <linux/slab.h>
 #include <linux/random.h>
 
 static struct nvmem_config econfig = {
        .name = "sunxi-sid",
        .read_only = true,
+       .stride = 4,
+       .word_size = 1,
        .owner = THIS_MODULE,
 };
 
@@ -51,54 +52,23 @@ static u8 sunxi_sid_read_byte(const struct sunxi_sid *sid,
        return sid_key; /* Only return the last byte */
 }
 
-static int sunxi_sid_read(void *context,
-                         const void *reg, size_t reg_size,
-                         void *val, size_t val_size)
+static int sunxi_sid_read(void *context, unsigned int offset,
+                         void *val, size_t bytes)
 {
        struct sunxi_sid *sid = context;
-       unsigned int offset = *(u32 *)reg;
        u8 *buf = val;
 
-       while (val_size) {
-               *buf++ = sunxi_sid_read_byte(sid, offset);
-               val_size--;
-               offset++;
-       }
-
-       return 0;
-}
+       while (bytes--)
+               *buf++ = sunxi_sid_read_byte(sid, offset++);
 
-static int sunxi_sid_write(void *context, const void *data, size_t count)
-{
-       /* Unimplemented, dummy to keep regmap core happy */
        return 0;
 }
 
-static struct regmap_bus sunxi_sid_bus = {
-       .read = sunxi_sid_read,
-       .write = sunxi_sid_write,
-       .reg_format_endian_default = REGMAP_ENDIAN_NATIVE,
-       .val_format_endian_default = REGMAP_ENDIAN_NATIVE,
-};
-
-static bool sunxi_sid_writeable_reg(struct device *dev, unsigned int reg)
-{
-       return false;
-}
-
-static struct regmap_config sunxi_sid_regmap_config = {
-       .reg_bits = 32,
-       .val_bits = 8,
-       .reg_stride = 1,
-       .writeable_reg = sunxi_sid_writeable_reg,
-};
-
 static int sunxi_sid_probe(struct platform_device *pdev)
 {
        struct device *dev = &pdev->dev;
        struct resource *res;
        struct nvmem_device *nvmem;
-       struct regmap *regmap;
        struct sunxi_sid *sid;
        int ret, i, size;
        char *randomness;
@@ -113,16 +83,10 @@ static int sunxi_sid_probe(struct platform_device *pdev)
                return PTR_ERR(sid->base);
 
        size = resource_size(res) - 1;
-       sunxi_sid_regmap_config.max_register = size;
-
-       regmap = devm_regmap_init(dev, &sunxi_sid_bus, sid,
-                                 &sunxi_sid_regmap_config);
-       if (IS_ERR(regmap)) {
-               dev_err(dev, "regmap init failed\n");
-               return PTR_ERR(regmap);
-       }
-
+       econfig.size = resource_size(res);
        econfig.dev = dev;
+       econfig.reg_read = sunxi_sid_read;
+       econfig.priv = sid;
        nvmem = nvmem_register(&econfig);
        if (IS_ERR(nvmem))
                return PTR_ERR(nvmem);
This page took 0.026933 seconds and 5 git commands to generate.