mmc.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. * (C) Copyright 2000-2003
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  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. #ifndef _MMC_H_
  24. #define _MMC_H_
  25. /* MMC command numbers */
  26. #define MMC_CMD_GO_IDLE_STATE 0
  27. #define MMC_CMD_SEND_OP_COND 1
  28. #define MMC_CMD_ALL_SEND_CID 2
  29. #define MMC_CMD_SET_RELATIVE_ADDR 3
  30. #define MMC_CMD_SET_DSR 4
  31. #define MMC_CMD_SELECT_CARD 7
  32. #define MMC_CMD_SEND_CSD 9
  33. #define MMC_CMD_SEND_CID 10
  34. #define MMC_CMD_SEND_STATUS 13
  35. #define MMC_CMD_SET_BLOCKLEN 16
  36. #define MMC_CMD_READ_SINGLE_BLOCK 17
  37. #define MMC_CMD_READ_MULTIPLE_BLOCK 18
  38. #define MMC_CMD_WRITE_BLOCK 24
  39. #define MMC_CMD_APP_CMD 55
  40. /* SD Card command numbers */
  41. #define SD_CMD_SEND_RELATIVE_ADDR 3
  42. #define SD_CMD_SWITCH 6
  43. #define SD_CMD_SEND_IF_COND 8
  44. #define SD_CMD_APP_SET_BUS_WIDTH 6
  45. #define SD_CMD_APP_SEND_OP_COND 41
  46. #define R1_ILLEGAL_COMMAND (1 << 22)
  47. #define R1_APP_CMD (1 << 5)
  48. int mmc_legacy_init(int verbose);
  49. int mmc_read(ulong src, uchar *dst, int size);
  50. int mmc_write(uchar *src, ulong dst, int size);
  51. struct mmc_cid {
  52. unsigned long psn;
  53. unsigned short oid;
  54. unsigned char mid;
  55. unsigned char prv;
  56. unsigned char mdt;
  57. char pnm[7];
  58. };
  59. struct mmc_csd
  60. {
  61. u8 csd_structure:2,
  62. spec_vers:4,
  63. rsvd1:2;
  64. u8 taac;
  65. u8 nsac;
  66. u8 tran_speed;
  67. u16 ccc:12,
  68. read_bl_len:4;
  69. u64 read_bl_partial:1,
  70. write_blk_misalign:1,
  71. read_blk_misalign:1,
  72. dsr_imp:1,
  73. rsvd2:2,
  74. c_size:12,
  75. vdd_r_curr_min:3,
  76. vdd_r_curr_max:3,
  77. vdd_w_curr_min:3,
  78. vdd_w_curr_max:3,
  79. c_size_mult:3,
  80. sector_size:5,
  81. erase_grp_size:5,
  82. wp_grp_size:5,
  83. wp_grp_enable:1,
  84. default_ecc:2,
  85. r2w_factor:3,
  86. write_bl_len:4,
  87. write_bl_partial:1,
  88. rsvd3:5;
  89. u8 file_format_grp:1,
  90. copy:1,
  91. perm_write_protect:1,
  92. tmp_write_protect:1,
  93. file_format:2,
  94. ecc:2;
  95. u8 crc:7;
  96. u8 one:1;
  97. };
  98. #endif /* _MMC_H_ */