wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2003 |
| 3 | * Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
| 23 | |
| 24 | #include <config.h> |
| 25 | #include <common.h> |
| 26 | #include <mmc.h> |
| 27 | #include <asm/errno.h> |
| 28 | #include <asm/arch/hardware.h> |
wdenk | 7205e40 | 2003-09-10 22:30:53 +0000 | [diff] [blame] | 29 | #include <part.h> |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 30 | #include <asm/io.h> |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 31 | |
Jean-Christophe PLAGNIOL-VILLARD | b03d92e | 2009-02-20 03:47:50 +0100 | [diff] [blame] | 32 | #include "pxa_mmc.h" |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 33 | |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 34 | extern int fat_register_device(block_dev_desc_t * dev_desc, int part_no); |
wdenk | 7205e40 | 2003-09-10 22:30:53 +0000 | [diff] [blame] | 35 | |
| 36 | static block_dev_desc_t mmc_dev; |
| 37 | |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 38 | block_dev_desc_t *mmc_get_dev(int dev) |
wdenk | 7205e40 | 2003-09-10 22:30:53 +0000 | [diff] [blame] | 39 | { |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 40 | return ((block_dev_desc_t *) & mmc_dev); |
wdenk | 7205e40 | 2003-09-10 22:30:53 +0000 | [diff] [blame] | 41 | } |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 42 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 43 | /* |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 44 | * FIXME needs to read cid and csd info to determine block size |
| 45 | * and other parameters |
| 46 | */ |
| 47 | static uchar mmc_buf[MMC_BLOCK_SIZE]; |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 48 | static uchar spec_ver; |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 49 | static int mmc_ready = 0; |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 50 | static int wide = 0; |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 51 | |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 52 | static uint32_t * |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 53 | /****************************************************/ |
| 54 | mmc_cmd(ushort cmd, ushort argh, ushort argl, ushort cmdat) |
| 55 | /****************************************************/ |
| 56 | { |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 57 | static uint32_t resp[4], a, b, c; |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 58 | ulong status; |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 59 | int i; |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 60 | |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 61 | debug("mmc_cmd %u 0x%04x 0x%04x 0x%04x\n", cmd, argh, argl, |
| 62 | cmdat | wide); |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 63 | writel(MMC_STRPCL_STOP_CLK, MMC_STRPCL); |
| 64 | writel(~MMC_I_MASK_CLK_IS_OFF, MMC_I_MASK); |
| 65 | while (!(readl(MMC_I_REG) & MMC_I_REG_CLK_IS_OFF)) |
| 66 | ; |
| 67 | writel(cmd, MMC_CMD); |
| 68 | writel(argh, MMC_ARGH); |
| 69 | writel(argl, MMC_ARGL); |
| 70 | writel(cmdat | wide, MMC_CMDAT); |
| 71 | writel(~MMC_I_MASK_END_CMD_RES, MMC_I_MASK); |
| 72 | writel(MMC_STRPCL_START_CLK, MMC_STRPCL); |
| 73 | while (!(readl(MMC_I_REG) & MMC_I_REG_END_CMD_RES)) |
| 74 | ; |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 75 | |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 76 | status = readl(MMC_STAT); |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 77 | debug("MMC status 0x%08x\n", status); |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 78 | if (status & MMC_STAT_TIME_OUT_RESPONSE) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 79 | return 0; |
| 80 | } |
| 81 | |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 82 | /* Linux says: |
| 83 | * Did I mention this is Sick. We always need to |
| 84 | * discard the upper 8 bits of the first 16-bit word. |
| 85 | */ |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 86 | a = (readl(MMC_RES) & 0xffff); |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 87 | for (i = 0; i < 4; i++) { |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 88 | b = (readl(MMC_RES) & 0xffff); |
| 89 | c = (readl(MMC_RES) & 0xffff); |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 90 | resp[i] = (a << 24) | (b << 8) | (c >> 8); |
| 91 | a = c; |
| 92 | debug("MMC resp[%d] = %#08x\n", i, resp[i]); |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 93 | } |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 94 | |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 95 | return resp; |
| 96 | } |
| 97 | |
| 98 | int |
| 99 | /****************************************************/ |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 100 | mmc_block_read(uchar * dst, ulong src, ulong len) |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 101 | /****************************************************/ |
| 102 | { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 103 | ushort argh, argl; |
| 104 | ulong status; |
| 105 | |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 106 | if (len == 0) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 107 | return 0; |
| 108 | } |
| 109 | |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 110 | debug("mmc_block_rd dst %lx src %lx len %d\n", (ulong) dst, src, len); |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 111 | |
| 112 | argh = len >> 16; |
| 113 | argl = len & 0xffff; |
| 114 | |
| 115 | /* set block len */ |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 116 | mmc_cmd(MMC_CMD_SET_BLOCKLEN, argh, argl, MMC_CMDAT_R1); |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 117 | |
| 118 | /* send read command */ |
| 119 | argh = src >> 16; |
| 120 | argl = src & 0xffff; |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 121 | writel(MMC_STRPCL_STOP_CLK, MMC_STRPCL); |
| 122 | writel(0xffff, MMC_RDTO); |
| 123 | writel(1, MMC_NOB); |
| 124 | writel(len, MMC_BLKLEN); |
Haavard Skinnemoen | 341188b | 2008-05-22 11:09:59 +0200 | [diff] [blame] | 125 | mmc_cmd(MMC_CMD_READ_SINGLE_BLOCK, argh, argl, |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 126 | MMC_CMDAT_R1 | MMC_CMDAT_READ | MMC_CMDAT_BLOCK | |
| 127 | MMC_CMDAT_DATA_EN); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 128 | |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 129 | writel(~MMC_I_MASK_RXFIFO_RD_REQ, MMC_I_MASK); |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 130 | while (len) { |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 131 | if (readl(MMC_I_REG) & MMC_I_REG_RXFIFO_RD_REQ) { |
Marek Vasut | 43c15d3 | 2009-10-14 00:25:33 +0200 | [diff] [blame] | 132 | #if defined(CONFIG_PXA27X) || defined(CONFIG_CPU_MONAHANS) |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 133 | int i; |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 134 | for (i = min(len, 32); i; i--) { |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 135 | *dst++ = readb(MMC_RXFIFO); |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 136 | len--; |
| 137 | } |
| 138 | #else |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 139 | *dst++ = readb(MMC_RXFIFO); |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 140 | len--; |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 141 | #endif |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 142 | } |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 143 | status = readl(MMC_STAT); |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 144 | if (status & MMC_STAT_ERRORS) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 145 | printf("MMC_STAT error %lx\n", status); |
| 146 | return -1; |
| 147 | } |
| 148 | } |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 149 | writel(~MMC_I_MASK_DATA_TRAN_DONE, MMC_I_MASK); |
| 150 | while (!(readl(MMC_I_REG) & MMC_I_REG_DATA_TRAN_DONE)) |
| 151 | ; |
| 152 | status = readl(MMC_STAT); |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 153 | if (status & MMC_STAT_ERRORS) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 154 | printf("MMC_STAT error %lx\n", status); |
| 155 | return -1; |
| 156 | } |
| 157 | return 0; |
| 158 | } |
| 159 | |
| 160 | int |
| 161 | /****************************************************/ |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 162 | mmc_block_write(ulong dst, uchar * src, int len) |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 163 | /****************************************************/ |
| 164 | { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 165 | ushort argh, argl; |
| 166 | ulong status; |
| 167 | |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 168 | if (len == 0) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 169 | return 0; |
| 170 | } |
| 171 | |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 172 | debug("mmc_block_wr dst %lx src %lx len %d\n", dst, (ulong) src, len); |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 173 | |
| 174 | argh = len >> 16; |
| 175 | argl = len & 0xffff; |
| 176 | |
| 177 | /* set block len */ |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 178 | mmc_cmd(MMC_CMD_SET_BLOCKLEN, argh, argl, MMC_CMDAT_R1); |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 179 | |
| 180 | /* send write command */ |
| 181 | argh = dst >> 16; |
| 182 | argl = dst & 0xffff; |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 183 | writel(MMC_STRPCL_STOP_CLK, MMC_STRPCL); |
| 184 | writel(1, MMC_NOB); |
| 185 | writel(len, MMC_BLKLEN); |
Tom Rix | e3ba7f1 | 2009-02-20 03:47:50 +0100 | [diff] [blame] | 186 | mmc_cmd(MMC_CMD_WRITE_SINGLE_BLOCK, argh, argl, |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 187 | MMC_CMDAT_R1 | MMC_CMDAT_WRITE | MMC_CMDAT_BLOCK | |
| 188 | MMC_CMDAT_DATA_EN); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 189 | |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 190 | writel(~MMC_I_MASK_TXFIFO_WR_REQ, MMC_I_MASK); |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 191 | while (len) { |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 192 | if (readl(MMC_I_REG) & MMC_I_REG_TXFIFO_WR_REQ) { |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 193 | int i, bytes = min(32, len); |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 194 | |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 195 | for (i = 0; i < bytes; i++) { |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 196 | writel(*src++, MMC_TXFIFO); |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 197 | } |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 198 | if (bytes < 32) { |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 199 | writel(MMC_PRTBUF_BUF_PART_FULL, MMC_PRTBUF); |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 200 | } |
| 201 | len -= bytes; |
| 202 | } |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 203 | status = readl(MMC_STAT); |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 204 | if (status & MMC_STAT_ERRORS) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 205 | printf("MMC_STAT error %lx\n", status); |
| 206 | return -1; |
| 207 | } |
| 208 | } |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 209 | writel(~MMC_I_MASK_DATA_TRAN_DONE, MMC_I_MASK); |
| 210 | while (!(readl(MMC_I_REG) & MMC_I_REG_DATA_TRAN_DONE)) |
| 211 | ; |
| 212 | writel(~MMC_I_MASK_PRG_DONE, MMC_I_MASK); |
| 213 | while (!(readl(MMC_I_REG) & MMC_I_REG_PRG_DONE)) |
| 214 | ; |
| 215 | status = readl(MMC_STAT); |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 216 | if (status & MMC_STAT_ERRORS) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 217 | printf("MMC_STAT error %lx\n", status); |
| 218 | return -1; |
| 219 | } |
| 220 | return 0; |
| 221 | } |
| 222 | |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 223 | int |
| 224 | /****************************************************/ |
Andy Fleming | 682beea | 2009-02-20 03:47:50 +0100 | [diff] [blame] | 225 | pxa_mmc_read(long src, uchar * dst, int size) |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 226 | /****************************************************/ |
| 227 | { |
| 228 | ulong end, part_start, part_end, part_len, aligned_start, aligned_end; |
| 229 | ulong mmc_block_size, mmc_block_address; |
| 230 | |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 231 | if (size == 0) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 232 | return 0; |
| 233 | } |
| 234 | |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 235 | if (!mmc_ready) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 236 | printf("Please initial the MMC first\n"); |
| 237 | return -1; |
| 238 | } |
| 239 | |
| 240 | mmc_block_size = MMC_BLOCK_SIZE; |
| 241 | mmc_block_address = ~(mmc_block_size - 1); |
| 242 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 243 | src -= CONFIG_SYS_MMC_BASE; |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 244 | end = src + size; |
| 245 | part_start = ~mmc_block_address & src; |
| 246 | part_end = ~mmc_block_address & end; |
| 247 | aligned_start = mmc_block_address & src; |
| 248 | aligned_end = mmc_block_address & end; |
| 249 | |
| 250 | /* all block aligned accesses */ |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 251 | debug |
| 252 | ("src %lx dst %lx end %lx pstart %lx pend %lx astart %lx aend %lx\n", |
| 253 | src, (ulong) dst, end, part_start, part_end, aligned_start, |
| 254 | aligned_end); |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 255 | if (part_start) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 256 | part_len = mmc_block_size - part_start; |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 257 | debug |
| 258 | ("ps src %lx dst %lx end %lx pstart %lx pend %lx astart %lx aend %lx\n", |
| 259 | src, (ulong) dst, end, part_start, part_end, aligned_start, |
| 260 | aligned_end); |
| 261 | if ((mmc_block_read(mmc_buf, aligned_start, mmc_block_size)) < |
| 262 | 0) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 263 | return -1; |
| 264 | } |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 265 | memcpy(dst, mmc_buf + part_start, part_len); |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 266 | dst += part_len; |
| 267 | src += part_len; |
| 268 | } |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 269 | debug |
| 270 | ("src %lx dst %lx end %lx pstart %lx pend %lx astart %lx aend %lx\n", |
| 271 | src, (ulong) dst, end, part_start, part_end, aligned_start, |
| 272 | aligned_end); |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 273 | for (; src < aligned_end; src += mmc_block_size, dst += mmc_block_size) { |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 274 | debug |
| 275 | ("al src %lx dst %lx end %lx pstart %lx pend %lx astart %lx aend %lx\n", |
| 276 | src, (ulong) dst, end, part_start, part_end, aligned_start, |
| 277 | aligned_end); |
| 278 | if ((mmc_block_read((uchar *) (dst), src, mmc_block_size)) < 0) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 279 | return -1; |
| 280 | } |
| 281 | } |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 282 | debug |
| 283 | ("src %lx dst %lx end %lx pstart %lx pend %lx astart %lx aend %lx\n", |
| 284 | src, (ulong) dst, end, part_start, part_end, aligned_start, |
| 285 | aligned_end); |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 286 | if (part_end && src < end) { |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 287 | debug |
| 288 | ("pe src %lx dst %lx end %lx pstart %lx pend %lx astart %lx aend %lx\n", |
| 289 | src, (ulong) dst, end, part_start, part_end, aligned_start, |
| 290 | aligned_end); |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 291 | if ((mmc_block_read(mmc_buf, aligned_end, mmc_block_size)) < 0) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 292 | return -1; |
| 293 | } |
| 294 | memcpy(dst, mmc_buf, part_end); |
| 295 | } |
| 296 | return 0; |
| 297 | } |
| 298 | |
| 299 | int |
| 300 | /****************************************************/ |
Andy Fleming | 682beea | 2009-02-20 03:47:50 +0100 | [diff] [blame] | 301 | pxa_mmc_write(uchar * src, ulong dst, int size) |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 302 | /****************************************************/ |
| 303 | { |
| 304 | ulong end, part_start, part_end, part_len, aligned_start, aligned_end; |
| 305 | ulong mmc_block_size, mmc_block_address; |
| 306 | |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 307 | if (size == 0) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 308 | return 0; |
| 309 | } |
| 310 | |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 311 | if (!mmc_ready) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 312 | printf("Please initial the MMC first\n"); |
| 313 | return -1; |
| 314 | } |
| 315 | |
| 316 | mmc_block_size = MMC_BLOCK_SIZE; |
| 317 | mmc_block_address = ~(mmc_block_size - 1); |
| 318 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 319 | dst -= CONFIG_SYS_MMC_BASE; |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 320 | end = dst + size; |
| 321 | part_start = ~mmc_block_address & dst; |
| 322 | part_end = ~mmc_block_address & end; |
| 323 | aligned_start = mmc_block_address & dst; |
| 324 | aligned_end = mmc_block_address & end; |
| 325 | |
| 326 | /* all block aligned accesses */ |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 327 | debug |
| 328 | ("src %lx dst %lx end %lx pstart %lx pend %lx astart %lx aend %lx\n", |
| 329 | src, (ulong) dst, end, part_start, part_end, aligned_start, |
| 330 | aligned_end); |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 331 | if (part_start) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 332 | part_len = mmc_block_size - part_start; |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 333 | debug |
| 334 | ("ps src %lx dst %lx end %lx pstart %lx pend %lx astart %lx aend %lx\n", |
| 335 | (ulong) src, dst, end, part_start, part_end, aligned_start, |
| 336 | aligned_end); |
| 337 | if ((mmc_block_read(mmc_buf, aligned_start, mmc_block_size)) < |
| 338 | 0) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 339 | return -1; |
| 340 | } |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 341 | memcpy(mmc_buf + part_start, src, part_len); |
| 342 | if ((mmc_block_write(aligned_start, mmc_buf, mmc_block_size)) < |
| 343 | 0) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 344 | return -1; |
| 345 | } |
| 346 | dst += part_len; |
| 347 | src += part_len; |
| 348 | } |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 349 | debug |
| 350 | ("src %lx dst %lx end %lx pstart %lx pend %lx astart %lx aend %lx\n", |
| 351 | src, (ulong) dst, end, part_start, part_end, aligned_start, |
| 352 | aligned_end); |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 353 | for (; dst < aligned_end; src += mmc_block_size, dst += mmc_block_size) { |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 354 | debug |
| 355 | ("al src %lx dst %lx end %lx pstart %lx pend %lx astart %lx aend %lx\n", |
| 356 | src, (ulong) dst, end, part_start, part_end, aligned_start, |
| 357 | aligned_end); |
| 358 | if ((mmc_block_write(dst, (uchar *) src, mmc_block_size)) < 0) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 359 | return -1; |
| 360 | } |
| 361 | } |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 362 | debug |
| 363 | ("src %lx dst %lx end %lx pstart %lx pend %lx astart %lx aend %lx\n", |
| 364 | src, (ulong) dst, end, part_start, part_end, aligned_start, |
| 365 | aligned_end); |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 366 | if (part_end && dst < end) { |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 367 | debug |
| 368 | ("pe src %lx dst %lx end %lx pstart %lx pend %lx astart %lx aend %lx\n", |
| 369 | src, (ulong) dst, end, part_start, part_end, aligned_start, |
| 370 | aligned_end); |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 371 | if ((mmc_block_read(mmc_buf, aligned_end, mmc_block_size)) < 0) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 372 | return -1; |
| 373 | } |
| 374 | memcpy(mmc_buf, src, part_end); |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 375 | if ((mmc_block_write(aligned_end, mmc_buf, mmc_block_size)) < 0) { |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 376 | return -1; |
| 377 | } |
| 378 | } |
| 379 | return 0; |
| 380 | } |
| 381 | |
Andy Fleming | 682beea | 2009-02-20 03:47:50 +0100 | [diff] [blame] | 382 | static ulong |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 383 | /****************************************************/ |
Jean-Christophe PLAGNIOL-VILLARD | 0937b8d | 2008-02-17 14:15:32 +0100 | [diff] [blame] | 384 | mmc_bread(int dev_num, ulong blknr, lbaint_t blkcnt, void *dst) |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 385 | /****************************************************/ |
| 386 | { |
| 387 | int mmc_block_size = MMC_BLOCK_SIZE; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 388 | ulong src = blknr * mmc_block_size + CONFIG_SYS_MMC_BASE; |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 389 | |
Andy Fleming | 682beea | 2009-02-20 03:47:50 +0100 | [diff] [blame] | 390 | pxa_mmc_read(src, (uchar *) dst, blkcnt * mmc_block_size); |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 391 | return blkcnt; |
| 392 | } |
| 393 | |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 394 | #ifdef __GNUC__ |
| 395 | #define likely(x) __builtin_expect(!!(x), 1) |
| 396 | #define unlikely(x) __builtin_expect(!!(x), 0) |
| 397 | #else |
| 398 | #define likely(x) (x) |
| 399 | #define unlikely(x) (x) |
| 400 | #endif |
| 401 | |
| 402 | #define UNSTUFF_BITS(resp,start,size) \ |
| 403 | ({ \ |
| 404 | const int __size = size; \ |
| 405 | const uint32_t __mask = (__size < 32 ? 1 << __size : 0) - 1; \ |
| 406 | const int32_t __off = 3 - ((start) / 32); \ |
| 407 | const int32_t __shft = (start) & 31; \ |
| 408 | uint32_t __res; \ |
| 409 | \ |
| 410 | __res = resp[__off] >> __shft; \ |
| 411 | if (__size + __shft > 32) \ |
| 412 | __res |= resp[__off-1] << ((32 - __shft) % 32); \ |
| 413 | __res & __mask; \ |
| 414 | }) |
| 415 | |
| 416 | /* |
| 417 | * Given the decoded CSD structure, decode the raw CID to our CID structure. |
| 418 | */ |
| 419 | static void mmc_decode_cid(uint32_t * resp) |
| 420 | { |
| 421 | if (IF_TYPE_SD == mmc_dev.if_type) { |
| 422 | /* |
| 423 | * SD doesn't currently have a version field so we will |
| 424 | * have to assume we can parse this. |
| 425 | */ |
| 426 | sprintf((char *)mmc_dev.vendor, |
| 427 | "Man %02x OEM %c%c \"%c%c%c%c%c\" Date %02u/%04u", |
| 428 | UNSTUFF_BITS(resp, 120, 8), UNSTUFF_BITS(resp, 112, 8), |
| 429 | UNSTUFF_BITS(resp, 104, 8), UNSTUFF_BITS(resp, 96, 8), |
| 430 | UNSTUFF_BITS(resp, 88, 8), UNSTUFF_BITS(resp, 80, 8), |
| 431 | UNSTUFF_BITS(resp, 72, 8), UNSTUFF_BITS(resp, 64, 8), |
| 432 | UNSTUFF_BITS(resp, 8, 4), UNSTUFF_BITS(resp, 12, |
| 433 | 8) + 2000); |
| 434 | sprintf((char *)mmc_dev.revision, "%d.%d", |
| 435 | UNSTUFF_BITS(resp, 60, 4), UNSTUFF_BITS(resp, 56, 4)); |
| 436 | sprintf((char *)mmc_dev.product, "%u", |
| 437 | UNSTUFF_BITS(resp, 24, 32)); |
| 438 | } else { |
| 439 | /* |
| 440 | * The selection of the format here is based upon published |
| 441 | * specs from sandisk and from what people have reported. |
| 442 | */ |
| 443 | switch (spec_ver) { |
| 444 | case 0: /* MMC v1.0 - v1.2 */ |
| 445 | case 1: /* MMC v1.4 */ |
| 446 | sprintf((char *)mmc_dev.vendor, |
| 447 | "Man %02x%02x%02x \"%c%c%c%c%c%c%c\" Date %02u/%04u", |
| 448 | UNSTUFF_BITS(resp, 120, 8), UNSTUFF_BITS(resp, |
| 449 | 112, |
| 450 | 8), |
| 451 | UNSTUFF_BITS(resp, 104, 8), UNSTUFF_BITS(resp, |
| 452 | 96, 8), |
| 453 | UNSTUFF_BITS(resp, 88, 8), UNSTUFF_BITS(resp, |
| 454 | 80, 8), |
| 455 | UNSTUFF_BITS(resp, 72, 8), UNSTUFF_BITS(resp, |
| 456 | 64, 8), |
| 457 | UNSTUFF_BITS(resp, 56, 8), UNSTUFF_BITS(resp, |
| 458 | 48, 8), |
| 459 | UNSTUFF_BITS(resp, 12, 4), UNSTUFF_BITS(resp, 8, |
| 460 | 4) + |
| 461 | 1997); |
| 462 | sprintf((char *)mmc_dev.revision, "%d.%d", |
| 463 | UNSTUFF_BITS(resp, 44, 4), UNSTUFF_BITS(resp, |
| 464 | 40, 4)); |
| 465 | sprintf((char *)mmc_dev.product, "%u", |
| 466 | UNSTUFF_BITS(resp, 16, 24)); |
| 467 | break; |
| 468 | |
| 469 | case 2: /* MMC v2.0 - v2.2 */ |
| 470 | case 3: /* MMC v3.1 - v3.3 */ |
| 471 | case 4: /* MMC v4 */ |
| 472 | sprintf((char *)mmc_dev.vendor, |
| 473 | "Man %02x OEM %04x \"%c%c%c%c%c%c\" Date %02u/%04u", |
| 474 | UNSTUFF_BITS(resp, 120, 8), UNSTUFF_BITS(resp, |
| 475 | 104, |
| 476 | 16), |
| 477 | UNSTUFF_BITS(resp, 96, 8), UNSTUFF_BITS(resp, |
| 478 | 88, 8), |
| 479 | UNSTUFF_BITS(resp, 80, 8), UNSTUFF_BITS(resp, |
| 480 | 72, 8), |
| 481 | UNSTUFF_BITS(resp, 64, 8), UNSTUFF_BITS(resp, |
| 482 | 56, 8), |
| 483 | UNSTUFF_BITS(resp, 12, 4), UNSTUFF_BITS(resp, 8, |
| 484 | 4) + |
| 485 | 1997); |
| 486 | sprintf((char *)mmc_dev.product, "%u", |
| 487 | UNSTUFF_BITS(resp, 16, 32)); |
| 488 | sprintf((char *)mmc_dev.revision, "N/A"); |
| 489 | break; |
| 490 | |
| 491 | default: |
| 492 | printf("MMC card has unknown MMCA version %d\n", |
| 493 | spec_ver); |
| 494 | break; |
| 495 | } |
| 496 | } |
| 497 | printf("%s card.\nVendor: %s\nProduct: %s\nRevision: %s\n", |
| 498 | (IF_TYPE_SD == mmc_dev.if_type) ? "SD" : "MMC", mmc_dev.vendor, |
| 499 | mmc_dev.product, mmc_dev.revision); |
| 500 | } |
| 501 | |
| 502 | /* |
| 503 | * Given a 128-bit response, decode to our card CSD structure. |
| 504 | */ |
| 505 | static void mmc_decode_csd(uint32_t * resp) |
| 506 | { |
| 507 | unsigned int mult, csd_struct; |
| 508 | |
| 509 | if (IF_TYPE_SD == mmc_dev.if_type) { |
| 510 | csd_struct = UNSTUFF_BITS(resp, 126, 2); |
| 511 | if (csd_struct != 0) { |
| 512 | printf("SD: unrecognised CSD structure version %d\n", |
| 513 | csd_struct); |
| 514 | return; |
| 515 | } |
| 516 | } else { |
| 517 | /* |
| 518 | * We only understand CSD structure v1.1 and v1.2. |
| 519 | * v1.2 has extra information in bits 15, 11 and 10. |
| 520 | */ |
| 521 | csd_struct = UNSTUFF_BITS(resp, 126, 2); |
| 522 | if (csd_struct != 1 && csd_struct != 2) { |
| 523 | printf("MMC: unrecognised CSD structure version %d\n", |
| 524 | csd_struct); |
| 525 | return; |
| 526 | } |
| 527 | |
| 528 | spec_ver = UNSTUFF_BITS(resp, 122, 4); |
| 529 | mmc_dev.if_type = IF_TYPE_MMC; |
| 530 | } |
| 531 | |
| 532 | mult = 1 << (UNSTUFF_BITS(resp, 47, 3) + 2); |
| 533 | mmc_dev.lba = (1 + UNSTUFF_BITS(resp, 62, 12)) * mult; |
| 534 | mmc_dev.blksz = 1 << UNSTUFF_BITS(resp, 80, 4); |
| 535 | |
| 536 | /* FIXME: The following just makes assumes that's the partition type -- should really read it */ |
| 537 | mmc_dev.part_type = PART_TYPE_DOS; |
| 538 | mmc_dev.dev = 0; |
| 539 | mmc_dev.lun = 0; |
| 540 | mmc_dev.type = DEV_TYPE_HARDDISK; |
| 541 | mmc_dev.removable = 0; |
| 542 | mmc_dev.block_read = mmc_bread; |
| 543 | |
Jean-Christophe PLAGNIOL-VILLARD | 0a5676b | 2008-07-12 14:36:34 +0200 | [diff] [blame] | 544 | printf("Detected: %lu blocks of %lu bytes (%luMB) ", |
| 545 | mmc_dev.lba, |
| 546 | mmc_dev.blksz, |
| 547 | mmc_dev.lba * mmc_dev.blksz / (1024 * 1024)); |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 548 | } |
| 549 | |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 550 | int |
| 551 | /****************************************************/ |
Andy Fleming | abb5466 | 2008-10-30 16:21:00 -0500 | [diff] [blame] | 552 | mmc_legacy_init(int verbose) |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 553 | /****************************************************/ |
| 554 | { |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 555 | int retries, rc = -ENODEV; |
| 556 | uint32_t cid_resp[4]; |
| 557 | uint32_t *resp; |
| 558 | uint16_t rca = 0; |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 559 | |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 560 | /* Reset device interface type */ |
| 561 | mmc_dev.if_type = IF_TYPE_UNKNOWN; |
| 562 | |
| 563 | #if defined (CONFIG_LUBBOCK) || (defined (CONFIG_GUMSTIX) && !defined(CONFIG_PXA27X)) |
| 564 | set_GPIO_mode(GPIO6_MMCCLK_MD); |
| 565 | set_GPIO_mode(GPIO8_MMCCS0_MD); |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 566 | #endif |
Marek Vasut | 43c15d3 | 2009-10-14 00:25:33 +0200 | [diff] [blame] | 567 | #ifdef CONFIG_CPU_MONAHANS /* pxa3xx */ |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 568 | writel(readl(CKENA) | CKENA_12_MMC0 | CKENA_13_MMC1, CKENA); |
Marek Vasut | 43c15d3 | 2009-10-14 00:25:33 +0200 | [diff] [blame] | 569 | #else /* pxa2xx */ |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 570 | writel(readl(CKEN) | CKEN12_MMC, CKEN); /* enable MMC unit clock */ |
Marek Vasut | 43c15d3 | 2009-10-14 00:25:33 +0200 | [diff] [blame] | 571 | #endif |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 572 | writel(MMC_CLKRT_0_3125MHZ, MMC_CLKRT); |
| 573 | writel(MMC_RES_TO_MAX, MMC_RESTO); |
| 574 | writel(MMC_SPI_DISABLE, MMC_SPI); |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 575 | |
| 576 | /* reset */ |
Haavard Skinnemoen | 341188b | 2008-05-22 11:09:59 +0200 | [diff] [blame] | 577 | mmc_cmd(MMC_CMD_GO_IDLE_STATE, 0, 0, MMC_CMDAT_INIT | MMC_CMDAT_R0); |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 578 | udelay(200000); |
| 579 | retries = 3; |
| 580 | while (retries--) { |
| 581 | resp = mmc_cmd(MMC_CMD_APP_CMD, 0, 0, MMC_CMDAT_R1); |
| 582 | if (!(resp[0] & 0x00000020)) { /* Card does not support APP_CMD */ |
| 583 | debug("Card does not support APP_CMD\n"); |
| 584 | break; |
| 585 | } |
| 586 | |
Adrian Filipi | c455d07 | 2008-07-18 11:52:02 -0400 | [diff] [blame] | 587 | /* Select 3.2-3.3V and 3.3-3.4V */ |
| 588 | resp = mmc_cmd(SD_CMD_APP_SEND_OP_COND, 0x0030, 0x0000, |
Haavard Skinnemoen | 341188b | 2008-05-22 11:09:59 +0200 | [diff] [blame] | 589 | MMC_CMDAT_R3 | (retries < 2 ? 0 |
| 590 | : MMC_CMDAT_INIT)); |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 591 | if (resp[0] & 0x80000000) { |
| 592 | mmc_dev.if_type = IF_TYPE_SD; |
| 593 | debug("Detected SD card\n"); |
| 594 | break; |
| 595 | } |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 596 | udelay(200000); |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 597 | } |
| 598 | |
| 599 | if (retries <= 0 || !(IF_TYPE_SD == mmc_dev.if_type)) { |
| 600 | debug("Failed to detect SD Card, trying MMC\n"); |
| 601 | resp = |
| 602 | mmc_cmd(MMC_CMD_SEND_OP_COND, 0x00ff, 0x8000, MMC_CMDAT_R3); |
| 603 | |
| 604 | retries = 10; |
| 605 | while (retries-- && resp && !(resp[0] & 0x80000000)) { |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 606 | udelay(200000); |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 607 | resp = |
| 608 | mmc_cmd(MMC_CMD_SEND_OP_COND, 0x00ff, 0x8000, |
| 609 | MMC_CMDAT_R3); |
| 610 | } |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 611 | } |
| 612 | |
| 613 | /* try to get card id */ |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 614 | resp = |
| 615 | mmc_cmd(MMC_CMD_ALL_SEND_CID, 0, 0, MMC_CMDAT_R2 | MMC_CMDAT_BUSY); |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 616 | if (resp) { |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 617 | memcpy(cid_resp, resp, sizeof(cid_resp)); |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 618 | |
| 619 | /* MMC exists, get CSD too */ |
Haavard Skinnemoen | 341188b | 2008-05-22 11:09:59 +0200 | [diff] [blame] | 620 | resp = mmc_cmd(MMC_CMD_SET_RELATIVE_ADDR, 0, 0, MMC_CMDAT_R1); |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 621 | if (IF_TYPE_SD == mmc_dev.if_type) |
| 622 | rca = ((resp[0] & 0xffff0000) >> 16); |
| 623 | resp = mmc_cmd(MMC_CMD_SEND_CSD, rca, 0, MMC_CMDAT_R2); |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 624 | if (resp) { |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 625 | mmc_decode_csd(resp); |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 626 | rc = 0; |
| 627 | mmc_ready = 1; |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 628 | } |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 629 | |
| 630 | mmc_decode_cid(cid_resp); |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 631 | } |
| 632 | |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 633 | writel(0, MMC_CLKRT); /* 20 MHz */ |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 634 | resp = mmc_cmd(MMC_CMD_SELECT_CARD, rca, 0, MMC_CMDAT_R1); |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 635 | |
Marek Vasut | 43c15d3 | 2009-10-14 00:25:33 +0200 | [diff] [blame] | 636 | #if defined(CONFIG_PXA27X) || defined(CONFIG_CPU_MONAHANS) |
stefano babic | c95219f | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 637 | if (IF_TYPE_SD == mmc_dev.if_type) { |
| 638 | resp = mmc_cmd(MMC_CMD_APP_CMD, rca, 0, MMC_CMDAT_R1); |
| 639 | resp = mmc_cmd(SD_CMD_APP_SET_BUS_WIDTH, 0, 2, MMC_CMDAT_R1); |
| 640 | wide = MMC_CMDAT_SD_4DAT; |
| 641 | } |
| 642 | #endif |
| 643 | |
| 644 | fat_register_device(&mmc_dev, 1); /* partitions start counting with 1 */ |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 645 | |
| 646 | return rc; |
| 647 | } |