sdio_func.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /*
  2. * include/linux/mmc/sdio_func.h
  3. *
  4. * Copyright 2007-2008 Pierre Ossman
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or (at
  9. * your option) any later version.
  10. */
  11. #ifndef LINUX_MMC_SDIO_FUNC_H
  12. #define LINUX_MMC_SDIO_FUNC_H
  13. #include <linux/device.h>
  14. #include <linux/mod_devicetable.h>
  15. #include <linux/mmc/pm.h>
  16. struct mmc_card;
  17. struct sdio_func;
  18. typedef void (sdio_irq_handler_t)(struct sdio_func *);
  19. /*
  20. * Structure used to hold embedded SDIO device data from platform layer
  21. */
  22. struct sdio_embedded_func {
  23. uint8_t f_class;
  24. uint32_t f_maxblksize;
  25. };
  26. /*
  27. * SDIO function CIS tuple (unknown to the core)
  28. */
  29. struct sdio_func_tuple {
  30. struct sdio_func_tuple *next;
  31. unsigned char code;
  32. unsigned char size;
  33. unsigned char data[0];
  34. };
  35. /*
  36. * SDIO function devices
  37. */
  38. struct sdio_func {
  39. struct mmc_card *card; /* the card this device belongs to */
  40. struct device dev; /* the device */
  41. sdio_irq_handler_t *irq_handler; /* IRQ callback */
  42. unsigned int num; /* function number */
  43. unsigned char class; /* standard interface class */
  44. unsigned short vendor; /* vendor id */
  45. unsigned short device; /* device id */
  46. unsigned max_blksize; /* maximum block size */
  47. unsigned cur_blksize; /* current block size */
  48. unsigned enable_timeout; /* max enable timeout in msec */
  49. unsigned int state; /* function state */
  50. #define SDIO_STATE_PRESENT (1<<0) /* present in sysfs */
  51. u8 tmpbuf[4]; /* DMA:able scratch buffer */
  52. unsigned num_info; /* number of info strings */
  53. const char **info; /* info strings */
  54. struct sdio_func_tuple *tuples;
  55. };
  56. #define sdio_func_present(f) ((f)->state & SDIO_STATE_PRESENT)
  57. #define sdio_func_set_present(f) ((f)->state |= SDIO_STATE_PRESENT)
  58. #define sdio_func_id(f) (dev_name(&(f)->dev))
  59. #define sdio_get_drvdata(f) dev_get_drvdata(&(f)->dev)
  60. #define sdio_set_drvdata(f,d) dev_set_drvdata(&(f)->dev, d)
  61. #define dev_to_sdio_func(d) container_of(d, struct sdio_func, dev)
  62. /*
  63. * SDIO function device driver
  64. */
  65. struct sdio_driver {
  66. char *name;
  67. const struct sdio_device_id *id_table;
  68. int (*probe)(struct sdio_func *, const struct sdio_device_id *);
  69. void (*remove)(struct sdio_func *);
  70. struct device_driver drv;
  71. };
  72. #define to_sdio_driver(d) container_of(d, struct sdio_driver, drv)
  73. /**
  74. * SDIO_DEVICE - macro used to describe a specific SDIO device
  75. * @vend: the 16 bit manufacturer code
  76. * @dev: the 16 bit function id
  77. *
  78. * This macro is used to create a struct sdio_device_id that matches a
  79. * specific device. The class field will be set to SDIO_ANY_ID.
  80. */
  81. #define SDIO_DEVICE(vend,dev) \
  82. .class = SDIO_ANY_ID, \
  83. .vendor = (vend), .device = (dev)
  84. /**
  85. * SDIO_DEVICE_CLASS - macro used to describe a specific SDIO device class
  86. * @dev_class: the 8 bit standard interface code
  87. *
  88. * This macro is used to create a struct sdio_device_id that matches a
  89. * specific standard SDIO function type. The vendor and device fields will
  90. * be set to SDIO_ANY_ID.
  91. */
  92. #define SDIO_DEVICE_CLASS(dev_class) \
  93. .class = (dev_class), \
  94. .vendor = SDIO_ANY_ID, .device = SDIO_ANY_ID
  95. extern int sdio_register_driver(struct sdio_driver *);
  96. extern void sdio_unregister_driver(struct sdio_driver *);
  97. /*
  98. * SDIO I/O operations
  99. */
  100. extern void sdio_claim_host(struct sdio_func *func);
  101. extern void sdio_release_host(struct sdio_func *func);
  102. extern int sdio_enable_func(struct sdio_func *func);
  103. extern int sdio_disable_func(struct sdio_func *func);
  104. extern int sdio_set_block_size(struct sdio_func *func, unsigned blksz);
  105. extern int sdio_claim_irq(struct sdio_func *func, sdio_irq_handler_t *handler);
  106. extern int sdio_release_irq(struct sdio_func *func);
  107. extern unsigned int sdio_align_size(struct sdio_func *func, unsigned int sz);
  108. extern u8 sdio_readb(struct sdio_func *func, unsigned int addr, int *err_ret);
  109. extern u8 sdio_readb_ext(struct sdio_func *func, unsigned int addr, int *err_ret,
  110. unsigned in);
  111. extern u16 sdio_readw(struct sdio_func *func, unsigned int addr, int *err_ret);
  112. extern u32 sdio_readl(struct sdio_func *func, unsigned int addr, int *err_ret);
  113. extern int sdio_memcpy_fromio(struct sdio_func *func, void *dst,
  114. unsigned int addr, int count);
  115. extern int sdio_readsb(struct sdio_func *func, void *dst,
  116. unsigned int addr, int count);
  117. extern void sdio_writeb(struct sdio_func *func, u8 b,
  118. unsigned int addr, int *err_ret);
  119. extern void sdio_writew(struct sdio_func *func, u16 b,
  120. unsigned int addr, int *err_ret);
  121. extern void sdio_writel(struct sdio_func *func, u32 b,
  122. unsigned int addr, int *err_ret);
  123. extern u8 sdio_writeb_readb(struct sdio_func *func, u8 write_byte,
  124. unsigned int addr, int *err_ret);
  125. extern int sdio_memcpy_toio(struct sdio_func *func, unsigned int addr,
  126. void *src, int count);
  127. extern int sdio_writesb(struct sdio_func *func, unsigned int addr,
  128. void *src, int count);
  129. extern unsigned char sdio_f0_readb(struct sdio_func *func,
  130. unsigned int addr, int *err_ret);
  131. extern void sdio_f0_writeb(struct sdio_func *func, unsigned char b,
  132. unsigned int addr, int *err_ret);
  133. extern mmc_pm_flag_t sdio_get_host_pm_caps(struct sdio_func *func);
  134. extern int sdio_set_host_pm_flags(struct sdio_func *func, mmc_pm_flag_t flags);
  135. #endif /* LINUX_MMC_SDIO_FUNC_H */