HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
mmc.c
Go to the documentation of this file.
1 
9 /*-----------------------------------------------------------------------*/
10 /* MMCv3/SDv1/SDv2 Controls via AVR SPI module */
11 /*-----------------------------------------------------------------------*/
12 /*
13 / Copyright (C) 2016, ChaN, all right reserved.
14 /
15 / * This software is a free software and there is NO WARRANTY.
16 / * No restriction on use. You can use, modify and redistribute it for
17 / any purpose as you like UNDER YOUR RESPONSIBILITY.
18 / * Redistributions of source code must retain the above copyright notice.
19 /
20 /-------------------------------------------------------------------------*/
21 
22 /* mmc.c */
23 #include "user_config.h"
24 #include "mmc_hal.h"
25 
26 #ifdef AVR
27 #include <stdlib.h>
28 #endif
29 
30 #include "mathio.h"
31 
32 #ifdef ESP8266
33 #include "hspi.h"
34 #endif
35 
36 #include "fatfs.h"
37 
38 /* Peripheral controls (Platform dependent) */
39 #define CS_LOW() mmc_spi_begin() /* Set MMC_CS = low */
40 #define CS_HIGH() mmc_spi_end() /* Set MMC_CS = high */
41 
42 #define MMC_CD mmc_ins_status() /* Test if card detected. yes:true, no:false, default:true */
43 #define MMC_WP mmc_wp_status() /* Test if write protected. yes:true, no:false, default:false */
44 #define FCLK_SLOW() mmc_slow() /* Set SPI slow clock (100-400kHz) */
45 #define FCLK_FAST() mmc_fast() /* Set SPI fast clock (20MHz max) */
46 
47 /*--------------------------------------------------------------------------
48 
49  Module Private Functions
50 
51 ---------------------------------------------------------------------------*/
52 
53 /* Definitions for MMC/SDC command */
54 #define CMD0 (0) /* GO_IDLE_STATE */
55 #define CMD1 (1) /* SEND_OP_COND (MMC) */
56 #define ACMD41 (0x80+41) /* SEND_OP_COND (SDC) */
57 #define CMD8 (8) /* SEND_IF_COND */
58 #define CMD9 (9) /* SEND_CSD */
59 #define CMD10 (10) /* SEND_CID */
60 #define CMD12 (12) /* STOP_TRANSMISSION */
61 #define ACMD13 (0x80+13) /* SD_STATUS (SDC) */
62 #define CMD16 (16) /* SET_BLOCKLEN */
63 #define CMD17 (17) /* READ_SINGLE_BLOCK */
64 #define CMD18 (18) /* READ_MULTIPLE_BLOCK */
65 #define CMD23 (23) /* SET_BLOCK_COUNT (MMC) */
66 #define ACMD23 (0x80+23) /* SET_WR_BLK_ERASE_COUNT (SDC) */
67 #define CMD24 (24) /* WRITE_BLOCK */
68 #define CMD25 (25) /* WRITE_MULTIPLE_BLOCK */
69 #define CMD32 (32) /* ERASE_ER_BLK_START */
70 #define CMD33 (33) /* ERASE_ER_BLK_END */
71 #define CMD38 (38) /* ERASE */
72 #define CMD48 (48) /* READ_EXTR_SINGLE */
73 #define CMD49 (49) /* WRITE_EXTR_SINGLE */
74 #define CMD55 (55) /* APP_CMD */
75 #define CMD58 (58) /* READ_OCR */
76 
77 volatile
78 DSTATUS Stat = STA_NOINIT; /* <Disk status */
79 
80 static volatile
81 BYTE Timer1, Timer2; /* 100Hz decrement timer */
82 
83 static
84 BYTE CardType; /*< Card type flags */
85 
86 /*-----------------------------------------------------------------------*/
87 /* Power Control (Platform dependent) */
88 /*-----------------------------------------------------------------------*/
89 /* When the target system does not support socket power control, there */
90 /* is nothing to do in these functions and chk_power always returns 1. */
91 
94 static
95 void power_on (void)
96 {
97 /* Turn socket power on and wait for 10ms+ (nothing to do if no power controls) */
98 /* Configure MOSI/MISO/SCLK/CS pins */
99 /* Enable SPI module in SPI mode 0 */
100  mmc_power_on();
101 }
102 
103 
106 MEMSPACE
107 static
108 void power_off (void)
109 {
110 /* Disable SPI function */
111 /* De-configure MOSI/MISO/SCLK/CS pins (set hi-z) */
112 /* Turn socket power off (nothing to do if no power controls) */
113  mmc_power_off();
114 }
115 
116 
117 /*-----------------------------------------------------------------------*/
118 /* Transmit/Receive data from/to MMC via SPI (Platform dependent) */
119 /*-----------------------------------------------------------------------*/
120 
124 static
125 BYTE xchg_spi ( /* Returns received data */
126 BYTE dat /* Data to be sent */
127 )
128 {
129  dat = mmc_spi_TXRX(dat);
130  return dat;
131 }
132 
133 
138 static
140 BYTE *p, /* Data read buffer */
141 UINT cnt /* Size of data block */
142 )
143 {
144  mmc_spi_RX_buffer((uint8_t *)p, cnt);
145 }
146 
147 
152 static
154 const BYTE *p, /* Data block to be sent */
155 UINT cnt /* Size of data block */
156 )
157 {
158  mmc_spi_TX_buffer((uint8_t *)p, cnt);
159 }
160 
161 
162 // =============================================
167 MEMSPACE
169 UINT wt /*< Timeout [ms] */
170 )
171 {
172  BYTE d;
173  mmc_set_ms_timeout(wt);
174  do
175  d = xchg_spi(0xFF);
176  while (d != 0xFF && !mmc_test_timeout());
177 
178  return (d == 0xFF) ? 1 : 0;
179 }
180 
181 
184 MEMSPACE
185 static
186 void deselect (void)
187 {
188  CS_HIGH();
189  xchg_spi(0xFF); /*< Dummy clock (force DO hi-z for multiple slave SPI) */
190  xchg_spi(0xFF); /*< Dummy clock (force DO hi-z for multiple slave SPI) */
191 }
192 
193 
197 MEMSPACE
198 static
199 int select (void)
200 {
201  CS_LOW();
202  xchg_spi(0xFF); /* Dummy clock (force DO enabled) */
203 
204  if (wait_ready(1000))
205  return 1; /* OK */
206 
207  printf("select failed!\n");
208 
209  deselect();
210  return 0; /* Timeout */
211 }
212 
213 
219 MEMSPACE
220 static
222 BYTE *buff, /*< Data buffer to store received data */
223 UINT btr /*< Byte count (must be multiple of 4) */
224 )
225 {
226  BYTE token;
227 
228  mmc_set_ms_timeout(1000);
229  do /* Wait for data packet in timeout of 400ms */
230  {
231  token = xchg_spi(0xFF);
232  } while ((token == 0xFF) && !mmc_test_timeout());
233  if (token != 0xFE) return 0; /* If not valid data token, retutn with error */
234 
235  rcvr_spi_multi(buff, btr); /* Receive the data block into buffer */
236  xchg_spi(0xFF); /* Discard CRC */
237  xchg_spi(0xFF);
238 
239  return 1; /* Return with success */
240 }
241 
242 
248 #if _USE_WRITE
249 MEMSPACE
250 static
251 int xmit_datablock (
252 const BYTE *buff, /*< 512 byte data block to be transmitted */
253 BYTE token /*< Data/Stop token */
254 )
255 {
256  BYTE resp;
257 
258  if (!wait_ready(1000)) return 0;
259 
260  xchg_spi(token); /* Xmit data token */
261  if (token != 0xFD) /* Is data token */
262  {
263  xmit_spi_multi(buff, 512); /* Xmit the data block to the MMC */
264 
265  xchg_spi(0xFF); /* CRC (Dummy) */
266  xchg_spi(0xFF);
267  resp = xchg_spi(0xFF); /* Reveive data response */
268  if ((resp & 0x1F) != 0x05) /* If not accepted, return with error */
269  return 0;
270  }
271 
272  return 1;
273 }
274 #endif // ifdef _USE_WRITE
275 
281 MEMSPACE
282 static
284 BYTE cmd, /*< Command index */
285 DWORD arg /*< Argument */
286 )
287 {
288  BYTE n, res;
289 
290  if (cmd & 0x80) /* ACMD<n> is the command sequense of CMD55-CMD<n> */
291  {
292  cmd &= 0x7F;
293  res = send_cmd(CMD55, 0);
294  if (res > 1) return res;
295  }
296 
297 /* Select the card and wait for ready except to stop multiple block read */
298  if (cmd != CMD12)
299  {
300  deselect();
301  if (!select()) return 0xFF;
302  }
303 
304 /* Send command packet */
305  xchg_spi(0x40 | cmd); /* Start + Command index */
306  xchg_spi((BYTE)(arg >> 24)); /* Argument[31..24] */
307  xchg_spi((BYTE)(arg >> 16)); /* Argument[23..16] */
308  xchg_spi((BYTE)(arg >> 8)); /* Argument[15..8] */
309  xchg_spi((BYTE)arg); /* Argument[7..0] */
310  n = 0x01; /* Dummy CRC + Stop */
311  if (cmd == CMD0) n = 0x95; /* Valid CRC for CMD0(0) + Stop */
312  if (cmd == CMD8) n = 0x87; /* Valid CRC for CMD8(0x1AA) Stop */
313 
314  xchg_spi(n);
315 
316 /* Receive command response */
317  if (cmd == CMD12) xchg_spi(0xFF); /* Skip a stuff byte when stop reading */
318  n = 10; /* Wait for a valid response in timeout of 10 attempts */
319  do
320  {
321  res = xchg_spi(0xFF);
322  }
323  while ((res & 0x80) && --n);
324 
325  return res; /* Return with the response value */
326 }
327 
328 
330 
333 MEMSPACE
335 {
336  BYTE n, cmd, ty, ocr[4];
337 
338  power_off(); /* Turn off the socket power to reset the card */
339  delayms(100); /* Wait for 100ms */
340 
341  if (Stat & STA_NODISK) return Stat; /* No card in the socket? */
342  power_on(); /* Turn on the socket power */
343 
344  FCLK_SLOW();
345 
346  for (n = 10; n; n--) xchg_spi(0xFF); /* 80 dummy clocks */
347 
348  ty = 0;
349  if (send_cmd(CMD0, 0) == 1) /* Enter Idle state */
350  {
351  mmc_set_ms_timeout(2000); /* Initialization timeout of 1000 msec */
352  if (send_cmd(CMD8, 0x1AA) == 1) /* SDv2? */
353  {
354  for (n = 0; n < 4; n++)
355  ocr[n] = xchg_spi(0xFF); /* Get trailing return value of R7 resp */
356  if (ocr[2] == 0x01 && ocr[3] == 0xAA) /* The card can work at vdd range of 2.7-3.6V */
357  {
358 /* Wait for leaving idle state (ACMD41 with HCS bit) */
359  while (!mmc_test_timeout() && send_cmd(ACMD41, 1UL << 30))
360  ;
361 /* Check CCS bit in the OCR */
362  if (!mmc_test_timeout() && send_cmd(CMD58, 0) == 0)
363  {
364  for (n = 0; n < 4; n++) ocr[n] = xchg_spi(0xFF);
365 /* Check if the card is SDv2 */
366  ty = (ocr[0] & 0x40) ? CT_SD2 | CT_BLOCK : CT_SD2;
367  }
368  }
369  }
370  else
371  { /* SDv1 or MMCv3 */
372  mmc_set_ms_timeout(2000); /* Initialization timeout of 2000 msec */
373  if (send_cmd(ACMD41, 0) <= 1)
374  {
375  ty = CT_SD1; cmd = ACMD41; /* SDv1 */
376  }
377  else
378  {
379  ty = CT_MMC; cmd = CMD1; /* MMCv3 */
380  }
381 /* Wait for leaving idle state */
382  while (!mmc_test_timeout() && send_cmd(cmd, 0))
383  ;
384 /* Set R/W block length to 512 */
385  if (mmc_test_timeout() || send_cmd(CMD16, 512) != 0)
386  ty = 0;
387  }
388  }
389 
390  CardType = ty;
391  deselect();
392 
393  if (ty) /* Initialization succeded */
394  {
395  Stat &= ~STA_NOINIT; /* Clear STA_NOINIT */
396  FCLK_FAST();
397  } /* Initialization failed */
398  else
399  {
400  power_off();
401  }
402 
403  return Stat;
404 }
405 
406 
410 MEMSPACE
412 {
413  return Stat;
414 }
415 
416 
423 MEMSPACE
425 BYTE *buff, /*< Pointer to the data buffer to store read data */
426 DWORD sector, /*< Start sector number (LBA) */
427 UINT count /*< Sector count (1..128) */
428 )
429 {
430  BYTE cmd;
431 
432  if (!count)
433  {
434  deselect();
435  return RES_PARERR;
436  }
437 
438  if( Stat )
439  set_error(1);
440 
441  if (Stat & STA_NOINIT)
442  {
443  deselect();
444  return RES_NOTRDY;
445  }
446  if (Stat & STA_NODISK)
447  {
448  deselect();
449  return RES_NOTRDY;
450  }
451  GPIO_PIN_HI(LED1);
452 
453  if (!(CardType & CT_BLOCK)) sector *= 512; /* Convert to byte address if needed */
454 
455  cmd = count > 1 ? CMD18 : CMD17; /* READ_MULTIPLE_BLOCK : READ_SINGLE_BLOCK */
456  if (send_cmd(cmd, sector) == 0)
457  {
458  do
459  {
460  if (!rcvr_datablock(buff, 512))
461  break;
462  buff += 512;
463  } while (--count);
464  if (cmd == CMD18) send_cmd(CMD12, 0); /* STOP_TRANSMISSION */
465  }
466  deselect();
467  GPIO_PIN_LOW(LED1);
468 
469  return count ? RES_ERROR : RES_OK;
470 }
471 
472 
479 #if _USE_WRITE
480 MEMSPACE
482 const BYTE *buff, /*< Pointer to the data to be written */
483 DWORD sector, /*< Start sector number (LBA) */
484 UINT count /* Sector count (1..128) */
485 )
486 {
487  if (!count)
488  {
489  deselect();
490  return RES_PARERR;
491  }
492 
493  if( Stat )
494  set_error(1);
495 
496  if (Stat & STA_NOINIT)
497  {
498  deselect();
499  return RES_NOTRDY;
500  }
501  if (Stat & STA_NODISK)
502  {
503  deselect();
504  return RES_NOTRDY;
505  }
506  if (Stat & STA_PROTECT)
507  {
508  deselect();
509  return RES_WRPRT;
510  }
511 
512  GPIO_PIN_HI(LED1);
513 
514  if (!(CardType & CT_BLOCK)) sector *= 512; /* Convert to byte address if needed */
515 
516  if (count == 1) /* Single block write */
517  {
518  if ((send_cmd(CMD24, sector) == 0) /* WRITE_BLOCK */
519  && xmit_datablock(buff, 0xFE))
520  count = 0;
521  }
522  else /* Multiple block write */
523  {
524  if (CardType & CT_SDC) send_cmd(ACMD23, count);
525  if (send_cmd(CMD25, sector) == 0) /* WRITE_MULTIPLE_BLOCK */
526  {
527  do
528  {
529  if (!xmit_datablock(buff, 0xFC)) break;
530  buff += 512;
531  } while (--count);
532  if (!xmit_datablock(0, 0xFD)) /* STOP_TRAN token */
533  count = 1;
534  }
535  }
536  deselect();
537  GPIO_PIN_LOW(LED1);
538 
539  return count ? RES_ERROR : RES_OK;
540 }
541 #endif
542 
547 #if _USE_IOCTL
548 MEMSPACE
550 BYTE cmd, /* Control code */
551 void *buff /* Buffer to send/receive control data */
552 )
553 {
554  DRESULT res = RES_NOTRDY;
555  BYTE n, csd[16], *ptr = buff;
556  DWORD csize;
557 #if FF_USE_TRIM
558  LBA_t *range;
559  DWORD st, ed;
560 #endif
561 #if _USE_ISDIO
562  SDIO_CTRL *sdi;
563  BYTE rc, *bp;
564  UINT dc;
565 #endif
566 
567  if (Stat & STA_NOINIT)
568  return RES_NOTRDY;
569 
570  if (Stat & STA_NODISK)
571  {
572  deselect();
573  return RES_NOTRDY;
574  }
575 
576  res = RES_ERROR;
577  switch (cmd)
578  {
579  case CTRL_SYNC : /* Make sure that no pending write process. Do not remove this or written sector might not left updated. */
580  if (select()) res = RES_OK;
581  deselect();
582  break;
583 
584  case GET_SECTOR_COUNT : /* Get number of sectors on the disk (DWORD) */
585  if ((send_cmd(CMD9, 0) == 0) && rcvr_datablock(csd, 16))
586  {
587  if ((csd[0] >> 6) == 1) /* SDC ver 2.00 */
588  {
589  csize = csd[9] + ((WORD)csd[8] << 8) + ((DWORD)(csd[7] & 63) << 16) + 1;
590  *(DWORD*)buff = csize << 10;
591  } /* SDC ver 1.XX or MMC*/
592  else
593  {
594  n = (csd[5] & 15) + ((csd[10] & 128) >> 7) + ((csd[9] & 3) << 1) + 2;
595  csize = (csd[8] >> 6) + ((WORD)csd[7] << 2) + ((WORD)(csd[6] & 3) << 10) + 1;
596  *(DWORD*)buff = csize << (n - 9);
597  }
598  res = RES_OK;
599  }
600  deselect();
601  break;
602 
603  case GET_BLOCK_SIZE : /* Get erase block size in unit of sector (DWORD) */
604  if (CardType & CT_SD2) /* SDv2? */
605  {
606  if (send_cmd(ACMD13, 0) == 0) /* Read SD status */
607  {
608  xchg_spi(0xFF);
609  if (rcvr_datablock(csd, 16)) /* Read partial block */
610  {
611 /* Purge trailing data */
612  for (n = 64 - 16; n; n--) xchg_spi(0xFF);
613  *(DWORD*)buff = 16UL << (csd[10] >> 4);
614  res = RES_OK;
615  }
616  }
617  } /* SDv1 or MMCv3 */
618  else
619  {
620 /* Read CSD */
621  if ((send_cmd(CMD9, 0) == 0) && rcvr_datablock(csd, 16))
622  {
623  if (CardType & CT_SD1) /* SDv1 */
624  {
625  *(DWORD*)buff = (((csd[10] & 63) << 1) + ((WORD)(csd[11] & 128) >> 7) + 1) << ((csd[13] >> 6) - 1);
626  } /* MMCv3 */
627  else
628  {
629  *(DWORD*)buff = ((WORD)((csd[10] & 124) >> 2) + 1) * (((csd[11] & 3) << 3) + ((csd[11] & 224) >> 5) + 1);
630  }
631  res = RES_OK;
632  }
633  }
634  deselect();
635  break;
636 
637 #if FF_USE_TRIM
638  case CTRL_TRIM: /* Erase a block of sectors (used when _USE_TRIM in ffconf.h is 1) */
639  if (!(CardType & CT_SDC)) break; /* Check if the card is SDC */
640 /* Get CSD */
641  if (mmc_disk_ioctl(MMC_GET_CSD, csd)) break;
642 /* Check if sector erase can be applied to the card */
643  if (!(csd[0] >> 6) && !(csd[10] & 0x40)) break;
644 /* Load sector block */
645  range = buff; st = (DWORD)range[0]; ed = (DWORD)range[1];
646  if (!(CardType & CT_BLOCK))
647  {
648  st *= 512; ed *= 512;
649  }
650 /* Erase sector block */
651  if (send_cmd(CMD32, st) == 0 && send_cmd(CMD33, ed) == 0 && send_cmd(CMD38, 0) == 0 && wait_ready(60000))
652  {
653  res = RES_OK; /* FatFs does not check result of this command */
654  }
655 //MG
656  deselect();
657  break;
658 #endif
659 
660 /* Following commands are never used by FatFs module */
661 
662  case MMC_GET_TYPE : /* Get card type flags (1 byte) */
663  *ptr = CardType;
664  res = RES_OK;
665  break;
666 
667  case MMC_GET_CSD : /* Receive CSD as a data block (16 bytes) */
668 /* READ_CSD */
669  if (send_cmd(CMD9, 0) == 0 && rcvr_datablock(ptr, 16))
670  res = RES_OK;
671  deselect();
672  break;
673 
674  case MMC_GET_CID : /* Receive CID as a data block (16 bytes) */
675 /* READ_CID */
676  if (send_cmd(CMD10, 0) == 0 && rcvr_datablock(ptr, 16))
677 
678  res = RES_OK;
679  deselect();
680  break;
681 
682  case MMC_GET_OCR : /* Receive OCR as an R3 resp (4 bytes) */
683  if (send_cmd(CMD58, 0) == 0) /* READ_OCR */
684  {
685  for (n = 4; n; n--) *ptr++ = xchg_spi(0xFF);
686  res = RES_OK;
687  }
688  deselect();
689  break;
690 
691  case MMC_GET_SDSTAT : /* Receive SD statsu as a data block (64 bytes) */
692  if (send_cmd(ACMD13, 0) == 0) /* SD_STATUS */
693  {
694  xchg_spi(0xFF);
695  if (rcvr_datablock(ptr, 64)) res = RES_OK;
696  }
697  deselect();
698  break;
699 
700  case CTRL_POWER_OFF : /* Power off */
701  power_off();
702  Stat |= STA_NOINIT;
703  res = RES_OK;
704  break;
705 #if _USE_ISDIO
706  case ISDIO_READ:
707  sdi = buff;
708  if (send_cmd(CMD48, 0x80000000 | (DWORD)sdi->func << 28 | (DWORD)sdi->addr << 9 | ((sdi->ndata - 1) & 0x1FF)) == 0)
709  {
710  mmc_set_ms_timeout(1000);
711  while( (rc = xchg_spi(0xFF)) == 0xFF && !mmc_test_timeout() )
712  ;
713  if (rc == 0xFE)
714  {
715  for (bp = sdi->data, dc = sdi->ndata; dc; dc--) *bp++ = xchg_spi(0xFF);
716  for (dc = 514 - sdi->ndata; dc; dc--) xchg_spi(0xFF);
717  res = RES_OK;
718  }
719  }
720  deselect();
721  break;
722 
723  case ISDIO_WRITE:
724  sdi = buff;
725  if (send_cmd(CMD49, 0x80000000 | (DWORD)sdi->func << 28 | (DWORD)sdi->addr << 9 | ((sdi->ndata - 1) & 0x1FF)) == 0)
726  {
727  xchg_spi(0xFF); xchg_spi(0xFE);
728  for (bp = sdi->data, dc = sdi->ndata; dc; dc--) xchg_spi(*bp++);
729  for (dc = 514 - sdi->ndata; dc; dc--) xchg_spi(0xFF);
730  if ((xchg_spi(0xFF) & 0x1F) == 0x05) res = RES_OK;
731  }
732  deselect();
733  break;
734 
735  case ISDIO_MRITE:
736  sdi = buff;
737  if (send_cmd(CMD49, 0x84000000 | (DWORD)sdi->func << 28 | (DWORD)sdi->addr << 9 | sdi->ndata >> 8) == 0)
738  {
739  xchg_spi(0xFF); xchg_spi(0xFE);
740  xchg_spi(sdi->ndata);
741  for (dc = 513; dc; dc--) xchg_spi(0xFF);
742  if ((xchg_spi(0xFF) & 0x1F) == 0x05) res = RES_OK;
743  }
744  deselect();
745  break;
746 #endif
747  default:
748  res = RES_PARERR;
749  }
750 
751  return res;
752 }
753 #endif
754 
755 /*-----------------------------------------------------------------------*/
756 /* Device Timer Interrupt Procedure */
757 /*-----------------------------------------------------------------------*/
758 /* This function must be called in period of 10ms */
759 
762 {
763  BYTE n;
764  BYTE s;
765 
766  n = Timer1; /* 100Hz decrement timer */
767  if (n) Timer1 = --n;
768  n = Timer2;
769  if (n) Timer2 = --n;
770 
771  s = Stat;
772 
773 #if DETECT_WP
774  if (MMC_WP) /* Write protected */
775  s |= STA_PROTECT;
776  else /* Write enabled */
777  s &= ~STA_PROTECT;
778 #endif
779 
780  if (MMC_CD) /* Card inserted */
781  {
782  s &= ~STA_NODISK;
783  }
784  else /* Socket empty */
785  {
786  s |= (STA_NODISK | STA_NOINIT);
787  set_error(1);
788  }
789 
790  Stat = s; /* Update MMC status */
791 }
fatfs.h
Timer1
static volatile BYTE Timer1
Definition: mmc.c:81
CTRL_TRIM
#define CTRL_TRIM
Definition: diskio.h:71
CTRL_POWER_OFF
#define CTRL_POWER_OFF
Definition: diskio.h:76
CMD0
#define CMD0
Definition: mmc.c:54
power_on
static MEMSPACE void power_on(void)
Definition: mmc.c:95
RES_WRPRT
@ RES_WRPRT
Definition: diskio.h:33
printf
MEMSPACE int printf(const char *format,...)
CMD55
#define CMD55
Definition: mmc.c:74
CMD48
#define CMD48
Definition: mmc.c:72
DSTATUS
BYTE DSTATUS
Definition: diskio.h:26
deselect
static MEMSPACE void deselect(void)
Deselect the card and release SPI bus.
Definition: mmc.c:186
RES_ERROR
@ RES_ERROR
Definition: diskio.h:32
mmc_disk_initialize
MEMSPACE DSTATUS mmc_disk_initialize(void)
Public Functions.
Definition: mmc.c:334
MEMSPACE
#define MEMSPACE
Definition: user_config.h:17
FCLK_FAST
#define FCLK_FAST()
Definition: mmc.c:45
DRESULT
DRESULT
Definition: diskio.h:29
mmc_disk_read
MEMSPACE DRESULT mmc_disk_read(BYTE *buff, DWORD sector, UINT count)
Read Sector(s)
Definition: mmc.c:424
BYTE
unsigned char BYTE
Definition: ff.h:54
mmc_disk_write
MEMSPACE DRESULT mmc_disk_write(const BYTE *buff, DWORD sector, UINT count)
CMD12
#define CMD12
Definition: mmc.c:60
Timer2
static volatile BYTE Timer2
Definition: mmc.c:81
mmc_hal.h
SDIO_CTRL::addr
DWORD addr
Definition: diskio.h:43
ISDIO_MRITE
#define ISDIO_MRITE
Definition: diskio.h:90
SDIO_CTRL::func
BYTE func
Definition: diskio.h:41
xmit_spi_multi
static void xmit_spi_multi(const BYTE *p, UINT cnt)
Send a data block fast.
Definition: mmc.c:153
GET_BLOCK_SIZE
#define GET_BLOCK_SIZE
Definition: diskio.h:70
MMC_CD
#define MMC_CD
Definition: mmc.c:42
MMC_GET_CSD
#define MMC_GET_CSD
Definition: diskio.h:84
ISDIO_WRITE
#define ISDIO_WRITE
Definition: diskio.h:89
CT_SD2
#define CT_SD2
Definition: diskio.h:100
mmc_disk_timerproc
void mmc_disk_timerproc(void)
Write Sector(s)
Definition: mmc.c:761
CardType
static BYTE CardType
Definition: mmc.c:84
rcvr_spi_multi
static void rcvr_spi_multi(BYTE *p, UINT cnt)
Receive a data block fast.
Definition: mmc.c:139
UINT
unsigned int UINT
Definition: ff.h:53
Stat
volatile DSTATUS Stat
Definition: mmc.c:78
LBA_t
DWORD LBA_t
Definition: ff.h:125
ACMD23
#define ACMD23
Definition: mmc.c:66
CMD18
#define CMD18
Definition: mmc.c:64
mmc_disk_status
MEMSPACE DSTATUS mmc_disk_status(void)
Get Disk Status.
Definition: mmc.c:411
CMD32
#define CMD32
Definition: mmc.c:69
send_cmd
static MEMSPACE BYTE send_cmd(BYTE cmd, DWORD arg)
Send a data packet to MMC.
Definition: mmc.c:283
SDIO_CTRL
Definition: diskio.h:39
LED1
#define LED1
Definition: gpib_hal.h:75
FCLK_SLOW
#define FCLK_SLOW()
Definition: mmc.c:44
CTRL_SYNC
#define CTRL_SYNC
Definition: diskio.h:67
MMC_GET_CID
#define MMC_GET_CID
Definition: diskio.h:85
STA_NODISK
#define STA_NODISK
Definition: diskio.h:61
STA_PROTECT
#define STA_PROTECT
Definition: diskio.h:62
mmc_power_on
MEMSPACE void mmc_power_on()
MMC Power ON.
Definition: mmc_hal.c:308
select
static MEMSPACE int select(void)
Select the card and wait for ready.
Definition: mmc.c:199
ISDIO_READ
#define ISDIO_READ
Definition: diskio.h:88
CMD49
#define CMD49
Definition: mmc.c:73
mmc_spi_TX_buffer
void mmc_spi_TX_buffer(const uint8_t *data, int count)
SPI write buffer.
Definition: mmc_hal.c:139
CMD24
#define CMD24
Definition: mmc.c:67
set_error
void set_error(uint8_t error)
Set error condition.
Definition: hal.c:505
RES_PARERR
@ RES_PARERR
Definition: diskio.h:35
delayms
void delayms(uint32_t ms)
Delay miliseconds using AVR acr-libc _delay_us() function.
Definition: delay.c:53
CT_BLOCK
#define CT_BLOCK
Definition: diskio.h:102
CMD9
#define CMD9
Definition: mmc.c:58
CMD17
#define CMD17
Definition: mmc.c:63
rcvr_datablock
static MEMSPACE int rcvr_datablock(BYTE *buff, UINT btr)
Receive a data packet from MMC.
Definition: mmc.c:221
CMD38
#define CMD38
Definition: mmc.c:71
CMD25
#define CMD25
Definition: mmc.c:68
CT_SDC
#define CT_SDC
Definition: diskio.h:101
CMD8
#define CMD8
Definition: mmc.c:57
CS_LOW
#define CS_LOW()
Definition: mmc.c:39
MMC_GET_OCR
#define MMC_GET_OCR
Definition: diskio.h:86
SDIO_CTRL::data
void * data
Definition: diskio.h:44
SDIO_CTRL::ndata
WORD ndata
Definition: diskio.h:42
CS_HIGH
#define CS_HIGH()
Definition: mmc.c:40
CMD33
#define CMD33
Definition: mmc.c:70
STA_NOINIT
#define STA_NOINIT
Definition: diskio.h:60
mmc_disk_ioctl
MEMSPACE DRESULT mmc_disk_ioctl(BYTE cmd, void *buff)
mmc_power_off
MEMSPACE void mmc_power_off()
MMC Power OFF.
Definition: mmc_hal.c:317
CMD1
#define CMD1
Definition: mmc.c:55
CT_SD1
#define CT_SD1
Definition: diskio.h:99
power_off
static MEMSPACE void power_off(void)
power off
Definition: mmc.c:108
wait_ready
MEMSPACE int wait_ready(UINT wt)
wait for card ready
Definition: mmc.c:168
MMC_GET_TYPE
#define MMC_GET_TYPE
Definition: diskio.h:83
token
MEMSPACE int token(char *str, char *pat)
Search for token in a string matching user pattern.
Definition: parsing.c:392
CMD58
#define CMD58
Definition: mmc.c:75
CMD16
#define CMD16
Definition: mmc.c:62
RES_NOTRDY
@ RES_NOTRDY
Definition: diskio.h:34
GET_SECTOR_COUNT
#define GET_SECTOR_COUNT
Definition: diskio.h:68
ACMD13
#define ACMD13
Definition: mmc.c:61
MMC_WP
#define MMC_WP
Definition: mmc.c:43
ACMD41
#define ACMD41
Definition: mmc.c:56
CMD10
#define CMD10
Definition: mmc.c:59
mmc_spi_RX_buffer
void mmc_spi_RX_buffer(const uint8_t *data, int count)
SPI read buffer.
Definition: mmc_hal.c:149
WORD
unsigned short WORD
Definition: ff.h:55
mmc_spi_TXRX
uint8_t mmc_spi_TXRX(uint8_t data)
SPI read and write 1 byte.
Definition: mmc_hal.c:158
mathio.h
Math IO functions, and verious conversion code with floating point support.
CT_MMC
#define CT_MMC
Definition: diskio.h:98
DWORD
unsigned long DWORD
Definition: ff.h:56
mmc_test_timeout
MEMSPACE int mmc_test_timeout()
Wait for timeout.
Definition: mmc_hal.c:181
RES_OK
@ RES_OK
Definition: diskio.h:31
MMC_GET_SDSTAT
#define MMC_GET_SDSTAT
Definition: diskio.h:87
mmc_set_ms_timeout
MEMSPACE void mmc_set_ms_timeout(uint16_t ms)
Set MMC timeout timer in Milliseconds.
Definition: mmc_hal.c:169
xchg_spi
static BYTE xchg_spi(BYTE dat)
send/receive a SPI byte
Definition: mmc.c:125