omap-ocp2scp.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*
  2. * omap-ocp2scp.c - transform ocp interface protocol to scp protocol
  3. *
  4. * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * Author: Kishon Vijay Abraham I <kishon@ti.com>
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. */
  18. #include <linux/io.h>
  19. #include <linux/module.h>
  20. #include <linux/platform_device.h>
  21. #include <linux/err.h>
  22. #include <linux/pm_runtime.h>
  23. #include <linux/of.h>
  24. #include <linux/of_platform.h>
  25. #define OCP2SCP_TIMING 0x18
  26. #define SYNC2_MASK 0xf
  27. static int ocp2scp_remove_devices(struct device *dev, void *c)
  28. {
  29. struct platform_device *pdev = to_platform_device(dev);
  30. platform_device_unregister(pdev);
  31. return 0;
  32. }
  33. static int omap_ocp2scp_probe(struct platform_device *pdev)
  34. {
  35. int ret;
  36. u32 reg;
  37. void __iomem *regs;
  38. struct resource *res;
  39. struct device_node *np = pdev->dev.of_node;
  40. if (np) {
  41. ret = of_platform_populate(np, NULL, NULL, &pdev->dev);
  42. if (ret) {
  43. dev_err(&pdev->dev,
  44. "failed to add resources for ocp2scp child\n");
  45. goto err0;
  46. }
  47. }
  48. pm_runtime_enable(&pdev->dev);
  49. /*
  50. * As per AM572x TRM: http://www.ti.com/lit/ug/spruhz6/spruhz6.pdf
  51. * under section 26.3.2.2, table 26-26 OCP2SCP TIMING Caution;
  52. * As per OMAP4430 TRM: http://www.ti.com/lit/ug/swpu231ap/swpu231ap.pdf
  53. * under section 23.12.6.2.2 , Table 23-1213 OCP2SCP TIMING Caution;
  54. * As per OMAP4460 TRM: http://www.ti.com/lit/ug/swpu235ab/swpu235ab.pdf
  55. * under section 23.12.6.2.2, Table 23-1213 OCP2SCP TIMING Caution;
  56. * As per OMAP543x TRM http://www.ti.com/lit/pdf/swpu249
  57. * under section 27.3.2.2, Table 27-27 OCP2SCP TIMING Caution;
  58. *
  59. * Read path of OCP2SCP is not working properly due to low reset value
  60. * of SYNC2 parameter in OCP2SCP. Suggested reset value is 0x6 or more.
  61. */
  62. if (!of_device_is_compatible(np, "ti,am437x-ocp2scp")) {
  63. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  64. regs = devm_ioremap_resource(&pdev->dev, res);
  65. if (IS_ERR(regs))
  66. goto err0;
  67. pm_runtime_get_sync(&pdev->dev);
  68. reg = readl_relaxed(regs + OCP2SCP_TIMING);
  69. reg &= ~(SYNC2_MASK);
  70. reg |= 0x6;
  71. writel_relaxed(reg, regs + OCP2SCP_TIMING);
  72. pm_runtime_put_sync(&pdev->dev);
  73. }
  74. return 0;
  75. err0:
  76. device_for_each_child(&pdev->dev, NULL, ocp2scp_remove_devices);
  77. return ret;
  78. }
  79. static int omap_ocp2scp_remove(struct platform_device *pdev)
  80. {
  81. pm_runtime_disable(&pdev->dev);
  82. device_for_each_child(&pdev->dev, NULL, ocp2scp_remove_devices);
  83. return 0;
  84. }
  85. #ifdef CONFIG_OF
  86. static const struct of_device_id omap_ocp2scp_id_table[] = {
  87. { .compatible = "ti,omap-ocp2scp" },
  88. { .compatible = "ti,am437x-ocp2scp" },
  89. {}
  90. };
  91. MODULE_DEVICE_TABLE(of, omap_ocp2scp_id_table);
  92. #endif
  93. static struct platform_driver omap_ocp2scp_driver = {
  94. .probe = omap_ocp2scp_probe,
  95. .remove = omap_ocp2scp_remove,
  96. .driver = {
  97. .name = "omap-ocp2scp",
  98. .of_match_table = of_match_ptr(omap_ocp2scp_id_table),
  99. },
  100. };
  101. module_platform_driver(omap_ocp2scp_driver);
  102. MODULE_ALIAS("platform:omap-ocp2scp");
  103. MODULE_AUTHOR("Texas Instruments Inc.");
  104. MODULE_DESCRIPTION("OMAP OCP2SCP driver");
  105. MODULE_LICENSE("GPL v2");