Release 4.7 drivers/scsi/ufs/ufshcd-pci.c
  
  
/*
 * Universal Flash Storage Host controller PCI glue driver
 *
 * This code is based on drivers/scsi/ufs/ufshcd-pci.c
 * Copyright (C) 2011-2013 Samsung India Software Operations
 *
 * Authors:
 *      Santosh Yaraganavi <santosh.sy@samsung.com>
 *      Vinayak Holikatti <h.vinayak@samsung.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * See the COPYING file in the top-level directory or visit
 * <http://www.gnu.org/licenses/gpl-2.0.html>
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * This program is provided "AS IS" and "WITH ALL FAULTS" and
 * without warranty of any kind. You are solely responsible for
 * determining the appropriateness of using and distributing
 * the program and assume all risks associated with your exercise
 * of rights with respect to the program, including but not limited
 * to infringement of third party rights, the risks and costs of
 * program errors, damage to or loss of data, programs or equipment,
 * and unavailability or interruption of operations. Under no
 * circumstances will the contributor of this Program be liable for
 * any damages of any kind arising from your use or distribution of
 * this program.
 */
#include "ufshcd.h"
#include <linux/pci.h>
#include <linux/pm_runtime.h>
#ifdef CONFIG_PM
/**
 * ufshcd_pci_suspend - suspend power management function
 * @pdev: pointer to PCI device handle
 * @state: power state
 *
 * Returns 0 if successful
 * Returns non-zero otherwise
 */
