ci13xxx_msm.c 2.7 KB
Newer Older
1 2 3 4 5 6 7 8 9
/* Copyright (c) 2010, Code Aurora Forum. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 */

#include <linux/module.h>
#include <linux/platform_device.h>
10
#include <linux/pm_runtime.h>
11 12
#include <linux/usb/msm_hsusb_hw.h>
#include <linux/usb/ulpi.h>
13
#include <linux/usb/gadget.h>
14

15
#include "ci13xxx_udc.h"
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35

#define MSM_USB_BASE	(udc->regs)

static void ci13xxx_msm_notify_event(struct ci13xxx *udc, unsigned event)
{
	struct device *dev = udc->gadget.dev.parent;
	int val;

	switch (event) {
	case CI13XXX_CONTROLLER_RESET_EVENT:
		dev_dbg(dev, "CI13XXX_CONTROLLER_RESET_EVENT received\n");
		writel(0, USB_AHBBURST);
		writel(0, USB_AHBMODE);
		break;
	case CI13XXX_CONTROLLER_STOPPED_EVENT:
		dev_dbg(dev, "CI13XXX_CONTROLLER_STOPPED_EVENT received\n");
		/*
		 * Put the transceiver in non-driving mode. Otherwise host
		 * may not detect soft-disconnection.
		 */
36
		val = usb_phy_io_read(udc->transceiver, ULPI_FUNC_CTRL);
37 38
		val &= ~ULPI_FUNC_CTRL_OPMODE_MASK;
		val |= ULPI_FUNC_CTRL_OPMODE_NONDRIVING;
39
		usb_phy_io_write(udc->transceiver, val, ULPI_FUNC_CTRL);
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
		break;
	default:
		dev_dbg(dev, "unknown ci13xxx_udc event\n");
		break;
	}
}

static struct ci13xxx_udc_driver ci13xxx_msm_udc_driver = {
	.name			= "ci13xxx_msm",
	.flags			= CI13XXX_REGS_SHARED |
				  CI13XXX_REQUIRE_TRANSCEIVER |
				  CI13XXX_PULLUP_ON_VBUS |
				  CI13XXX_DISABLE_STREAMING,

	.notify_event		= ci13xxx_msm_notify_event,
};

static int ci13xxx_msm_probe(struct platform_device *pdev)
{
59
	struct platform_device *plat_ci;
60 61 62 63
	int ret;

	dev_dbg(&pdev->dev, "ci13xxx_msm_probe\n");

64 65 66
	plat_ci = platform_device_alloc("ci_udc", -1);
	if (!plat_ci) {
		dev_err(&pdev->dev, "can't allocate ci_udc platform device\n");
67 68 69
		return -ENOMEM;
	}

70 71 72 73 74
	ret = platform_device_add_resources(plat_ci, pdev->resource,
					    pdev->num_resources);
	if (ret) {
		dev_err(&pdev->dev, "can't add resources to platform device\n");
		goto put_platform;
75 76
	}

77 78 79 80
	ret = platform_device_add_data(plat_ci, &ci13xxx_msm_udc_driver,
				       sizeof(ci13xxx_msm_udc_driver));
	if (ret)
		goto put_platform;
81

82 83 84
	ret = platform_device_add(plat_ci);
	if (ret)
		goto put_platform;
85

86 87 88
	pm_runtime_no_callbacks(&pdev->dev);
	pm_runtime_enable(&pdev->dev);

89 90
	return 0;

91 92
put_platform:
	platform_device_put(plat_ci);
93 94 95 96 97 98 99 100

	return ret;
}

static struct platform_driver ci13xxx_msm_driver = {
	.probe = ci13xxx_msm_probe,
	.driver = { .name = "msm_hsusb", },
};
101
MODULE_ALIAS("platform:msm_hsusb");
102 103 104 105 106 107

static int __init ci13xxx_msm_init(void)
{
	return platform_driver_register(&ci13xxx_msm_driver);
}
module_init(ci13xxx_msm_init);
108 109

MODULE_LICENSE("GPL v2");