1 From ea1ecb2257bef3cc0b23c08364436103141999c7 Mon Sep 17 00:00:00 2001
2 From: Yaroslav Rosomakho <yaroslavros@gmail.com>
3 Date: Fri, 23 Aug 2019 11:02:22 +0200
4 Subject: [PATCH 2/2] Limit max_req_size under arm64 (or any other platform
5 that uses swiotlb) to prevent potential buffer overflow due to bouncing.
7 Signed-off-by: Yaroslav Rosomakho <yaroslavros@gmail.com>
9 drivers/mmc/host/bcm2835-mmc.c | 6 +++++-
10 1 file changed, 5 insertions(+), 1 deletion(-)
12 --- a/drivers/mmc/host/bcm2835-mmc.c
13 +++ b/drivers/mmc/host/bcm2835-mmc.c
15 #include <linux/dmaengine.h>
16 #include <linux/dma-mapping.h>
17 #include <linux/of_dma.h>
18 +#include <linux/swiotlb.h>
22 @@ -1377,7 +1378,10 @@ static int bcm2835_mmc_add_host(struct b
26 - mmc->max_req_size = 524288;
27 + if (swiotlb_max_segment())
28 + mmc->max_req_size = (1 << IO_TLB_SHIFT) * IO_TLB_SEGSIZE;
30 + mmc->max_req_size = 524288;
31 mmc->max_seg_size = mmc->max_req_size;
32 mmc->max_blk_size = 512;
33 mmc->max_blk_count = 65535;