]> git.sur5r.net Git - u-boot/commitdiff
sunxi: Support H3 CCU security switches
authorChen-Yu Tsai <wens@csie.org>
Wed, 6 Jan 2016 07:13:07 +0000 (15:13 +0800)
committerHans de Goede <hdegoede@redhat.com>
Tue, 26 Jan 2016 15:20:05 +0000 (16:20 +0100)
H3's CCU includes some switches which disable non-secure access to some
of the more critical clock controls, such as MBUS, PLLs, and main
platform busses.

Configure them to enable non-secure access.

For now the only SoC that has this feature is the H3. For other
platforms just use a default (weak) empty function so things do
not break.

Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Acked-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
arch/arm/cpu/armv7/sunxi/clock.c
arch/arm/cpu/armv7/sunxi/clock_sun6i.c
arch/arm/include/asm/arch-sunxi/clock.h
arch/arm/include/asm/arch-sunxi/clock_sun6i.h

index 47fb70ff7cf845b56b93029ce2a9fc235987cfac..5cc5d25d2bd3ee4dc3e8a12cfa17be6fd4a343fe 100644 (file)
 #include <asm/arch/gpio.h>
 #include <asm/arch/sys_proto.h>
 
+__weak void clock_init_sec(void)
+{
+}
+
 int clock_init(void)
 {
 #ifdef CONFIG_SPL_BUILD
        clock_init_safe();
 #endif
        clock_init_uart();
+       clock_init_sec();
 
        return 0;
 }
index 1da5455c9ad3bf4666c8892af02afaffab9dea74..700b605ab3a93936a8c638bab273aa22c9095fe2 100644 (file)
@@ -45,6 +45,19 @@ void clock_init_safe(void)
 }
 #endif
 
+void clock_init_sec(void)
+{
+#ifdef CONFIG_MACH_SUN8I_H3
+       struct sunxi_ccm_reg * const ccm =
+               (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
+
+       setbits_le32(&ccm->ccu_sec_switch,
+                    CCM_SEC_SWITCH_MBUS_NONSEC |
+                    CCM_SEC_SWITCH_BUS_NONSEC |
+                    CCM_SEC_SWITCH_PLL_NONSEC);
+#endif
+}
+
 void clock_init_uart(void)
 {
 #if CONFIG_CONS_INDEX < 5
index 8ca58ae5216c1da000c7b8d4e599c274e4160601..6c0573fe5872a99a3af211b4781a55164bb3ffc0 100644 (file)
@@ -30,6 +30,7 @@ int clock_init(void);
 int clock_twi_onoff(int port, int state);
 void clock_set_de_mod_clock(u32 *clk_cfg, unsigned int hz);
 void clock_init_safe(void);
+void clock_init_sec(void);
 void clock_init_uart(void);
 #endif
 
index 5c762751126e4cdefd7f72065a2134b9f05486d8..554d8589ed55d7cd0c475a191e62fe14dd96b8a3 100644 (file)
@@ -137,6 +137,8 @@ struct sunxi_ccm_reg {
        u32 apb1_reset_cfg;     /* 0x2d0 APB1 Reset config */
        u32 reserved24;
        u32 apb2_reset_cfg;     /* 0x2d8 APB2 Reset config */
+       u32 reserved25[5];
+       u32 ccu_sec_switch;     /* 0x2f0 CCU Security Switch, H3 only */
 };
 
 /* apb2 bit field */
@@ -375,6 +377,11 @@ struct sunxi_ccm_reg {
 #define CCM_DE_CTRL_PLL10              (5 << 24)
 #define CCM_DE_CTRL_GATE               (1 << 31)
 
+/* CCU security switch, H3 only */
+#define CCM_SEC_SWITCH_MBUS_NONSEC     (1 << 2)
+#define CCM_SEC_SWITCH_BUS_NONSEC      (1 << 1)
+#define CCM_SEC_SWITCH_PLL_NONSEC      (1 << 0)
+
 #ifndef __ASSEMBLY__
 void clock_set_pll1(unsigned int hz);
 void clock_set_pll3(unsigned int hz);