X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcpu%2Fcortex-m3%2Fdrv%2Fclock_lm3s.c;h=0cd5da8415b9f555b7321fd7835bdb212195a99b;hb=6cdf30122278c0c69a828c290e31f7b2c03c450f;hp=8790b0e6ed69319fcdbf3f644a2417f0d199811a;hpb=692b24f898b31b95e639c0f43f225ed1726719d3;p=bertos.git diff --git a/bertos/cpu/cortex-m3/drv/clock_lm3s.c b/bertos/cpu/cortex-m3/drv/clock_lm3s.c index 8790b0e6..0cd5da84 100644 --- a/bertos/cpu/cortex-m3/drv/clock_lm3s.c +++ b/bertos/cpu/cortex-m3/drv/clock_lm3s.c @@ -37,7 +37,7 @@ #include #include -#include "io/lm3s.h" +#include #include "clock_lm3s.h" /* The PLL VCO frequency is 400 MHz */ @@ -51,15 +51,18 @@ /* * Very small delay: each loop takes 3 cycles. */ -INLINE void __delay(unsigned long iterations) +void NAKED lm3s_busyWait(unsigned long iterations) { + register uint32_t __n asm("r0") = iterations; + asm volatile ( - "1: subs %0, #1\n\t" - " bne 1b\n\t" - : "=r"(iterations) : : "memory", "cc"); + "1: subs r0, #1\n\t" + "bne 1b\n\t" + "bx lr\n\t" + : : "r"(__n) : "memory", "cc"); } -unsigned long clock_get_rate(void) +INLINE unsigned long clock_get_rate(void) { reg32_t rcc = HWREG(SYSCTL_RCC); @@ -85,7 +88,7 @@ INLINE int evaluate_sysdiv(unsigned long freq) return i; } -void clock_set_rate(void) +void clock_init(void) { reg32_t rcc, rcc2; unsigned long clk; @@ -110,6 +113,8 @@ void clock_set_rate(void) HWREG(SYSCTL_RCC) = rcc; HWREG(SYSCTL_RCC) = rcc2; + lm3s_busyWait(16); + /* * Step #2: select the crystal value (XTAL) and oscillator source * (OSCSRC), and clear the PWRDN bit in RCC/RCC2. Setting the XTAL @@ -134,7 +139,7 @@ void clock_set_rate(void) HWREG(SYSCTL_RCC) = rcc; HWREG(SYSCTL_RCC) = rcc2; - __delay(16); + lm3s_busyWait(16); /* * Step #3: select the desired system divider (SYSDIV) in RCC/RCC2 and @@ -166,5 +171,5 @@ void clock_set_rate(void) HWREG(SYSCTL_RCC) = rcc; - __delay(16); + lm3s_busyWait(16); }