Merge tag 'gpio-v3.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[linux-2.6.git] / drivers / usb / chipidea / ci_hdrc_imx.c
blobbb5d976e5b818e14cc4ff2a3506d3a82e182adf0
1 /*
2 * Copyright 2012 Freescale Semiconductor, Inc.
3 * Copyright (C) 2012 Marek Vasut <marex@denx.de>
4 * on behalf of DENX Software Engineering GmbH
6 * The code contained herein is licensed under the GNU General Public
7 * License. You may obtain a copy of the GNU General Public License
8 * Version 2 or later at the following locations:
10 * http://www.opensource.org/licenses/gpl-license.html
11 * http://www.gnu.org/copyleft/gpl.html
14 #include <linux/module.h>
15 #include <linux/of_platform.h>
16 #include <linux/of_gpio.h>
17 #include <linux/platform_device.h>
18 #include <linux/pm_runtime.h>
19 #include <linux/dma-mapping.h>
20 #include <linux/usb/chipidea.h>
21 #include <linux/clk.h>
23 #include "ci.h"
24 #include "ci_hdrc_imx.h"
26 struct ci_hdrc_imx_data {
27 struct usb_phy *phy;
28 struct platform_device *ci_pdev;
29 struct clk *clk;
30 struct imx_usbmisc_data *usbmisc_data;
33 /* Common functions shared by usbmisc drivers */
35 static struct imx_usbmisc_data *usbmisc_get_init_data(struct device *dev)
37 struct device_node *np = dev->of_node;
38 struct of_phandle_args args;
39 struct imx_usbmisc_data *data;
40 int ret;
43 * In case the fsl,usbmisc property is not present this device doesn't
44 * need usbmisc. Return NULL (which is no error here)
46 if (!of_get_property(np, "fsl,usbmisc", NULL))
47 return NULL;
49 data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
50 if (!data)
51 return ERR_PTR(-ENOMEM);
53 ret = of_parse_phandle_with_args(np, "fsl,usbmisc", "#index-cells",
54 0, &args);
55 if (ret) {
56 dev_err(dev, "Failed to parse property fsl,usbmisc, errno %d\n",
57 ret);
58 return ERR_PTR(ret);
61 data->index = args.args[0];
62 of_node_put(args.np);
64 if (of_find_property(np, "disable-over-current", NULL))
65 data->disable_oc = 1;
67 if (of_find_property(np, "external-vbus-divider", NULL))
68 data->evdo = 1;
70 return data;
73 /* End of common functions shared by usbmisc drivers*/
75 static int ci_hdrc_imx_probe(struct platform_device *pdev)
77 struct ci_hdrc_imx_data *data;
78 struct ci_hdrc_platform_data pdata = {
79 .name = "ci_hdrc_imx",
80 .capoffset = DEF_CAPOFFSET,
81 .flags = CI_HDRC_REQUIRE_TRANSCEIVER |
82 CI_HDRC_DISABLE_STREAMING,
84 int ret;
86 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
87 if (!data) {
88 dev_err(&pdev->dev, "Failed to allocate ci_hdrc-imx data!\n");
89 return -ENOMEM;
92 data->usbmisc_data = usbmisc_get_init_data(&pdev->dev);
93 if (IS_ERR(data->usbmisc_data))
94 return PTR_ERR(data->usbmisc_data);
96 data->clk = devm_clk_get(&pdev->dev, NULL);
97 if (IS_ERR(data->clk)) {
98 dev_err(&pdev->dev,
99 "Failed to get clock, err=%ld\n", PTR_ERR(data->clk));
100 return PTR_ERR(data->clk);
103 ret = clk_prepare_enable(data->clk);
104 if (ret) {
105 dev_err(&pdev->dev,
106 "Failed to prepare or enable clock, err=%d\n", ret);
107 return ret;
110 data->phy = devm_usb_get_phy_by_phandle(&pdev->dev, "fsl,usbphy", 0);
111 if (IS_ERR(data->phy)) {
112 ret = PTR_ERR(data->phy);
113 goto err_clk;
116 pdata.phy = data->phy;
118 ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
119 if (ret)
120 goto err_clk;
122 if (data->usbmisc_data) {
123 ret = imx_usbmisc_init(data->usbmisc_data);
124 if (ret) {
125 dev_err(&pdev->dev, "usbmisc init failed, ret=%d\n",
126 ret);
127 goto err_clk;
131 data->ci_pdev = ci_hdrc_add_device(&pdev->dev,
132 pdev->resource, pdev->num_resources,
133 &pdata);
134 if (IS_ERR(data->ci_pdev)) {
135 ret = PTR_ERR(data->ci_pdev);
136 dev_err(&pdev->dev,
137 "Can't register ci_hdrc platform device, err=%d\n",
138 ret);
139 goto err_clk;
142 if (data->usbmisc_data) {
143 ret = imx_usbmisc_init_post(data->usbmisc_data);
144 if (ret) {
145 dev_err(&pdev->dev, "usbmisc post failed, ret=%d\n",
146 ret);
147 goto disable_device;
151 platform_set_drvdata(pdev, data);
153 pm_runtime_no_callbacks(&pdev->dev);
154 pm_runtime_enable(&pdev->dev);
156 return 0;
158 disable_device:
159 ci_hdrc_remove_device(data->ci_pdev);
160 err_clk:
161 clk_disable_unprepare(data->clk);
162 return ret;
165 static int ci_hdrc_imx_remove(struct platform_device *pdev)
167 struct ci_hdrc_imx_data *data = platform_get_drvdata(pdev);
169 pm_runtime_disable(&pdev->dev);
170 ci_hdrc_remove_device(data->ci_pdev);
171 clk_disable_unprepare(data->clk);
173 return 0;
176 static const struct of_device_id ci_hdrc_imx_dt_ids[] = {
177 { .compatible = "fsl,imx27-usb", },
178 { /* sentinel */ }
180 MODULE_DEVICE_TABLE(of, ci_hdrc_imx_dt_ids);
182 static struct platform_driver ci_hdrc_imx_driver = {
183 .probe = ci_hdrc_imx_probe,
184 .remove = ci_hdrc_imx_remove,
185 .driver = {
186 .name = "imx_usb",
187 .owner = THIS_MODULE,
188 .of_match_table = ci_hdrc_imx_dt_ids,
192 module_platform_driver(ci_hdrc_imx_driver);
194 MODULE_ALIAS("platform:imx-usb");
195 MODULE_LICENSE("GPL v2");
196 MODULE_DESCRIPTION("CI HDRC i.MX USB binding");
197 MODULE_AUTHOR("Marek Vasut <marex@denx.de>");
198 MODULE_AUTHOR("Richard Zhao <richard.zhao@freescale.com>");