1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright 2010 MontaVista Software, LLC.
5 * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
8 #ifndef _DRIVERS_MMC_SDHCI_PLTFM_H
9 #define _DRIVERS_MMC_SDHCI_PLTFM_H
11 #include <linux/clk.h>
12 #include <linux/platform_device.h>
15 struct sdhci_pltfm_data
{
16 const struct sdhci_ops
*ops
;
21 struct sdhci_pltfm_host
{
24 /* migrate from sdhci_of_host */
28 unsigned long private[] ____cacheline_aligned
;
31 #ifdef CONFIG_MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER
33 * These accessors are designed for big endian hosts doing I/O to
34 * little endian controllers incorporating a 32-bit hardware byte swapper.
36 static inline u32
sdhci_be32bs_readl(struct sdhci_host
*host
, int reg
)
38 return in_be32(host
->ioaddr
+ reg
);
41 static inline u16
sdhci_be32bs_readw(struct sdhci_host
*host
, int reg
)
43 return in_be16(host
->ioaddr
+ (reg
^ 0x2));
46 static inline u8
sdhci_be32bs_readb(struct sdhci_host
*host
, int reg
)
48 return in_8(host
->ioaddr
+ (reg
^ 0x3));
51 static inline void sdhci_be32bs_writel(struct sdhci_host
*host
,
54 out_be32(host
->ioaddr
+ reg
, val
);
57 static inline void sdhci_be32bs_writew(struct sdhci_host
*host
,
60 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
61 int base
= reg
& ~0x3;
62 int shift
= (reg
& 0x2) * 8;
65 case SDHCI_TRANSFER_MODE
:
67 * Postpone this write, we must do it together with a
68 * command write that is down below.
70 pltfm_host
->xfer_mode_shadow
= val
;
73 sdhci_be32bs_writel(host
,
74 val
<< 16 | pltfm_host
->xfer_mode_shadow
,
78 clrsetbits_be32(host
->ioaddr
+ base
, 0xffff << shift
, val
<< shift
);
81 static inline void sdhci_be32bs_writeb(struct sdhci_host
*host
, u8 val
, int reg
)
83 int base
= reg
& ~0x3;
84 int shift
= (reg
& 0x3) * 8;
86 clrsetbits_be32(host
->ioaddr
+ base
, 0xff << shift
, val
<< shift
);
88 #endif /* CONFIG_MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER */
90 void sdhci_get_property(struct platform_device
*pdev
);
92 static inline void sdhci_get_of_property(struct platform_device
*pdev
)
94 return sdhci_get_property(pdev
);
97 extern struct sdhci_host
*sdhci_pltfm_init(struct platform_device
*pdev
,
98 const struct sdhci_pltfm_data
*pdata
,
100 extern void sdhci_pltfm_free(struct platform_device
*pdev
);
102 extern int sdhci_pltfm_register(struct platform_device
*pdev
,
103 const struct sdhci_pltfm_data
*pdata
,
105 extern int sdhci_pltfm_unregister(struct platform_device
*pdev
);
107 extern unsigned int sdhci_pltfm_clk_get_max_clock(struct sdhci_host
*host
);
109 static inline void *sdhci_pltfm_priv(struct sdhci_pltfm_host
*host
)
111 return host
->private;
114 int sdhci_pltfm_suspend(struct device
*dev
);
115 int sdhci_pltfm_resume(struct device
*dev
);
116 extern const struct dev_pm_ops sdhci_pltfm_pmops
;
118 #endif /* _DRIVERS_MMC_SDHCI_PLTFM_H */