Release 4.7 drivers/mmc/host/sdhci-of-esdhc.c
  
  
/*
 * Freescale eSDHC controller driver.
 *
 * Copyright (c) 2007, 2010, 2012 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 as published by
 * the Free Software Foundation; either version 2 of the License, or (at
 * your option) any later version.
 */
#include <linux/err.h>
#include <linux/io.h>
#include <linux/of.h>
#include <linux/delay.h>
#include <linux/module.h>
#include <linux/mmc/host.h>
#include "sdhci-pltfm.h"
#include "sdhci-esdhc.h"
#define VENDOR_V_22	0x12
#define VENDOR_V_23	0x13
struct sdhci_esdhc {
	
u8 vendor_ver;
	
u8 spec_ver;
};
/**
 * esdhc_read*_fixup - Fixup the value read from incompatible eSDHC register
 *                     to make it compatible with SD spec.
 *
 * @host: pointer to sdhci_host
 * @spec_reg: SD spec register address
 * @value: 32bit eSDHC register value on spec_reg address
 *
 * In SD spec, there are 8/16/32/64 bits registers, while all of eSDHC
 * registers are 32 bits. There are differences in register size, register
 * address, register function, bit position and function between eSDHC spec
 * and SD spec.
 *
 * Return a fixed up register value
 */
