Linux Audio

Check our new training course

Linux debugging, profiling, tracing and performance analysis training

Mar 24-27, 2025, special US time zones
Register
Loading...
v3.1
  1/*
  2 *  linux/arch/arm/mach-omap1/clock_data.c
  3 *
  4 *  Copyright (C) 2004 - 2005, 2009-2010 Nokia Corporation
  5 *  Written by Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com>
  6 *  Based on clocks.h by Tony Lindgren, Gordon McNutt and RidgeRun, Inc
  7 *
  8 * This program is free software; you can redistribute it and/or modify
  9 * it under the terms of the GNU General Public License version 2 as
 10 * published by the Free Software Foundation.
 11 *
 12 * To do:
 13 * - Clocks that are only available on some chips should be marked with the
 14 *   chips that they are present on.
 15 */
 16
 17#include <linux/kernel.h>
 18#include <linux/clk.h>
 19#include <linux/io.h>
 
 
 
 20
 21#include <asm/mach-types.h>  /* for machine_is_* */
 22
 23#include <plat/clock.h>
 24#include <plat/cpu.h>
 25#include <plat/clkdev_omap.h>
 
 26#include <plat/usb.h>   /* for OTG_BASE */
 27
 
 
 
 28#include "clock.h"
 29
 30/* Some ARM_IDLECT1 bit shifts - used in struct arm_idlect1_clk */
 31#define IDL_CLKOUT_ARM_SHIFT			12
 32#define IDLTIM_ARM_SHIFT			9
 33#define IDLAPI_ARM_SHIFT			8
 34#define IDLIF_ARM_SHIFT				6
 35#define IDLLB_ARM_SHIFT				4	/* undocumented? */
 36#define OMAP1510_IDLLCD_ARM_SHIFT		3	/* undocumented? */
 37#define IDLPER_ARM_SHIFT			2
 38#define IDLXORP_ARM_SHIFT			1
 39#define IDLWDT_ARM_SHIFT			0
 40
 41/* Some MOD_CONF_CTRL_0 bit shifts - used in struct clk.enable_bit */
 42#define CONF_MOD_UART3_CLK_MODE_R		31
 43#define CONF_MOD_UART2_CLK_MODE_R		30
 44#define CONF_MOD_UART1_CLK_MODE_R		29
 45#define CONF_MOD_MMC_SD_CLK_REQ_R		23
 46#define CONF_MOD_MCBSP3_AUXON			20
 47
 48/* Some MOD_CONF_CTRL_1 bit shifts - used in struct clk.enable_bit */
 49#define CONF_MOD_SOSSI_CLK_EN_R			16
 50
 51/* Some OTG_SYSCON_2-specific bit fields */
 52#define OTG_SYSCON_2_UHOST_EN_SHIFT		8
 53
 54/* Some SOFT_REQ_REG bit fields - used in struct clk.enable_bit */
 55#define SOFT_MMC2_DPLL_REQ_SHIFT	13
 56#define SOFT_MMC_DPLL_REQ_SHIFT		12
 57#define SOFT_UART3_DPLL_REQ_SHIFT	11
 58#define SOFT_UART2_DPLL_REQ_SHIFT	10
 59#define SOFT_UART1_DPLL_REQ_SHIFT	9
 60#define SOFT_USB_OTG_DPLL_REQ_SHIFT	8
 61#define SOFT_CAM_DPLL_REQ_SHIFT		7
 62#define SOFT_COM_MCKO_REQ_SHIFT		6
 63#define SOFT_PERIPH_REQ_SHIFT		5	/* sys_ck gate for UART2 ? */
 64#define USB_REQ_EN_SHIFT		4
 65#define SOFT_USB_REQ_SHIFT		3	/* sys_ck gate for USB host? */
 66#define SOFT_SDW_REQ_SHIFT		2	/* sys_ck gate for Bluetooth? */
 67#define SOFT_COM_REQ_SHIFT		1	/* sys_ck gate for com proc? */
 68#define SOFT_DPLL_REQ_SHIFT		0
 69
 70/*
 71 * Omap1 clocks
 72 */
 73
 74static struct clk ck_ref = {
 75	.name		= "ck_ref",
 76	.ops		= &clkops_null,
 77	.rate		= 12000000,
 78};
 79
 80static struct clk ck_dpll1 = {
 81	.name		= "ck_dpll1",
 82	.ops		= &clkops_null,
 83	.parent		= &ck_ref,
 84};
 85
 86/*
 87 * FIXME: This clock seems to be necessary but no-one has asked for its
 88 * activation.  [ FIX: SoSSI, SSR ]
 89 */
 90static struct arm_idlect1_clk ck_dpll1out = {
 91	.clk = {
 92		.name		= "ck_dpll1out",
 93		.ops		= &clkops_generic,
 94		.parent		= &ck_dpll1,
 95		.flags		= CLOCK_IDLE_CONTROL | ENABLE_REG_32BIT |
 96				  ENABLE_ON_INIT,
 97		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
 98		.enable_bit	= EN_CKOUT_ARM,
 99		.recalc		= &followparent_recalc,
100	},
101	.idlect_shift	= IDL_CLKOUT_ARM_SHIFT,
102};
103
104static struct clk sossi_ck = {
105	.name		= "ck_sossi",
106	.ops		= &clkops_generic,
107	.parent		= &ck_dpll1out.clk,
108	.flags		= CLOCK_NO_IDLE_PARENT | ENABLE_REG_32BIT,
109	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_1),
110	.enable_bit	= CONF_MOD_SOSSI_CLK_EN_R,
111	.recalc		= &omap1_sossi_recalc,
112	.set_rate	= &omap1_set_sossi_rate,
113};
114
115static struct clk arm_ck = {
116	.name		= "arm_ck",
117	.ops		= &clkops_null,
118	.parent		= &ck_dpll1,
119	.rate_offset	= CKCTL_ARMDIV_OFFSET,
120	.recalc		= &omap1_ckctl_recalc,
121	.round_rate	= omap1_clk_round_rate_ckctl_arm,
122	.set_rate	= omap1_clk_set_rate_ckctl_arm,
123};
124
125static struct arm_idlect1_clk armper_ck = {
126	.clk = {
127		.name		= "armper_ck",
128		.ops		= &clkops_generic,
129		.parent		= &ck_dpll1,
130		.flags		= CLOCK_IDLE_CONTROL,
131		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
132		.enable_bit	= EN_PERCK,
133		.rate_offset	= CKCTL_PERDIV_OFFSET,
134		.recalc		= &omap1_ckctl_recalc,
135		.round_rate	= omap1_clk_round_rate_ckctl_arm,
136		.set_rate	= omap1_clk_set_rate_ckctl_arm,
137	},
138	.idlect_shift	= IDLPER_ARM_SHIFT,
139};
140
141/*
142 * FIXME: This clock seems to be necessary but no-one has asked for its
143 * activation.  [ GPIO code for 1510 ]
144 */
145static struct clk arm_gpio_ck = {
146	.name		= "ick",
147	.ops		= &clkops_generic,
148	.parent		= &ck_dpll1,
149	.flags		= ENABLE_ON_INIT,
150	.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
151	.enable_bit	= EN_GPIOCK,
152	.recalc		= &followparent_recalc,
153};
154
155static struct arm_idlect1_clk armxor_ck = {
156	.clk = {
157		.name		= "armxor_ck",
158		.ops		= &clkops_generic,
159		.parent		= &ck_ref,
160		.flags		= CLOCK_IDLE_CONTROL,
161		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
162		.enable_bit	= EN_XORPCK,
163		.recalc		= &followparent_recalc,
164	},
165	.idlect_shift	= IDLXORP_ARM_SHIFT,
166};
167
168static struct arm_idlect1_clk armtim_ck = {
169	.clk = {
170		.name		= "armtim_ck",
171		.ops		= &clkops_generic,
172		.parent		= &ck_ref,
173		.flags		= CLOCK_IDLE_CONTROL,
174		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
175		.enable_bit	= EN_TIMCK,
176		.recalc		= &followparent_recalc,
177	},
178	.idlect_shift	= IDLTIM_ARM_SHIFT,
179};
180
181static struct arm_idlect1_clk armwdt_ck = {
182	.clk = {
183		.name		= "armwdt_ck",
184		.ops		= &clkops_generic,
185		.parent		= &ck_ref,
186		.flags		= CLOCK_IDLE_CONTROL,
187		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
188		.enable_bit	= EN_WDTCK,
189		.fixed_div	= 14,
190		.recalc		= &omap_fixed_divisor_recalc,
191	},
192	.idlect_shift	= IDLWDT_ARM_SHIFT,
193};
194
195static struct clk arminth_ck16xx = {
196	.name		= "arminth_ck",
197	.ops		= &clkops_null,
198	.parent		= &arm_ck,
199	.recalc		= &followparent_recalc,
200	/* Note: On 16xx the frequency can be divided by 2 by programming
201	 * ARM_CKCTL:ARM_INTHCK_SEL(14) to 1
202	 *
203	 * 1510 version is in TC clocks.
204	 */
205};
206
207static struct clk dsp_ck = {
208	.name		= "dsp_ck",
209	.ops		= &clkops_generic,
210	.parent		= &ck_dpll1,
211	.enable_reg	= OMAP1_IO_ADDRESS(ARM_CKCTL),
212	.enable_bit	= EN_DSPCK,
213	.rate_offset	= CKCTL_DSPDIV_OFFSET,
214	.recalc		= &omap1_ckctl_recalc,
215	.round_rate	= omap1_clk_round_rate_ckctl_arm,
216	.set_rate	= omap1_clk_set_rate_ckctl_arm,
217};
218
219static struct clk dspmmu_ck = {
220	.name		= "dspmmu_ck",
221	.ops		= &clkops_null,
222	.parent		= &ck_dpll1,
223	.rate_offset	= CKCTL_DSPMMUDIV_OFFSET,
224	.recalc		= &omap1_ckctl_recalc,
225	.round_rate	= omap1_clk_round_rate_ckctl_arm,
226	.set_rate	= omap1_clk_set_rate_ckctl_arm,
227};
228
229static struct clk dspper_ck = {
230	.name		= "dspper_ck",
231	.ops		= &clkops_dspck,
232	.parent		= &ck_dpll1,
233	.enable_reg	= DSP_IDLECT2,
234	.enable_bit	= EN_PERCK,
235	.rate_offset	= CKCTL_PERDIV_OFFSET,
236	.recalc		= &omap1_ckctl_recalc_dsp_domain,
237	.round_rate	= omap1_clk_round_rate_ckctl_arm,
238	.set_rate	= &omap1_clk_set_rate_dsp_domain,
239};
240
241static struct clk dspxor_ck = {
242	.name		= "dspxor_ck",
243	.ops		= &clkops_dspck,
244	.parent		= &ck_ref,
245	.enable_reg	= DSP_IDLECT2,
246	.enable_bit	= EN_XORPCK,
247	.recalc		= &followparent_recalc,
248};
249
250static struct clk dsptim_ck = {
251	.name		= "dsptim_ck",
252	.ops		= &clkops_dspck,
253	.parent		= &ck_ref,
254	.enable_reg	= DSP_IDLECT2,
255	.enable_bit	= EN_DSPTIMCK,
256	.recalc		= &followparent_recalc,
257};
258
259static struct arm_idlect1_clk tc_ck = {
260	.clk = {
261		.name		= "tc_ck",
262		.ops		= &clkops_null,
263		.parent		= &ck_dpll1,
264		.flags		= CLOCK_IDLE_CONTROL,
265		.rate_offset	= CKCTL_TCDIV_OFFSET,
266		.recalc		= &omap1_ckctl_recalc,
267		.round_rate	= omap1_clk_round_rate_ckctl_arm,
268		.set_rate	= omap1_clk_set_rate_ckctl_arm,
269	},
270	.idlect_shift	= IDLIF_ARM_SHIFT,
271};
272
273static struct clk arminth_ck1510 = {
274	.name		= "arminth_ck",
275	.ops		= &clkops_null,
276	.parent		= &tc_ck.clk,
277	.recalc		= &followparent_recalc,
278	/* Note: On 1510 the frequency follows TC_CK
279	 *
280	 * 16xx version is in MPU clocks.
281	 */
282};
283
284static struct clk tipb_ck = {
285	/* No-idle controlled by "tc_ck" */
286	.name		= "tipb_ck",
287	.ops		= &clkops_null,
288	.parent		= &tc_ck.clk,
289	.recalc		= &followparent_recalc,
290};
291
292static struct clk l3_ocpi_ck = {
293	/* No-idle controlled by "tc_ck" */
294	.name		= "l3_ocpi_ck",
295	.ops		= &clkops_generic,
296	.parent		= &tc_ck.clk,
297	.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT3),
298	.enable_bit	= EN_OCPI_CK,
299	.recalc		= &followparent_recalc,
300};
301
302static struct clk tc1_ck = {
303	.name		= "tc1_ck",
304	.ops		= &clkops_generic,
305	.parent		= &tc_ck.clk,
306	.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT3),
307	.enable_bit	= EN_TC1_CK,
308	.recalc		= &followparent_recalc,
309};
310
311/*
312 * FIXME: This clock seems to be necessary but no-one has asked for its
313 * activation.  [ pm.c (SRAM), CCP, Camera ]
314 */
315static struct clk tc2_ck = {
316	.name		= "tc2_ck",
317	.ops		= &clkops_generic,
318	.parent		= &tc_ck.clk,
319	.flags		= ENABLE_ON_INIT,
320	.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT3),
321	.enable_bit	= EN_TC2_CK,
322	.recalc		= &followparent_recalc,
323};
324
325static struct clk dma_ck = {
326	/* No-idle controlled by "tc_ck" */
327	.name		= "dma_ck",
328	.ops		= &clkops_null,
329	.parent		= &tc_ck.clk,
330	.recalc		= &followparent_recalc,
331};
332
333static struct clk dma_lcdfree_ck = {
334	.name		= "dma_lcdfree_ck",
335	.ops		= &clkops_null,
336	.parent		= &tc_ck.clk,
337	.recalc		= &followparent_recalc,
338};
339
340static struct arm_idlect1_clk api_ck = {
341	.clk = {
342		.name		= "api_ck",
343		.ops		= &clkops_generic,
344		.parent		= &tc_ck.clk,
345		.flags		= CLOCK_IDLE_CONTROL,
346		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
347		.enable_bit	= EN_APICK,
348		.recalc		= &followparent_recalc,
349	},
350	.idlect_shift	= IDLAPI_ARM_SHIFT,
351};
352
353static struct arm_idlect1_clk lb_ck = {
354	.clk = {
355		.name		= "lb_ck",
356		.ops		= &clkops_generic,
357		.parent		= &tc_ck.clk,
358		.flags		= CLOCK_IDLE_CONTROL,
359		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
360		.enable_bit	= EN_LBCK,
361		.recalc		= &followparent_recalc,
362	},
363	.idlect_shift	= IDLLB_ARM_SHIFT,
364};
365
366static struct clk rhea1_ck = {
367	.name		= "rhea1_ck",
368	.ops		= &clkops_null,
369	.parent		= &tc_ck.clk,
370	.recalc		= &followparent_recalc,
371};
372
373static struct clk rhea2_ck = {
374	.name		= "rhea2_ck",
375	.ops		= &clkops_null,
376	.parent		= &tc_ck.clk,
377	.recalc		= &followparent_recalc,
378};
379
380static struct clk lcd_ck_16xx = {
381	.name		= "lcd_ck",
382	.ops		= &clkops_generic,
383	.parent		= &ck_dpll1,
384	.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
385	.enable_bit	= EN_LCDCK,
386	.rate_offset	= CKCTL_LCDDIV_OFFSET,
387	.recalc		= &omap1_ckctl_recalc,
388	.round_rate	= omap1_clk_round_rate_ckctl_arm,
389	.set_rate	= omap1_clk_set_rate_ckctl_arm,
390};
391
392static struct arm_idlect1_clk lcd_ck_1510 = {
393	.clk = {
394		.name		= "lcd_ck",
395		.ops		= &clkops_generic,
396		.parent		= &ck_dpll1,
397		.flags		= CLOCK_IDLE_CONTROL,
398		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
399		.enable_bit	= EN_LCDCK,
400		.rate_offset	= CKCTL_LCDDIV_OFFSET,
401		.recalc		= &omap1_ckctl_recalc,
402		.round_rate	= omap1_clk_round_rate_ckctl_arm,
403		.set_rate	= omap1_clk_set_rate_ckctl_arm,
404	},
405	.idlect_shift	= OMAP1510_IDLLCD_ARM_SHIFT,
406};
407
408/*
409 * XXX The enable_bit here is misused - it simply switches between 12MHz
410 * and 48MHz.  Reimplement with clksel.
411 *
412 * XXX does this need SYSC register handling?
413 */
414static struct clk uart1_1510 = {
415	.name		= "uart1_ck",
416	.ops		= &clkops_null,
417	/* Direct from ULPD, no real parent */
418	.parent		= &armper_ck.clk,
419	.rate		= 12000000,
420	.flags		= ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
421	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
422	.enable_bit	= CONF_MOD_UART1_CLK_MODE_R,
423	.set_rate	= &omap1_set_uart_rate,
424	.recalc		= &omap1_uart_recalc,
425};
426
427/*
428 * XXX The enable_bit here is misused - it simply switches between 12MHz
429 * and 48MHz.  Reimplement with clksel.
430 *
431 * XXX SYSC register handling does not belong in the clock framework
432 */
433static struct uart_clk uart1_16xx = {
434	.clk	= {
435		.name		= "uart1_ck",
436		.ops		= &clkops_uart_16xx,
437		/* Direct from ULPD, no real parent */
438		.parent		= &armper_ck.clk,
439		.rate		= 48000000,
440		.flags		= ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
441		.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
442		.enable_bit	= CONF_MOD_UART1_CLK_MODE_R,
443	},
444	.sysc_addr	= 0xfffb0054,
445};
446
447/*
448 * XXX The enable_bit here is misused - it simply switches between 12MHz
449 * and 48MHz.  Reimplement with clksel.
450 *
451 * XXX does this need SYSC register handling?
452 */
453static struct clk uart2_ck = {
454	.name		= "uart2_ck",
455	.ops		= &clkops_null,
456	/* Direct from ULPD, no real parent */
457	.parent		= &armper_ck.clk,
458	.rate		= 12000000,
459	.flags		= ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
460	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
461	.enable_bit	= CONF_MOD_UART2_CLK_MODE_R,
462	.set_rate	= &omap1_set_uart_rate,
463	.recalc		= &omap1_uart_recalc,
464};
465
466/*
467 * XXX The enable_bit here is misused - it simply switches between 12MHz
468 * and 48MHz.  Reimplement with clksel.
469 *
470 * XXX does this need SYSC register handling?
471 */
472static struct clk uart3_1510 = {
473	.name		= "uart3_ck",
474	.ops		= &clkops_null,
475	/* Direct from ULPD, no real parent */
476	.parent		= &armper_ck.clk,
477	.rate		= 12000000,
478	.flags		= ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
479	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
480	.enable_bit	= CONF_MOD_UART3_CLK_MODE_R,
481	.set_rate	= &omap1_set_uart_rate,
482	.recalc		= &omap1_uart_recalc,
483};
484
485/*
486 * XXX The enable_bit here is misused - it simply switches between 12MHz
487 * and 48MHz.  Reimplement with clksel.
488 *
489 * XXX SYSC register handling does not belong in the clock framework
490 */
491static struct uart_clk uart3_16xx = {
492	.clk	= {
493		.name		= "uart3_ck",
494		.ops		= &clkops_uart_16xx,
495		/* Direct from ULPD, no real parent */
496		.parent		= &armper_ck.clk,
497		.rate		= 48000000,
498		.flags		= ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
499		.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
500		.enable_bit	= CONF_MOD_UART3_CLK_MODE_R,
501	},
502	.sysc_addr	= 0xfffb9854,
503};
504
505static struct clk usb_clko = {	/* 6 MHz output on W4_USB_CLKO */
506	.name		= "usb_clko",
507	.ops		= &clkops_generic,
508	/* Direct from ULPD, no parent */
509	.rate		= 6000000,
510	.flags		= ENABLE_REG_32BIT,
511	.enable_reg	= OMAP1_IO_ADDRESS(ULPD_CLOCK_CTRL),
512	.enable_bit	= USB_MCLK_EN_BIT,
513};
514
515static struct clk usb_hhc_ck1510 = {
516	.name		= "usb_hhc_ck",
517	.ops		= &clkops_generic,
518	/* Direct from ULPD, no parent */
519	.rate		= 48000000, /* Actually 2 clocks, 12MHz and 48MHz */
520	.flags		= ENABLE_REG_32BIT,
521	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
522	.enable_bit	= USB_HOST_HHC_UHOST_EN,
523};
524
525static struct clk usb_hhc_ck16xx = {
526	.name		= "usb_hhc_ck",
527	.ops		= &clkops_generic,
528	/* Direct from ULPD, no parent */
529	.rate		= 48000000,
530	/* OTG_SYSCON_2.OTG_PADEN == 0 (not 1510-compatible) */
531	.flags		= ENABLE_REG_32BIT,
532	.enable_reg	= OMAP1_IO_ADDRESS(OTG_BASE + 0x08), /* OTG_SYSCON_2 */
533	.enable_bit	= OTG_SYSCON_2_UHOST_EN_SHIFT
534};
535
536static struct clk usb_dc_ck = {
537	.name		= "usb_dc_ck",
538	.ops		= &clkops_generic,
539	/* Direct from ULPD, no parent */
540	.rate		= 48000000,
541	.enable_reg	= OMAP1_IO_ADDRESS(SOFT_REQ_REG),
542	.enable_bit	= USB_REQ_EN_SHIFT,
543};
544
545static struct clk usb_dc_ck7xx = {
546	.name		= "usb_dc_ck",
547	.ops		= &clkops_generic,
548	/* Direct from ULPD, no parent */
549	.rate		= 48000000,
550	.enable_reg	= OMAP1_IO_ADDRESS(SOFT_REQ_REG),
551	.enable_bit	= SOFT_USB_OTG_DPLL_REQ_SHIFT,
552};
553
554static struct clk uart1_7xx = {
555	.name		= "uart1_ck",
556	.ops		= &clkops_generic,
557	/* Direct from ULPD, no parent */
558	.rate		= 12000000,
559	.enable_reg	= OMAP1_IO_ADDRESS(SOFT_REQ_REG),
560	.enable_bit	= 9,
561};
562
563static struct clk uart2_7xx = {
564	.name		= "uart2_ck",
565	.ops		= &clkops_generic,
566	/* Direct from ULPD, no parent */
567	.rate		= 12000000,
568	.enable_reg	= OMAP1_IO_ADDRESS(SOFT_REQ_REG),
569	.enable_bit	= 11,
570};
571
572static struct clk mclk_1510 = {
573	.name		= "mclk",
574	.ops		= &clkops_generic,
575	/* Direct from ULPD, no parent. May be enabled by ext hardware. */
576	.rate		= 12000000,
577	.enable_reg	= OMAP1_IO_ADDRESS(SOFT_REQ_REG),
578	.enable_bit	= SOFT_COM_MCKO_REQ_SHIFT,
579};
580
581static struct clk mclk_16xx = {
582	.name		= "mclk",
583	.ops		= &clkops_generic,
584	/* Direct from ULPD, no parent. May be enabled by ext hardware. */
585	.enable_reg	= OMAP1_IO_ADDRESS(COM_CLK_DIV_CTRL_SEL),
586	.enable_bit	= COM_ULPD_PLL_CLK_REQ,
587	.set_rate	= &omap1_set_ext_clk_rate,
588	.round_rate	= &omap1_round_ext_clk_rate,
589	.init		= &omap1_init_ext_clk,
590};
591
592static struct clk bclk_1510 = {
593	.name		= "bclk",
594	.ops		= &clkops_generic,
595	/* Direct from ULPD, no parent. May be enabled by ext hardware. */
596	.rate		= 12000000,
597};
598
599static struct clk bclk_16xx = {
600	.name		= "bclk",
601	.ops		= &clkops_generic,
602	/* Direct from ULPD, no parent. May be enabled by ext hardware. */
603	.enable_reg	= OMAP1_IO_ADDRESS(SWD_CLK_DIV_CTRL_SEL),
604	.enable_bit	= SWD_ULPD_PLL_CLK_REQ,
605	.set_rate	= &omap1_set_ext_clk_rate,
606	.round_rate	= &omap1_round_ext_clk_rate,
607	.init		= &omap1_init_ext_clk,
608};
609
610static struct clk mmc1_ck = {
611	.name		= "mmc1_ck",
612	.ops		= &clkops_generic,
613	/* Functional clock is direct from ULPD, interface clock is ARMPER */
614	.parent		= &armper_ck.clk,
615	.rate		= 48000000,
616	.flags		= ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
617	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
618	.enable_bit	= CONF_MOD_MMC_SD_CLK_REQ_R,
619};
620
621/*
622 * XXX MOD_CONF_CTRL_0 bit 20 is defined in the 1510 TRM as
623 * CONF_MOD_MCBSP3_AUXON ??
624 */
625static struct clk mmc2_ck = {
626	.name		= "mmc2_ck",
627	.ops		= &clkops_generic,
628	/* Functional clock is direct from ULPD, interface clock is ARMPER */
629	.parent		= &armper_ck.clk,
630	.rate		= 48000000,
631	.flags		= ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
632	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
633	.enable_bit	= 20,
634};
635
636static struct clk mmc3_ck = {
637	.name		= "mmc3_ck",
638	.ops		= &clkops_generic,
639	/* Functional clock is direct from ULPD, interface clock is ARMPER */
640	.parent		= &armper_ck.clk,
641	.rate		= 48000000,
642	.flags		= ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
643	.enable_reg	= OMAP1_IO_ADDRESS(SOFT_REQ_REG),
644	.enable_bit	= SOFT_MMC_DPLL_REQ_SHIFT,
645};
646
647static struct clk virtual_ck_mpu = {
648	.name		= "mpu",
649	.ops		= &clkops_null,
650	.parent		= &arm_ck, /* Is smarter alias for */
651	.recalc		= &followparent_recalc,
652	.set_rate	= &omap1_select_table_rate,
653	.round_rate	= &omap1_round_to_table_rate,
654};
655
656/* virtual functional clock domain for I2C. Just for making sure that ARMXOR_CK
657remains active during MPU idle whenever this is enabled */
658static struct clk i2c_fck = {
659	.name		= "i2c_fck",
660	.ops		= &clkops_null,
661	.flags		= CLOCK_NO_IDLE_PARENT,
662	.parent		= &armxor_ck.clk,
663	.recalc		= &followparent_recalc,
664};
665
666static struct clk i2c_ick = {
667	.name		= "i2c_ick",
668	.ops		= &clkops_null,
669	.flags		= CLOCK_NO_IDLE_PARENT,
670	.parent		= &armper_ck.clk,
671	.recalc		= &followparent_recalc,
672};
673
674/*
675 * clkdev integration
676 */
677
678static struct omap_clk omap_clks[] = {
679	/* non-ULPD clocks */
680	CLK(NULL,	"ck_ref",	&ck_ref,	CK_16XX | CK_1510 | CK_310 | CK_7XX),
681	CLK(NULL,	"ck_dpll1",	&ck_dpll1,	CK_16XX | CK_1510 | CK_310 | CK_7XX),
682	/* CK_GEN1 clocks */
683	CLK(NULL,	"ck_dpll1out",	&ck_dpll1out.clk, CK_16XX),
684	CLK(NULL,	"ck_sossi",	&sossi_ck,	CK_16XX),
685	CLK(NULL,	"arm_ck",	&arm_ck,	CK_16XX | CK_1510 | CK_310),
686	CLK(NULL,	"armper_ck",	&armper_ck.clk,	CK_16XX | CK_1510 | CK_310),
687	CLK("omap_gpio.0", "ick",	&arm_gpio_ck,	CK_1510 | CK_310),
688	CLK(NULL,	"armxor_ck",	&armxor_ck.clk,	CK_16XX | CK_1510 | CK_310 | CK_7XX),
689	CLK(NULL,	"armtim_ck",	&armtim_ck.clk,	CK_16XX | CK_1510 | CK_310),
690	CLK("omap_wdt",	"fck",		&armwdt_ck.clk,	CK_16XX | CK_1510 | CK_310),
691	CLK("omap_wdt",	"ick",		&armper_ck.clk,	CK_16XX),
692	CLK("omap_wdt", "ick",		&dummy_ck,	CK_1510 | CK_310),
693	CLK(NULL,	"arminth_ck",	&arminth_ck1510, CK_1510 | CK_310),
694	CLK(NULL,	"arminth_ck",	&arminth_ck16xx, CK_16XX),
695	/* CK_GEN2 clocks */
696	CLK(NULL,	"dsp_ck",	&dsp_ck,	CK_16XX | CK_1510 | CK_310),
697	CLK(NULL,	"dspmmu_ck",	&dspmmu_ck,	CK_16XX | CK_1510 | CK_310),
698	CLK(NULL,	"dspper_ck",	&dspper_ck,	CK_16XX | CK_1510 | CK_310),
699	CLK(NULL,	"dspxor_ck",	&dspxor_ck,	CK_16XX | CK_1510 | CK_310),
700	CLK(NULL,	"dsptim_ck",	&dsptim_ck,	CK_16XX | CK_1510 | CK_310),
701	/* CK_GEN3 clocks */
702	CLK(NULL,	"tc_ck",	&tc_ck.clk,	CK_16XX | CK_1510 | CK_310 | CK_7XX),
703	CLK(NULL,	"tipb_ck",	&tipb_ck,	CK_1510 | CK_310),
704	CLK(NULL,	"l3_ocpi_ck",	&l3_ocpi_ck,	CK_16XX | CK_7XX),
705	CLK(NULL,	"tc1_ck",	&tc1_ck,	CK_16XX),
706	CLK(NULL,	"tc2_ck",	&tc2_ck,	CK_16XX),
707	CLK(NULL,	"dma_ck",	&dma_ck,	CK_16XX | CK_1510 | CK_310),
708	CLK(NULL,	"dma_lcdfree_ck", &dma_lcdfree_ck, CK_16XX),
709	CLK(NULL,	"api_ck",	&api_ck.clk,	CK_16XX | CK_1510 | CK_310 | CK_7XX),
710	CLK(NULL,	"lb_ck",	&lb_ck.clk,	CK_1510 | CK_310),
711	CLK(NULL,	"rhea1_ck",	&rhea1_ck,	CK_16XX),
712	CLK(NULL,	"rhea2_ck",	&rhea2_ck,	CK_16XX),
713	CLK(NULL,	"lcd_ck",	&lcd_ck_16xx,	CK_16XX | CK_7XX),
714	CLK(NULL,	"lcd_ck",	&lcd_ck_1510.clk, CK_1510 | CK_310),
715	/* ULPD clocks */
716	CLK(NULL,	"uart1_ck",	&uart1_1510,	CK_1510 | CK_310),
717	CLK(NULL,	"uart1_ck",	&uart1_16xx.clk, CK_16XX),
718	CLK(NULL,	"uart1_ck",	&uart1_7xx,	CK_7XX),
719	CLK(NULL,	"uart2_ck",	&uart2_ck,	CK_16XX | CK_1510 | CK_310),
720	CLK(NULL,	"uart2_ck",	&uart2_7xx,	CK_7XX),
721	CLK(NULL,	"uart3_ck",	&uart3_1510,	CK_1510 | CK_310),
722	CLK(NULL,	"uart3_ck",	&uart3_16xx.clk, CK_16XX),
723	CLK(NULL,	"usb_clko",	&usb_clko,	CK_16XX | CK_1510 | CK_310),
724	CLK(NULL,	"usb_hhc_ck",	&usb_hhc_ck1510, CK_1510 | CK_310),
725	CLK(NULL,	"usb_hhc_ck",	&usb_hhc_ck16xx, CK_16XX),
726	CLK(NULL,	"usb_dc_ck",	&usb_dc_ck,	CK_16XX),
727	CLK(NULL,	"usb_dc_ck",	&usb_dc_ck7xx,	CK_7XX),
728	CLK(NULL,	"mclk",		&mclk_1510,	CK_1510 | CK_310),
729	CLK(NULL,	"mclk",		&mclk_16xx,	CK_16XX),
730	CLK(NULL,	"bclk",		&bclk_1510,	CK_1510 | CK_310),
731	CLK(NULL,	"bclk",		&bclk_16xx,	CK_16XX),
732	CLK("mmci-omap.0", "fck",	&mmc1_ck,	CK_16XX | CK_1510 | CK_310),
733	CLK("mmci-omap.0", "fck",	&mmc3_ck,	CK_7XX),
734	CLK("mmci-omap.0", "ick",	&armper_ck.clk,	CK_16XX | CK_1510 | CK_310 | CK_7XX),
735	CLK("mmci-omap.1", "fck",	&mmc2_ck,	CK_16XX),
736	CLK("mmci-omap.1", "ick",	&armper_ck.clk,	CK_16XX),
737	/* Virtual clocks */
738	CLK(NULL,	"mpu",		&virtual_ck_mpu, CK_16XX | CK_1510 | CK_310),
739	CLK("omap_i2c.1", "fck",	&i2c_fck,	CK_16XX | CK_1510 | CK_310 | CK_7XX),
740	CLK("omap_i2c.1", "ick",	&i2c_ick,	CK_16XX),
741	CLK("omap_i2c.1", "ick",	&dummy_ck,	CK_1510 | CK_310 | CK_7XX),
742	CLK("omap1_spi100k.1", "fck",	&dummy_ck,	CK_7XX),
743	CLK("omap1_spi100k.1", "ick",	&dummy_ck,	CK_7XX),
744	CLK("omap1_spi100k.2", "fck",	&dummy_ck,	CK_7XX),
745	CLK("omap1_spi100k.2", "ick",	&dummy_ck,	CK_7XX),
746	CLK("omap_uwire", "fck",	&armxor_ck.clk,	CK_16XX | CK_1510 | CK_310),
747	CLK("omap-mcbsp.1", "ick",	&dspper_ck,	CK_16XX),
748	CLK("omap-mcbsp.1", "ick",	&dummy_ck,	CK_1510 | CK_310),
749	CLK("omap-mcbsp.2", "ick",	&armper_ck.clk,	CK_16XX),
750	CLK("omap-mcbsp.2", "ick",	&dummy_ck,	CK_1510 | CK_310),
751	CLK("omap-mcbsp.3", "ick",	&dspper_ck,	CK_16XX),
752	CLK("omap-mcbsp.3", "ick",	&dummy_ck,	CK_1510 | CK_310),
753	CLK("omap-mcbsp.1", "fck",	&dspxor_ck,	CK_16XX | CK_1510 | CK_310),
754	CLK("omap-mcbsp.2", "fck",	&armper_ck.clk,	CK_16XX | CK_1510 | CK_310),
755	CLK("omap-mcbsp.3", "fck",	&dspxor_ck,	CK_16XX | CK_1510 | CK_310),
756};
757
758/*
759 * init
760 */
761
762static struct clk_functions omap1_clk_functions = {
763	.clk_enable		= omap1_clk_enable,
764	.clk_disable		= omap1_clk_disable,
765	.clk_round_rate		= omap1_clk_round_rate,
766	.clk_set_rate		= omap1_clk_set_rate,
767	.clk_disable_unused	= omap1_clk_disable_unused,
768};
769
 
 
 
 
 
 
 
 
 
 
 
