2 * include/linux/mmc/sh_mmcif.h
4 * platform data for eMMC driver
6 * Copyright (C) 2010 Renesas Solutions Corp.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License.
14 #ifndef LINUX_MMC_SH_MMCIF_H
15 #define LINUX_MMC_SH_MMCIF_H
18 #include <linux/platform_device.h>
21 * MMCIF : CE_CLK_CTRL [19:16]
22 * 1000 : Peripheral clock / 512
23 * 0111 : Peripheral clock / 256
24 * 0110 : Peripheral clock / 128
25 * 0101 : Peripheral clock / 64
26 * 0100 : Peripheral clock / 32
27 * 0011 : Peripheral clock / 16
28 * 0010 : Peripheral clock / 8
29 * 0001 : Peripheral clock / 4
30 * 0000 : Peripheral clock / 2
31 * 1111 : Peripheral clock (sup_pclk set '1')
34 struct sh_mmcif_plat_data
{
35 int (*get_cd
)(struct platform_device
*pdef
);
36 unsigned int slave_id_tx
; /* embedded slave_id_[tr]x */
37 unsigned int slave_id_rx
;
39 bool ccs_unsupported
: 1;
40 bool clk_ctrl2_present
: 1;
42 u8 sup_pclk
; /* 1 :SH7757, 0: SH7724/SH7372 */
47 #define MMCIF_CE_CMD_SET 0x00000000
48 #define MMCIF_CE_ARG 0x00000008
49 #define MMCIF_CE_ARG_CMD12 0x0000000C
50 #define MMCIF_CE_CMD_CTRL 0x00000010
51 #define MMCIF_CE_BLOCK_SET 0x00000014
52 #define MMCIF_CE_CLK_CTRL 0x00000018
53 #define MMCIF_CE_BUF_ACC 0x0000001C
54 #define MMCIF_CE_RESP3 0x00000020
55 #define MMCIF_CE_RESP2 0x00000024
56 #define MMCIF_CE_RESP1 0x00000028
57 #define MMCIF_CE_RESP0 0x0000002C
58 #define MMCIF_CE_RESP_CMD12 0x00000030
59 #define MMCIF_CE_DATA 0x00000034
60 #define MMCIF_CE_INT 0x00000040
61 #define MMCIF_CE_INT_MASK 0x00000044
62 #define MMCIF_CE_HOST_STS1 0x00000048
63 #define MMCIF_CE_HOST_STS2 0x0000004C
64 #define MMCIF_CE_CLK_CTRL2 0x00000070
65 #define MMCIF_CE_VERSION 0x0000007C
68 #define BUF_ACC_DMAWEN (1 << 25)
69 #define BUF_ACC_DMAREN (1 << 24)
70 #define BUF_ACC_BUSW_32 (0 << 17)
71 #define BUF_ACC_BUSW_16 (1 << 17)
72 #define BUF_ACC_ATYP (1 << 16)
75 #define CLK_ENABLE (1 << 24) /* 1: output mmc clock */
76 #define CLK_CLEAR (0xf << 16)
77 #define CLK_SUP_PCLK (0xf << 16)
78 #define CLKDIV_4 (1 << 16) /* mmc clock frequency.
79 * n: bus clock/(2^(n+1)) */
80 #define CLKDIV_256 (7 << 16) /* mmc clock frequency. (see above) */
81 #define SRSPTO_256 (2 << 12) /* resp timeout */
82 #define SRBSYTO_29 (0xf << 8) /* resp busy timeout */
83 #define SRWDTO_29 (0xf << 4) /* read/write timeout */
84 #define SCCSTO_29 (0xf << 0) /* ccs timeout */
87 #define SOFT_RST_ON (1 << 31)
88 #define SOFT_RST_OFF 0
90 static inline u32
sh_mmcif_readl(void __iomem
*addr
, int reg
)
92 return __raw_readl(addr
+ reg
);
95 static inline void sh_mmcif_writel(void __iomem
*addr
, int reg
, u32 val
)
97 __raw_writel(val
, addr
+ reg
);
100 #define SH_MMCIF_BBS 512 /* boot block size */
102 static inline void sh_mmcif_boot_cmd_send(void __iomem
*base
,
103 unsigned long cmd
, unsigned long arg
)
105 sh_mmcif_writel(base
, MMCIF_CE_INT
, 0);
106 sh_mmcif_writel(base
, MMCIF_CE_ARG
, arg
);
107 sh_mmcif_writel(base
, MMCIF_CE_CMD_SET
, cmd
);
110 static inline int sh_mmcif_boot_cmd_poll(void __iomem
*base
, unsigned long mask
)
115 for (cnt
= 0; cnt
< 1000000; cnt
++) {
116 tmp
= sh_mmcif_readl(base
, MMCIF_CE_INT
);
118 sh_mmcif_writel(base
, MMCIF_CE_INT
, tmp
& ~mask
);
126 static inline int sh_mmcif_boot_cmd(void __iomem
*base
,
127 unsigned long cmd
, unsigned long arg
)
129 sh_mmcif_boot_cmd_send(base
, cmd
, arg
);
130 return sh_mmcif_boot_cmd_poll(base
, 0x00010000);
133 static inline int sh_mmcif_boot_do_read_single(void __iomem
*base
,
134 unsigned int block_nr
,
140 sh_mmcif_boot_cmd(base
, 0x0d400000, 0x00010000);
142 if (sh_mmcif_readl(base
, MMCIF_CE_RESP0
) != 0x0900)
146 sh_mmcif_boot_cmd(base
, 0x11480000, block_nr
* SH_MMCIF_BBS
);
147 if (sh_mmcif_boot_cmd_poll(base
, 0x00100000) < 0)
150 for (k
= 0; k
< (SH_MMCIF_BBS
/ 4); k
++)
151 buf
[k
] = sh_mmcif_readl(base
, MMCIF_CE_DATA
);
156 static inline int sh_mmcif_boot_do_read(void __iomem
*base
,
157 unsigned long first_block
,
158 unsigned long nr_blocks
,
164 /* In data transfer mode: Set clock to Bus clock/4 (about 20Mhz) */
165 sh_mmcif_writel(base
, MMCIF_CE_CLK_CTRL
,
166 CLK_ENABLE
| CLKDIV_4
| SRSPTO_256
|
167 SRBSYTO_29
| SRWDTO_29
| SCCSTO_29
);
170 sh_mmcif_boot_cmd(base
, 0x09806000, 0x00010000);
172 /* CMD7 - Select the card */
173 sh_mmcif_boot_cmd(base
, 0x07400000, 0x00010000);
175 /* CMD16 - Set the block size */
176 sh_mmcif_boot_cmd(base
, 0x10400000, SH_MMCIF_BBS
);
178 for (k
= 0; !ret
&& k
< nr_blocks
; k
++)
179 ret
= sh_mmcif_boot_do_read_single(base
, first_block
+ k
,
180 buf
+ (k
* SH_MMCIF_BBS
));
185 static inline void sh_mmcif_boot_init(void __iomem
*base
)
188 sh_mmcif_writel(base
, MMCIF_CE_VERSION
, SOFT_RST_ON
);
189 sh_mmcif_writel(base
, MMCIF_CE_VERSION
, SOFT_RST_OFF
);
192 sh_mmcif_writel(base
, MMCIF_CE_BUF_ACC
, BUF_ACC_ATYP
);
194 /* Set block size in MMCIF hardware */
195 sh_mmcif_writel(base
, MMCIF_CE_BLOCK_SET
, SH_MMCIF_BBS
);
197 /* Enable the clock, set it to Bus clock/256 (about 325Khz). */
198 sh_mmcif_writel(base
, MMCIF_CE_CLK_CTRL
,
199 CLK_ENABLE
| CLKDIV_256
| SRSPTO_256
|
200 SRBSYTO_29
| SRWDTO_29
| SCCSTO_29
);
203 sh_mmcif_boot_cmd(base
, 0x00000040, 0);
207 sh_mmcif_boot_cmd(base
, 0x01405040, 0x40300000); /* CMD1 */
208 } while ((sh_mmcif_readl(base
, MMCIF_CE_RESP0
) & 0x80000000)
212 sh_mmcif_boot_cmd(base
, 0x02806040, 0);
214 /* CMD3 - Set card relative address */
215 sh_mmcif_boot_cmd(base
, 0x03400040, 0x00010000);
218 #endif /* LINUX_MMC_SH_MMCIF_H */