sam3n port: set flash wait states before activating fast clock
[bertos.git] / bertos / cpu / cortex-m3 / drv / clock_sam3.c
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2010 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \brief ATSAM3 clock setup.
34  *
35  * \author Stefano Fedrigo <aleph@develer.com>
36  */
37
38 #include "clock_sam3.h"
39 #include <io/sam3_pmc.h>
40 #include <io/sam3_sysctl.h>
41 #include <io/sam3_flash.h>
42 #include <cfg/compiler.h>
43 #include <cfg/macros.h>
44
45
46 /* Frequency of board main oscillator */
47 #define BOARDOSC_FREQ  12000000
48
49 /* Main crystal oscillator startup time, optimal value for CPU_FREQ == 48 MHz */
50 #define BOARD_OSC_COUNT  (CKGR_MOR_MOSCXTST(0x8))
51
52 /* Timer countdown timeout for clock initialization operations */
53 #define CLOCK_TIMEOUT    0xFFFFFFFF
54
55
56 /*
57  * Try to evaluate the correct divider and multiplier value depending
58  * on the desired CPU frequency.
59  *
60  * We try all combinations in a certain range of divider and multiplier
61  * values.  The range can change, with better match with "strange"
62  * frequencies, but boot time will be longer.
63  *
64  * Limits for SAM3N: divider [1,255], multiplier [1,2047].
65  */
66 INLINE uint32_t evaluate_pll(void)
67 {
68         int mul, div, best_mul, best_div;
69         int best_delta = CPU_FREQ;
70         int freq = 0;
71
72         for (mul = 1; mul <= 8; mul++)
73         {
74                 for (div = 1; div <= 24; div++)
75                 {
76                         freq = BOARDOSC_FREQ / div * (1 + mul);
77                         if (ABS((int)CPU_FREQ - freq) < best_delta) {
78                                 best_delta = ABS((int)CPU_FREQ - freq);
79                                 best_mul = mul;
80                                 best_div = div;
81                         }
82                 }
83         }
84
85         // Bit 29 must always be set to 1
86         return CKGR_PLLR_DIV(best_div) | CKGR_PLLR_MUL(best_mul) | BV(29);
87 }
88
89
90 void clock_init(void)
91 {
92         uint32_t timeout;
93
94         /* Set 4 wait states for flash access, needed for higher CPU clock rates */
95         EEFC_FMR_R = EEFC_FMR_FWS(3);
96
97         // Select external slow clock
98         if (!(SUPC_SR_R & SUPC_SR_OSCSEL))
99         {
100                 SUPC_CR_R = SUPC_CR_XTALSEL | SUPC_CR_KEY(0xA5);
101                 while (!(SUPC_SR_R & SUPC_SR_OSCSEL));
102         }
103
104         // Initialize main oscillator
105         if (!(CKGR_MOR_R & CKGR_MOR_MOSCSEL))
106         {
107                 CKGR_MOR_R = CKGR_MOR_KEY(0x37) | BOARD_OSC_COUNT | CKGR_MOR_MOSCRCEN | CKGR_MOR_MOSCXTEN;
108                 timeout = CLOCK_TIMEOUT;
109                 while (!(PMC_SR_R & PMC_SR_MOSCXTS) && --timeout);
110         }
111
112         // Switch to external oscillator
113         CKGR_MOR_R = CKGR_MOR_KEY(0x37) | BOARD_OSC_COUNT | CKGR_MOR_MOSCRCEN | CKGR_MOR_MOSCXTEN | CKGR_MOR_MOSCSEL;
114         timeout = CLOCK_TIMEOUT;
115         while (!(PMC_SR_R & PMC_SR_MOSCSELS) && --timeout);
116
117         PMC_MCKR_R = (PMC_MCKR_R & ~(uint32_t)PMC_MCKR_CSS_M) | PMC_MCKR_CSS_MAIN_CLK;
118         timeout = CLOCK_TIMEOUT;
119         while (!(PMC_SR_R & PMC_SR_MCKRDY) && --timeout);
120
121         // Initialize and enable PLL clock
122         CKGR_PLLR_R = evaluate_pll() | CKGR_PLLR_STUCKTO1 | CKGR_PLLR_PLLCOUNT(0x1);
123         timeout = CLOCK_TIMEOUT;
124         while (!(PMC_SR_R & PMC_SR_LOCK) && --timeout);
125
126         PMC_MCKR_R = PMC_MCKR_CSS_MAIN_CLK;
127         timeout = CLOCK_TIMEOUT;
128         while (!(PMC_SR_R & PMC_SR_MCKRDY) && --timeout);
129
130         PMC_MCKR_R = PMC_MCKR_CSS_PLL_CLK;
131         timeout = CLOCK_TIMEOUT;
132         while (!(PMC_SR_R & PMC_SR_MCKRDY) && --timeout);
133 }