From nobody Thu Dec 18 09:59:09 2025 Received: from szxga05-in.huawei.com (szxga05-in.huawei.com [45.249.212.191]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3C64178F4E for ; Wed, 12 Feb 2025 02:27:21 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.249.212.191 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739327245; cv=none; b=SOjh3bYem6/hY8NARby4+WGTLjVgkPpCKpeAPbc69bwDyb5KnqCXQK3WZ1i53/IdiA+5kW6K8GsZ90Yn4f5DozmED783hkAGerWH4tvIV479vQPqqXBRAwbWmxRS07FuIyetfvcmlGcUKwU0KK+Xc0Tz6P9o/OYRVNzuewuBCSc= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739327245; c=relaxed/simple; bh=MdRCEg6Fuemfg5Akb+vfO7hrp+M2Te7SlW01VaqvV0o=; h=From:To:CC:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=iqyrbAcj14lzqWad6o5+n3WTi4xbpm5DRjDZzQbJJtC9BXMWwmfWV093kVx1hPv+ylAnLO4cSWALhk4ja7mNfCp8/cU12c6/xWnq5AYPfcayDPnAK/opvqFpk9CUFnmUtV/Bs1sIlqSPHVmfkvADfeEZdnSC5tXiXb52Jb/Er9Y= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com; spf=pass smtp.mailfrom=huawei.com; arc=none smtp.client-ip=45.249.212.191 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=huawei.com Received: from mail.maildlp.com (unknown [172.19.162.112]) by szxga05-in.huawei.com (SkyGuard) with ESMTP id 4Yt2DR0dPhz1ltZq; Wed, 12 Feb 2025 10:23:35 +0800 (CST) Received: from kwepemj200003.china.huawei.com (unknown [7.202.194.15]) by mail.maildlp.com (Postfix) with ESMTPS id 52BF5140383; Wed, 12 Feb 2025 10:27:20 +0800 (CST) Received: from localhost.huawei.com (10.90.30.45) by kwepemj200003.china.huawei.com (7.202.194.15) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.11; Wed, 12 Feb 2025 10:27:19 +0800 From: Qinxin Xia To: , CC: , , , , , , , Subject: [PATCH 1/3] dma mapping benchmark: modify the framework to adapt to more map modes Date: Wed, 12 Feb 2025 10:27:16 +0800 Message-ID: <20250212022718.1995504-2-xiaqinxin@huawei.com> X-Mailer: git-send-email 2.33.0 In-Reply-To: <20250212022718.1995504-1-xiaqinxin@huawei.com> References: <20250212022718.1995504-1-xiaqinxin@huawei.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-ClientProxiedBy: dggems704-chm.china.huawei.com (10.3.19.181) To kwepemj200003.china.huawei.com (7.202.194.15) Content-Type: text/plain; charset="utf-8" In this patch map_benchmark abstract in four interface: prepare, unprepare, do_map, do_unmap. When there's a new mode to add, need four steps: 1) Add the mode in map_benchmark.h 2) Defines the mode param, like struct dma_xxx_map_param, and this object will be return in prepare and as input parameter in other ops; 3) Defines the ops functions:prepare, unprepare, do_map, do_unmap. 4) Add the new mode in dma_map_benchmark_ops. Signed-off-by: Qinxin Xia --- include/linux/map_benchmark.h | 6 ++ kernel/dma/map_benchmark.c | 122 +++++++++++++++++++++++++++------- 2 files changed, 105 insertions(+), 23 deletions(-) diff --git a/include/linux/map_benchmark.h b/include/linux/map_benchmark.h index 62674c83bde4..054db02a03a7 100644 --- a/include/linux/map_benchmark.h +++ b/include/linux/map_benchmark.h @@ -15,6 +15,11 @@ #define DMA_MAP_TO_DEVICE 1 #define DMA_MAP_FROM_DEVICE 2 =20 +enum { + DMA_MAP_SINGLE_MODE, + DMA_MAP_MODE_MAX +}; + struct map_benchmark { __u64 avg_map_100ns; /* average map latency in 100ns */ __u64 map_stddev; /* standard deviation of map latency */ @@ -27,5 +32,6 @@ struct map_benchmark { __u32 dma_dir; /* DMA data direction */ __u32 dma_trans_ns; /* time for DMA transmission in ns */ __u32 granule; /* how many PAGE_SIZE will do map/unmap once a time */ + __u8 map_mode; /* the mode of dma map */ }; #endif /* _KERNEL_DMA_BENCHMARK_H */ diff --git a/kernel/dma/map_benchmark.c b/kernel/dma/map_benchmark.c index cc19a3efea89..d8ec0ce058d8 100644 --- a/kernel/dma/map_benchmark.c +++ b/kernel/dma/map_benchmark.c @@ -5,6 +5,7 @@ =20 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt =20 +#include #include #include #include @@ -31,17 +32,98 @@ struct map_benchmark_data { atomic64_t loops; }; =20 +struct map_benchmark_ops { + void *(*prepare)(struct map_benchmark_data *map); + void (*unprepare)(void *arg); + int (*do_map)(void *arg); + int (*do_unmap)(void *arg); +}; + +struct dma_single_map_param { + struct device *dev; + dma_addr_t addr; + void *xbuf; + u32 npages; + u32 dma_dir; +}; + +static void *dma_single_map_benchmark_prepare(struct map_benchmark_data *m= ap) +{ + struct dma_single_map_param *mparam __free(kfree) =3D kzalloc(sizeof(*mpa= ram), + GFP_KERNEL); + if (!mparam) + return NULL; + + mparam->npages =3D map->bparam.granule; + mparam->dma_dir =3D map->bparam.dma_dir; + mparam->dev =3D map->dev; + mparam->xbuf =3D alloc_pages_exact(mparam->npages * PAGE_SIZE, GFP_KERNEL= ); + if (!mparam->xbuf) + return NULL; + + /* + * for a non-coherent device, if we don't stain them in the + * cache, this will give an underestimate of the real-world + * overhead of BIDIRECTIONAL or TO_DEVICE mappings; + * 66 means evertything goes well! 66 is lucky. + */ + if (mparam->dma_dir !=3D DMA_FROM_DEVICE) + memset(mparam->xbuf, 0x66, mparam->npages * PAGE_SIZE); + + return_ptr(mparam); +} + +static void dma_single_map_benchmark_unprepare(void *arg) +{ + struct dma_single_map_param *mparam =3D arg; + + free_pages_exact(mparam->xbuf, mparam->npages * PAGE_SIZE); + kfree(mparam); +} + +static int dma_single_map_benchmark_do_map(void *arg) +{ + struct dma_single_map_param *mparam =3D arg; + + mparam->addr =3D dma_map_single(mparam->dev, mparam->xbuf, + mparam->npages * PAGE_SIZE, mparam->dma_dir); + if (unlikely(dma_mapping_error(mparam->dev, mparam->addr))) { + pr_err("dma_map_single failed on %s\n", dev_name(mparam->dev)); + return -ENOMEM; + } + + return 0; +} + +static int dma_single_map_benchmark_do_unmap(void *arg) +{ + struct dma_single_map_param *mparam =3D arg; + + dma_unmap_single(mparam->dev, mparam->addr, + mparam->npages * PAGE_SIZE, mparam->dma_dir); + return 0; +} + +static struct map_benchmark_ops dma_single_map_benchmark_ops =3D { + .prepare =3D dma_single_map_benchmark_prepare, + .unprepare =3D dma_single_map_benchmark_unprepare, + .do_map =3D dma_single_map_benchmark_do_map, + .do_unmap =3D dma_single_map_benchmark_do_unmap, +}; + +static struct map_benchmark_ops *dma_map_benchmark_ops[DMA_MAP_MODE_MAX] = =3D { + [DMA_MAP_SINGLE_MODE] =3D &dma_single_map_benchmark_ops, +}; + static int map_benchmark_thread(void *data) { - void *buf; - dma_addr_t dma_addr; struct map_benchmark_data *map =3D data; - int npages =3D map->bparam.granule; - u64 size =3D npages * PAGE_SIZE; + __u8 map_mode =3D map->bparam.map_mode; int ret =3D 0; =20 - buf =3D alloc_pages_exact(size, GFP_KERNEL); - if (!buf) + void *arg =3D dma_map_benchmark_ops[map_mode]->prepare(map); + + if (!arg) return -ENOMEM; =20 while (!kthread_should_stop()) { @@ -49,23 +131,10 @@ static int map_benchmark_thread(void *data) ktime_t map_stime, map_etime, unmap_stime, unmap_etime; ktime_t map_delta, unmap_delta; =20 - /* - * for a non-coherent device, if we don't stain them in the - * cache, this will give an underestimate of the real-world - * overhead of BIDIRECTIONAL or TO_DEVICE mappings; - * 66 means evertything goes well! 66 is lucky. - */ - if (map->dir !=3D DMA_FROM_DEVICE) - memset(buf, 0x66, size); - map_stime =3D ktime_get(); - dma_addr =3D dma_map_single(map->dev, buf, size, map->dir); - if (unlikely(dma_mapping_error(map->dev, dma_addr))) { - pr_err("dma_map_single failed on %s\n", - dev_name(map->dev)); - ret =3D -ENOMEM; + ret =3D dma_map_benchmark_ops[map_mode]->do_map(arg); + if (ret) goto out; - } map_etime =3D ktime_get(); map_delta =3D ktime_sub(map_etime, map_stime); =20 @@ -73,7 +142,9 @@ static int map_benchmark_thread(void *data) ndelay(map->bparam.dma_trans_ns); =20 unmap_stime =3D ktime_get(); - dma_unmap_single(map->dev, dma_addr, size, map->dir); + ret =3D dma_map_benchmark_ops[map_mode]->do_unmap(arg); + if (ret) + goto out; unmap_etime =3D ktime_get(); unmap_delta =3D ktime_sub(unmap_etime, unmap_stime); =20 @@ -108,7 +179,7 @@ static int map_benchmark_thread(void *data) } =20 out: - free_pages_exact(buf, size); + dma_map_benchmark_ops[map_mode]->unprepare(arg); return ret; } =20 @@ -209,6 +280,11 @@ static long map_benchmark_ioctl(struct file *file, uns= igned int cmd, =20 switch (cmd) { case DMA_MAP_BENCHMARK: + if (map->bparam.map_mode >=3D DMA_MAP_MODE_MAX) { + pr_err("invalid map mode\n"); + return -EINVAL; + } + if (map->bparam.threads =3D=3D 0 || map->bparam.threads > DMA_MAP_MAX_THREADS) { pr_err("invalid thread number\n"); --=20 2.33.0 From nobody Thu Dec 18 09:59:09 2025 Received: from szxga07-in.huawei.com (szxga07-in.huawei.com [45.249.212.35]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 1BABC1C5490 for ; Wed, 12 Feb 2025 02:27:22 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.249.212.35 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739327244; cv=none; b=JIXemmHB+CCUePcV8365Ir2Y4umwvLtLanYY/Nn2tTn0Z/19yczg8toegut7GdgTpkYNREqP1+vDlhssxidjLVAogCQbRU9fGVj95jy8Sh0rSRMxZTVbKA8o7fRVLAj8LigozFbP4qhC33fNyaSEw+Ve8L+70rkzGpSEx6ltkU0= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739327244; c=relaxed/simple; bh=yXGqKcJon/u8mbx1iNo+l7Z19hSzslXlgUOdkIET56U=; h=From:To:CC:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=Zqtzz712kXLklCpIhkWV13jz9XOGhJWHwWkGj6G9UneMTqwlu4AGL22V4cvEwHXJrupT617baU+0cmmBNXUlsYDteusFS6A/2o23pBePI5eluTOfoIOtkHUxffQVoAbUmwZSbmIsKD67W4dgS2v4b1D98fkH9j9mpSabGsIjedg= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com; spf=pass smtp.mailfrom=huawei.com; arc=none smtp.client-ip=45.249.212.35 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=huawei.com Received: from mail.maildlp.com (unknown [172.19.88.214]) by szxga07-in.huawei.com (SkyGuard) with ESMTP id 4Yt2DQ5XNvz1V6b9; Wed, 12 Feb 2025 10:23:34 +0800 (CST) Received: from kwepemj200003.china.huawei.com (unknown [7.202.194.15]) by mail.maildlp.com (Postfix) with ESMTPS id C02C41A016C; Wed, 12 Feb 2025 10:27:20 +0800 (CST) Received: from localhost.huawei.com (10.90.30.45) by kwepemj200003.china.huawei.com (7.202.194.15) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.11; Wed, 12 Feb 2025 10:27:20 +0800 From: Qinxin Xia To: , CC: , , , , , , , Subject: [PATCH 2/3] dma-mapping: benchmark: add support for dma_map_sg Date: Wed, 12 Feb 2025 10:27:17 +0800 Message-ID: <20250212022718.1995504-3-xiaqinxin@huawei.com> X-Mailer: git-send-email 2.33.0 In-Reply-To: <20250212022718.1995504-1-xiaqinxin@huawei.com> References: <20250212022718.1995504-1-xiaqinxin@huawei.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-ClientProxiedBy: dggems704-chm.china.huawei.com (10.3.19.181) To kwepemj200003.china.huawei.com (7.202.194.15) Content-Type: text/plain; charset="utf-8" Support for dma scatter-gather mapping and is intended for testing mapping performance. It achieves by introducing the dma_sg_map_param structure and related functions, which enable the implementation of scatter-gather mapping preparation, mapping, and unmapping operations. Additionally, the dma_map_benchmark_ops array is updated to include operations for scatter-gather mapping. This commit aims to provide a wider range of mapping performance test to cater to different scenarios. Signed-off-by: Qinxin Xia --- include/linux/map_benchmark.h | 1 + kernel/dma/map_benchmark.c | 102 ++++++++++++++++++++++++++++++++++ 2 files changed, 103 insertions(+) diff --git a/include/linux/map_benchmark.h b/include/linux/map_benchmark.h index 054db02a03a7..a9c1a104ba4f 100644 --- a/include/linux/map_benchmark.h +++ b/include/linux/map_benchmark.h @@ -17,6 +17,7 @@ =20 enum { DMA_MAP_SINGLE_MODE, + DMA_MAP_SG_MODE, DMA_MAP_MODE_MAX }; =20 diff --git a/kernel/dma/map_benchmark.c b/kernel/dma/map_benchmark.c index d8ec0ce058d8..b5828eeb3db7 100644 --- a/kernel/dma/map_benchmark.c +++ b/kernel/dma/map_benchmark.c @@ -17,6 +17,7 @@ #include #include #include +#include #include #include =20 @@ -111,8 +112,109 @@ static struct map_benchmark_ops dma_single_map_benchm= ark_ops =3D { .do_unmap =3D dma_single_map_benchmark_do_unmap, }; =20 +struct dma_sg_map_param { + struct sg_table sgt; + struct device *dev; + void **buf; + u32 npages; + u32 dma_dir; +}; + +static void *dma_sg_map_benchmark_prepare(struct map_benchmark_data *map) +{ + struct scatterlist *sg; + int i =3D 0; + + struct dma_sg_map_param *mparam __free(kfree) =3D kzalloc(sizeof(*mparam)= , GFP_KERNEL); + if (!mparam) + return NULL; + + mparam->npages =3D map->bparam.granule; + mparam->dma_dir =3D map->bparam.dma_dir; + mparam->dev =3D map->dev; + mparam->buf =3D kmalloc_array(mparam->npages, sizeof(*mparam->buf), + GFP_KERNEL); + if (!mparam->buf) + goto err1; + + if (sg_alloc_table(&mparam->sgt, mparam->npages, GFP_KERNEL)) + goto err2; + + for_each_sgtable_sg(&mparam->sgt, sg, i) { + mparam->buf[i] =3D (void *)__get_free_page(GFP_KERNEL); + if (!mparam->buf[i]) + goto err3; + + if (mparam->dma_dir !=3D DMA_FROM_DEVICE) + memset(mparam->buf[i], 0x66, PAGE_SIZE); + + sg_set_buf(sg, mparam->buf[i], PAGE_SIZE); + } + + return_ptr(mparam); + +err3: + while (i-- > 0) + free_page((unsigned long)mparam->buf[i]); + + pr_err("dma_map_sg failed get free page on %s\n", dev_name(mparam->dev)); + sg_free_table(&mparam->sgt); +err2: + pr_err("dma_map_sg failed alloc sg table on %s\n", dev_name(mparam->dev)); + kfree(mparam->buf); +err1: + pr_err("dma_map_sg failed alloc mparam buf on %s\n", dev_name(mparam->dev= )); + return NULL; +} + +static void dma_sg_map_benchmark_unprepare(void *arg) +{ + struct dma_sg_map_param *mparam =3D arg; + int i; + + for (i =3D 0; i < mparam->npages; i++) + free_page((unsigned long)mparam->buf[i]); + + sg_free_table(&mparam->sgt); + + kfree(mparam->buf); + kfree(mparam); +} + +static int dma_sg_map_benchmark_do_map(void *arg) +{ + struct dma_sg_map_param *mparam =3D arg; + + int sg_mapped =3D dma_map_sg(mparam->dev, mparam->sgt.sgl, + mparam->npages, mparam->dma_dir); + if (!sg_mapped) { + pr_err("dma_map_sg failed on %s\n", dev_name(mparam->dev)); + return -ENOMEM; + } + + return 0; +} + +static int dma_sg_map_benchmark_do_unmap(void *arg) +{ + struct dma_sg_map_param *mparam =3D arg; + + dma_unmap_sg(mparam->dev, mparam->sgt.sgl, mparam->npages, + mparam->dma_dir); + + return 0; +} + +static struct map_benchmark_ops dma_sg_map_benchmark_ops =3D { + .prepare =3D dma_sg_map_benchmark_prepare, + .unprepare =3D dma_sg_map_benchmark_unprepare, + .do_map =3D dma_sg_map_benchmark_do_map, + .do_unmap =3D dma_sg_map_benchmark_do_unmap, +}; + static struct map_benchmark_ops *dma_map_benchmark_ops[DMA_MAP_MODE_MAX] = =3D { [DMA_MAP_SINGLE_MODE] =3D &dma_single_map_benchmark_ops, + [DMA_MAP_SG_MODE] =3D &dma_sg_map_benchmark_ops, }; =20 static int map_benchmark_thread(void *data) --=20 2.33.0 From nobody Thu Dec 18 09:59:09 2025 Received: from szxga07-in.huawei.com (szxga07-in.huawei.com [45.249.212.35]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 17C7A1C3BEE for ; Wed, 12 Feb 2025 02:27:22 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.249.212.35 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739327244; cv=none; b=OT3LcZon9kzKfllUiEAZpAPvHPstkpMqbLJwTdKXSyEYfk19QrWGGvP2rfNGP81dpskJUfEi/Cz3x5NTDEuFAykJooB/zQC78kMv5tNWEJvOsYndIUJkVGjv0C+/5xoPLATLU7Pxjt66qnUo9k0MxOQO+La47WUrjlZmZnkmpjo= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739327244; c=relaxed/simple; bh=OvePDz61hU89iP6mjSJW/9XhetJ3HI8k3T4tIuDg20o=; h=From:To:CC:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=fjo5Sje3ofJFPj4I2p3U13adOEQhhrtK7YDN2SjO4o3rPBS9eYrsIsj920zZe9/xN2D24gPQrGsWqlS2PbpnFThR1i29BSVO6O+mbSJlaiKHJqgQMcN5GENZJFDKXozoP7iB241+o0ir+4FUnKIdot7fXvEF3oL/dXjF+tbI01c= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com; spf=pass smtp.mailfrom=huawei.com; arc=none smtp.client-ip=45.249.212.35 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=huawei.com Received: from mail.maildlp.com (unknown [172.19.88.234]) by szxga07-in.huawei.com (SkyGuard) with ESMTP id 4Yt2DR1mdgz1V6bL; Wed, 12 Feb 2025 10:23:35 +0800 (CST) Received: from kwepemj200003.china.huawei.com (unknown [7.202.194.15]) by mail.maildlp.com (Postfix) with ESMTPS id 3B2C6140119; Wed, 12 Feb 2025 10:27:21 +0800 (CST) Received: from localhost.huawei.com (10.90.30.45) by kwepemj200003.china.huawei.com (7.202.194.15) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.11; Wed, 12 Feb 2025 10:27:20 +0800 From: Qinxin Xia To: , CC: , , , , , , , Subject: [PATCH 3/3] dma mapping benchmark:add support for dma_map_sg Date: Wed, 12 Feb 2025 10:27:18 +0800 Message-ID: <20250212022718.1995504-4-xiaqinxin@huawei.com> X-Mailer: git-send-email 2.33.0 In-Reply-To: <20250212022718.1995504-1-xiaqinxin@huawei.com> References: <20250212022718.1995504-1-xiaqinxin@huawei.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-ClientProxiedBy: dggems704-chm.china.huawei.com (10.3.19.181) To kwepemj200003.china.huawei.com (7.202.194.15) Content-Type: text/plain; charset="utf-8" Support for dma_map_sg, add option '-m' to distinguish mode. i) Users can set option '-m' to select mode: DMA_MAP_SINGLE_MODE=3D0, DMA_MAP_SG_MODE:=3D1 (The mode is also show in the test result). ii) Users can set option '-g' to set sg_nents (total count of entries in scatterlist) the maximum number is 1024. Each of sg buf size is PAGE_SIZE. e.g [root@localhost]# ./dma_map_benchmark -m 1 -g 8 -t 8 -s 30 -d 2 dma mapping mode: DMA_MAP_SG_MODE dma mapping benchmark: threads:8 seconds:30 node:-1 dir:FROM_DEVICE granule/sg_nents: 8 average map latency(us):1.4 standard deviation:0.3 average unmap latency(us):1.3 standard deviation:0.3 [root@localhost]# ./dma_map_benchmark -m 0 -g 8 -t 8 -s 30 -d 2 dma mapping mode: DMA_MAP_SINGLE_MODE dma mapping benchmark: threads:8 seconds:30 node:-1 dir:FROM_DEVICE granule/sg_nents: 8 average map latency(us):1.0 standard deviation:0.3 average unmap latency(us):1.3 standard deviation:0.5 Signed-off-by: Qinxin Xia --- tools/testing/selftests/dma/dma_map_benchmark.c | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/tools/testing/selftests/dma/dma_map_benchmark.c b/tools/testin= g/selftests/dma/dma_map_benchmark.c index b12f1f9babf8..036ddb5ac862 100644 --- a/tools/testing/selftests/dma/dma_map_benchmark.c +++ b/tools/testing/selftests/dma/dma_map_benchmark.c @@ -27,6 +27,7 @@ int main(int argc, char **argv) int fd, opt; /* default single thread, run 20 seconds on NUMA_NO_NODE */ int threads =3D 1, seconds =3D 20, node =3D -1; + int map_mode =3D DMA_MAP_SINGLE_MODE; /* default dma mask 32bit, bidirectional DMA */ int bits =3D 32, xdelay =3D 0, dir =3D DMA_MAP_BIDIRECTIONAL; /* default granule 1 PAGESIZE */ @@ -34,7 +35,7 @@ int main(int argc, char **argv) =20 int cmd =3D DMA_MAP_BENCHMARK; =20 - while ((opt =3D getopt(argc, argv, "t:s:n:b:d:x:g:")) !=3D -1) { + while ((opt =3D getopt(argc, argv, "t:s:n:b:d:x:g:m:")) !=3D -1) { switch (opt) { case 't': threads =3D atoi(optarg); @@ -57,11 +58,20 @@ int main(int argc, char **argv) case 'g': granule =3D atoi(optarg); break; + case 'm': + map_mode =3D atoi(optarg); + break; default: return -1; } } =20 + if (map_mode >=3D DMA_MAP_MODE_MAX) { + fprintf(stderr, "invalid map mode, DMA_MAP_SINGLE_MODE:%d, DMA_MAP_SG_MO= DE:%d\n", + DMA_MAP_SINGLE_MODE, DMA_MAP_SG_MODE); + exit(1); + } + if (threads <=3D 0 || threads > DMA_MAP_MAX_THREADS) { fprintf(stderr, "invalid number of threads, must be in 1-%d\n", DMA_MAP_MAX_THREADS); @@ -111,13 +121,15 @@ int main(int argc, char **argv) map.dma_dir =3D dir; map.dma_trans_ns =3D xdelay; map.granule =3D granule; + map.map_mode =3D map_mode; =20 if (ioctl(fd, cmd, &map)) { perror("ioctl"); exit(1); } =20 - printf("dma mapping benchmark: threads:%d seconds:%d node:%d dir:%s granu= le: %d\n", + printf("dma mapping mode: %d\n", map_mode); + printf("dma mapping benchmark: threads:%d seconds:%d node:%d dir:%s granu= le/sg_nents: %d\n", threads, seconds, node, dir[directions], granule); printf("average map latency(us):%.1f standard deviation:%.1f\n", map.avg_map_100ns/10.0, map.map_stddev/10.0); --=20 2.33.0