]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
sunxi: move #ifdef guards around tzpc_init() to header file
authorAndre Przywara <andre.przywara@arm.com>
Thu, 7 Dec 2023 15:09:51 +0000 (15:09 +0000)
committerAndre Przywara <andre.przywara@arm.com>
Mon, 22 Apr 2024 00:12:25 +0000 (01:12 +0100)
Some later 32-bit SoCs require some setup of the Secure Peripherals
Controller, which is handled in tzpc_init().
At the moment this is guarded in board.c by some #ifdefs selecting the
SoCs that need it.

Move those #ifdef guards into the header file, providing an empty stub
function for all other SoCs, so that the #ifdefs can be removed from the
.c file, to improve readability.

Signed-off-by: Andre Przywara <andre.przywara@arm.com>
arch/arm/include/asm/arch-sunxi/tzpc.h
arch/arm/mach-sunxi/board.c

index 7a6fcaebdb51ba47b725ef2f9085240d3c523a60..92696088a396ac63f40d7af39f4db758e9dc8853 100644 (file)
@@ -28,6 +28,12 @@ struct sunxi_tzpc {
 #define SUN8I_H3_TZPC_DECPORT1_ALL  0xff
 #define SUN8I_H3_TZPC_DECPORT2_ALL  0x7f
 
+#if defined CONFIG_MACH_SUN6I || defined CONFIG_MACH_SUN8I_H3
 void tzpc_init(void);
+#else
+static inline void tzpc_init(void)
+{
+}
+#endif
 
 #endif /* _SUNXI_TZPC_H */
index f4dbb2a740bd535e325c40601fca675d46b042c7..0140b07d32a63dfbabe1b85cc52789a0322e3dac 100644 (file)
@@ -458,10 +458,8 @@ void board_init_f(ulong dummy)
 {
        sunxi_sram_init();
 
-#if defined CONFIG_MACH_SUN6I || defined CONFIG_MACH_SUN8I_H3
        /* Enable non-secure access to some peripherals */
        tzpc_init();
-#endif
 
        clock_init();
        timer_init();