blob: e02d0656242b8c9434686c6deb59e27a5ef2fb66 [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Kishon Vijay Abraham I26a84b32012-08-22 14:10:02 +05302/*
3 * omap-ocp2scp.c - transform ocp interface protocol to scp protocol
4 *
5 * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com
Kishon Vijay Abraham I26a84b32012-08-22 14:10:02 +05306 * Author: Kishon Vijay Abraham I <kishon@ti.com>
Kishon Vijay Abraham I26a84b32012-08-22 14:10:02 +05307 */
8
Kishon Vijay Abraham Icdf61242015-03-17 16:54:51 +05309#include <linux/io.h>
Kishon Vijay Abraham I26a84b32012-08-22 14:10:02 +053010#include <linux/module.h>
11#include <linux/platform_device.h>
12#include <linux/err.h>
13#include <linux/pm_runtime.h>
14#include <linux/of.h>
15#include <linux/of_platform.h>
16
Kishon Vijay Abraham Icdf61242015-03-17 16:54:51 +053017#define OCP2SCP_TIMING 0x18
18#define SYNC2_MASK 0xf
19
Kishon Vijay Abraham I26a84b32012-08-22 14:10:02 +053020static int ocp2scp_remove_devices(struct device *dev, void *c)
21{
22 struct platform_device *pdev = to_platform_device(dev);
23
24 platform_device_unregister(pdev);
25
26 return 0;
27}
28
Greg Kroah-Hartman0fe763c2012-12-21 15:14:44 -080029static int omap_ocp2scp_probe(struct platform_device *pdev)
Kishon Vijay Abraham I26a84b32012-08-22 14:10:02 +053030{
Kishon Vijay Abraham I01333702012-11-02 13:44:46 +053031 int ret;
Kishon Vijay Abraham Icdf61242015-03-17 16:54:51 +053032 u32 reg;
33 void __iomem *regs;
34 struct resource *res;
Kishon Vijay Abraham I01333702012-11-02 13:44:46 +053035 struct device_node *np = pdev->dev.of_node;
Kishon Vijay Abraham I26a84b32012-08-22 14:10:02 +053036
37 if (np) {
38 ret = of_platform_populate(np, NULL, NULL, &pdev->dev);
39 if (ret) {
Kishon Vijay Abraham I01333702012-11-02 13:44:46 +053040 dev_err(&pdev->dev,
41 "failed to add resources for ocp2scp child\n");
Kishon Vijay Abraham I26a84b32012-08-22 14:10:02 +053042 goto err0;
43 }
44 }
Kishon Vijay Abraham I01333702012-11-02 13:44:46 +053045
Kishon Vijay Abraham I26a84b32012-08-22 14:10:02 +053046 pm_runtime_enable(&pdev->dev);
Kishon Vijay Abraham Icdf61242015-03-17 16:54:51 +053047 /*
48 * As per AM572x TRM: http://www.ti.com/lit/ug/spruhz6/spruhz6.pdf
49 * under section 26.3.2.2, table 26-26 OCP2SCP TIMING Caution;
50 * As per OMAP4430 TRM: http://www.ti.com/lit/ug/swpu231ap/swpu231ap.pdf
51 * under section 23.12.6.2.2 , Table 23-1213 OCP2SCP TIMING Caution;
52 * As per OMAP4460 TRM: http://www.ti.com/lit/ug/swpu235ab/swpu235ab.pdf
53 * under section 23.12.6.2.2, Table 23-1213 OCP2SCP TIMING Caution;
54 * As per OMAP543x TRM http://www.ti.com/lit/pdf/swpu249
55 * under section 27.3.2.2, Table 27-27 OCP2SCP TIMING Caution;
56 *
57 * Read path of OCP2SCP is not working properly due to low reset value
58 * of SYNC2 parameter in OCP2SCP. Suggested reset value is 0x6 or more.
59 */
60 if (!of_device_is_compatible(np, "ti,am437x-ocp2scp")) {
61 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
62 regs = devm_ioremap_resource(&pdev->dev, res);
Kishon Vijay Abraham I672647a2017-07-11 15:46:38 +053063 if (IS_ERR(regs)) {
64 ret = PTR_ERR(regs);
65 goto err1;
66 }
Kishon Vijay Abraham Icdf61242015-03-17 16:54:51 +053067
68 pm_runtime_get_sync(&pdev->dev);
69 reg = readl_relaxed(regs + OCP2SCP_TIMING);
70 reg &= ~(SYNC2_MASK);
71 reg |= 0x6;
72 writel_relaxed(reg, regs + OCP2SCP_TIMING);
73 pm_runtime_put_sync(&pdev->dev);
74 }
Kishon Vijay Abraham I26a84b32012-08-22 14:10:02 +053075
76 return 0;
77
Kishon Vijay Abraham I672647a2017-07-11 15:46:38 +053078err1:
79 pm_runtime_disable(&pdev->dev);
80
Kishon Vijay Abraham I26a84b32012-08-22 14:10:02 +053081err0:
82 device_for_each_child(&pdev->dev, NULL, ocp2scp_remove_devices);
83
84 return ret;
85}
86
Greg Kroah-Hartman0fe763c2012-12-21 15:14:44 -080087static int omap_ocp2scp_remove(struct platform_device *pdev)
Kishon Vijay Abraham I26a84b32012-08-22 14:10:02 +053088{
89 pm_runtime_disable(&pdev->dev);
90 device_for_each_child(&pdev->dev, NULL, ocp2scp_remove_devices);
91
92 return 0;
93}
94
95#ifdef CONFIG_OF
96static const struct of_device_id omap_ocp2scp_id_table[] = {
97 { .compatible = "ti,omap-ocp2scp" },
Kishon Vijay Abraham Icdf61242015-03-17 16:54:51 +053098 { .compatible = "ti,am437x-ocp2scp" },
Kishon Vijay Abraham I26a84b32012-08-22 14:10:02 +053099 {}
100};
Kishon Vijay Abraham I46ca6812012-08-23 23:10:26 +0530101MODULE_DEVICE_TABLE(of, omap_ocp2scp_id_table);
Kishon Vijay Abraham I26a84b32012-08-22 14:10:02 +0530102#endif
103
104static struct platform_driver omap_ocp2scp_driver = {
105 .probe = omap_ocp2scp_probe,
Greg Kroah-Hartman0fe763c2012-12-21 15:14:44 -0800106 .remove = omap_ocp2scp_remove,
Kishon Vijay Abraham I26a84b32012-08-22 14:10:02 +0530107 .driver = {
108 .name = "omap-ocp2scp",
Kishon Vijay Abraham I26a84b32012-08-22 14:10:02 +0530109 .of_match_table = of_match_ptr(omap_ocp2scp_id_table),
110 },
111};
112
113module_platform_driver(omap_ocp2scp_driver);
114
Axel Lin7ef71b72015-09-25 08:51:42 +0800115MODULE_ALIAS("platform:omap-ocp2scp");
Kishon Vijay Abraham I26a84b32012-08-22 14:10:02 +0530116MODULE_AUTHOR("Texas Instruments Inc.");
117MODULE_DESCRIPTION("OMAP OCP2SCP driver");
118MODULE_LICENSE("GPL v2");