dma.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. /*
  2. * Copyright(c) 2004 - 2009 Intel Corporation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License as published by the Free
  6. * Software Foundation; either version 2 of the License, or (at your option)
  7. * any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * The full GNU General Public License is included in this distribution in the
  15. * file called COPYING.
  16. */
  17. #ifndef IOATDMA_H
  18. #define IOATDMA_H
  19. #include <linux/dmaengine.h>
  20. #include <linux/init.h>
  21. #include <linux/dmapool.h>
  22. #include <linux/cache.h>
  23. #include <linux/pci_ids.h>
  24. #include <linux/circ_buf.h>
  25. #include <linux/interrupt.h>
  26. #include "registers.h"
  27. #include "hw.h"
  28. #define IOAT_DMA_VERSION "4.00"
  29. #define IOAT_DMA_DCA_ANY_CPU ~0
  30. #define to_ioatdma_device(dev) container_of(dev, struct ioatdma_device, dma_dev)
  31. #define to_dev(ioat_chan) (&(ioat_chan)->ioat_dma->pdev->dev)
  32. #define to_pdev(ioat_chan) ((ioat_chan)->ioat_dma->pdev)
  33. #define chan_num(ch) ((int)((ch)->reg_base - (ch)->ioat_dma->reg_base) / 0x80)
  34. /* ioat hardware assumes at least two sources for raid operations */
  35. #define src_cnt_to_sw(x) ((x) + 2)
  36. #define src_cnt_to_hw(x) ((x) - 2)
  37. #define ndest_to_sw(x) ((x) + 1)
  38. #define ndest_to_hw(x) ((x) - 1)
  39. #define src16_cnt_to_sw(x) ((x) + 9)
  40. #define src16_cnt_to_hw(x) ((x) - 9)
  41. /*
  42. * workaround for IOAT ver.3.0 null descriptor issue
  43. * (channel returns error when size is 0)
  44. */
  45. #define NULL_DESC_BUFFER_SIZE 1
  46. enum ioat_irq_mode {
  47. IOAT_NOIRQ = 0,
  48. IOAT_MSIX,
  49. IOAT_MSI,
  50. IOAT_INTX
  51. };
  52. /**
  53. * struct ioatdma_device - internal representation of a IOAT device
  54. * @pdev: PCI-Express device
  55. * @reg_base: MMIO register space base address
  56. * @completion_pool: DMA buffers for completion ops
  57. * @sed_hw_pool: DMA super descriptor pools
  58. * @dma_dev: embedded struct dma_device
  59. * @version: version of ioatdma device
  60. * @msix_entries: irq handlers
  61. * @idx: per channel data
  62. * @dca: direct cache access context
  63. * @irq_mode: interrupt mode (INTX, MSI, MSIX)
  64. * @cap: read DMA capabilities register
  65. */
  66. struct ioatdma_device {
  67. struct pci_dev *pdev;
  68. void __iomem *reg_base;
  69. struct dma_pool *completion_pool;
  70. #define MAX_SED_POOLS 5
  71. struct dma_pool *sed_hw_pool[MAX_SED_POOLS];
  72. struct dma_device dma_dev;
  73. u8 version;
  74. #define IOAT_MAX_CHANS 4
  75. struct msix_entry msix_entries[IOAT_MAX_CHANS];
  76. struct ioatdma_chan *idx[IOAT_MAX_CHANS];
  77. struct dca_provider *dca;
  78. enum ioat_irq_mode irq_mode;
  79. u32 cap;
  80. /* shadow version for CB3.3 chan reset errata workaround */
  81. u64 msixtba0;
  82. u64 msixdata0;
  83. u32 msixpba;
  84. };
  85. struct ioat_descs {
  86. void *virt;
  87. dma_addr_t hw;
  88. };
  89. struct ioatdma_chan {
  90. struct dma_chan dma_chan;
  91. void __iomem *reg_base;
  92. dma_addr_t last_completion;
  93. spinlock_t cleanup_lock;
  94. unsigned long state;
  95. #define IOAT_CHAN_DOWN 0
  96. #define IOAT_COMPLETION_ACK 1
  97. #define IOAT_RESET_PENDING 2
  98. #define IOAT_KOBJ_INIT_FAIL 3
  99. #define IOAT_RUN 5
  100. #define IOAT_CHAN_ACTIVE 6
  101. struct timer_list timer;
  102. #define RESET_DELAY msecs_to_jiffies(100)
  103. struct ioatdma_device *ioat_dma;
  104. dma_addr_t completion_dma;
  105. u64 *completion;
  106. struct tasklet_struct cleanup_task;
  107. struct kobject kobj;
  108. /* ioat v2 / v3 channel attributes
  109. * @xfercap_log; log2 of channel max transfer length (for fast division)
  110. * @head: allocated index
  111. * @issued: hardware notification point
  112. * @tail: cleanup index
  113. * @dmacount: identical to 'head' except for occasionally resetting to zero
  114. * @alloc_order: log2 of the number of allocated descriptors
  115. * @produce: number of descriptors to produce at submit time
  116. * @ring: software ring buffer implementation of hardware ring
  117. * @prep_lock: serializes descriptor preparation (producers)
  118. */
  119. size_t xfercap_log;
  120. u16 head;
  121. u16 issued;
  122. u16 tail;
  123. u16 dmacount;
  124. u16 alloc_order;
  125. u16 produce;
  126. struct ioat_ring_ent **ring;
  127. spinlock_t prep_lock;
  128. struct ioat_descs descs[2];
  129. int desc_chunks;
  130. int intr_coalesce;
  131. int prev_intr_coalesce;
  132. };
  133. struct ioat_sysfs_entry {
  134. struct attribute attr;
  135. ssize_t (*show)(struct dma_chan *, char *);
  136. ssize_t (*store)(struct dma_chan *, const char *, size_t);
  137. };
  138. /**
  139. * struct ioat_sed_ent - wrapper around super extended hardware descriptor
  140. * @hw: hardware SED
  141. * @dma: dma address for the SED
  142. * @parent: point to the dma descriptor that's the parent
  143. * @hw_pool: descriptor pool index
  144. */
  145. struct ioat_sed_ent {
  146. struct ioat_sed_raw_descriptor *hw;
  147. dma_addr_t dma;
  148. struct ioat_ring_ent *parent;
  149. unsigned int hw_pool;
  150. };
  151. /**
  152. * struct ioat_ring_ent - wrapper around hardware descriptor
  153. * @hw: hardware DMA descriptor (for memcpy)
  154. * @xor: hardware xor descriptor
  155. * @xor_ex: hardware xor extension descriptor
  156. * @pq: hardware pq descriptor
  157. * @pq_ex: hardware pq extension descriptor
  158. * @pqu: hardware pq update descriptor
  159. * @raw: hardware raw (un-typed) descriptor
  160. * @txd: the generic software descriptor for all engines
  161. * @len: total transaction length for unmap
  162. * @result: asynchronous result of validate operations
  163. * @id: identifier for debug
  164. * @sed: pointer to super extended descriptor sw desc
  165. */
  166. struct ioat_ring_ent {
  167. union {
  168. struct ioat_dma_descriptor *hw;
  169. struct ioat_xor_descriptor *xor;
  170. struct ioat_xor_ext_descriptor *xor_ex;
  171. struct ioat_pq_descriptor *pq;
  172. struct ioat_pq_ext_descriptor *pq_ex;
  173. struct ioat_pq_update_descriptor *pqu;
  174. struct ioat_raw_descriptor *raw;
  175. };
  176. size_t len;
  177. struct dma_async_tx_descriptor txd;
  178. enum sum_check_flags *result;
  179. #ifdef DEBUG
  180. int id;
  181. #endif
  182. struct ioat_sed_ent *sed;
  183. };
  184. extern const struct sysfs_ops ioat_sysfs_ops;
  185. extern struct ioat_sysfs_entry ioat_version_attr;
  186. extern struct ioat_sysfs_entry ioat_cap_attr;
  187. extern int ioat_pending_level;
  188. extern int ioat_ring_alloc_order;
  189. extern struct kobj_type ioat_ktype;
  190. extern struct kmem_cache *ioat_cache;
  191. extern int ioat_ring_max_alloc_order;
  192. extern struct kmem_cache *ioat_sed_cache;
  193. static inline struct ioatdma_chan *to_ioat_chan(struct dma_chan *c)
  194. {
  195. return container_of(c, struct ioatdma_chan, dma_chan);
  196. }
  197. /* wrapper around hardware descriptor format + additional software fields */
  198. #ifdef DEBUG
  199. #define set_desc_id(desc, i) ((desc)->id = (i))
  200. #define desc_id(desc) ((desc)->id)
  201. #else
  202. #define set_desc_id(desc, i)
  203. #define desc_id(desc) (0)
  204. #endif
  205. static inline void
  206. __dump_desc_dbg(struct ioatdma_chan *ioat_chan, struct ioat_dma_descriptor *hw,
  207. struct dma_async_tx_descriptor *tx, int id)
  208. {
  209. struct device *dev = to_dev(ioat_chan);
  210. dev_dbg(dev, "desc[%d]: (%#llx->%#llx) cookie: %d flags: %#x"
  211. " ctl: %#10.8x (op: %#x int_en: %d compl: %d)\n", id,
  212. (unsigned long long) tx->phys,
  213. (unsigned long long) hw->next, tx->cookie, tx->flags,
  214. hw->ctl, hw->ctl_f.op, hw->ctl_f.int_en, hw->ctl_f.compl_write);
  215. }
  216. #define dump_desc_dbg(c, d) \
  217. ({ if (d) __dump_desc_dbg(c, d->hw, &d->txd, desc_id(d)); 0; })
  218. static inline struct ioatdma_chan *
  219. ioat_chan_by_index(struct ioatdma_device *ioat_dma, int index)
  220. {
  221. return ioat_dma->idx[index];
  222. }
  223. static inline u64 ioat_chansts(struct ioatdma_chan *ioat_chan)
  224. {
  225. return readq(ioat_chan->reg_base + IOAT_CHANSTS_OFFSET);
  226. }
  227. static inline u64 ioat_chansts_to_addr(u64 status)
  228. {
  229. return status & IOAT_CHANSTS_COMPLETED_DESCRIPTOR_ADDR;
  230. }
  231. static inline u32 ioat_chanerr(struct ioatdma_chan *ioat_chan)
  232. {
  233. return readl(ioat_chan->reg_base + IOAT_CHANERR_OFFSET);
  234. }
  235. static inline void ioat_suspend(struct ioatdma_chan *ioat_chan)
  236. {
  237. u8 ver = ioat_chan->ioat_dma->version;
  238. writeb(IOAT_CHANCMD_SUSPEND,
  239. ioat_chan->reg_base + IOAT_CHANCMD_OFFSET(ver));
  240. }
  241. static inline void ioat_reset(struct ioatdma_chan *ioat_chan)
  242. {
  243. u8 ver = ioat_chan->ioat_dma->version;
  244. writeb(IOAT_CHANCMD_RESET,
  245. ioat_chan->reg_base + IOAT_CHANCMD_OFFSET(ver));
  246. }
  247. static inline bool ioat_reset_pending(struct ioatdma_chan *ioat_chan)
  248. {
  249. u8 ver = ioat_chan->ioat_dma->version;
  250. u8 cmd;
  251. cmd = readb(ioat_chan->reg_base + IOAT_CHANCMD_OFFSET(ver));
  252. return (cmd & IOAT_CHANCMD_RESET) == IOAT_CHANCMD_RESET;
  253. }
  254. static inline bool is_ioat_active(unsigned long status)
  255. {
  256. return ((status & IOAT_CHANSTS_STATUS) == IOAT_CHANSTS_ACTIVE);
  257. }
  258. static inline bool is_ioat_idle(unsigned long status)
  259. {
  260. return ((status & IOAT_CHANSTS_STATUS) == IOAT_CHANSTS_DONE);
  261. }
  262. static inline bool is_ioat_halted(unsigned long status)
  263. {
  264. return ((status & IOAT_CHANSTS_STATUS) == IOAT_CHANSTS_HALTED);
  265. }
  266. static inline bool is_ioat_suspended(unsigned long status)
  267. {
  268. return ((status & IOAT_CHANSTS_STATUS) == IOAT_CHANSTS_SUSPENDED);
  269. }
  270. /* channel was fatally programmed */
  271. static inline bool is_ioat_bug(unsigned long err)
  272. {
  273. return !!err;
  274. }
  275. #define IOAT_MAX_ORDER 16
  276. #define IOAT_MAX_DESCS 65536
  277. #define IOAT_DESCS_PER_2M 32768
  278. static inline u32 ioat_ring_size(struct ioatdma_chan *ioat_chan)
  279. {
  280. return 1 << ioat_chan->alloc_order;
  281. }
  282. /* count of descriptors in flight with the engine */
  283. static inline u16 ioat_ring_active(struct ioatdma_chan *ioat_chan)
  284. {
  285. return CIRC_CNT(ioat_chan->head, ioat_chan->tail,
  286. ioat_ring_size(ioat_chan));
  287. }
  288. /* count of descriptors pending submission to hardware */
  289. static inline u16 ioat_ring_pending(struct ioatdma_chan *ioat_chan)
  290. {
  291. return CIRC_CNT(ioat_chan->head, ioat_chan->issued,
  292. ioat_ring_size(ioat_chan));
  293. }
  294. static inline u32 ioat_ring_space(struct ioatdma_chan *ioat_chan)
  295. {
  296. return ioat_ring_size(ioat_chan) - ioat_ring_active(ioat_chan);
  297. }
  298. static inline u16
  299. ioat_xferlen_to_descs(struct ioatdma_chan *ioat_chan, size_t len)
  300. {
  301. u16 num_descs = len >> ioat_chan->xfercap_log;
  302. num_descs += !!(len & ((1 << ioat_chan->xfercap_log) - 1));
  303. return num_descs;
  304. }
  305. static inline struct ioat_ring_ent *
  306. ioat_get_ring_ent(struct ioatdma_chan *ioat_chan, u16 idx)
  307. {
  308. return ioat_chan->ring[idx & (ioat_ring_size(ioat_chan) - 1)];
  309. }
  310. static inline void
  311. ioat_set_chainaddr(struct ioatdma_chan *ioat_chan, u64 addr)
  312. {
  313. writel(addr & 0x00000000FFFFFFFF,
  314. ioat_chan->reg_base + IOAT2_CHAINADDR_OFFSET_LOW);
  315. writel(addr >> 32,
  316. ioat_chan->reg_base + IOAT2_CHAINADDR_OFFSET_HIGH);
  317. }
  318. /* IOAT Prep functions */
  319. struct dma_async_tx_descriptor *
  320. ioat_dma_prep_memcpy_lock(struct dma_chan *c, dma_addr_t dma_dest,
  321. dma_addr_t dma_src, size_t len, unsigned long flags);
  322. struct dma_async_tx_descriptor *
  323. ioat_prep_interrupt_lock(struct dma_chan *c, unsigned long flags);
  324. struct dma_async_tx_descriptor *
  325. ioat_prep_xor(struct dma_chan *chan, dma_addr_t dest, dma_addr_t *src,
  326. unsigned int src_cnt, size_t len, unsigned long flags);
  327. struct dma_async_tx_descriptor *
  328. ioat_prep_xor_val(struct dma_chan *chan, dma_addr_t *src,
  329. unsigned int src_cnt, size_t len,
  330. enum sum_check_flags *result, unsigned long flags);
  331. struct dma_async_tx_descriptor *
  332. ioat_prep_pq(struct dma_chan *chan, dma_addr_t *dst, dma_addr_t *src,
  333. unsigned int src_cnt, const unsigned char *scf, size_t len,
  334. unsigned long flags);
  335. struct dma_async_tx_descriptor *
  336. ioat_prep_pq_val(struct dma_chan *chan, dma_addr_t *pq, dma_addr_t *src,
  337. unsigned int src_cnt, const unsigned char *scf, size_t len,
  338. enum sum_check_flags *pqres, unsigned long flags);
  339. struct dma_async_tx_descriptor *
  340. ioat_prep_pqxor(struct dma_chan *chan, dma_addr_t dst, dma_addr_t *src,
  341. unsigned int src_cnt, size_t len, unsigned long flags);
  342. struct dma_async_tx_descriptor *
  343. ioat_prep_pqxor_val(struct dma_chan *chan, dma_addr_t *src,
  344. unsigned int src_cnt, size_t len,
  345. enum sum_check_flags *result, unsigned long flags);
  346. /* IOAT Operation functions */
  347. irqreturn_t ioat_dma_do_interrupt(int irq, void *data);
  348. irqreturn_t ioat_dma_do_interrupt_msix(int irq, void *data);
  349. struct ioat_ring_ent **
  350. ioat_alloc_ring(struct dma_chan *c, int order, gfp_t flags);
  351. void ioat_start_null_desc(struct ioatdma_chan *ioat_chan);
  352. void ioat_free_ring_ent(struct ioat_ring_ent *desc, struct dma_chan *chan);
  353. int ioat_reset_hw(struct ioatdma_chan *ioat_chan);
  354. enum dma_status
  355. ioat_tx_status(struct dma_chan *c, dma_cookie_t cookie,
  356. struct dma_tx_state *txstate);
  357. void ioat_cleanup_event(unsigned long data);
  358. void ioat_timer_event(struct timer_list *t);
  359. int ioat_check_space_lock(struct ioatdma_chan *ioat_chan, int num_descs);
  360. void ioat_issue_pending(struct dma_chan *chan);
  361. /* IOAT Init functions */
  362. bool is_bwd_ioat(struct pci_dev *pdev);
  363. struct dca_provider *ioat_dca_init(struct pci_dev *pdev, void __iomem *iobase);
  364. void ioat_kobject_add(struct ioatdma_device *ioat_dma, struct kobj_type *type);
  365. void ioat_kobject_del(struct ioatdma_device *ioat_dma);
  366. int ioat_dma_setup_interrupts(struct ioatdma_device *ioat_dma);
  367. void ioat_stop(struct ioatdma_chan *ioat_chan);
  368. #endif /* IOATDMA_H */