]> 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)
commit72a0abb7be473ef4e0cc36598379af612a58fc1e
treea46f677245e219b03e24d4e7c0f0ce405e6b447d
parentc5339c933ce07bb164aef9fca36b8a91db9264d1
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