mfd: wm8350-i2c: Make sure the i2c regmap functions are compiled
[linux/fpc-iii.git] / drivers / usb / chipidea / ci_hdrc_imx.c
blob76a67fb6ea323c6c0b2ae4122ad6a9d9c9b2eeaa
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 #define CI_HDRC_IMX_IMX28_WRITE_FIX BIT(0)
28 struct ci_hdrc_imx_platform_flag {
29 unsigned int flags;
32 static const struct ci_hdrc_imx_platform_flag imx27_usb_data = {
35 static const struct ci_hdrc_imx_platform_flag imx28_usb_data = {
36 .flags = CI_HDRC_IMX_IMX28_WRITE_FIX,
39 static const struct of_device_id ci_hdrc_imx_dt_ids[] = {
40 { .compatible = "fsl,imx28-usb", .data = &imx28_usb_data},
41 { .compatible = "fsl,imx27-usb", .data = &imx27_usb_data},
42 { /* sentinel */ }
44 MODULE_DEVICE_TABLE(of, ci_hdrc_imx_dt_ids);
46 struct ci_hdrc_imx_data {
47 struct usb_phy *phy;
48 struct platform_device *ci_pdev;
49 struct clk *clk;
50 struct imx_usbmisc_data *usbmisc_data;
53 /* Common functions shared by usbmisc drivers */
55 static struct imx_usbmisc_data *usbmisc_get_init_data(struct device *dev)
57 struct device_node *np = dev->of_node;
58 struct of_phandle_args args;
59 struct imx_usbmisc_data *data;
60 int ret;
63 * In case the fsl,usbmisc property is not present this device doesn't
64 * need usbmisc. Return NULL (which is no error here)
66 if (!of_get_property(np, "fsl,usbmisc", NULL))
67 return NULL;
69 data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
70 if (!data)
71 return ERR_PTR(-ENOMEM);
73 ret = of_parse_phandle_with_args(np, "fsl,usbmisc", "#index-cells",
74 0, &args);
75 if (ret) {
76 dev_err(dev, "Failed to parse property fsl,usbmisc, errno %d\n",
77 ret);
78 return ERR_PTR(ret);
81 data->index = args.args[0];
82 of_node_put(args.np);
84 if (of_find_property(np, "disable-over-current", NULL))
85 data->disable_oc = 1;
87 if (of_find_property(np, "external-vbus-divider", NULL))
88 data->evdo = 1;
90 return data;
93 /* End of common functions shared by usbmisc drivers*/
95 static int ci_hdrc_imx_probe(struct platform_device *pdev)
97 struct ci_hdrc_imx_data *data;
98 struct ci_hdrc_platform_data pdata = {
99 .name = "ci_hdrc_imx",
100 .capoffset = DEF_CAPOFFSET,
101 .flags = CI_HDRC_REQUIRE_TRANSCEIVER |
102 CI_HDRC_DISABLE_STREAMING,
104 int ret;
105 const struct of_device_id *of_id =
106 of_match_device(ci_hdrc_imx_dt_ids, &pdev->dev);
107 const struct ci_hdrc_imx_platform_flag *imx_platform_flag = of_id->data;
109 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
110 if (!data) {
111 dev_err(&pdev->dev, "Failed to allocate ci_hdrc-imx data!\n");
112 return -ENOMEM;
115 data->usbmisc_data = usbmisc_get_init_data(&pdev->dev);
116 if (IS_ERR(data->usbmisc_data))
117 return PTR_ERR(data->usbmisc_data);
119 data->clk = devm_clk_get(&pdev->dev, NULL);
120 if (IS_ERR(data->clk)) {
121 dev_err(&pdev->dev,
122 "Failed to get clock, err=%ld\n", PTR_ERR(data->clk));
123 return PTR_ERR(data->clk);
126 ret = clk_prepare_enable(data->clk);
127 if (ret) {
128 dev_err(&pdev->dev,
129 "Failed to prepare or enable clock, err=%d\n", ret);
130 return ret;
133 data->phy = devm_usb_get_phy_by_phandle(&pdev->dev, "fsl,usbphy", 0);
134 if (!IS_ERR(data->phy)) {
135 ret = usb_phy_init(data->phy);
136 if (ret) {
137 dev_err(&pdev->dev, "unable to init phy: %d\n", ret);
138 goto err_clk;
140 } else if (PTR_ERR(data->phy) == -EPROBE_DEFER) {
141 ret = -EPROBE_DEFER;
142 goto err_clk;
145 pdata.phy = data->phy;
147 if (imx_platform_flag->flags & CI_HDRC_IMX_IMX28_WRITE_FIX)
148 pdata.flags |= CI_HDRC_IMX28_WRITE_FIX;
150 if (!pdev->dev.dma_mask)
151 pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
152 if (!pdev->dev.coherent_dma_mask)
153 pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
155 if (data->usbmisc_data) {
156 ret = imx_usbmisc_init(data->usbmisc_data);
157 if (ret) {
158 dev_err(&pdev->dev, "usbmisc init failed, ret=%d\n",
159 ret);
160 goto err_phy;
164 data->ci_pdev = ci_hdrc_add_device(&pdev->dev,
165 pdev->resource, pdev->num_resources,
166 &pdata);
167 if (IS_ERR(data->ci_pdev)) {
168 ret = PTR_ERR(data->ci_pdev);
169 dev_err(&pdev->dev,
170 "Can't register ci_hdrc platform device, err=%d\n",
171 ret);
172 goto err_phy;
175 if (data->usbmisc_data) {
176 ret = imx_usbmisc_init_post(data->usbmisc_data);
177 if (ret) {
178 dev_err(&pdev->dev, "usbmisc post failed, ret=%d\n",
179 ret);
180 goto disable_device;
184 platform_set_drvdata(pdev, data);
186 pm_runtime_no_callbacks(&pdev->dev);
187 pm_runtime_enable(&pdev->dev);
189 return 0;
191 disable_device:
192 ci_hdrc_remove_device(data->ci_pdev);
193 err_phy:
194 if (data->phy)
195 usb_phy_shutdown(data->phy);
196 err_clk:
197 clk_disable_unprepare(data->clk);
198 return ret;
201 static int ci_hdrc_imx_remove(struct platform_device *pdev)
203 struct ci_hdrc_imx_data *data = platform_get_drvdata(pdev);
205 pm_runtime_disable(&pdev->dev);
206 ci_hdrc_remove_device(data->ci_pdev);
208 if (data->phy)
209 usb_phy_shutdown(data->phy);
211 clk_disable_unprepare(data->clk);
213 return 0;
216 static struct platform_driver ci_hdrc_imx_driver = {
217 .probe = ci_hdrc_imx_probe,
218 .remove = ci_hdrc_imx_remove,
219 .driver = {
220 .name = "imx_usb",
221 .owner = THIS_MODULE,
222 .of_match_table = ci_hdrc_imx_dt_ids,
226 module_platform_driver(ci_hdrc_imx_driver);
228 MODULE_ALIAS("platform:imx-usb");
229 MODULE_LICENSE("GPL v2");
230 MODULE_DESCRIPTION("CI HDRC i.MX USB binding");
231 MODULE_AUTHOR("Marek Vasut <marex@denx.de>");
232 MODULE_AUTHOR("Richard Zhao <richard.zhao@freescale.com>");