2 * omap-ocp2scp.c - transform ocp interface protocol to scp protocol
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.
10 * Author: Kishon Vijay Abraham I <kishon@ti.com>
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.
19 #include <linux/module.h>
20 #include <linux/platform_device.h>
21 #include <linux/err.h>
22 #include <linux/pm_runtime.h>
24 #include <linux/of_platform.h>
25 #include <linux/platform_data/omap_ocp2scp.h>
28 * _count_resources - count for the number of resources
29 * @res: struct resource *
31 * Count and return the number of resources populated for the device that is
32 * connected to ocp2scp.
34 static unsigned _count_resources(struct resource
*res
)
38 while (res
->start
!= res
->end
) {
46 static int ocp2scp_remove_devices(struct device
*dev
, void *c
)
48 struct platform_device
*pdev
= to_platform_device(dev
);
50 platform_device_unregister(pdev
);
55 static int __devinit
omap_ocp2scp_probe(struct platform_device
*pdev
)
59 struct device_node
*np
= pdev
->dev
.of_node
;
60 struct platform_device
*pdev_child
;
61 struct omap_ocp2scp_platform_data
*pdata
= pdev
->dev
.platform_data
;
62 struct omap_ocp2scp_dev
*dev
;
65 ret
= of_platform_populate(np
, NULL
, NULL
, &pdev
->dev
);
68 "failed to add resources for ocp2scp child\n");
72 for (i
= 0, dev
= *pdata
->devices
; i
< pdata
->dev_cnt
; i
++,
74 res_cnt
= _count_resources(dev
->res
);
76 pdev_child
= platform_device_alloc(dev
->drv_name
,
80 "failed to allocate mem for ocp2scp child\n");
84 ret
= platform_device_add_resources(pdev_child
,
88 "failed to add resources for ocp2scp child\n");
92 pdev_child
->dev
.parent
= &pdev
->dev
;
94 ret
= platform_device_add(pdev_child
);
97 "failed to register ocp2scp child device\n");
102 dev_err(&pdev
->dev
, "OCP2SCP initialized without plat data\n");
106 pm_runtime_enable(&pdev
->dev
);
111 platform_device_put(pdev_child
);
114 device_for_each_child(&pdev
->dev
, NULL
, ocp2scp_remove_devices
);
119 static int __devexit
omap_ocp2scp_remove(struct platform_device
*pdev
)
121 pm_runtime_disable(&pdev
->dev
);
122 device_for_each_child(&pdev
->dev
, NULL
, ocp2scp_remove_devices
);
128 static const struct of_device_id omap_ocp2scp_id_table
[] = {
129 { .compatible
= "ti,omap-ocp2scp" },
132 MODULE_DEVICE_TABLE(of
, omap_ocp2scp_id_table
);
135 static struct platform_driver omap_ocp2scp_driver
= {
136 .probe
= omap_ocp2scp_probe
,
137 .remove
= __devexit_p(omap_ocp2scp_remove
),
139 .name
= "omap-ocp2scp",
140 .owner
= THIS_MODULE
,
141 .of_match_table
= of_match_ptr(omap_ocp2scp_id_table
),
145 module_platform_driver(omap_ocp2scp_driver
);
147 MODULE_ALIAS("platform: omap-ocp2scp");
148 MODULE_AUTHOR("Texas Instruments Inc.");
149 MODULE_DESCRIPTION("OMAP OCP2SCP driver");
150 MODULE_LICENSE("GPL v2");