* [PATCH] accel/ivpu: Extend address range for MMU mmap
@ 2023-10-18 11:01 Stanislaw Gruszka
2023-10-19 6:05 ` Stanislaw Gruszka
0 siblings, 1 reply; 2+ messages in thread
From: Stanislaw Gruszka @ 2023-10-18 11:01 UTC (permalink / raw)
To: dri-devel
Cc: Jeffrey Hugo, Wludzik, Oded Gabbay, Stanislaw Gruszka,
Jacek Lawrynowicz, Wludzik, Jozef
From: "Wludzik, Jozef" <jozef.wludzik@intel.com>
Allow to use whole address range in MMU context mmap which is up to 48
bits. Return invalid argument from MMU context mmap in case address is
not aligned to MMU page size, address is below MMU page size or address
is greater then 47 bits.
This fixes problem disallowing to run large models on VPU4
Signed-off-by: Wludzik, Jozef <jozef.wludzik@intel.com>
Reviewed-by: Stanislaw Gruszka <stanislaw.gruszka@linux.intel.com>
Signed-off-by: Stanislaw Gruszka <stanislaw.gruszka@linux.intel.com>
---
drivers/accel/ivpu/ivpu_mmu_context.c | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/drivers/accel/ivpu/ivpu_mmu_context.c b/drivers/accel/ivpu/ivpu_mmu_context.c
index 0c8c65351919..c1050a2df954 100644
--- a/drivers/accel/ivpu/ivpu_mmu_context.c
+++ b/drivers/accel/ivpu/ivpu_mmu_context.c
@@ -11,6 +11,7 @@
#include "ivpu_mmu.h"
#include "ivpu_mmu_context.h"
+#define IVPU_MMU_VPU_ADDRESS_MASK GENMASK(47, 12)
#define IVPU_MMU_PGD_INDEX_MASK GENMASK(47, 39)
#define IVPU_MMU_PUD_INDEX_MASK GENMASK(38, 30)
#define IVPU_MMU_PMD_INDEX_MASK GENMASK(29, 21)
@@ -328,12 +329,8 @@ ivpu_mmu_context_map_sgt(struct ivpu_device *vdev, struct ivpu_mmu_context *ctx,
if (!IS_ALIGNED(vpu_addr, IVPU_MMU_PAGE_SIZE))
return -EINVAL;
- /*
- * VPU is only 32 bit, but DMA engine is 38 bit
- * Ranges < 2 GB are reserved for VPU internal registers
- * Limit range to 8 GB
- */
- if (vpu_addr < SZ_2G || vpu_addr > SZ_8G)
+
+ if (vpu_addr & ~IVPU_MMU_VPU_ADDRESS_MASK)
return -EINVAL;
prot = IVPU_MMU_ENTRY_MAPPED;
--
2.25.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] accel/ivpu: Extend address range for MMU mmap
2023-10-18 11:01 [PATCH] accel/ivpu: Extend address range for MMU mmap Stanislaw Gruszka
@ 2023-10-19 6:05 ` Stanislaw Gruszka
0 siblings, 0 replies; 2+ messages in thread
From: Stanislaw Gruszka @ 2023-10-19 6:05 UTC (permalink / raw)
To: dri-devel
Cc: Oded Gabbay, Jeffrey Hugo, Wludzik, Jozef, Wludzik,
Jacek Lawrynowicz
On Wed, Oct 18, 2023 at 01:01:13PM +0200, Stanislaw Gruszka wrote:
> From: "Wludzik, Jozef" <jozef.wludzik@intel.com>
>
> Allow to use whole address range in MMU context mmap which is up to 48
> bits. Return invalid argument from MMU context mmap in case address is
> not aligned to MMU page size, address is below MMU page size or address
> is greater then 47 bits.
>
> This fixes problem disallowing to run large models on VPU4
>
> Signed-off-by: Wludzik, Jozef <jozef.wludzik@intel.com>
> Reviewed-by: Stanislaw Gruszka <stanislaw.gruszka@linux.intel.com>
> Signed-off-by: Stanislaw Gruszka <stanislaw.gruszka@linux.intel.com>
Applied to drm-misc-fixes
Thanks
Stanislaw
> ---
> drivers/accel/ivpu/ivpu_mmu_context.c | 9 +++------
> 1 file changed, 3 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/accel/ivpu/ivpu_mmu_context.c b/drivers/accel/ivpu/ivpu_mmu_context.c
> index 0c8c65351919..c1050a2df954 100644
> --- a/drivers/accel/ivpu/ivpu_mmu_context.c
> +++ b/drivers/accel/ivpu/ivpu_mmu_context.c
> @@ -11,6 +11,7 @@
> #include "ivpu_mmu.h"
> #include "ivpu_mmu_context.h"
>
> +#define IVPU_MMU_VPU_ADDRESS_MASK GENMASK(47, 12)
> #define IVPU_MMU_PGD_INDEX_MASK GENMASK(47, 39)
> #define IVPU_MMU_PUD_INDEX_MASK GENMASK(38, 30)
> #define IVPU_MMU_PMD_INDEX_MASK GENMASK(29, 21)
> @@ -328,12 +329,8 @@ ivpu_mmu_context_map_sgt(struct ivpu_device *vdev, struct ivpu_mmu_context *ctx,
>
> if (!IS_ALIGNED(vpu_addr, IVPU_MMU_PAGE_SIZE))
> return -EINVAL;
> - /*
> - * VPU is only 32 bit, but DMA engine is 38 bit
> - * Ranges < 2 GB are reserved for VPU internal registers
> - * Limit range to 8 GB
> - */
> - if (vpu_addr < SZ_2G || vpu_addr > SZ_8G)
> +
> + if (vpu_addr & ~IVPU_MMU_VPU_ADDRESS_MASK)
> return -EINVAL;
>
> prot = IVPU_MMU_ENTRY_MAPPED;
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-10-19 6:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-18 11:01 [PATCH] accel/ivpu: Extend address range for MMU mmap Stanislaw Gruszka
2023-10-19 6:05 ` Stanislaw Gruszka
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.