ARM: at91: clock: add PLLB enable/disable functions
authorWenyou Yang <wenyou.yang@atmel.com>
Wed, 3 Feb 2016 02:20:43 +0000 (10:20 +0800)
committerAndreas Bießmann <andreas.devel@googlemail.com>
Thu, 18 Feb 2016 20:34:41 +0000 (21:34 +0100)
To avoid the duplicated code, add the PLLB handle functions.

Signed-off-by: Wenyou Yang <wenyou.yang@atmel.com>
Reviewed-by: Andreas Bießmann <andreas.devel@googlemail.com>
Tested-by: Heiko Schocher <hs@denx.de>
[add enable/disable functions to arm920t]
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
arch/arm/mach-at91/arm920t/clock.c
arch/arm/mach-at91/arm926ejs/clock.c
arch/arm/mach-at91/include/mach/clk.h

index 2813bf7821613d6bc06fe5058faaa9a7c3225b49..8aa21005d0a5cd9b38d1aad8aee2b7a3b99d3564 100644 (file)
@@ -18,6 +18,8 @@
 # error You need to define CONFIG_AT91FAMILY in your board config!
 #endif
 
+#define EN_PLLB_TIMEOUT        500
+
 DECLARE_GLOBAL_DATA_PTR;
 
 static unsigned long at91_css_to_rate(unsigned long css)
@@ -155,3 +157,39 @@ int at91_clock_init(unsigned long main_clock)
 
        return 0;
 }
+
+int at91_pllb_clk_enable(u32 pllbr)
+{
+       struct at91_pmc *pmc = (at91_pmc_t *)ATMEL_BASE_PMC;
+       ulong start_time, tmp_time;
+
+       start_time = get_timer(0);
+       writel(pllbr, &pmc->pllbr);
+       while ((readl(&pmc->sr) & AT91_PMC_LOCKB) != AT91_PMC_LOCKB) {
+               tmp_time = get_timer(0);
+               if ((tmp_time - start_time) > EN_PLLB_TIMEOUT) {
+                       printf("ERROR: failed to enable PLLB\n");
+                       return -1;
+               }
+       }
+
+       return 0;
+}
+
+int at91_pllb_clk_disable(void)
+{
+       struct at91_pmc *pmc = (at91_pmc_t *)ATMEL_BASE_PMC;
+       ulong start_time, tmp_time;
+
+       start_time = get_timer(0);
+       writel(0, &pmc->pllbr);
+       while ((readl(&pmc->sr) & AT91_PMC_LOCKB) != 0) {
+               tmp_time = get_timer(0);
+               if ((tmp_time - start_time) > EN_PLLB_TIMEOUT) {
+                       printf("ERROR: failed to disable PLLB\n");
+                       return -1;
+               }
+       }
+
+       return 0;
+}
index c8b5e10085bc8c5a05c550b676f048c84fc3f0b7..c8d24ae826508d2cd254c8717cbbad7eaa5125e1 100644 (file)
@@ -18,6 +18,8 @@
 # error You need to define CONFIG_AT91FAMILY in your board config!
 #endif
 
+#define EN_PLLB_TIMEOUT        500
+
 DECLARE_GLOBAL_DATA_PTR;
 
 static unsigned long at91_css_to_rate(unsigned long css)
@@ -242,3 +244,39 @@ void at91_mck_init(u32 mckr)
        while (!(readl(&pmc->sr) & AT91_PMC_MCKRDY))
                ;
 }
+
+int at91_pllb_clk_enable(u32 pllbr)
+{
+       struct at91_pmc *pmc = (at91_pmc_t *)ATMEL_BASE_PMC;
+       ulong start_time, tmp_time;
+
+       start_time = get_timer(0);
+       writel(pllbr, &pmc->pllbr);
+       while ((readl(&pmc->sr) & AT91_PMC_LOCKB) != AT91_PMC_LOCKB) {
+               tmp_time = get_timer(0);
+               if ((tmp_time - start_time) > EN_PLLB_TIMEOUT) {
+                       printf("ERROR: failed to enable PLLB\n");
+                       return -1;
+               }
+       }
+
+       return 0;
+}
+
+int at91_pllb_clk_disable(void)
+{
+       struct at91_pmc *pmc = (at91_pmc_t *)ATMEL_BASE_PMC;
+       ulong start_time, tmp_time;
+
+       start_time = get_timer(0);
+       writel(0, &pmc->pllbr);
+       while ((readl(&pmc->sr) & AT91_PMC_LOCKB) != 0) {
+               tmp_time = get_timer(0);
+               if ((tmp_time - start_time) > EN_PLLB_TIMEOUT) {
+                       printf("ERROR: failed to disable PLLB\n");
+                       return -1;
+               }
+       }
+
+       return 0;
+}
index b2604ef5b0739d87ce7efd6641bf9c0dce7b45e9..64dec5223691f7efafbe042b77d19a4769fa5461 100644 (file)
@@ -133,5 +133,7 @@ void at91_system_clk_disable(int sys_clk);
 int at91_upll_clk_enable(void);
 int at91_upll_clk_disable(void);
 void at91_usb_clk_init(u32 value);
+int at91_pllb_clk_enable(u32 pllbr);
+int at91_pllb_clk_disable(void);
 
 #endif /* __ASM_ARM_ARCH_CLK_H__ */