lib: utils/fdt/fdt_domain: Simplify region access permission check
authorBin Meng <bmeng@tinylab.org>
Fri, 24 Feb 2023 04:28:26 +0000 (12:28 +0800)
committerAnup Patel <anup@brainfault.org>
Mon, 27 Feb 2023 08:19:21 +0000 (13:49 +0530)
The region access permission check in __fdt_parse_region() can be
simplified as masking SBI_DOMAIN_MEMREGION_{M,SU}_ACCESS_MASK is
enough.

While we are here, update the confusing comments to match the codes.

Signed-off-by: Bin Meng <bmeng@tinylab.org>
Reviewed-by: Anup Patel <anup@brainfault.org>
lib/utils/fdt/fdt_domain.c

index 2b51a8e..bc30010 100644 (file)
@@ -244,13 +244,11 @@ static int __fdt_parse_region(void *fdt, int domain_offset,
         * access permissions. M-mode regions can only be part of
         * root domain.
         *
-        * SU permission bits can't be all zeroes and M-mode permission
-        * bits must be all set.
+        * SU permission bits can't be all zeroes when M-mode permission
+        * bits have at least one bit set.
         */
-       if (!((region_access & SBI_DOMAIN_MEMREGION_SU_ACCESS_MASK)
-            & SBI_DOMAIN_MEMREGION_SU_RWX)
-           && ((region_access & SBI_DOMAIN_MEMREGION_M_ACCESS_MASK)
-               & SBI_DOMAIN_MEMREGION_M_RWX))
+       if (!(region_access & SBI_DOMAIN_MEMREGION_SU_ACCESS_MASK)
+           && (region_access & SBI_DOMAIN_MEMREGION_M_ACCESS_MASK))
                return SBI_EINVAL;
 
        /* Find next region of the domain */