Release 4.7 drivers/usb/chipidea/ci_hdrc_msm.c
  
  
/* 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>
#include <linux/pm_runtime.h>
#include <linux/usb/msm_hsusb_hw.h>
#include <linux/usb/ulpi.h>
#include <linux/usb/gadget.h>
#include <linux/usb/chipidea.h>
#include "ci.h"
#define MSM_USB_BASE	(ci->hw_bank.abs)
static void ci_hdrc_msm_notify_event(struct ci_hdrc *ci, unsigned event)
{
	struct device *dev = ci->gadget.dev.parent;
	switch (event) {
	case CI_HDRC_CONTROLLER_RESET_EVENT:
		dev_dbg(dev, "CI_HDRC_CONTROLLER_RESET_EVENT received\n");
		writel(0, USB_AHBBURST);
		/* use AHB transactor, allow posted data writes */
		writel(0x8, USB_AHBMODE);
		usb_phy_init(ci->usb_phy);
		break;
	case CI_HDRC_CONTROLLER_STOPPED_EVENT:
		dev_dbg(dev, "CI_HDRC_CONTROLLER_STOPPED_EVENT received\n");
		/*
                 * Put the phy in non-driving mode. Otherwise host
                 * may not detect soft-disconnection.
                 */
		usb_phy_notify_disconnect(ci->usb_phy, USB_SPEED_UNKNOWN);
		break;
	default:
		dev_dbg(dev, "unknown ci_hdrc event\n");
		break;
	}
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| pavankumar kondeti | pavankumar kondeti | 73 | 76.04% | 1 | 14.29% | 
| ivan t. ivanov | ivan t. ivanov | 8 | 8.33% | 2 | 28.57% | 
| alexander shishkin | alexander shishkin | 7 | 7.29% | 1 | 14.29% | 
| richard zhao | richard zhao | 3 | 3.12% | 1 | 14.29% | 
| antoine tenart | antoine tenart | 3 | 3.12% | 1 | 14.29% | 
| andy gross | andy gross | 2 | 2.08% | 1 | 14.29% | 
 | Total | 96 | 100.00% | 7 | 100.00% | 
static struct ci_hdrc_platform_data ci_hdrc_msm_platdata = {
	.name			= "ci_hdrc_msm",
	.capoffset		= DEF_CAPOFFSET,
	.flags			= CI_HDRC_REGS_SHARED |
				  CI_HDRC_DISABLE_STREAMING,
	.notify_event		= ci_hdrc_msm_notify_event,
};
static int ci_hdrc_msm_probe(struct platform_device *pdev)
{
	struct platform_device *plat_ci;
	struct usb_phy *phy;
	dev_dbg(&pdev->dev, "ci_hdrc_msm_probe\n");
	/*
         * OTG(PHY) driver takes care of PHY initialization, clock management,
         * powering up VBUS, mapping of registers address space and power
         * management.
         */
	phy = devm_usb_get_phy_by_phandle(&pdev->dev, "usb-phy", 0);
	if (IS_ERR(phy))
		return PTR_ERR(phy);
	ci_hdrc_msm_platdata.usb_phy = phy;
	plat_ci = ci_hdrc_add_device(&pdev->dev,
				pdev->resource, pdev->num_resources,
				&ci_hdrc_msm_platdata);
	if (IS_ERR(plat_ci)) {
		dev_err(&pdev->dev, "ci_hdrc_add_device failed!\n");
		return PTR_ERR(plat_ci);
	}
	platform_set_drvdata(pdev, plat_ci);
	pm_runtime_no_callbacks(&pdev->dev);
	pm_runtime_enable(&pdev->dev);
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| pavankumar kondeti | pavankumar kondeti | 67 | 48.91% | 2 | 22.22% | 
| ivan t. ivanov | ivan t. ivanov | 38 | 27.74% | 1 | 11.11% | 
| alexander shishkin | alexander shishkin | 14 | 10.22% | 3 | 33.33% | 
| richard zhao | richard zhao | 10 | 7.30% | 1 | 11.11% | 
| felipe balbi | felipe balbi | 7 | 5.11% | 1 | 11.11% | 
| antoine tenart | antoine tenart | 1 | 0.73% | 1 | 11.11% | 
 | Total | 137 | 100.00% | 9 | 100.00% | 
static int ci_hdrc_msm_remove(struct platform_device *pdev)
{
	struct platform_device *plat_ci = platform_get_drvdata(pdev);
	pm_runtime_disable(&pdev->dev);
	ci_hdrc_remove_device(plat_ci);
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| felipe balbi | felipe balbi | 35 | 94.59% | 1 | 50.00% | 
| alexander shishkin | alexander shishkin | 2 | 5.41% | 1 | 50.00% | 
 | Total | 37 | 100.00% | 2 | 100.00% | 
static const struct of_device_id msm_ci_dt_match[] = {
	{ .compatible = "qcom,ci-hdrc", },
	{ }
};
MODULE_DEVICE_TABLE(of, msm_ci_dt_match);
static struct platform_driver ci_hdrc_msm_driver = {
	.probe = ci_hdrc_msm_probe,
	.remove = ci_hdrc_msm_remove,
	.driver = {
		.name = "msm_hsusb",
		.of_match_table = msm_ci_dt_match,
        },
};
module_platform_driver(ci_hdrc_msm_driver);
MODULE_ALIAS("platform:msm_hsusb");
MODULE_ALIAS("platform:ci13xxx_msm");
MODULE_LICENSE("GPL v2");
Overall Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| pavankumar kondeti | pavankumar kondeti | 200 | 49.38% | 2 | 11.11% | 
| ivan t. ivanov | ivan t. ivanov | 82 | 20.25% | 4 | 22.22% | 
| felipe balbi | felipe balbi | 49 | 12.10% | 1 | 5.56% | 
| alexander shishkin | alexander shishkin | 45 | 11.11% | 4 | 22.22% | 
| richard zhao | richard zhao | 14 | 3.46% | 2 | 11.11% | 
| marc kleine-budde | marc kleine-budde | 5 | 1.23% | 1 | 5.56% | 
| antoine tenart | antoine tenart | 4 | 0.99% | 1 | 5.56% | 
| sebastian andrzej siewior | sebastian andrzej siewior | 3 | 0.74% | 1 | 5.56% | 
| andy gross | andy gross | 2 | 0.49% | 1 | 5.56% | 
| klaus schwarzkopf | klaus schwarzkopf | 1 | 0.25% | 1 | 5.56% | 
 | Total | 405 | 100.00% | 18 | 100.00% | 
  
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.