2 * Copyright 2010 MontaVista Software, LLC.
4 * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #ifndef _DRIVERS_MMC_SDHCI_PLTFM_H
12 #define _DRIVERS_MMC_SDHCI_PLTFM_H
14 #include <linux/clk.h>
15 #include <linux/platform_device.h>
18 struct sdhci_pltfm_data
{
19 const struct sdhci_ops
*ops
;
24 struct sdhci_pltfm_host
{
26 void *priv
; /* to handle quirks across io-accessor calls */
28 /* migrate from sdhci_of_host */
32 unsigned long private[0] ____cacheline_aligned
;
35 #ifdef CONFIG_MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER
37 * These accessors are designed for big endian hosts doing I/O to
38 * little endian controllers incorporating a 32-bit hardware byte swapper.
40 static inline u32
sdhci_be32bs_readl(struct sdhci_host
*host
, int reg
)
42 return in_be32(host
->ioaddr
+ reg
);
45 static inline u16
sdhci_be32bs_readw(struct sdhci_host
*host
, int reg
)
47 return in_be16(host
->ioaddr
+ (reg
^ 0x2));
50 static inline u8
sdhci_be32bs_readb(struct sdhci_host
*host
, int reg
)
52 return in_8(host
->ioaddr
+ (reg
^ 0x3));
55 static inline void sdhci_be32bs_writel(struct sdhci_host
*host
,
58 out_be32(host
->ioaddr
+ reg
, val
);
61 static inline void sdhci_be32bs_writew(struct sdhci_host
*host
,
64 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
65 int base
= reg
& ~0x3;
66 int shift
= (reg
& 0x2) * 8;
69 case SDHCI_TRANSFER_MODE
:
71 * Postpone this write, we must do it together with a
72 * command write that is down below.
74 pltfm_host
->xfer_mode_shadow
= val
;
77 sdhci_be32bs_writel(host
,
78 val
<< 16 | pltfm_host
->xfer_mode_shadow
,
82 clrsetbits_be32(host
->ioaddr
+ base
, 0xffff << shift
, val
<< shift
);
85 static inline void sdhci_be32bs_writeb(struct sdhci_host
*host
, u8 val
, int reg
)
87 int base
= reg
& ~0x3;
88 int shift
= (reg
& 0x3) * 8;
90 clrsetbits_be32(host
->ioaddr
+ base
, 0xff << shift
, val
<< shift
);
92 #endif /* CONFIG_MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER */
94 extern void sdhci_get_of_property(struct platform_device
*pdev
);
96 extern struct sdhci_host
*sdhci_pltfm_init(struct platform_device
*pdev
,
97 const struct sdhci_pltfm_data
*pdata
,
99 extern void sdhci_pltfm_free(struct platform_device
*pdev
);
101 extern int sdhci_pltfm_register(struct platform_device
*pdev
,
102 const struct sdhci_pltfm_data
*pdata
,
104 extern int sdhci_pltfm_unregister(struct platform_device
*pdev
);
106 extern unsigned int sdhci_pltfm_clk_get_max_clock(struct sdhci_host
*host
);
108 static inline void *sdhci_pltfm_priv(struct sdhci_pltfm_host
*host
)
110 return (void *)host
->private;
114 extern const struct dev_pm_ops sdhci_pltfm_pmops
;
115 #define SDHCI_PLTFM_PMOPS (&sdhci_pltfm_pmops)
117 #define SDHCI_PLTFM_PMOPS NULL
120 #endif /* _DRIVERS_MMC_SDHCI_PLTFM_H */