770int __init omap1_clk_init(void)
771{
772	struct omap_clk *c;
773	const struct omap_clock_config *info;
774	int crystal_type = 0; /* Default 12 MHz */
775	u32 reg, cpu_mask;
776
777#ifdef CONFIG_DEBUG_LL
778	/*
779	 * Resets some clocks that may be left on from bootloader,
780	 * but leaves serial clocks on.
781	 */
782	omap_writel(0x3 << 29, MOD_CONF_CTRL_0);
783#endif
784
785	/* USB_REQ_EN will be disabled later if necessary (usb_dc_ck) */
786	reg = omap_readw(SOFT_REQ_REG) & (1 << 4);
787	omap_writew(reg, SOFT_REQ_REG);
788	if (!cpu_is_omap15xx())
789		omap_writew(0, SOFT_REQ_REG2);
790
791	clk_init(&omap1_clk_functions);
792
793	/* By default all idlect1 clocks are allowed to idle */
794	arm_idlect1_mask = ~0;
795
796	for (c = omap_clks; c < omap_clks + ARRAY_SIZE(omap_clks); c++)
797		clk_preinit(c->lk.clk);
798
799	cpu_mask = 0;
 
 
800	if (cpu_is_omap16xx())
801		cpu_mask |= CK_16XX;
802	if (cpu_is_omap1510())
803		cpu_mask |= CK_1510;
804	if (cpu_is_omap7xx())
805		cpu_mask |= CK_7XX;
806	if (cpu_is_omap310())
807		cpu_mask |= CK_310;
808
809	for (c = omap_clks; c < omap_clks + ARRAY_SIZE(omap_clks); c++)
810		if (c->cpu & cpu_mask) {
811			clkdev_add(&c->lk);
812			clk_register(c->lk.clk);
813		}
814
815	/* Pointers to these clocks are needed by code in clock.c */
816	api_ck_p = clk_get(NULL, "api_ck");
817	ck_dpll1_p = clk_get(NULL, "ck_dpll1");
818	ck_ref_p = clk_get(NULL, "ck_ref");
819
820	info = omap_get_config(OMAP_TAG_CLOCK, struct omap_clock_config);
821	if (info != NULL) {
822		if (!cpu_is_omap15xx())
823			crystal_type = info->system_clock_type;
824	}
825
826	if (cpu_is_omap7xx())
827		ck_ref.rate = 13000000;
828	if (cpu_is_omap16xx() && crystal_type == 2)
829		ck_ref.rate = 19200000;
830
831	pr_info("Clocks: ARM_SYSST: 0x%04x DPLL_CTL: 0x%04x ARM_CKCTL: "
832		"0x%04x\n", omap_readw(ARM_SYSST), omap_readw(DPLL_CTL),
833		omap_readw(ARM_CKCTL));
834
835	/* We want to be in syncronous scalable mode */
836	omap_writew(0x1000, ARM_SYSST);
837
838#ifdef CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER
839	/* Use values set by bootloader. Determine PLL rate and recalculate
840	 * dependent clocks as if kernel had changed PLL or divisors.
 
 
 
841	 */
842	{
843		unsigned pll_ctl_val = omap_readw(DPLL_CTL);
844
845		ck_dpll1.rate = ck_ref.rate; /* Base xtal rate */
846		if (pll_ctl_val & 0x10) {
847			/* PLL enabled, apply multiplier and divisor */
848			if (pll_ctl_val & 0xf80)
849				ck_dpll1.rate *= (pll_ctl_val & 0xf80) >> 7;
850			ck_dpll1.rate /= ((pll_ctl_val & 0x60) >> 5) + 1;
851		} else {
852			/* PLL disabled, apply bypass divisor */
853			switch (pll_ctl_val & 0xc) {
854			case 0:
855				break;
856			case 0x4:
857				ck_dpll1.rate /= 2;
858				break;
859			default:
860				ck_dpll1.rate /= 4;
861				break;
862			}
863		}
864	}
865#else
866	/* Find the highest supported frequency and enable it */
867	if (omap1_select_table_rate(&virtual_ck_mpu, ~0)) {
868		printk(KERN_ERR "System frequencies not set. Check your config.\n");
869		/* Guess sane values (60MHz) */
870		omap_writew(0x2290, DPLL_CTL);
871		omap_writew(cpu_is_omap7xx() ? 0x3005 : 0x1005, ARM_CKCTL);
872		ck_dpll1.rate = 60000000;
873	}
874#endif
875	propagate_rate(&ck_dpll1);
876	/* Cache rates for clocks connected to ck_ref (not dpll1) */
877	propagate_rate(&ck_ref);
878	printk(KERN_INFO "Clocking rate (xtal/DPLL1/MPU): "
879		"%ld.%01ld/%ld.%01ld/%ld.%01ld MHz\n",
880	       ck_ref.rate / 1000000, (ck_ref.rate / 100000) % 10,
881	       ck_dpll1.rate / 1000000, (ck_dpll1.rate / 100000) % 10,
882	       arm_ck.rate / 1000000, (arm_ck.rate / 100000) % 10);
883
884	if (machine_is_omap_perseus2() || machine_is_omap_fsample()) {
885		/* Select slicer output as OMAP input clock */
886		omap_writew(omap_readw(OMAP7XX_PCC_UPLD_CTRL) & ~0x1,
887				OMAP7XX_PCC_UPLD_CTRL);
888	}
889
890	/* Amstrad Delta wants BCLK high when inactive */
891	if (machine_is_ams_delta())
892		omap_writel(omap_readl(ULPD_CLOCK_CTRL) |
893				(1 << SDW_MCLK_INV_BIT),
894				ULPD_CLOCK_CTRL);
895
896	/* Turn off DSP and ARM_TIMXO. Make sure ARM_INTHCK is not divided */
897	/* (on 730, bit 13 must not be cleared) */
898	if (cpu_is_omap7xx())
899		omap_writew(omap_readw(ARM_CKCTL) & 0x2fff, ARM_CKCTL);
900	else
901		omap_writew(omap_readw(ARM_CKCTL) & 0x0fff, ARM_CKCTL);
902
903	/* Put DSP/MPUI into reset until needed */
904	omap_writew(0, ARM_RSTCT1);
905	omap_writew(1, ARM_RSTCT2);
906	omap_writew(0x400, ARM_IDLECT1);
907
908	/*
909	 * According to OMAP5910 Erratum SYS_DMA_1, bit DMACK_REQ (bit 8)
910	 * of the ARM_IDLECT2 register must be set to zero. The power-on
911	 * default value of this bit is one.
912	 */
913	omap_writew(0x0000, ARM_IDLECT2);	/* Turn LCD clock off also */
914
915	/*
916	 * Only enable those clocks we will need, let the drivers
917	 * enable other clocks as necessary
918	 */
919	clk_enable(&armper_ck.clk);
920	clk_enable(&armxor_ck.clk);
921	clk_enable(&armtim_ck.clk); /* This should be done by timer code */
922
923	if (cpu_is_omap15xx())
924		clk_enable(&arm_gpio_ck);
925
926	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
927}
v3.5.6
  1/*
  2 *  linux/arch/arm/mach-omap1/clock_data.c
  3 *
  4 *  Copyright (C) 2004 - 2005, 2009-2010 Nokia Corporation
  5 *  Written by Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com>
  6 *  Based on clocks.h by Tony Lindgren, Gordon McNutt and RidgeRun, Inc
  7 *
  8 * This program is free software; you can redistribute it and/or modify
  9 * it under the terms of the GNU General Public License version 2 as
 10 * published by the Free Software Foundation.
 11 *
 12 * To do:
 13 * - Clocks that are only available on some chips should be marked with the
 14 *   chips that they are present on.
 15 */
 16
 17#include <linux/kernel.h>
 
 18#include <linux/io.h>
 19#include <linux/clk.h>
 20#include <linux/cpufreq.h>
 21#include <linux/delay.h>
 22
 23#include <asm/mach-types.h>  /* for machine_is_* */
 24
 25#include <plat/clock.h>
 26#include <plat/cpu.h>
 27#include <plat/clkdev_omap.h>
 28#include <plat/sram.h>	/* for omap_sram_reprogram_clock() */
 29#include <plat/usb.h>   /* for OTG_BASE */
 30
 31#include <mach/hardware.h>
 32
 33#include "iomap.h"
 34#include "clock.h"
 35
 36/* Some ARM_IDLECT1 bit shifts - used in struct arm_idlect1_clk */
 37#define IDL_CLKOUT_ARM_SHIFT			12
 38#define IDLTIM_ARM_SHIFT			9
 39#define IDLAPI_ARM_SHIFT			8
 40#define IDLIF_ARM_SHIFT				6
 41#define IDLLB_ARM_SHIFT				4	/* undocumented? */
 42#define OMAP1510_IDLLCD_ARM_SHIFT		3	/* undocumented? */
 43#define IDLPER_ARM_SHIFT			2
 44#define IDLXORP_ARM_SHIFT			1
 45#define IDLWDT_ARM_SHIFT			0
 46
 47/* Some MOD_CONF_CTRL_0 bit shifts - used in struct clk.enable_bit */
 48#define CONF_MOD_UART3_CLK_MODE_R		31
 49#define CONF_MOD_UART2_CLK_MODE_R		30
 50#define CONF_MOD_UART1_CLK_MODE_R		29
 51#define CONF_MOD_MMC_SD_CLK_REQ_R		23
 52#define CONF_MOD_MCBSP3_AUXON			20
 53
 54/* Some MOD_CONF_CTRL_1 bit shifts - used in struct clk.enable_bit */
 55#define CONF_MOD_SOSSI_CLK_EN_R			16
 56
 57/* Some OTG_SYSCON_2-specific bit fields */
 58#define OTG_SYSCON_2_UHOST_EN_SHIFT		8
 59
 60/* Some SOFT_REQ_REG bit fields - used in struct clk.enable_bit */
 61#define SOFT_MMC2_DPLL_REQ_SHIFT	13
 62#define SOFT_MMC_DPLL_REQ_SHIFT		12
 63#define SOFT_UART3_DPLL_REQ_SHIFT	11
 64#define SOFT_UART2_DPLL_REQ_SHIFT	10
 65#define SOFT_UART1_DPLL_REQ_SHIFT	9
 66#define SOFT_USB_OTG_DPLL_REQ_SHIFT	8
 67#define SOFT_CAM_DPLL_REQ_SHIFT		7
 68#define SOFT_COM_MCKO_REQ_SHIFT		6
 69#define SOFT_PERIPH_REQ_SHIFT		5	/* sys_ck gate for UART2 ? */
 70#define USB_REQ_EN_SHIFT		4
 71#define SOFT_USB_REQ_SHIFT		3	/* sys_ck gate for USB host? */
 72#define SOFT_SDW_REQ_SHIFT		2	/* sys_ck gate for Bluetooth? */
 73#define SOFT_COM_REQ_SHIFT		1	/* sys_ck gate for com proc? */
 74#define SOFT_DPLL_REQ_SHIFT		0
 75
 76/*
 77 * Omap1 clocks
 78 */
 79
 80static struct clk ck_ref = {
 81	.name		= "ck_ref",
 82	.ops		= &clkops_null,
 83	.rate		= 12000000,
 84};
 85
 86static struct clk ck_dpll1 = {
 87	.name		= "ck_dpll1",
 88	.ops		= &clkops_null,
 89	.parent		= &ck_ref,
 90};
 91
 92/*
 93 * FIXME: This clock seems to be necessary but no-one has asked for its
 94 * activation.  [ FIX: SoSSI, SSR ]
 95 */
 96static struct arm_idlect1_clk ck_dpll1out = {
 97	.clk = {
 98		.name		= "ck_dpll1out",
 99		.ops		= &clkops_generic,
100		.parent		= &ck_dpll1,
101		.flags		= CLOCK_IDLE_CONTROL | ENABLE_REG_32BIT |
102				  ENABLE_ON_INIT,
103		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
104		.enable_bit	= EN_CKOUT_ARM,
105		.recalc		= &followparent_recalc,
106	},
107	.idlect_shift	= IDL_CLKOUT_ARM_SHIFT,
108};
109
110static struct clk sossi_ck = {
111	.name		= "ck_sossi",
112	.ops		= &clkops_generic,
113	.parent		= &ck_dpll1out.clk,
114	.flags		= CLOCK_NO_IDLE_PARENT | ENABLE_REG_32BIT,
115	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_1),
116	.enable_bit	= CONF_MOD_SOSSI_CLK_EN_R,
117	.recalc		= &omap1_sossi_recalc,
118	.set_rate	= &omap1_set_sossi_rate,
119};
120
121static struct clk arm_ck = {
122	.name		= "arm_ck",
123	.ops		= &clkops_null,
124	.parent		= &ck_dpll1,
125	.rate_offset	= CKCTL_ARMDIV_OFFSET,
126	.recalc		= &omap1_ckctl_recalc,
127	.round_rate	= omap1_clk_round_rate_ckctl_arm,
128	.set_rate	= omap1_clk_set_rate_ckctl_arm,
129};
130
131static struct arm_idlect1_clk armper_ck = {
132	.clk = {
133		.name		= "armper_ck",
134		.ops		= &clkops_generic,
135		.parent		= &ck_dpll1,
136		.flags		= CLOCK_IDLE_CONTROL,
137		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
138		.enable_bit	= EN_PERCK,
139		.rate_offset	= CKCTL_PERDIV_OFFSET,
140		.recalc		= &omap1_ckctl_recalc,
141		.round_rate	= omap1_clk_round_rate_ckctl_arm,
142		.set_rate	= omap1_clk_set_rate_ckctl_arm,
143	},
144	.idlect_shift	= IDLPER_ARM_SHIFT,
145};
146
147/*
148 * FIXME: This clock seems to be necessary but no-one has asked for its
149 * activation.  [ GPIO code for 1510 ]
150 */
151static struct clk arm_gpio_ck = {
152	.name		= "ick",
153	.ops		= &clkops_generic,
154	.parent		= &ck_dpll1,
155	.flags		= ENABLE_ON_INIT,
156	.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
157	.enable_bit	= EN_GPIOCK,
158	.recalc		= &followparent_recalc,
159};
160
161static struct arm_idlect1_clk armxor_ck = {
162	.clk = {
163		.name		= "armxor_ck",
164		.ops		= &clkops_generic,
165		.parent		= &ck_ref,
166		.flags		= CLOCK_IDLE_CONTROL,
167		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
168		.enable_bit	= EN_XORPCK,
169		.recalc		= &followparent_recalc,
170	},
171	.idlect_shift	= IDLXORP_ARM_SHIFT,
172};
173
174static struct arm_idlect1_clk armtim_ck = {
175	.clk = {
176		.name		= "armtim_ck",
177		.ops		= &clkops_generic,
178		.parent		= &ck_ref,
179		.flags		= CLOCK_IDLE_CONTROL,
180		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
181		.enable_bit	= EN_TIMCK,
182		.recalc		= &followparent_recalc,
183	},
184	.idlect_shift	= IDLTIM_ARM_SHIFT,
185};
186
187static struct arm_idlect1_clk armwdt_ck = {
188	.clk = {
189		.name		= "armwdt_ck",
190		.ops		= &clkops_generic,
191		.parent		= &ck_ref,
192		.flags		= CLOCK_IDLE_CONTROL,
193		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
194		.enable_bit	= EN_WDTCK,
195		.fixed_div	= 14,
196		.recalc		= &omap_fixed_divisor_recalc,
197	},
198	.idlect_shift	= IDLWDT_ARM_SHIFT,
199};
200
201static struct clk arminth_ck16xx = {
202	.name		= "arminth_ck",
203	.ops		= &clkops_null,
204	.parent		= &arm_ck,
205	.recalc		= &followparent_recalc,
206	/* Note: On 16xx the frequency can be divided by 2 by programming
207	 * ARM_CKCTL:ARM_INTHCK_SEL(14) to 1
208	 *
209	 * 1510 version is in TC clocks.
210	 */
211};
212
213static struct clk dsp_ck = {
214	.name		= "dsp_ck",
215	.ops		= &clkops_generic,
216	.parent		= &ck_dpll1,
217	.enable_reg	= OMAP1_IO_ADDRESS(ARM_CKCTL),
218	.enable_bit	= EN_DSPCK,
219	.rate_offset	= CKCTL_DSPDIV_OFFSET,
220	.recalc		= &omap1_ckctl_recalc,
221	.round_rate	= omap1_clk_round_rate_ckctl_arm,
222	.set_rate	= omap1_clk_set_rate_ckctl_arm,
223};
224
225static struct clk dspmmu_ck = {
226	.name		= "dspmmu_ck",
227	.ops		= &clkops_null,
228	.parent		= &ck_dpll1,
229	.rate_offset	= CKCTL_DSPMMUDIV_OFFSET,
230	.recalc		= &omap1_ckctl_recalc,
231	.round_rate	= omap1_clk_round_rate_ckctl_arm,
232	.set_rate	= omap1_clk_set_rate_ckctl_arm,
233};
234
235static struct clk dspper_ck = {
236	.name		= "dspper_ck",
237	.ops		= &clkops_dspck,
238	.parent		= &ck_dpll1,
239	.enable_reg	= DSP_IDLECT2,
240	.enable_bit	= EN_PERCK,
241	.rate_offset	= CKCTL_PERDIV_OFFSET,
242	.recalc		= &omap1_ckctl_recalc_dsp_domain,
243	.round_rate	= omap1_clk_round_rate_ckctl_arm,
244	.set_rate	= &omap1_clk_set_rate_dsp_domain,
245};
246
247static struct clk dspxor_ck = {
248	.name		= "dspxor_ck",
249	.ops		= &clkops_dspck,
250	.parent		= &ck_ref,
251	.enable_reg	= DSP_IDLECT2,
252	.enable_bit	= EN_XORPCK,
253	.recalc		= &followparent_recalc,
254};
255
256static struct clk dsptim_ck = {
257	.name		= "dsptim_ck",
258	.ops		= &clkops_dspck,
259	.parent		= &ck_ref,
260	.enable_reg	= DSP_IDLECT2,
261	.enable_bit	= EN_DSPTIMCK,
262	.recalc		= &followparent_recalc,
263};
264
265static struct arm_idlect1_clk tc_ck = {
266	.clk = {
267		.name		= "tc_ck",
268		.ops		= &clkops_null,
269		.parent		= &ck_dpll1,
270		.flags		= CLOCK_IDLE_CONTROL,
271		.rate_offset	= CKCTL_TCDIV_OFFSET,
272		.recalc		= &omap1_ckctl_recalc,
273		.round_rate	= omap1_clk_round_rate_ckctl_arm,
274		.set_rate	= omap1_clk_set_rate_ckctl_arm,
275	},
276	.idlect_shift	= IDLIF_ARM_SHIFT,
277};
278
279static struct clk arminth_ck1510 = {
280	.name		= "arminth_ck",
281	.ops		= &clkops_null,
282	.parent		= &tc_ck.clk,
283	.recalc		= &followparent_recalc,
284	/* Note: On 1510 the frequency follows TC_CK
285	 *
286	 * 16xx version is in MPU clocks.
287	 */
288};
289
290static struct clk tipb_ck = {
291	/* No-idle controlled by "tc_ck" */
292	.name		= "tipb_ck",
293	.ops		= &clkops_null,
294	.parent		= &tc_ck.clk,
295	.recalc		= &followparent_recalc,
296};
297
298static struct clk l3_ocpi_ck = {
299	/* No-idle controlled by "tc_ck" */
300	.name		= "l3_ocpi_ck",
301	.ops		= &clkops_generic,
302	.parent		= &tc_ck.clk,
303	.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT3),
304	.enable_bit	= EN_OCPI_CK,
305	.recalc		= &followparent_recalc,
306};
307
308static struct clk tc1_ck = {
309	.name		= "tc1_ck",
310	.ops		= &clkops_generic,
311	.parent		= &tc_ck.clk,
312	.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT3),
313	.enable_bit	= EN_TC1_CK,
314	.recalc		= &followparent_recalc,
315};
316
317/*
318 * FIXME: This clock seems to be necessary but no-one has asked for its
319 * activation.  [ pm.c (SRAM), CCP, Camera ]
320 */
321static struct clk tc2_ck = {
322	.name		= "tc2_ck",
323	.ops		= &clkops_generic,
324	.parent		= &tc_ck.clk,
325	.flags		= ENABLE_ON_INIT,
326	.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT3),
327	.enable_bit	= EN_TC2_CK,
328	.recalc		= &followparent_recalc,
329};
330
331static struct clk dma_ck = {
332	/* No-idle controlled by "tc_ck" */
333	.name		= "dma_ck",
334	.ops		= &clkops_null,
335	.parent		= &tc_ck.clk,
336	.recalc		= &followparent_recalc,
337};
338
339static struct clk dma_lcdfree_ck = {
340	.name		= "dma_lcdfree_ck",
341	.ops		= &clkops_null,
342	.parent		= &tc_ck.clk,
343	.recalc		= &followparent_recalc,
344};
345
346static struct arm_idlect1_clk api_ck = {
347	.clk = {
348		.name		= "api_ck",
349		.ops		= &clkops_generic,
350		.parent		= &tc_ck.clk,
351		.flags		= CLOCK_IDLE_CONTROL,
352		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
353		.enable_bit	= EN_APICK,
354		.recalc		= &followparent_recalc,
355	},
356	.idlect_shift	= IDLAPI_ARM_SHIFT,
357};
358
359static struct arm_idlect1_clk lb_ck = {
360	.clk = {
361		.name		= "lb_ck",
362		.ops		= &clkops_generic,
363		.parent		= &tc_ck.clk,
364		.flags		= CLOCK_IDLE_CONTROL,
365		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
366		.enable_bit	= EN_LBCK,
367		.recalc		= &followparent_recalc,
368	},
369	.idlect_shift	= IDLLB_ARM_SHIFT,
370};
371
372static struct clk rhea1_ck = {
373	.name		= "rhea1_ck",
374	.ops		= &clkops_null,
375	.parent		= &tc_ck.clk,
376	.recalc		= &followparent_recalc,
377};
378
379static struct clk rhea2_ck = {
380	.name		= "rhea2_ck",
381	.ops		= &clkops_null,
382	.parent		= &tc_ck.clk,
383	.recalc		= &followparent_recalc,
384};
385
386static struct clk lcd_ck_16xx = {
387	.name		= "lcd_ck",
388	.ops		= &clkops_generic,
389	.parent		= &ck_dpll1,
390	.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
391	.enable_bit	= EN_LCDCK,
392	.rate_offset	= CKCTL_LCDDIV_OFFSET,
393	.recalc		= &omap1_ckctl_recalc,
394	.round_rate	= omap1_clk_round_rate_ckctl_arm,
395	.set_rate	= omap1_clk_set_rate_ckctl_arm,
396};
397
398static struct arm_idlect1_clk lcd_ck_1510 = {
399	.clk = {
400		.name		= "lcd_ck",
401		.ops		= &clkops_generic,
402		.parent		= &ck_dpll1,
403		.flags		= CLOCK_IDLE_CONTROL,
404		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
405		.enable_bit	= EN_LCDCK,
406		.rate_offset	= CKCTL_LCDDIV_OFFSET,
407		.recalc		= &omap1_ckctl_recalc,
408		.round_rate	= omap1_clk_round_rate_ckctl_arm,
409		.set_rate	= omap1_clk_set_rate_ckctl_arm,
410	},
411	.idlect_shift	= OMAP1510_IDLLCD_ARM_SHIFT,
412};
413
414/*
415 * XXX The enable_bit here is misused - it simply switches between 12MHz
416 * and 48MHz.  Reimplement with clksel.
417 *
418 * XXX does this need SYSC register handling?
419 */
420static struct clk uart1_1510 = {
421	.name		= "uart1_ck",
422	.ops		= &clkops_null,
423	/* Direct from ULPD, no real parent */
424	.parent		= &armper_ck.clk,
425	.rate		= 12000000,
426	.flags		= ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
427	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
428	.enable_bit	= CONF_MOD_UART1_CLK_MODE_R,
429	.set_rate	= &omap1_set_uart_rate,
430	.recalc		= &omap1_uart_recalc,
431};
432
433/*
434 * XXX The enable_bit here is misused - it simply switches between 12MHz
435 * and 48MHz.  Reimplement with clksel.
436 *
437 * XXX SYSC register handling does not belong in the clock framework
438 */
439static struct uart_clk uart1_16xx = {
440	.clk	= {
441		.name		= "uart1_ck",
442		.ops		= &clkops_uart_16xx,
443		/* Direct from ULPD, no real parent */
444		.parent		= &armper_ck.clk,
445		.rate		= 48000000,
446		.flags		= ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
447		.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
448		.enable_bit	= CONF_MOD_UART1_CLK_MODE_R,
449	},
450	.sysc_addr	= 0xfffb0054,
451};
452
453/*
454 * XXX The enable_bit here is misused - it simply switches between 12MHz
455 * and 48MHz.  Reimplement with clksel.
456 *
457 * XXX does this need SYSC register handling?
458 */
459static struct clk uart2_ck = {
460	.name		= "uart2_ck",
461	.ops		= &clkops_null,
462	/* Direct from ULPD, no real parent */
463	.parent		= &armper_ck.clk,
464	.rate		= 12000000,
465	.flags		= ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
466	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
467	.enable_bit	= CONF_MOD_UART2_CLK_MODE_R,
468	.set_rate	= &omap1_set_uart_rate,
469	.recalc		= &omap1_uart_recalc,
470};
471
472/*
473 * XXX The enable_bit here is misused - it simply switches between 12MHz
474 * and 48MHz.  Reimplement with clksel.
475 *
476 * XXX does this need SYSC register handling?
477 */
478static struct clk uart3_1510 = {
479	.name		= "uart3_ck",
480	.ops		= &clkops_null,
481	/* Direct from ULPD, no real parent */
482	.parent		= &armper_ck.clk,
483	.rate		= 12000000,
484	.flags		= ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
485	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
486	.enable_bit	= CONF_MOD_UART3_CLK_MODE_R,
487	.set_rate	= &omap1_set_uart_rate,
488	.recalc		= &omap1_uart_recalc,
489};
490
491/*
492 * XXX The enable_bit here is misused - it simply switches between 12MHz
493 * and 48MHz.  Reimplement with clksel.
494 *
495 * XXX SYSC register handling does not belong in the clock framework
496 */
497static struct uart_clk uart3_16xx = {
498	.clk	= {
499		.name		= "uart3_ck",
500		.ops		= &clkops_uart_16xx,
501		/* Direct from ULPD, no real parent */
502		.parent		= &armper_ck.clk,
503		.rate		= 48000000,
504		.flags		= ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
505		.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
506		.enable_bit	= CONF_MOD_UART3_CLK_MODE_R,
507	},
508	.sysc_addr	= 0xfffb9854,
509};
510
511static struct clk usb_clko = {	/* 6 MHz output on W4_USB_CLKO */
512	.name		= "usb_clko",
513	.ops		= &clkops_generic,
514	/* Direct from ULPD, no parent */
515	.rate		= 6000000,
516	.flags		= ENABLE_REG_32BIT,
517	.enable_reg	= OMAP1_IO_ADDRESS(ULPD_CLOCK_CTRL),
518	.enable_bit	= USB_MCLK_EN_BIT,
519};
520
521static struct clk usb_hhc_ck1510 = {
522	.name		= "usb_hhc_ck",
523	.ops		= &clkops_generic,
524	/* Direct from ULPD, no parent */
525	.rate		= 48000000, /* Actually 2 clocks, 12MHz and 48MHz */
526	.flags		= ENABLE_REG_32BIT,
527	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
528	.enable_bit	= USB_HOST_HHC_UHOST_EN,
529};
530
531static struct clk usb_hhc_ck16xx = {
532	.name		= "usb_hhc_ck",
533	.ops		= &clkops_generic,
534	/* Direct from ULPD, no parent */
535	.rate		= 48000000,
536	/* OTG_SYSCON_2.OTG_PADEN == 0 (not 1510-compatible) */
537	.flags		= ENABLE_REG_32BIT,
538	.enable_reg	= OMAP1_IO_ADDRESS(OTG_BASE + 0x08), /* OTG_SYSCON_2 */
539	.enable_bit	= OTG_SYSCON_2_UHOST_EN_SHIFT
540};
541
542static struct clk usb_dc_ck = {
543	.name		= "usb_dc_ck",
544	.ops		= &clkops_generic,
545	/* Direct from ULPD, no parent */
546	.rate		= 48000000,
547	.enable_reg	= OMAP1_IO_ADDRESS(SOFT_REQ_REG),
548	.enable_bit	= USB_REQ_EN_SHIFT,
549};
550
551static struct clk usb_dc_ck7xx = {
552	.name		= "usb_dc_ck",
553	.ops		= &clkops_generic,
554	/* Direct from ULPD, no parent */
555	.rate		= 48000000,
556	.enable_reg	= OMAP1_IO_ADDRESS(SOFT_REQ_REG),
557	.enable_bit	= SOFT_USB_OTG_DPLL_REQ_SHIFT,
558};
559
560static struct clk uart1_7xx = {
561	.name		= "uart1_ck",
562	.ops		= &clkops_generic,
563	/* Direct from ULPD, no parent */
564	.rate		= 12000000,
565	.enable_reg	= OMAP1_IO_ADDRESS(SOFT_REQ_REG),
566	.enable_bit	= 9,
567};
568
569static struct clk uart2_7xx = {
570	.name		= "uart2_ck",
571	.ops		= &clkops_generic,
572	/* Direct from ULPD, no parent */
573	.rate		= 12000000,
574	.enable_reg	= OMAP1_IO_ADDRESS(SOFT_REQ_REG),
575	.enable_bit	= 11,
576};
577
578static struct clk mclk_1510 = {
579	.name		= "mclk",
580	.ops		= &clkops_generic,
581	/* Direct from ULPD, no parent. May be enabled by ext hardware. */
582	.rate		= 12000000,
583	.enable_reg	= OMAP1_IO_ADDRESS(SOFT_REQ_REG),
584	.enable_bit	= SOFT_COM_MCKO_REQ_SHIFT,
585};
586
587static struct clk mclk_16xx = {
588	.name		= "mclk",
589	.ops		= &clkops_generic,
590	/* Direct from ULPD, no parent. May be enabled by ext hardware. */
591	.enable_reg	= OMAP1_IO_ADDRESS(COM_CLK_DIV_CTRL_SEL),
592	.enable_bit	= COM_ULPD_PLL_CLK_REQ,
593	.set_rate	= &omap1_set_ext_clk_rate,
594	.round_rate	= &omap1_round_ext_clk_rate,
595	.init		= &omap1_init_ext_clk,
596};
597
598static struct clk bclk_1510 = {
599	.name		= "bclk",
600	.ops		= &clkops_generic,
601	/* Direct from ULPD, no parent. May be enabled by ext hardware. */
602	.rate		= 12000000,
603};
604
605static struct clk bclk_16xx = {
606	.name		= "bclk",
607	.ops		= &clkops_generic,
608	/* Direct from ULPD, no parent. May be enabled by ext hardware. */
609	.enable_reg	= OMAP1_IO_ADDRESS(SWD_CLK_DIV_CTRL_SEL),
610	.enable_bit	= SWD_ULPD_PLL_CLK_REQ,
611	.set_rate	= &omap1_set_ext_clk_rate,
612	.round_rate	= &omap1_round_ext_clk_rate,
613	.init		= &omap1_init_ext_clk,
614};
615
616static struct clk mmc1_ck = {
617	.name		= "mmc1_ck",
618	.ops		= &clkops_generic,
619	/* Functional clock is direct from ULPD, interface clock is ARMPER */
620	.parent		= &armper_ck.clk,
621	.rate		= 48000000,
622	.flags		= ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
623	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
624	.enable_bit	= CONF_MOD_MMC_SD_CLK_REQ_R,
625};
626
627/*
628 * XXX MOD_CONF_CTRL_0 bit 20 is defined in the 1510 TRM as
629 * CONF_MOD_MCBSP3_AUXON ??
630 */
631static struct clk mmc2_ck = {
632	.name		= "mmc2_ck",
633	.ops		= &clkops_generic,
634	/* Functional clock is direct from ULPD, interface clock is ARMPER */
635	.parent		= &armper_ck.clk,
636	.rate		= 48000000,
637	.flags		= ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
638	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
639	.enable_bit	= 20,
640};
641
642static struct clk mmc3_ck = {
643	.name		= "mmc3_ck",
644	.ops		= &clkops_generic,
645	/* Functional clock is direct from ULPD, interface clock is ARMPER */
646	.parent		= &armper_ck.clk,
647	.rate		= 48000000,
648	.flags		= ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
649	.enable_reg	= OMAP1_IO_ADDRESS(SOFT_REQ_REG),
650	.enable_bit	= SOFT_MMC_DPLL_REQ_SHIFT,
651};
652
653static struct clk virtual_ck_mpu = {
654	.name		= "mpu",
655	.ops		= &clkops_null,
656	.parent		= &arm_ck, /* Is smarter alias for */
657	.recalc		= &followparent_recalc,
658	.set_rate	= &omap1_select_table_rate,
659	.round_rate	= &omap1_round_to_table_rate,
660};
661
662/* virtual functional clock domain for I2C. Just for making sure that ARMXOR_CK
663remains active during MPU idle whenever this is enabled */
664static struct clk i2c_fck = {
665	.name		= "i2c_fck",
666	.ops		= &clkops_null,
667	.flags		= CLOCK_NO_IDLE_PARENT,
668	.parent		= &armxor_ck.clk,
669	.recalc		= &followparent_recalc,
670};
671
672static struct clk i2c_ick = {
673	.name		= "i2c_ick",
674	.ops		= &clkops_null,
675	.flags		= CLOCK_NO_IDLE_PARENT,
676	.parent		= &armper_ck.clk,
677	.recalc		= &followparent_recalc,
678};
679
680/*
681 * clkdev integration
682 */
683
684static struct omap_clk omap_clks[] = {
685	/* non-ULPD clocks */
686	CLK(NULL,	"ck_ref",	&ck_ref,	CK_16XX | CK_1510 | CK_310 | CK_7XX),
687	CLK(NULL,	"ck_dpll1",	&ck_dpll1,	CK_16XX | CK_1510 | CK_310 | CK_7XX),
688	/* CK_GEN1 clocks */
689	CLK(NULL,	"ck_dpll1out",	&ck_dpll1out.clk, CK_16XX),
690	CLK(NULL,	"ck_sossi",	&sossi_ck,	CK_16XX),
691	CLK(NULL,	"arm_ck",	&arm_ck,	CK_16XX | CK_1510 | CK_310),
692	CLK(NULL,	"armper_ck",	&armper_ck.clk,	CK_16XX | CK_1510 | CK_310),
693	CLK("omap_gpio.0", "ick",	&arm_gpio_ck,	CK_1510 | CK_310),
694	CLK(NULL,	"armxor_ck",	&armxor_ck.clk,	CK_16XX | CK_1510 | CK_310 | CK_7XX),
695	CLK(NULL,	"armtim_ck",	&armtim_ck.clk,	CK_16XX | CK_1510 | CK_310),
696	CLK("omap_wdt",	"fck",		&armwdt_ck.clk,	CK_16XX | CK_1510 | CK_310),
697	CLK("omap_wdt",	"ick",		&armper_ck.clk,	CK_16XX),
698	CLK("omap_wdt", "ick",		&dummy_ck,	CK_1510 | CK_310),
699	CLK(NULL,	"arminth_ck",	&arminth_ck1510, CK_1510 | CK_310),
700	CLK(NULL,	"arminth_ck",	&arminth_ck16xx, CK_16XX),
701	/* CK_GEN2 clocks */
702	CLK(NULL,	"dsp_ck",	&dsp_ck,	CK_16XX | CK_1510 | CK_310),
703	CLK(NULL,	"dspmmu_ck",	&dspmmu_ck,	CK_16XX | CK_1510 | CK_310),
704	CLK(NULL,	"dspper_ck",	&dspper_ck,	CK_16XX | CK_1510 | CK_310),
705	CLK(NULL,	"dspxor_ck",	&dspxor_ck,	CK_16XX | CK_1510 | CK_310),
706	CLK(NULL,	"dsptim_ck",	&dsptim_ck,	CK_16XX | CK_1510 | CK_310),
707	/* CK_GEN3 clocks */
708	CLK(NULL,	"tc_ck",	&tc_ck.clk,	CK_16XX | CK_1510 | CK_310 | CK_7XX),
709	CLK(NULL,	"tipb_ck",	&tipb_ck,	CK_1510 | CK_310),
710	CLK(NULL,	"l3_ocpi_ck",	&l3_ocpi_ck,	CK_16XX | CK_7XX),
711	CLK(NULL,	"tc1_ck",	&tc1_ck,	CK_16XX),
712	CLK(NULL,	"tc2_ck",	&tc2_ck,	CK_16XX),
713	CLK(NULL,	"dma_ck",	&dma_ck,	CK_16XX | CK_1510 | CK_310),
714	CLK(NULL,	"dma_lcdfree_ck", &dma_lcdfree_ck, CK_16XX),
715	CLK(NULL,	"api_ck",	&api_ck.clk,	CK_16XX | CK_1510 | CK_310 | CK_7XX),
716	CLK(NULL,	"lb_ck",	&lb_ck.clk,	CK_1510 | CK_310),
717	CLK(NULL,	"rhea1_ck",	&rhea1_ck,	CK_16XX),
718	CLK(NULL,	"rhea2_ck",	&rhea2_ck,	CK_16XX),
719	CLK(NULL,	"lcd_ck",	&lcd_ck_16xx,	CK_16XX | CK_7XX),
720	CLK(NULL,	"lcd_ck",	&lcd_ck_1510.clk, CK_1510 | CK_310),
721	/* ULPD clocks */
722	CLK(NULL,	"uart1_ck",	&uart1_1510,	CK_1510 | CK_310),
723	CLK(NULL,	"uart1_ck",	&uart1_16xx.clk, CK_16XX),
724	CLK(NULL,	"uart1_ck",	&uart1_7xx,	CK_7XX),
725	CLK(NULL,	"uart2_ck",	&uart2_ck,	CK_16XX | CK_1510 | CK_310),
726	CLK(NULL,	"uart2_ck",	&uart2_7xx,	CK_7XX),
727	CLK(NULL,	"uart3_ck",	&uart3_1510,	CK_1510 | CK_310),
728	CLK(NULL,	"uart3_ck",	&uart3_16xx.clk, CK_16XX),
729	CLK(NULL,	"usb_clko",	&usb_clko,	CK_16XX | CK_1510 | CK_310),
730	CLK(NULL,	"usb_hhc_ck",	&usb_hhc_ck1510, CK_1510 | CK_310),
731	CLK(NULL,	"usb_hhc_ck",	&usb_hhc_ck16xx, CK_16XX),
732	CLK(NULL,	"usb_dc_ck",	&usb_dc_ck,	CK_16XX),
733	CLK(NULL,	"usb_dc_ck",	&usb_dc_ck7xx,	CK_7XX),
734	CLK(NULL,	"mclk",		&mclk_1510,	CK_1510 | CK_310),
735	CLK(NULL,	"mclk",		&mclk_16xx,	CK_16XX),
736	CLK(NULL,	"bclk",		&bclk_1510,	CK_1510 | CK_310),
737	CLK(NULL,	"bclk",		&bclk_16xx,	CK_16XX),
738	CLK("mmci-omap.0", "fck",	&mmc1_ck,	CK_16XX | CK_1510 | CK_310),
739	CLK("mmci-omap.0", "fck",	&mmc3_ck,	CK_7XX),
740	CLK("mmci-omap.0", "ick",	&armper_ck.clk,	CK_16XX | CK_1510 | CK_310 | CK_7XX),
741	CLK("mmci-omap.1", "fck",	&mmc2_ck,	CK_16XX),
742	CLK("mmci-omap.1", "ick",	&armper_ck.clk,	CK_16XX),
743	/* Virtual clocks */
744	CLK(NULL,	"mpu",		&virtual_ck_mpu, CK_16XX | CK_1510 | CK_310),
745	CLK("omap_i2c.1", "fck",	&i2c_fck,	CK_16XX | CK_1510 | CK_310 | CK_7XX),
746	CLK("omap_i2c.1", "ick",	&i2c_ick,	CK_16XX),
747	CLK("omap_i2c.1", "ick",	&dummy_ck,	CK_1510 | CK_310 | CK_7XX),
748	CLK("omap1_spi100k.1", "fck",	&dummy_ck,	CK_7XX),
749	CLK("omap1_spi100k.1", "ick",	&dummy_ck,	CK_7XX),
750	CLK("omap1_spi100k.2", "fck",	&dummy_ck,	CK_7XX),
751	CLK("omap1_spi100k.2", "ick",	&dummy_ck,	CK_7XX),
752	CLK("omap_uwire", "fck",	&armxor_ck.clk,	CK_16XX | CK_1510 | CK_310),
753	CLK("omap-mcbsp.1", "ick",	&dspper_ck,	CK_16XX),
754	CLK("omap-mcbsp.1", "ick",	&dummy_ck,	CK_1510 | CK_310),
755	CLK("omap-mcbsp.2", "ick",	&armper_ck.clk,	CK_16XX),
756	CLK("omap-mcbsp.2", "ick",	&dummy_ck,	CK_1510 | CK_310),
757	CLK("omap-mcbsp.3", "ick",	&dspper_ck,	CK_16XX),
758	CLK("omap-mcbsp.3", "ick",	&dummy_ck,	CK_1510 | CK_310),
759	CLK("omap-mcbsp.1", "fck",	&dspxor_ck,	CK_16XX | CK_1510 | CK_310),
760	CLK("omap-mcbsp.2", "fck",	&armper_ck.clk,	CK_16XX | CK_1510 | CK_310),
761	CLK("omap-mcbsp.3", "fck",	&dspxor_ck,	CK_16XX | CK_1510 | CK_310),
762};
763
764/*
765 * init
766 */
767
768static struct clk_functions omap1_clk_functions = {
769	.clk_enable		= omap1_clk_enable,
770	.clk_disable		= omap1_clk_disable,
771	.clk_round_rate		= omap1_clk_round_rate,
772	.clk_set_rate		= omap1_clk_set_rate,
773	.clk_disable_unused	= omap1_clk_disable_unused,
774};
775
776static void __init omap1_show_rates(void)
777{
778	pr_notice("Clocking rate (xtal/DPLL1/MPU): "
779			"%ld.%01ld/%ld.%01ld/%ld.%01ld MHz\n",
780		ck_ref.rate / 1000000, (ck_ref.rate / 100000) % 10,
781		ck_dpll1.rate / 1000000, (ck_dpll1.rate / 100000) % 10,
782		arm_ck.rate / 1000000, (arm_ck.rate / 100000) % 10);
783}
784
785u32 cpu_mask;
786
787int __init omap1_clk_init(void)
788{
789	struct omap_clk *c;
790	const struct omap_clock_config *info;
791	int crystal_type = 0; /* Default 12 MHz */
792	u32 reg;
793
794#ifdef CONFIG_DEBUG_LL
795	/*
796	 * Resets some clocks that may be left on from bootloader,
797	 * but leaves serial clocks on.
798	 */
799	omap_writel(0x3 << 29, MOD_CONF_CTRL_0);
800#endif
801
802	/* USB_REQ_EN will be disabled later if necessary (usb_dc_ck) */
803	reg = omap_readw(SOFT_REQ_REG) & (1 << 4);
804	omap_writew(reg, SOFT_REQ_REG);
805	if (!cpu_is_omap15xx())
806		omap_writew(0, SOFT_REQ_REG2);
807
808	clk_init(&omap1_clk_functions);
809
810	/* By default all idlect1 clocks are allowed to idle */
811	arm_idlect1_mask = ~0;
812
813	for (c = omap_clks; c < omap_clks + ARRAY_SIZE(omap_clks); c++)
814		clk_preinit(c->lk.clk);
815
816	cpu_mask = 0;
817	if (cpu_is_omap1710())
818		cpu_mask |= CK_1710;
819	if (cpu_is_omap16xx())
820		cpu_mask |= CK_16XX;
821	if (cpu_is_omap1510())
822		cpu_mask |= CK_1510;
823	if (cpu_is_omap7xx())
824		cpu_mask |= CK_7XX;
825	if (cpu_is_omap310())
826		cpu_mask |= CK_310;
827
828	for (c = omap_clks; c < omap_clks + ARRAY_SIZE(omap_clks); c++)
829		if (c->cpu & cpu_mask) {
830			clkdev_add(&c->lk);
831			clk_register(c->lk.clk);
832		}
833
834	/* Pointers to these clocks are needed by code in clock.c */
835	api_ck_p = clk_get(NULL, "api_ck");
836	ck_dpll1_p = clk_get(NULL, "ck_dpll1");
837	ck_ref_p = clk_get(NULL, "ck_ref");
838
839	info = omap_get_config(OMAP_TAG_CLOCK, struct omap_clock_config);
840	if (info != NULL) {
841		if (!cpu_is_omap15xx())
842			crystal_type = info->system_clock_type;
843	}
844
845	if (cpu_is_omap7xx())
846		ck_ref.rate = 13000000;
847	if (cpu_is_omap16xx() && crystal_type == 2)
848		ck_ref.rate = 19200000;
849
850	pr_info("Clocks: ARM_SYSST: 0x%04x DPLL_CTL: 0x%04x ARM_CKCTL: "
851		"0x%04x\n", omap_readw(ARM_SYSST), omap_readw(DPLL_CTL),
852		omap_readw(ARM_CKCTL));
853
854	/* We want to be in syncronous scalable mode */
855	omap_writew(0x1000, ARM_SYSST);
856
857
858	/*
859	 * Initially use the values set by bootloader. Determine PLL rate and
860	 * recalculate dependent clocks as if kernel had changed PLL or
861	 * divisors. See also omap1_clk_late_init() that can reprogram dpll1
862	 * after the SRAM is initialized.
863	 */
864	{
865		unsigned pll_ctl_val = omap_readw(DPLL_CTL);
866
867		ck_dpll1.rate = ck_ref.rate; /* Base xtal rate */
868		if (pll_ctl_val & 0x10) {
869			/* PLL enabled, apply multiplier and divisor */
870			if (pll_ctl_val & 0xf80)
871				ck_dpll1.rate *= (pll_ctl_val & 0xf80) >> 7;
872			ck_dpll1.rate /= ((pll_ctl_val & 0x60) >> 5) + 1;
873		} else {
874			/* PLL disabled, apply bypass divisor */
875			switch (pll_ctl_val & 0xc) {
876			case 0:
877				break;
878			case 0x4:
879				ck_dpll1.rate /= 2;
880				break;
881			default:
882				ck_dpll1.rate /= 4;
883				break;
884			}
885		}
886	}
 
 
 
 
 
 
 
 
 
 
887	propagate_rate(&ck_dpll1);
888	/* Cache rates for clocks connected to ck_ref (not dpll1) */
889	propagate_rate(&ck_ref);
890	omap1_show_rates();
 
 
 
 
 
891	if (machine_is_omap_perseus2() || machine_is_omap_fsample()) {
892		/* Select slicer output as OMAP input clock */
893		omap_writew(omap_readw(OMAP7XX_PCC_UPLD_CTRL) & ~0x1,
894				OMAP7XX_PCC_UPLD_CTRL);
895	}
896
897	/* Amstrad Delta wants BCLK high when inactive */
898	if (machine_is_ams_delta())
899		omap_writel(omap_readl(ULPD_CLOCK_CTRL) |
900				(1 << SDW_MCLK_INV_BIT),
901				ULPD_CLOCK_CTRL);
902
903	/* Turn off DSP and ARM_TIMXO. Make sure ARM_INTHCK is not divided */
904	/* (on 730, bit 13 must not be cleared) */
905	if (cpu_is_omap7xx())
906		omap_writew(omap_readw(ARM_CKCTL) & 0x2fff, ARM_CKCTL);
907	else
908		omap_writew(omap_readw(ARM_CKCTL) & 0x0fff, ARM_CKCTL);
909
910	/* Put DSP/MPUI into reset until needed */
911	omap_writew(0, ARM_RSTCT1);
912	omap_writew(1, ARM_RSTCT2);
913	omap_writew(0x400, ARM_IDLECT1);
914
915	/*
916	 * According to OMAP5910 Erratum SYS_DMA_1, bit DMACK_REQ (bit 8)
917	 * of the ARM_IDLECT2 register must be set to zero. The power-on
918	 * default value of this bit is one.
919	 */
920	omap_writew(0x0000, ARM_IDLECT2);	/* Turn LCD clock off also */
921
922	/*
923	 * Only enable those clocks we will need, let the drivers
924	 * enable other clocks as necessary
925	 */
926	clk_enable(&armper_ck.clk);
927	clk_enable(&armxor_ck.clk);
928	clk_enable(&armtim_ck.clk); /* This should be done by timer code */
929
930	if (cpu_is_omap15xx())
931		clk_enable(&arm_gpio_ck);
932
933	return 0;
934}
935
936#define OMAP1_DPLL1_SANE_VALUE	60000000
937
938void __init omap1_clk_late_init(void)
939{
940	unsigned long rate = ck_dpll1.rate;
941
942	/* Find the highest supported frequency and enable it */
943	if (omap1_select_table_rate(&virtual_ck_mpu, ~0)) {
944		pr_err("System frequencies not set, using default. Check your config.\n");
945		/*
946		 * Reprogramming the DPLL is tricky, it must be done from SRAM.
947		 */
948		omap_sram_reprogram_clock(0x2290, 0x0005);
949		ck_dpll1.rate = OMAP1_DPLL1_SANE_VALUE;
950	}
951	propagate_rate(&ck_dpll1);
952	omap1_show_rates();
953	loops_per_jiffy = cpufreq_scale(loops_per_jiffy, rate, ck_dpll1.rate);
954}