ci_hdrc_imx.c 8.6 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
struct ci_hdrc_imx_platform_flag {
	unsigned int flags;
28
	bool runtime_pm;
29 30 31
};

static const struct ci_hdrc_imx_platform_flag imx27_usb_data = {
32
		CI_HDRC_DISABLE_STREAMING,
33 34 35
};

static const struct ci_hdrc_imx_platform_flag imx28_usb_data = {
36
	.flags = CI_HDRC_IMX28_WRITE_FIX |
37 38
		CI_HDRC_TURN_VBUS_EARLY_ON |
		CI_HDRC_DISABLE_STREAMING,
39 40
};

41
static const struct ci_hdrc_imx_platform_flag imx6q_usb_data = {
42
	.flags = CI_HDRC_SUPPORTS_RUNTIME_PM |
43 44
		CI_HDRC_TURN_VBUS_EARLY_ON |
		CI_HDRC_DISABLE_STREAMING,
45 46 47
};

static const struct ci_hdrc_imx_platform_flag imx6sl_usb_data = {
48
	.flags = CI_HDRC_SUPPORTS_RUNTIME_PM |
49 50
		CI_HDRC_TURN_VBUS_EARLY_ON |
		CI_HDRC_DISABLE_HOST_STREAMING,
51 52 53
};

static const struct ci_hdrc_imx_platform_flag imx6sx_usb_data = {
54
	.flags = CI_HDRC_SUPPORTS_RUNTIME_PM |
55 56
		CI_HDRC_TURN_VBUS_EARLY_ON |
		CI_HDRC_DISABLE_HOST_STREAMING,
57 58
};

59 60 61
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},
62 63 64
	{ .compatible = "fsl,imx6q-usb", .data = &imx6q_usb_data},
	{ .compatible = "fsl,imx6sl-usb", .data = &imx6sl_usb_data},
	{ .compatible = "fsl,imx6sx-usb", .data = &imx6sl_usb_data},
65 66 67 68
	{ /* sentinel */ }
};
MODULE_DEVICE_TABLE(of, ci_hdrc_imx_dt_ids);

69
struct ci_hdrc_imx_data {
70 71 72
	struct usb_phy *phy;
	struct platform_device *ci_pdev;
	struct clk *clk;
73
	struct imx_usbmisc_data *usbmisc_data;
74 75
	bool supports_runtime_pm;
	bool in_lpm;
76 77
};

78 79
/* Common functions shared by usbmisc drivers */

80
static struct imx_usbmisc_data *usbmisc_get_init_data(struct device *dev)
81
{
82
	struct platform_device *misc_pdev;
83 84
	struct device_node *np = dev->of_node;
	struct of_phandle_args args;
85
	struct imx_usbmisc_data *data;
86 87
	int ret;

88 89 90 91 92 93 94 95 96 97
	/*
	 * 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);
98 99 100 101 102 103

	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);
104
		return ERR_PTR(ret);
105
	}
106 107

	data->index = args.args[0];
108 109

	misc_pdev = of_find_device_by_node(args.np);
110 111
	of_node_put(args.np);

112
	if (!misc_pdev || !platform_get_drvdata(misc_pdev))
113 114 115 116
		return ERR_PTR(-EPROBE_DEFER);

	data->dev = &misc_pdev->dev;

117
	if (of_find_property(np, "disable-over-current", NULL))
118
		data->disable_oc = 1;
119

120
	if (of_find_property(np, "external-vbus-divider", NULL))
121
		data->evdo = 1;
122

123
	return data;
124 125 126 127
}

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

128
static int ci_hdrc_imx_probe(struct platform_device *pdev)
129
{
130 131
	struct ci_hdrc_imx_data *data;
	struct ci_hdrc_platform_data pdata = {
132
		.name		= dev_name(&pdev->dev),
133
		.capoffset	= DEF_CAPOFFSET,
134
		.flags		= CI_HDRC_SET_NON_ZERO_TTHA,
135
	};
136
	int ret;
137 138 139
	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;
140 141

	data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
142
	if (!data)
143 144
		return -ENOMEM;

145 146 147 148
	data->usbmisc_data = usbmisc_get_init_data(&pdev->dev);
	if (IS_ERR(data->usbmisc_data))
		return PTR_ERR(data->usbmisc_data);

149 150 151 152 153 154 155 156 157 158 159 160 161 162
	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;
	}

163
	data->phy = devm_usb_get_phy_by_phandle(&pdev->dev, "fsl,usbphy", 0);
164 165
	if (IS_ERR(data->phy)) {
		ret = PTR_ERR(data->phy);
166 167 168
		/* Return -EINVAL if no usbphy is available */
		if (ret == -ENODEV)
			ret = -EINVAL;
169
		goto err_clk;
170 171
	}

172
	pdata.usb_phy = data->phy;
173
	pdata.flags |= imx_platform_flag->flags;
174 175
	if (pdata.flags & CI_HDRC_SUPPORTS_RUNTIME_PM)
		data->supports_runtime_pm = true;
176

177
	ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
178 179
	if (ret)
		goto err_clk;
180

181 182 183 184
	ret = imx_usbmisc_init(data->usbmisc_data);
	if (ret) {
		dev_err(&pdev->dev, "usbmisc init failed, ret=%d\n", ret);
		goto err_clk;
185 186
	}

187
	data->ci_pdev = ci_hdrc_add_device(&pdev->dev,
188
				pdev->resource, pdev->num_resources,
189
				&pdata);
