summaryrefslogtreecommitdiff
path: root/include/drivers/partition/partition.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/drivers/partition/partition.h')
-rw-r--r--include/drivers/partition/partition.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/include/drivers/partition/partition.h b/include/drivers/partition/partition.h
index d94c7824..5f648337 100644
--- a/include/drivers/partition/partition.h
+++ b/include/drivers/partition/partition.h
@@ -17,7 +17,15 @@
CASSERT(PLAT_PARTITION_MAX_ENTRIES <= 128, assert_plat_partition_max_entries);
-#define PARTITION_BLOCK_SIZE 512
+#if !PLAT_PARTITION_BLOCK_SIZE
+# define PLAT_PARTITION_BLOCK_SIZE 512
+#endif /* PLAT_PARTITION_BLOCK_SIZE */
+
+CASSERT((PLAT_PARTITION_BLOCK_SIZE == 512) ||
+ (PLAT_PARTITION_BLOCK_SIZE == 4096),
+ assert_plat_partition_block_size);
+
+#define LEGACY_PARTITION_BLOCK_SIZE 512
#define EFI_NAMELEN 36