qfprom.c 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  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. #include <linux/device.h>
  14. #include <linux/module.h>
  15. #include <linux/mod_devicetable.h>
  16. #include <linux/io.h>
  17. #include <linux/nvmem-provider.h>
  18. #include <linux/platform_device.h>
  19. struct qfprom_priv {
  20. void __iomem *base;
  21. };
  22. static int qfprom_reg_read(void *context,
  23. unsigned int reg, void *_val, size_t bytes)
  24. {
  25. struct qfprom_priv *priv = context;
  26. u8 *val = _val;
  27. int i = 0, words = bytes;
  28. while (words--)
  29. *val++ = readb(priv->base + reg + i++);
  30. return 0;
  31. }
  32. static struct nvmem_config econfig = {
  33. .name = "qfprom",
  34. .stride = 1,
  35. .word_size = 1,
  36. .reg_read = qfprom_reg_read,
  37. };
  38. static int qfprom_probe(struct platform_device *pdev)
  39. {
  40. struct device *dev = &pdev->dev;
  41. struct resource *res;
  42. struct nvmem_device *nvmem;
  43. struct qfprom_priv *priv;
  44. priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
  45. if (!priv)
  46. return -ENOMEM;
  47. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  48. priv->base = devm_ioremap_resource(dev, res);
  49. if (IS_ERR(priv->base))
  50. return PTR_ERR(priv->base);
  51. econfig.size = resource_size(res);
  52. econfig.dev = dev;
  53. econfig.priv = priv;
  54. nvmem = devm_nvmem_register(dev, &econfig);
  55. return PTR_ERR_OR_ZERO(nvmem);
  56. }
  57. static const struct of_device_id qfprom_of_match[] = {
  58. { .compatible = "qcom,qfprom",},
  59. {/* sentinel */},
  60. };
  61. MODULE_DEVICE_TABLE(of, qfprom_of_match);
  62. static struct platform_driver qfprom_driver = {
  63. .probe = qfprom_probe,
  64. .driver = {
  65. .name = "qcom,qfprom",
  66. .of_match_table = qfprom_of_match,
  67. },
  68. };
  69. module_platform_driver(qfprom_driver);
  70. MODULE_AUTHOR("Srinivas Kandagatla <srinivas.kandagatla@linaro.org>");
  71. MODULE_DESCRIPTION("Qualcomm QFPROM driver");
  72. MODULE_LICENSE("GPL v2");