mmc.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. * linux/include/linux/mmc/mmc.h
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #ifndef MMC_H
  9. #define MMC_H
  10. #include <linux/list.h>
  11. #include <linux/interrupt.h>
  12. #include <linux/device.h>
  13. struct request;
  14. struct mmc_data;
  15. struct mmc_request;
  16. struct mmc_command {
  17. u32 opcode;
  18. u32 arg;
  19. u32 resp[4];
  20. unsigned int flags; /* expected response type */
  21. #define MMC_RSP_NONE (0 << 0)
  22. #define MMC_RSP_SHORT (1 << 0)
  23. #define MMC_RSP_LONG (2 << 0)
  24. #define MMC_RSP_MASK (3 << 0)
  25. #define MMC_RSP_CRC (1 << 3) /* expect valid crc */
  26. #define MMC_RSP_BUSY (1 << 4) /* card may send busy */
  27. /*
  28. * These are the response types, and correspond to valid bit
  29. * patterns of the above flags. One additional valid pattern
  30. * is all zeros, which means we don't expect a response.
  31. */
  32. #define MMC_RSP_R1 (MMC_RSP_SHORT|MMC_RSP_CRC)
  33. #define MMC_RSP_R1B (MMC_RSP_SHORT|MMC_RSP_CRC|MMC_RSP_BUSY)
  34. #define MMC_RSP_R2 (MMC_RSP_LONG|MMC_RSP_CRC)
  35. #define MMC_RSP_R3 (MMC_RSP_SHORT)
  36. #define MMC_RSP_R6 (MMC_RSP_SHORT|MMC_RSP_CRC)
  37. unsigned int retries; /* max number of retries */
  38. unsigned int error; /* command error */
  39. #define MMC_ERR_NONE 0
  40. #define MMC_ERR_TIMEOUT 1
  41. #define MMC_ERR_BADCRC 2
  42. #define MMC_ERR_FIFO 3
  43. #define MMC_ERR_FAILED 4
  44. #define MMC_ERR_INVALID 5
  45. struct mmc_data *data; /* data segment associated with cmd */
  46. struct mmc_request *mrq; /* assoicated request */
  47. };
  48. struct mmc_data {
  49. unsigned int timeout_ns; /* data timeout (in ns, max 80ms) */
  50. unsigned int timeout_clks; /* data timeout (in clocks) */
  51. unsigned int blksz_bits; /* data block size */
  52. unsigned int blocks; /* number of blocks */
  53. unsigned int error; /* data error */
  54. unsigned int flags;
  55. #define MMC_DATA_WRITE (1 << 8)
  56. #define MMC_DATA_READ (1 << 9)
  57. #define MMC_DATA_STREAM (1 << 10)
  58. unsigned int bytes_xfered;
  59. struct mmc_command *stop; /* stop command */
  60. struct mmc_request *mrq; /* assoicated request */
  61. unsigned int sg_len; /* size of scatter list */
  62. struct scatterlist *sg; /* I/O scatter list */
  63. };
  64. struct mmc_request {
  65. struct mmc_command *cmd;
  66. struct mmc_data *data;
  67. struct mmc_command *stop;
  68. void *done_data; /* completion data */
  69. void (*done)(struct mmc_request *);/* completion function */
  70. };
  71. struct mmc_host;
  72. struct mmc_card;
  73. extern int mmc_wait_for_req(struct mmc_host *, struct mmc_request *);
  74. extern int mmc_wait_for_cmd(struct mmc_host *, struct mmc_command *, int);
  75. extern int __mmc_claim_host(struct mmc_host *host, struct mmc_card *card);
  76. static inline void mmc_claim_host(struct mmc_host *host)
  77. {
  78. __mmc_claim_host(host, (struct mmc_card *)-1);
  79. }
  80. extern void mmc_release_host(struct mmc_host *host);
  81. #endif