[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-arm] [kvm-unit-tests PATCH v5 08/11] libcflat: add IS_ALIGNED() ma
From: |
Andrew Jones |
Subject: |
[Qemu-arm] [kvm-unit-tests PATCH v5 08/11] libcflat: add IS_ALIGNED() macro, and page sizes |
Date: |
Thu, 10 Nov 2016 18:21:18 +0100 |
From: Peter Xu <address@hidden>
These macros will be useful to do page alignment checks.
Reviewed-by: Andre Przywara <address@hidden>
Signed-off-by: Peter Xu <address@hidden>
[drew: also added SZ_64K]
Signed-off-by: Andrew Jones <address@hidden>
---
lib/libcflat.h | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/lib/libcflat.h b/lib/libcflat.h
index 82005f5d014f..143fc53061fe 100644
--- a/lib/libcflat.h
+++ b/lib/libcflat.h
@@ -33,6 +33,12 @@
#define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask))
#define __ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a) - 1)
#define ALIGN(x, a) __ALIGN((x), (a))
+#define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0)
+
+#define SZ_4K (0x1000)
+#define SZ_64K (0x10000)
+#define SZ_2M (0x200000)
+#define SZ_1G (0x40000000)
typedef uint8_t u8;
typedef int8_t s8;
--
2.7.4
- [Qemu-arm] [kvm-unit-tests PATCH v5 03/11] arm/arm64: smp: support more than 8 cpus, (continued)
- [Qemu-arm] [kvm-unit-tests PATCH v5 03/11] arm/arm64: smp: support more than 8 cpus, Andrew Jones, 2016/11/10
- [Qemu-arm] [kvm-unit-tests PATCH v5 05/11] arm/arm64: irq enable/disable, Andrew Jones, 2016/11/10
- [Qemu-arm] [kvm-unit-tests PATCH v5 04/11] arm/arm64: add some delay routines, Andrew Jones, 2016/11/10
- [Qemu-arm] [kvm-unit-tests PATCH v5 06/11] arm/arm64: add initial gicv2 support, Andrew Jones, 2016/11/10
- Re: [Qemu-arm] [kvm-unit-tests PATCH v5 06/11] arm/arm64: add initial gicv2 support, Andre Przywara, 2016/11/11
- [Qemu-arm] [kvm-unit-tests PATCH v5 08/11] libcflat: add IS_ALIGNED() macro, and page sizes,
Andrew Jones <=
- [Qemu-arm] [kvm-unit-tests PATCH v5 07/11] arm/arm64: gicv2: add an IPI test, Andrew Jones, 2016/11/10
[Qemu-arm] [kvm-unit-tests PATCH v5 09/11] arm/arm64: add initial gicv3 support, Andrew Jones, 2016/11/10