blob: a6a6c885e5184ffcb9bb03d178b22167ff5fb4f3 [file] [log] [blame]
Haavard Skinnemoen3ace2522008-05-02 15:21:40 +02001/*
2 * Copyright (C) 2005-2008 Atmel Corporation
3 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 */
22#include <common.h>
23
24#include <asm/io.h>
25
26#include <asm/arch/clk.h>
27#include <asm/arch/memory-map.h>
Haavard Skinnemoen98090cd2008-08-31 18:05:32 +020028#include <asm/arch/portmux.h>
Haavard Skinnemoen3ace2522008-05-02 15:21:40 +020029
30#include "sm.h"
31
32void clk_init(void)
33{
34 uint32_t cksel;
35
36 /* in case of soft resets, disable watchdog */
37 sm_writel(WDT_CTRL, SM_BF(KEY, 0x55));
38 sm_writel(WDT_CTRL, SM_BF(KEY, 0xaa));
39
40#ifdef CONFIG_PLL
41 /* Initialize the PLL */
42 sm_writel(PM_PLL0, (SM_BF(PLLCOUNT, CFG_PLL0_SUPPRESS_CYCLES)
43 | SM_BF(PLLMUL, CFG_PLL0_MUL - 1)
44 | SM_BF(PLLDIV, CFG_PLL0_DIV - 1)
45 | SM_BF(PLLOPT, CFG_PLL0_OPT)
46 | SM_BF(PLLOSC, 0)
47 | SM_BIT(PLLEN)));
48
49 /* Wait for lock */
50 while (!(sm_readl(PM_ISR) & SM_BIT(LOCK0))) ;
51#endif
52
53 /* Set up clocks for the CPU and all peripheral buses */
54 cksel = 0;
55 if (CFG_CLKDIV_CPU)
56 cksel |= SM_BIT(CPUDIV) | SM_BF(CPUSEL, CFG_CLKDIV_CPU - 1);
57 if (CFG_CLKDIV_HSB)
58 cksel |= SM_BIT(HSBDIV) | SM_BF(HSBSEL, CFG_CLKDIV_HSB - 1);
59 if (CFG_CLKDIV_PBA)
60 cksel |= SM_BIT(PBADIV) | SM_BF(PBASEL, CFG_CLKDIV_PBA - 1);
61 if (CFG_CLKDIV_PBB)
62 cksel |= SM_BIT(PBBDIV) | SM_BF(PBBSEL, CFG_CLKDIV_PBB - 1);
63 sm_writel(PM_CKSEL, cksel);
64
65#ifdef CONFIG_PLL
66 /* Use PLL0 as main clock */
67 sm_writel(PM_MCCTRL, SM_BIT(PLLSEL));
68#endif
69}
Haavard Skinnemoen98090cd2008-08-31 18:05:32 +020070
71unsigned long __gclk_set_rate(unsigned int id, enum gclk_parent parent,
72 unsigned long rate, unsigned long parent_rate)
73{
74 unsigned long divider;
75
76 if (rate == 0 || parent_rate == 0) {
77 sm_writel(PM_GCCTRL(id), 0);
78 return 0;
79 }
80
81 divider = (parent_rate + rate / 2) / rate;
82 if (divider <= 1) {
83 sm_writel(PM_GCCTRL(id), parent | SM_BIT(CEN));
84 rate = parent_rate;
85 } else {
86 divider = min(255, divider / 2 - 1);
87 sm_writel(PM_GCCTRL(id), parent | SM_BIT(CEN) | SM_BIT(DIVEN)
88 | SM_BF(DIV, divider));
89 rate = parent_rate / (2 * (divider + 1));
90 }
91
92 return rate;
93}