1
2
3
4
5
6
7
8
9#include <linux/io.h>
10#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
17#define OCP2SCP_TIMING 0x18
18#define SYNC2_MASK 0xf
19
20static 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
29static int omap_ocp2scp_probe(struct platform_device *pdev)
30{
31 int ret;
32 u32 reg;
33 void __iomem *regs;
34 struct resource *res;
35 struct device_node *np = pdev->dev.of_node;
36
37 if (np) {
38 ret = of_platform_populate(np, NULL, NULL, &pdev->dev);
39 if (ret) {
40 dev_err(&pdev->dev,
41 "failed to add resources for ocp2scp child\n");
42 goto err0;
43 }
44 }
45
46 pm_runtime_enable(&pdev->dev);
47
48
49
50
51
52
53
54
55
56
57
58
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);
63 if (IS_ERR(regs)) {
64 ret = PTR_ERR(regs);
65 goto err1;
66 }
67
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 }
75
76 return 0;
77
78err1:
79 pm_runtime_disable(&pdev->dev);
80
81err0:
82 device_for_each_child(&pdev->dev, NULL, ocp2scp_remove_devices);
83
84 return ret;
85}
86
87static int omap_ocp2scp_remove(struct platform_device *pdev)
88{
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" },
98 { .compatible = "ti,am437x-ocp2scp" },
99 {}
100};
101MODULE_DEVICE_TABLE(of, omap_ocp2scp_id_table);
102#endif
103
104static struct platform_driver omap_ocp2scp_driver = {
105 .probe = omap_ocp2scp_probe,
106 .remove = omap_ocp2scp_remove,
107 .driver = {
108 .name = "omap-ocp2scp",
109 .of_match_table = of_match_ptr(omap_ocp2scp_id_table),
110 },
111};
112
113module_platform_driver(omap_ocp2scp_driver);
114
115MODULE_ALIAS("platform:omap-ocp2scp");
116MODULE_AUTHOR("Texas Instruments Inc.");
117MODULE_DESCRIPTION("OMAP OCP2SCP driver");
118MODULE_LICENSE("GPL v2");
119