mv_xor.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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 MV_XOR_POOL_SIZE PAGE_SIZE
  24. #define MV_XOR_SLOT_SIZE 64
  25. #define MV_XOR_THRESHOLD 1
  26. #define MV_XOR_MAX_CHANNELS 2
  27. #define MV_XOR_MIN_BYTE_COUNT SZ_128
  28. #define MV_XOR_MAX_BYTE_COUNT (SZ_16M - 1)
  29. /* Values for the XOR_CONFIG register */
  30. #define XOR_OPERATION_MODE_XOR 0
  31. #define XOR_OPERATION_MODE_MEMCPY 2
  32. #define XOR_DESCRIPTOR_SWAP BIT(14)
  33. #define XOR_DESC_DMA_OWNED BIT(31)
  34. #define XOR_DESC_EOD_INT_EN BIT(31)
  35. #define XOR_CURR_DESC(chan) (chan->mmr_high_base + 0x10 + (chan->idx * 4))
  36. #define XOR_NEXT_DESC(chan) (chan->mmr_high_base + 0x00 + (chan->idx * 4))
  37. #define XOR_BYTE_COUNT(chan) (chan->mmr_high_base + 0x20 + (chan->idx * 4))
  38. #define XOR_DEST_POINTER(chan) (chan->mmr_high_base + 0xB0 + (chan->idx * 4))
  39. #define XOR_BLOCK_SIZE(chan) (chan->mmr_high_base + 0xC0 + (chan->idx * 4))
  40. #define XOR_INIT_VALUE_LOW(chan) (chan->mmr_high_base + 0xE0)
  41. #define XOR_INIT_VALUE_HIGH(chan) (chan->mmr_high_base + 0xE4)
  42. #define XOR_CONFIG(chan) (chan->mmr_base + 0x10 + (chan->idx * 4))
  43. #define XOR_ACTIVATION(chan) (chan->mmr_base + 0x20 + (chan->idx * 4))
  44. #define XOR_INTR_CAUSE(chan) (chan->mmr_base + 0x30)
  45. #define XOR_INTR_MASK(chan) (chan->mmr_base + 0x40)
  46. #define XOR_ERROR_CAUSE(chan) (chan->mmr_base + 0x50)
  47. #define XOR_ERROR_ADDR(chan) (chan->mmr_base + 0x60)
  48. #define XOR_INT_END_OF_DESC BIT(0)
  49. #define XOR_INT_END_OF_CHAIN BIT(1)
  50. #define XOR_INT_STOPPED BIT(2)
  51. #define XOR_INT_PAUSED BIT(3)
  52. #define XOR_INT_ERR_DECODE BIT(4)
  53. #define XOR_INT_ERR_RDPROT BIT(5)
  54. #define XOR_INT_ERR_WRPROT BIT(6)
  55. #define XOR_INT_ERR_OWN BIT(7)
  56. #define XOR_INT_ERR_PAR BIT(8)
  57. #define XOR_INT_ERR_MBUS BIT(9)
  58. #define XOR_INTR_ERRORS (XOR_INT_ERR_DECODE | XOR_INT_ERR_RDPROT | \
  59. XOR_INT_ERR_WRPROT | XOR_INT_ERR_OWN | \
  60. XOR_INT_ERR_PAR | XOR_INT_ERR_MBUS)
  61. #define XOR_INTR_MASK_VALUE (XOR_INT_END_OF_DESC | XOR_INT_END_OF_CHAIN | \
  62. XOR_INT_STOPPED | XOR_INTR_ERRORS)
  63. #define WINDOW_BASE(w) (0x50 + ((w) << 2))
  64. #define WINDOW_SIZE(w) (0x70 + ((w) << 2))
  65. #define WINDOW_REMAP_HIGH(w) (0x90 + ((w) << 2))
  66. #define WINDOW_BAR_ENABLE(chan) (0x40 + ((chan) << 2))
  67. #define WINDOW_OVERRIDE_CTRL(chan) (0xA0 + ((chan) << 2))
  68. struct mv_xor_device {
  69. void __iomem *xor_base;
  70. void __iomem *xor_high_base;
  71. struct clk *clk;
  72. struct mv_xor_chan *channels[MV_XOR_MAX_CHANNELS];
  73. };
  74. /**
  75. * struct mv_xor_chan - internal representation of a XOR channel
  76. * @pending: allows batching of hardware operations
  77. * @lock: serializes enqueue/dequeue operations to the descriptors pool
  78. * @mmr_base: memory mapped register base
  79. * @idx: the index of the xor channel
  80. * @chain: device chain view of the descriptors
  81. * @completed_slots: slots completed by HW but still need to be acked
  82. * @device: parent device
  83. * @common: common dmaengine channel object members
  84. * @last_used: place holder for allocation to continue from where it left off
  85. * @all_slots: complete domain of slots usable by the channel
  86. * @slots_allocated: records the actual size of the descriptor slot pool
  87. * @irq_tasklet: bottom half where mv_xor_slot_cleanup runs
  88. */
  89. struct mv_xor_chan {
  90. int pending;
  91. spinlock_t lock; /* protects the descriptor slot pool */
  92. void __iomem *mmr_base;
  93. void __iomem *mmr_high_base;
  94. unsigned int idx;
  95. int irq;
  96. enum dma_transaction_type current_type;
  97. struct list_head chain;
  98. struct list_head completed_slots;
  99. dma_addr_t dma_desc_pool;
  100. void *dma_desc_pool_virt;
  101. size_t pool_size;
  102. struct dma_device dmadev;
  103. struct dma_chan dmachan;
  104. struct mv_xor_desc_slot *last_used;
  105. struct list_head all_slots;
  106. int slots_allocated;
  107. struct tasklet_struct irq_tasklet;
  108. char dummy_src[MV_XOR_MIN_BYTE_COUNT];
  109. char dummy_dst[MV_XOR_MIN_BYTE_COUNT];
  110. dma_addr_t dummy_src_addr, dummy_dst_addr;
  111. };
  112. /**
  113. * struct mv_xor_desc_slot - software descriptor
  114. * @slot_node: node on the mv_xor_chan.all_slots list
  115. * @chain_node: node on the mv_xor_chan.chain list
  116. * @completed_node: node on the mv_xor_chan.completed_slots list
  117. * @hw_desc: virtual address of the hardware descriptor chain
  118. * @phys: hardware address of the hardware descriptor chain
  119. * @slot_used: slot in use or not
  120. * @idx: pool index
  121. * @tx_list: list of slots that make up a multi-descriptor transaction
  122. * @async_tx: support for the async_tx api
  123. */
  124. struct mv_xor_desc_slot {
  125. struct list_head slot_node;
  126. struct list_head chain_node;
  127. struct list_head completed_node;
  128. enum dma_transaction_type type;
  129. void *hw_desc;
  130. u16 slot_used;
  131. u16 idx;
  132. struct dma_async_tx_descriptor async_tx;
  133. };
  134. /*
  135. * This structure describes XOR descriptor size 64bytes. The
  136. * mv_phy_src_idx() macro must be used when indexing the values of the
  137. * phy_src_addr[] array. This is due to the fact that the 'descriptor
  138. * swap' feature, used on big endian systems, swaps descriptors data
  139. * within blocks of 8 bytes. So two consecutive values of the
  140. * phy_src_addr[] array are actually swapped in big-endian, which
  141. * explains the different mv_phy_src_idx() implementation.
  142. */
  143. #if defined(__LITTLE_ENDIAN)
  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 mv_phy_src_idx(src_idx) (src_idx)
  156. #else
  157. struct mv_xor_desc {
  158. u32 crc32_result; /* result of CRC-32 calculation */
  159. u32 status; /* descriptor execution status */
  160. u32 phy_next_desc; /* next descriptor address pointer */
  161. u32 desc_command; /* type of operation to be carried out */
  162. u32 phy_dest_addr; /* destination block address */
  163. u32 byte_count; /* size of src/dst blocks in bytes */
  164. u32 phy_src_addr[8]; /* source block addresses */
  165. u32 reserved1;
  166. u32 reserved0;
  167. };
  168. #define mv_phy_src_idx(src_idx) (src_idx ^ 1)
  169. #endif
  170. #define to_mv_sw_desc(addr_hw_desc) \
  171. container_of(addr_hw_desc, struct mv_xor_desc_slot, hw_desc)
  172. #define mv_hw_desc_slot_idx(hw_desc, idx) \
  173. ((void *)(((unsigned long)hw_desc) + ((idx) << 5)))
  174. #endif