1/* 2 * linux/drivers/mmc/host/tmio_mmc.c 3 * 4 * Copyright (C) 2007 Ian Molton 5 * Copyright (C) 2004 Ian Molton 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License version 2 as 9 * published by the Free Software Foundation. 10 * 11 * Driver for the MMC / SD / SDIO cell found in: 12 * 13 * TC6393XB TC6391XB TC6387XB T7L66XB ASIC3 14 */ 15 16#include <linux/device.h> 17#include <linux/mfd/core.h> 18#include <linux/mfd/tmio.h> 19#include <linux/mmc/host.h> 20#include <linux/module.h> 21#include <linux/pagemap.h> 22#include <linux/scatterlist.h> 23 24#include "tmio_mmc.h" 25 26#ifdef CONFIG_PM_SLEEP 27static int tmio_mmc_suspend(struct device *dev) 28{ 29 struct platform_device *pdev = to_platform_device(dev); 30 const struct mfd_cell *cell = mfd_get_cell(pdev); 31 int ret; 32 33 ret = pm_runtime_force_suspend(dev); 34 35 /* Tell MFD core it can disable us now.*/ 36 if (!ret && cell->disable) 37 cell->disable(pdev); 38 39 return ret; 40} 41 42static int tmio_mmc_resume(struct device *dev) 43{ 44 struct platform_device *pdev = to_platform_device(dev); 45 const struct mfd_cell *cell = mfd_get_cell(pdev); 46 int ret = 0; 47 48 /* Tell the MFD core we are ready to be enabled */ 49 if (cell->resume) 50 ret = cell->resume(pdev); 51 52 if (!ret) 53 ret = pm_runtime_force_resume(dev); 54 55 return ret; 56} 57#endif 58 59static int tmio_mmc_probe(struct platform_device *pdev) 60{ 61 const struct mfd_cell *cell = mfd_get_cell(pdev); 62 struct tmio_mmc_data *pdata; 63 struct tmio_mmc_host *host; 64 struct resource *res; 65 int ret = -EINVAL, irq; 66 67 if (pdev->num_resources != 2) 68 goto out; 69 70 pdata = pdev->dev.platform_data; 71 if (!pdata || !pdata->hclk) 72 goto out; 73 74 irq = platform_get_irq(pdev, 0); 75 if (irq < 0) { 76 ret = irq; 77 goto out; 78 } 79 80 /* Tell the MFD core we are ready to be enabled */ 81 if (cell->enable) { 82 ret = cell->enable(pdev); 83 if (ret) 84 goto out; 85 } 86 87 res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 88 if (!res) 89 return -EINVAL; 90 91 pdata->flags |= TMIO_MMC_HAVE_HIGH_REG; 92 93 host = tmio_mmc_host_alloc(pdev); 94 if (!host) 95 goto cell_disable; 96 97 /* SD control register space size is 0x200, 0x400 for bus_shift=1 */ 98 host->bus_shift = resource_size(res) >> 10; 99 100 ret = tmio_mmc_host_probe(host, pdata); 101 if (ret) 102 goto host_free; 103 104 ret = request_irq(irq, tmio_mmc_irq, IRQF_TRIGGER_FALLING, 105 dev_name(&pdev->dev), host); 106 if (ret) 107 goto host_remove; 108 109 pr_info("%s at 0x%08lx irq %d\n", mmc_hostname(host->mmc), 110 (unsigned long)host->ctl, irq); 111 112 return 0; 113 114host_remove: 115 tmio_mmc_host_remove(host); 116host_free: 117 tmio_mmc_host_free(host); 118cell_disable: 119 if (cell->disable) 120 cell->disable(pdev); 121out: 122 return ret; 123} 124 125static int tmio_mmc_remove(struct platform_device *pdev) 126{ 127 const struct mfd_cell *cell = mfd_get_cell(pdev); 128 struct mmc_host *mmc = platform_get_drvdata(pdev); 129 130 if (mmc) { 131 struct tmio_mmc_host *host = mmc_priv(mmc); 132 free_irq(platform_get_irq(pdev, 0), host); 133 tmio_mmc_host_remove(host); 134 if (cell->disable) 135 cell->disable(pdev); 136 } 137 138 return 0; 139} 140 141/* ------------------- device registration ----------------------- */ 142 143static const struct dev_pm_ops tmio_mmc_dev_pm_ops = { 144 SET_SYSTEM_SLEEP_PM_OPS(tmio_mmc_suspend, tmio_mmc_resume) 145 SET_RUNTIME_PM_OPS(tmio_mmc_host_runtime_suspend, 146 tmio_mmc_host_runtime_resume, 147 NULL) 148}; 149 150static struct platform_driver tmio_mmc_driver = { 151 .driver = { 152 .name = "tmio-mmc", 153 .pm = &tmio_mmc_dev_pm_ops, 154 }, 155 .probe = tmio_mmc_probe, 156 .remove = tmio_mmc_remove, 157}; 158 159module_platform_driver(tmio_mmc_driver); 160 161MODULE_DESCRIPTION("Toshiba TMIO SD/MMC driver"); 162MODULE_AUTHOR("Ian Molton <spyro@f2s.com>"); 163MODULE_LICENSE("GPL v2"); 164MODULE_ALIAS("platform:tmio-mmc"); 165