You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

147 lines
4.8 KiB

  1. /*
  2. * This file is part of the coreboot project.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of
  7. * the License, or (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. */
  14. #ifndef __COMMONLIB_STORAGE_H__
  15. #define __COMMONLIB_STORAGE_H__
  16. #include <commonlib/sd_mmc_ctrlr.h>
  17. /*
  18. * EXT_CSD fields
  19. */
  20. #define EXT_CSD_GP_SIZE_MULT_GP0 143 /* RO */
  21. #define EXT_CSD_GP_SIZE_MULT_GP1 146 /* RO */
  22. #define EXT_CSD_GP_SIZE_MULT_GP2 149 /* RO */
  23. #define EXT_CSD_GP_SIZE_MULT_GP3 152 /* RO */
  24. #define EXT_CSD_PARTITIONING_SUPPORT 160 /* RO */
  25. #define EXT_CSD_RPMB_SIZE_MULT 168 /* RO */
  26. #define EXT_CSD_ERASE_GROUP_DEF 175 /* R/W */
  27. #define EXT_CSD_PART_CONF 179 /* R/W */
  28. #define EXT_CSD_BUS_WIDTH 183 /* R/W */
  29. #define EXT_CSD_STROBE_SUPPORT 184 /* RO */
  30. #define EXT_CSD_HS_TIMING 185 /* R/W */
  31. #define EXT_CSD_REV 192 /* RO */
  32. #define EXT_CSD_CARD_TYPE 196 /* RO */
  33. #define EXT_CSD_SEC_CNT 212 /* RO, 4 bytes */
  34. #define EXT_CSD_HC_WP_GRP_SIZE 221 /* RO */
  35. #define EXT_CSD_HC_ERASE_GRP_SIZE 224 /* RO */
  36. #define EXT_CSD_BOOT_SIZE_MULT 226 /* RO */
  37. #define EXT_CSD_TRIM_MULT 232 /* RO */
  38. /*
  39. * EXT_CSD field definitions
  40. */
  41. #define EXT_CSD_CMD_SET_NORMAL (1 << 0)
  42. #define EXT_CSD_CMD_SET_SECURE (1 << 1)
  43. #define EXT_CSD_CMD_SET_CPSECURE (1 << 2)
  44. #define EXT_CSD_CARD_TYPE_26 (1 << 0) /* Card can run at 26MHz */
  45. #define EXT_CSD_CARD_TYPE_52 (1 << 1) /* Card can run at 52MHz */
  46. #define EXT_CSD_BUS_WIDTH_1 0 /* Card is in 1 bit mode */
  47. #define EXT_CSD_BUS_WIDTH_4 1 /* Card is in 4 bit mode */
  48. #define EXT_CSD_BUS_WIDTH_8 2 /* Card is in 8 bit mode */
  49. #define EXT_CSD_DDR_BUS_WIDTH_4 5 /* Card is in 4 bit DDR mode */
  50. #define EXT_CSD_DDR_BUS_WIDTH_8 6 /* Card is in 8 bit DDR mode */
  51. #define EXT_CSD_BUS_WIDTH_STROBE (1<<7) /* Enhanced strobe mode */
  52. #define EXT_CSD_TIMING_BC 0 /* Backwards compatility */
  53. #define EXT_CSD_TIMING_HS 1 /* High speed */
  54. #define EXT_CSD_TIMING_HS200 2 /* HS200 */
  55. #define EXT_CSD_TIMING_HS400 3 /* HS400 */
  56. #define EXT_CSD_SIZE 512
  57. /* 179: EXT_CSD_PART_CONF */
  58. #define EXT_CSD_PART_ACCESS_MASK 7 /* Partition access mask */
  59. /* 175: EXT_CSD_ERASE_GROUP_DEF */
  60. #define EXT_CSD_PARTITION_ENABLE 1 /* Enable partition access */
  61. struct storage_media {
  62. uint64_t capacity[8]; /* Partition capacity in bytes */
  63. struct sd_mmc_ctrlr *ctrlr;
  64. #define MMC_PARTITION_USER 0
  65. #define MMC_PARTITION_BOOT_1 1
  66. #define MMC_PARTITION_BOOT_2 2
  67. #define MMC_PARTITION_RPMB 3
  68. #define MMC_PARTITION_GP1 4
  69. #define MMC_PARTITION_GP2 5
  70. #define MMC_PARTITION_GP3 6
  71. #define MMC_PARTITION_GP4 7
  72. uint32_t caps;
  73. uint32_t version;
  74. #define SD_VERSION_SD 0x20000
  75. #define SD_VERSION_2 (SD_VERSION_SD | 0x20)
  76. #define SD_VERSION_1_0 (SD_VERSION_SD | 0x10)
  77. #define SD_VERSION_1_10 (SD_VERSION_SD | 0x1a)
  78. #define MMC_VERSION_MMC 0x10000
  79. #define MMC_VERSION_UNKNOWN (MMC_VERSION_MMC)
  80. #define MMC_VERSION_1_2 (MMC_VERSION_MMC | 0x12)
  81. #define MMC_VERSION_1_4 (MMC_VERSION_MMC | 0x14)
  82. #define MMC_VERSION_2_2 (MMC_VERSION_MMC | 0x22)
  83. #define MMC_VERSION_3 (MMC_VERSION_MMC | 0x30)
  84. #define MMC_VERSION_4 (MMC_VERSION_MMC | 0x40)
  85. uint32_t read_bl_len;
  86. uint32_t write_bl_len;
  87. int high_capacity;
  88. uint32_t tran_speed;
  89. /* Erase size in terms of block length. */
  90. uint32_t erase_blocks;
  91. /* Trim operation multiplier for determining timeout. */
  92. uint32_t trim_mult;
  93. uint32_t ocr;
  94. #define OCR_BUSY 0x80000000
  95. #define OCR_HCS 0x40000000
  96. #define OCR_VOLTAGE_MASK 0x00FFFF80
  97. #define OCR_ACCESS_MODE 0x60000000
  98. uint32_t op_cond_response; // The response byte from the last op_cond
  99. uint32_t scr[2];
  100. uint32_t csd[4];
  101. uint32_t cid[4];
  102. uint16_t rca;
  103. uint8_t partition_config; /* Duplicate of EXT_CSD_PART_CONF */
  104. };
  105. uint64_t storage_block_erase(struct storage_media *media, uint64_t start,
  106. uint64_t count);
  107. uint64_t storage_block_fill_write(struct storage_media *media, uint64_t start,
  108. uint64_t count, uint32_t fill_pattern);
  109. uint64_t storage_block_read(struct storage_media *media, uint64_t start,
  110. uint64_t count, void *buffer);
  111. uint64_t storage_block_write(struct storage_media *media, uint64_t start,
  112. uint64_t count, const void *buffer);
  113. unsigned int storage_get_current_partition(struct storage_media *media);
  114. const char *storage_partition_name(struct storage_media *media,
  115. unsigned int partition_number);
  116. int storage_setup_media(struct storage_media *media,
  117. struct sd_mmc_ctrlr *ctrlr);
  118. int storage_set_partition(struct storage_media *media,
  119. unsigned int partition_number);
  120. void storage_display_setup(struct storage_media *media);
  121. #endif /* __COMMONLIB_STORAGE_H__ */