aboutsummaryrefslogtreecommitdiffstats
path: root/arch/avr32/mach-at32ap/at32ap700x.c
diff options
context:
space:
mode:
authorAlex <mailinglist@miromico.ch>2008-03-17 09:55:06 -0400
committerHaavard Skinnemoen <haavard.skinnemoen@atmel.com>2008-06-27 09:07:16 -0400
commit60ed7951d0c9bf8de8588384134f16474367b410 (patch)
tree42e97bace8d7e3c41b6a7f4c1c42a4bc48648645 /arch/avr32/mach-at32ap/at32ap700x.c
parent8bd8974fcddc468d66bd67f33c578f37987b302e (diff)
avr32: Allow board to define oscillator rates
On our custom board we have other oscillator rates than on atngw100 and atstk100x. Currently these rates are hardcoded in arch/avr32/mach-at32ap/at32ap700x.c. This patch moves them into board specific code. Signed-off-by: Alex Raimondi <raimondi@miromico.ch> Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
Diffstat (limited to 'arch/avr32/mach-at32ap/at32ap700x.c')
-rw-r--r--arch/avr32/mach-at32ap/at32ap700x.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/arch/avr32/mach-at32ap/at32ap700x.c b/arch/avr32/mach-at32ap/at32ap700x.c
index 0f24b4f85c17..34b56de4ea60 100644
--- a/arch/avr32/mach-at32ap/at32ap700x.c
+++ b/arch/avr32/mach-at32ap/at32ap700x.c
@@ -93,19 +93,12 @@ static struct clk devname##_##_name = { \
93 93
94static DEFINE_SPINLOCK(pm_lock); 94static DEFINE_SPINLOCK(pm_lock);
95 95
96unsigned long at32ap7000_osc_rates[3] = {
97 [0] = 32768,
98 /* FIXME: these are ATSTK1002-specific */
99 [1] = 20000000,
100 [2] = 12000000,
101};
102
103static struct clk osc0; 96static struct clk osc0;
104static struct clk osc1; 97static struct clk osc1;
105 98
106static unsigned long osc_get_rate(struct clk *clk) 99static unsigned long osc_get_rate(struct clk *clk)
107{ 100{
108 return at32ap7000_osc_rates[clk->index]; 101 return at32_board_osc_rates[clk->index];
109} 102}
110 103
111static unsigned long pll_get_rate(struct clk *clk, unsigned long control) 104static unsigned long pll_get_rate(struct clk *clk, unsigned long control)