dma.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  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 COMPLETION_TIMEOUT msecs_to_jiffies(100)
  103. #define IDLE_TIMEOUT msecs_to_jiffies(2000)
  104. #define RESET_DELAY msecs_to_jiffies(100)
  105. struct ioatdma_device *ioat_dma;
  106. dma_addr_t completion_dma;
  107. u64 *completion;
  108. struct tasklet_struct cleanup_task;
  109. struct kobject kobj;
  110. /* ioat v2 / v3 channel attributes
  111. * @xfercap_log; log2 of channel max transfer length (for fast division)
  112. * @head: allocated index
  113. * @issued: hardware notification point
  114. * @tail: cleanup index
  115. * @dmacount: identical to 'head' except for occasionally resetting to zero
  116. * @alloc_order: log2 of the number of allocated descriptors
  117. * @produce: number of descriptors to produce at submit time
  118. * @ring: software ring buffer implementation of hardware ring
  119. * @prep_lock: serializes descriptor preparation (producers)
  120. */
  121. size_t xfercap_log;
  122. u16 head;
  123. u16 issued;
  124. u16 tail;
  125. u16 dmacount;
  126. u16 alloc_order;
  127. u16 produce;
  128. struct ioat_ring_ent **ring;
  129. spinlock_t prep_lock;
  130. struct ioat_descs descs[2];
  131. int desc_chunks;
  132. int intr_coalesce;
  133. int prev_intr_coalesce;
  134. };
  135. struct ioat_sysfs_entry {
  136. struct attribute attr;
  137. ssize_t (*show)(struct dma_chan *, char *);
  138. ssize_t (*store)(struct dma_chan *, const char *, size_t);
  139. };
  140. /**
  141. * struct ioat_sed_ent - wrapper around super extended hardware descriptor
  142. * @hw: hardware SED
  143. * @dma: dma address for the SED
  144. * @parent: point to the dma descriptor that's the parent
  145. * @hw_pool: descriptor pool index
  146. */
  147. struct ioat_sed_ent {
  148. struct ioat_sed_raw_descriptor *hw;
  149. dma_addr_t dma;
  150. struct ioat_ring_ent *parent;
  151. unsigned int hw_pool;
  152. };
  153. /**
  154. * struct ioat_ring_ent - wrapper around hardware descriptor
  155. * @hw: hardware DMA descriptor (for memcpy)
  156. * @xor: hardware xor descriptor
  157. * @xor_ex: hardware xor extension descriptor
  158. * @pq: hardware pq descriptor
  159. * @pq_ex: hardware pq extension descriptor
  160. * @pqu: hardware pq update descriptor
  161. * @raw: hardware raw (un-typed) descriptor
  162. * @txd: the generic software descriptor for all engines
  163. * @len: total transaction length for unmap
  164. * @result: asynchronous result of validate operations
  165. * @id: identifier for debug
  166. * @sed: pointer to super extended descriptor sw desc
  167. */
  168. struct ioat_ring_ent {
  169. union {
  170. struct ioat_dma_descriptor *hw;
  171. struct ioat_xor_descriptor *xor;
  172. struct ioat_xor_ext_descriptor *xor_ex;
  173. struct ioat_pq_descriptor *pq;
  174. struct ioat_pq_ext_descriptor *pq_ex;
  175. struct ioat_pq_update_descriptor *pqu;
  176. struct ioat_raw_descriptor *raw;
  177. };
  178. size_t len;
  179. struct dma_async_tx_descriptor txd;
  180. enum sum_check_flags *result;
  181. #ifdef DEBUG
  182. int id;
  183. #endif
  184. struct ioat_sed_ent *sed;
  185. };
  186. extern const struct sysfs_ops ioat_sysfs_ops;
  187. extern struct ioat_sysfs_entry ioat_version_attr;
  188. extern struct ioat_sysfs_entry ioat_cap_attr;
  189. extern int ioat_pending_level;
  190. extern int ioat_ring_alloc_order;
  191. extern struct kobj_type ioat_ktype;
  192. extern struct kmem_cache *ioat_cache;
  193. extern int ioat_ring_max_alloc_order;
  194. extern struct kmem_cache *ioat_sed_cache;
  195. static inline struct ioatdma_chan *to_ioat_chan(struct dma_chan *c)
  196. {
  197. return container_of(c, struct ioatdma_chan, dma_chan);
  198. }
  199. /* wrapper around hardware descriptor format + additional software fields */
  200. #ifdef DEBUG
  201. #define set_desc_id(desc, i) ((desc)->id = (i))
  202. #define desc_id(desc) ((desc)->id)
  203. #else
  204. #define set_desc_id(desc, i)
  205. #define desc_id(desc) (0)
  206. #endif
  207. static inline void
  208. __dump_desc_dbg(struct ioatdma_chan *ioat_chan, struct ioat_dma_descriptor *hw,
  209. struct dma_async_tx_descriptor *tx, int id)
  210. {
  211. struct device *dev = to_dev(ioat_chan);
  212. dev_dbg(dev, "desc[%d]: (%#llx->%#llx) cookie: %d flags: %#x"
  213. " ctl: %#10.8x (op: %#x int_en: %d compl: %d)\n", id,
  214. (unsigned long long) tx->phys,
  215. (unsigned long long) hw->next, tx->cookie, tx->flags,
  216. hw->ctl, hw->ctl_f.op, hw->ctl_f.int_en, hw->ctl_f.compl_write);
  217. }
  218. #define dump_desc_dbg(c, d) \
  219. ({ if (d) __dump_desc_dbg(c, d->hw, &d->txd, desc_id(d)); 0; })
  220. static inline struct ioatdma_chan *
  221. ioat_chan_by_index(struct ioatdma_device *ioat_dma, int index)
  222. {
  223. return ioat_dma->idx[index];
  224. }
  225. static inline u64 ioat_chansts(struct ioatdma_chan *ioat_chan)
  226. {
  227. return readq(ioat_chan->reg_base + IOAT_CHANSTS_OFFSET);
  228. }
  229. static inline u64 ioat_chansts_to_addr(u64 status)
  230. {
  231. return status & IOAT_CHANSTS_COMPLETED_DESCRIPTOR_ADDR;
  232. }
  233. static inline u32 ioat_chanerr(struct ioatdma_chan *ioat_chan)
  234. {
  235. return readl(ioat_chan->reg_base + IOAT_CHANERR_OFFSET);
  236. }
  237. static inline void ioat_suspend(struct ioatdma_chan *ioat_chan)
  238. {
  239. u8 ver = ioat_chan->ioat_dma->version;
  240. writeb(IOAT_CHANCMD_SUSPEND,
  241. ioat_chan->reg_base + IOAT_CHANCMD_OFFSET(ver));
  242. }
  243. static inline void ioat_reset(struct ioatdma_chan *ioat_chan)
  244. {
  245. u8 ver = ioat_chan->ioat_dma->version;
  246. writeb(IOAT_CHANCMD_RESET,
  247. ioat_chan->reg_base + IOAT_CHANCMD_OFFSET(ver));
  248. }
  249. static inline bool ioat_reset_pending(struct ioatdma_chan *ioat_chan)
  250. {
  251. u8 ver = ioat_chan->ioat_dma->version;
  252. u8 cmd;
  253. cmd = readb(ioat_chan->reg_base + IOAT_CHANCMD_OFFSET(ver));
  254. return (cmd & IOAT_CHANCMD_RESET) == IOAT_CHANCMD_RESET;
  255. }
  256. static inline bool is_ioat_active(unsigned long status)
  257. {
  258. return ((status & IOAT_CHANSTS_STATUS) == IOAT_CHANSTS_ACTIVE);
  259. }
  260. static inline bool is_ioat_idle(unsigned long status)
  261. {
  262. return ((status & IOAT_CHANSTS_STATUS) == IOAT_CHANSTS_DONE);
  263. }
  264. static inline bool is_ioat_halted(unsigned long status)
  265. {
  266. return ((status & IOAT_CHANSTS_STATUS) == IOAT_CHANSTS_HALTED);
  267. }
  268. static inline bool is_ioat_suspended(unsigned long status)
  269. {
  270. return ((status & IOAT_CHANSTS_STATUS) == IOAT_CHANSTS_SUSPENDED);
  271. }
  272. /* channel was fatally programmed */
  273. static inline bool is_ioat_bug(unsigned long err)
  274. {
  275. return !!err;
  276. }
  277. #define IOAT_MAX_ORDER 16
  278. #define IOAT_MAX_DESCS 65536
  279. #define IOAT_DESCS_PER_2M 32768
  280. static inline u32 ioat_ring_size(struct ioatdma_chan *ioat_chan)
  281. {
  282. return 1 << ioat_chan->alloc_order;
  283. }
  284. /* count of descriptors in flight with the engine */
  285. static inline u16 ioat_ring_active(struct ioatdma_chan *ioat_chan)
  286. {
  287. return CIRC_CNT(ioat_chan->head, ioat_chan->tail,
  288. ioat_ring_size(ioat_chan));
  289. }
  290. /* count of descriptors pending submission to hardware */
  291. static inline u16 ioat_ring_pending(struct ioatdma_chan *ioat_chan)
  292. {
  293. return CIRC_CNT(ioat_chan->head, ioat_chan->issued,
  294. ioat_ring_size(ioat_chan));
  295. }
  296. static inline u32 ioat_ring_space(struct ioatdma_chan *ioat_chan)
  297. {
  298. return ioat_ring_size(ioat_chan) - ioat_ring_active(ioat_chan);
  299. }
  300. static inline u16
  301. ioat_xferlen_to_descs(struct ioatdma_chan *ioat_chan, size_t len)
  302. {
  303. u16 num_descs = len >> ioat_chan->xfercap_log;
  304. num_descs += !!(len & ((1 << ioat_chan->xfercap_log) - 1));
  305. return num_descs;
  306. }
  307. static inline struct ioat_ring_ent *
  308. ioat_get_ring_ent(struct ioatdma_chan *ioat_chan, u16 idx)
  309. {
  310. return ioat_chan->ring[idx & (ioat_ring_size(ioat_chan) - 1)];
  311. }
  312. static inline void
  313. ioat_set_chainaddr(struct ioatdma_chan *ioat_chan, u64 addr)
  314. {
  315. writel(addr & 0x00000000FFFFFFFF,
  316. ioat_chan->reg_base + IOAT2_CHAINADDR_OFFSET_LOW);
  317. writel(addr >> 32,
  318. ioat_chan->reg_base + IOAT2_CHAINADDR_OFFSET_HIGH);
  319. }
  320. /* IOAT Prep functions */
  321. struct dma_async_tx_descriptor *
  322. ioat_dma_prep_memcpy_lock(struct dma_chan *c, dma_addr_t dma_dest,
  323. dma_addr_t dma_src, size_t len, unsigned long flags);
  324. struct dma_async_tx_descriptor *
  325. ioat_prep_interrupt_lock(struct dma_chan *c, unsigned long flags);
  326. struct dma_async_tx_descriptor *
  327. ioat_prep_xor(struct dma_chan *chan, dma_addr_t dest, dma_addr_t *src,
  328. unsigned int src_cnt, size_t len, unsigned long flags);
  329. struct dma_async_tx_descriptor *
  330. ioat_prep_xor_val(struct dma_chan *chan, dma_addr_t *src,
  331. unsigned int src_cnt, size_t len,
  332. enum sum_check_flags *result, unsigned long flags);
  333. struct dma_async_tx_descriptor *
  334. ioat_prep_pq(struct dma_chan *chan, dma_addr_t *dst, dma_addr_t *src,
  335. unsigned int src_cnt, const unsigned char *scf, size_t len,
  336. unsigned long flags);
  337. struct dma_async_tx_descriptor *
  338. ioat_prep_pq_val(struct dma_chan *chan, dma_addr_t *pq, dma_addr_t *src,
  339. unsigned int src_cnt, const unsigned char *scf, size_t len,
  340. enum sum_check_flags *pqres, unsigned long flags);
  341. struct dma_async_tx_descriptor *
  342. ioat_prep_pqxor(struct dma_chan *chan, dma_addr_t dst, dma_addr_t *src,
  343. unsigned int src_cnt, size_t len, unsigned long flags);
  344. struct dma_async_tx_descriptor *
  345. ioat_prep_pqxor_val(struct dma_chan *chan, dma_addr_t *src,
  346. unsigned int src_cnt, size_t len,
  347. enum sum_check_flags *result, unsigned long flags);
  348. /* IOAT Operation functions */
  349. irqreturn_t ioat_dma_do_interrupt(int irq, void *data);
  350. irqreturn_t ioat_dma_do_interrupt_msix(int irq, void *data);
  351. struct ioat_ring_ent **
  352. ioat_alloc_ring(struct dma_chan *c, int order, gfp_t flags);
  353. void ioat_start_null_desc(struct ioatdma_chan *ioat_chan);
  354. void ioat_free_ring_ent(struct ioat_ring_ent *desc, struct dma_chan *chan);
  355. int ioat_reset_hw(struct ioatdma_chan *ioat_chan);
  356. enum dma_status
  357. ioat_tx_status(struct dma_chan *c, dma_cookie_t cookie,
  358. struct dma_tx_state *txstate);
  359. void ioat_cleanup_event(unsigned long data);
  360. void ioat_timer_event(struct timer_list *t);
  361. int ioat_check_space_lock(struct ioatdma_chan *ioat_chan, int num_descs);
  362. void ioat_issue_pending(struct dma_chan *chan);
  363. /* IOAT Init functions */
  364. bool is_bwd_ioat(struct pci_dev *pdev);
  365. struct dca_provider *ioat_dca_init(struct pci_dev *pdev, void __iomem *iobase);
  366. void ioat_kobject_add(struct ioatdma_device *ioat_dma, struct kobj_type *type);
  367. void ioat_kobject_del(struct ioatdma_device *ioat_dma);
  368. int ioat_dma_setup_interrupts(struct ioatdma_device *ioat_dma);
  369. void ioat_stop(struct ioatdma_chan *ioat_chan);
  370. #endif /* IOATDMA_H */