4 * This file is part of BeRTOS.
6 * Bertos is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * As a special exception, you may use this file as part of a free software
21 * library without restriction. Specifically, if other files instantiate
22 * templates or use macros or inline functions from this file, or you compile
23 * this file and link it with other files to produce an executable, this
24 * file does not by itself cause the resulting executable to be covered by
25 * the GNU General Public License. This exception does not however
26 * invalidate any other reasons why the executable file might be covered by
27 * the GNU General Public License.
29 * Copyright 2007 Develer S.r.l. (http://www.develer.com/)
32 * \brief Function library for secure digital memory.
34 * \author Francesco Sacchi <batt@develer.com>
41 #include <io/kblock.h>
42 #include <drv/timer.h>
46 #include "cfg/cfg_sd.h"
48 #define LOG_LEVEL SD_LOG_LEVEL
49 #define LOG_FORMAT SD_LOG_FORMAT
51 #include <cpu/power.h>
53 #include <string.h> /* memset */
57 * read directly from the card.
59 typedef struct CardCSD
61 uint16_t block_len; ///< Length of a block
62 uint32_t block_num; ///< Number of block on the card
63 uint16_t capacity; ///< Card capacity in MB
66 #define SD_IN_IDLE 0x01
67 #define SD_STARTTOKEN 0xFE
69 #define TIMEOUT_NAC 16384
70 #define SD_DEFAULT_BLOCKLEN 512
72 #define SD_BUSY_TIMEOUT ms_to_ticks(200)
74 static bool sd_select(Sd *sd, bool state)
82 ticks_t start = timer_clock();
85 if (kfile_getc(fd) == 0xff)
90 while (timer_clock() - start < SD_BUSY_TIMEOUT);
93 LOG_ERR("sd_select timeout\n");
105 static int16_t sd_waitR1(Sd *sd)
109 for (int i = 0; i < TIMEOUT_NAC; i++)
111 datain = kfile_getc(sd->ch);
113 return (int16_t)datain;
115 LOG_ERR("Timeout waiting R1\n");
119 static int16_t sd_sendCommand(Sd *sd, uint8_t cmd, uint32_t param, uint8_t crc)
122 /* The 7th bit of command must be a 1 */
123 kfile_putc(cmd | 0x40, fd);
126 kfile_putc((param >> 24) & 0xFF, fd);
127 kfile_putc((param >> 16) & 0xFF, fd);
128 kfile_putc((param >> 8) & 0xFF, fd);
129 kfile_putc((param) & 0xFF, fd);
133 return sd_waitR1(sd);
136 static bool sd_getBlock(Sd *sd, void *buf, size_t len)
143 for (int i = 0; i < TIMEOUT_NAC; i++)
145 token = kfile_getc(fd);
148 if (token == SD_STARTTOKEN)
150 if (kfile_read(fd, buf, len) == len)
152 if (kfile_read(fd, &crc, sizeof(crc)) == sizeof(crc))
153 /* check CRC here if needed */
156 LOG_ERR("get_block error getting crc\n");
159 LOG_ERR("get_block len error: %d\n", (int)len);
162 LOG_ERR("get_block token error: %02X\n", token);
168 LOG_ERR("get_block timeout waiting token\n");
172 #define SD_SELECT(sd) \
175 if (!sd_select((sd), true)) \
177 LOG_ERR("%s failed, card busy\n", __func__); \
183 #define SD_SETBLOCKLEN 0x50
185 static int16_t sd_setBlockLen(Sd *sd, uint32_t newlen)
189 sd->r1 = sd_sendCommand(sd, SD_SETBLOCKLEN, newlen, 0);
191 sd_select(sd, false);
195 #define SD_SEND_CSD 0x49
197 static int16_t sd_getCSD(Sd *sd, CardCSD *csd)
201 int16_t r1 = sd_sendCommand(sd, SD_SEND_CSD, 0, 0);
205 LOG_ERR("send_csd failed: %04X\n", sd->r1);
206 sd_select(sd, false);
211 bool res = sd_getBlock(sd, buf, sizeof(buf));
212 sd_select(sd, false);
216 #if LOG_LEVEL >= LOG_LVL_INFO
218 for (int i = 0; i < 16; i++)
219 kprintf("%02X ", buf[i]);
223 uint16_t mult = (1L << ((((buf[9] & 0x03) << 1) | ((buf[10] & 0x80) >> 7)) + 2));
224 uint16_t c_size = (((uint16_t)(buf[6] & 0x03)) << 10) | (((uint16_t)buf[7]) << 2) |
225 (((uint16_t)(buf[8] & 0xC0)) >> 6);
227 csd->block_len = (1L << (buf[5] & 0x0F));
228 csd->block_num = (c_size + 1) * mult;
229 csd->capacity = (csd->block_len * csd->block_num) >> 20; // in MB
231 LOG_INFO("block_len %d bytes, block_num %ld, total capacity %dMB\n", csd->block_len, csd->block_num, csd->capacity);
239 #define SD_READ_SINGLEBLOCK 0x51
241 static size_t sd_readDirect(struct KBlock *b, block_idx_t idx, void *buf, size_t offset, size_t size)
244 LOG_INFO("reading from block %ld, offset %d, size %d\n", idx, offset, size);
246 if (sd->tranfer_len != size)
248 if ((sd->r1 = sd_setBlockLen(sd, size)))
250 LOG_ERR("setBlockLen failed: %04X\n", sd->r1);
253 sd->tranfer_len = size;
258 sd->r1 = sd_sendCommand(sd, SD_READ_SINGLEBLOCK, idx * SD_DEFAULT_BLOCKLEN + offset, 0);
262 LOG_ERR("read single block failed: %04X\n", sd->r1);
263 sd_select(sd, false);
267 bool res = sd_getBlock(sd, buf, size);
268 sd_select(sd, false);
271 LOG_ERR("read single block failed reading data\n");
278 #define SD_WRITE_SINGLEBLOCK 0x58
279 #define SD_DATA_ACCEPTED 0x05
281 static size_t sd_writeDirect(KBlock *b, block_idx_t idx, const void *buf, size_t offset, size_t size)
286 ASSERT(size == SD_DEFAULT_BLOCKLEN);
288 LOG_INFO("writing block %ld\n", idx);
289 if (sd->tranfer_len != SD_DEFAULT_BLOCKLEN)
291 if ((sd->r1 = sd_setBlockLen(sd, SD_DEFAULT_BLOCKLEN)))
293 LOG_ERR("setBlockLen failed: %04X\n", sd->r1);
296 sd->tranfer_len = SD_DEFAULT_BLOCKLEN;
301 sd->r1 = sd_sendCommand(sd, SD_WRITE_SINGLEBLOCK, idx * SD_DEFAULT_BLOCKLEN, 0);
305 LOG_ERR("write single block failed: %04X\n", sd->r1);
306 sd_select(sd, false);
310 kfile_putc(SD_STARTTOKEN, fd);
311 kfile_write(fd, buf, SD_DEFAULT_BLOCKLEN);
316 uint8_t dataresp = kfile_getc(fd);
317 sd_select(sd, false);
319 if ((dataresp & 0x1f) != SD_DATA_ACCEPTED)
321 LOG_ERR("write block %ld failed: %02X\n", idx, dataresp);
325 return SD_DEFAULT_BLOCKLEN;
328 void sd_writeTest(Sd *sd)
330 uint8_t buf[SD_DEFAULT_BLOCKLEN];
331 memset(buf, 0, sizeof(buf));
333 for (block_idx_t i = 0; i < sd->b.blk_cnt; i++)
335 LOG_INFO("writing block %ld: %s\n", i, (sd_writeDirect(&sd->b, i, buf, 0, SD_DEFAULT_BLOCKLEN) == SD_DEFAULT_BLOCKLEN) ? "OK" : "FAIL");
342 uint8_t buf[SD_DEFAULT_BLOCKLEN];
344 if (sd_readDirect(&sd->b, 0, buf, 0, sd->b.blk_size) != sd->b.blk_size)
348 for (int i = 0; i < SD_DEFAULT_BLOCKLEN; i++)
350 kprintf("%02X ", buf[i]);
356 if (sd_writeDirect(&sd->b, 0, buf, 0, SD_DEFAULT_BLOCKLEN) != SD_DEFAULT_BLOCKLEN)
359 memset(buf, 0, sizeof(buf));
360 if (sd_readDirect(&sd->b, 0, buf, 0, sd->b.blk_size) != sd->b.blk_size)
364 for (block_idx_t i = 0; i < sd->b.blk_size; i++)
366 kprintf("%02X ", buf[i]);
375 static int sd_error(KBlock *b)
381 static void sd_clearerr(KBlock *b)
387 static const KBlockVTable sd_unbuffered_vt =
389 .readDirect = sd_readDirect,
390 .writeDirect = sd_writeDirect,
393 .clearerr = sd_clearerr,
396 static const KBlockVTable sd_buffered_vt =
398 .readDirect = sd_readDirect,
399 .writeDirect = sd_writeDirect,
401 .readBuf = kblock_swReadBuf,
402 .writeBuf = kblock_swWriteBuf,
403 .load = kblock_swLoad,
404 .store = kblock_swStore,
407 .clearerr = sd_clearerr,
410 #define SD_GO_IDLE_STATE 0x40
411 #define SD_GO_IDLE_STATE_CRC 0x95
412 #define SD_SEND_OP_COND 0x41
413 #define SD_SEND_OP_COND_CRC 0xF9
415 #define SD_START_DELAY ms_to_ticks(10)
416 #define SD_INIT_TIMEOUT ms_to_ticks(1000)
417 #define SD_IDLE_RETRIES 4
419 static bool sd_blockInit(Sd *sd, KFile *ch)
423 memset(sd, 0, sizeof(*sd));
424 DB(sd->b.priv.type = KBT_SD);
430 /* Wait a few moments for supply voltage to stabilize */
431 timer_delay(SD_START_DELAY);
433 /* Give 80 clk pulses to wake up the card */
434 for (int i = 0; i < 10; i++)
435 kfile_putc(0xff, ch);
438 for (int i = 0; i < SD_IDLE_RETRIES; i++)
441 sd->r1 = sd_sendCommand(sd, SD_GO_IDLE_STATE, 0, SD_GO_IDLE_STATE_CRC);
442 sd_select(sd, false);
444 if (sd->r1 == SD_IN_IDLE)
448 if (sd->r1 != SD_IN_IDLE)
450 LOG_ERR("go_idle_state failed: %04X\n", sd->r1);
454 ticks_t start = timer_clock();
456 /* Wait for card to start */
460 sd->r1 = sd_sendCommand(sd, SD_SEND_OP_COND, 0, SD_SEND_OP_COND_CRC);
461 sd_select(sd, false);
464 while (sd->r1 != 0 && timer_clock() - start < SD_INIT_TIMEOUT);
468 LOG_ERR("send_op_cond failed: %04X\n", sd->r1);
472 sd->r1 = sd_setBlockLen(sd, SD_DEFAULT_BLOCKLEN);
473 sd->tranfer_len = SD_DEFAULT_BLOCKLEN;
477 LOG_ERR("setBlockLen failed: %04X\n", sd->r1);
481 /* Avoid warning for uninitialized csd use (gcc bug?) */
484 sd->r1 = sd_getCSD(sd, &csd);
488 LOG_ERR("getCSD failed: %04X\n", sd->r1);
492 sd->b.blk_size = SD_DEFAULT_BLOCKLEN;
493 sd->b.blk_cnt = csd.block_num * (csd.block_len / SD_DEFAULT_BLOCKLEN);
494 LOG_INFO("blk_size %d, blk_cnt %ld\n", sd->b.blk_size, sd->b.blk_cnt);
496 #if CONFIG_SD_AUTOASSIGN_FAT
497 disk_assignDrive(&sd->b, 0);
503 bool sd_initUnbuf(Sd *sd, KFile *ch)
505 if (sd_blockInit(sd, ch))
507 sd->b.priv.vt = &sd_unbuffered_vt;
514 static uint8_t sd_buf[SD_DEFAULT_BLOCKLEN];
516 bool sd_initBuf(Sd *sd, KFile *ch)
518 if (sd_blockInit(sd, ch))
520 sd->b.priv.buf = sd_buf;
521 sd->b.priv.flags |= KB_BUFFERED | KB_PARTIAL_WRITE;
522 sd->b.priv.vt = &sd_buffered_vt;
523 sd->b.priv.vt->load(&sd->b, 0);