tifm.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. /*
  2. * tifm.h - TI FlashMedia driver
  3. *
  4. * Copyright (C) 2006 Alex Dubov <oakad@yahoo.com>
  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 version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. */
  11. #ifndef _TIFM_H
  12. #define _TIFM_H
  13. #include <linux/spinlock.h>
  14. #include <linux/interrupt.h>
  15. #include <linux/delay.h>
  16. #include <linux/pci.h>
  17. #include <linux/workqueue.h>
  18. /* Host registers (relative to pci base address): */
  19. enum {
  20. FM_SET_INTERRUPT_ENABLE = 0x008,
  21. FM_CLEAR_INTERRUPT_ENABLE = 0x00c,
  22. FM_INTERRUPT_STATUS = 0x014
  23. };
  24. /* Socket registers (relative to socket base address): */
  25. enum {
  26. SOCK_CONTROL = 0x004,
  27. SOCK_PRESENT_STATE = 0x008,
  28. SOCK_DMA_ADDRESS = 0x00c,
  29. SOCK_DMA_CONTROL = 0x010,
  30. SOCK_DMA_FIFO_INT_ENABLE_SET = 0x014,
  31. SOCK_DMA_FIFO_INT_ENABLE_CLEAR = 0x018,
  32. SOCK_DMA_FIFO_STATUS = 0x020,
  33. SOCK_FIFO_CONTROL = 0x024,
  34. SOCK_FIFO_PAGE_SIZE = 0x028,
  35. SOCK_MMCSD_COMMAND = 0x104,
  36. SOCK_MMCSD_ARG_LOW = 0x108,
  37. SOCK_MMCSD_ARG_HIGH = 0x10c,
  38. SOCK_MMCSD_CONFIG = 0x110,
  39. SOCK_MMCSD_STATUS = 0x114,
  40. SOCK_MMCSD_INT_ENABLE = 0x118,
  41. SOCK_MMCSD_COMMAND_TO = 0x11c,
  42. SOCK_MMCSD_DATA_TO = 0x120,
  43. SOCK_MMCSD_DATA = 0x124,
  44. SOCK_MMCSD_BLOCK_LEN = 0x128,
  45. SOCK_MMCSD_NUM_BLOCKS = 0x12c,
  46. SOCK_MMCSD_BUFFER_CONFIG = 0x130,
  47. SOCK_MMCSD_SPI_CONFIG = 0x134,
  48. SOCK_MMCSD_SDIO_MODE_CONFIG = 0x138,
  49. SOCK_MMCSD_RESPONSE = 0x144,
  50. SOCK_MMCSD_SDIO_SR = 0x164,
  51. SOCK_MMCSD_SYSTEM_CONTROL = 0x168,
  52. SOCK_MMCSD_SYSTEM_STATUS = 0x16c,
  53. SOCK_MS_COMMAND = 0x184,
  54. SOCK_MS_DATA = 0x188,
  55. SOCK_MS_STATUS = 0x18c,
  56. SOCK_MS_SYSTEM = 0x190,
  57. SOCK_FIFO_ACCESS = 0x200
  58. };
  59. #define TIFM_CTRL_LED 0x00000040
  60. #define TIFM_CTRL_FAST_CLK 0x00000100
  61. #define TIFM_CTRL_POWER_MASK 0x00000007
  62. #define TIFM_SOCK_STATE_OCCUPIED 0x00000008
  63. #define TIFM_SOCK_STATE_POWERED 0x00000080
  64. #define TIFM_FIFO_ENABLE 0x00000001
  65. #define TIFM_FIFO_READY 0x00000001
  66. #define TIFM_FIFO_MORE 0x00000008
  67. #define TIFM_FIFO_INT_SETALL 0x0000ffff
  68. #define TIFM_FIFO_INTMASK 0x00000005
  69. #define TIFM_DMA_RESET 0x00000002
  70. #define TIFM_DMA_TX 0x00008000
  71. #define TIFM_DMA_EN 0x00000001
  72. #define TIFM_DMA_TSIZE 0x0000007f
  73. #define TIFM_TYPE_XD 1
  74. #define TIFM_TYPE_MS 2
  75. #define TIFM_TYPE_SD 3
  76. struct tifm_device_id {
  77. unsigned char type;
  78. };
  79. struct tifm_driver;
  80. struct tifm_dev {
  81. char __iomem *addr;
  82. spinlock_t lock;
  83. unsigned char type;
  84. unsigned int socket_id;
  85. void (*card_event)(struct tifm_dev *sock);
  86. void (*data_event)(struct tifm_dev *sock);
  87. struct device dev;
  88. };
  89. struct tifm_driver {
  90. struct tifm_device_id *id_table;
  91. int (*probe)(struct tifm_dev *dev);
  92. void (*remove)(struct tifm_dev *dev);
  93. int (*suspend)(struct tifm_dev *dev,
  94. pm_message_t state);
  95. int (*resume)(struct tifm_dev *dev);
  96. struct device_driver driver;
  97. };
  98. struct tifm_adapter {
  99. char __iomem *addr;
  100. spinlock_t lock;
  101. unsigned int irq_status;
  102. unsigned int socket_change_set;
  103. unsigned int id;
  104. unsigned int num_sockets;
  105. struct completion *finish_me;
  106. struct work_struct media_switcher;
  107. struct device dev;
  108. void (*eject)(struct tifm_adapter *fm,
  109. struct tifm_dev *sock);
  110. int (*has_ms_pif)(struct tifm_adapter *fm,
  111. struct tifm_dev *sock);
  112. struct tifm_dev *sockets[0];
  113. };
  114. struct tifm_adapter *tifm_alloc_adapter(unsigned int num_sockets,
  115. struct device *dev);
  116. int tifm_add_adapter(struct tifm_adapter *fm);
  117. void tifm_remove_adapter(struct tifm_adapter *fm);
  118. void tifm_free_adapter(struct tifm_adapter *fm);
  119. void tifm_free_device(struct device *dev);
  120. struct tifm_dev *tifm_alloc_device(struct tifm_adapter *fm, unsigned int id,
  121. unsigned char type);
  122. int tifm_register_driver(struct tifm_driver *drv);
  123. void tifm_unregister_driver(struct tifm_driver *drv);
  124. void tifm_eject(struct tifm_dev *sock);
  125. int tifm_has_ms_pif(struct tifm_dev *sock);
  126. int tifm_map_sg(struct tifm_dev *sock, struct scatterlist *sg, int nents,
  127. int direction);
  128. void tifm_unmap_sg(struct tifm_dev *sock, struct scatterlist *sg, int nents,
  129. int direction);
  130. void tifm_queue_work(struct work_struct *work);
  131. static inline void *tifm_get_drvdata(struct tifm_dev *dev)
  132. {
  133. return dev_get_drvdata(&dev->dev);
  134. }
  135. static inline void tifm_set_drvdata(struct tifm_dev *dev, void *data)
  136. {
  137. dev_set_drvdata(&dev->dev, data);
  138. }
  139. #endif