blob: d38053bf9e4da46113d9a64918511bcd0af8f54c [file] [log] [blame]
Anton Vorontsov515033f2010-08-10 18:01:47 -07001/*
2 * Copyright 2010 MontaVista Software, LLC.
3 *
4 * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
5 *
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.
9 */
10
11#ifndef _DRIVERS_MMC_SDHCI_PLTFM_H
12#define _DRIVERS_MMC_SDHCI_PLTFM_H
13
Wolfram Sang4b711cb2010-10-15 12:20:59 +020014#include <linux/clk.h>
Shawn Guo85d65092011-05-27 23:48:12 +080015#include <linux/platform_device.h>
Shawn Guof0de8362011-06-02 10:57:50 +080016#include "sdhci.h"
Anton Vorontsov20b1597b2010-08-10 18:01:49 -070017
Shawn Guo94cc6a82011-05-27 23:48:15 +080018struct sdhci_pltfm_data {
Lars-Peter Clausenad1df8c2013-03-13 19:26:04 +010019 const struct sdhci_ops *ops;
Shawn Guo94cc6a82011-05-27 23:48:15 +080020 unsigned int quirks;
Al Cooperad82ab62013-05-26 13:59:26 -040021 unsigned int quirks2;
Shawn Guo94cc6a82011-05-27 23:48:15 +080022};
23
Wolfram Sang4b711cb2010-10-15 12:20:59 +020024struct sdhci_pltfm_host {
25 struct clk *clk;
Shawn Guoe3071482011-07-20 17:13:36 -040026
27 /* migrate from sdhci_of_host */
28 unsigned int clock;
29 u16 xfer_mode_shadow;
Christian Daudt0e748232013-05-29 13:50:05 -070030
31 unsigned long private[0] ____cacheline_aligned;
Wolfram Sang4b711cb2010-10-15 12:20:59 +020032};
33
Shawn Guo38576af2011-05-27 23:48:14 +080034#ifdef CONFIG_MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER
Shawn Guof0de8362011-06-02 10:57:50 +080035/*
36 * These accessors are designed for big endian hosts doing I/O to
37 * little endian controllers incorporating a 32-bit hardware byte swapper.
38 */
39static inline u32 sdhci_be32bs_readl(struct sdhci_host *host, int reg)
40{
41 return in_be32(host->ioaddr + reg);
42}
43
44static inline u16 sdhci_be32bs_readw(struct sdhci_host *host, int reg)
45{
46 return in_be16(host->ioaddr + (reg ^ 0x2));
47}
48
49static inline u8 sdhci_be32bs_readb(struct sdhci_host *host, int reg)
50{
51 return in_8(host->ioaddr + (reg ^ 0x3));
52}
53
54static inline void sdhci_be32bs_writel(struct sdhci_host *host,
55 u32 val, int reg)
56{
57 out_be32(host->ioaddr + reg, val);
58}
59
60static inline void sdhci_be32bs_writew(struct sdhci_host *host,
61 u16 val, int reg)
62{
63 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
64 int base = reg & ~0x3;
65 int shift = (reg & 0x2) * 8;
66
67 switch (reg) {
68 case SDHCI_TRANSFER_MODE:
69 /*
70 * Postpone this write, we must do it together with a
71 * command write that is down below.
72 */
73 pltfm_host->xfer_mode_shadow = val;
74 return;
75 case SDHCI_COMMAND:
76 sdhci_be32bs_writel(host,
77 val << 16 | pltfm_host->xfer_mode_shadow,
78 SDHCI_TRANSFER_MODE);
79 return;
80 }
81 clrsetbits_be32(host->ioaddr + base, 0xffff << shift, val << shift);
82}
83
84static inline void sdhci_be32bs_writeb(struct sdhci_host *host, u8 val, int reg)
85{
86 int base = reg & ~0x3;
87 int shift = (reg & 0x3) * 8;
88
89 clrsetbits_be32(host->ioaddr + base , 0xff << shift, val << shift);
90}
91#endif /* CONFIG_MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER */
Shawn Guo38576af2011-05-27 23:48:14 +080092
93extern void sdhci_get_of_property(struct platform_device *pdev);
94
Shawn Guo85d65092011-05-27 23:48:12 +080095extern struct sdhci_host *sdhci_pltfm_init(struct platform_device *pdev,
Christian Daudt0e748232013-05-29 13:50:05 -070096 const struct sdhci_pltfm_data *pdata,
97 size_t priv_size);
Shawn Guo85d65092011-05-27 23:48:12 +080098extern void sdhci_pltfm_free(struct platform_device *pdev);
99
100extern int sdhci_pltfm_register(struct platform_device *pdev,
Christian Daudt0e748232013-05-29 13:50:05 -0700101 const struct sdhci_pltfm_data *pdata,
102 size_t priv_size);
Shawn Guo85d65092011-05-27 23:48:12 +0800103extern int sdhci_pltfm_unregister(struct platform_device *pdev);
104
Lars-Peter Clausend005d942013-01-28 19:27:12 +0100105extern unsigned int sdhci_pltfm_clk_get_max_clock(struct sdhci_host *host);
106
Christian Daudt0e748232013-05-29 13:50:05 -0700107static inline void *sdhci_pltfm_priv(struct sdhci_pltfm_host *host)
108{
109 return (void *)host->private;
110}
111
Shawn Guo85d65092011-05-27 23:48:12 +0800112#ifdef CONFIG_PM
Dong Aishengd433dc62013-11-04 16:38:25 +0800113extern int sdhci_pltfm_suspend(struct device *dev);
114extern int sdhci_pltfm_resume(struct device *dev);
Manuel Lauss29495aa2011-11-03 11:09:45 +0100115extern const struct dev_pm_ops sdhci_pltfm_pmops;
116#define SDHCI_PLTFM_PMOPS (&sdhci_pltfm_pmops)
117#else
118#define SDHCI_PLTFM_PMOPS NULL
Shawn Guo85d65092011-05-27 23:48:12 +0800119#endif
Anton Vorontsov20b1597b2010-08-10 18:01:49 -0700120
Anton Vorontsov515033f2010-08-10 18:01:47 -0700121#endif /* _DRIVERS_MMC_SDHCI_PLTFM_H */