]> git.baikalelectronics.ru Git - kernel.git/commit
mmc: sdio: Use multiple scatter/gather list
authorKyoungil Kim <ki0351.kim@samsung.com>
Mon, 22 Oct 2012 11:01:00 +0000 (20:01 +0900)
committerChris Ball <cjb@laptop.org>
Thu, 6 Dec 2012 18:54:43 +0000 (13:54 -0500)
commit617dc3327c70aa8e759c8ec300fedadc74f65714
treea46f677245e219b03e24d4e7c0f0ce405e6b447d
parent9a8f1ee05e077bf22c8b09d11385c97700b97516
mmc: sdio: Use multiple scatter/gather list

Before this patch, we always used only single sg entry for SDIO transfer.
This patch switches to using multiple sg entries. In the case of dwmci,
it supports only up to 4KB size per single sg entry. So if we want to
transfer more than 4KB, we should send more than 1 command.

When we tested before applying this patch, it took around 335 us for
5K(5120) bytes transfer with dwmci controller. After applying this patch,
it takes 242 us for 5K bytes. So this patch makes around 38% performance
improvement for 5K bytes transfer. If the transfer size is bigger, then
the performance improvement ratio will be increased.

Signed-off-by: Kyoungil Kim <ki0351.kim@samsung.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
drivers/mmc/core/sdio_io.c
drivers/mmc/core/sdio_ops.c