ci_hdrc_imx.c 5.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * Copyright 2012 Freescale Semiconductor, Inc.
 * Copyright (C) 2012 Marek Vasut <marex@denx.de>
 * on behalf of DENX Software Engineering GmbH
 *
 * The code contained herein is licensed under the GNU General Public
 * License. You may obtain a copy of the GNU General Public License
 * Version 2 or later at the following locations:
 *
 * http://www.opensource.org/licenses/gpl-license.html
 * http://www.gnu.org/copyleft/gpl.html
 */

#include <linux/module.h>
#include <linux/of_platform.h>
#include <linux/of_gpio.h>
#include <linux/platform_device.h>
#include <linux/pm_runtime.h>
#include <linux/dma-mapping.h>
#include <linux/usb/chipidea.h>
#include <linux/clk.h>

#include "ci.h"
24
#include "ci_hdrc_imx.h"
25

26
struct ci_hdrc_imx_data {
27 28 29
	struct usb_phy *phy;
	struct platform_device *ci_pdev;
	struct clk *clk;
30
	struct imx_usbmisc_data *usbmisc_data;
31 32
};

33 34
/* Common functions shared by usbmisc drivers */

35
static struct imx_usbmisc_data *usbmisc_get_init_data(struct device *dev)
36 37 38
{
	struct device_node *np = dev->of_node;
	struct of_phandle_args args;
39
	struct imx_usbmisc_data *data;
40 41
	int ret;

42 43 44 45 46 47 48 49 50 51
	/*
	 * In case the fsl,usbmisc property is not present this device doesn't
	 * need usbmisc. Return NULL (which is no error here)
	 */
	if (!of_get_property(np, "fsl,usbmisc", NULL))
		return NULL;

	data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
	if (!data)
		return ERR_PTR(-ENOMEM);
52 53 54 55 56 57

	ret = of_parse_phandle_with_args(np, "fsl,usbmisc", "#index-cells",
					0, &args);
	if (ret) {
		dev_err(dev, "Failed to parse property fsl,usbmisc, errno %d\n",
			ret);
58
		return ERR_PTR(ret);
59
	}
60 61

	data->index = args.args[0];
62 63 64
	of_node_put(args.np);

	if (of_find_property(np, "disable-over-current", NULL))
65
		data->disable_oc = 1;
66

67
	if (of_find_property(np, "external-vbus-divider", NULL))
68
		data->evdo = 1;
69

70
	return data;
71 72 73 74
}

/* End of common functions shared by usbmisc drivers*/

75
static int ci_hdrc_imx_probe(struct platform_device *pdev)
76
{
77 78 79
	struct ci_hdrc_imx_data *data;
	struct ci_hdrc_platform_data pdata = {
		.name		= "ci_hdrc_imx",
80
		.capoffset	= DEF_CAPOFFSET,
81 82
		.flags		= CI_HDRC_REQUIRE_TRANSCEIVER |
				  CI_HDRC_DISABLE_STREAMING,
83
	};
84 85 86 87
	int ret;

	data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
	if (!data) {
88
		dev_err(&pdev->dev, "Failed to allocate ci_hdrc-imx data!\n");
89 90 91
		return -ENOMEM;
	}

92 93 94 95
	data->usbmisc_data = usbmisc_get_init_data(&pdev->dev);
	if (IS_ERR(data->usbmisc_data))
		return PTR_ERR(data->usbmisc_data);

96 97 98 99 100 101 102 103 104 105 106 107 108 109
	data->clk = devm_clk_get(&pdev->dev, NULL);
	if (IS_ERR(data->clk)) {
		dev_err(&pdev->dev,
			"Failed to get clock, err=%ld\n", PTR_ERR(data->clk));
		return PTR_ERR(data->clk);
	}

	ret = clk_prepare_enable(data->clk);
	if (ret) {
		dev_err(&pdev->dev,
			"Failed to prepare or enable clock, err=%d\n", ret);
		return ret;
	}

110 111 112
	data->phy = devm_usb_get_phy_by_phandle(&pdev->dev, "fsl,usbphy", 0);
	if (!IS_ERR(data->phy)) {
		ret = usb_phy_init(data->phy);
113 114 115
		if (ret) {
			dev_err(&pdev->dev, "unable to init phy: %d\n", ret);
			goto err_clk;
116
		}
117
	} else if (PTR_ERR(data->phy) == -EPROBE_DEFER) {
118 119
		ret = -EPROBE_DEFER;
		goto err_clk;
120 121
	}

122
	pdata.phy = data->phy;
123

124 125
	if (!pdev->dev.dma_mask)
		pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
126 127 128
	ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
	if (ret)
		goto err_clk;
129

130 131
	if (data->usbmisc_data) {
		ret = imx_usbmisc_init(data->usbmisc_data);
132
		if (ret) {
133 134
			dev_err(&pdev->dev, "usbmisc init failed, ret=%d\n",
					ret);
135
			goto err_clk;
136 137 138
		}
	}

139
	data->ci_pdev = ci_hdrc_add_device(&pdev->dev,
140
				pdev->resource, pdev->num_resources,
141
				&pdata);
142 143
	if (IS_ERR(data->ci_pdev)) {
		ret = PTR_ERR(data->ci_pdev);
144 145 146
		dev_err(&pdev->dev,
			"Can't register ci_hdrc platform device, err=%d\n",
			ret);
147
		goto err_clk;
148 149
	}

150 151
	if (data->usbmisc_data) {
		ret = imx_usbmisc_init_post(data->usbmisc_data);
152
		if (ret) {
153 154
			dev_err(&pdev->dev, "usbmisc post failed, ret=%d\n",
					ret);
155
			goto disable_device;
156 157 158
		}
	}

159 160 161 162 163 164 165
	platform_set_drvdata(pdev, data);

	pm_runtime_no_callbacks(&pdev->dev);
	pm_runtime_enable(&pdev->dev);

	return 0;

166
disable_device:
167
	ci_hdrc_remove_device(data->ci_pdev);
168
err_clk:
169 170 171 172
	clk_disable_unprepare(data->clk);
	return ret;
}

173
static int ci_hdrc_imx_remove(struct platform_device *pdev)
174
{
175
	struct ci_hdrc_imx_data *data = platform_get_drvdata(pdev);
176 177

	pm_runtime_disable(&pdev->dev);
178
	ci_hdrc_remove_device(data->ci_pdev);
179

180
	if (data->phy)
181 182 183 184 185 186 187
		usb_phy_shutdown(data->phy);

	clk_disable_unprepare(data->clk);

	return 0;
}

188
static const struct of_device_id ci_hdrc_imx_dt_ids[] = {
189 190 191
	{ .compatible = "fsl,imx27-usb", },
	{ /* sentinel */ }
};
192
MODULE_DEVICE_TABLE(of, ci_hdrc_imx_dt_ids);
193

194 195 196
static struct platform_driver ci_hdrc_imx_driver = {
	.probe = ci_hdrc_imx_probe,
	.remove = ci_hdrc_imx_remove,
197 198 199
	.driver = {
		.name = "imx_usb",
		.owner = THIS_MODULE,
200
		.of_match_table = ci_hdrc_imx_dt_ids,
201 202 203
	 },
};

204
module_platform_driver(ci_hdrc_imx_driver);
205 206 207

MODULE_ALIAS("platform:imx-usb");
MODULE_LICENSE("GPL v2");
208
MODULE_DESCRIPTION("CI HDRC i.MX USB binding");
209 210
MODULE_AUTHOR("Marek Vasut <marex@denx.de>");
MODULE_AUTHOR("Richard Zhao <richard.zhao@freescale.com>");