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>
39 #include "cfg/cfg_sd.h"
42 #include <io/kblock.h>
45 #include <drv/timer.h>
49 #define LOG_LEVEL SD_LOG_LEVEL
50 #define LOG_FORMAT SD_LOG_FORMAT
52 #include <cpu/power.h>
54 #include <string.h> /* memset */
59 uint16_t tranfer_len; ///< Lenght for the read/write commands, cached in order to increase speed.
63 #define SD_IN_IDLE 0x01
64 #define SD_STARTTOKEN 0xFE
66 #define TIMEOUT_NAC 16384
67 #define SD_BUSY_TIMEOUT ms_to_ticks(200)
69 static bool sd_select(Sd *sd, bool state)
77 ticks_t start = timer_clock();
80 if (kfile_getc(fd) == 0xff)
85 while (timer_clock() - start < SD_BUSY_TIMEOUT);
88 LOG_ERR("sd_select timeout\n");
100 static int16_t sd_waitR1(Sd *sd)
104 for (int i = 0; i < TIMEOUT_NAC; i++)
106 datain = kfile_getc(sd->ch);
108 return (int16_t)datain;
110 LOG_ERR("Timeout waiting R1\n");
114 static int16_t sd_sendCommand(Sd *sd, uint8_t cmd, uint32_t param, uint8_t crc)
117 /* The 7th bit of command must be a 1 */
118 kfile_putc(cmd | 0x40, fd);
121 kfile_putc((param >> 24) & 0xFF, fd);
122 kfile_putc((param >> 16) & 0xFF, fd);
123 kfile_putc((param >> 8) & 0xFF, fd);
124 kfile_putc((param) & 0xFF, fd);
128 return sd_waitR1(sd);
131 static bool sd_getBlock(Sd *sd, void *buf, size_t len)
138 for (int i = 0; i < TIMEOUT_NAC; i++)
140 token = kfile_getc(fd);
143 if (token == SD_STARTTOKEN)
145 if (kfile_read(fd, buf, len) == len)
147 if (kfile_read(fd, &crc, sizeof(crc)) == sizeof(crc))
148 /* check CRC here if needed */
151 LOG_ERR("get_block error getting crc\n");
154 LOG_ERR("get_block len error: %d\n", (int)len);
157 LOG_ERR("get_block token error: %02X\n", token);
163 LOG_ERR("get_block timeout waiting token\n");
167 #define SD_SELECT(sd) \
170 if (!sd_select((sd), true)) \
172 LOG_ERR("%s failed, card busy\n", __func__); \
178 #define SD_SETBLOCKLEN 0x50
180 static int16_t sd_setBlockLen(Sd *sd, uint32_t newlen)
184 sd->status = sd_sendCommand(sd, SD_SETBLOCKLEN, newlen, 0);
186 sd_select(sd, false);
190 #define SD_SEND_CSD 0x49
192 static int16_t sd_getCSD(Sd *sd, SdCSD *csd)
196 int16_t r1 = sd_sendCommand(sd, SD_SEND_CSD, 0, 0);
200 LOG_ERR("send_csd failed: %08lX\n", sd->status);
201 sd_select(sd, false);
206 bool res = sd_getBlock(sd, buf, sizeof(buf));
207 sd_select(sd, false);
211 #if LOG_LEVEL >= LOG_LVL_INFO
213 for (int i = 0; i < 16; i++)
214 kprintf("%02X ", buf[i]);
218 uint16_t mult = (1L << ((((buf[9] & 0x03) << 1) | ((buf[10] & 0x80) >> 7)) + 2));
219 uint16_t c_size = (((uint16_t)(buf[6] & 0x03)) << 10) | (((uint16_t)buf[7]) << 2) |
220 (((uint16_t)(buf[8] & 0xC0)) >> 6);
222 csd->block_len = (1L << (buf[5] & 0x0F));
223 csd->block_num = (c_size + 1) * mult;
224 csd->capacity = (csd->block_len * csd->block_num) >> 20; // in MB
226 LOG_INFO("block_len %d bytes, block_num %ld, total capacity %dMB\n", csd->block_len, csd->block_num, csd->capacity);
233 #define SD_START_DELAY 10
234 #define SD_INIT_TIMEOUT ms_to_ticks(2000)
235 #define SD_IDLE_RETRIES 4
236 #define SD_READ_SINGLEBLOCK 0x51
238 static size_t sd_SpiReadDirect(struct KBlock *b, block_idx_t idx, void *buf, size_t offset, size_t size)
242 LOG_INFO("reading from block %ld, offset %d, size %d\n", idx, offset, size);
244 if (sd->hw->tranfer_len != size)
246 if ((sd->status = sd_setBlockLen(sd, size)))
248 LOG_ERR("setBlockLen failed: %08lX\n", sd->status);
251 sd->hw->tranfer_len = size;
256 sd->status = sd_sendCommand(sd, SD_READ_SINGLEBLOCK, idx * SD_DEFAULT_BLOCKLEN + offset, 0);
260 LOG_ERR("read single block failed: %08lX\n", sd->status);
261 sd_select(sd, false);
265 bool res = sd_getBlock(sd, buf, size);
266 sd_select(sd, false);
269 LOG_ERR("read single block failed reading data\n");
276 #define SD_WRITE_SINGLEBLOCK 0x58
277 #define SD_DATA_ACCEPTED 0x05
279 static size_t sd_SpiWriteDirect(KBlock *b, block_idx_t idx, const void *buf, size_t offset, size_t size)
284 ASSERT(size == SD_DEFAULT_BLOCKLEN);
286 LOG_INFO("writing block %ld\n", idx);
287 if (sd->hw->tranfer_len != SD_DEFAULT_BLOCKLEN)
289 if ((sd->status = sd_setBlockLen(sd, SD_DEFAULT_BLOCKLEN)))
291 LOG_ERR("setBlockLen failed: %08lX\n", sd->status);
294 sd->hw->tranfer_len = SD_DEFAULT_BLOCKLEN;
299 sd->status = sd_sendCommand(sd, SD_WRITE_SINGLEBLOCK, idx * SD_DEFAULT_BLOCKLEN, 0);
303 LOG_ERR("write single block failed: %08lX\n", sd->status);
304 sd_select(sd, false);
308 kfile_putc(SD_STARTTOKEN, fd);
309 kfile_write(fd, buf, SD_DEFAULT_BLOCKLEN);
314 uint8_t dataresp = kfile_getc(fd);
315 sd_select(sd, false);
317 if ((dataresp & 0x1f) != SD_DATA_ACCEPTED)
319 LOG_ERR("write block %ld failed: %02X\n", idx, dataresp);
323 return SD_DEFAULT_BLOCKLEN;
326 static int sd_SpiError(KBlock *b)
332 static void sd_SpiClearerr(KBlock *b)
340 #define SD_GO_IDLE_STATE 0x40
341 #define SD_GO_IDLE_STATE_CRC 0x95
342 #define SD_SEND_OP_COND 0x41
343 #define SD_SEND_OP_COND_CRC 0xF9
345 static bool sd_blockInit(Sd *sd, KFile *ch)
349 memset(sd, 0, sizeof(*sd));
350 DB(sd->b.priv.type = KBT_SD);
357 /* Wait a few moments for supply voltage to stabilize */
358 timer_delay(SD_START_DELAY);
360 /* Give 80 clk pulses to wake up the card */
361 for (int i = 0; i < 10; i++)
362 kfile_putc(0xff, ch);
365 for (int i = 0; i < SD_IDLE_RETRIES; i++)
368 sd->status = sd_sendCommand(sd, SD_GO_IDLE_STATE, 0, SD_GO_IDLE_STATE_CRC);
369 sd_select(sd, false);
371 if (sd->status == SD_IN_IDLE)
375 if (sd->status != SD_IN_IDLE)
377 LOG_ERR("go_idle_state failed: %08lX\n", sd->status);
381 ticks_t start = timer_clock();
383 /* Wait for card to start */
387 sd->status = sd_sendCommand(sd, SD_SEND_OP_COND, 0, SD_SEND_OP_COND_CRC);
388 sd_select(sd, false);
391 while (sd->status != 0 && timer_clock() - start < SD_INIT_TIMEOUT);
395 LOG_ERR("send_op_cond failed: %08lX\n", sd->status);
399 sd->status = sd_setBlockLen(sd, SD_DEFAULT_BLOCKLEN);
400 sd->hw->tranfer_len = SD_DEFAULT_BLOCKLEN;
404 LOG_ERR("setBlockLen failed: %08lX\n", sd->status);
408 /* Avoid warning for uninitialized csd use (gcc bug?) */
411 sd->status = sd_getCSD(sd, &csd);
415 LOG_ERR("getCSD failed: %08lX\n", sd->status);
419 sd->b.blk_size = SD_DEFAULT_BLOCKLEN;
420 sd->b.blk_cnt = csd.block_num * (csd.block_len / SD_DEFAULT_BLOCKLEN);
421 LOG_INFO("blk_size %d, blk_cnt %ld\n", sd->b.blk_size, sd->b.blk_cnt);
423 #if CONFIG_SD_AUTOASSIGN_FAT
424 disk_assignDrive(&sd->b, 0);
430 static const KBlockVTable sd_unbuffered_vt =
432 .readDirect = sd_SpiReadDirect,
433 .writeDirect = sd_SpiWriteDirect,
435 .error = sd_SpiError,
436 .clearerr = sd_SpiClearerr,
439 static const KBlockVTable sd_buffered_vt =
441 .readDirect = sd_SpiReadDirect,
442 .writeDirect = sd_SpiWriteDirect,
444 .readBuf = kblock_swReadBuf,
445 .writeBuf = kblock_swWriteBuf,
446 .load = kblock_swLoad,
447 .store = kblock_swStore,
449 .error = sd_SpiError,
450 .clearerr = sd_SpiClearerr,
453 struct SdHardware sd_spi_hw;
455 bool sd_spi_initUnbuf(Sd *sd, KFile *ch)
457 if (sd_blockInit(sd, ch))
459 sd->b.priv.vt = &sd_unbuffered_vt;
467 static uint8_t sd_buf[SD_DEFAULT_BLOCKLEN];
469 bool sd_spi_initBuf(Sd *sd, KFile *ch)
471 if (sd_blockInit(sd, ch))
473 sd->b.priv.buf = sd_buf;
474 sd->b.priv.flags |= KB_BUFFERED | KB_PARTIAL_WRITE;
475 sd->b.priv.vt = &sd_buffered_vt;
476 sd->b.priv.vt->load(&sd->b, 0);