Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Anton Vorontsov | 515033f | 2010-08-10 18:01:47 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2010 MontaVista Software, LLC. |
| 4 | * |
| 5 | * Author: Anton Vorontsov <avorontsov@ru.mvista.com> |
Anton Vorontsov | 515033f | 2010-08-10 18:01:47 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef _DRIVERS_MMC_SDHCI_PLTFM_H |
| 9 | #define _DRIVERS_MMC_SDHCI_PLTFM_H |
| 10 | |
Wolfram Sang | 4b711cb | 2010-10-15 12:20:59 +0200 | [diff] [blame] | 11 | #include <linux/clk.h> |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 12 | #include <linux/platform_device.h> |
Shawn Guo | f0de836 | 2011-06-02 10:57:50 +0800 | [diff] [blame] | 13 | #include "sdhci.h" |
Anton Vorontsov | 20b1597b | 2010-08-10 18:01:49 -0700 | [diff] [blame] | 14 | |
Shawn Guo | 94cc6a8 | 2011-05-27 23:48:15 +0800 | [diff] [blame] | 15 | struct sdhci_pltfm_data { |
Lars-Peter Clausen | ad1df8c | 2013-03-13 19:26:04 +0100 | [diff] [blame] | 16 | const struct sdhci_ops *ops; |
Shawn Guo | 94cc6a8 | 2011-05-27 23:48:15 +0800 | [diff] [blame] | 17 | unsigned int quirks; |
Al Cooper | ad82ab6 | 2013-05-26 13:59:26 -0400 | [diff] [blame] | 18 | unsigned int quirks2; |
Shawn Guo | 94cc6a8 | 2011-05-27 23:48:15 +0800 | [diff] [blame] | 19 | }; |
| 20 | |
Wolfram Sang | 4b711cb | 2010-10-15 12:20:59 +0200 | [diff] [blame] | 21 | struct sdhci_pltfm_host { |
| 22 | struct clk *clk; |
Shawn Guo | e307148 | 2011-07-20 17:13:36 -0400 | [diff] [blame] | 23 | |
| 24 | /* migrate from sdhci_of_host */ |
| 25 | unsigned int clock; |
| 26 | u16 xfer_mode_shadow; |
Christian Daudt | 0e74823 | 2013-05-29 13:50:05 -0700 | [diff] [blame] | 27 | |
| 28 | unsigned long private[0] ____cacheline_aligned; |
Wolfram Sang | 4b711cb | 2010-10-15 12:20:59 +0200 | [diff] [blame] | 29 | }; |
| 30 | |
Shawn Guo | 38576af | 2011-05-27 23:48:14 +0800 | [diff] [blame] | 31 | #ifdef CONFIG_MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER |
Shawn Guo | f0de836 | 2011-06-02 10:57:50 +0800 | [diff] [blame] | 32 | /* |
| 33 | * These accessors are designed for big endian hosts doing I/O to |
| 34 | * little endian controllers incorporating a 32-bit hardware byte swapper. |
| 35 | */ |
| 36 | static inline u32 sdhci_be32bs_readl(struct sdhci_host *host, int reg) |
| 37 | { |
| 38 | return in_be32(host->ioaddr + reg); |
| 39 | } |
| 40 | |
| 41 | static inline u16 sdhci_be32bs_readw(struct sdhci_host *host, int reg) |
| 42 | { |
| 43 | return in_be16(host->ioaddr + (reg ^ 0x2)); |
| 44 | } |
| 45 | |
| 46 | static inline u8 sdhci_be32bs_readb(struct sdhci_host *host, int reg) |
| 47 | { |
| 48 | return in_8(host->ioaddr + (reg ^ 0x3)); |
| 49 | } |
| 50 | |
| 51 | static inline void sdhci_be32bs_writel(struct sdhci_host *host, |
| 52 | u32 val, int reg) |
| 53 | { |
| 54 | out_be32(host->ioaddr + reg, val); |
| 55 | } |
| 56 | |
| 57 | static inline void sdhci_be32bs_writew(struct sdhci_host *host, |
| 58 | u16 val, int reg) |
| 59 | { |
| 60 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); |
| 61 | int base = reg & ~0x3; |
| 62 | int shift = (reg & 0x2) * 8; |
| 63 | |
| 64 | switch (reg) { |
| 65 | case SDHCI_TRANSFER_MODE: |
| 66 | /* |
| 67 | * Postpone this write, we must do it together with a |
| 68 | * command write that is down below. |
| 69 | */ |
| 70 | pltfm_host->xfer_mode_shadow = val; |
| 71 | return; |
| 72 | case SDHCI_COMMAND: |
| 73 | sdhci_be32bs_writel(host, |
| 74 | val << 16 | pltfm_host->xfer_mode_shadow, |
| 75 | SDHCI_TRANSFER_MODE); |
| 76 | return; |
| 77 | } |
| 78 | clrsetbits_be32(host->ioaddr + base, 0xffff << shift, val << shift); |
| 79 | } |
| 80 | |
| 81 | static inline void sdhci_be32bs_writeb(struct sdhci_host *host, u8 val, int reg) |
| 82 | { |
| 83 | int base = reg & ~0x3; |
| 84 | int shift = (reg & 0x3) * 8; |
| 85 | |
| 86 | clrsetbits_be32(host->ioaddr + base , 0xff << shift, val << shift); |
| 87 | } |
| 88 | #endif /* CONFIG_MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER */ |
Shawn Guo | 38576af | 2011-05-27 23:48:14 +0800 | [diff] [blame] | 89 | |
Adrian Hunter | 8199d31 | 2018-08-05 13:22:51 +0530 | [diff] [blame] | 90 | void sdhci_get_property(struct platform_device *pdev); |
| 91 | |
| 92 | static inline void sdhci_get_of_property(struct platform_device *pdev) |
| 93 | { |
| 94 | return sdhci_get_property(pdev); |
| 95 | } |
Shawn Guo | 38576af | 2011-05-27 23:48:14 +0800 | [diff] [blame] | 96 | |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 97 | extern struct sdhci_host *sdhci_pltfm_init(struct platform_device *pdev, |
Christian Daudt | 0e74823 | 2013-05-29 13:50:05 -0700 | [diff] [blame] | 98 | const struct sdhci_pltfm_data *pdata, |
| 99 | size_t priv_size); |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 100 | extern void sdhci_pltfm_free(struct platform_device *pdev); |
| 101 | |
| 102 | extern int sdhci_pltfm_register(struct platform_device *pdev, |
Christian Daudt | 0e74823 | 2013-05-29 13:50:05 -0700 | [diff] [blame] | 103 | const struct sdhci_pltfm_data *pdata, |
| 104 | size_t priv_size); |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 105 | extern int sdhci_pltfm_unregister(struct platform_device *pdev); |
| 106 | |
Lars-Peter Clausen | d005d94 | 2013-01-28 19:27:12 +0100 | [diff] [blame] | 107 | extern unsigned int sdhci_pltfm_clk_get_max_clock(struct sdhci_host *host); |
| 108 | |
Christian Daudt | 0e74823 | 2013-05-29 13:50:05 -0700 | [diff] [blame] | 109 | static inline void *sdhci_pltfm_priv(struct sdhci_pltfm_host *host) |
| 110 | { |
Masahiro Yamada | 178b0fa | 2016-11-10 22:22:17 +0900 | [diff] [blame] | 111 | return host->private; |
Christian Daudt | 0e74823 | 2013-05-29 13:50:05 -0700 | [diff] [blame] | 112 | } |
| 113 | |
Masahiro Yamada | 83a7b32 | 2017-08-23 13:15:03 +0900 | [diff] [blame] | 114 | int sdhci_pltfm_suspend(struct device *dev); |
| 115 | int sdhci_pltfm_resume(struct device *dev); |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 116 | extern const struct dev_pm_ops sdhci_pltfm_pmops; |
Anton Vorontsov | 20b1597b | 2010-08-10 18:01:49 -0700 | [diff] [blame] | 117 | |
Anton Vorontsov | 515033f | 2010-08-10 18:01:47 -0700 | [diff] [blame] | 118 | #endif /* _DRIVERS_MMC_SDHCI_PLTFM_H */ |