blob: 0766431db4d5889d6963f7db7461a419157307bb [file] [log] [blame]
Shashank Mittal52525ff2010-04-13 11:11:10 -07001/* Copyright (c) 2010, Code Aurora Forum. All rights reserved.
2
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions are
5 * met:
6 * * Redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer.
8 * * Redistributions in binary form must reproduce the above
9 * copyright notice, this list of conditions and the following
10 * disclaimer in the documentation and/or other materials provided
11 * with the distribution.
12 * * Neither the name of Code Aurora Forum, Inc. nor the names of its
13 * contributors may be used to endorse or promote products derived
14 * from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
20 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
23 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
25 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
26 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#ifndef __MMC_H__
30#define __MMC_H__
31
32#ifndef MMC_BOOT_MCI_BASE
33#define MMC_BOOT_MCI_BASE 0
34#endif
35
36#ifndef MMC_SLOT
37#define MMC_SLOT 0
38#endif
39
40#define MMC_BOOT_MCI_REG(offset) (MMC_BOOT_MCI_BASE + offset)
41
42/*
43 * Define Macros for SDCC Registers
44 */
45#define MMC_BOOT_MCI_POWER MMC_BOOT_MCI_REG(0x000) /* 8 bit */
46
47/* MCICMD output control - 6th bit */
48#ifdef PLATFORM_MSM7X30
49#define MMC_BOOT_MCI_OPEN_DRAIN (1 << 6)
50#define MMC_BOOT_MCI_PWR_OFF 0x00
51#define MMC_BOOT_MCI_PWR_UP 0x01
52#define MMC_BOOT_MCI_PWR_ON 0x01
53#else
54#define MMC_BOOT_MCI_OPEN_DRAIN (1 << 6)
55#define MMC_BOOT_MCI_PWR_OFF 0x00
56#define MMC_BOOT_MCI_PWR_UP 0x02
57#define MMC_BOOT_MCI_PWR_ON 0x03
58#endif
59
60#define MMC_BOOT_MCI_CLK MMC_BOOT_MCI_REG(0x004) /* 16 bits */
61/* Enable MCI bus clock - 0: clock disabled 1: enabled */
62#define MMC_BOOT_MCI_CLK_ENABLE (1 << 8)
63/* Disable clk o/p when bus idle- 0:always enabled 1:enabled when bus active */
64#define MMC_BOOT_MCI_CLK_PWRSAVE (1 << 9)
65/* Enable Widebus mode - 00: 1 bit mode 10:4 bit mode 01/11: 8 bit mode */
66#define MMC_BOOT_MCI_CLK_WIDEBUS_MODE (3 << 10)
67#define MMC_BOOT_MCI_CLK_WIDEBUS_1_BIT 0
68#define MMC_BOOT_MCI_CLK_WIDEBUS_4_BIT (2 << 10)
69#define MMC_BOOT_MCI_CLK_WIDEBUS_8_BIT (1 << 10)
70/* Enable flow control- 0: disable 1: enable */
71#define MMC_BOOT_MCI_CLK_ENA_FLOW (1 << 12)
72/* Set/clear to select rising/falling edge for data/cmd output */
73#define MMC_BOOT_MCI_CLK_INVERT_OUT (1 << 13)
74/* Select to lach data/cmd coming in falling/rising/feedbk/loopbk of MCIclk */
75#define MMC_BOOT_MCI_CLK_IN_FALLING 0x0
76#define MMC_BOOT_MCI_CLK_IN_RISING (1 << 14)
77#define MMC_BOOT_MCI_CLK_IN_FEEDBACK (2 << 14)
78#define MMC_BOOT_MCI_CLK_IN_LOOPBACK (3 << 14)
79
80/* Bus Width */
81#define MMC_BOOT_BUS_WIDTH_1_BIT 0
82#define MMC_BOOT_BUS_WIDTH_4_BIT 2
83#define MMC_BOOT_BUS_WIDTH_8_BIT 3
84
85#define MMC_BOOT_MCI_ARGUMENT MMC_BOOT_MCI_REG(0x008) /* 32 bits */
86
87#define MMC_BOOT_MCI_CMD MMC_BOOT_MCI_REG(0x00C) /* 16 bits */
88/* Command Index: 0 -5 */
89/* Waits for response if set */
90#define MMC_BOOT_MCI_CMD_RESPONSE (1 << 6)
91/* Receives a 136-bit long response if set */
92#define MMC_BOOT_MCI_CMD_LONGRSP (1 << 7)
93/* If set, CPSM disables command timer and waits for interrupt */
94#define MMC_BOOT_MCI_CMD_INTERRUPT (1 << 8)
95/* If set waits for CmdPend before starting to send a command */
96#define MMC_BOOT_MCI_CMD_PENDING (1 << 9)
97/* CPSM is enabled if set */
98#define MMC_BOT_MCI_CMD_ENABLE (1 << 10)
99/* If set PROG_DONE status bit asserted when busy is de-asserted */
100#define MMC_BOOT_MCI_CMD_PROG_ENA (1 << 11)
101/* To indicate that this is a Command with Data (for SDIO interrupts) */
102#define MMC_BOOT_MCI_CMD_DAT_CMD (1 << 12)
103/* Signals the next command to be an abort (stop) command. Always read 0 */
104#define MMC_BOOT_MCI_CMD_MCIABORT (1 << 13)
105/* Waits for Command Completion Signal if set */
106#define MMC_BOOT_MCI_CMD_CCS_ENABLE (1 << 14)
107/* If set sends CCS disable sequence */
108#define MMC_BOOT_MCI_CMD_CCS_DISABLE (1 << 15)
109
110#define MMC_BOOT_MCI_RESP_CMD MMC_BOOT_MCI_REG(0x010)
111
112#define MMC_BOOT_MCI_RESP_0 MMC_BOOT_MCI_REG(0x014)
113#define MMC_BOOT_MCI_RESP_1 MMC_BOOT_MCI_REG(0x018)
114#define MMC_BOOT_MCI_RESP_2 MMC_BOOT_MCI_REG(0x01C)
115#define MMC_BOOT_MCI_RESP_3 MMC_BOOT_MCI_REG(0x020)
116
117#define MMC_BOOT_MCI_DATA_TIMER MMC_BOOT_MCI_REG(0x024)
118#define MMC_BOOT_MCI_DATA_LENGTH MMC_BOOT_MCI_REG(0x028)
119#define MMC_BOOT_MCI_DATA_CTL MMC_BOOT_MCI_REG(0x02C) /* 16 bits */
120/* Data transfer enabled */
121#define MMC_BOOT_MCI_DATA_ENABLE (1 << 0)
122/* Data transfer direction - 0: controller to card 1:card to controller */
123#define MMC_BOOT_MCI_DATA_DIR (1 << 1)
124/* Data transfer mode - 0: block data transfer 1: stream data transfer */
125#define MMC_BOOT_MCI_DATA_MODE (1 << 2)
126/* Enable DM interface - 0: DM disabled 1: DM enabled */
127#define MMC_BOOT_MCI_DATA_DM_ENABLE (1 << 3)
128/* Data block length in bytes (1-4096) */
129#define MMC_BOOT_MCI_BLKSIZE_POS 4
130#define MMC_BOOT_MCI_DATA_COUNT MMC_BOOT_MCI_REG(0x030)
131#define MMC_BOOT_MCI_STATUS MMC_BOOT_MCI_REG(0x034)
132/* Command response received - CRC check failed */
133#define MMC_BOOT_MCI_STAT_CMD_CRC_FAIL (1 << 0)
134/* Data block sent/received - CRC check failed */
135#define MMC_BOOT_MCI_STAT_DATA_CRC_FAIL (1 << 1)
136/* Command resonse timeout */
137#define MMC_BOOT_MCI_STAT_CMD_TIMEOUT (1 << 2)
138/* Data timeout */
139#define MMC_BOOT_MCI_STAT_DATA_TIMEOUT (1 << 3)
140/* Transmit FIFO underrun error */
141#define MMC_BOOT_MCI_STAT_TX_UNDRUN (1 << 4)
142/* Receive FIFO overrun error */
143#define MMC_BOOT_MCI_STAT_RX_OVRRUN (1 << 5)
144/* Command response received - CRC check passed */
145#define MMC_BOOT_MCI_STAT_CMD_RESP_END (1 << 6)
146/* Command sent - no response required */
147#define MMC_BOOT_MCI_STAT_CMD_SENT (1 << 7)
148/* Data end - data counter zero */
149#define MMC_BOOT_MCI_STAT_DATA_END (1 << 8)
150/* Start bit not detected on all data signals in wide bus mode */
151#define MMC_BOOT_MCI_STAT_START_BIT_ERR (1 << 9)
152/* Data block sent/received - CRC check passed */
153#define MMC_BOOT_MCI_STAT_DATA_BLK_END (1 << 10)
154/* Command transfer in progress */
155#define MMC_BOOT_MCI_STAT_CMD_ACTIVE (1 << 11)
156/* Data transmit in progress */
157#define MMC_BOOT_MCI_STAT_TX_ACTIVE (1 << 12)
158/* Data receive in progress */
159#define MMC_BOOT_MCI_STAT_RX_ACTIVE (1 << 13)
160/* Transmit FIFO half full */
161#define MMC_BOOT_MCI_STAT_TX_FIFO_HFULL (1 << 14)
162/* Receive FIFO half full */
163#define MMC_BOOT_MCI_STAT_RX_FIFO_HFULL (1 << 15)
164/* Transmit FIFO full */
165#define MMC_BOOT_MCI_STAT_TX_FIFO_FULL (1 << 16)
166/* Receive FIFO full */
167#define MMC_BOOT_MCI_STAT_RX_FIFO_FULL (1 << 17)
168/* Transmit FIFO empty */
169#define MMC_BOOT_MCI_STAT_TX_FIFO_EMPTY (1 << 18)
170/* Receive FIFO empty */
171#define MMC_BOOT_MCI_STAT_RX_FIFO_EMPTY (1 << 19)
172/* Data available in transmit FIFO */
173#define MMC_BOOT_MCI_STAT_TX_DATA_AVLBL (1 << 20)
174/* Data available in receive FIFO */
175#define MMC_BOOT_MCI_STAT_RX_DATA_AVLBL (1 << 21)
176/* SDIO interrupt indicator for wake-up */
177#define MMC_BOOT_MCI_STAT_SDIO_INTR (1 << 22)
178/* Programming done */
179#define MMC_BOOT_MCI_STAT_PROG_DONE (1 << 23)
180/* CE-ATA command completion signal detected */
181#define MMC_BOOT_MCI_STAT_ATA_CMD_CMPL (1 << 24)
182/* SDIO interrupt indicator for normal operation */
183#define MMC_BOOT_MCI_STAT_SDIO_INTR_OP (1 << 25)
184/* Commpand completion signal timeout */
185#define MMC_BOOT_MCI_STAT_CCS_TIMEOUT (1 << 26)
186
187#define MMC_BOOT_MCI_STATIC_STATUS (MMC_BOOT_MCI_STAT_CMD_CRC_FAIL| \
188 MMC_BOOT_MCI_STAT_DATA_CRC_FAIL| \
189 MMC_BOOT_MCI_STAT_CMD_TIMEOUT| \
190 MMC_BOOT_MCI_STAT_DATA_TIMEOUT| \
191 MMC_BOOT_MCI_STAT_TX_UNDRUN| \
192 MMC_BOOT_MCI_STAT_RX_OVRRUN| \
193 MMC_BOOT_MCI_STAT_CMD_RESP_END| \
194 MMC_BOOT_MCI_STAT_CMD_SENT| \
195 MMC_BOOT_MCI_STAT_DATA_END| \
196 MMC_BOOT_MCI_STAT_START_BIT_ERR| \
197 MMC_BOOT_MCI_STAT_DATA_BLK_END| \
198 MMC_BOOT_MCI_SDIO_INTR_CLR| \
199 MMC_BOOT_MCI_STAT_PROG_DONE| \
200 MMC_BOOT_MCI_STAT_ATA_CMD_CMPL |\
201 MMC_BOOT_MCI_STAT_CCS_TIMEOUT)
202
203#define MMC_BOOT_MCI_CLEAR MMC_BOOT_MCI_REG(0x038)
204#define MMC_BOOT_MCI_CMD_CRC_FAIL_CLR (1 << 0)
205#define MMC_BOOT_MCI_DATA_CRC_FAIL_CLR (1 << 1)
206#define MMC_BOOT_MCI_CMD_TIMEOUT_CLR (1 << 2)
207#define MMC_BOOT_MCI_DATA_TIMEOUT_CLR (1 << 3)
208#define MMC_BOOT_MCI_TX_UNDERRUN_CLR (1 << 4)
209#define MMC_BOOT_MCI_RX_OVERRUN_CLR (1 << 5)
210#define MMC_BOOT_MCI_CMD_RESP_END_CLR (1 << 6)
211#define MMC_BOOT_MCI_CMD_SENT_CLR (1 << 7)
212#define MMC_BOOT_MCI_DATA_END_CLR (1 << 8)
213#define MMC_BOOT_MCI_START_BIT_ERR_CLR (1 << 9)
214#define MMC_BOOT_MCI_DATA_BLK_END_CLR (1 << 10)
215#define MMC_BOOT_MCI_SDIO_INTR_CLR (1 << 22)
216#define MMC_BOOT_MCI_PROG_DONE_CLR (1 << 23)
217#define MMC_BOOT_MCI_ATA_CMD_COMPLR_CLR (1 << 24)
218#define MMC_BOOT_MCI_CCS_TIMEOUT_CLR (1 << 25)
219
220#define MMC_BOOT_MCI_INT_MASK0 MMC_BOOT_MCI_REG(0x03C)
221#define MMC_BOOT_MCI_CMD_CRC_FAIL_MASK (1 << 0)
222#define MMC_BOOT_MCI_DATA_CRC_FAIL_MASK (1 << 1)
223#define MMC_BOOT_MCI_CMD_TIMEOUT_MASK (1 << 2)
224#define MMC_BOOT_MCI_DATA_TIMEOUT_MASK (1 << 3)
225#define MMC_BOOT_MCI_TX_OVERRUN_MASK (1 << 4)
226#define MMC_BOOT_MCI_RX_OVERRUN_MASK (1 << 5)
227#define MMC_BOOT_MCI_CMD_RESP_END_MASK (1 << 6)
228#define MMC_BOOT_MCI_CMD_SENT_MASK (1 << 7)
229#define MMC_BOOT_MCI_DATA_END_MASK (1 << 8)
230#define MMC_BOOT_MCI_START_BIT_ERR_MASK (1 << 9)
231#define MMC_BOOT_MCI_DATA_BLK_END_MASK (1 << 10)
232#define MMC_BOOT_MCI_CMD_ACTIVE_MASK (1 << 11)
233#define MMC_BOOT_MCI_TX_ACTIVE_MASK (1 << 12)
234#define MMC_BOOT_MCI_RX_ACTIVE_MASK (1 << 13)
235#define MMC_BOOT_MCI_TX_FIFO_HFULL_MASK (1 << 14)
236#define MMC_BOOT_MCI_RX_FIFO_HFULL_MASK (1 << 15)
237#define MMC_BOOT_MCI_TX_FIFO_FULL_MASK (1 << 16)
238#define MMC_BOOT_MCI_RX_FIFO_FULL_MASK (1 << 17)
239#define MMC_BOOT_MCI_TX_FIFO_EMPTY_MASK (1 << 18)
240#define MMC_BOOT_MCI_RX_FIFO_EMPTY_MASK (1 << 19)
241#define MMC_BOOT_MCI_TX_DATA_AVLBL_MASK (1 << 20)
242#define MMC_BOOT_MCI_RX_DATA_AVLBL_MASK (1 << 21)
243#define MMC_BOOT_MCI_SDIO_INT_MASK (1 << 22)
244#define MMC_BOOT_MCI_PROG_DONE_MASK (1 << 23)
245#define MMC_BOOT_MCI_ATA_CMD_COMPL_MASK (1 << 24)
246#define MMC_BOOT_MCI_SDIO_INT_OPER_MASK (1 << 25)
247#define MMC_BOOT_MCI_CCS_TIME_OUT_MASK (1 << 26)
248
249#define MMC_BOOT_MCI_INT_MASK1 MMC_BOOT_MCI_REG(0x040)
250
251#define MMC_BOOT_MCI_FIFO_COUNT MMC_BOOT_MCI_REG(0x044)
252
253#define MMC_BOOT_MCI_CCS_TIMER MMC_BOOT_MCI_REG(0x0058)
254
255#define MMC_BOOT_MCI_FIFO MMC_BOOT_MCI_REG(0x080)
256
257/* SD Memory Card bus commands */
258#define CMD0_GO_IDLE_STATE 0
259#define CMD1_SEND_OP_COND 1
260#define CMD2_ALL_SEND_CID 2
261#define CMD3_SEND_RELATIVE_ADDR 3
262#define CMD4_SET_DSR 4
263#define CMD6_SWITCH_FUNC 6
264#define CMD7_SELECT_DESELECT_CARD 7
265#define CMD8_SEND_EXT_CSD 8
266#define CMD9_SEND_CSD 9
267#define CMD10_SEND_CID 10
268#define CMD12_STOP_TRANSMISSION 12
269#define CMD13_SEND_STATUS 13
270#define CMD15_GO_INACTIVE_STATUS 15
271#define CMD16_SET_BLOCKLEN 16
272#define CMD17_READ_SINGLE_BLOCK 17
273#define CMD18_READ_MULTIPLE_BLOCK 18
274#define CMD24_WRITE_SINGLE_BLOCK 24
275#define CMD25_WRITE_MULTIPLE_BLOCK 25
276#define CMD32_ERASE_WR_BLK_START 32
277#define CMD33_ERASE_WR_BLK_END 33
278#define CMD38_ERASE 38
279#define CMD55_APP_CMD 55
280
281/* Switch Function Modes */
282#define MMC_BOOT_SWITCH_FUNC_CHECK 0
283#define MMC_BOOT_SWITCH_FUNC_SET 1
284
285/* OCR Register */
286#define MMC_BOOT_OCR_17_19 (1 << 7)
287#define MMC_BOOT_OCR_27_36 (0x1FF << 15)
288#define MMC_BOOT_OCR_SEC_MODE (2 << 29)
289#define MMC_BOOT_OCR_BUSY (1 << 31)
290
291/* Commands type */
292#define MMC_BOOT_CMD_BCAST (1 << 0)
293#define MMC_BOOT_CMD_BCAST_W_RESP (1 << 1)
294#define MMC_BOOT_CMD_ADDRESS (1 << 2)
295#define MMC_BOOT_CMD_ADDR_DATA_XFER (1 << 3)
296
297/* Response types */
298#define MMC_BOOT_RESP_NONE 0
299#define MMC_BOOT_RESP_R1 (1 << 0)
300#define MMC_BOOT_RESP_R1B (1 << 1)
301#define MMC_BOOT_RESP_R2 (1 << 2)
302#define MMC_BOOT_RESP_R3 (1 << 3)
303#define MMC_BOOT_RESP_R6 (1 << 6)
304#define MMC_BOOT_RESP_R7 (1 << 7)
305
306#define IS_RESP_136_BITS(x) (x & MMC_BOOT_RESP_R2)
307#define CHECK_FOR_BUSY_AT_RESP(x)
308
309/* Card Status bits (R1 register) */
310#define MMC_BOOT_R1_AKE_SEQ_ERROR (1 << 3)
311#define MMC_BOOT_R1_APP_CMD (1 << 5)
312#define MMC_BOOT_R1_RDY_FOR_DATA (1 << 6)
313#define MMC_BOOT_R1_CURR_STATE_IDLE (0 << 9)
314#define MMC_BOOT_R1_CURR_STATE_RDY (1 << 9)
315#define MMC_BOOT_R1_CURR_STATE_IDENT (2 << 9)
316#define MMC_BOOT_R1_CURR_STATE_STBY (3 << 9)
317#define MMC_BOOT_R1_CURR_STATE_TRAN (4 << 9)
318#define MMC_BOOT_R1_CURR_STATE_DATA (5 << 9)
319#define MMC_BOOT_R1_CURR_STATE_RCV (6 << 9)
320#define MMC_BOOT_R1_CURR_STATE_PRG (7 << 9)
321#define MMC_BOOT_R1_CURR_STATE_DIS (8 << 9)
322#define MMC_BOOT_R1_ERASE_RESET (1 << 13)
323#define MMC_BOOT_R1_CARD_ECC_DISABLED (1 << 14)
324#define MMC_BOOT_R1_WP_ERASE_SKIP (1 << 15)
325#define MMC_BOOT_R1_ERROR (1 << 19)
326#define MMC_BOOT_R1_CC_ERROR (1 << 20)
327#define MMC_BOOT_R1_CARD_ECC_FAILED (1 << 21)
328#define MMC_BOOT_R1_ILLEGAL_CMD (1 << 22)
329#define MMC_BOOT_R1_COM_CRC_ERR (1 << 23)
330#define MMC_BOOT_R1_LOCK_UNLOCK_FAIL (1 << 24)
331#define MMC_BOOT_R1_CARD_IS_LOCKED (1 << 25)
332#define MMC_BOOT_R1_WP_VIOLATION (1 << 26)
333#define MMC_BOOT_R1_ERASE_PARAM (1 << 27)
334#define MMC_BOOT_R1_ERASE_SEQ_ERR (1 << 28)
335#define MMC_BOOT_R1_BLOCK_LEN_ERR (1 << 29)
336#define MMC_BOOT_R1_ADDR_ERR (1 << 30)
337#define MMC_BOOT_R1_OUT_OF_RANGE (1 << 31)
338
339/* Macros for Common Errors */
340#define MMC_BOOT_E_SUCCESS 0
341#define MMC_BOOT_E_FAILURE 1
342#define MMC_BOOT_E_TIMEOUT 2
343#define MMC_BOOT_E_INVAL 3
344#define MMC_BOOT_E_CRC_FAIL 4
345#define MMC_BOOT_E_INIT_FAIL 5
346#define MMC_BOOT_E_CMD_INDX_MISMATCH 6
347#define MMC_BOOT_E_RESP_VERIFY_FAIL 7
348#define MMC_BOOT_E_NOT_SUPPORTED 8
349#define MMC_BOOT_E_CARD_BUSY 9
350#define MMC_BOOT_E_MEM_ALLOC_FAIL 10
351#define MMC_BOOT_E_CLK_ENABLE_FAIL 11
352#define MMC_BOOT_E_CMMC_DECODE_FAIL 12
353#define MMC_BOOT_E_CID_DECODE_FAIL 13
354#define MMC_BOOT_E_BLOCKLEN_ERR 14
355#define MMC_BOOT_E_ADDRESS_ERR 15
356#define MMC_BOOT_E_DATA_CRC_FAIL 16
357#define MMC_BOOT_E_DATA_TIMEOUT 17
358#define MMC_BOOT_E_RX_OVRRUN 18
359#define MMC_BOOT_E_VREG_SET_FAILED 19
360#define MMC_BOOT_E_GPIO_CFG_FAIL 20
361
362/* EXT_CSD */
363#define MMC_BOOT_ACCESS_WRITE 0x3
364#define MMC_BOOT_EXT_CMMC_HS_TIMING 185
365#define MMC_BOOT_EXT_CMMC_BUS_WIDTH 183
366
367/* Data structure definitions */
368struct mmc_boot_command
369{
370 unsigned int cmd_index;
371 unsigned int argument;
372 unsigned int cmd_type;
373
374 unsigned int resp[4];
375 unsigned int resp_type;
376 unsigned int prg_enabled;
377 unsigned int xfer_mode;
378};
379
380#define MMC_BOOT_XFER_MODE_BLOCK 0
381#define MMC_BOOT_XFER_MODE_STREAM 1
382
383/* CSD Register.
384 * Note: not all the fields have been defined here
385 */
386struct mmc_boot_csd
387{
388 unsigned int cmmc_structure;
389 unsigned int card_cmd_class;
390 unsigned int write_blk_len;
391 unsigned int read_blk_len;
392 unsigned int r2w_factor;
393 unsigned int sector_size;
394 unsigned int c_size_mult;
395 unsigned int c_size;
396 unsigned int nsac_clk_cycle;
397 unsigned int taac_ns;
398 unsigned int tran_speed;
399 unsigned int erase_blk_len:1;
400 unsigned int read_blk_misalign:1;
401 unsigned int write_blk_misalign:1;
402 unsigned int read_blk_partial:1;
403 unsigned int write_blk_partial:1;
404};
405
406/* CID Register */
407struct mmc_boot_cid
408{
409 unsigned int mid; /* 8 bit manufacturer id*/
410 unsigned int oid; /* 16 bits 2 character ASCII - OEM ID*/
411 unsigned char pnm[7];/* 6 character ASCII - product name*/
412 unsigned int prv; /* 8 bits - product revision */
413 unsigned int psn; /* 32 bits - product serial number */
414 unsigned int month; /* 4 bits manufacturing month */
415 unsigned int year; /* 4 bits manufacturing year */
416};
417
418/* SCR Register */
419struct mmc_boot_scr
420{
421 unsigned int scr_structure;
422 unsigned int mmc_spec;
423#define MMC_BOOT_SCR_MMC_SPEC_V1_01 0
424#define MMC_BOOT_SCR_MMC_SPEC_V1_10 1
425#define MMC_BOOT_SCR_MMC_SPEC_V2_00 2
426 unsigned int data_stat_after_erase;
427 unsigned int mmc_security;
428#define MMC_BOOT_SCR_NO_SECURITY 0
429#define MMC_BOOT_SCR_SECURITY_UNUSED 1
430#define MMC_BOOT_SCR_SECURITY_V1_01 2
431#define MMC_BOOT_SCR_SECURITY_V2_00 3
432 unsigned int mmc_bus_width;
433#define MMC_BOOT_SCR_BUS_WIDTH_1_BIT (1<<0)
434#define MMC_BOOT_SCR_BUS_WIDTH_4_BIT (1<<2)
435};
436
437struct mmc_boot_card
438{
439 unsigned int rca;
440 unsigned int ocr;
441 unsigned int capacity;
442 unsigned int type;
443#define MMC_BOOT_TYPE_STD_SD 0
444#define MMC_BOOT_TYPE_SDHC 1
445#define MMC_BOOT_TYPE_SDIO 2
446 unsigned int status;
447#define MMC_BOOT_STATUS_INACTIVE 0
448#define MMC_BOOT_STATUS_ACTIVE 1
449 unsigned int rd_timeout_ns;
450 unsigned int wr_timeout_ns;
451 unsigned int rd_block_len;
452 unsigned int wr_block_len;
453 //unsigned int data_xfer_len;
454 struct mmc_boot_cid cid;
455 struct mmc_boot_csd csd;
456 struct mmc_boot_scr scr;
457};
458
459#define MMC_BOOT_XFER_MULTI_BLOCK 0
460#define MMC_BOOT_XFER_SINGLE_BLOCK 1
461
462struct mmc_boot_host
463{
464 unsigned int mclk_rate;
465 unsigned int pclk_rate;
466 unsigned int ocr;
467 unsigned int cmd_retry;
468 unsigned int clk_enabled;
469};
470
471
472/* MACRO used to evoke regcomp */
473#define REGCOMP_CKRTN(regx, str, errhandle) \
474 do { \
475 if(regcomp(regx, str, REG_EXTENDED) != 0) { \
476 printf("Error building regex: %s\n", str); \
477 goto errhandle; \
478 } \
479 } while(0);
480
481
482#define GET_LWORD_FROM_BYTE(x) ((unsigned)*(x) | \
483 ((unsigned)*(x+1) << 8) | \
484 ((unsigned)*(x+2) << 16) | \
485 ((unsigned)*(x+3) << 24))
486
487#define PUT_LWORD_TO_BYTE(x, y) do{*(x) = y & 0xff; \
488 *(x+1) = (y >> 8) & 0xff; \
489 *(x+2) = (y >> 16) & 0xff; \
490 *(x+3) = (y >> 24) & 0xff; }while(0)
491
492#define GET_PAR_NUM_FROM_POS(x) (((x & 0x0000FF00) >> 8) + (x & 0x000000FF))
493
494/* Some useful define used to access the MBR/EBR table */
495#define BLOCK_SIZE 0x200
496#define TABLE_ENTRY_0 0x1BE
497#define TABLE_ENTRY_1 0x1CE
498#define TABLE_ENTRY_2 0x1DE
499#define TABLE_ENTRY_3 0x1EE
500#define TABLE_SIGNATURE 0x1FE
501#define TABLE_ENTRY_SIZE 0x010
502
503#define OFFSET_STATUS 0x00
504#define OFFSET_TYPE 0x04
505#define OFFSET_FIRST_SEC 0x08
506#define OFFSET_SIZE 0x0C
507#define COPYBUFF_SIZE (1024 * 16)
508#define BINARY_IN_TABLE_SIZE (16 * 512)
509#define MAX_FILE_ENTRIES 20
510
511#define MMC_BOOT_TYPE 0x48
512#define MMC_SYSTEM_TYPE 0x82
513#define MMC_USERDATA_TYPE 0x83
514
515#define MMC_RCA 2
516
517struct mbr_entry
518{
519 unsigned dstatus;
520 unsigned dtype ;
521 unsigned dfirstsec;
522 unsigned dsize;
523 unsigned char name[64];
524};
525
526/* Can be used to unpack array of upto 32 bits data */
527#define UNPACK_BITS(array, start, len, size_of) \
528 ({ \
529 unsigned int indx = (start) / (size_of); \
530 unsigned int offset = (start) % (size_of); \
531 unsigned int mask = (((len)<(size_of))? 1<<(len):0) - 1; \
532 unsigned int unpck = array[indx] >> offset; \
533 unsigned int indx2 = ((start) + (len) - 1) / (size_of); \
534 if(indx2 > indx) \
535 unpck |= array[indx2] << ((size_of) - offset); \
536 unpck & mask; \
537 })
538
539#define MMC_BOOT_MAX_COMMAND_RETRY 10
540#define MMC_BOOT_RD_BLOCK_LEN 512
541#define MMC_BOOT_WR_BLOCK_LEN 512
542
543/* We have 12 32-bits FIFO registers */
544#define MMC_BOOT_MCI_FIFO_SIZE ( 12 * 4 )
545
546/*Need to put at proper place*/
547#define SDC1_CLK 19 /* Secure Digital Card clocks */
548#define SDC1_PCLK 20
549#define SDC2_CLK 21
550#define SDC2_PCLK 22
551#define SDC3_CLK 23
552#define SDC3_PCLK 24
553#define SDC4_CLK 25
554#define SDC4_PCLK 26
555
556#define MAX_PARTITIONS 64
557
558#define MMC_BOOT_CHECK_PATTERN 0xAA /* 10101010b */
559
560#define MMC_CLK_400KHZ 400000
561#define MMC_CLK_144KHZ 144000
562#define MMC_CLK_20MHZ 20000000
563#define MMC_CLK_25MHZ 25000000
564#define MMC_CLK_50MHZ 49152000
565
566#define MMC_CLK_ENABLE 1
567#define MMC_CLK_DISABLE 0
568
569#endif
570