blob: bb5d976e5b818e14cc4ff2a3506d3a82e182adf0 [file] [log] [blame]
Richard Zhao15302802012-07-07 22:56:48 +08001/*
2 * Copyright 2012 Freescale Semiconductor, Inc.
3 * Copyright (C) 2012 Marek Vasut <marex@denx.de>
4 * on behalf of DENX Software Engineering GmbH
5 *
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:
9 *
10 * http://www.opensource.org/licenses/gpl-license.html
11 * http://www.gnu.org/copyleft/gpl.html
12 */
13
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>
Richard Zhao15302802012-07-07 22:56:48 +080022
23#include "ci.h"
Alexander Shishkin8e229782013-06-24 14:46:36 +030024#include "ci_hdrc_imx.h"
Richard Zhao15302802012-07-07 22:56:48 +080025
Alexander Shishkin8e229782013-06-24 14:46:36 +030026struct ci_hdrc_imx_data {
Richard Zhao15302802012-07-07 22:56:48 +080027 struct usb_phy *phy;
28 struct platform_device *ci_pdev;
29 struct clk *clk;
Sascha Hauer05986ba2013-08-14 12:44:16 +030030 struct imx_usbmisc_data *usbmisc_data;
Richard Zhao15302802012-07-07 22:56:48 +080031};
32
Richard Zhaod142d6b2012-09-12 14:58:05 +030033/* Common functions shared by usbmisc drivers */
34
Sascha Hauer05986ba2013-08-14 12:44:16 +030035static struct imx_usbmisc_data *usbmisc_get_init_data(struct device *dev)
Richard Zhaod142d6b2012-09-12 14:58:05 +030036{
37 struct device_node *np = dev->of_node;
38 struct of_phandle_args args;
Sascha Hauer05986ba2013-08-14 12:44:16 +030039 struct imx_usbmisc_data *data;
Richard Zhaod142d6b2012-09-12 14:58:05 +030040 int ret;
41
Sascha Hauer05986ba2013-08-14 12:44:16 +030042 /*
43 * In case the fsl,usbmisc property is not present this device doesn't
44 * need usbmisc. Return NULL (which is no error here)
45 */
46 if (!of_get_property(np, "fsl,usbmisc", NULL))
47 return NULL;
48
49 data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
50 if (!data)
51 return ERR_PTR(-ENOMEM);
Richard Zhaod142d6b2012-09-12 14:58:05 +030052
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);
Sascha Hauer05986ba2013-08-14 12:44:16 +030058 return ERR_PTR(ret);
Richard Zhaod142d6b2012-09-12 14:58:05 +030059 }
Sascha Hauer05986ba2013-08-14 12:44:16 +030060
61 data->index = args.args[0];
Richard Zhaod142d6b2012-09-12 14:58:05 +030062 of_node_put(args.np);
63
64 if (of_find_property(np, "disable-over-current", NULL))
Sascha Hauer05986ba2013-08-14 12:44:16 +030065 data->disable_oc = 1;
Richard Zhaod142d6b2012-09-12 14:58:05 +030066
Michael Grzeschika0685332013-03-30 12:54:01 +020067 if (of_find_property(np, "external-vbus-divider", NULL))
Sascha Hauer05986ba2013-08-14 12:44:16 +030068 data->evdo = 1;
Michael Grzeschika0685332013-03-30 12:54:01 +020069
Sascha Hauer05986ba2013-08-14 12:44:16 +030070 return data;
Richard Zhaod142d6b2012-09-12 14:58:05 +030071}
Richard Zhaod142d6b2012-09-12 14:58:05 +030072
73/* End of common functions shared by usbmisc drivers*/
74
Alexander Shishkin8e229782013-06-24 14:46:36 +030075static int ci_hdrc_imx_probe(struct platform_device *pdev)
Richard Zhao15302802012-07-07 22:56:48 +080076{
Alexander Shishkin8e229782013-06-24 14:46:36 +030077 struct ci_hdrc_imx_data *data;
78 struct ci_hdrc_platform_data pdata = {
79 .name = "ci_hdrc_imx",
Michael Grzeschikf6a3b3a2013-06-13 17:59:58 +030080 .capoffset = DEF_CAPOFFSET,
Alexander Shishkin8e229782013-06-24 14:46:36 +030081 .flags = CI_HDRC_REQUIRE_TRANSCEIVER |
Alexander Shishkin8e229782013-06-24 14:46:36 +030082 CI_HDRC_DISABLE_STREAMING,
Michael Grzeschikf6a3b3a2013-06-13 17:59:58 +030083 };
Richard Zhao15302802012-07-07 22:56:48 +080084 int ret;
85
86 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
87 if (!data) {
Alexander Shishkin8e229782013-06-24 14:46:36 +030088 dev_err(&pdev->dev, "Failed to allocate ci_hdrc-imx data!\n");
Richard Zhao15302802012-07-07 22:56:48 +080089 return -ENOMEM;
90 }
91
Sascha Hauer05986ba2013-08-14 12:44:16 +030092 data->usbmisc_data = usbmisc_get_init_data(&pdev->dev);
93 if (IS_ERR(data->usbmisc_data))
94 return PTR_ERR(data->usbmisc_data);
95
Richard Zhao15302802012-07-07 22:56:48 +080096 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);
101 }
102
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;
108 }
109
Fabio Estevam046916d2013-06-25 12:58:05 +0300110 data->phy = devm_usb_get_phy_by_phandle(&pdev->dev, "fsl,usbphy", 0);
Peter Chenaf59a8b2013-09-24 12:47:54 +0800111 if (IS_ERR(data->phy)) {
112 ret = PTR_ERR(data->phy);
Sascha Hauerea1418b2013-06-13 18:00:00 +0300113 goto err_clk;
Richard Zhao15302802012-07-07 22:56:48 +0800114 }
115
Michael Grzeschikf6a3b3a2013-06-13 17:59:58 +0300116 pdata.phy = data->phy;
Richard Zhao15302802012-07-07 22:56:48 +0800117
Russell Kinge1fd7342013-06-27 12:36:37 +0100118 ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +0100119 if (ret)
120 goto err_clk;
Richard Zhaod142d6b2012-09-12 14:58:05 +0300121
Sascha Hauer05986ba2013-08-14 12:44:16 +0300122 if (data->usbmisc_data) {
123 ret = imx_usbmisc_init(data->usbmisc_data);
Richard Zhaod142d6b2012-09-12 14:58:05 +0300124 if (ret) {
Sascha Hauer05986ba2013-08-14 12:44:16 +0300125 dev_err(&pdev->dev, "usbmisc init failed, ret=%d\n",
126 ret);
Peter Chenaf59a8b2013-09-24 12:47:54 +0800127 goto err_clk;
Richard Zhaod142d6b2012-09-12 14:58:05 +0300128 }
129 }
130
Alexander Shishkin8e229782013-06-24 14:46:36 +0300131 data->ci_pdev = ci_hdrc_add_device(&pdev->dev,
Richard Zhao15302802012-07-07 22:56:48 +0800132 pdev->resource, pdev->num_resources,
Michael Grzeschikf6a3b3a2013-06-13 17:59:58 +0300133 &pdata);
Fabio Estevam770719d2013-06-13 17:59:48 +0300134 if (IS_ERR(data->ci_pdev)) {
135 ret = PTR_ERR(data->ci_pdev);
Richard Zhao15302802012-07-07 22:56:48 +0800136 dev_err(&pdev->dev,
137 "Can't register ci_hdrc platform device, err=%d\n",
138 ret);
Peter Chenaf59a8b2013-09-24 12:47:54 +0800139 goto err_clk;
Richard Zhao15302802012-07-07 22:56:48 +0800140 }
141
Sascha Hauer05986ba2013-08-14 12:44:16 +0300142 if (data->usbmisc_data) {
143 ret = imx_usbmisc_init_post(data->usbmisc_data);
Michael Grzeschika0685332013-03-30 12:54:01 +0200144 if (ret) {
Sascha Hauer05986ba2013-08-14 12:44:16 +0300145 dev_err(&pdev->dev, "usbmisc post failed, ret=%d\n",
146 ret);
Fabio Estevam770719d2013-06-13 17:59:48 +0300147 goto disable_device;
Michael Grzeschika0685332013-03-30 12:54:01 +0200148 }
149 }
150
Richard Zhao15302802012-07-07 22:56:48 +0800151 platform_set_drvdata(pdev, data);
152
153 pm_runtime_no_callbacks(&pdev->dev);
154 pm_runtime_enable(&pdev->dev);
155
156 return 0;
157
Fabio Estevam770719d2013-06-13 17:59:48 +0300158disable_device:
Alexander Shishkin8e229782013-06-24 14:46:36 +0300159 ci_hdrc_remove_device(data->ci_pdev);
Sascha Hauerea1418b2013-06-13 18:00:00 +0300160err_clk:
Richard Zhao15302802012-07-07 22:56:48 +0800161 clk_disable_unprepare(data->clk);
162 return ret;
163}
164
Alexander Shishkin8e229782013-06-24 14:46:36 +0300165static int ci_hdrc_imx_remove(struct platform_device *pdev)
Richard Zhao15302802012-07-07 22:56:48 +0800166{
Alexander Shishkin8e229782013-06-24 14:46:36 +0300167 struct ci_hdrc_imx_data *data = platform_get_drvdata(pdev);
Richard Zhao15302802012-07-07 22:56:48 +0800168
169 pm_runtime_disable(&pdev->dev);
Alexander Shishkin8e229782013-06-24 14:46:36 +0300170 ci_hdrc_remove_device(data->ci_pdev);
Richard Zhao15302802012-07-07 22:56:48 +0800171 clk_disable_unprepare(data->clk);
172
Richard Zhao15302802012-07-07 22:56:48 +0800173 return 0;
174}
175
Greg Kroah-Hartmanac5166b2014-01-08 13:45:51 -0800176static const struct of_device_id ci_hdrc_imx_dt_ids[] = {
177 { .compatible = "fsl,imx27-usb", },
178 { /* sentinel */ }
179};
180MODULE_DEVICE_TABLE(of, ci_hdrc_imx_dt_ids);
181
Alexander Shishkin8e229782013-06-24 14:46:36 +0300182static struct platform_driver ci_hdrc_imx_driver = {
183 .probe = ci_hdrc_imx_probe,
184 .remove = ci_hdrc_imx_remove,
Richard Zhao15302802012-07-07 22:56:48 +0800185 .driver = {
186 .name = "imx_usb",
187 .owner = THIS_MODULE,
Alexander Shishkin8e229782013-06-24 14:46:36 +0300188 .of_match_table = ci_hdrc_imx_dt_ids,
Richard Zhao15302802012-07-07 22:56:48 +0800189 },
190};
191
Alexander Shishkin8e229782013-06-24 14:46:36 +0300192module_platform_driver(ci_hdrc_imx_driver);
Richard Zhao15302802012-07-07 22:56:48 +0800193
194MODULE_ALIAS("platform:imx-usb");
195MODULE_LICENSE("GPL v2");
Alexander Shishkin8e229782013-06-24 14:46:36 +0300196MODULE_DESCRIPTION("CI HDRC i.MX USB binding");
Richard Zhao15302802012-07-07 22:56:48 +0800197MODULE_AUTHOR("Marek Vasut <marex@denx.de>");
198MODULE_AUTHOR("Richard Zhao <richard.zhao@freescale.com>");