static u32 esdhc_readl_fixup(struct sdhci_host *host,
				     int spec_reg, u32 value)
{
	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
	struct sdhci_esdhc *esdhc = sdhci_pltfm_priv(pltfm_host);
	u32 ret;
	/*
         * The bit of ADMA flag in eSDHC is not compatible with standard
         * SDHC register, so set fake flag SDHCI_CAN_DO_ADMA2 when ADMA is
         * supported by eSDHC.
         * And for many FSL eSDHC controller, the reset value of field
         * SDHCI_CAN_DO_ADMA1 is 1, but some of them can't support ADMA,
         * only these vendor version is greater than 2.2/0x12 support ADMA.
         */
	if ((spec_reg == SDHCI_CAPABILITIES) && (value & SDHCI_CAN_DO_ADMA1)) {
		if (esdhc->vendor_ver > VENDOR_V_22) {
			ret = value | SDHCI_CAN_DO_ADMA2;
			return ret;
		}
	}
	ret = value;
	return ret;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 40 | 48.19% | 1 | 33.33% | 
| jerry huang | jerry huang | 40 | 48.19% | 1 | 33.33% | 
| jisheng zhang | jisheng zhang | 3 | 3.61% | 1 | 33.33% | 
 | Total | 83 | 100.00% | 3 | 100.00% | 
static u16 esdhc_readw_fixup(struct sdhci_host *host,
				     int spec_reg, u32 value)
{
	u16 ret;
	int shift = (spec_reg & 0x2) * 8;
	if (spec_reg == SDHCI_HOST_VERSION)
		ret = value & 0xffff;
	else
		ret = (value >> shift) & 0xffff;
	return ret;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| albert herranz | albert herranz | 30 | 52.63% | 1 | 33.33% | 
| xu lei | xu lei | 18 | 31.58% | 1 | 33.33% | 
| yangbo lu | yangbo lu | 9 | 15.79% | 1 | 33.33% | 
 | Total | 57 | 100.00% | 3 | 100.00% | 
static u8 esdhc_readb_fixup(struct sdhci_host *host,
				     int spec_reg, u32 value)
{
	u8 ret;
	u8 dma_bits;
	int shift = (spec_reg & 0x3) * 8;
	ret = (value >> shift) & 0xff;
	/*
         * "DMA select" locates at offset 0x28 in SD specification, but on
         * P5020 or P3041, it locates at 0x29.
         */
	if (spec_reg == SDHCI_HOST_CONTROL) {
		/* DMA select is 22,23 bits in Protocol Control Register */
		dma_bits = (value >> 5) & SDHCI_CTRL_DMA_MASK;
		/* fixup the result */
		ret &= ~SDHCI_CTRL_DMA_MASK;
		ret |= dma_bits;
	}
	return ret;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| xu lei | xu lei | 33 | 42.86% | 1 | 33.33% | 
| roy zang | roy zang | 28 | 36.36% | 1 | 33.33% | 
| yangbo lu | yangbo lu | 16 | 20.78% | 1 | 33.33% | 
 | Total | 77 | 100.00% | 3 | 100.00% | 
/**
 * esdhc_write*_fixup - Fixup the SD spec register value so that it could be
 *                      written into eSDHC register.
 *
 * @host: pointer to sdhci_host
 * @spec_reg: SD spec register address
 * @value: 8/16/32bit SD spec register value that would be written
 * @old_value: 32bit eSDHC register value on spec_reg address
 *
 * In SD spec, there are 8/16/32/64 bits registers, while all of eSDHC
 * registers are 32 bits. There are differences in register size, register
 * address, register function, bit position and function between eSDHC spec
 * and SD spec.
 *
 * Return a fixed up register value
 */
static u32 esdhc_writel_fixup(struct sdhci_host *host,
				     int spec_reg, u32 value, u32 old_value)
{
	u32 ret;
	/*
         * Enabling IRQSTATEN[BGESEN] is just to set IRQSTAT[BGE]
         * when SYSCTL[RSTD] is set for some special operations.
         * No any impact on other operation.
         */
	if (spec_reg == SDHCI_INT_ENABLE)
		ret = value | SDHCI_INT_BLK_GAP;
	else
		ret = value;
	return ret;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 24 | 54.55% | 1 | 50.00% | 
| haijun zhang | haijun zhang | 20 | 45.45% | 1 | 50.00% | 
 | Total | 44 | 100.00% | 2 | 100.00% | 
static u32 esdhc_writew_fixup(struct sdhci_host *host,
				     int spec_reg, u16 value, u32 old_value)
{
	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
	int shift = (spec_reg & 0x2) * 8;
	u32 ret;
	switch (spec_reg) {
	case SDHCI_TRANSFER_MODE:
		/*
                 * Postpone this write, we must do it together with a
                 * command write that is down below. Return old value.
                 */
		pltfm_host->xfer_mode_shadow = value;
		return old_value;
	case SDHCI_COMMAND:
		ret = (value << 16) | pltfm_host->xfer_mode_shadow;
		return ret;
	}
	ret = old_value & (~(0xffff << shift));
	ret |= (value << shift);
	if (spec_reg == SDHCI_BLOCK_SIZE) {
		/*
                 * Two last DMA bits are reserved, and first one is used for
                 * non-standard blksz of 4096 bytes that we don't support
                 * yet. So clear the DMA boundary bits.
                 */
		ret &= (~SDHCI_MAKE_BLKSZ(0x7, 0));
	}
	return ret;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 108 | 85.71% | 1 | 25.00% | 
| albert herranz | albert herranz | 15 | 11.90% | 1 | 25.00% | 
| roy zang | roy zang | 2 | 1.59% | 1 | 25.00% | 
| oded gabbay | oded gabbay | 1 | 0.79% | 1 | 25.00% | 
 | Total | 126 | 100.00% | 4 | 100.00% | 
static u32 esdhc_writeb_fixup(struct sdhci_host *host,
				     int spec_reg, u8 value, u32 old_value)
{
	u32 ret;
	u32 dma_bits;
	u8 tmp;
	int shift = (spec_reg & 0x3) * 8;
	/*
         * eSDHC doesn't have a standard power control register, so we do
         * nothing here to avoid incorrect operation.
         */
	if (spec_reg == SDHCI_POWER_CONTROL)
		return old_value;
	/*
         * "DMA select" location is offset 0x28 in SD specification, but on
         * P5020 or P3041, it's located at 0x29.
         */
	if (spec_reg == SDHCI_HOST_CONTROL) {
		/*
                 * If host control register is not standard, exit
                 * this function
                 */
		if (host->quirks2 & SDHCI_QUIRK2_BROKEN_HOST_CONTROL)
			return old_value;
		/* DMA select is 22,23 bits in Protocol Control Register */
		dma_bits = (value & SDHCI_CTRL_DMA_MASK) << 5;
		ret = (old_value & (~(SDHCI_CTRL_DMA_MASK << 5))) | dma_bits;
		tmp = (value & (~SDHCI_CTRL_DMA_MASK)) |
		      (old_value & SDHCI_CTRL_DMA_MASK);
		ret = (ret & (~0xff)) | tmp;
		/* Prevent SDHCI core from writing reserved bits (e.g. HISPD) */
		ret &= ~ESDHC_HOST_CONTROL_RES;
		return ret;
	}
	ret = (old_value & (~(0xff << shift))) | (value << shift);
	return ret;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 154 | 95.06% | 2 | 50.00% | 
| oded gabbay | oded gabbay | 4 | 2.47% | 1 | 25.00% | 
| roy zang | roy zang | 4 | 2.47% | 1 | 25.00% | 
 | Total | 162 | 100.00% | 4 | 100.00% | 
static u32 esdhc_be_readl(struct sdhci_host *host, int reg)
{
	u32 ret;
	u32 value;
	value = ioread32be(host->ioaddr + reg);
	ret = esdhc_readl_fixup(host, reg, value);
	return ret;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 45 | 100.00% | 1 | 100.00% | 
 | Total | 45 | 100.00% | 1 | 100.00% | 
static u32 esdhc_le_readl(struct sdhci_host *host, int reg)
{
	u32 ret;
	u32 value;
	value = ioread32(host->ioaddr + reg);
	ret = esdhc_readl_fixup(host, reg, value);
	return ret;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 45 | 100.00% | 1 | 100.00% | 
 | Total | 45 | 100.00% | 1 | 100.00% | 
static u16 esdhc_be_readw(struct sdhci_host *host, int reg)
{
	u16 ret;
	u32 value;
	int base = reg & ~0x3;
	value = ioread32be(host->ioaddr + base);
	ret = esdhc_readw_fixup(host, reg, value);
	return ret;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 53 | 100.00% | 1 | 100.00% | 
 | Total | 53 | 100.00% | 1 | 100.00% | 
static u16 esdhc_le_readw(struct sdhci_host *host, int reg)
{
	u16 ret;
	u32 value;
	int base = reg & ~0x3;
	value = ioread32(host->ioaddr + base);
	ret = esdhc_readw_fixup(host, reg, value);
	return ret;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 53 | 100.00% | 1 | 100.00% | 
 | Total | 53 | 100.00% | 1 | 100.00% | 
static u8 esdhc_be_readb(struct sdhci_host *host, int reg)
{
	u8 ret;
	u32 value;
	int base = reg & ~0x3;
	value = ioread32be(host->ioaddr + base);
	ret = esdhc_readb_fixup(host, reg, value);
	return ret;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 53 | 100.00% | 1 | 100.00% | 
 | Total | 53 | 100.00% | 1 | 100.00% | 
static u8 esdhc_le_readb(struct sdhci_host *host, int reg)
{
	u8 ret;
	u32 value;
	int base = reg & ~0x3;
	value = ioread32(host->ioaddr + base);
	ret = esdhc_readb_fixup(host, reg, value);
	return ret;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 53 | 100.00% | 1 | 100.00% | 
 | Total | 53 | 100.00% | 1 | 100.00% | 
static void esdhc_be_writel(struct sdhci_host *host, u32 val, int reg)
{
	u32 value;
	value = esdhc_writel_fixup(host, reg, val, 0);
	iowrite32be(value, host->ioaddr + reg);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 44 | 100.00% | 1 | 100.00% | 
 | Total | 44 | 100.00% | 1 | 100.00% | 
static void esdhc_le_writel(struct sdhci_host *host, u32 val, int reg)
{
	u32 value;
	value = esdhc_writel_fixup(host, reg, val, 0);
	iowrite32(value, host->ioaddr + reg);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 44 | 100.00% | 1 | 100.00% | 
 | Total | 44 | 100.00% | 1 | 100.00% | 
static void esdhc_be_writew(struct sdhci_host *host, u16 val, int reg)
{
	int base = reg & ~0x3;
	u32 value;
	u32 ret;
	value = ioread32be(host->ioaddr + base);
	ret = esdhc_writew_fixup(host, reg, val, value);
	if (reg != SDHCI_TRANSFER_MODE)
		iowrite32be(ret, host->ioaddr + base);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 72 | 100.00% | 1 | 100.00% | 
 | Total | 72 | 100.00% | 1 | 100.00% | 
static void esdhc_le_writew(struct sdhci_host *host, u16 val, int reg)
{
	int base = reg & ~0x3;
	u32 value;
	u32 ret;
	value = ioread32(host->ioaddr + base);
	ret = esdhc_writew_fixup(host, reg, val, value);
	if (reg != SDHCI_TRANSFER_MODE)
		iowrite32(ret, host->ioaddr + base);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 72 | 100.00% | 1 | 100.00% | 
 | Total | 72 | 100.00% | 1 | 100.00% | 
static void esdhc_be_writeb(struct sdhci_host *host, u8 val, int reg)
{
	int base = reg & ~0x3;
	u32 value;
	u32 ret;
	value = ioread32be(host->ioaddr + base);
	ret = esdhc_writeb_fixup(host, reg, val, value);
	iowrite32be(ret, host->ioaddr + base);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 46 | 69.70% | 1 | 50.00% | 
| roy zang | roy zang | 20 | 30.30% | 1 | 50.00% | 
 | Total | 66 | 100.00% | 2 | 100.00% | 
static void esdhc_le_writeb(struct sdhci_host *host, u8 val, int reg)
{
	int base = reg & ~0x3;
	u32 value;
	u32 ret;
	value = ioread32(host->ioaddr + base);
	ret = esdhc_writeb_fixup(host, reg, val, value);
	iowrite32(ret, host->ioaddr + base);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 55 | 83.33% | 1 | 50.00% | 
| albert herranz | albert herranz | 11 | 16.67% | 1 | 50.00% | 
 | Total | 66 | 100.00% | 2 | 100.00% | 
/*
 * For Abort or Suspend after Stop at Block Gap, ignore the ADMA
 * error(IRQSTAT[ADMAE]) if both Transfer Complete(IRQSTAT[TC])
 * and Block Gap Event(IRQSTAT[BGE]) are also set.
 * For Continue, apply soft reset for data(SYSCTL[RSTD]);
 * and re-issue the entire read transaction from beginning.
 */
static void esdhc_of_adma_workaround(struct sdhci_host *host, u32 intmask)
{
	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
	struct sdhci_esdhc *esdhc = sdhci_pltfm_priv(pltfm_host);
	bool applicable;
	dma_addr_t dmastart;
	dma_addr_t dmanow;
	applicable = (intmask & SDHCI_INT_DATA_END) &&
		     (intmask & SDHCI_INT_BLK_GAP) &&
		     (esdhc->vendor_ver == VENDOR_V_23);
	if (!applicable)
		return;
	host->data->error = 0;
	dmastart = sg_dma_address(host->data->sg);
	dmanow = dmastart + host->data->bytes_xfered;
	/*
         * Force update to the next DMA block boundary.
         */
	dmanow = (dmanow & ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1)) +
		SDHCI_DEFAULT_BOUNDARY_SIZE;
	host->data->bytes_xfered = dmanow - dmastart;
	sdhci_writel(host, dmanow, SDHCI_DMA_ADDRESS);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| haijun zhang | haijun zhang | 112 | 82.96% | 1 | 33.33% | 
| yangbo lu | yangbo lu | 20 | 14.81% | 1 | 33.33% | 
| jisheng zhang | jisheng zhang | 3 | 2.22% | 1 | 33.33% | 
 | Total | 135 | 100.00% | 3 | 100.00% | 
static int esdhc_of_enable_dma(struct sdhci_host *host)
{
	u32 value;
	value = sdhci_readl(host, ESDHC_DMA_SYSCTL);
	value |= ESDHC_DMA_SNOOP;
	sdhci_writel(host, value, ESDHC_DMA_SYSCTL);
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 19 | 48.72% | 1 | 33.33% | 
| albert herranz | albert herranz | 19 | 48.72% | 1 | 33.33% | 
| wolfram sang | wolfram sang | 1 | 2.56% | 1 | 33.33% | 
 | Total | 39 | 100.00% | 3 | 100.00% | 
static unsigned int esdhc_of_get_max_clock(struct sdhci_host *host)
{
	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
	return pltfm_host->clock;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| albert herranz | albert herranz | 23 | 85.19% | 1 | 33.33% | 
| shawn guo | shawn guo | 3 | 11.11% | 1 | 33.33% | 
| wolfram sang | wolfram sang | 1 | 3.70% | 1 | 33.33% | 
 | Total | 27 | 100.00% | 3 | 100.00% | 
static unsigned int esdhc_of_get_min_clock(struct sdhci_host *host)
{
	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
	return pltfm_host->clock / 256 / 16;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| albert herranz | albert herranz | 27 | 87.10% | 1 | 33.33% | 
| shawn guo | shawn guo | 3 | 9.68% | 1 | 33.33% | 
| wolfram sang | wolfram sang | 1 | 3.23% | 1 | 33.33% | 
 | Total | 31 | 100.00% | 3 | 100.00% | 
static void esdhc_of_set_clock(struct sdhci_host *host, unsigned int clock)
{
	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
	struct sdhci_esdhc *esdhc = sdhci_pltfm_priv(pltfm_host);
	int pre_div = 1;
	int div = 1;
	u32 temp;
	host->mmc->actual_clock = 0;
	if (clock == 0)
		return;
	/* Workaround to start pre_div at 2 for VNN < VENDOR_V_23 */
	if (esdhc->vendor_ver < VENDOR_V_23)
		pre_div = 2;
	/* Workaround to reduce the clock frequency for p1010 esdhc */
	if (of_find_compatible_node(NULL, NULL, "fsl,p1010-esdhc")) {
		if (clock > 20000000)
			clock -= 5000000;
		if (clock > 40000000)
			clock -= 5000000;
	}
	temp = sdhci_readl(host, ESDHC_SYSTEM_CONTROL);
	temp &= ~(ESDHC_CLOCK_IPGEN | ESDHC_CLOCK_HCKEN | ESDHC_CLOCK_PEREN
		| ESDHC_CLOCK_MASK);
	sdhci_writel(host, temp, ESDHC_SYSTEM_CONTROL);
	while (host->max_clk / pre_div / 16 > clock && pre_div < 256)
		pre_div *= 2;
	while (host->max_clk / pre_div / div > clock && div < 16)
		div++;
	dev_dbg(mmc_dev(host->mmc), "desired SD clock: %d, actual: %d\n",
		clock, host->max_clk / pre_div / div);
	host->mmc->actual_clock = host->max_clk / pre_div / div;
	pre_div >>= 1;
	div--;
	temp = sdhci_readl(host, ESDHC_SYSTEM_CONTROL);
	temp |= (ESDHC_CLOCK_IPGEN | ESDHC_CLOCK_HCKEN | ESDHC_CLOCK_PEREN
		| (div << ESDHC_DIVIDER_SHIFT)
		| (pre_div << ESDHC_PREDIV_SHIFT));
	sdhci_writel(host, temp, ESDHC_SYSTEM_CONTROL);
	mdelay(1);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| dong aisheng | dong aisheng | 150 | 55.97% | 2 | 16.67% | 
| jerry huang | jerry huang | 55 | 20.52% | 3 | 25.00% | 
| yangbo lu | yangbo lu | 32 | 11.94% | 2 | 16.67% | 
| joakim tjernlund | joakim tjernlund | 15 | 5.60% | 1 | 8.33% | 
| russell king | russell king | 9 | 3.36% | 2 | 16.67% | 
| lucas stach | lucas stach | 4 | 1.49% | 1 | 8.33% | 
| jisheng zhang | jisheng zhang | 3 | 1.12% | 1 | 8.33% | 
 | Total | 268 | 100.00% | 12 | 100.00% | 
static void esdhc_pltfm_set_bus_width(struct sdhci_host *host, int width)
{
	u32 ctrl;
	ctrl = sdhci_readl(host, ESDHC_PROCTL);
	ctrl &= (~ESDHC_CTRL_BUSWIDTH_MASK);
	switch (width) {
	case MMC_BUS_WIDTH_8:
		ctrl |= ESDHC_CTRL_8BITBUS;
		break;
	case MMC_BUS_WIDTH_4:
		ctrl |= ESDHC_CTRL_4BITBUS;
		break;
	default:
		break;
	}
	sdhci_writel(host, ctrl, ESDHC_PROCTL);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| oded gabbay | oded gabbay | 43 | 65.15% | 1 | 33.33% | 
| yangbo lu | yangbo lu | 21 | 31.82% | 1 | 33.33% | 
| russell king | russell king | 2 | 3.03% | 1 | 33.33% | 
 | Total | 66 | 100.00% | 3 | 100.00% | 
static void esdhc_reset(struct sdhci_host *host, u8 mask)
{
	sdhci_reset(host, mask);
	sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
	sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| alessio igor bogani | alessio igor bogani | 43 | 100.00% | 1 | 100.00% | 
 | Total | 43 | 100.00% | 1 | 100.00% | 
#ifdef CONFIG_PM
static u32 esdhc_proctl;
static int esdhc_of_suspend(struct device *dev)
{
	struct sdhci_host *host = dev_get_drvdata(dev);
	esdhc_proctl = sdhci_readl(host, SDHCI_HOST_CONTROL);
	return sdhci_suspend_host(host);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| russell king | russell king | 35 | 97.22% | 1 | 50.00% | 
| yangbo lu | yangbo lu | 1 | 2.78% | 1 | 50.00% | 
 | Total | 36 | 100.00% | 2 | 100.00% | 
static int esdhc_of_resume(struct device *dev)
{
	struct sdhci_host *host = dev_get_drvdata(dev);
	int ret = sdhci_resume_host(host);
	if (ret == 0) {
		/* Isn't this already done by sdhci_resume_host() ? --rmk */
		esdhc_of_enable_dma(host);
		sdhci_writel(host, esdhc_proctl, SDHCI_HOST_CONTROL);
	}
	return ret;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 35 | 63.64% | 1 | 33.33% | 
| russell king | russell king | 18 | 32.73% | 1 | 33.33% | 
| ulf hansson | ulf hansson | 2 | 3.64% | 1 | 33.33% | 
 | Total | 55 | 100.00% | 3 | 100.00% | 
static const struct dev_pm_ops esdhc_pmops = {
	.suspend	= esdhc_of_suspend,
	.resume		= esdhc_of_resume,
};
#define ESDHC_PMOPS (&esdhc_pmops)
#else
#define ESDHC_PMOPS NULL
#endif
static const struct sdhci_ops sdhci_esdhc_be_ops = {
	.read_l = esdhc_be_readl,
	.read_w = esdhc_be_readw,
	.read_b = esdhc_be_readb,
	.write_l = esdhc_be_writel,
	.write_w = esdhc_be_writew,
	.write_b = esdhc_be_writeb,
	.set_clock = esdhc_of_set_clock,
	.enable_dma = esdhc_of_enable_dma,
	.get_max_clock = esdhc_of_get_max_clock,
	.get_min_clock = esdhc_of_get_min_clock,
	.adma_workaround = esdhc_of_adma_workaround,
	.set_bus_width = esdhc_pltfm_set_bus_width,
	.reset = esdhc_reset,
	.set_uhs_signaling = sdhci_set_uhs_signaling,
};
static const struct sdhci_ops sdhci_esdhc_le_ops = {
	.read_l = esdhc_le_readl,
	.read_w = esdhc_le_readw,
	.read_b = esdhc_le_readb,
	.write_l = esdhc_le_writel,
	.write_w = esdhc_le_writew,
	.write_b = esdhc_le_writeb,
	.set_clock = esdhc_of_set_clock,
	.enable_dma = esdhc_of_enable_dma,
	.get_max_clock = esdhc_of_get_max_clock,
	.get_min_clock = esdhc_of_get_min_clock,
	.adma_workaround = esdhc_of_adma_workaround,
	.set_bus_width = esdhc_pltfm_set_bus_width,
	.reset = esdhc_reset,
	.set_uhs_signaling = sdhci_set_uhs_signaling,
};
static const struct sdhci_pltfm_data sdhci_esdhc_be_pdata = {
	.quirks = ESDHC_DEFAULT_QUIRKS | SDHCI_QUIRK_BROKEN_CARD_DETECTION
		| SDHCI_QUIRK_NO_CARD_NO_RESET
		| SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
	.ops = &sdhci_esdhc_be_ops,
};
static const struct sdhci_pltfm_data sdhci_esdhc_le_pdata = {
	.quirks = ESDHC_DEFAULT_QUIRKS | SDHCI_QUIRK_BROKEN_CARD_DETECTION
		| SDHCI_QUIRK_NO_CARD_NO_RESET
		| SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
	.ops = &sdhci_esdhc_le_ops,
};
static void esdhc_init(struct platform_device *pdev, struct sdhci_host *host)
{
	struct sdhci_pltfm_host *pltfm_host;
	struct sdhci_esdhc *esdhc;
	u16 host_ver;
	pltfm_host = sdhci_priv(host);
	esdhc = sdhci_pltfm_priv(pltfm_host);
	host_ver = sdhci_readw(host, SDHCI_HOST_VERSION);
	esdhc->vendor_ver = (host_ver & SDHCI_VENDOR_VER_MASK) >>
			     SDHCI_VENDOR_VER_SHIFT;
	esdhc->spec_ver = host_ver & SDHCI_SPEC_VER_MASK;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 70 | 97.22% | 1 | 50.00% | 
| jisheng zhang | jisheng zhang | 2 | 2.78% | 1 | 50.00% | 
 | Total | 72 | 100.00% | 2 | 100.00% | 
static int sdhci_esdhc_probe(struct platform_device *pdev)
{
	struct sdhci_host *host;
	struct device_node *np;
	struct sdhci_pltfm_host *pltfm_host;
	struct sdhci_esdhc *esdhc;
	int ret;
	np = pdev->dev.of_node;
	if (of_get_property(np, "little-endian", NULL))
		host = sdhci_pltfm_init(pdev, &sdhci_esdhc_le_pdata,
					sizeof(struct sdhci_esdhc));
	else
		host = sdhci_pltfm_init(pdev, &sdhci_esdhc_be_pdata,
					sizeof(struct sdhci_esdhc));
	if (IS_ERR(host))
		return PTR_ERR(host);
	esdhc_init(pdev, host);
	sdhci_get_of_property(pdev);
	pltfm_host = sdhci_priv(host);
	esdhc = sdhci_pltfm_priv(pltfm_host);
	if (esdhc->vendor_ver == VENDOR_V_22)
		host->quirks2 |= SDHCI_QUIRK2_HOST_NO_CMD23;
	if (esdhc->vendor_ver > VENDOR_V_22)
		host->quirks &= ~SDHCI_QUIRK_NO_BUSY_IRQ;
	if (of_device_is_compatible(np, "fsl,p5040-esdhc") ||
	    of_device_is_compatible(np, "fsl,p5020-esdhc") ||
	    of_device_is_compatible(np, "fsl,p4080-esdhc") ||
	    of_device_is_compatible(np, "fsl,p1020-esdhc") ||
	    of_device_is_compatible(np, "fsl,t1040-esdhc") ||
	    of_device_is_compatible(np, "fsl,ls1021a-esdhc"))
		host->quirks &= ~SDHCI_QUIRK_BROKEN_CARD_DETECTION;
	if (of_device_is_compatible(np, "fsl,ls1021a-esdhc"))
		host->quirks |= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL;
	if (of_device_is_compatible(np, "fsl,p2020-esdhc")) {
		/*
                 * Freescale messed up with P2020 as it has a non-standard
                 * host control register
                 */
		host->quirks2 |= SDHCI_QUIRK2_BROKEN_HOST_CONTROL;
	}
	/* call to generic mmc_of_parse to support additional capabilities */
	ret = mmc_of_parse(host->mmc);
	if (ret)
		goto err;
	mmc_of_parse_voltage(np, &host->ocr_mask);
	ret = sdhci_add_host(host);
	if (ret)
		goto err;
	return 0;
 err:
	sdhci_pltfm_free(pdev);
	return ret;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 154 | 52.74% | 5 | 41.67% | 
| oded gabbay | oded gabbay | 80 | 27.40% | 2 | 16.67% | 
| ulf hansson | ulf hansson | 17 | 5.82% | 1 | 8.33% | 
| shawn guo | shawn guo | 17 | 5.82% | 1 | 8.33% | 
| jisheng zhang | jisheng zhang | 13 | 4.45% | 1 | 8.33% | 
| haijun zhang | haijun zhang | 10 | 3.42% | 1 | 8.33% | 
| christian daudt | christian daudt | 1 | 0.34% | 1 | 8.33% | 
 | Total | 292 | 100.00% | 12 | 100.00% | 
static const struct of_device_id sdhci_esdhc_of_match[] = {
	{ .compatible = "fsl,mpc8379-esdhc" },
	{ .compatible = "fsl,mpc8536-esdhc" },
	{ .compatible = "fsl,esdhc" },
	{ }
};
MODULE_DEVICE_TABLE(of, sdhci_esdhc_of_match);
static struct platform_driver sdhci_esdhc_driver = {
	.driver = {
		.name = "sdhci-esdhc",
		.of_match_table = sdhci_esdhc_of_match,
		.pm = ESDHC_PMOPS,
        },
	.probe = sdhci_esdhc_probe,
	.remove = sdhci_pltfm_unregister,
};
module_platform_driver(sdhci_esdhc_driver);
MODULE_DESCRIPTION("SDHCI OF driver for Freescale MPC eSDHC");
MODULE_AUTHOR("Xiaobo Xie <X.Xie@freescale.com>, "
	      "Anton Vorontsov <avorontsov@ru.mvista.com>");
MODULE_LICENSE("GPL v2");
Overall Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| yangbo lu | yangbo lu | 1549 | 58.10% | 7 | 17.95% | 
| dong aisheng | dong aisheng | 150 | 5.63% | 2 | 5.13% | 
| haijun zhang | haijun zhang | 147 | 5.51% | 2 | 5.13% | 
| albert herranz | albert herranz | 140 | 5.25% | 1 | 2.56% | 
| oded gabbay | oded gabbay | 131 | 4.91% | 2 | 5.13% | 
| shawn guo | shawn guo | 131 | 4.91% | 2 | 5.13% | 
| jerry huang | jerry huang | 105 | 3.94% | 4 | 10.26% | 
| russell king | russell king | 87 | 3.26% | 4 | 10.26% | 
| roy zang | roy zang | 54 | 2.03% | 1 | 2.56% | 
| xu lei | xu lei | 51 | 1.91% | 1 | 2.56% | 
| alessio igor bogani | alessio igor bogani | 43 | 1.61% | 1 | 2.56% | 
| jisheng zhang | jisheng zhang | 24 | 0.90% | 1 | 2.56% | 
| ulf hansson | ulf hansson | 19 | 0.71% | 2 | 5.13% | 
| joakim tjernlund | joakim tjernlund | 15 | 0.56% | 1 | 2.56% | 
| manuel lauss | manuel lauss | 5 | 0.19% | 1 | 2.56% | 
| wolfram sang | wolfram sang | 4 | 0.15% | 1 | 2.56% | 
| lucas stach | lucas stach | 4 | 0.15% | 1 | 2.56% | 
| paul gortmaker | paul gortmaker | 3 | 0.11% | 1 | 2.56% | 
| lars-peter clausen | lars-peter clausen | 1 | 0.04% | 1 | 2.56% | 
| axel lin | axel lin | 1 | 0.04% | 1 | 2.56% | 
| kevin hao | kevin hao | 1 | 0.04% | 1 | 2.56% | 
| christian daudt | christian daudt | 1 | 0.04% | 1 | 2.56% | 
 | Total | 2666 | 100.00% | 39 | 100.00% | 
  
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.