mv_xor.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /*
  2. * Copyright (C) 2007, 2008, Marvell International Ltd.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms and conditions of the GNU General Public License,
  6. * version 2, as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope it will be useful, but WITHOUT
  9. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  11. * for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program; if not, write to the Free Software Foundation,
  15. * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  16. */
  17. #ifndef MV_XOR_H
  18. #define MV_XOR_H
  19. #include <linux/types.h>
  20. #include <linux/io.h>
  21. #include <linux/dmaengine.h>
  22. #include <linux/interrupt.h>
  23. #define USE_TIMER
  24. #define MV_XOR_POOL_SIZE PAGE_SIZE
  25. #define MV_XOR_SLOT_SIZE 64
  26. #define MV_XOR_THRESHOLD 1
  27. #define MV_XOR_MAX_CHANNELS 2
  28. /* Values for the XOR_CONFIG register */
  29. #define XOR_OPERATION_MODE_XOR 0
  30. #define XOR_OPERATION_MODE_MEMCPY 2
  31. #define XOR_DESCRIPTOR_SWAP BIT(14)
  32. #define XOR_CURR_DESC(chan) (chan->mmr_high_base + 0x10 + (chan->idx * 4))
  33. #define XOR_NEXT_DESC(chan) (chan->mmr_high_base + 0x00 + (chan->idx * 4))
  34. #define XOR_BYTE_COUNT(chan) (chan->mmr_high_base + 0x20 + (chan->idx * 4))
  35. #define XOR_DEST_POINTER(chan) (chan->mmr_high_base + 0xB0 + (chan->idx * 4))
  36. #define XOR_BLOCK_SIZE(chan) (chan->mmr_high_base + 0xC0 + (chan->idx * 4))
  37. #define XOR_INIT_VALUE_LOW(chan) (chan->mmr_high_base + 0xE0)
  38. #define XOR_INIT_VALUE_HIGH(chan) (chan->mmr_high_base + 0xE4)
  39. #define XOR_CONFIG(chan) (chan->mmr_base + 0x10 + (chan->idx * 4))
  40. #define XOR_ACTIVATION(chan) (chan->mmr_base + 0x20 + (chan->idx * 4))
  41. #define XOR_INTR_CAUSE(chan) (chan->mmr_base + 0x30)
  42. #define XOR_INTR_MASK(chan) (chan->mmr_base + 0x40)
  43. #define XOR_ERROR_CAUSE(chan) (chan->mmr_base + 0x50)
  44. #define XOR_ERROR_ADDR(chan) (chan->mmr_base + 0x60)
  45. #define XOR_INTR_MASK_VALUE 0x3F5
  46. #define WINDOW_BASE(w) (0x50 + ((w) << 2))
  47. #define WINDOW_SIZE(w) (0x70 + ((w) << 2))
  48. #define WINDOW_REMAP_HIGH(w) (0x90 + ((w) << 2))
  49. #define WINDOW_BAR_ENABLE(chan) (0x40 + ((chan) << 2))
  50. #define WINDOW_OVERRIDE_CTRL(chan) (0xA0 + ((chan) << 2))
  51. struct mv_xor_device {
  52. void __iomem *xor_base;
  53. void __iomem *xor_high_base;
  54. struct clk *clk;
  55. struct mv_xor_chan *channels[MV_XOR_MAX_CHANNELS];
  56. };
  57. /**
  58. * struct mv_xor_chan - internal representation of a XOR channel
  59. * @pending: allows batching of hardware operations
  60. * @lock: serializes enqueue/dequeue operations to the descriptors pool
  61. * @mmr_base: memory mapped register base
  62. * @idx: the index of the xor channel
  63. * @chain: device chain view of the descriptors
  64. * @completed_slots: slots completed by HW but still need to be acked
  65. * @device: parent device
  66. * @common: common dmaengine channel object members
  67. * @last_used: place holder for allocation to continue from where it left off
  68. * @all_slots: complete domain of slots usable by the channel
  69. * @slots_allocated: records the actual size of the descriptor slot pool
  70. * @irq_tasklet: bottom half where mv_xor_slot_cleanup runs
  71. */
  72. struct mv_xor_chan {
  73. int pending;
  74. spinlock_t lock; /* protects the descriptor slot pool */
  75. void __iomem *mmr_base;
  76. void __iomem *mmr_high_base;
  77. unsigned int idx;
  78. int irq;
  79. enum dma_transaction_type current_type;
  80. struct list_head chain;
  81. struct list_head completed_slots;
  82. dma_addr_t dma_desc_pool;
  83. void *dma_desc_pool_virt;
  84. size_t pool_size;
  85. struct dma_device dmadev;
  86. struct dma_chan dmachan;
  87. struct mv_xor_desc_slot *last_used;
  88. struct list_head all_slots;
  89. int slots_allocated;
  90. struct tasklet_struct irq_tasklet;
  91. #ifdef USE_TIMER
  92. unsigned long cleanup_time;
  93. u32 current_on_last_cleanup;
  94. #endif
  95. };
  96. /**
  97. * struct mv_xor_desc_slot - software descriptor
  98. * @slot_node: node on the mv_xor_chan.all_slots list
  99. * @chain_node: node on the mv_xor_chan.chain list
  100. * @completed_node: node on the mv_xor_chan.completed_slots list
  101. * @hw_desc: virtual address of the hardware descriptor chain
  102. * @phys: hardware address of the hardware descriptor chain
  103. * @group_head: first operation in a transaction
  104. * @slot_cnt: total slots used in an transaction (group of operations)
  105. * @slots_per_op: number of slots per operation
  106. * @idx: pool index
  107. * @unmap_src_cnt: number of xor sources
  108. * @unmap_len: transaction bytecount
  109. * @tx_list: list of slots that make up a multi-descriptor transaction
  110. * @async_tx: support for the async_tx api
  111. * @xor_check_result: result of zero sum
  112. * @crc32_result: result crc calculation
  113. */
  114. struct mv_xor_desc_slot {
  115. struct list_head slot_node;
  116. struct list_head chain_node;
  117. struct list_head completed_node;
  118. enum dma_transaction_type type;
  119. void *hw_desc;
  120. struct mv_xor_desc_slot *group_head;
  121. u16 slot_cnt;
  122. u16 slots_per_op;
  123. u16 idx;
  124. u16 unmap_src_cnt;
  125. u32 value;
  126. size_t unmap_len;
  127. struct list_head tx_list;
  128. struct dma_async_tx_descriptor async_tx;
  129. union {
  130. u32 *xor_check_result;
  131. u32 *crc32_result;
  132. };
  133. #ifdef USE_TIMER
  134. unsigned long arrival_time;
  135. struct timer_list timeout;
  136. #endif
  137. };
  138. /*
  139. * This structure describes XOR descriptor size 64bytes. The
  140. * mv_phy_src_idx() macro must be used when indexing the values of the
  141. * phy_src_addr[] array. This is due to the fact that the 'descriptor
  142. * swap' feature, used on big endian systems, swaps descriptors data
  143. * within blocks of 8 bytes. So two consecutive values of the
  144. * phy_src_addr[] array are actually swapped in big-endian, which
  145. * explains the different mv_phy_src_idx() implementation.
  146. */
  147. #if defined(__LITTLE_ENDIAN)
  148. struct mv_xor_desc {
  149. u32 status; /* descriptor execution status */
  150. u32 crc32_result; /* result of CRC-32 calculation */
  151. u32 desc_command; /* type of operation to be carried out */
  152. u32 phy_next_desc; /* next descriptor address pointer */
  153. u32 byte_count; /* size of src/dst blocks in bytes */
  154. u32 phy_dest_addr; /* destination block address */
  155. u32 phy_src_addr[8]; /* source block addresses */
  156. u32 reserved0;
  157. u32 reserved1;
  158. };
  159. #define mv_phy_src_idx(src_idx) (src_idx)
  160. #else
  161. struct mv_xor_desc {
  162. u32 crc32_result; /* result of CRC-32 calculation */
  163. u32 status; /* descriptor execution status */
  164. u32 phy_next_desc; /* next descriptor address pointer */
  165. u32 desc_command; /* type of operation to be carried out */
  166. u32 phy_dest_addr; /* destination block address */
  167. u32 byte_count; /* size of src/dst blocks in bytes */
  168. u32 phy_src_addr[8]; /* source block addresses */
  169. u32 reserved1;
  170. u32 reserved0;
  171. };
  172. #define mv_phy_src_idx(src_idx) (src_idx ^ 1)
  173. #endif
  174. #define to_mv_sw_desc(addr_hw_desc) \
  175. container_of(addr_hw_desc, struct mv_xor_desc_slot, hw_desc)
  176. #define mv_hw_desc_slot_idx(hw_desc, idx) \
  177. ((void *)(((unsigned long)hw_desc) + ((idx) << 5)))
  178. #define MV_XOR_MIN_BYTE_COUNT (128)
  179. #define XOR_MAX_BYTE_COUNT ((16 * 1024 * 1024) - 1)
  180. #define MV_XOR_MAX_BYTE_COUNT XOR_MAX_BYTE_COUNT
  181. #endif