ci_hdrc_imx.c 6.1 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 27 28 29 30 31 32 33
struct ci_hdrc_imx_platform_flag {
	unsigned int flags;
};

static const struct ci_hdrc_imx_platform_flag imx27_usb_data = {
};

static const struct ci_hdrc_imx_platform_flag imx28_usb_data = {
34
	.flags = CI_HDRC_IMX28_WRITE_FIX,
35 36 37 38 39 40 41 42 43
};

static const struct of_device_id ci_hdrc_imx_dt_ids[] = {
	{ .compatible = "fsl,imx28-usb", .data = &imx28_usb_data},
	{ .compatible = "fsl,imx27-usb", .data = &imx27_usb_data},
	{ /* sentinel */ }
};
MODULE_DEVICE_TABLE(of, ci_hdrc_imx_dt_ids);

44
struct ci_hdrc_imx_data {
45 46 47
	struct usb_phy *phy;
	struct platform_device *ci_pdev;
	struct clk *clk;
48
	struct imx_usbmisc_data *usbmisc_data;
49 50
};

51 52
/* Common functions shared by usbmisc drivers */

53
static struct imx_usbmisc_data *usbmisc_get_init_data(struct device *dev)
54
{
55
	struct platform_device *misc_pdev;
56 57
	struct device_node *np = dev->of_node;
	struct of_phandle_args args;
58
	struct imx_usbmisc_data *data;
59 60
	int ret;

61 62 63 64 65 66 67 68 69 70
	/*
	 * 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);
71 72 73 74 75 76

	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);
77
		return ERR_PTR(ret);
78
	}
79 80

	data->index = args.args[0];
81 82

	misc_pdev = of_find_device_by_node(args.np);
83 84
	of_node_put(args.np);

85 86 87 88 89
	if (!misc_pdev)
		return ERR_PTR(-EPROBE_DEFER);

	data->dev = &misc_pdev->dev;

90
	if (of_find_property(np, "disable-over-current", NULL))
91
		data->disable_oc = 1;
92

93
	if (of_find_property(np, "external-vbus-divider", NULL))
94
		data->evdo = 1;
95

96
	return data;
97 98 99 100
}

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

101
static int ci_hdrc_imx_probe(struct platform_device *pdev)
102
{
103 104
	struct ci_hdrc_imx_data *data;
	struct ci_hdrc_platform_data pdata = {
105
		.name		= dev_name(&pdev->dev),
106
		.capoffset	= DEF_CAPOFFSET,
107
		.flags		= CI_HDRC_DISABLE_STREAMING,
108
	};
109
	int ret;
110 111 112
	const struct of_device_id *of_id =
			of_match_device(ci_hdrc_imx_dt_ids, &pdev->dev);
	const struct ci_hdrc_imx_platform_flag *imx_platform_flag = of_id->data;
113 114

	data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
115
	if (!data)
116 117
		return -ENOMEM;

118 119 120 121
	data->usbmisc_data = usbmisc_get_init_data(&pdev->dev);
	if (IS_ERR(data->usbmisc_data))
		return PTR_ERR(data->usbmisc_data);

122 123 124 125 126 127 128 129 130 131 132 133 134 135
	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;
	}

136
	data->phy = devm_usb_get_phy_by_phandle(&pdev->dev, "fsl,usbphy", 0);
137 138
	if (IS_ERR(data->phy)) {
		ret = PTR_ERR(data->phy);
139 140 141
		/* Return -EINVAL if no usbphy is available */
		if (ret == -ENODEV)
			ret = -EINVAL;
142
		goto err_clk;
143 144
	}

145
	pdata.usb_phy = data->phy;
146
	pdata.flags |= imx_platform_flag->flags;
147

148
	ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
149 150
	if (ret)
		goto err_clk;
151

152 153
	if (data->usbmisc_data) {
		ret = imx_usbmisc_init(data->usbmisc_data);
154
		if (ret) {
155 156
			dev_err(&pdev->dev, "usbmisc init failed, ret=%d\n",
					ret);
157
			goto err_clk;
158 159 160
		}
	}

161
	data->ci_pdev = ci_hdrc_add_device(&pdev->dev,
162
				pdev->resource, pdev->num_resources,
163
				&pdata);
164 165
	if (IS_ERR(data->ci_pdev)) {
		ret = PTR_ERR(data->ci_pdev);
166 167 168
		dev_err(&pdev->dev,
			"Can't register ci_hdrc platform device, err=%d\n",
			ret);
169
		goto err_clk;
170 171
	}

172 173
	if (data->usbmisc_data) {
		ret = imx_usbmisc_init_post(data->usbmisc_data);
174
		if (ret) {
175 176
			dev_err(&pdev->dev, "usbmisc post failed, ret=%d\n",
					ret);
177
			goto disable_device;
178 179 180
		}
	}

181 182 183 184 185 186 187
	platform_set_drvdata(pdev, data);

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

	return 0;

188
disable_device:
189
	ci_hdrc_remove_device(data->ci_pdev);
190
err_clk:
191 192 193 194
	clk_disable_unprepare(data->clk);
	return ret;
}

195
static int ci_hdrc_imx_remove(struct platform_device *pdev)
196
{
197
	struct ci_hdrc_imx_data *data = platform_get_drvdata(pdev);
198 199

	pm_runtime_disable(&pdev->dev);
200
	ci_hdrc_remove_device(data->ci_pdev);
201 202 203 204 205
	clk_disable_unprepare(data->clk);

	return 0;
}

206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
#ifdef CONFIG_PM_SLEEP
static int imx_controller_suspend(struct device *dev)
{
	struct ci_hdrc_imx_data *data = dev_get_drvdata(dev);

	dev_dbg(dev, "at %s\n", __func__);

	clk_disable_unprepare(data->clk);

	return 0;
}

static int imx_controller_resume(struct device *dev)
{
	struct ci_hdrc_imx_data *data = dev_get_drvdata(dev);

	dev_dbg(dev, "at %s\n", __func__);

	return clk_prepare_enable(data->clk);
}

static int ci_hdrc_imx_suspend(struct device *dev)
{
	return imx_controller_suspend(dev);
}

static int ci_hdrc_imx_resume(struct device *dev)
{
	return imx_controller_resume(dev);
}
#endif /* CONFIG_PM_SLEEP */

static const struct dev_pm_ops ci_hdrc_imx_pm_ops = {
	SET_SYSTEM_SLEEP_PM_OPS(ci_hdrc_imx_suspend, ci_hdrc_imx_resume)
};
241 242 243
static struct platform_driver ci_hdrc_imx_driver = {
	.probe = ci_hdrc_imx_probe,
	.remove = ci_hdrc_imx_remove,
244 245
	.driver = {
		.name = "imx_usb",
246
		.of_match_table = ci_hdrc_imx_dt_ids,
247
		.pm = &ci_hdrc_imx_pm_ops,
248 249 250
	 },
};

251
module_platform_driver(ci_hdrc_imx_driver);
252 253 254

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