memcpy_to/fromio() is badly optimised on x86

From: David Laight
Date: Wed Nov 22 2017 - 05:42:48 EST


I believe that it is valid to use memcpy_to/fromio() to copy
data to/from memory BARs on PCIe cards.

However on x86 they are both aliases for memcpy().

The x86 kernel has several implementations of memcpy().
The 'best' one for the current cpu is selected during boot.

For more recent Intel cpus (probably Haswell and later) the
selected implementation is just 'rep movsb' relying on
the hardware to do all its 'clever' optimisations.

These optimisations are only done for cached addresses,
for uncached ones (and definitely for PCIe ones) single
byte copies are used.
(Verified on 4.13 with a PCIe monitor (of sorts).)

With the typical large read latency of PCIe this makes
memcpy_fromio() particularly painful.

memcpy_to/fromio() should be using 'rep movsd' for
the bulk of the copy.

David