mmc_ops.h 1.1 KB

1234567891011121314151617181920
  1. #ifndef __MMC_OPS_H__
  2. #define __MMC_OPS_H__
  3. int mmc_select_card(const struct device *mmc_dev, struct mmc_cmd *cmd, int rca);
  4. int mmc_go_idle(const struct device *mmc_dev, struct mmc_cmd *cmd);
  5. int mmc_send_status(const struct device *mmc_dev, struct mmc_cmd *cmd, int rca, u32_t *status);
  6. int mmc_app_cmd(const struct device *mmc_dev, struct mmc_cmd *cmd, int rca);
  7. int mmc_send_app_cmd(const struct device *mmc_dev, int rca, struct mmc_cmd *cmd,
  8. int retries);
  9. int mmc_all_send_cid(const struct device *mmc_dev, struct mmc_cmd *cmd, u32_t *cid);
  10. int mmc_send_csd(const struct device *mmc_dev, struct mmc_cmd *cmd, int rca, u32_t *csd);
  11. int mmc_send_ext_csd(const struct device *mmc_dev, struct mmc_cmd *cmd, u8_t *ext_csd);
  12. int mmc_set_blockcount(const struct device *mmc_dev, struct mmc_cmd *cmd, unsigned int blockcount,
  13. bool is_rel_write);
  14. int mmc_stop_block_transmission(const struct device *mmc_dev, struct mmc_cmd *cmd);
  15. int mmc_send_relative_addr(const struct device *mmc_dev, struct mmc_cmd *cmd, unsigned int *rca);
  16. int emmc_send_relative_addr(const struct device *mmc_dev, struct mmc_cmd *cmd, unsigned int *rca);
  17. #endif /* __MMC_OPS_H__ */