static int ufshcd_pci_suspend(struct device *dev)
{
	return ufshcd_system_suspend(dev_get_drvdata(dev));
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| vinayak holikatti | vinayak holikatti | 11 | 55.00% | 1 | 33.33% | 
| subhash jadavani | subhash jadavani | 7 | 35.00% | 1 | 33.33% | 
| sujit reddy thumma | sujit reddy thumma | 2 | 10.00% | 1 | 33.33% | 
 | Total | 20 | 100.00% | 3 | 100.00% | 
/**
 * ufshcd_pci_resume - resume power management function
 * @pdev: pointer to PCI device handle
 *
 * Returns 0 if successful
 * Returns non-zero otherwise
 */
static int ufshcd_pci_resume(struct device *dev)
{
	return ufshcd_system_resume(dev_get_drvdata(dev));
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| vinayak holikatti | vinayak holikatti | 11 | 55.00% | 1 | 33.33% | 
| subhash jadavani | subhash jadavani | 7 | 35.00% | 1 | 33.33% | 
| sujit reddy thumma | sujit reddy thumma | 2 | 10.00% | 1 | 33.33% | 
 | Total | 20 | 100.00% | 3 | 100.00% | 
static int ufshcd_pci_runtime_suspend(struct device *dev)
{
	return ufshcd_runtime_suspend(dev_get_drvdata(dev));
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| sujit reddy thumma | sujit reddy thumma | 17 | 85.00% | 1 | 50.00% | 
| subhash jadavani | subhash jadavani | 3 | 15.00% | 1 | 50.00% | 
 | Total | 20 | 100.00% | 2 | 100.00% | 
static int ufshcd_pci_runtime_resume(struct device *dev)
{
	return ufshcd_runtime_resume(dev_get_drvdata(dev));
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| sujit reddy thumma | sujit reddy thumma | 17 | 85.00% | 1 | 50.00% | 
| subhash jadavani | subhash jadavani | 3 | 15.00% | 1 | 50.00% | 
 | Total | 20 | 100.00% | 2 | 100.00% | 
static int ufshcd_pci_runtime_idle(struct device *dev)
{
	return ufshcd_runtime_idle(dev_get_drvdata(dev));
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| sujit reddy thumma | sujit reddy thumma | 17 | 85.00% | 1 | 50.00% | 
| subhash jadavani | subhash jadavani | 3 | 15.00% | 1 | 50.00% | 
 | Total | 20 | 100.00% | 2 | 100.00% | 
#else /* !CONFIG_PM */
#define ufshcd_pci_suspend	NULL
#define ufshcd_pci_resume	NULL
#define ufshcd_pci_runtime_suspend	NULL
#define ufshcd_pci_runtime_resume	NULL
#define ufshcd_pci_runtime_idle	NULL
#endif /* CONFIG_PM */
/**
 * ufshcd_pci_shutdown - main function to put the controller in reset state
 * @pdev: pointer to PCI device handle
 */
static void ufshcd_pci_shutdown(struct pci_dev *pdev)
{
	ufshcd_shutdown((struct ufs_hba *)pci_get_drvdata(pdev));
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| vinayak holikatti | vinayak holikatti | 23 | 95.83% | 1 | 50.00% | 
| subhash jadavani | subhash jadavani | 1 | 4.17% | 1 | 50.00% | 
 | Total | 24 | 100.00% | 2 | 100.00% | 
/**
 * ufshcd_pci_remove - de-allocate PCI/SCSI host and host memory space
 *              data structure memory
 * @pdev - pointer to PCI handle
 */
static void ufshcd_pci_remove(struct pci_dev *pdev)
{
	struct ufs_hba *hba = pci_get_drvdata(pdev);
	pm_runtime_forbid(&pdev->dev);
	pm_runtime_get_noresume(&pdev->dev);
	ufshcd_remove(hba);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| vinayak holikatti | vinayak holikatti | 26 | 61.90% | 1 | 50.00% | 
| sujit reddy thumma | sujit reddy thumma | 16 | 38.10% | 1 | 50.00% | 
 | Total | 42 | 100.00% | 2 | 100.00% | 
/**
 * ufshcd_pci_probe - probe routine of the driver
 * @pdev: pointer to PCI device handle
 * @id: PCI device id
 *
 * Returns 0 on success, non-zero value on failure
 */
static int
ufshcd_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
{
	struct ufs_hba *hba;
	void __iomem *mmio_base;
	int err;
	err = pcim_enable_device(pdev);
	if (err) {
		dev_err(&pdev->dev, "pcim_enable_device failed\n");
		return err;
	}
	pci_set_master(pdev);
	err = pcim_iomap_regions(pdev, 1 << 0, UFSHCD);
	if (err < 0) {
		dev_err(&pdev->dev, "request and iomap failed\n");
		return err;
	}
	mmio_base = pcim_iomap_table(pdev)[0];
	err = ufshcd_alloc_host(&pdev->dev, &hba);
	if (err) {
		dev_err(&pdev->dev, "Allocation failed\n");
		return err;
	}
	INIT_LIST_HEAD(&hba->clk_list_head);
	err = ufshcd_init(hba, mmio_base, pdev->irq);
	if (err) {
		dev_err(&pdev->dev, "Initialization failed\n");
		return err;
	}
	pci_set_drvdata(pdev, hba);
	pm_runtime_put_noidle(&pdev->dev);
	pm_runtime_allow(&pdev->dev);
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| vinayak holikatti | vinayak holikatti | 131 | 64.53% | 1 | 20.00% | 
| sujit reddy thumma | sujit reddy thumma | 51 | 25.12% | 3 | 60.00% | 
| akinobu mita | akinobu mita | 21 | 10.34% | 1 | 20.00% | 
 | Total | 203 | 100.00% | 5 | 100.00% | 
static const struct dev_pm_ops ufshcd_pci_pm_ops = {
	.suspend	= ufshcd_pci_suspend,
	.resume		= ufshcd_pci_resume,
	.runtime_suspend = ufshcd_pci_runtime_suspend,
	.runtime_resume  = ufshcd_pci_runtime_resume,
	.runtime_idle    = ufshcd_pci_runtime_idle,
};
static const struct pci_device_id ufshcd_pci_tbl[] = {
	{ PCI_VENDOR_ID_SAMSUNG, 0xC00C, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
	{ }	/* terminate list */
};
MODULE_DEVICE_TABLE(pci, ufshcd_pci_tbl);
static struct pci_driver ufshcd_pci_driver = {
	.name = UFSHCD,
	.id_table = ufshcd_pci_tbl,
	.probe = ufshcd_pci_probe,
	.remove = ufshcd_pci_remove,
	.shutdown = ufshcd_pci_shutdown,
	.driver = {
		.pm = &ufshcd_pci_pm_ops
	},
};
module_pci_driver(ufshcd_pci_driver);
MODULE_AUTHOR("Santosh Yaragnavi <santosh.sy@samsung.com>");
MODULE_AUTHOR("Vinayak Holikatti <h.vinayak@samsung.com>");
MODULE_DESCRIPTION("UFS host controller PCI glue driver");
MODULE_LICENSE("GPL");
MODULE_VERSION(UFSHCD_DRIVER_VERSION);
Overall Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| vinayak holikatti | vinayak holikatti | 311 | 56.14% | 1 | 12.50% | 
| sujit reddy thumma | sujit reddy thumma | 180 | 32.49% | 3 | 37.50% | 
| subhash jadavani | subhash jadavani | 26 | 4.69% | 1 | 12.50% | 
| akinobu mita | akinobu mita | 21 | 3.79% | 1 | 12.50% | 
| rafael j. wysocki | rafael j. wysocki | 10 | 1.81% | 1 | 12.50% | 
| benoit taine | benoit taine | 6 | 1.08% | 1 | 12.50% | 
 | Total | 554 | 100.00% | 8 | 100.00% | 
  
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.