19c92ab61SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only 2a702c8abSZhangfei Gao /* 3a702c8abSZhangfei Gao * Copyright (C) 2010 Marvell International Ltd. 4a702c8abSZhangfei Gao * Zhangfei Gao <zhangfei.gao@marvell.com> 5a702c8abSZhangfei Gao * Kevin Wang <dwang4@marvell.com> 6a702c8abSZhangfei Gao * Mingwei Wang <mwwang@marvell.com> 7a702c8abSZhangfei Gao * Philip Rakity <prakity@marvell.com> 8a702c8abSZhangfei Gao * Mark Brown <markb@marvell.com> 9a702c8abSZhangfei Gao */ 10a702c8abSZhangfei Gao #include <linux/err.h> 11a702c8abSZhangfei Gao #include <linux/init.h> 12a702c8abSZhangfei Gao #include <linux/platform_device.h> 13a702c8abSZhangfei Gao #include <linux/clk.h> 14a702c8abSZhangfei Gao #include <linux/io.h> 15a702c8abSZhangfei Gao #include <linux/mmc/card.h> 16a702c8abSZhangfei Gao #include <linux/mmc/host.h> 17bfed345eSZhangfei Gao #include <linux/platform_data/pxa_sdhci.h> 18a702c8abSZhangfei Gao #include <linux/slab.h> 19a702c8abSZhangfei Gao #include <linux/delay.h> 2088b47679SPaul Gortmaker #include <linux/module.h> 21b650352dSChris Ball #include <linux/of.h> 22b650352dSChris Ball #include <linux/of_device.h> 23bb691ae4SKevin Liu #include <linux/pm.h> 24bb691ae4SKevin Liu #include <linux/pm_runtime.h> 255491ce3fSMarcin Wojtas #include <linux/mbus.h> 26b650352dSChris Ball 27a702c8abSZhangfei Gao #include "sdhci.h" 28a702c8abSZhangfei Gao #include "sdhci-pltfm.h" 29a702c8abSZhangfei Gao 30bb691ae4SKevin Liu #define PXAV3_RPM_DELAY_MS 50 31bb691ae4SKevin Liu 32a702c8abSZhangfei Gao #define SD_CLOCK_BURST_SIZE_SETUP 0x10A 33a702c8abSZhangfei Gao #define SDCLK_SEL 0x100 34a702c8abSZhangfei Gao #define SDCLK_DELAY_SHIFT 9 35a702c8abSZhangfei Gao #define SDCLK_DELAY_MASK 0x1f 36a702c8abSZhangfei Gao 37a702c8abSZhangfei Gao #define SD_CFG_FIFO_PARAM 0x100 38a702c8abSZhangfei Gao #define SDCFG_GEN_PAD_CLK_ON (1<<6) 39a702c8abSZhangfei Gao #define SDCFG_GEN_PAD_CLK_CNT_MASK 0xFF 40a702c8abSZhangfei Gao #define SDCFG_GEN_PAD_CLK_CNT_SHIFT 24 41a702c8abSZhangfei Gao 42a702c8abSZhangfei Gao #define SD_SPI_MODE 0x108 43a702c8abSZhangfei Gao #define SD_CE_ATA_1 0x10C 44a702c8abSZhangfei Gao 45a702c8abSZhangfei Gao #define SD_CE_ATA_2 0x10E 46a702c8abSZhangfei Gao #define SDCE_MISC_INT (1<<2) 47a702c8abSZhangfei Gao #define SDCE_MISC_INT_EN (1<<1) 48a702c8abSZhangfei Gao 49cc9571e8SSebastian Hesselbarth struct sdhci_pxa { 508afdc9ccSSebastian Hesselbarth struct clk *clk_core; 518c96a7a3SSebastian Hesselbarth struct clk *clk_io; 52cc9571e8SSebastian Hesselbarth u8 power_mode; 531140011eSMarcin Wojtas void __iomem *sdio3_conf_reg; 54cc9571e8SSebastian Hesselbarth }; 55cc9571e8SSebastian Hesselbarth 565491ce3fSMarcin Wojtas /* 575491ce3fSMarcin Wojtas * These registers are relative to the second register region, for the 585491ce3fSMarcin Wojtas * MBus bridge. 595491ce3fSMarcin Wojtas */ 605491ce3fSMarcin Wojtas #define SDHCI_WINDOW_CTRL(i) (0x80 + ((i) << 3)) 615491ce3fSMarcin Wojtas #define SDHCI_WINDOW_BASE(i) (0x84 + ((i) << 3)) 625491ce3fSMarcin Wojtas #define SDHCI_MAX_WIN_NUM 8 635491ce3fSMarcin Wojtas 641140011eSMarcin Wojtas /* 651140011eSMarcin Wojtas * Fields below belong to SDIO3 Configuration Register (third register 661140011eSMarcin Wojtas * region for the Armada 38x flavor) 671140011eSMarcin Wojtas */ 681140011eSMarcin Wojtas 691140011eSMarcin Wojtas #define SDIO3_CONF_CLK_INV BIT(0) 701140011eSMarcin Wojtas #define SDIO3_CONF_SD_FB_CLK BIT(2) 711140011eSMarcin Wojtas 725491ce3fSMarcin Wojtas static int mv_conf_mbus_windows(struct platform_device *pdev, 735491ce3fSMarcin Wojtas const struct mbus_dram_target_info *dram) 745491ce3fSMarcin Wojtas { 755491ce3fSMarcin Wojtas int i; 765491ce3fSMarcin Wojtas void __iomem *regs; 775491ce3fSMarcin Wojtas struct resource *res; 785491ce3fSMarcin Wojtas 795491ce3fSMarcin Wojtas if (!dram) { 805491ce3fSMarcin Wojtas dev_err(&pdev->dev, "no mbus dram info\n"); 815491ce3fSMarcin Wojtas return -EINVAL; 825491ce3fSMarcin Wojtas } 835491ce3fSMarcin Wojtas 845491ce3fSMarcin Wojtas res = platform_get_resource(pdev, IORESOURCE_MEM, 1); 855491ce3fSMarcin Wojtas if (!res) { 865491ce3fSMarcin Wojtas dev_err(&pdev->dev, "cannot get mbus registers\n"); 875491ce3fSMarcin Wojtas return -EINVAL; 885491ce3fSMarcin Wojtas } 895491ce3fSMarcin Wojtas 905491ce3fSMarcin Wojtas regs = ioremap(res->start, resource_size(res)); 915491ce3fSMarcin Wojtas if (!regs) { 925491ce3fSMarcin Wojtas dev_err(&pdev->dev, "cannot map mbus registers\n"); 935491ce3fSMarcin Wojtas return -ENOMEM; 945491ce3fSMarcin Wojtas } 955491ce3fSMarcin Wojtas 965491ce3fSMarcin Wojtas for (i = 0; i < SDHCI_MAX_WIN_NUM; i++) { 975491ce3fSMarcin Wojtas writel(0, regs + SDHCI_WINDOW_CTRL(i)); 985491ce3fSMarcin Wojtas writel(0, regs + SDHCI_WINDOW_BASE(i)); 995491ce3fSMarcin Wojtas } 1005491ce3fSMarcin Wojtas 1015491ce3fSMarcin Wojtas for (i = 0; i < dram->num_cs; i++) { 1025491ce3fSMarcin Wojtas const struct mbus_dram_window *cs = dram->cs + i; 1035491ce3fSMarcin Wojtas 1045491ce3fSMarcin Wojtas /* Write size, attributes and target id to control register */ 1055491ce3fSMarcin Wojtas writel(((cs->size - 1) & 0xffff0000) | 1065491ce3fSMarcin Wojtas (cs->mbus_attr << 8) | 1075491ce3fSMarcin Wojtas (dram->mbus_dram_target_id << 4) | 1, 1085491ce3fSMarcin Wojtas regs + SDHCI_WINDOW_CTRL(i)); 1095491ce3fSMarcin Wojtas /* Write base address to base register */ 1105491ce3fSMarcin Wojtas writel(cs->base, regs + SDHCI_WINDOW_BASE(i)); 1115491ce3fSMarcin Wojtas } 1125491ce3fSMarcin Wojtas 1135491ce3fSMarcin Wojtas iounmap(regs); 1145491ce3fSMarcin Wojtas 1155491ce3fSMarcin Wojtas return 0; 1165491ce3fSMarcin Wojtas } 1175491ce3fSMarcin Wojtas 118a39128bcSMarcin Wojtas static int armada_38x_quirks(struct platform_device *pdev, 119a39128bcSMarcin Wojtas struct sdhci_host *host) 120d4b803c5SGregory CLEMENT { 121a39128bcSMarcin Wojtas struct device_node *np = pdev->dev.of_node; 1221140011eSMarcin Wojtas struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); 123f599da40SJisheng Zhang struct sdhci_pxa *pxa = sdhci_pltfm_priv(pltfm_host); 1241140011eSMarcin Wojtas struct resource *res; 125a39128bcSMarcin Wojtas 1265de76bfcSNadav Haklai host->quirks &= ~SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN; 127d4b803c5SGregory CLEMENT host->quirks |= SDHCI_QUIRK_MISSING_CAPS; 1280ca33b4aSRussell King 1290ca33b4aSRussell King host->caps = sdhci_readl(host, SDHCI_CAPABILITIES); 1300ca33b4aSRussell King host->caps1 = sdhci_readl(host, SDHCI_CAPABILITIES_1); 1310ca33b4aSRussell King 1321140011eSMarcin Wojtas res = platform_get_resource_byname(pdev, IORESOURCE_MEM, 1331140011eSMarcin Wojtas "conf-sdio3"); 1341140011eSMarcin Wojtas if (res) { 1351140011eSMarcin Wojtas pxa->sdio3_conf_reg = devm_ioremap_resource(&pdev->dev, res); 1361140011eSMarcin Wojtas if (IS_ERR(pxa->sdio3_conf_reg)) 1371140011eSMarcin Wojtas return PTR_ERR(pxa->sdio3_conf_reg); 1381140011eSMarcin Wojtas } else { 139d4b803c5SGregory CLEMENT /* 140d4b803c5SGregory CLEMENT * According to erratum 'FE-2946959' both SDR50 and DDR50 141d4b803c5SGregory CLEMENT * modes require specific clock adjustments in SDIO3 142d4b803c5SGregory CLEMENT * Configuration register, if the adjustment is not done, 143d4b803c5SGregory CLEMENT * remove them from the capabilities. 144d4b803c5SGregory CLEMENT */ 145d4b803c5SGregory CLEMENT host->caps1 &= ~(SDHCI_SUPPORT_SDR50 | SDHCI_SUPPORT_DDR50); 146a39128bcSMarcin Wojtas 1471140011eSMarcin Wojtas dev_warn(&pdev->dev, "conf-sdio3 register not found: disabling SDR50 and DDR50 modes.\nConsider updating your dtb\n"); 1481140011eSMarcin Wojtas } 1491140011eSMarcin Wojtas 150a39128bcSMarcin Wojtas /* 151a39128bcSMarcin Wojtas * According to erratum 'ERR-7878951' Armada 38x SDHCI 152a39128bcSMarcin Wojtas * controller has different capabilities than the ones shown 153a39128bcSMarcin Wojtas * in its registers 154a39128bcSMarcin Wojtas */ 155a39128bcSMarcin Wojtas if (of_property_read_bool(np, "no-1-8-v")) { 156a39128bcSMarcin Wojtas host->caps &= ~SDHCI_CAN_VDD_180; 157a39128bcSMarcin Wojtas host->mmc->caps &= ~MMC_CAP_1_8V_DDR; 158a39128bcSMarcin Wojtas } else { 159a39128bcSMarcin Wojtas host->caps &= ~SDHCI_CAN_VDD_330; 160a39128bcSMarcin Wojtas } 161a39128bcSMarcin Wojtas host->caps1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_USE_SDR50_TUNING); 162a39128bcSMarcin Wojtas 163d4b803c5SGregory CLEMENT return 0; 164d4b803c5SGregory CLEMENT } 165d4b803c5SGregory CLEMENT 16603231f9bSRussell King static void pxav3_reset(struct sdhci_host *host, u8 mask) 167a702c8abSZhangfei Gao { 168a702c8abSZhangfei Gao struct platform_device *pdev = to_platform_device(mmc_dev(host->mmc)); 169a702c8abSZhangfei Gao struct sdhci_pxa_platdata *pdata = pdev->dev.platform_data; 170a702c8abSZhangfei Gao 17103231f9bSRussell King sdhci_reset(host, mask); 17203231f9bSRussell King 173a702c8abSZhangfei Gao if (mask == SDHCI_RESET_ALL) { 174a702c8abSZhangfei Gao /* 175a702c8abSZhangfei Gao * tune timing of read data/command when crc error happen 176a702c8abSZhangfei Gao * no performance impact 177a702c8abSZhangfei Gao */ 178a702c8abSZhangfei Gao if (pdata && 0 != pdata->clk_delay_cycles) { 179a702c8abSZhangfei Gao u16 tmp; 180a702c8abSZhangfei Gao 181a702c8abSZhangfei Gao tmp = readw(host->ioaddr + SD_CLOCK_BURST_SIZE_SETUP); 182a702c8abSZhangfei Gao tmp |= (pdata->clk_delay_cycles & SDCLK_DELAY_MASK) 183a702c8abSZhangfei Gao << SDCLK_DELAY_SHIFT; 184a702c8abSZhangfei Gao tmp |= SDCLK_SEL; 185a702c8abSZhangfei Gao writew(tmp, host->ioaddr + SD_CLOCK_BURST_SIZE_SETUP); 186a702c8abSZhangfei Gao } 187a702c8abSZhangfei Gao } 188a702c8abSZhangfei Gao } 189a702c8abSZhangfei Gao 190a702c8abSZhangfei Gao #define MAX_WAIT_COUNT 5 191a702c8abSZhangfei Gao static void pxav3_gen_init_74_clocks(struct sdhci_host *host, u8 power_mode) 192a702c8abSZhangfei Gao { 193a702c8abSZhangfei Gao struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); 194f599da40SJisheng Zhang struct sdhci_pxa *pxa = sdhci_pltfm_priv(pltfm_host); 195a702c8abSZhangfei Gao u16 tmp; 196a702c8abSZhangfei Gao int count; 197a702c8abSZhangfei Gao 198a702c8abSZhangfei Gao if (pxa->power_mode == MMC_POWER_UP 199a702c8abSZhangfei Gao && power_mode == MMC_POWER_ON) { 200a702c8abSZhangfei Gao 201a702c8abSZhangfei Gao dev_dbg(mmc_dev(host->mmc), 202a702c8abSZhangfei Gao "%s: slot->power_mode = %d," 203a702c8abSZhangfei Gao "ios->power_mode = %d\n", 204a702c8abSZhangfei Gao __func__, 205a702c8abSZhangfei Gao pxa->power_mode, 206a702c8abSZhangfei Gao power_mode); 207a702c8abSZhangfei Gao 208a702c8abSZhangfei Gao /* set we want notice of when 74 clocks are sent */ 209a702c8abSZhangfei Gao tmp = readw(host->ioaddr + SD_CE_ATA_2); 210a702c8abSZhangfei Gao tmp |= SDCE_MISC_INT_EN; 211a702c8abSZhangfei Gao writew(tmp, host->ioaddr + SD_CE_ATA_2); 212a702c8abSZhangfei Gao 213a702c8abSZhangfei Gao /* start sending the 74 clocks */ 214a702c8abSZhangfei Gao tmp = readw(host->ioaddr + SD_CFG_FIFO_PARAM); 215a702c8abSZhangfei Gao tmp |= SDCFG_GEN_PAD_CLK_ON; 216a702c8abSZhangfei Gao writew(tmp, host->ioaddr + SD_CFG_FIFO_PARAM); 217a702c8abSZhangfei Gao 218a702c8abSZhangfei Gao /* slowest speed is about 100KHz or 10usec per clock */ 219a702c8abSZhangfei Gao udelay(740); 220a702c8abSZhangfei Gao count = 0; 221a702c8abSZhangfei Gao 222a702c8abSZhangfei Gao while (count++ < MAX_WAIT_COUNT) { 223a702c8abSZhangfei Gao if ((readw(host->ioaddr + SD_CE_ATA_2) 224a702c8abSZhangfei Gao & SDCE_MISC_INT) == 0) 225a702c8abSZhangfei Gao break; 226a702c8abSZhangfei Gao udelay(10); 227a702c8abSZhangfei Gao } 228a702c8abSZhangfei Gao 229a702c8abSZhangfei Gao if (count == MAX_WAIT_COUNT) 230a702c8abSZhangfei Gao dev_warn(mmc_dev(host->mmc), "74 clock interrupt not cleared\n"); 231a702c8abSZhangfei Gao 232a702c8abSZhangfei Gao /* clear the interrupt bit if posted */ 233a702c8abSZhangfei Gao tmp = readw(host->ioaddr + SD_CE_ATA_2); 234a702c8abSZhangfei Gao tmp |= SDCE_MISC_INT; 235a702c8abSZhangfei Gao writew(tmp, host->ioaddr + SD_CE_ATA_2); 236a702c8abSZhangfei Gao } 237a702c8abSZhangfei Gao pxa->power_mode = power_mode; 238a702c8abSZhangfei Gao } 239a702c8abSZhangfei Gao 24013e64501SRussell King static void pxav3_set_uhs_signaling(struct sdhci_host *host, unsigned int uhs) 241a702c8abSZhangfei Gao { 2421140011eSMarcin Wojtas struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); 243f599da40SJisheng Zhang struct sdhci_pxa *pxa = sdhci_pltfm_priv(pltfm_host); 244a702c8abSZhangfei Gao u16 ctrl_2; 245a702c8abSZhangfei Gao 246a702c8abSZhangfei Gao /* 247a702c8abSZhangfei Gao * Set V18_EN -- UHS modes do not work without this. 248a702c8abSZhangfei Gao * does not change signaling voltage 249a702c8abSZhangfei Gao */ 250a702c8abSZhangfei Gao ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2); 251a702c8abSZhangfei Gao 252a702c8abSZhangfei Gao /* Select Bus Speed Mode for host */ 253a702c8abSZhangfei Gao ctrl_2 &= ~SDHCI_CTRL_UHS_MASK; 254a702c8abSZhangfei Gao switch (uhs) { 255a702c8abSZhangfei Gao case MMC_TIMING_UHS_SDR12: 256a702c8abSZhangfei Gao ctrl_2 |= SDHCI_CTRL_UHS_SDR12; 257a702c8abSZhangfei Gao break; 258a702c8abSZhangfei Gao case MMC_TIMING_UHS_SDR25: 259a702c8abSZhangfei Gao ctrl_2 |= SDHCI_CTRL_UHS_SDR25; 260a702c8abSZhangfei Gao break; 261a702c8abSZhangfei Gao case MMC_TIMING_UHS_SDR50: 262a702c8abSZhangfei Gao ctrl_2 |= SDHCI_CTRL_UHS_SDR50 | SDHCI_CTRL_VDD_180; 263a702c8abSZhangfei Gao break; 264a702c8abSZhangfei Gao case MMC_TIMING_UHS_SDR104: 265a702c8abSZhangfei Gao ctrl_2 |= SDHCI_CTRL_UHS_SDR104 | SDHCI_CTRL_VDD_180; 266a702c8abSZhangfei Gao break; 267668e84b2SSebastian Hesselbarth case MMC_TIMING_MMC_DDR52: 268a702c8abSZhangfei Gao case MMC_TIMING_UHS_DDR50: 269a702c8abSZhangfei Gao ctrl_2 |= SDHCI_CTRL_UHS_DDR50 | SDHCI_CTRL_VDD_180; 270a702c8abSZhangfei Gao break; 271a702c8abSZhangfei Gao } 272a702c8abSZhangfei Gao 2731140011eSMarcin Wojtas /* 2741140011eSMarcin Wojtas * Update SDIO3 Configuration register according to erratum 2751140011eSMarcin Wojtas * FE-2946959 2761140011eSMarcin Wojtas */ 2771140011eSMarcin Wojtas if (pxa->sdio3_conf_reg) { 2781140011eSMarcin Wojtas u8 reg_val = readb(pxa->sdio3_conf_reg); 2791140011eSMarcin Wojtas 2801140011eSMarcin Wojtas if (uhs == MMC_TIMING_UHS_SDR50 || 2811140011eSMarcin Wojtas uhs == MMC_TIMING_UHS_DDR50) { 2821140011eSMarcin Wojtas reg_val &= ~SDIO3_CONF_CLK_INV; 2831140011eSMarcin Wojtas reg_val |= SDIO3_CONF_SD_FB_CLK; 284fa796414SNadav Haklai } else if (uhs == MMC_TIMING_MMC_HS) { 285fa796414SNadav Haklai reg_val &= ~SDIO3_CONF_CLK_INV; 286fa796414SNadav Haklai reg_val &= ~SDIO3_CONF_SD_FB_CLK; 2871140011eSMarcin Wojtas } else { 2881140011eSMarcin Wojtas reg_val |= SDIO3_CONF_CLK_INV; 2891140011eSMarcin Wojtas reg_val &= ~SDIO3_CONF_SD_FB_CLK; 2901140011eSMarcin Wojtas } 2911140011eSMarcin Wojtas writeb(reg_val, pxa->sdio3_conf_reg); 2921140011eSMarcin Wojtas } 2931140011eSMarcin Wojtas 294a702c8abSZhangfei Gao sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2); 295a702c8abSZhangfei Gao dev_dbg(mmc_dev(host->mmc), 296a702c8abSZhangfei Gao "%s uhs = %d, ctrl_2 = %04X\n", 297a702c8abSZhangfei Gao __func__, uhs, ctrl_2); 298a702c8abSZhangfei Gao } 299a702c8abSZhangfei Gao 3001dceb041SAdrian Hunter static void pxav3_set_power(struct sdhci_host *host, unsigned char mode, 3011dceb041SAdrian Hunter unsigned short vdd) 3021dceb041SAdrian Hunter { 3031dceb041SAdrian Hunter struct mmc_host *mmc = host->mmc; 3041dceb041SAdrian Hunter u8 pwr = host->pwr; 3051dceb041SAdrian Hunter 306606d3131SAdrian Hunter sdhci_set_power_noreg(host, mode, vdd); 3071dceb041SAdrian Hunter 3081dceb041SAdrian Hunter if (host->pwr == pwr) 3091dceb041SAdrian Hunter return; 3101dceb041SAdrian Hunter 3111dceb041SAdrian Hunter if (host->pwr == 0) 3121dceb041SAdrian Hunter vdd = 0; 3131dceb041SAdrian Hunter 314d1e4f74fSAdrian Hunter if (!IS_ERR(mmc->supply.vmmc)) 3151dceb041SAdrian Hunter mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd); 3161dceb041SAdrian Hunter } 3171dceb041SAdrian Hunter 318c915568dSLars-Peter Clausen static const struct sdhci_ops pxav3_sdhci_ops = { 3191771059cSRussell King .set_clock = sdhci_set_clock, 3201dceb041SAdrian Hunter .set_power = pxav3_set_power, 321a702c8abSZhangfei Gao .platform_send_init_74_clocks = pxav3_gen_init_74_clocks, 322d005d943SLars-Peter Clausen .get_max_clock = sdhci_pltfm_clk_get_max_clock, 3232317f56cSRussell King .set_bus_width = sdhci_set_bus_width, 32403231f9bSRussell King .reset = pxav3_reset, 325b3153765SPeter Griffin .set_uhs_signaling = pxav3_set_uhs_signaling, 326a702c8abSZhangfei Gao }; 327a702c8abSZhangfei Gao 328d35ade8fSJulia Lawall static const struct sdhci_pltfm_data sdhci_pxav3_pdata = { 329e065162aSKevin Liu .quirks = SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK 33073b7afb9SKevin Liu | SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC 33173b7afb9SKevin Liu | SDHCI_QUIRK_32BIT_ADMA_SIZE 33273b7afb9SKevin Liu | SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN, 33373b7afb9SKevin Liu .ops = &pxav3_sdhci_ops, 33473b7afb9SKevin Liu }; 33573b7afb9SKevin Liu 336b650352dSChris Ball #ifdef CONFIG_OF 337b650352dSChris Ball static const struct of_device_id sdhci_pxav3_of_match[] = { 338b650352dSChris Ball { 339b650352dSChris Ball .compatible = "mrvl,pxav3-mmc", 340b650352dSChris Ball }, 3415491ce3fSMarcin Wojtas { 3425491ce3fSMarcin Wojtas .compatible = "marvell,armada-380-sdhci", 3435491ce3fSMarcin Wojtas }, 344b650352dSChris Ball {}, 345b650352dSChris Ball }; 346b650352dSChris Ball MODULE_DEVICE_TABLE(of, sdhci_pxav3_of_match); 347b650352dSChris Ball 348b650352dSChris Ball static struct sdhci_pxa_platdata *pxav3_get_mmc_pdata(struct device *dev) 349b650352dSChris Ball { 350b650352dSChris Ball struct sdhci_pxa_platdata *pdata; 351b650352dSChris Ball struct device_node *np = dev->of_node; 352b650352dSChris Ball u32 clk_delay_cycles; 353b650352dSChris Ball 354b650352dSChris Ball pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL); 355b650352dSChris Ball if (!pdata) 356b650352dSChris Ball return NULL; 357b650352dSChris Ball 35814460dbaSJisheng Zhang if (!of_property_read_u32(np, "mrvl,clk-delay-cycles", 35914460dbaSJisheng Zhang &clk_delay_cycles)) 360b650352dSChris Ball pdata->clk_delay_cycles = clk_delay_cycles; 361b650352dSChris Ball 362b650352dSChris Ball return pdata; 363b650352dSChris Ball } 364b650352dSChris Ball #else 365b650352dSChris Ball static inline struct sdhci_pxa_platdata *pxav3_get_mmc_pdata(struct device *dev) 366b650352dSChris Ball { 367b650352dSChris Ball return NULL; 368b650352dSChris Ball } 369b650352dSChris Ball #endif 370b650352dSChris Ball 371c3be1efdSBill Pemberton static int sdhci_pxav3_probe(struct platform_device *pdev) 372a702c8abSZhangfei Gao { 373a702c8abSZhangfei Gao struct sdhci_pltfm_host *pltfm_host; 374a702c8abSZhangfei Gao struct sdhci_pxa_platdata *pdata = pdev->dev.platform_data; 375a702c8abSZhangfei Gao struct device *dev = &pdev->dev; 3765491ce3fSMarcin Wojtas struct device_node *np = pdev->dev.of_node; 377a702c8abSZhangfei Gao struct sdhci_host *host = NULL; 378a702c8abSZhangfei Gao struct sdhci_pxa *pxa = NULL; 379b650352dSChris Ball const struct of_device_id *match; 380a702c8abSZhangfei Gao int ret; 381a702c8abSZhangfei Gao 382f599da40SJisheng Zhang host = sdhci_pltfm_init(pdev, &sdhci_pxav3_pdata, sizeof(*pxa)); 3833df5b281SLaurent Pinchart if (IS_ERR(host)) 384a702c8abSZhangfei Gao return PTR_ERR(host); 3855491ce3fSMarcin Wojtas 386a702c8abSZhangfei Gao pltfm_host = sdhci_priv(host); 387f599da40SJisheng Zhang pxa = sdhci_pltfm_priv(pltfm_host); 388a702c8abSZhangfei Gao 38901ae1070SSebastian Hesselbarth pxa->clk_io = devm_clk_get(dev, "io"); 39001ae1070SSebastian Hesselbarth if (IS_ERR(pxa->clk_io)) 3918c96a7a3SSebastian Hesselbarth pxa->clk_io = devm_clk_get(dev, NULL); 3928c96a7a3SSebastian Hesselbarth if (IS_ERR(pxa->clk_io)) { 393a702c8abSZhangfei Gao dev_err(dev, "failed to get io clock\n"); 3948c96a7a3SSebastian Hesselbarth ret = PTR_ERR(pxa->clk_io); 395a702c8abSZhangfei Gao goto err_clk_get; 396a702c8abSZhangfei Gao } 3978c96a7a3SSebastian Hesselbarth pltfm_host->clk = pxa->clk_io; 3988c96a7a3SSebastian Hesselbarth clk_prepare_enable(pxa->clk_io); 399a702c8abSZhangfei Gao 4008afdc9ccSSebastian Hesselbarth pxa->clk_core = devm_clk_get(dev, "core"); 4018afdc9ccSSebastian Hesselbarth if (!IS_ERR(pxa->clk_core)) 4028afdc9ccSSebastian Hesselbarth clk_prepare_enable(pxa->clk_core); 4038afdc9ccSSebastian Hesselbarth 404a39128bcSMarcin Wojtas /* enable 1/8V DDR capable */ 405a39128bcSMarcin Wojtas host->mmc->caps |= MMC_CAP_1_8V_DDR; 406a39128bcSMarcin Wojtas 407aa8165f9SThomas Petazzoni if (of_device_is_compatible(np, "marvell,armada-380-sdhci")) { 408a39128bcSMarcin Wojtas ret = armada_38x_quirks(pdev, host); 409d4b803c5SGregory CLEMENT if (ret < 0) 4102162d9f4SMarcin Wojtas goto err_mbus_win; 411aa8165f9SThomas Petazzoni ret = mv_conf_mbus_windows(pdev, mv_mbus_dram_info()); 412aa8165f9SThomas Petazzoni if (ret < 0) 413aa8165f9SThomas Petazzoni goto err_mbus_win; 414aa8165f9SThomas Petazzoni } 415aa8165f9SThomas Petazzoni 416b650352dSChris Ball match = of_match_device(of_match_ptr(sdhci_pxav3_of_match), &pdev->dev); 417943647f6SKevin Liu if (match) { 418d2cf6071SSimon Baatz ret = mmc_of_parse(host->mmc); 419d2cf6071SSimon Baatz if (ret) 420d2cf6071SSimon Baatz goto err_of_parse; 421943647f6SKevin Liu sdhci_get_of_property(pdev); 422b650352dSChris Ball pdata = pxav3_get_mmc_pdata(dev); 4239cd76049SJingju Hou pdev->dev.platform_data = pdata; 424943647f6SKevin Liu } else if (pdata) { 425a702c8abSZhangfei Gao /* on-chip device */ 426c844a46fSKevin Liu if (pdata->flags & PXA_FLAG_CARD_PERMANENT) 427a702c8abSZhangfei Gao host->mmc->caps |= MMC_CAP_NONREMOVABLE; 428a702c8abSZhangfei Gao 429a702c8abSZhangfei Gao /* If slot design supports 8 bit data, indicate this to MMC. */ 430a702c8abSZhangfei Gao if (pdata->flags & PXA_FLAG_SD_8_BIT_CAPABLE_SLOT) 431a702c8abSZhangfei Gao host->mmc->caps |= MMC_CAP_8_BIT_DATA; 432a702c8abSZhangfei Gao 433a702c8abSZhangfei Gao if (pdata->quirks) 434a702c8abSZhangfei Gao host->quirks |= pdata->quirks; 4357c52d7bbSKevin Liu if (pdata->quirks2) 4367c52d7bbSKevin Liu host->quirks2 |= pdata->quirks2; 437a702c8abSZhangfei Gao if (pdata->host_caps) 438a702c8abSZhangfei Gao host->mmc->caps |= pdata->host_caps; 4398f63795cSChris Ball if (pdata->host_caps2) 4408f63795cSChris Ball host->mmc->caps2 |= pdata->host_caps2; 441a702c8abSZhangfei Gao if (pdata->pm_caps) 442a702c8abSZhangfei Gao host->mmc->pm_caps |= pdata->pm_caps; 443a702c8abSZhangfei Gao } 444a702c8abSZhangfei Gao 44562cf983aSJisheng Zhang pm_runtime_get_noresume(&pdev->dev); 44662cf983aSJisheng Zhang pm_runtime_set_active(&pdev->dev); 447bb691ae4SKevin Liu pm_runtime_set_autosuspend_delay(&pdev->dev, PXAV3_RPM_DELAY_MS); 448bb691ae4SKevin Liu pm_runtime_use_autosuspend(&pdev->dev); 44962cf983aSJisheng Zhang pm_runtime_enable(&pdev->dev); 450bb691ae4SKevin Liu pm_suspend_ignore_children(&pdev->dev, 1); 451bb691ae4SKevin Liu 452a702c8abSZhangfei Gao ret = sdhci_add_host(host); 453fb8617e1SJisheng Zhang if (ret) 454a702c8abSZhangfei Gao goto err_add_host; 455a702c8abSZhangfei Gao 45683dc9fecSJisheng Zhang if (host->mmc->pm_caps & MMC_PM_WAKE_SDIO_IRQ) 457740b7a44SKevin Liu device_init_wakeup(&pdev->dev, 1); 458740b7a44SKevin Liu 459bb691ae4SKevin Liu pm_runtime_put_autosuspend(&pdev->dev); 460bb691ae4SKevin Liu 461a702c8abSZhangfei Gao return 0; 462a702c8abSZhangfei Gao 463a702c8abSZhangfei Gao err_add_host: 4640dcaa249SDaniel Drake pm_runtime_disable(&pdev->dev); 46562cf983aSJisheng Zhang pm_runtime_put_noidle(&pdev->dev); 46687d2163dSXiang Wang err_of_parse: 467aa8165f9SThomas Petazzoni err_mbus_win: 4688c96a7a3SSebastian Hesselbarth clk_disable_unprepare(pxa->clk_io); 4698afdc9ccSSebastian Hesselbarth clk_disable_unprepare(pxa->clk_core); 470a702c8abSZhangfei Gao err_clk_get: 471a702c8abSZhangfei Gao sdhci_pltfm_free(pdev); 472a702c8abSZhangfei Gao return ret; 473a702c8abSZhangfei Gao } 474a702c8abSZhangfei Gao 4756e0ee714SBill Pemberton static int sdhci_pxav3_remove(struct platform_device *pdev) 476a702c8abSZhangfei Gao { 477a702c8abSZhangfei Gao struct sdhci_host *host = platform_get_drvdata(pdev); 478a702c8abSZhangfei Gao struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); 479f599da40SJisheng Zhang struct sdhci_pxa *pxa = sdhci_pltfm_priv(pltfm_host); 480a702c8abSZhangfei Gao 481bb691ae4SKevin Liu pm_runtime_get_sync(&pdev->dev); 482bb691ae4SKevin Liu pm_runtime_disable(&pdev->dev); 48320f1f2d7SJisheng Zhang pm_runtime_put_noidle(&pdev->dev); 48420f1f2d7SJisheng Zhang 48520f1f2d7SJisheng Zhang sdhci_remove_host(host, 1); 486a702c8abSZhangfei Gao 4878c96a7a3SSebastian Hesselbarth clk_disable_unprepare(pxa->clk_io); 4888afdc9ccSSebastian Hesselbarth clk_disable_unprepare(pxa->clk_core); 4898f63795cSChris Ball 490a702c8abSZhangfei Gao sdhci_pltfm_free(pdev); 491a702c8abSZhangfei Gao 492a702c8abSZhangfei Gao return 0; 493a702c8abSZhangfei Gao } 494a702c8abSZhangfei Gao 495bb691ae4SKevin Liu #ifdef CONFIG_PM_SLEEP 496bb691ae4SKevin Liu static int sdhci_pxav3_suspend(struct device *dev) 497bb691ae4SKevin Liu { 498bb691ae4SKevin Liu int ret; 499bb691ae4SKevin Liu struct sdhci_host *host = dev_get_drvdata(dev); 500bb691ae4SKevin Liu 501bb691ae4SKevin Liu pm_runtime_get_sync(dev); 502d38dcad4SAdrian Hunter if (host->tuning_mode != SDHCI_TUNING_MODE_3) 503d38dcad4SAdrian Hunter mmc_retune_needed(host->mmc); 504bb691ae4SKevin Liu ret = sdhci_suspend_host(host); 505bb691ae4SKevin Liu pm_runtime_mark_last_busy(dev); 506bb691ae4SKevin Liu pm_runtime_put_autosuspend(dev); 507bb691ae4SKevin Liu 508bb691ae4SKevin Liu return ret; 509bb691ae4SKevin Liu } 510bb691ae4SKevin Liu 511bb691ae4SKevin Liu static int sdhci_pxav3_resume(struct device *dev) 512bb691ae4SKevin Liu { 513bb691ae4SKevin Liu int ret; 514bb691ae4SKevin Liu struct sdhci_host *host = dev_get_drvdata(dev); 515bb691ae4SKevin Liu 516bb691ae4SKevin Liu pm_runtime_get_sync(dev); 517bb691ae4SKevin Liu ret = sdhci_resume_host(host); 518bb691ae4SKevin Liu pm_runtime_mark_last_busy(dev); 519bb691ae4SKevin Liu pm_runtime_put_autosuspend(dev); 520bb691ae4SKevin Liu 521bb691ae4SKevin Liu return ret; 522bb691ae4SKevin Liu } 523bb691ae4SKevin Liu #endif 524bb691ae4SKevin Liu 525162d6f98SRafael J. Wysocki #ifdef CONFIG_PM 526bb691ae4SKevin Liu static int sdhci_pxav3_runtime_suspend(struct device *dev) 527bb691ae4SKevin Liu { 528bb691ae4SKevin Liu struct sdhci_host *host = dev_get_drvdata(dev); 529bb691ae4SKevin Liu struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); 530f599da40SJisheng Zhang struct sdhci_pxa *pxa = sdhci_pltfm_priv(pltfm_host); 5313bb10f60SJisheng Zhang int ret; 532bb691ae4SKevin Liu 5333bb10f60SJisheng Zhang ret = sdhci_runtime_suspend_host(host); 5343bb10f60SJisheng Zhang if (ret) 5353bb10f60SJisheng Zhang return ret; 536bb691ae4SKevin Liu 537d38dcad4SAdrian Hunter if (host->tuning_mode != SDHCI_TUNING_MODE_3) 538d38dcad4SAdrian Hunter mmc_retune_needed(host->mmc); 539d38dcad4SAdrian Hunter 5408c96a7a3SSebastian Hesselbarth clk_disable_unprepare(pxa->clk_io); 5418afdc9ccSSebastian Hesselbarth if (!IS_ERR(pxa->clk_core)) 5428afdc9ccSSebastian Hesselbarth clk_disable_unprepare(pxa->clk_core); 543bb691ae4SKevin Liu 544bb691ae4SKevin Liu return 0; 545bb691ae4SKevin Liu } 546bb691ae4SKevin Liu 547bb691ae4SKevin Liu static int sdhci_pxav3_runtime_resume(struct device *dev) 548bb691ae4SKevin Liu { 549bb691ae4SKevin Liu struct sdhci_host *host = dev_get_drvdata(dev); 550bb691ae4SKevin Liu struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); 551f599da40SJisheng Zhang struct sdhci_pxa *pxa = sdhci_pltfm_priv(pltfm_host); 552bb691ae4SKevin Liu 5538c96a7a3SSebastian Hesselbarth clk_prepare_enable(pxa->clk_io); 5548afdc9ccSSebastian Hesselbarth if (!IS_ERR(pxa->clk_core)) 5558afdc9ccSSebastian Hesselbarth clk_prepare_enable(pxa->clk_core); 556bb691ae4SKevin Liu 557*c6303c5dSBaolin Wang return sdhci_runtime_resume_host(host, 0); 558bb691ae4SKevin Liu } 559bb691ae4SKevin Liu #endif 560bb691ae4SKevin Liu 561bb691ae4SKevin Liu static const struct dev_pm_ops sdhci_pxav3_pmops = { 562bb691ae4SKevin Liu SET_SYSTEM_SLEEP_PM_OPS(sdhci_pxav3_suspend, sdhci_pxav3_resume) 563bb691ae4SKevin Liu SET_RUNTIME_PM_OPS(sdhci_pxav3_runtime_suspend, 564bb691ae4SKevin Liu sdhci_pxav3_runtime_resume, NULL) 565bb691ae4SKevin Liu }; 566bb691ae4SKevin Liu 567a702c8abSZhangfei Gao static struct platform_driver sdhci_pxav3_driver = { 568a702c8abSZhangfei Gao .driver = { 569a702c8abSZhangfei Gao .name = "sdhci-pxav3", 57059d22309SAxel Lin .of_match_table = of_match_ptr(sdhci_pxav3_of_match), 571a81ce772SUlf Hansson .pm = &sdhci_pxav3_pmops, 572a702c8abSZhangfei Gao }, 573a702c8abSZhangfei Gao .probe = sdhci_pxav3_probe, 5740433c143SBill Pemberton .remove = sdhci_pxav3_remove, 575a702c8abSZhangfei Gao }; 576a702c8abSZhangfei Gao 577d1f81a64SAxel Lin module_platform_driver(sdhci_pxav3_driver); 578a702c8abSZhangfei Gao 579a702c8abSZhangfei Gao MODULE_DESCRIPTION("SDHCI driver for pxav3"); 580a702c8abSZhangfei Gao MODULE_AUTHOR("Marvell International Ltd."); 581a702c8abSZhangfei Gao MODULE_LICENSE("GPL v2"); 582a702c8abSZhangfei Gao 583