11 #ifndef _DRIVERS_MMC_SDHCI_PLTFM_H
12 #define _DRIVERS_MMC_SDHCI_PLTFM_H
32 #ifdef CONFIG_MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER
62 int base = reg & ~0x3;
63 int shift = (reg & 0x2) * 8;
74 sdhci_be32bs_writel(host,
79 clrsetbits_be32(host->
ioaddr + base, 0xffff << shift, val << shift);
82 static inline void sdhci_be32bs_writeb(
struct sdhci_host *host,
u8 val,
int reg)
84 int base = reg & ~0x3;
85 int shift = (reg & 0x3) * 8;
87 clrsetbits_be32(host->
ioaddr + base , 0xff << shift, val << shift);
102 extern const struct dev_pm_ops sdhci_pltfm_pmops;
103 #define SDHCI_PLTFM_PMOPS (&sdhci_pltfm_pmops)
105 #define SDHCI_PLTFM_PMOPS NULL