mv_xor.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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_SLOT_SIZE 64
  25. #define MV_XOR_THRESHOLD 1
  26. #define XOR_OPERATION_MODE_XOR 0
  27. #define XOR_OPERATION_MODE_MEMCPY 2
  28. #define XOR_OPERATION_MODE_MEMSET 4
  29. #define XOR_CURR_DESC(chan) (chan->mmr_base + 0x210 + (chan->idx * 4))
  30. #define XOR_NEXT_DESC(chan) (chan->mmr_base + 0x200 + (chan->idx * 4))
  31. #define XOR_BYTE_COUNT(chan) (chan->mmr_base + 0x220 + (chan->idx * 4))
  32. #define XOR_DEST_POINTER(chan) (chan->mmr_base + 0x2B0 + (chan->idx * 4))
  33. #define XOR_BLOCK_SIZE(chan) (chan->mmr_base + 0x2C0 + (chan->idx * 4))
  34. #define XOR_INIT_VALUE_LOW(chan) (chan->mmr_base + 0x2E0)
  35. #define XOR_INIT_VALUE_HIGH(chan) (chan->mmr_base + 0x2E4)
  36. #define XOR_CONFIG(chan) (chan->mmr_base + 0x10 + (chan->idx * 4))
  37. #define XOR_ACTIVATION(chan) (chan->mmr_base + 0x20 + (chan->idx * 4))
  38. #define XOR_INTR_CAUSE(chan) (chan->mmr_base + 0x30)
  39. #define XOR_INTR_MASK(chan) (chan->mmr_base + 0x40)
  40. #define XOR_ERROR_CAUSE(chan) (chan->mmr_base + 0x50)
  41. #define XOR_ERROR_ADDR(chan) (chan->mmr_base + 0x60)
  42. #define XOR_INTR_MASK_VALUE 0x3F5
  43. #define WINDOW_BASE(w) (0x250 + ((w) << 2))
  44. #define WINDOW_SIZE(w) (0x270 + ((w) << 2))
  45. #define WINDOW_REMAP_HIGH(w) (0x290 + ((w) << 2))
  46. #define WINDOW_BAR_ENABLE(chan) (0x240 + ((chan) << 2))
  47. struct mv_xor_shared_private {
  48. void __iomem *xor_base;
  49. void __iomem *xor_high_base;
  50. };
  51. /**
  52. * struct mv_xor_device - internal representation of a XOR device
  53. * @pdev: Platform device
  54. * @id: HW XOR Device selector
  55. * @dma_desc_pool: base of DMA descriptor region (DMA address)
  56. * @dma_desc_pool_virt: base of DMA descriptor region (CPU address)
  57. * @common: embedded struct dma_device
  58. */
  59. struct mv_xor_device {
  60. struct platform_device *pdev;
  61. int id;
  62. dma_addr_t dma_desc_pool;
  63. void *dma_desc_pool_virt;
  64. struct dma_device common;
  65. struct mv_xor_shared_private *shared;
  66. };
  67. /**
  68. * struct mv_xor_chan - internal representation of a XOR channel
  69. * @pending: allows batching of hardware operations
  70. * @lock: serializes enqueue/dequeue operations to the descriptors pool
  71. * @mmr_base: memory mapped register base
  72. * @idx: the index of the xor channel
  73. * @chain: device chain view of the descriptors
  74. * @completed_slots: slots completed by HW but still need to be acked
  75. * @device: parent device
  76. * @common: common dmaengine channel object members
  77. * @last_used: place holder for allocation to continue from where it left off
  78. * @all_slots: complete domain of slots usable by the channel
  79. * @slots_allocated: records the actual size of the descriptor slot pool
  80. * @irq_tasklet: bottom half where mv_xor_slot_cleanup runs
  81. */
  82. struct mv_xor_chan {
  83. int pending;
  84. spinlock_t lock; /* protects the descriptor slot pool */
  85. void __iomem *mmr_base;
  86. unsigned int idx;
  87. enum dma_transaction_type current_type;
  88. struct list_head chain;
  89. struct list_head completed_slots;
  90. struct mv_xor_device *device;
  91. struct dma_chan common;
  92. struct mv_xor_desc_slot *last_used;
  93. struct list_head all_slots;
  94. int slots_allocated;
  95. struct tasklet_struct irq_tasklet;
  96. #ifdef USE_TIMER
  97. unsigned long cleanup_time;
  98. u32 current_on_last_cleanup;
  99. #endif
  100. };
  101. /**
  102. * struct mv_xor_desc_slot - software descriptor
  103. * @slot_node: node on the mv_xor_chan.all_slots list
  104. * @chain_node: node on the mv_xor_chan.chain list
  105. * @completed_node: node on the mv_xor_chan.completed_slots list
  106. * @hw_desc: virtual address of the hardware descriptor chain
  107. * @phys: hardware address of the hardware descriptor chain
  108. * @group_head: first operation in a transaction
  109. * @slot_cnt: total slots used in an transaction (group of operations)
  110. * @slots_per_op: number of slots per operation
  111. * @idx: pool index
  112. * @unmap_src_cnt: number of xor sources
  113. * @unmap_len: transaction bytecount
  114. * @tx_list: list of slots that make up a multi-descriptor transaction
  115. * @async_tx: support for the async_tx api
  116. * @xor_check_result: result of zero sum
  117. * @crc32_result: result crc calculation
  118. */
  119. struct mv_xor_desc_slot {
  120. struct list_head slot_node;
  121. struct list_head chain_node;
  122. struct list_head completed_node;
  123. enum dma_transaction_type type;
  124. void *hw_desc;
  125. struct mv_xor_desc_slot *group_head;
  126. u16 slot_cnt;
  127. u16 slots_per_op;
  128. u16 idx;
  129. u16 unmap_src_cnt;
  130. u32 value;
  131. size_t unmap_len;
  132. struct list_head tx_list;
  133. struct dma_async_tx_descriptor async_tx;
  134. union {
  135. u32 *xor_check_result;
  136. u32 *crc32_result;
  137. };
  138. #ifdef USE_TIMER
  139. unsigned long arrival_time;
  140. struct timer_list timeout;
  141. #endif
  142. };
  143. /* This structure describes XOR descriptor size 64bytes */
  144. struct mv_xor_desc {
  145. u32 status; /* descriptor execution status */
  146. u32 crc32_result; /* result of CRC-32 calculation */
  147. u32 desc_command; /* type of operation to be carried out */
  148. u32 phy_next_desc; /* next descriptor address pointer */
  149. u32 byte_count; /* size of src/dst blocks in bytes */
  150. u32 phy_dest_addr; /* destination block address */
  151. u32 phy_src_addr[8]; /* source block addresses */
  152. u32 reserved0;
  153. u32 reserved1;
  154. };
  155. #define to_mv_sw_desc(addr_hw_desc) \
  156. container_of(addr_hw_desc, struct mv_xor_desc_slot, hw_desc)
  157. #define mv_hw_desc_slot_idx(hw_desc, idx) \
  158. ((void *)(((unsigned long)hw_desc) + ((idx) << 5)))
  159. #define MV_XOR_MIN_BYTE_COUNT (128)
  160. #define XOR_MAX_BYTE_COUNT ((16 * 1024 * 1024) - 1)
  161. #define MV_XOR_MAX_BYTE_COUNT XOR_MAX_BYTE_COUNT
  162. #endif