190 191
	if (IS_ERR(data->ci_pdev)) {
		ret = PTR_ERR(data->ci_pdev);
192 193 194
		dev_err(&pdev->dev,
			"Can't register ci_hdrc platform device, err=%d\n",
			ret);
195
		goto err_clk;
196 197
	}

198 199 200 201
	ret = imx_usbmisc_init_post(data->usbmisc_data);
	if (ret) {
		dev_err(&pdev->dev, "usbmisc post failed, ret=%d\n", ret);
		goto disable_device;
202 203
	}

204 205
	platform_set_drvdata(pdev, data);

206 207 208 209
	if (data->supports_runtime_pm) {
		pm_runtime_set_active(&pdev->dev);
		pm_runtime_enable(&pdev->dev);
	}
210

211 212
	device_set_wakeup_capable(&pdev->dev, true);

213 214
	return 0;

215
disable_device:
216
	ci_hdrc_remove_device(data->ci_pdev);
217
err_clk:
218 219 220 221
	clk_disable_unprepare(data->clk);
	return ret;
}

222
static int ci_hdrc_imx_remove(struct platform_device *pdev)
223
{
224
	struct ci_hdrc_imx_data *data = platform_get_drvdata(pdev);
225

226 227 228 229 230
	if (data->supports_runtime_pm) {
		pm_runtime_get_sync(&pdev->dev);
		pm_runtime_disable(&pdev->dev);
		pm_runtime_put_noidle(&pdev->dev);
	}
231
	ci_hdrc_remove_device(data->ci_pdev);
232 233 234 235 236
	clk_disable_unprepare(data->clk);

	return 0;
}

237
#ifdef CONFIG_PM
238 239 240 241 242 243 244
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);
245
	data->in_lpm = true;
246 247 248 249 250 251 252

	return 0;
}

static int imx_controller_resume(struct device *dev)
{
	struct ci_hdrc_imx_data *data = dev_get_drvdata(dev);
253
	int ret = 0;
254 255 256

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

257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
	if (!data->in_lpm) {
		WARN_ON(1);
		return 0;
	}

	ret = clk_prepare_enable(data->clk);
	if (ret)
		return ret;

	data->in_lpm = false;

	ret = imx_usbmisc_set_wakeup(data->usbmisc_data, false);
	if (ret) {
		dev_err(dev, "usbmisc set_wakeup failed, ret=%d\n", ret);
		goto clk_disable;
	}

	return 0;

clk_disable:
	clk_disable_unprepare(data->clk);
	return ret;
279 280
}

281
#ifdef CONFIG_PM_SLEEP
282 283
static int ci_hdrc_imx_suspend(struct device *dev)
{
284 285
	int ret;

286 287 288 289 290 291
	struct ci_hdrc_imx_data *data = dev_get_drvdata(dev);

	if (data->in_lpm)
		/* The core's suspend doesn't run */
		return 0;

292 293 294 295 296 297 298 299 300
	if (device_may_wakeup(dev)) {
		ret = imx_usbmisc_set_wakeup(data->usbmisc_data, true);
		if (ret) {
			dev_err(dev, "usbmisc set_wakeup failed, ret=%d\n",
					ret);
			return ret;
		}
	}

301 302 303 304 305
	return imx_controller_suspend(dev);
}

static int ci_hdrc_imx_resume(struct device *dev)
{
306 307 308 309 310 311 312 313 314 315 316
	struct ci_hdrc_imx_data *data = dev_get_drvdata(dev);
	int ret;

	ret = imx_controller_resume(dev);
	if (!ret && data->supports_runtime_pm) {
		pm_runtime_disable(dev);
		pm_runtime_set_active(dev);
		pm_runtime_enable(dev);
	}

	return ret;
317 318 319
}
#endif /* CONFIG_PM_SLEEP */

320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
static int ci_hdrc_imx_runtime_suspend(struct device *dev)
{
	struct ci_hdrc_imx_data *data = dev_get_drvdata(dev);
	int ret;

	if (data->in_lpm) {
		WARN_ON(1);
		return 0;
	}

	ret = imx_usbmisc_set_wakeup(data->usbmisc_data, true);
	if (ret) {
		dev_err(dev, "usbmisc set_wakeup failed, ret=%d\n", ret);
		return ret;
	}

	return imx_controller_suspend(dev);
}

static int ci_hdrc_imx_runtime_resume(struct device *dev)
{
	return imx_controller_resume(dev);
}

#endif /* CONFIG_PM */

346 347
static const struct dev_pm_ops ci_hdrc_imx_pm_ops = {
	SET_SYSTEM_SLEEP_PM_OPS(ci_hdrc_imx_suspend, ci_hdrc_imx_resume)
348 349
	SET_RUNTIME_PM_OPS(ci_hdrc_imx_runtime_suspend,
			ci_hdrc_imx_runtime_resume, NULL)
350
};
351 352 353
static struct platform_driver ci_hdrc_imx_driver = {
	.probe = ci_hdrc_imx_probe,
	.remove = ci_hdrc_imx_remove,
354 355
	.driver = {
		.name = "imx_usb",
356
		.of_match_table = ci_hdrc_imx_dt_ids,
357
		.pm = &ci_hdrc_imx_pm_ops,
358 359 360
	 },
};

361
module_platform_driver(ci_hdrc_imx_driver);
362 363 364

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