Release 4.7 drivers/mmc/host/sdhci-pltfm.c
/*
* sdhci-pltfm.c Support for SDHCI platform devices
* Copyright (c) 2009 Intel Corporation
*
* Copyright (c) 2007, 2011 Freescale Semiconductor, Inc.
* Copyright (c) 2009 MontaVista Software, Inc.
*
* Authors: Xiaobo Xie <X.Xie@freescale.com>
* Anton Vorontsov <avorontsov@ru.mvista.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* Supports:
* SDHCI platform devices
*
* Inspired by sdhci-pci.c, by Pierre Ossman
*/
#include <linux/err.h>
#include <linux/module.h>
#include <linux/of.h>
#ifdef CONFIG_PPC
#include <asm/machdep.h>
#endif
#include "sdhci-pltfm.h"
unsigned int sdhci_pltfm_clk_get_max_clock(struct sdhci_host *host)
{
struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
return clk_get_rate(pltfm_host->clk);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
lars-peter clausen | lars-peter clausen | 29 | 100.00% | 1 | 100.00% |
| Total | 29 | 100.00% | 1 | 100.00% |
EXPORT_SYMBOL_GPL(sdhci_pltfm_clk_get_max_clock);
static const struct sdhci_ops sdhci_pltfm_ops = {
.set_clock = sdhci_set_clock,
.set_bus_width = sdhci_set_bus_width,
.reset = sdhci_reset,
.set_uhs_signaling = sdhci_set_uhs_signaling,
};
#ifdef CONFIG_OF
static bool sdhci_of_wp_inverted(struct device_node *np)
{
if (of_get_property(np, "sdhci,wp-inverted", NULL) ||
of_get_property(np, "wp-inverted", NULL))
return true;
/* Old device trees don't have the wp-inverted property. */
#ifdef CONFIG_PPC
return machine_is(mpc837x_rdb) || machine_is(mpc837x_mds);
#else
return false;
#endif /* CONFIG_PPC */
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
shawn guo | shawn guo | 48 | 84.21% | 1 | 50.00% |
arnd bergmann | arnd bergmann | 9 | 15.79% | 1 | 50.00% |
| Total | 57 | 100.00% | 2 | 100.00% |
void sdhci_get_of_property(struct platform_device *pdev)
{
struct device_node *np = pdev->dev.of_node;
struct sdhci_host *host = platform_get_drvdata(pdev);
struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
u32 bus_width;
if (of_get_property(np, "sdhci,auto-cmd12", NULL))
host->quirks |= SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12;
if (of_get_property(np, "sdhci,1-bit-only", NULL) ||
(of_property_read_u32(np, "bus-width", &bus_width) == 0 &&
bus_width == 1))
host->quirks |= SDHCI_QUIRK_FORCE_1_BIT_DATA;
if (sdhci_of_wp_inverted(np))
host->quirks |= SDHCI_QUIRK_INVERTED_WRITE_PROTECT;
if (of_get_property(np, "broken-cd", NULL))
host->quirks |= SDHCI_QUIRK_BROKEN_CARD_DETECTION;
if (of_get_property(np, "no-1-8-v", NULL))
host->quirks2 |= SDHCI_QUIRK2_NO_1_8_V;
if (of_device_is_compatible(np, "fsl,p2020-rev1-esdhc"))
host->quirks |= SDHCI_QUIRK_BROKEN_DMA;
if (of_device_is_compatible(np, "fsl,p2020-esdhc") ||
of_device_is_compatible(np, "fsl,p1010-esdhc") ||
of_device_is_compatible(np, "fsl,t4240-esdhc") ||
of_device_is_compatible(np, "fsl,mpc8536-esdhc"))
host->quirks |= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL;
of_property_read_u32(np, "clock-frequency", &pltfm_host->clock);
if (of_find_property(np, "keep-power-in-suspend", NULL))
host->mmc->pm_caps |= MMC_PM_KEEP_POWER;
if (of_property_read_bool(np, "wakeup-source") ||
of_property_read_bool(np, "enable-sdio-wakeup")) /* legacy */
host->mmc->pm_caps |= MMC_PM_WAKE_SDIO_IRQ;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
shawn guo | shawn guo | 99 | 39.60% | 1 | 10.00% |
jerry huang | jerry huang | 44 | 17.60% | 2 | 20.00% |
abhilash kesavan | abhilash kesavan | 35 | 14.00% | 1 | 10.00% |
arnd bergmann | arnd bergmann | 21 | 8.40% | 1 | 10.00% |
daniel drake | daniel drake | 17 | 6.80% | 1 | 10.00% |
chris ball | chris ball | 17 | 6.80% | 1 | 10.00% |
sudeep holla | sudeep holla | 9 | 3.60% | 1 | 10.00% |
chunhe lan | chunhe lan | 7 | 2.80% | 1 | 10.00% |
tobias klauser | tobias klauser | 1 | 0.40% | 1 | 10.00% |
| Total | 250 | 100.00% | 10 | 100.00% |
#else
void sdhci_get_of_property(struct platform_device *pdev) {}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
shawn guo | shawn guo | 9 | 100.00% | 1 | 100.00% |
| Total | 9 | 100.00% | 1 | 100.00% |
#endif /* CONFIG_OF */
EXPORT_SYMBOL_GPL(sdhci_get_of_property);
struct sdhci_host *sdhci_pltfm_init(struct platform_device *pdev,
const struct sdhci_pltfm_data *pdata,
size_t priv_size)
{
struct sdhci_host *host;
struct resource *iomem;
void __iomem *ioaddr;
int irq, ret;
iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
ioaddr = devm_ioremap_resource(&pdev->dev, iomem);
if (IS_ERR(ioaddr)) {
ret = PTR_ERR(ioaddr);
goto err;
}
irq = platform_get_irq(pdev, 0);
if (irq < 0) {
dev_err(&pdev->dev, "failed to get IRQ number\n");
ret = irq;
goto err;
}
host = sdhci_alloc_host(&pdev->dev,
sizeof(struct sdhci_pltfm_host) + priv_size);
if (IS_ERR(host)) {
ret = PTR_ERR(host);
goto err;
}
host->ioaddr = ioaddr;
host->irq = irq;
host->hw_name = dev_name(&pdev->dev);
if (pdata && pdata->ops)
host->ops = pdata->ops;
else
host->ops = &sdhci_pltfm_ops;
if (pdata) {
host->quirks = pdata->quirks;
host->quirks2 = pdata->quirks2;
}
/*
* Some platforms need to probe the controller to be able to
* determine which caps should be used.
*/
if (host->ops && host->ops->platform_init)
host->ops->platform_init(host);
platform_set_drvdata(pdev, host);
return host;
err:
dev_err(&pdev->dev, "%s failed %d\n", __func__, ret);
return ERR_PTR(ret);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
richard rojfors | richard rojfors | 99 | 35.61% | 1 | 8.33% |
masahiro yamada | masahiro yamada | 73 | 26.26% | 2 | 16.67% |
anton vorontsov | anton vorontsov | 34 | 12.23% | 2 | 16.67% |
shawn guo | shawn guo | 27 | 9.71% | 1 | 8.33% |
jerry huang | jerry huang | 22 | 7.91% | 1 | 8.33% |
al cooper | al cooper | 8 | 2.88% | 1 | 8.33% |
christian daudt | christian daudt | 7 | 2.52% | 1 | 8.33% |
wolfram sang | wolfram sang | 7 | 2.52% | 2 | 16.67% |
lars-peter clausen | lars-peter clausen | 1 | 0.36% | 1 | 8.33% |
| Total | 278 | 100.00% | 12 | 100.00% |
EXPORT_SYMBOL_GPL(sdhci_pltfm_init);
void sdhci_pltfm_free(struct platform_device *pdev)
{
struct sdhci_host *host = platform_get_drvdata(pdev);
sdhci_free_host(host);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
richard rojfors | richard rojfors | 23 | 92.00% | 1 | 50.00% |
shawn guo | shawn guo | 2 | 8.00% | 1 | 50.00% |
| Total | 25 | 100.00% | 2 | 100.00% |
EXPORT_SYMBOL_GPL(sdhci_pltfm_free);
int sdhci_pltfm_register(struct platform_device *pdev,
const struct sdhci_pltfm_data *pdata,
size_t priv_size)
{
struct sdhci_host *host;
int ret = 0;
host = sdhci_pltfm_init(pdev, pdata, priv_size);
if (IS_ERR(host))
return PTR_ERR(host);
sdhci_get_of_property(pdev);
ret = sdhci_add_host(host);
if (ret)
sdhci_pltfm_free(pdev);
return ret;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
shawn guo | shawn guo | 68 | 88.31% | 2 | 33.33% |
christian daudt | christian daudt | 5 | 6.49% | 1 | 16.67% |
mike rapoport | mike rapoport | 2 | 2.60% | 1 | 16.67% |
lars-peter clausen | lars-peter clausen | 1 | 1.30% | 1 | 16.67% |
anton vorontsov | anton vorontsov | 1 | 1.30% | 1 | 16.67% |
| Total | 77 | 100.00% | 6 | 100.00% |
EXPORT_SYMBOL_GPL(sdhci_pltfm_register);
int sdhci_pltfm_unregister(struct platform_device *pdev)
{
struct sdhci_host *host = platform_get_drvdata(pdev);
struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
int dead = (readl(host->ioaddr + SDHCI_INT_STATUS) == 0xffffffff);
sdhci_remove_host(host, dead);
clk_disable_unprepare(pltfm_host->clk);
sdhci_pltfm_free(pdev);
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
shawn guo | shawn guo | 43 | 63.24% | 1 | 25.00% |
kevin hao | kevin hao | 17 | 25.00% | 1 | 25.00% |
anton vorontsov | anton vorontsov | 5 | 7.35% | 1 | 25.00% |
olof johansson | olof johansson | 3 | 4.41% | 1 | 25.00% |
| Total | 68 | 100.00% | 4 | 100.00% |
EXPORT_SYMBOL_GPL(sdhci_pltfm_unregister);
#ifdef CONFIG_PM
int sdhci_pltfm_suspend(struct device *dev)
{
struct sdhci_host *host = dev_get_drvdata(dev);
return sdhci_suspend_host(host);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
giuseppe cavallaro | giuseppe cavallaro | 24 | 92.31% | 1 | 50.00% |
manuel lauss | manuel lauss | 2 | 7.69% | 1 | 50.00% |
| Total | 26 | 100.00% | 2 | 100.00% |
EXPORT_SYMBOL_GPL(sdhci_pltfm_suspend);
int sdhci_pltfm_resume(struct device *dev)
{
struct sdhci_host *host = dev_get_drvdata(dev);
return sdhci_resume_host(host);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
giuseppe cavallaro | giuseppe cavallaro | 24 | 92.31% | 1 | 50.00% |
manuel lauss | manuel lauss | 2 | 7.69% | 1 | 50.00% |
| Total | 26 | 100.00% | 2 | 100.00% |
EXPORT_SYMBOL_GPL(sdhci_pltfm_resume);
const struct dev_pm_ops sdhci_pltfm_pmops = {
.suspend = sdhci_pltfm_suspend,
.resume = sdhci_pltfm_resume,
};
EXPORT_SYMBOL_GPL(sdhci_pltfm_pmops);
#endif /* CONFIG_PM */
static int __init sdhci_pltfm_drv_init(void)
{
pr_info("sdhci-pltfm: SDHCI platform and OF driver helper\n");
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
shawn guo | shawn guo | 17 | 100.00% | 1 | 100.00% |
| Total | 17 | 100.00% | 1 | 100.00% |
module_init(sdhci_pltfm_drv_init);
static void __exit sdhci_pltfm_drv_exit(void)
{
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
shawn guo | shawn guo | 8 | 100.00% | 1 | 100.00% |
| Total | 8 | 100.00% | 1 | 100.00% |
module_exit(sdhci_pltfm_drv_exit);
MODULE_DESCRIPTION("SDHCI platform and OF driver helper");
MODULE_AUTHOR("Intel Corporation");
MODULE_LICENSE("GPL v2");
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
shawn guo | shawn guo | 395 | 38.69% | 3 | 8.33% |
richard rojfors | richard rojfors | 131 | 12.83% | 1 | 2.78% |
masahiro yamada | masahiro yamada | 73 | 7.15% | 2 | 5.56% |
jerry huang | jerry huang | 67 | 6.56% | 3 | 8.33% |
giuseppe cavallaro | giuseppe cavallaro | 54 | 5.29% | 1 | 2.78% |
anton vorontsov | anton vorontsov | 43 | 4.21% | 2 | 5.56% |
lars-peter clausen | lars-peter clausen | 37 | 3.62% | 3 | 8.33% |
abhilash kesavan | abhilash kesavan | 35 | 3.43% | 1 | 2.78% |
arnd bergmann | arnd bergmann | 30 | 2.94% | 1 | 2.78% |
manuel lauss | manuel lauss | 22 | 2.15% | 1 | 2.78% |
russell king | russell king | 21 | 2.06% | 4 | 11.11% |
kevin hao | kevin hao | 17 | 1.67% | 1 | 2.78% |
daniel drake | daniel drake | 17 | 1.67% | 1 | 2.78% |
chris ball | chris ball | 17 | 1.67% | 1 | 2.78% |
christian daudt | christian daudt | 12 | 1.18% | 1 | 2.78% |
dong aisheng | dong aisheng | 10 | 0.98% | 1 | 2.78% |
sudeep holla | sudeep holla | 9 | 0.88% | 1 | 2.78% |
al cooper | al cooper | 8 | 0.78% | 1 | 2.78% |
chunhe lan | chunhe lan | 7 | 0.69% | 1 | 2.78% |
wolfram sang | wolfram sang | 7 | 0.69% | 2 | 5.56% |
olof johansson | olof johansson | 3 | 0.29% | 1 | 2.78% |
paul gortmaker | paul gortmaker | 3 | 0.29% | 1 | 2.78% |
mike rapoport | mike rapoport | 2 | 0.20% | 1 | 2.78% |
tobias klauser | tobias klauser | 1 | 0.10% | 1 | 2.78% |
| Total | 1021 | 100.00% | 36 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.