SWM320_sdio.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. #ifndef __SWM320_SDIO_H__
  2. #define __SWM320_SDIO_H__
  3. #define SD_CMD_GO_IDLE_STATE ((uint8_t)0)
  4. #define SD_CMD_SEND_OP_COND ((uint8_t)1)
  5. #define SD_CMD_ALL_SEND_CID ((uint8_t)2)
  6. #define SD_CMD_SET_REL_ADDR ((uint8_t)3)
  7. #define SD_CMD_SET_DSR ((uint8_t)4)
  8. #define SD_CMD_HS_SWITCH ((uint8_t)6)
  9. #define SD_CMD_SEL_DESEL_CARD ((uint8_t)7)
  10. #define SD_CMD_SEND_IF_COND ((uint8_t)8)
  11. #define SD_CMD_SEND_CSD ((uint8_t)9)
  12. #define SD_CMD_SEND_CID ((uint8_t)10)
  13. #define SD_CMD_STOP_TRANSMISSION ((uint8_t)12)
  14. #define SD_CMD_SEND_STATUS ((uint8_t)13)
  15. #define SD_CMD_SET_BLOCKLEN ((uint8_t)16)
  16. #define SD_CMD_READ_SINGLE_BLOCK ((uint8_t)17)
  17. #define SD_CMD_READ_MULT_BLOCK ((uint8_t)18)
  18. #define SD_CMD_WRITE_SINGLE_BLOCK ((uint8_t)24)
  19. #define SD_CMD_WRITE_MULT_BLOCK ((uint8_t)25)
  20. #define SD_CMD_PROG_CID ((uint8_t)26)
  21. #define SD_CMD_PROG_CSD ((uint8_t)27)
  22. #define SD_CMD_APP_CMD ((uint8_t)55)
  23. /*Following commands are SD Card Specific commands.
  24. SDIO_APP_CMD should be sent before sending these commands. */
  25. #define SD_CMD_APP_SD_SET_BUSWIDTH ((uint8_t)6)
  26. #define SD_CMD_SD_APP_STAUS ((uint8_t)13)
  27. #define SD_CMD_SD_APP_SEND_NUM_WRITE_BLOCKS ((uint8_t)22)
  28. #define SD_CMD_SD_APP_OP_COND ((uint8_t)41)
  29. #define SD_CMD_SD_APP_SET_CLR_CARD_DETECT ((uint8_t)42)
  30. #define SD_CMD_SD_APP_SEND_SCR ((uint8_t)51)
  31. #define SD_CMD_SDIO_RW_DIRECT ((uint8_t)52)
  32. #define SD_CMD_SDIO_RW_EXTENDED ((uint8_t)53)
  33. #define SD_RESP_NO 0 //0 无响应
  34. #define SD_RESP_32b 2 //2 32位响应
  35. #define SD_RESP_128b 1 //1 128位响应
  36. #define SD_RESP_32b_busy 3 //3 32位响应,check Busy after response
  37. #define SD_BUSWIDTH_1b 0
  38. #define SD_BUSWIDTH_4b 2
  39. #define SD_RES_OK 0
  40. #define SD_RES_ERR 1
  41. #define SD_RES_TIMEOUT 2
  42. typedef struct
  43. {
  44. __IO uint8_t CSDStruct; // CSD structure
  45. __IO uint8_t SysSpecVersion; // System specification version
  46. __IO uint8_t Reserved1; // Reserved
  47. __IO uint8_t TAAC; // Data read access-time 1
  48. __IO uint8_t NSAC; // Data read access-time 2 in CLK cycles
  49. __IO uint8_t MaxBusClkFrec; // Max. bus clock frequency
  50. __IO uint16_t CardComdClasses; //< Card command classes
  51. __IO uint8_t RdBlockLen; // Max. read data block length
  52. __IO uint8_t PartBlockRead; // Partial blocks for read allowed
  53. __IO uint8_t WrBlockMisalign; // Write block misalignment
  54. __IO uint8_t RdBlockMisalign; // Read block misalignment
  55. __IO uint8_t DSRImpl; // DSR implemented
  56. __IO uint8_t Reserved2; // Reserved
  57. __IO uint32_t DeviceSize; // Device Size
  58. __IO uint8_t MaxRdCurrentVDDMin; // Max. read current @ VDD min
  59. __IO uint8_t MaxRdCurrentVDDMax; // Max. read current @ VDD max
  60. __IO uint8_t MaxWrCurrentVDDMin; // Max. write current @ VDD min
  61. __IO uint8_t MaxWrCurrentVDDMax; // Max. write current @ VDD max
  62. __IO uint8_t DeviceSizeMul; // Device size multiplier
  63. __IO uint8_t EraseGrSize; // Erase group size
  64. __IO uint8_t EraseGrMul; // Erase group size multiplier
  65. __IO uint8_t WrProtectGrSize; // Write protect group size
  66. __IO uint8_t WrProtectGrEnable; // Write protect group enable
  67. __IO uint8_t ManDeflECC; // Manufacturer default ECC
  68. __IO uint8_t WrSpeedFact; // Write speed factor
  69. __IO uint8_t MaxWrBlockLen; // Max. write data block length
  70. __IO uint8_t WriteBlockPaPartial; // Partial blocks for write allowed
  71. __IO uint8_t Reserved3; // Reserded
  72. __IO uint8_t ContentProtectAppli; // Content protection application
  73. __IO uint8_t FileFormatGrouop; // File format group
  74. __IO uint8_t CopyFlag; // Copy flag (OTP)
  75. __IO uint8_t PermWrProtect; // Permanent write protection
  76. __IO uint8_t TempWrProtect; // Temporary write protection
  77. __IO uint8_t FileFormat; // File Format
  78. __IO uint8_t ECC; // ECC code
  79. } SD_CSD;
  80. typedef struct
  81. {
  82. __IO uint8_t ManufacturerID; // ManufacturerID
  83. __IO uint16_t OEM_AppliID; // OEM/Application ID
  84. __IO uint32_t ProdName1; // Product Name part1
  85. __IO uint8_t ProdName2; // Product Name part2
  86. __IO uint8_t ProdRev; // Product Revision
  87. __IO uint32_t ProdSN; // Product Serial Number
  88. __IO uint8_t Reserved1; // Reserved1
  89. __IO uint16_t ManufactDate; // Manufacturing Date
  90. } SD_CID;
  91. #define SDIO_STD_CAPACITY_SD_CARD_V1_1 ((uint32_t)0x00000000)
  92. #define SDIO_STD_CAPACITY_SD_CARD_V2_0 ((uint32_t)0x00000001)
  93. #define SDIO_HIGH_CAPACITY_SD_CARD ((uint32_t)0x00000002)
  94. #define SDIO_MULTIMEDIA_CARD ((uint32_t)0x00000003)
  95. #define SDIO_SECURE_DIGITAL_IO_CARD ((uint32_t)0x00000004)
  96. #define SDIO_HIGH_SPEED_MULTIMEDIA_CARD ((uint32_t)0x00000005)
  97. #define SDIO_SECURE_DIGITAL_IO_COMBO_CARD ((uint32_t)0x00000006)
  98. #define SDIO_HIGH_CAPACITY_MMC_CARD ((uint32_t)0x00000007)
  99. typedef struct
  100. {
  101. SD_CSD SD_csd;
  102. SD_CID SD_cid;
  103. uint64_t CardCapacity; // Card Capacity
  104. uint32_t CardBlockSize; // Card Block Size
  105. uint16_t RCA;
  106. uint8_t CardType;
  107. } SD_CardInfo;
  108. extern SD_CardInfo SD_cardInfo;
  109. uint32_t SDIO_Init(uint32_t freq);
  110. uint32_t SDIO_BlockWrite(uint32_t block_addr, uint32_t buff[]);
  111. uint32_t SDIO_BlockRead(uint32_t block_addr, uint32_t buff[]);
  112. uint32_t SDIO_MultiBlockWrite(uint32_t block_addr, uint16_t block_cnt, uint32_t buff[]);
  113. uint32_t SDIO_MultiBlockRead(uint32_t block_addr, uint16_t block_cnt, uint32_t buff[]);
  114. uint32_t SDIO_DMABlockWrite(uint32_t block_addr, uint16_t block_cnt, uint32_t buff[]);
  115. uint32_t SDIO_DMABlockRead(uint32_t block_addr, uint16_t block_cnt, uint32_t buff[]);
  116. uint32_t _SDIO_SendCmd(uint32_t cmd, uint32_t arg, uint32_t resp_type, uint32_t *resp_data, uint32_t have_data, uint32_t data_read, uint16_t block_cnt, uint32_t use_dma);
  117. #define SDIO_SendCmd(cmd, arg, resp_type, resp_data) _SDIO_SendCmd(cmd, arg, resp_type, resp_data, 0, 0, 0, 0)
  118. #define SDIO_SendCmdWithData(cmd, arg, resp_type, resp_data, data_read, block_cnt) _SDIO_SendCmd(cmd, arg, resp_type, resp_data, 1, data_read, block_cnt, 0)
  119. #define SDIO_SendCmdWithDataByDMA(cmd, arg, resp_type, resp_data, data_read, block_cnt) _SDIO_SendCmd(cmd, arg, resp_type, resp_data, 1, data_read, block_cnt, 1)
  120. void parseCID(uint32_t CID_Tab[4]);
  121. void parseCSD(uint32_t CID_Tab[4]);
  122. uint32_t calcSDCLKDiv(uint32_t freq_sel);
  123. #endif //__SWM320_SDIO_H__