Merge tag 'block-5.11-2021-01-10' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / drivers / infiniband / hw / hfi1 / pio_copy.c
blob4a4ec23978579bc31faa553eaf18140200621881
1 /*
2 * Copyright(c) 2015, 2016 Intel Corporation.
4 * This file is provided under a dual BSD/GPLv2 license. When using or
5 * redistributing this file, you may do so under either license.
7 * GPL LICENSE SUMMARY
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * BSD LICENSE
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
24 * - Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * - Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in
28 * the documentation and/or other materials provided with the
29 * distribution.
30 * - Neither the name of Intel Corporation nor the names of its
31 * contributors may be used to endorse or promote products derived
32 * from this software without specific prior written permission.
34 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
35 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
36 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
37 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
38 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
39 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
40 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
43 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
44 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
48 #include "hfi.h"
50 /* additive distance between non-SOP and SOP space */
51 #define SOP_DISTANCE (TXE_PIO_SIZE / 2)
52 #define PIO_BLOCK_MASK (PIO_BLOCK_SIZE - 1)
53 /* number of QUADWORDs in a block */
54 #define PIO_BLOCK_QWS (PIO_BLOCK_SIZE / sizeof(u64))
56 /**
57 * pio_copy - copy data block to MMIO space
58 * @pbuf: a number of blocks allocated within a PIO send context
59 * @pbc: PBC to send
60 * @from: source, must be 8 byte aligned
61 * @count: number of DWORD (32-bit) quantities to copy from source
63 * Copy data from source to PIO Send Buffer memory, 8 bytes at a time.
64 * Must always write full BLOCK_SIZE bytes blocks. The first block must
65 * be written to the corresponding SOP=1 address.
67 * Known:
68 * o pbuf->start always starts on a block boundary
69 * o pbuf can wrap only at a block boundary
71 void pio_copy(struct hfi1_devdata *dd, struct pio_buf *pbuf, u64 pbc,
72 const void *from, size_t count)
74 void __iomem *dest = pbuf->start + SOP_DISTANCE;
75 void __iomem *send = dest + PIO_BLOCK_SIZE;
76 void __iomem *dend; /* 8-byte data end */
78 /* write the PBC */
79 writeq(pbc, dest);
80 dest += sizeof(u64);
82 /* calculate where the QWORD data ends - in SOP=1 space */
83 dend = dest + ((count >> 1) * sizeof(u64));
85 if (dend < send) {
87 * all QWORD data is within the SOP block, does *not*
88 * reach the end of the SOP block
91 while (dest < dend) {
92 writeq(*(u64 *)from, dest);
93 from += sizeof(u64);
94 dest += sizeof(u64);
97 * No boundary checks are needed here:
98 * 0. We're not on the SOP block boundary
99 * 1. The possible DWORD dangle will still be within
100 * the SOP block
101 * 2. We cannot wrap except on a block boundary.
103 } else {
104 /* QWORD data extends _to_ or beyond the SOP block */
106 /* write 8-byte SOP chunk data */
107 while (dest < send) {
108 writeq(*(u64 *)from, dest);
109 from += sizeof(u64);
110 dest += sizeof(u64);
112 /* drop out of the SOP range */
113 dest -= SOP_DISTANCE;
114 dend -= SOP_DISTANCE;
117 * If the wrap comes before or matches the data end,
118 * copy until until the wrap, then wrap.
120 * If the data ends at the end of the SOP above and
121 * the buffer wraps, then pbuf->end == dend == dest
122 * and nothing will get written, but we will wrap in
123 * case there is a dangling DWORD.
125 if (pbuf->end <= dend) {
126 while (dest < pbuf->end) {
127 writeq(*(u64 *)from, dest);
128 from += sizeof(u64);
129 dest += sizeof(u64);
132 dest -= pbuf->sc->size;
133 dend -= pbuf->sc->size;
136 /* write 8-byte non-SOP, non-wrap chunk data */
137 while (dest < dend) {
138 writeq(*(u64 *)from, dest);
139 from += sizeof(u64);
140 dest += sizeof(u64);
143 /* at this point we have wrapped if we are going to wrap */
145 /* write dangling u32, if any */
146 if (count & 1) {
147 union mix val;
149 val.val64 = 0;
150 val.val32[0] = *(u32 *)from;
151 writeq(val.val64, dest);
152 dest += sizeof(u64);
155 * fill in rest of block, no need to check pbuf->end
156 * as we only wrap on a block boundary
158 while (((unsigned long)dest & PIO_BLOCK_MASK) != 0) {
159 writeq(0, dest);
160 dest += sizeof(u64);
163 /* finished with this buffer */
164 this_cpu_dec(*pbuf->sc->buffers_allocated);
165 preempt_enable();
169 * Handle carry bytes using shifts and masks.
171 * NOTE: the value the unused portion of carry is expected to always be zero.
175 * "zero" shift - bit shift used to zero out upper bytes. Input is
176 * the count of LSB bytes to preserve.
178 #define zshift(x) (8 * (8 - (x)))
181 * "merge" shift - bit shift used to merge with carry bytes. Input is
182 * the LSB byte count to move beyond.
184 #define mshift(x) (8 * (x))
187 * Jump copy - no-loop copy for < 8 bytes.
189 static inline void jcopy(u8 *dest, const u8 *src, u32 n)
191 switch (n) {
192 case 7:
193 *dest++ = *src++;
194 fallthrough;
195 case 6:
196 *dest++ = *src++;
197 fallthrough;
198 case 5:
199 *dest++ = *src++;
200 fallthrough;
201 case 4:
202 *dest++ = *src++;
203 fallthrough;
204 case 3:
205 *dest++ = *src++;
206 fallthrough;
207 case 2:
208 *dest++ = *src++;
209 fallthrough;
210 case 1:
211 *dest++ = *src++;
216 * Read nbytes from "from" and and place them in the low bytes
217 * of pbuf->carry. Other bytes are left as-is. Any previous
218 * value in pbuf->carry is lost.
220 * NOTES:
221 * o do not read from from if nbytes is zero
222 * o from may _not_ be u64 aligned.
224 static inline void read_low_bytes(struct pio_buf *pbuf, const void *from,
225 unsigned int nbytes)
227 pbuf->carry.val64 = 0;
228 jcopy(&pbuf->carry.val8[0], from, nbytes);
229 pbuf->carry_bytes = nbytes;
233 * Read nbytes bytes from "from" and put them at the end of pbuf->carry.
234 * It is expected that the extra read does not overfill carry.
236 * NOTES:
237 * o from may _not_ be u64 aligned
238 * o nbytes may span a QW boundary
240 static inline void read_extra_bytes(struct pio_buf *pbuf,
241 const void *from, unsigned int nbytes)
243 jcopy(&pbuf->carry.val8[pbuf->carry_bytes], from, nbytes);
244 pbuf->carry_bytes += nbytes;
248 * Write a quad word using parts of pbuf->carry and the next 8 bytes of src.
249 * Put the unused part of the next 8 bytes of src into the LSB bytes of
250 * pbuf->carry with the upper bytes zeroed..
252 * NOTES:
253 * o result must keep unused bytes zeroed
254 * o src must be u64 aligned
256 static inline void merge_write8(
257 struct pio_buf *pbuf,
258 void __iomem *dest,
259 const void *src)
261 u64 new, temp;
263 new = *(u64 *)src;
264 temp = pbuf->carry.val64 | (new << mshift(pbuf->carry_bytes));
265 writeq(temp, dest);
266 pbuf->carry.val64 = new >> zshift(pbuf->carry_bytes);
270 * Write a quad word using all bytes of carry.
272 static inline void carry8_write8(union mix carry, void __iomem *dest)
274 writeq(carry.val64, dest);
278 * Write a quad word using all the valid bytes of carry. If carry
279 * has zero valid bytes, nothing is written.
280 * Returns 0 on nothing written, non-zero on quad word written.
282 static inline int carry_write8(struct pio_buf *pbuf, void __iomem *dest)
284 if (pbuf->carry_bytes) {
285 /* unused bytes are always kept zeroed, so just write */
286 writeq(pbuf->carry.val64, dest);
287 return 1;
290 return 0;
294 * Segmented PIO Copy - start
296 * Start a PIO copy.
298 * @pbuf: destination buffer
299 * @pbc: the PBC for the PIO buffer
300 * @from: data source, QWORD aligned
301 * @nbytes: bytes to copy
303 void seg_pio_copy_start(struct pio_buf *pbuf, u64 pbc,
304 const void *from, size_t nbytes)
306 void __iomem *dest = pbuf->start + SOP_DISTANCE;
307 void __iomem *send = dest + PIO_BLOCK_SIZE;
308 void __iomem *dend; /* 8-byte data end */
310 writeq(pbc, dest);
311 dest += sizeof(u64);
313 /* calculate where the QWORD data ends - in SOP=1 space */
314 dend = dest + ((nbytes >> 3) * sizeof(u64));
316 if (dend < send) {
318 * all QWORD data is within the SOP block, does *not*
319 * reach the end of the SOP block
322 while (dest < dend) {
323 writeq(*(u64 *)from, dest);
324 from += sizeof(u64);
325 dest += sizeof(u64);
328 * No boundary checks are needed here:
329 * 0. We're not on the SOP block boundary
330 * 1. The possible DWORD dangle will still be within
331 * the SOP block
332 * 2. We cannot wrap except on a block boundary.
334 } else {
335 /* QWORD data extends _to_ or beyond the SOP block */
337 /* write 8-byte SOP chunk data */
338 while (dest < send) {
339 writeq(*(u64 *)from, dest);
340 from += sizeof(u64);
341 dest += sizeof(u64);
343 /* drop out of the SOP range */
344 dest -= SOP_DISTANCE;
345 dend -= SOP_DISTANCE;
348 * If the wrap comes before or matches the data end,
349 * copy until until the wrap, then wrap.
351 * If the data ends at the end of the SOP above and
352 * the buffer wraps, then pbuf->end == dend == dest
353 * and nothing will get written, but we will wrap in
354 * case there is a dangling DWORD.
356 if (pbuf->end <= dend) {
357 while (dest < pbuf->end) {
358 writeq(*(u64 *)from, dest);
359 from += sizeof(u64);
360 dest += sizeof(u64);
363 dest -= pbuf->sc->size;
364 dend -= pbuf->sc->size;
367 /* write 8-byte non-SOP, non-wrap chunk data */
368 while (dest < dend) {
369 writeq(*(u64 *)from, dest);
370 from += sizeof(u64);
371 dest += sizeof(u64);
374 /* at this point we have wrapped if we are going to wrap */
376 /* ...but it doesn't matter as we're done writing */
378 /* save dangling bytes, if any */
379 read_low_bytes(pbuf, from, nbytes & 0x7);
381 pbuf->qw_written = 1 /*PBC*/ + (nbytes >> 3);
385 * Mid copy helper, "mixed case" - source is 64-bit aligned but carry
386 * bytes are non-zero.
388 * Whole u64s must be written to the chip, so bytes must be manually merged.
390 * @pbuf: destination buffer
391 * @from: data source, is QWORD aligned.
392 * @nbytes: bytes to copy
394 * Must handle nbytes < 8.
396 static void mid_copy_mix(struct pio_buf *pbuf, const void *from, size_t nbytes)
398 void __iomem *dest = pbuf->start + (pbuf->qw_written * sizeof(u64));
399 void __iomem *dend; /* 8-byte data end */
400 unsigned long qw_to_write = nbytes >> 3;
401 unsigned long bytes_left = nbytes & 0x7;
403 /* calculate 8-byte data end */
404 dend = dest + (qw_to_write * sizeof(u64));
406 if (pbuf->qw_written < PIO_BLOCK_QWS) {
408 * Still within SOP block. We don't need to check for
409 * wrap because we are still in the first block and
410 * can only wrap on block boundaries.
412 void __iomem *send; /* SOP end */
413 void __iomem *xend;
416 * calculate the end of data or end of block, whichever
417 * comes first
419 send = pbuf->start + PIO_BLOCK_SIZE;
420 xend = min(send, dend);
422 /* shift up to SOP=1 space */
423 dest += SOP_DISTANCE;
424 xend += SOP_DISTANCE;
426 /* write 8-byte chunk data */
427 while (dest < xend) {
428 merge_write8(pbuf, dest, from);
429 from += sizeof(u64);
430 dest += sizeof(u64);
433 /* shift down to SOP=0 space */
434 dest -= SOP_DISTANCE;
437 * At this point dest could be (either, both, or neither):
438 * - at dend
439 * - at the wrap
443 * If the wrap comes before or matches the data end,
444 * copy until until the wrap, then wrap.
446 * If dest is at the wrap, we will fall into the if,
447 * not do the loop, when wrap.
449 * If the data ends at the end of the SOP above and
450 * the buffer wraps, then pbuf->end == dend == dest
451 * and nothing will get written.
453 if (pbuf->end <= dend) {
454 while (dest < pbuf->end) {
455 merge_write8(pbuf, dest, from);
456 from += sizeof(u64);
457 dest += sizeof(u64);
460 dest -= pbuf->sc->size;
461 dend -= pbuf->sc->size;
464 /* write 8-byte non-SOP, non-wrap chunk data */
465 while (dest < dend) {
466 merge_write8(pbuf, dest, from);
467 from += sizeof(u64);
468 dest += sizeof(u64);
471 pbuf->qw_written += qw_to_write;
473 /* handle carry and left-over bytes */
474 if (pbuf->carry_bytes + bytes_left >= 8) {
475 unsigned long nread;
477 /* there is enough to fill another qw - fill carry */
478 nread = 8 - pbuf->carry_bytes;
479 read_extra_bytes(pbuf, from, nread);
482 * One more write - but need to make sure dest is correct.
483 * Check for wrap and the possibility the write
484 * should be in SOP space.
486 * The two checks immediately below cannot both be true, hence
487 * the else. If we have wrapped, we cannot still be within the
488 * first block. Conversely, if we are still in the first block,
489 * we cannot have wrapped. We do the wrap check first as that
490 * is more likely.
492 /* adjust if we have wrapped */
493 if (dest >= pbuf->end)
494 dest -= pbuf->sc->size;
495 /* jump to the SOP range if within the first block */
496 else if (pbuf->qw_written < PIO_BLOCK_QWS)
497 dest += SOP_DISTANCE;
499 /* flush out full carry */
500 carry8_write8(pbuf->carry, dest);
501 pbuf->qw_written++;
503 /* now adjust and read the rest of the bytes into carry */
504 bytes_left -= nread;
505 from += nread; /* from is now not aligned */
506 read_low_bytes(pbuf, from, bytes_left);
507 } else {
508 /* not enough to fill another qw, append the rest to carry */
509 read_extra_bytes(pbuf, from, bytes_left);
514 * Mid copy helper, "straight case" - source pointer is 64-bit aligned
515 * with no carry bytes.
517 * @pbuf: destination buffer
518 * @from: data source, is QWORD aligned
519 * @nbytes: bytes to copy
521 * Must handle nbytes < 8.
523 static void mid_copy_straight(struct pio_buf *pbuf,
524 const void *from, size_t nbytes)
526 void __iomem *dest = pbuf->start + (pbuf->qw_written * sizeof(u64));
527 void __iomem *dend; /* 8-byte data end */
529 /* calculate 8-byte data end */
530 dend = dest + ((nbytes >> 3) * sizeof(u64));
532 if (pbuf->qw_written < PIO_BLOCK_QWS) {
534 * Still within SOP block. We don't need to check for
535 * wrap because we are still in the first block and
536 * can only wrap on block boundaries.
538 void __iomem *send; /* SOP end */
539 void __iomem *xend;
542 * calculate the end of data or end of block, whichever
543 * comes first
545 send = pbuf->start + PIO_BLOCK_SIZE;
546 xend = min(send, dend);
548 /* shift up to SOP=1 space */
549 dest += SOP_DISTANCE;
550 xend += SOP_DISTANCE;
552 /* write 8-byte chunk data */
553 while (dest < xend) {
554 writeq(*(u64 *)from, dest);
555 from += sizeof(u64);
556 dest += sizeof(u64);
559 /* shift down to SOP=0 space */
560 dest -= SOP_DISTANCE;
563 * At this point dest could be (either, both, or neither):
564 * - at dend
565 * - at the wrap
569 * If the wrap comes before or matches the data end,
570 * copy until until the wrap, then wrap.
572 * If dest is at the wrap, we will fall into the if,
573 * not do the loop, when wrap.
575 * If the data ends at the end of the SOP above and
576 * the buffer wraps, then pbuf->end == dend == dest
577 * and nothing will get written.
579 if (pbuf->end <= dend) {
580 while (dest < pbuf->end) {
581 writeq(*(u64 *)from, dest);
582 from += sizeof(u64);
583 dest += sizeof(u64);
586 dest -= pbuf->sc->size;
587 dend -= pbuf->sc->size;
590 /* write 8-byte non-SOP, non-wrap chunk data */
591 while (dest < dend) {
592 writeq(*(u64 *)from, dest);
593 from += sizeof(u64);
594 dest += sizeof(u64);
597 /* we know carry_bytes was zero on entry to this routine */
598 read_low_bytes(pbuf, from, nbytes & 0x7);
600 pbuf->qw_written += nbytes >> 3;
604 * Segmented PIO Copy - middle
606 * Must handle any aligned tail and any aligned source with any byte count.
608 * @pbuf: a number of blocks allocated within a PIO send context
609 * @from: data source
610 * @nbytes: number of bytes to copy
612 void seg_pio_copy_mid(struct pio_buf *pbuf, const void *from, size_t nbytes)
614 unsigned long from_align = (unsigned long)from & 0x7;
616 if (pbuf->carry_bytes + nbytes < 8) {
617 /* not enough bytes to fill a QW */
618 read_extra_bytes(pbuf, from, nbytes);
619 return;
622 if (from_align) {
623 /* misaligned source pointer - align it */
624 unsigned long to_align;
626 /* bytes to read to align "from" */
627 to_align = 8 - from_align;
630 * In the advance-to-alignment logic below, we do not need
631 * to check if we are using more than nbytes. This is because
632 * if we are here, we already know that carry+nbytes will
633 * fill at least one QW.
635 if (pbuf->carry_bytes + to_align < 8) {
636 /* not enough align bytes to fill a QW */
637 read_extra_bytes(pbuf, from, to_align);
638 from += to_align;
639 nbytes -= to_align;
640 } else {
641 /* bytes to fill carry */
642 unsigned long to_fill = 8 - pbuf->carry_bytes;
643 /* bytes left over to be read */
644 unsigned long extra = to_align - to_fill;
645 void __iomem *dest;
647 /* fill carry... */
648 read_extra_bytes(pbuf, from, to_fill);
649 from += to_fill;
650 nbytes -= to_fill;
651 /* may not be enough valid bytes left to align */
652 if (extra > nbytes)
653 extra = nbytes;
655 /* ...now write carry */
656 dest = pbuf->start + (pbuf->qw_written * sizeof(u64));
659 * The two checks immediately below cannot both be
660 * true, hence the else. If we have wrapped, we
661 * cannot still be within the first block.
662 * Conversely, if we are still in the first block, we
663 * cannot have wrapped. We do the wrap check first
664 * as that is more likely.
666 /* adjust if we've wrapped */
667 if (dest >= pbuf->end)
668 dest -= pbuf->sc->size;
669 /* jump to SOP range if within the first block */
670 else if (pbuf->qw_written < PIO_BLOCK_QWS)
671 dest += SOP_DISTANCE;
673 carry8_write8(pbuf->carry, dest);
674 pbuf->qw_written++;
676 /* read any extra bytes to do final alignment */
677 /* this will overwrite anything in pbuf->carry */
678 read_low_bytes(pbuf, from, extra);
679 from += extra;
680 nbytes -= extra;
682 * If no bytes are left, return early - we are done.
683 * NOTE: This short-circuit is *required* because
684 * "extra" may have been reduced in size and "from"
685 * is not aligned, as required when leaving this
686 * if block.
688 if (nbytes == 0)
689 return;
692 /* at this point, from is QW aligned */
695 if (pbuf->carry_bytes)
696 mid_copy_mix(pbuf, from, nbytes);
697 else
698 mid_copy_straight(pbuf, from, nbytes);
702 * Segmented PIO Copy - end
704 * Write any remainder (in pbuf->carry) and finish writing the whole block.
706 * @pbuf: a number of blocks allocated within a PIO send context
708 void seg_pio_copy_end(struct pio_buf *pbuf)
710 void __iomem *dest = pbuf->start + (pbuf->qw_written * sizeof(u64));
713 * The two checks immediately below cannot both be true, hence the
714 * else. If we have wrapped, we cannot still be within the first
715 * block. Conversely, if we are still in the first block, we
716 * cannot have wrapped. We do the wrap check first as that is
717 * more likely.
719 /* adjust if we have wrapped */
720 if (dest >= pbuf->end)
721 dest -= pbuf->sc->size;
722 /* jump to the SOP range if within the first block */
723 else if (pbuf->qw_written < PIO_BLOCK_QWS)
724 dest += SOP_DISTANCE;
726 /* write final bytes, if any */
727 if (carry_write8(pbuf, dest)) {
728 dest += sizeof(u64);
730 * NOTE: We do not need to recalculate whether dest needs
731 * SOP_DISTANCE or not.
733 * If we are in the first block and the dangle write
734 * keeps us in the same block, dest will need
735 * to retain SOP_DISTANCE in the loop below.
737 * If we are in the first block and the dangle write pushes
738 * us to the next block, then loop below will not run
739 * and dest is not used. Hence we do not need to update
740 * it.
742 * If we are past the first block, then SOP_DISTANCE
743 * was never added, so there is nothing to do.
747 /* fill in rest of block */
748 while (((unsigned long)dest & PIO_BLOCK_MASK) != 0) {
749 writeq(0, dest);
750 dest += sizeof(u64);
753 /* finished with this buffer */
754 this_cpu_dec(*pbuf->sc->buffers_allocated);
755 preempt_enable();