blob: b010bf9ceaaba1f4d18168fccdc31de2d7d26d2e [file] [log] [blame]
Juergen Beisertc46f5852008-07-05 10:02:59 +02001/*
2 * Copyright 2004-2007 Freescale Semiconductor, Inc. All Rights Reserved.
3 * Copyright 2008 Juergen Beisert, kernel@pengutronix.de
Sascha Haueredfcea82009-02-16 15:13:43 +01004 * Copyright 2008 Martin Fuzzey, mfuzzey@gmail.com
Juergen Beisertc46f5852008-07-05 10:02:59 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18 * MA 02110-1301, USA.
19 */
20
21#include <linux/clk.h>
22#include <linux/io.h>
23#include <linux/module.h>
Sascha Haueredfcea82009-02-16 15:13:43 +010024
25#include <asm/clkdev.h>
26#include <asm/div64.h>
Juergen Beisertc46f5852008-07-05 10:02:59 +020027
Russell Kinga09e64f2008-08-05 16:14:15 +010028#include <mach/clock.h>
29#include <mach/common.h>
Sascha Haueredfcea82009-02-16 15:13:43 +010030#include <mach/hardware.h>
Juergen Beisertc46f5852008-07-05 10:02:59 +020031
Sascha Haueredfcea82009-02-16 15:13:43 +010032/* Register offsets */
33#define CCM_CSCR (IO_ADDRESS(CCM_BASE_ADDR) + 0x0)
34#define CCM_MPCTL0 (IO_ADDRESS(CCM_BASE_ADDR) + 0x4)
35#define CCM_MPCTL1 (IO_ADDRESS(CCM_BASE_ADDR) + 0x8)
36#define CCM_SPCTL0 (IO_ADDRESS(CCM_BASE_ADDR) + 0xC)
37#define CCM_SPCTL1 (IO_ADDRESS(CCM_BASE_ADDR) + 0x10)
38#define CCM_OSC26MCTL (IO_ADDRESS(CCM_BASE_ADDR) + 0x14)
39#define CCM_PCDR0 (IO_ADDRESS(CCM_BASE_ADDR) + 0x18)
40#define CCM_PCDR1 (IO_ADDRESS(CCM_BASE_ADDR) + 0x1c)
41#define CCM_PCCR0 (IO_ADDRESS(CCM_BASE_ADDR) + 0x20)
42#define CCM_PCCR1 (IO_ADDRESS(CCM_BASE_ADDR) + 0x24)
43#define CCM_CCSR (IO_ADDRESS(CCM_BASE_ADDR) + 0x28)
44#define CCM_PMCTL (IO_ADDRESS(CCM_BASE_ADDR) + 0x2c)
45#define CCM_PMCOUNT (IO_ADDRESS(CCM_BASE_ADDR) + 0x30)
46#define CCM_WKGDCTL (IO_ADDRESS(CCM_BASE_ADDR) + 0x34)
Juergen Beisertc46f5852008-07-05 10:02:59 +020047
Sascha Haueredfcea82009-02-16 15:13:43 +010048#define CCM_CSCR_UPDATE_DIS (1 << 31)
49#define CCM_CSCR_SSI2 (1 << 23)
50#define CCM_CSCR_SSI1 (1 << 22)
51#define CCM_CSCR_VPU (1 << 21)
52#define CCM_CSCR_MSHC (1 << 20)
53#define CCM_CSCR_SPLLRES (1 << 19)
54#define CCM_CSCR_MPLLRES (1 << 18)
55#define CCM_CSCR_SP (1 << 17)
56#define CCM_CSCR_MCU (1 << 16)
57#define CCM_CSCR_OSC26MDIV (1 << 4)
58#define CCM_CSCR_OSC26M (1 << 3)
59#define CCM_CSCR_FPM (1 << 2)
60#define CCM_CSCR_SPEN (1 << 1)
61#define CCM_CSCR_MPEN (1 << 0)
Juergen Beisertc46f5852008-07-05 10:02:59 +020062
Sascha Haueredfcea82009-02-16 15:13:43 +010063/* i.MX27 TO 2+ */
64#define CCM_CSCR_ARM_SRC (1 << 15)
65
66#define CCM_SPCTL1_LF (1 << 15)
67#define CCM_SPCTL1_BRMO (1 << 6)
68
69static struct clk mpll_main1_clk, mpll_main2_clk;
70
71static int clk_pccr_enable(struct clk *clk)
Juergen Beisertc46f5852008-07-05 10:02:59 +020072{
73 unsigned long reg;
74
Sascha Haueredfcea82009-02-16 15:13:43 +010075 if (!clk->enable_reg)
76 return 0;
77
Juergen Beisertc46f5852008-07-05 10:02:59 +020078 reg = __raw_readl(clk->enable_reg);
79 reg |= 1 << clk->enable_shift;
80 __raw_writel(reg, clk->enable_reg);
81
82 return 0;
83}
84
Sascha Haueredfcea82009-02-16 15:13:43 +010085static void clk_pccr_disable(struct clk *clk)
Juergen Beisertc46f5852008-07-05 10:02:59 +020086{
87 unsigned long reg;
88
Sascha Haueredfcea82009-02-16 15:13:43 +010089 if (!clk->enable_reg)
90 return;
91
Juergen Beisertc46f5852008-07-05 10:02:59 +020092 reg = __raw_readl(clk->enable_reg);
93 reg &= ~(1 << clk->enable_shift);
94 __raw_writel(reg, clk->enable_reg);
95}
96
Sascha Haueredfcea82009-02-16 15:13:43 +010097static int clk_spll_enable(struct clk *clk)
Juergen Beisertc46f5852008-07-05 10:02:59 +020098{
99 unsigned long reg;
100
101 reg = __raw_readl(CCM_CSCR);
102 reg |= CCM_CSCR_SPEN;
103 __raw_writel(reg, CCM_CSCR);
104
Sascha Haueredfcea82009-02-16 15:13:43 +0100105 while (!(__raw_readl(CCM_SPCTL1) & CCM_SPCTL1_LF));
Juergen Beisertc46f5852008-07-05 10:02:59 +0200106
107 return 0;
108}
109
Sascha Haueredfcea82009-02-16 15:13:43 +0100110static void clk_spll_disable(struct clk *clk)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200111{
112 unsigned long reg;
113
114 reg = __raw_readl(CCM_CSCR);
115 reg &= ~CCM_CSCR_SPEN;
116 __raw_writel(reg, CCM_CSCR);
117}
118
Sascha Haueredfcea82009-02-16 15:13:43 +0100119static int clk_cpu_set_parent(struct clk *clk, struct clk *parent)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200120{
Sascha Haueredfcea82009-02-16 15:13:43 +0100121 int cscr = __raw_readl(CCM_CSCR);
Juergen Beisertc46f5852008-07-05 10:02:59 +0200122
123 if (clk->parent == parent)
124 return 0;
125
126 if (mx27_revision() >= CHIP_REV_2_0) {
Sascha Haueredfcea82009-02-16 15:13:43 +0100127 if (parent == &mpll_main1_clk) {
Juergen Beisertc46f5852008-07-05 10:02:59 +0200128 cscr |= CCM_CSCR_ARM_SRC;
129 } else {
Sascha Haueredfcea82009-02-16 15:13:43 +0100130 if (parent == &mpll_main2_clk)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200131 cscr &= ~CCM_CSCR_ARM_SRC;
132 else
133 return -EINVAL;
134 }
135 __raw_writel(cscr, CCM_CSCR);
Sascha Haueredfcea82009-02-16 15:13:43 +0100136 clk->parent = parent;
137 return 0;
138 }
139 return -ENODEV;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200140}
141
Sascha Haueredfcea82009-02-16 15:13:43 +0100142static unsigned long round_rate_cpu(struct clk *clk, unsigned long rate)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200143{
144 int div;
145 unsigned long parent_rate;
146
147 parent_rate = clk_get_rate(clk->parent);
148
149 div = parent_rate / rate;
150 if (parent_rate % rate)
151 div++;
152
153 if (div > 4)
154 div = 4;
155
156 return parent_rate / div;
157}
158
Sascha Haueredfcea82009-02-16 15:13:43 +0100159static int set_rate_cpu(struct clk *clk, unsigned long rate)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200160{
161 unsigned int div;
162 uint32_t reg;
163 unsigned long parent_rate;
164
165 parent_rate = clk_get_rate(clk->parent);
166
167 div = parent_rate / rate;
168
169 if (div > 4 || div < 1 || ((parent_rate / div) != rate))
170 return -EINVAL;
171
172 div--;
173
174 reg = __raw_readl(CCM_CSCR);
175 if (mx27_revision() >= CHIP_REV_2_0) {
Sascha Haueredfcea82009-02-16 15:13:43 +0100176 reg &= ~(3 << 12);
177 reg |= div << 12;
178 reg &= ~(CCM_CSCR_FPM | CCM_CSCR_SPEN);
179 __raw_writel(reg | CCM_CSCR_UPDATE_DIS, CCM_CSCR);
Juergen Beisertc46f5852008-07-05 10:02:59 +0200180 } else {
Sascha Haueredfcea82009-02-16 15:13:43 +0100181 printk(KERN_ERR "Can't set CPU frequency!\n");
Juergen Beisertc46f5852008-07-05 10:02:59 +0200182 }
183
184 return 0;
185}
186
Sascha Haueredfcea82009-02-16 15:13:43 +0100187static unsigned long round_rate_per(struct clk *clk, unsigned long rate)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200188{
189 u32 div;
190 unsigned long parent_rate;
191
192 parent_rate = clk_get_rate(clk->parent);
193
194 div = parent_rate / rate;
195 if (parent_rate % rate)
196 div++;
197
198 if (div > 64)
199 div = 64;
200
201 return parent_rate / div;
202}
203
Sascha Haueredfcea82009-02-16 15:13:43 +0100204static int set_rate_per(struct clk *clk, unsigned long rate)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200205{
206 u32 reg;
207 u32 div;
208 unsigned long parent_rate;
209
210 parent_rate = clk_get_rate(clk->parent);
211
212 if (clk->id < 0 || clk->id > 3)
213 return -EINVAL;
214
215 div = parent_rate / rate;
216 if (div > 64 || div < 1 || ((parent_rate / div) != rate))
217 return -EINVAL;
218 div--;
219
Sascha Haueredfcea82009-02-16 15:13:43 +0100220 reg = __raw_readl(CCM_PCDR1) & ~(0x3f << (clk->id << 3));
Juergen Beisertc46f5852008-07-05 10:02:59 +0200221 reg |= div << (clk->id << 3);
222 __raw_writel(reg, CCM_PCDR1);
223
224 return 0;
225}
226
Sascha Haueredfcea82009-02-16 15:13:43 +0100227static unsigned long get_rate_usb(struct clk *clk)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200228{
229 unsigned long usb_pdf;
230 unsigned long parent_rate;
231
232 parent_rate = clk_get_rate(clk->parent);
233
Sascha Haueredfcea82009-02-16 15:13:43 +0100234 usb_pdf = (__raw_readl(CCM_CSCR) >> 28) & 0x7;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200235
236 return parent_rate / (usb_pdf + 1U);
237}
238
Sascha Haueredfcea82009-02-16 15:13:43 +0100239static unsigned long get_rate_ssix(struct clk *clk, unsigned long pdf)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200240{
Juergen Beisertc46f5852008-07-05 10:02:59 +0200241 unsigned long parent_rate;
242
243 parent_rate = clk_get_rate(clk->parent);
244
Juergen Beisertc46f5852008-07-05 10:02:59 +0200245 if (mx27_revision() >= CHIP_REV_2_0)
Sascha Haueredfcea82009-02-16 15:13:43 +0100246 pdf += 4; /* MX27 TO2+ */
Juergen Beisertc46f5852008-07-05 10:02:59 +0200247 else
Sascha Haueredfcea82009-02-16 15:13:43 +0100248 pdf = (pdf < 2) ? 124UL : pdf; /* MX21 & MX27 TO1 */
Juergen Beisertc46f5852008-07-05 10:02:59 +0200249
Sascha Haueredfcea82009-02-16 15:13:43 +0100250 return 2UL * parent_rate / pdf;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200251}
252
Sascha Haueredfcea82009-02-16 15:13:43 +0100253static unsigned long get_rate_ssi1(struct clk *clk)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200254{
Sascha Haueredfcea82009-02-16 15:13:43 +0100255 return get_rate_ssix(clk, (__raw_readl(CCM_PCDR0) >> 16) & 0x3f);
Juergen Beisertc46f5852008-07-05 10:02:59 +0200256}
257
Sascha Haueredfcea82009-02-16 15:13:43 +0100258static unsigned long get_rate_ssi2(struct clk *clk)
259{
260 return get_rate_ssix(clk, (__raw_readl(CCM_PCDR0) >> 26) & 0x3f);
261}
262
263static unsigned long get_rate_nfc(struct clk *clk)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200264{
265 unsigned long nfc_pdf;
266 unsigned long parent_rate;
267
268 parent_rate = clk_get_rate(clk->parent);
269
Sascha Haueredfcea82009-02-16 15:13:43 +0100270 if (mx27_revision() >= CHIP_REV_2_0)
271 nfc_pdf = (__raw_readl(CCM_PCDR0) >> 6) & 0xf;
272 else
273 nfc_pdf = (__raw_readl(CCM_PCDR0) >> 12) & 0xf;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200274
275 return parent_rate / (nfc_pdf + 1);
276}
277
Sascha Haueredfcea82009-02-16 15:13:43 +0100278static unsigned long get_rate_vpu(struct clk *clk)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200279{
280 unsigned long vpu_pdf;
281 unsigned long parent_rate;
282
283 parent_rate = clk_get_rate(clk->parent);
284
285 if (mx27_revision() >= CHIP_REV_2_0) {
Sascha Haueredfcea82009-02-16 15:13:43 +0100286 vpu_pdf = (__raw_readl(CCM_PCDR0) >> 10) & 0x3f;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200287 vpu_pdf += 4;
288 } else {
Sascha Haueredfcea82009-02-16 15:13:43 +0100289 vpu_pdf = (__raw_readl(CCM_PCDR0) >> 8) & 0xf;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200290 vpu_pdf = (vpu_pdf < 2) ? 124 : vpu_pdf;
291 }
Sascha Haueredfcea82009-02-16 15:13:43 +0100292
Juergen Beisertc46f5852008-07-05 10:02:59 +0200293 return 2UL * parent_rate / vpu_pdf;
294}
295
Sascha Haueredfcea82009-02-16 15:13:43 +0100296static unsigned long round_rate_parent(struct clk *clk, unsigned long rate)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200297{
298 return clk->parent->round_rate(clk->parent, rate);
299}
300
Sascha Haueredfcea82009-02-16 15:13:43 +0100301static unsigned long get_rate_parent(struct clk *clk)
302{
303 return clk_get_rate(clk->parent);
304}
305
306static int set_rate_parent(struct clk *clk, unsigned long rate)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200307{
308 return clk->parent->set_rate(clk->parent, rate);
309}
310
311/* in Hz */
312static unsigned long external_high_reference = 26000000;
313
Sascha Haueredfcea82009-02-16 15:13:43 +0100314static unsigned long get_rate_high_reference(struct clk *clk)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200315{
316 return external_high_reference;
317}
318
Juergen Beisertc46f5852008-07-05 10:02:59 +0200319/* in Hz */
320static unsigned long external_low_reference = 32768;
321
Sascha Haueredfcea82009-02-16 15:13:43 +0100322static unsigned long get_rate_low_reference(struct clk *clk)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200323{
324 return external_low_reference;
325}
326
Sascha Haueredfcea82009-02-16 15:13:43 +0100327static unsigned long get_rate_fpm(struct clk *clk)
328{
329 return clk_get_rate(clk->parent) * 1024;
330}
Juergen Beisertc46f5852008-07-05 10:02:59 +0200331
Sascha Haueredfcea82009-02-16 15:13:43 +0100332static unsigned long get_rate_mpll(struct clk *clk)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200333{
Sascha Hauera28651972009-01-26 15:41:16 +0100334 return mxc_decode_pll(__raw_readl(CCM_MPCTL0),
335 clk_get_rate(clk->parent));
Juergen Beisertc46f5852008-07-05 10:02:59 +0200336}
337
Sascha Haueredfcea82009-02-16 15:13:43 +0100338static unsigned long get_rate_mpll_main(struct clk *clk)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200339{
340 unsigned long parent_rate;
341
342 parent_rate = clk_get_rate(clk->parent);
343
344 /* i.MX27 TO2:
Sascha Haueredfcea82009-02-16 15:13:43 +0100345 * clk->id == 0: arm clock source path 1 which is from 2 * MPLL / 2
346 * clk->id == 1: arm clock source path 2 which is from 2 * MPLL / 3
Juergen Beisertc46f5852008-07-05 10:02:59 +0200347 */
Juergen Beisertc46f5852008-07-05 10:02:59 +0200348 if (mx27_revision() >= CHIP_REV_2_0 && clk->id == 1)
349 return 2UL * parent_rate / 3UL;
350
351 return parent_rate;
352}
353
Sascha Haueredfcea82009-02-16 15:13:43 +0100354static unsigned long get_rate_spll(struct clk *clk)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200355{
356 uint32_t reg;
Sascha Haueredfcea82009-02-16 15:13:43 +0100357 unsigned long rate;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200358
Sascha Haueredfcea82009-02-16 15:13:43 +0100359 rate = clk_get_rate(clk->parent);
Juergen Beisertc46f5852008-07-05 10:02:59 +0200360
361 reg = __raw_readl(CCM_SPCTL0);
Sascha Hauera28651972009-01-26 15:41:16 +0100362
363 /* On TO2 we have to write the value back. Otherwise we
364 * read 0 from this register the next time.
365 */
Juergen Beisertc46f5852008-07-05 10:02:59 +0200366 if (mx27_revision() >= CHIP_REV_2_0)
367 __raw_writel(reg, CCM_SPCTL0);
368
Sascha Haueredfcea82009-02-16 15:13:43 +0100369 return mxc_decode_pll(reg, rate);
Juergen Beisertc46f5852008-07-05 10:02:59 +0200370}
371
Sascha Haueredfcea82009-02-16 15:13:43 +0100372static unsigned long get_rate_cpu(struct clk *clk)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200373{
374 u32 div;
375 unsigned long rate;
376
377 if (mx27_revision() >= CHIP_REV_2_0)
Sascha Haueredfcea82009-02-16 15:13:43 +0100378 div = (__raw_readl(CCM_CSCR) >> 12) & 0x3;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200379 else
Sascha Haueredfcea82009-02-16 15:13:43 +0100380 div = (__raw_readl(CCM_CSCR) >> 13) & 0x7;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200381
382 rate = clk_get_rate(clk->parent);
383 return rate / (div + 1);
384}
385
Sascha Haueredfcea82009-02-16 15:13:43 +0100386static unsigned long get_rate_ahb(struct clk *clk)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200387{
Sascha Haueredfcea82009-02-16 15:13:43 +0100388 unsigned long rate, bclk_pdf;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200389
390 if (mx27_revision() >= CHIP_REV_2_0)
Sascha Haueredfcea82009-02-16 15:13:43 +0100391 bclk_pdf = (__raw_readl(CCM_CSCR) >> 8) & 0x3;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200392 else
Sascha Haueredfcea82009-02-16 15:13:43 +0100393 bclk_pdf = (__raw_readl(CCM_CSCR) >> 9) & 0xf;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200394
395 rate = clk_get_rate(clk->parent);
396 return rate / (bclk_pdf + 1);
397}
398
Sascha Haueredfcea82009-02-16 15:13:43 +0100399static unsigned long get_rate_ipg(struct clk *clk)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200400{
Sascha Haueredfcea82009-02-16 15:13:43 +0100401 unsigned long rate, ipg_pdf;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200402
403 if (mx27_revision() >= CHIP_REV_2_0)
404 return clk_get_rate(clk->parent);
405 else
Sascha Haueredfcea82009-02-16 15:13:43 +0100406 ipg_pdf = (__raw_readl(CCM_CSCR) >> 8) & 1;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200407
408 rate = clk_get_rate(clk->parent);
409 return rate / (ipg_pdf + 1);
410}
411
Sascha Haueredfcea82009-02-16 15:13:43 +0100412static unsigned long get_rate_per(struct clk *clk)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200413{
Sascha Haueredfcea82009-02-16 15:13:43 +0100414 unsigned long perclk_pdf, parent_rate;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200415
416 parent_rate = clk_get_rate(clk->parent);
417
418 if (clk->id < 0 || clk->id > 3)
419 return 0;
420
Sascha Haueredfcea82009-02-16 15:13:43 +0100421 perclk_pdf = (__raw_readl(CCM_PCDR1) >> (clk->id << 3)) & 0x3f;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200422
423 return parent_rate / (perclk_pdf + 1);
424}
425
Sascha Haueredfcea82009-02-16 15:13:43 +0100426/*
427 * the high frequency external clock reference
428 * Default case is 26MHz. Could be changed at runtime
429 * with a call to change_external_high_reference()
430 */
431static struct clk ckih_clk = {
432 .get_rate = get_rate_high_reference,
Juergen Beisertc46f5852008-07-05 10:02:59 +0200433};
434
Sascha Haueredfcea82009-02-16 15:13:43 +0100435static struct clk mpll_clk = {
436 .parent = &ckih_clk,
437 .get_rate = get_rate_mpll,
Juergen Beisertc46f5852008-07-05 10:02:59 +0200438};
439
Sascha Haueredfcea82009-02-16 15:13:43 +0100440/* For i.MX27 TO2, it is the MPLL path 1 of ARM core
441 * It provides the clock source whose rate is same as MPLL
442 */
443static struct clk mpll_main1_clk = {
444 .id = 0,
445 .parent = &mpll_clk,
446 .get_rate = get_rate_mpll_main,
Juergen Beisertc46f5852008-07-05 10:02:59 +0200447};
448
Sascha Haueredfcea82009-02-16 15:13:43 +0100449/* For i.MX27 TO2, it is the MPLL path 2 of ARM core
450 * It provides the clock source whose rate is same MPLL * 2 / 3
451 */
452static struct clk mpll_main2_clk = {
453 .id = 1,
454 .parent = &mpll_clk,
455 .get_rate = get_rate_mpll_main,
Juergen Beisertc46f5852008-07-05 10:02:59 +0200456};
457
Sascha Haueredfcea82009-02-16 15:13:43 +0100458static struct clk ahb_clk = {
459 .parent = &mpll_main2_clk,
460 .get_rate = get_rate_ahb,
Juergen Beisertc46f5852008-07-05 10:02:59 +0200461};
462
Sascha Haueredfcea82009-02-16 15:13:43 +0100463static struct clk ipg_clk = {
464 .parent = &ahb_clk,
465 .get_rate = get_rate_ipg,
Juergen Beisertc46f5852008-07-05 10:02:59 +0200466};
467
Sascha Haueredfcea82009-02-16 15:13:43 +0100468static struct clk cpu_clk = {
469 .parent = &mpll_main2_clk,
470 .set_parent = clk_cpu_set_parent,
471 .round_rate = round_rate_cpu,
472 .get_rate = get_rate_cpu,
473 .set_rate = set_rate_cpu,
Juergen Beisertc46f5852008-07-05 10:02:59 +0200474};
475
Sascha Haueredfcea82009-02-16 15:13:43 +0100476static struct clk spll_clk = {
477 .parent = &ckih_clk,
478 .get_rate = get_rate_spll,
479 .enable = clk_spll_enable,
480 .disable = clk_spll_disable,
Juergen Beisertc46f5852008-07-05 10:02:59 +0200481};
482
Sascha Haueredfcea82009-02-16 15:13:43 +0100483/*
484 * the low frequency external clock reference
485 * Default case is 32.768kHz.
486 */
487static struct clk ckil_clk = {
488 .get_rate = get_rate_low_reference,
Juergen Beisertc46f5852008-07-05 10:02:59 +0200489};
490
Sascha Haueredfcea82009-02-16 15:13:43 +0100491/* Output of frequency pre multiplier */
492static struct clk fpm_clk = {
493 .parent = &ckil_clk,
494 .get_rate = get_rate_fpm,
Juergen Beisertc46f5852008-07-05 10:02:59 +0200495};
496
Sascha Haueredfcea82009-02-16 15:13:43 +0100497#define PCCR0 CCM_PCCR0
498#define PCCR1 CCM_PCCR1
Juergen Beisertc46f5852008-07-05 10:02:59 +0200499
Sascha Haueredfcea82009-02-16 15:13:43 +0100500#define DEFINE_CLOCK(name, i, er, es, gr, s, p) \
501 static struct clk name = { \
502 .id = i, \
503 .enable_reg = er, \
504 .enable_shift = es, \
505 .get_rate = gr, \
506 .enable = clk_pccr_enable, \
507 .disable = clk_pccr_disable, \
508 .secondary = s, \
509 .parent = p, \
Juergen Beisertc46f5852008-07-05 10:02:59 +0200510 }
Juergen Beisertc46f5852008-07-05 10:02:59 +0200511
Sascha Haueredfcea82009-02-16 15:13:43 +0100512#define DEFINE_CLOCK1(name, i, er, es, getsetround, s, p) \
513 static struct clk name = { \
514 .id = i, \
515 .enable_reg = er, \
516 .enable_shift = es, \
517 .get_rate = get_rate_##getsetround, \
518 .set_rate = set_rate_##getsetround, \
519 .round_rate = round_rate_##getsetround, \
520 .enable = clk_pccr_enable, \
521 .disable = clk_pccr_disable, \
522 .secondary = s, \
523 .parent = p, \
524 }
525
526/* Forward declaration to keep the following list in order */
527static struct clk slcdc_clk1, sahara2_clk1, rtic_clk1, fec_clk1, emma_clk1,
528 dma_clk1, lcdc_clk2, vpu_clk1;
529
530/* All clocks we can gate through PCCRx in the order of PCCRx bits */
531DEFINE_CLOCK(ssi2_clk1, 1, PCCR0, 0, NULL, NULL, &ipg_clk);
532DEFINE_CLOCK(ssi1_clk1, 0, PCCR0, 1, NULL, NULL, &ipg_clk);
533DEFINE_CLOCK(slcdc_clk, 0, PCCR0, 2, NULL, &slcdc_clk1, &ahb_clk);
534DEFINE_CLOCK(sdhc3_clk1, 0, PCCR0, 3, NULL, NULL, &ipg_clk);
535DEFINE_CLOCK(sdhc2_clk1, 0, PCCR0, 4, NULL, NULL, &ipg_clk);
536DEFINE_CLOCK(sdhc1_clk1, 0, PCCR0, 5, NULL, NULL, &ipg_clk);
537DEFINE_CLOCK(scc_clk, 0, PCCR0, 6, NULL, NULL, &ipg_clk);
538DEFINE_CLOCK(sahara2_clk, 0, PCCR0, 7, NULL, &sahara2_clk1, &ahb_clk);
539DEFINE_CLOCK(rtic_clk, 0, PCCR0, 8, NULL, &rtic_clk1, &ahb_clk);
540DEFINE_CLOCK(rtc_clk, 0, PCCR0, 9, NULL, NULL, &ipg_clk);
541DEFINE_CLOCK(pwm_clk1, 0, PCCR0, 11, NULL, NULL, &ipg_clk);
542DEFINE_CLOCK(owire_clk, 0, PCCR0, 12, NULL, NULL, &ipg_clk);
543DEFINE_CLOCK(mstick_clk1, 0, PCCR0, 13, NULL, NULL, &ipg_clk);
544DEFINE_CLOCK(lcdc_clk1, 0, PCCR0, 14, NULL, &lcdc_clk2, &ipg_clk);
545DEFINE_CLOCK(kpp_clk, 0, PCCR0, 15, NULL, NULL, &ipg_clk);
546DEFINE_CLOCK(iim_clk, 0, PCCR0, 16, NULL, NULL, &ipg_clk);
547DEFINE_CLOCK(i2c2_clk, 1, PCCR0, 17, NULL, NULL, &ipg_clk);
548DEFINE_CLOCK(i2c1_clk, 0, PCCR0, 18, NULL, NULL, &ipg_clk);
549DEFINE_CLOCK(gpt6_clk1, 0, PCCR0, 29, NULL, NULL, &ipg_clk);
550DEFINE_CLOCK(gpt5_clk1, 0, PCCR0, 20, NULL, NULL, &ipg_clk);
551DEFINE_CLOCK(gpt4_clk1, 0, PCCR0, 21, NULL, NULL, &ipg_clk);
552DEFINE_CLOCK(gpt3_clk1, 0, PCCR0, 22, NULL, NULL, &ipg_clk);
553DEFINE_CLOCK(gpt2_clk1, 0, PCCR0, 23, NULL, NULL, &ipg_clk);
554DEFINE_CLOCK(gpt1_clk1, 0, PCCR0, 24, NULL, NULL, &ipg_clk);
555DEFINE_CLOCK(gpio_clk, 0, PCCR0, 25, NULL, NULL, &ipg_clk);
556DEFINE_CLOCK(fec_clk, 0, PCCR0, 26, NULL, &fec_clk1, &ahb_clk);
557DEFINE_CLOCK(emma_clk, 0, PCCR0, 27, NULL, &emma_clk1, &ahb_clk);
558DEFINE_CLOCK(dma_clk, 0, PCCR0, 28, NULL, &dma_clk1, &ahb_clk);
559DEFINE_CLOCK(cspi13_clk1, 0, PCCR0, 29, NULL, NULL, &ipg_clk);
560DEFINE_CLOCK(cspi2_clk1, 0, PCCR0, 30, NULL, NULL, &ipg_clk);
561DEFINE_CLOCK(cspi1_clk1, 0, PCCR0, 31, NULL, NULL, &ipg_clk);
562
563DEFINE_CLOCK(mstick_clk, 0, PCCR1, 2, NULL, &mstick_clk1, &ipg_clk);
564DEFINE_CLOCK(nfc_clk, 0, PCCR1, 3, get_rate_nfc, NULL, &cpu_clk);
565DEFINE_CLOCK(ssi2_clk, 1, PCCR1, 4, get_rate_ssi2, &ssi2_clk1, &mpll_main2_clk);
566DEFINE_CLOCK(ssi1_clk, 0, PCCR1, 5, get_rate_ssi1, &ssi1_clk1, &mpll_main2_clk);
567DEFINE_CLOCK(vpu_clk, 0, PCCR1, 6, get_rate_vpu, &vpu_clk1, &mpll_main2_clk);
568DEFINE_CLOCK1(per4_clk, 3, PCCR1, 7, per, NULL, &mpll_main2_clk);
569DEFINE_CLOCK1(per3_clk, 2, PCCR1, 8, per, NULL, &mpll_main2_clk);
570DEFINE_CLOCK1(per2_clk, 1, PCCR1, 9, per, NULL, &mpll_main2_clk);
571DEFINE_CLOCK1(per1_clk, 0, PCCR1, 10, per, NULL, &mpll_main2_clk);
572DEFINE_CLOCK(usb_clk1, 0, PCCR1, 11, NULL, NULL, &ahb_clk);
573DEFINE_CLOCK(slcdc_clk1, 0, PCCR1, 12, NULL, NULL, &ahb_clk);
574DEFINE_CLOCK(sahara2_clk1, 0, PCCR1, 13, NULL, NULL, &ahb_clk);
575DEFINE_CLOCK(rtic_clk1, 0, PCCR1, 14, NULL, NULL, &ahb_clk);
576DEFINE_CLOCK(lcdc_clk2, 0, PCCR1, 15, NULL, NULL, &ahb_clk);
577DEFINE_CLOCK(vpu_clk1, 0, PCCR1, 16, NULL, NULL, &ahb_clk);
578DEFINE_CLOCK(fec_clk1, 0, PCCR1, 17, NULL, NULL, &ahb_clk);
579DEFINE_CLOCK(emma_clk1, 0, PCCR1, 18, NULL, NULL, &ahb_clk);
580DEFINE_CLOCK(emi_clk, 0, PCCR1, 19, NULL, NULL, &ahb_clk);
581DEFINE_CLOCK(dma_clk1, 0, PCCR1, 20, NULL, NULL, &ahb_clk);
582DEFINE_CLOCK(csi_clk1, 0, PCCR1, 21, NULL, NULL, &ahb_clk);
583DEFINE_CLOCK(brom_clk, 0, PCCR1, 22, NULL, NULL, &ahb_clk);
584DEFINE_CLOCK(ata_clk, 0, PCCR1, 23, NULL, NULL, &ahb_clk);
585DEFINE_CLOCK(wdog_clk, 0, PCCR1, 24, NULL, NULL, &ipg_clk);
586DEFINE_CLOCK(usb_clk, 0, PCCR1, 25, get_rate_usb, &usb_clk1, &spll_clk);
587DEFINE_CLOCK(uart6_clk1, 0, PCCR1, 26, NULL, NULL, &ipg_clk);
588DEFINE_CLOCK(uart5_clk1, 0, PCCR1, 27, NULL, NULL, &ipg_clk);
589DEFINE_CLOCK(uart4_clk1, 0, PCCR1, 28, NULL, NULL, &ipg_clk);
590DEFINE_CLOCK(uart3_clk1, 0, PCCR1, 29, NULL, NULL, &ipg_clk);
591DEFINE_CLOCK(uart2_clk1, 0, PCCR1, 30, NULL, NULL, &ipg_clk);
592DEFINE_CLOCK(uart1_clk1, 0, PCCR1, 31, NULL, NULL, &ipg_clk);
593
594/* Clocks we cannot directly gate, but drivers need their rates */
595DEFINE_CLOCK(cspi1_clk, 0, 0, 0, NULL, &cspi1_clk1, &per2_clk);
596DEFINE_CLOCK(cspi2_clk, 1, 0, 0, NULL, &cspi2_clk1, &per2_clk);
597DEFINE_CLOCK(cspi3_clk, 2, 0, 0, NULL, &cspi13_clk1, &per2_clk);
598DEFINE_CLOCK(sdhc1_clk, 0, 0, 0, NULL, &sdhc1_clk1, &per2_clk);
599DEFINE_CLOCK(sdhc2_clk, 1, 0, 0, NULL, &sdhc2_clk1, &per2_clk);
600DEFINE_CLOCK(sdhc3_clk, 2, 0, 0, NULL, &sdhc3_clk1, &per2_clk);
601DEFINE_CLOCK(pwm_clk, 0, 0, 0, NULL, &pwm_clk1, &per1_clk);
602DEFINE_CLOCK(gpt1_clk, 0, 0, 0, NULL, &gpt1_clk1, &per1_clk);
603DEFINE_CLOCK(gpt2_clk, 1, 0, 0, NULL, &gpt2_clk1, &per1_clk);
604DEFINE_CLOCK(gpt3_clk, 2, 0, 0, NULL, &gpt3_clk1, &per1_clk);
605DEFINE_CLOCK(gpt4_clk, 3, 0, 0, NULL, &gpt4_clk1, &per1_clk);
606DEFINE_CLOCK(gpt5_clk, 4, 0, 0, NULL, &gpt5_clk1, &per1_clk);
607DEFINE_CLOCK(gpt6_clk, 5, 0, 0, NULL, &gpt6_clk1, &per1_clk);
608DEFINE_CLOCK(uart1_clk, 0, 0, 0, NULL, &uart1_clk1, &per1_clk);
609DEFINE_CLOCK(uart2_clk, 1, 0, 0, NULL, &uart2_clk1, &per1_clk);
610DEFINE_CLOCK(uart3_clk, 2, 0, 0, NULL, &uart3_clk1, &per1_clk);
611DEFINE_CLOCK(uart4_clk, 3, 0, 0, NULL, &uart4_clk1, &per1_clk);
612DEFINE_CLOCK(uart5_clk, 4, 0, 0, NULL, &uart5_clk1, &per1_clk);
613DEFINE_CLOCK(uart6_clk, 5, 0, 0, NULL, &uart6_clk1, &per1_clk);
614DEFINE_CLOCK1(lcdc_clk, 0, 0, 0, parent, &lcdc_clk1, &per3_clk);
615DEFINE_CLOCK1(csi_clk, 0, 0, 0, parent, &csi_clk1, &per4_clk);
616
617#define _REGISTER_CLOCK(d, n, c) \
618 { \
619 .dev_id = d, \
620 .con_id = n, \
621 .clk = &c, \
Juergen Beisertc46f5852008-07-05 10:02:59 +0200622 },
Sascha Haueredfcea82009-02-16 15:13:43 +0100623
Rabin Vincent6b4bfb82009-05-26 22:31:46 +0530624static struct clk_lookup lookups[] = {
Sascha Haueredfcea82009-02-16 15:13:43 +0100625 _REGISTER_CLOCK("imx-uart.0", NULL, uart1_clk)
626 _REGISTER_CLOCK("imx-uart.1", NULL, uart2_clk)
627 _REGISTER_CLOCK("imx-uart.2", NULL, uart3_clk)
628 _REGISTER_CLOCK("imx-uart.3", NULL, uart4_clk)
629 _REGISTER_CLOCK("imx-uart.4", NULL, uart5_clk)
630 _REGISTER_CLOCK("imx-uart.5", NULL, uart6_clk)
631 _REGISTER_CLOCK(NULL, "gpt1", gpt1_clk)
632 _REGISTER_CLOCK(NULL, "gpt2", gpt2_clk)
633 _REGISTER_CLOCK(NULL, "gpt3", gpt3_clk)
634 _REGISTER_CLOCK(NULL, "gpt4", gpt4_clk)
635 _REGISTER_CLOCK(NULL, "gpt5", gpt5_clk)
636 _REGISTER_CLOCK(NULL, "gpt6", gpt6_clk)
637 _REGISTER_CLOCK("mxc_pwm.0", NULL, pwm_clk)
638 _REGISTER_CLOCK("mxc-mmc.0", NULL, sdhc1_clk)
639 _REGISTER_CLOCK("mxc-mmc.1", NULL, sdhc2_clk)
640 _REGISTER_CLOCK("mxc-mmc.2", NULL, sdhc3_clk)
Sascha Hauer5cf3bcd2009-09-24 09:58:52 +0200641 _REGISTER_CLOCK("spi_imx.0", NULL, cspi1_clk)
642 _REGISTER_CLOCK("spi_imx.1", NULL, cspi2_clk)
643 _REGISTER_CLOCK("spi_imx.2", NULL, cspi3_clk)
Sascha Haueredfcea82009-02-16 15:13:43 +0100644 _REGISTER_CLOCK("imx-fb.0", NULL, lcdc_clk)
645 _REGISTER_CLOCK(NULL, "csi", csi_clk)
javier Martin627fb3b2009-07-15 15:26:21 +0200646 _REGISTER_CLOCK("fsl-usb2-udc", "usb", usb_clk)
647 _REGISTER_CLOCK("fsl-usb2-udc", "usb_ahb", usb_clk1)
648 _REGISTER_CLOCK("mxc-ehci.0", "usb", usb_clk)
649 _REGISTER_CLOCK("mxc-ehci.0", "usb_ahb", usb_clk1)
650 _REGISTER_CLOCK("mxc-ehci.1", "usb", usb_clk)
651 _REGISTER_CLOCK("mxc-ehci.1", "usb_ahb", usb_clk1)
652 _REGISTER_CLOCK("mxc-ehci.2", "usb", usb_clk)
653 _REGISTER_CLOCK("mxc-ehci.2", "usb_ahb", usb_clk1)
Sascha Hauer23291df2009-10-22 14:50:33 +0200654 _REGISTER_CLOCK("imx-ssi.0", NULL, ssi1_clk)
655 _REGISTER_CLOCK("imx-ssi.1", NULL, ssi2_clk)
Sascha Haueredfcea82009-02-16 15:13:43 +0100656 _REGISTER_CLOCK("mxc_nand.0", NULL, nfc_clk)
657 _REGISTER_CLOCK(NULL, "vpu", vpu_clk)
658 _REGISTER_CLOCK(NULL, "dma", dma_clk)
659 _REGISTER_CLOCK(NULL, "rtic", rtic_clk)
660 _REGISTER_CLOCK(NULL, "brom", brom_clk)
661 _REGISTER_CLOCK(NULL, "emma", emma_clk)
662 _REGISTER_CLOCK(NULL, "slcdc", slcdc_clk)
663 _REGISTER_CLOCK("fec.0", NULL, fec_clk)
664 _REGISTER_CLOCK(NULL, "emi", emi_clk)
665 _REGISTER_CLOCK(NULL, "sahara2", sahara2_clk)
666 _REGISTER_CLOCK(NULL, "ata", ata_clk)
667 _REGISTER_CLOCK(NULL, "mstick", mstick_clk)
Valentin Longchamp679bfef2009-10-08 18:12:24 +0200668 _REGISTER_CLOCK("imx-wdt.0", NULL, wdog_clk)
Sascha Haueredfcea82009-02-16 15:13:43 +0100669 _REGISTER_CLOCK(NULL, "gpio", gpio_clk)
670 _REGISTER_CLOCK("imx-i2c.0", NULL, i2c1_clk)
671 _REGISTER_CLOCK("imx-i2c.1", NULL, i2c2_clk)
672 _REGISTER_CLOCK(NULL, "iim", iim_clk)
673 _REGISTER_CLOCK(NULL, "kpp", kpp_clk)
674 _REGISTER_CLOCK("mxc_w1.0", NULL, owire_clk)
675 _REGISTER_CLOCK(NULL, "rtc", rtc_clk)
676 _REGISTER_CLOCK(NULL, "scc", scc_clk)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200677};
678
Sascha Haueredfcea82009-02-16 15:13:43 +0100679/* Adjust the clock path for TO2 and later */
680static void __init to2_adjust_clocks(void)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200681{
Sascha Haueredfcea82009-02-16 15:13:43 +0100682 unsigned long cscr = __raw_readl(CCM_CSCR);
Juergen Beisertc46f5852008-07-05 10:02:59 +0200683
684 if (mx27_revision() >= CHIP_REV_2_0) {
Sascha Haueredfcea82009-02-16 15:13:43 +0100685 if (cscr & CCM_CSCR_ARM_SRC)
686 cpu_clk.parent = &mpll_main1_clk;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200687
Sascha Haueredfcea82009-02-16 15:13:43 +0100688 if (!(cscr & CCM_CSCR_SSI2))
689 ssi1_clk.parent = &spll_clk;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200690
Sascha Haueredfcea82009-02-16 15:13:43 +0100691 if (!(cscr & CCM_CSCR_SSI1))
692 ssi1_clk.parent = &spll_clk;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200693
Sascha Haueredfcea82009-02-16 15:13:43 +0100694 if (!(cscr & CCM_CSCR_VPU))
Juergen Beisertc46f5852008-07-05 10:02:59 +0200695 vpu_clk.parent = &spll_clk;
696 } else {
697 cpu_clk.parent = &mpll_clk;
698 cpu_clk.set_parent = NULL;
699 cpu_clk.round_rate = NULL;
700 cpu_clk.set_rate = NULL;
701 ahb_clk.parent = &mpll_clk;
702
Sascha Haueredfcea82009-02-16 15:13:43 +0100703 per1_clk.parent = &mpll_clk;
704 per2_clk.parent = &mpll_clk;
705 per3_clk.parent = &mpll_clk;
706 per4_clk.parent = &mpll_clk;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200707
Sascha Haueredfcea82009-02-16 15:13:43 +0100708 ssi1_clk.parent = &mpll_clk;
709 ssi2_clk.parent = &mpll_clk;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200710
711 vpu_clk.parent = &mpll_clk;
712 }
713}
714
715/*
716 * must be called very early to get information about the
717 * available clock rate when the timer framework starts
718 */
Sascha Hauer30c730f2009-02-16 14:36:49 +0100719int __init mx27_clocks_init(unsigned long fref)
Juergen Beisertc46f5852008-07-05 10:02:59 +0200720{
Sascha Haueredfcea82009-02-16 15:13:43 +0100721 u32 cscr = __raw_readl(CCM_CSCR);
722 int i;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200723
724 external_high_reference = fref;
725
Sascha Haueredfcea82009-02-16 15:13:43 +0100726 /* detect clock reference for both system PLLs */
Juergen Beisertc46f5852008-07-05 10:02:59 +0200727 if (cscr & CCM_CSCR_MCU)
728 mpll_clk.parent = &ckih_clk;
729 else
Sascha Haueredfcea82009-02-16 15:13:43 +0100730 mpll_clk.parent = &fpm_clk;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200731
732 if (cscr & CCM_CSCR_SP)
733 spll_clk.parent = &ckih_clk;
734 else
Sascha Haueredfcea82009-02-16 15:13:43 +0100735 spll_clk.parent = &fpm_clk;
Juergen Beisertc46f5852008-07-05 10:02:59 +0200736
Sascha Haueredfcea82009-02-16 15:13:43 +0100737 to2_adjust_clocks();
Juergen Beisertc46f5852008-07-05 10:02:59 +0200738
Sascha Haueredfcea82009-02-16 15:13:43 +0100739 for (i = 0; i < ARRAY_SIZE(lookups); i++)
740 clkdev_add(&lookups[i]);
Juergen Beisertc46f5852008-07-05 10:02:59 +0200741
Sascha Haueredfcea82009-02-16 15:13:43 +0100742 /* Turn off all clocks we do not need */
743 __raw_writel(0, CCM_PCCR0);
744 __raw_writel((1 << 10) | (1 << 19), CCM_PCCR1);
Juergen Beisertc46f5852008-07-05 10:02:59 +0200745
Juergen Beisertc46f5852008-07-05 10:02:59 +0200746 spll_clk.disable(&spll_clk);
747
Sascha Haueredfcea82009-02-16 15:13:43 +0100748 /* enable basic clocks */
749 clk_enable(&per1_clk);
Juergen Beisertc46f5852008-07-05 10:02:59 +0200750 clk_enable(&gpio_clk);
Sascha Haueredfcea82009-02-16 15:13:43 +0100751 clk_enable(&emi_clk);
Juergen Beisertc46f5852008-07-05 10:02:59 +0200752 clk_enable(&iim_clk);
Sascha Haueredfcea82009-02-16 15:13:43 +0100753
Uwe Kleine-König97adeda2009-11-12 22:56:29 +0100754#if defined(CONFIG_DEBUG_LL) && !defined(CONFIG_DEBUG_ICEDCC)
Sascha Haueredfcea82009-02-16 15:13:43 +0100755 clk_enable(&uart1_clk);
Juergen Beisertc46f5852008-07-05 10:02:59 +0200756#endif
Sascha Hauer30c730f2009-02-16 14:36:49 +0100757
Sascha Hauer8db5d1a2009-05-25 12:21:38 +0200758 mxc_timer_init(&gpt1_clk, IO_ADDRESS(GPT1_BASE_ADDR), MXC_INT_GPT1);
Sascha Hauer30c730f2009-02-16 14:36:49 +0100759
Juergen Beisertc46f5852008-07-05 10:02:59 +0200760 return 0;
761}
Sascha Haueredfcea82009-02-16 15:13:43 +0100762