async_pq.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  1. /*
  2. * Copyright(c) 2007 Yuri Tikhonov <yur@emcraft.com>
  3. * Copyright(c) 2009 Intel Corporation
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License as published by the Free
  7. * Software Foundation; either version 2 of the License, or (at your option)
  8. * any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. * more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along with
  16. * this program; if not, write to the Free Software Foundation, Inc., 59
  17. * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. *
  19. * The full GNU General Public License is included in this distribution in the
  20. * file called COPYING.
  21. */
  22. #include <linux/kernel.h>
  23. #include <linux/interrupt.h>
  24. #include <linux/module.h>
  25. #include <linux/dma-mapping.h>
  26. #include <linux/raid/pq.h>
  27. #include <linux/async_tx.h>
  28. #include <linux/gfp.h>
  29. /**
  30. * pq_scribble_page - space to hold throwaway P or Q buffer for
  31. * synchronous gen_syndrome
  32. */
  33. static struct page *pq_scribble_page;
  34. /* the struct page *blocks[] parameter passed to async_gen_syndrome()
  35. * and async_syndrome_val() contains the 'P' destination address at
  36. * blocks[disks-2] and the 'Q' destination address at blocks[disks-1]
  37. *
  38. * note: these are macros as they are used as lvalues
  39. */
  40. #define P(b, d) (b[d-2])
  41. #define Q(b, d) (b[d-1])
  42. /**
  43. * do_async_gen_syndrome - asynchronously calculate P and/or Q
  44. */
  45. static __async_inline struct dma_async_tx_descriptor *
  46. do_async_gen_syndrome(struct dma_chan *chan,
  47. const unsigned char *scfs, int disks,
  48. struct dmaengine_unmap_data *unmap,
  49. enum dma_ctrl_flags dma_flags,
  50. struct async_submit_ctl *submit)
  51. {
  52. struct dma_async_tx_descriptor *tx = NULL;
  53. struct dma_device *dma = chan->device;
  54. enum async_tx_flags flags_orig = submit->flags;
  55. dma_async_tx_callback cb_fn_orig = submit->cb_fn;
  56. dma_async_tx_callback cb_param_orig = submit->cb_param;
  57. int src_cnt = disks - 2;
  58. unsigned short pq_src_cnt;
  59. dma_addr_t dma_dest[2];
  60. int src_off = 0;
  61. while (src_cnt > 0) {
  62. submit->flags = flags_orig;
  63. pq_src_cnt = min(src_cnt, dma_maxpq(dma, dma_flags));
  64. /* if we are submitting additional pqs, leave the chain open,
  65. * clear the callback parameters, and leave the destination
  66. * buffers mapped
  67. */
  68. if (src_cnt > pq_src_cnt) {
  69. submit->flags &= ~ASYNC_TX_ACK;
  70. submit->flags |= ASYNC_TX_FENCE;
  71. submit->cb_fn = NULL;
  72. submit->cb_param = NULL;
  73. } else {
  74. submit->cb_fn = cb_fn_orig;
  75. submit->cb_param = cb_param_orig;
  76. if (cb_fn_orig)
  77. dma_flags |= DMA_PREP_INTERRUPT;
  78. }
  79. if (submit->flags & ASYNC_TX_FENCE)
  80. dma_flags |= DMA_PREP_FENCE;
  81. /* Drivers force forward progress in case they can not provide
  82. * a descriptor
  83. */
  84. for (;;) {
  85. dma_dest[0] = unmap->addr[disks - 2];
  86. dma_dest[1] = unmap->addr[disks - 1];
  87. tx = dma->device_prep_dma_pq(chan, dma_dest,
  88. &unmap->addr[src_off],
  89. pq_src_cnt,
  90. &scfs[src_off], unmap->len,
  91. dma_flags);
  92. if (likely(tx))
  93. break;
  94. async_tx_quiesce(&submit->depend_tx);
  95. dma_async_issue_pending(chan);
  96. }
  97. dma_set_unmap(tx, unmap);
  98. async_tx_submit(chan, tx, submit);
  99. submit->depend_tx = tx;
  100. /* drop completed sources */
  101. src_cnt -= pq_src_cnt;
  102. src_off += pq_src_cnt;
  103. dma_flags |= DMA_PREP_CONTINUE;
  104. }
  105. return tx;
  106. }
  107. /**
  108. * do_sync_gen_syndrome - synchronously calculate a raid6 syndrome
  109. */
  110. static void
  111. do_sync_gen_syndrome(struct page **blocks, unsigned int offset, int disks,
  112. size_t len, struct async_submit_ctl *submit)
  113. {
  114. void **srcs;
  115. int i;
  116. int start = -1, stop = disks - 3;
  117. if (submit->scribble)
  118. srcs = submit->scribble;
  119. else
  120. srcs = (void **) blocks;
  121. for (i = 0; i < disks; i++) {
  122. if (blocks[i] == NULL) {
  123. BUG_ON(i > disks - 3); /* P or Q can't be zero */
  124. srcs[i] = (void*)raid6_empty_zero_page;
  125. } else {
  126. srcs[i] = page_address(blocks[i]) + offset;
  127. if (i < disks - 2) {
  128. stop = i;
  129. if (start == -1)
  130. start = i;
  131. }
  132. }
  133. }
  134. if (submit->flags & ASYNC_TX_PQ_XOR_DST) {
  135. BUG_ON(!raid6_call.xor_syndrome);
  136. if (start >= 0)
  137. raid6_call.xor_syndrome(disks, start, stop, len, srcs);
  138. } else
  139. raid6_call.gen_syndrome(disks, len, srcs);
  140. async_tx_sync_epilog(submit);
  141. }
  142. /**
  143. * async_gen_syndrome - asynchronously calculate a raid6 syndrome
  144. * @blocks: source blocks from idx 0..disks-3, P @ disks-2 and Q @ disks-1
  145. * @offset: common offset into each block (src and dest) to start transaction
  146. * @disks: number of blocks (including missing P or Q, see below)
  147. * @len: length of operation in bytes
  148. * @submit: submission/completion modifiers
  149. *
  150. * General note: This routine assumes a field of GF(2^8) with a
  151. * primitive polynomial of 0x11d and a generator of {02}.
  152. *
  153. * 'disks' note: callers can optionally omit either P or Q (but not
  154. * both) from the calculation by setting blocks[disks-2] or
  155. * blocks[disks-1] to NULL. When P or Q is omitted 'len' must be <=
  156. * PAGE_SIZE as a temporary buffer of this size is used in the
  157. * synchronous path. 'disks' always accounts for both destination
  158. * buffers. If any source buffers (blocks[i] where i < disks - 2) are
  159. * set to NULL those buffers will be replaced with the raid6_zero_page
  160. * in the synchronous path and omitted in the hardware-asynchronous
  161. * path.
  162. */
  163. struct dma_async_tx_descriptor *
  164. async_gen_syndrome(struct page **blocks, unsigned int offset, int disks,
  165. size_t len, struct async_submit_ctl *submit)
  166. {
  167. int src_cnt = disks - 2;
  168. struct dma_chan *chan = async_tx_find_channel(submit, DMA_PQ,
  169. &P(blocks, disks), 2,
  170. blocks, src_cnt, len);
  171. struct dma_device *device = chan ? chan->device : NULL;
  172. struct dmaengine_unmap_data *unmap = NULL;
  173. BUG_ON(disks > 255 || !(P(blocks, disks) || Q(blocks, disks)));
  174. if (device)
  175. unmap = dmaengine_get_unmap_data(device->dev, disks, GFP_NOWAIT);
  176. /* XORing P/Q is only implemented in software */
  177. if (unmap && !(submit->flags & ASYNC_TX_PQ_XOR_DST) &&
  178. (src_cnt <= dma_maxpq(device, 0) ||
  179. dma_maxpq(device, DMA_PREP_CONTINUE) > 0) &&
  180. is_dma_pq_aligned(device, offset, 0, len)) {
  181. struct dma_async_tx_descriptor *tx;
  182. enum dma_ctrl_flags dma_flags = 0;
  183. unsigned char coefs[src_cnt];
  184. int i, j;
  185. /* run the p+q asynchronously */
  186. pr_debug("%s: (async) disks: %d len: %zu\n",
  187. __func__, disks, len);
  188. /* convert source addresses being careful to collapse 'empty'
  189. * sources and update the coefficients accordingly
  190. */
  191. unmap->len = len;
  192. for (i = 0, j = 0; i < src_cnt; i++) {
  193. if (blocks[i] == NULL)
  194. continue;
  195. unmap->addr[j] = dma_map_page(device->dev, blocks[i], offset,
  196. len, DMA_TO_DEVICE);
  197. coefs[j] = raid6_gfexp[i];
  198. unmap->to_cnt++;
  199. j++;
  200. }
  201. /*
  202. * DMAs use destinations as sources,
  203. * so use BIDIRECTIONAL mapping
  204. */
  205. unmap->bidi_cnt++;
  206. if (P(blocks, disks))
  207. unmap->addr[j++] = dma_map_page(device->dev, P(blocks, disks),
  208. offset, len, DMA_BIDIRECTIONAL);
  209. else {
  210. unmap->addr[j++] = 0;
  211. dma_flags |= DMA_PREP_PQ_DISABLE_P;
  212. }
  213. unmap->bidi_cnt++;
  214. if (Q(blocks, disks))
  215. unmap->addr[j++] = dma_map_page(device->dev, Q(blocks, disks),
  216. offset, len, DMA_BIDIRECTIONAL);
  217. else {
  218. unmap->addr[j++] = 0;
  219. dma_flags |= DMA_PREP_PQ_DISABLE_Q;
  220. }
  221. tx = do_async_gen_syndrome(chan, coefs, j, unmap, dma_flags, submit);
  222. dmaengine_unmap_put(unmap);
  223. return tx;
  224. }
  225. dmaengine_unmap_put(unmap);
  226. /* run the pq synchronously */
  227. pr_debug("%s: (sync) disks: %d len: %zu\n", __func__, disks, len);
  228. /* wait for any prerequisite operations */
  229. async_tx_quiesce(&submit->depend_tx);
  230. if (!P(blocks, disks)) {
  231. P(blocks, disks) = pq_scribble_page;
  232. BUG_ON(len + offset > PAGE_SIZE);
  233. }
  234. if (!Q(blocks, disks)) {
  235. Q(blocks, disks) = pq_scribble_page;
  236. BUG_ON(len + offset > PAGE_SIZE);
  237. }
  238. do_sync_gen_syndrome(blocks, offset, disks, len, submit);
  239. return NULL;
  240. }
  241. EXPORT_SYMBOL_GPL(async_gen_syndrome);
  242. static inline struct dma_chan *
  243. pq_val_chan(struct async_submit_ctl *submit, struct page **blocks, int disks, size_t len)
  244. {
  245. #ifdef CONFIG_ASYNC_TX_DISABLE_PQ_VAL_DMA
  246. return NULL;
  247. #endif
  248. return async_tx_find_channel(submit, DMA_PQ_VAL, NULL, 0, blocks,
  249. disks, len);
  250. }
  251. /**
  252. * async_syndrome_val - asynchronously validate a raid6 syndrome
  253. * @blocks: source blocks from idx 0..disks-3, P @ disks-2 and Q @ disks-1
  254. * @offset: common offset into each block (src and dest) to start transaction
  255. * @disks: number of blocks (including missing P or Q, see below)
  256. * @len: length of operation in bytes
  257. * @pqres: on val failure SUM_CHECK_P_RESULT and/or SUM_CHECK_Q_RESULT are set
  258. * @spare: temporary result buffer for the synchronous case
  259. * @submit: submission / completion modifiers
  260. *
  261. * The same notes from async_gen_syndrome apply to the 'blocks',
  262. * and 'disks' parameters of this routine. The synchronous path
  263. * requires a temporary result buffer and submit->scribble to be
  264. * specified.
  265. */
  266. struct dma_async_tx_descriptor *
  267. async_syndrome_val(struct page **blocks, unsigned int offset, int disks,
  268. size_t len, enum sum_check_flags *pqres, struct page *spare,
  269. struct async_submit_ctl *submit)
  270. {
  271. struct dma_chan *chan = pq_val_chan(submit, blocks, disks, len);
  272. struct dma_device *device = chan ? chan->device : NULL;
  273. struct dma_async_tx_descriptor *tx;
  274. unsigned char coefs[disks-2];
  275. enum dma_ctrl_flags dma_flags = submit->cb_fn ? DMA_PREP_INTERRUPT : 0;
  276. struct dmaengine_unmap_data *unmap = NULL;
  277. BUG_ON(disks < 4);
  278. if (device)
  279. unmap = dmaengine_get_unmap_data(device->dev, disks, GFP_NOWAIT);
  280. if (unmap && disks <= dma_maxpq(device, 0) &&
  281. is_dma_pq_aligned(device, offset, 0, len)) {
  282. struct device *dev = device->dev;
  283. dma_addr_t pq[2];
  284. int i, j = 0, src_cnt = 0;
  285. pr_debug("%s: (async) disks: %d len: %zu\n",
  286. __func__, disks, len);
  287. unmap->len = len;
  288. for (i = 0; i < disks-2; i++)
  289. if (likely(blocks[i])) {
  290. unmap->addr[j] = dma_map_page(dev, blocks[i],
  291. offset, len,
  292. DMA_TO_DEVICE);
  293. coefs[j] = raid6_gfexp[i];
  294. unmap->to_cnt++;
  295. src_cnt++;
  296. j++;
  297. }
  298. if (!P(blocks, disks)) {
  299. pq[0] = 0;
  300. dma_flags |= DMA_PREP_PQ_DISABLE_P;
  301. } else {
  302. pq[0] = dma_map_page(dev, P(blocks, disks),
  303. offset, len,
  304. DMA_TO_DEVICE);
  305. unmap->addr[j++] = pq[0];
  306. unmap->to_cnt++;
  307. }
  308. if (!Q(blocks, disks)) {
  309. pq[1] = 0;
  310. dma_flags |= DMA_PREP_PQ_DISABLE_Q;
  311. } else {
  312. pq[1] = dma_map_page(dev, Q(blocks, disks),
  313. offset, len,
  314. DMA_TO_DEVICE);
  315. unmap->addr[j++] = pq[1];
  316. unmap->to_cnt++;
  317. }
  318. if (submit->flags & ASYNC_TX_FENCE)
  319. dma_flags |= DMA_PREP_FENCE;
  320. for (;;) {
  321. tx = device->device_prep_dma_pq_val(chan, pq,
  322. unmap->addr,
  323. src_cnt,
  324. coefs,
  325. len, pqres,
  326. dma_flags);
  327. if (likely(tx))
  328. break;
  329. async_tx_quiesce(&submit->depend_tx);
  330. dma_async_issue_pending(chan);
  331. }
  332. dma_set_unmap(tx, unmap);
  333. async_tx_submit(chan, tx, submit);
  334. } else {
  335. struct page *p_src = P(blocks, disks);
  336. struct page *q_src = Q(blocks, disks);
  337. enum async_tx_flags flags_orig = submit->flags;
  338. dma_async_tx_callback cb_fn_orig = submit->cb_fn;
  339. void *scribble = submit->scribble;
  340. void *cb_param_orig = submit->cb_param;
  341. void *p, *q, *s;
  342. pr_debug("%s: (sync) disks: %d len: %zu\n",
  343. __func__, disks, len);
  344. /* caller must provide a temporary result buffer and
  345. * allow the input parameters to be preserved
  346. */
  347. BUG_ON(!spare || !scribble);
  348. /* wait for any prerequisite operations */
  349. async_tx_quiesce(&submit->depend_tx);
  350. /* recompute p and/or q into the temporary buffer and then
  351. * check to see the result matches the current value
  352. */
  353. tx = NULL;
  354. *pqres = 0;
  355. if (p_src) {
  356. init_async_submit(submit, ASYNC_TX_XOR_ZERO_DST, NULL,
  357. NULL, NULL, scribble);
  358. tx = async_xor(spare, blocks, offset, disks-2, len, submit);
  359. async_tx_quiesce(&tx);
  360. p = page_address(p_src) + offset;
  361. s = page_address(spare) + offset;
  362. *pqres |= !!memcmp(p, s, len) << SUM_CHECK_P;
  363. }
  364. if (q_src) {
  365. P(blocks, disks) = NULL;
  366. Q(blocks, disks) = spare;
  367. init_async_submit(submit, 0, NULL, NULL, NULL, scribble);
  368. tx = async_gen_syndrome(blocks, offset, disks, len, submit);
  369. async_tx_quiesce(&tx);
  370. q = page_address(q_src) + offset;
  371. s = page_address(spare) + offset;
  372. *pqres |= !!memcmp(q, s, len) << SUM_CHECK_Q;
  373. }
  374. /* restore P, Q and submit */
  375. P(blocks, disks) = p_src;
  376. Q(blocks, disks) = q_src;
  377. submit->cb_fn = cb_fn_orig;
  378. submit->cb_param = cb_param_orig;
  379. submit->flags = flags_orig;
  380. async_tx_sync_epilog(submit);
  381. tx = NULL;
  382. }
  383. dmaengine_unmap_put(unmap);
  384. return tx;
  385. }
  386. EXPORT_SYMBOL_GPL(async_syndrome_val);
  387. static int __init async_pq_init(void)
  388. {
  389. pq_scribble_page = alloc_page(GFP_KERNEL);
  390. if (pq_scribble_page)
  391. return 0;
  392. pr_err("%s: failed to allocate required spare page\n", __func__);
  393. return -ENOMEM;
  394. }
  395. static void __exit async_pq_exit(void)
  396. {
  397. put_page(pq_scribble_page);
  398. }
  399. module_init(async_pq_init);
  400. module_exit(async_pq_exit);
  401. MODULE_DESCRIPTION("asynchronous raid6 syndrome generation/validation");
  402. MODULE_LICENSE("GPL");