]> git.baikalelectronics.ru Git - arm-tf.git/commitdiff
style(msm8916): use size macros
authorStephan Gerhold <stephan@gerhold.net>
Sun, 26 Mar 2023 11:07:25 +0000 (13:07 +0200)
committerManish V Badarkhe <manish.badarkhe@arm.com>
Tue, 9 May 2023 19:46:18 +0000 (21:46 +0200)
Use the pre-defined size macros (SZ_*) for more clarity and to avoid
having to add comments to each size represented by hexadecimal numbers.

Change-Id: I6aebe2caf1365279670955b9b507dec7d7b04457
Signed-off-by: Stephan Gerhold <stephan@gerhold.net>
plat/qti/msm8916/include/msm8916_mmap.h
plat/qti/msm8916/include/platform_def.h

index 406ae6b4e46d81e9e8bcd01c0aa4be6b23ad609c..d2015368239be1c9f529f2f7da34082c06d35dec 100644 (file)
@@ -8,9 +8,9 @@
 #define MSM8916_MMAP_H
 
 #define PCNOC_BASE             0x00000000
-#define PCNOC_SIZE             0x8000000       /* 128 MiB */
+#define PCNOC_SIZE             SZ_128M
 #define APCS_BASE              0x0b000000
-#define APCS_SIZE              0x800000        /* 8 MiB */
+#define APCS_SIZE              SZ_8M
 
 #define MPM_BASE               (PCNOC_BASE + 0x04a0000)
 #define MPM_PS_HOLD            (MPM_BASE + 0xb000)
index bfade70a3a631b8df9a391c7a80226c956aacbf6..6d5ff2b3316ca16ba7137c1456feb7cb59ab43eb 100644 (file)
  * the overall limit to 128 KiB. This could be increased if needed by placing
  * the "msm8916_entry_point" variable explicitly in the first 64 KiB of BL31.
  */
-#define BL31_LIMIT                     (BL31_BASE + 0x20000)   /* 128 KiB */
-#define BL31_PROGBITS_LIMIT            (BL31_BASE + 0x10000)   /* 64 KiB */
+#define BL31_LIMIT                     (BL31_BASE + SZ_128K)
+#define BL31_PROGBITS_LIMIT            (BL31_BASE + SZ_64K)
 
 #define CACHE_WRITEBACK_GRANULE                U(64)
-#define PLATFORM_STACK_SIZE            U(0x1000)
+#define PLATFORM_STACK_SIZE            SZ_4K
 
 /* CPU topology: single cluster with 4 cores */
 #define PLATFORM_CLUSTER_COUNT         U(1)