sdio_func.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /*
  2. * include/linux/mmc/sdio_func.h
  3. *
  4. * Copyright 2007 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 MMC_SDIO_FUNC_H
  12. #define MMC_SDIO_FUNC_H
  13. #include <linux/device.h>
  14. #include <linux/mod_devicetable.h>
  15. struct mmc_card;
  16. struct sdio_func;
  17. typedef void (sdio_irq_handler_t)(struct sdio_func *);
  18. /*
  19. * SDIO function CIS tuple (unknown to the core)
  20. */
  21. struct sdio_func_tuple {
  22. struct sdio_func_tuple *next;
  23. unsigned char code;
  24. unsigned char size;
  25. unsigned char data[0];
  26. };
  27. /*
  28. * SDIO function devices
  29. */
  30. struct sdio_func {
  31. struct mmc_card *card; /* the card this device belongs to */
  32. struct device dev; /* the device */
  33. sdio_irq_handler_t *irq_handler; /* IRQ callback */
  34. unsigned int num; /* function number */
  35. unsigned char class; /* standard interface class */
  36. unsigned short vendor; /* vendor id */
  37. unsigned short device; /* device id */
  38. unsigned max_blksize; /* maximum block size */
  39. unsigned cur_blksize; /* current block size */
  40. unsigned int state; /* function state */
  41. #define SDIO_STATE_PRESENT (1<<0) /* present in sysfs */
  42. u8 tmpbuf[4]; /* DMA:able scratch buffer */
  43. struct sdio_func_tuple *tuples;
  44. };
  45. #define sdio_func_present(f) ((f)->state & SDIO_STATE_PRESENT)
  46. #define sdio_func_set_present(f) ((f)->state |= SDIO_STATE_PRESENT)
  47. #define sdio_func_id(f) ((f)->dev.bus_id)
  48. #define sdio_get_drvdata(f) dev_get_drvdata(&(f)->dev)
  49. #define sdio_set_drvdata(f,d) dev_set_drvdata(&(f)->dev, d)
  50. /*
  51. * SDIO function device driver
  52. */
  53. struct sdio_driver {
  54. char *name;
  55. const struct sdio_device_id *id_table;
  56. int (*probe)(struct sdio_func *, const struct sdio_device_id *);
  57. void (*remove)(struct sdio_func *);
  58. struct device_driver drv;
  59. };
  60. /**
  61. * SDIO_DEVICE - macro used to describe a specific SDIO device
  62. * @vend: the 16 bit manufacturer code
  63. * @dev: the 16 bit function id
  64. *
  65. * This macro is used to create a struct sdio_device_id that matches a
  66. * specific device. The class field will be set to SDIO_ANY_ID.
  67. */
  68. #define SDIO_DEVICE(vend,dev) \
  69. .class = SDIO_ANY_ID, \
  70. .vendor = (vend), .device = (dev)
  71. /**
  72. * SDIO_DEVICE_CLASS - macro used to describe a specific SDIO device class
  73. * @dev_class: the 8 bit standard interface code
  74. *
  75. * This macro is used to create a struct sdio_device_id that matches a
  76. * specific standard SDIO function type. The vendor and device fields will
  77. * be set to SDIO_ANY_ID.
  78. */
  79. #define SDIO_DEVICE_CLASS(dev_class) \
  80. .class = (dev_class), \
  81. .vendor = SDIO_ANY_ID, .device = SDIO_ANY_ID
  82. extern int sdio_register_driver(struct sdio_driver *);
  83. extern void sdio_unregister_driver(struct sdio_driver *);
  84. /*
  85. * SDIO I/O operations
  86. */
  87. extern void sdio_claim_host(struct sdio_func *func);
  88. extern void sdio_release_host(struct sdio_func *func);
  89. extern int sdio_enable_func(struct sdio_func *func);
  90. extern int sdio_disable_func(struct sdio_func *func);
  91. extern int sdio_set_block_size(struct sdio_func *func, unsigned blksz);
  92. extern int sdio_claim_irq(struct sdio_func *func, sdio_irq_handler_t *handler);
  93. extern int sdio_release_irq(struct sdio_func *func);
  94. extern unsigned char sdio_readb(struct sdio_func *func,
  95. unsigned int addr, int *err_ret);
  96. extern unsigned short sdio_readw(struct sdio_func *func,
  97. unsigned int addr, int *err_ret);
  98. extern unsigned long sdio_readl(struct sdio_func *func,
  99. unsigned int addr, int *err_ret);
  100. extern int sdio_memcpy_fromio(struct sdio_func *func, void *dst,
  101. unsigned int addr, int count);
  102. extern int sdio_readsb(struct sdio_func *func, void *dst,
  103. unsigned int addr, int count);
  104. extern void sdio_writeb(struct sdio_func *func, unsigned char b,
  105. unsigned int addr, int *err_ret);
  106. extern void sdio_writew(struct sdio_func *func, unsigned short b,
  107. unsigned int addr, int *err_ret);
  108. extern void sdio_writel(struct sdio_func *func, unsigned long b,
  109. unsigned int addr, int *err_ret);
  110. extern int sdio_memcpy_toio(struct sdio_func *func, unsigned int addr,
  111. void *src, int count);
  112. extern int sdio_writesb(struct sdio_func *func, unsigned int addr,
  113. void *src, int count);
  114. #endif