2 * TI DaVinci clock definitions
4 * Copyright (C) 2006-2007 Texas Instruments.
5 * Copyright (C) 2008-2009 Deep Root Systems, LLC
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #ifndef __ARCH_ARM_DAVINCI_CLOCK_H
13 #define __ARCH_ARM_DAVINCI_CLOCK_H
15 #define DAVINCI_PLL1_BASE 0x01c40800
16 #define DAVINCI_PLL2_BASE 0x01c40c00
19 /* PLL/Reset register offsets */
21 #define PLLCTL_PLLEN BIT(0)
22 #define PLLCTL_PLLPWRDN BIT(1)
23 #define PLLCTL_PLLRST BIT(3)
24 #define PLLCTL_PLLDIS BIT(4)
25 #define PLLCTL_PLLENSRC BIT(5)
26 #define PLLCTL_CLKMODE BIT(8)
29 #define PLLM_PLLM_MASK 0xff
39 #define PLLALNCTL 0x140
40 #define PLLDCHANGE 0x144
42 #define PLLCKSTAT 0x14c
43 #define PLLSYSTAT 0x150
50 #define PLLDIV_EN BIT(15)
51 #define PLLDIV_RATIO_MASK 0x1f
54 * OMAP-L138 system reference guide recommends a wait for 4 OSCIN/CLKIN
55 * cycles to ensure that the PLLC has switched to bypass mode. Delay of 1us
56 * ensures we are good for all > 4MHz OSCIN/CLKIN inputs. Typically the input
57 * is ~25MHz. Units are micro seconds.
59 #define PLL_BYPASS_TIME 1
60 /* From OMAP-L138 datasheet table 6-4. Units are micro seconds */
61 #define PLL_RESET_TIME 1
63 * From OMAP-L138 datasheet table 6-4; assuming prediv = 1, sqrt(pllm) = 4
64 * Units are micro seconds.
66 #define PLL_LOCK_TIME 20
70 #include <linux/list.h>
71 #include <asm/clkdev.h>
80 #define PLL_HAS_PREDIV 0x01
81 #define PLL_HAS_POSTDIV 0x02
84 struct list_head node
;
93 struct list_head children
; /* list of children */
94 struct list_head childnode
; /* parent's child list node */
95 struct pll_data
*pll_data
;
97 unsigned long (*recalc
) (struct clk
*);
98 int (*set_rate
) (struct clk
*clk
, unsigned long rate
);
99 int (*round_rate
) (struct clk
*clk
, unsigned long rate
);
102 /* Clock flags: SoC-specific flags start at BIT(16) */
103 #define ALWAYS_ENABLED BIT(1)
104 #define CLK_PSC BIT(2)
105 #define PSC_DSP BIT(3) /* PSC uses DSP domain, not ARM */
106 #define CLK_PLL BIT(4) /* PLL-derived clock */
107 #define PRE_PLL BIT(5) /* source is before PLL mult/div */
109 #define CLK(dev, con, ck) \
116 int davinci_clk_init(struct clk_lookup *clocks);
117 int davinci_set_pllrate(struct pll_data
*pll
, unsigned int prediv
,
118 unsigned int mult
, unsigned int postdiv
);
120 extern struct platform_device davinci_wdt_device
;