blob: 02819f6f743666049e8c2ff235ed3f8767a0c945 [file] [log] [blame]
David Brownell7a4f5112009-05-15 23:47:12 +02001/*
2 * Copyright (C) 2004 Texas Instruments.
3 * Copyright (C) 2009 David Brownell
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
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 as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23#include <common.h>
Ben Warren84535872009-05-26 00:34:07 -070024#include <netdev.h>
David Brownell7a4f5112009-05-15 23:47:12 +020025#include <asm/arch/hardware.h>
Sekhar Nori91172ba2009-11-12 11:07:22 -050026#include <asm/io.h>
David Brownell7a4f5112009-05-15 23:47:12 +020027
28/* offsets from PLL controller base */
29#define PLLC_PLLCTL 0x100
30#define PLLC_PLLM 0x110
31#define PLLC_PREDIV 0x114
32#define PLLC_PLLDIV1 0x118
33#define PLLC_PLLDIV2 0x11c
34#define PLLC_PLLDIV3 0x120
35#define PLLC_POSTDIV 0x128
36#define PLLC_BPDIV 0x12c
37#define PLLC_PLLDIV4 0x160
38#define PLLC_PLLDIV5 0x164
39#define PLLC_PLLDIV6 0x168
Sudhakar Rajashekharab7e68432011-09-03 22:18:04 -040040#define PLLC_PLLDIV7 0x16c
David Brownell7a4f5112009-05-15 23:47:12 +020041#define PLLC_PLLDIV8 0x170
42#define PLLC_PLLDIV9 0x174
43
44#define BIT(x) (1 << (x))
45
46/* SOC-specific pll info */
47#ifdef CONFIG_SOC_DM355
48#define ARM_PLLDIV PLLC_PLLDIV1
49#define DDR_PLLDIV PLLC_PLLDIV1
50#endif
51
52#ifdef CONFIG_SOC_DM644X
53#define ARM_PLLDIV PLLC_PLLDIV2
54#define DSP_PLLDIV PLLC_PLLDIV1
55#define DDR_PLLDIV PLLC_PLLDIV2
56#endif
57
Sandeep Paulraj5342a712010-12-29 14:31:26 -050058#ifdef CONFIG_SOC_DM646X
59#define DSP_PLLDIV PLLC_PLLDIV1
60#define ARM_PLLDIV PLLC_PLLDIV2
61#define DDR_PLLDIV PLLC_PLLDIV1
62#endif
63
Sekhar Nori91172ba2009-11-12 11:07:22 -050064#ifdef CONFIG_SOC_DA8XX
Sudhakar Rajashekharab7e68432011-09-03 22:18:04 -040065unsigned int sysdiv[9] = {
66 PLLC_PLLDIV1, PLLC_PLLDIV2, PLLC_PLLDIV3, PLLC_PLLDIV4, PLLC_PLLDIV5,
67 PLLC_PLLDIV6, PLLC_PLLDIV7, PLLC_PLLDIV8, PLLC_PLLDIV9
Sekhar Nori91172ba2009-11-12 11:07:22 -050068};
69
70int clk_get(enum davinci_clk_ids id)
71{
72 int pre_div;
73 int pllm;
74 int post_div;
75 int pll_out;
Sudhakar Rajashekharab7e68432011-09-03 22:18:04 -040076 unsigned int pll_base;
Sekhar Nori91172ba2009-11-12 11:07:22 -050077
78 pll_out = CONFIG_SYS_OSCIN_FREQ;
79
80 if (id == DAVINCI_AUXCLK_CLKID)
81 goto out;
82
Sudhakar Rajashekharab7e68432011-09-03 22:18:04 -040083 if ((id >> 16) == 1)
84 pll_base = (unsigned int)davinci_pllc1_regs;
85 else
86 pll_base = (unsigned int)davinci_pllc0_regs;
87
88 id &= 0xFFFF;
89
Sekhar Nori91172ba2009-11-12 11:07:22 -050090 /*
91 * Lets keep this simple. Combining operations can result in
92 * unexpected approximations
93 */
Sudhakar Rajashekharab7e68432011-09-03 22:18:04 -040094 pre_div = (readl(pll_base + PLLC_PREDIV) &
95 DAVINCI_PLLC_DIV_MASK) + 1;
96 pllm = readl(pll_base + PLLC_PLLM) + 1;
Sekhar Nori91172ba2009-11-12 11:07:22 -050097
98 pll_out /= pre_div;
99 pll_out *= pllm;
100
101 if (id == DAVINCI_PLLM_CLKID)
102 goto out;
103
Sudhakar Rajashekharab7e68432011-09-03 22:18:04 -0400104 post_div = (readl(pll_base + PLLC_POSTDIV) &
105 DAVINCI_PLLC_DIV_MASK) + 1;
Sekhar Nori91172ba2009-11-12 11:07:22 -0500106
107 pll_out /= post_div;
108
109 if (id == DAVINCI_PLLC_CLKID)
110 goto out;
111
Sudhakar Rajashekharab7e68432011-09-03 22:18:04 -0400112 pll_out /= (readl(pll_base + sysdiv[id - 1]) &
113 DAVINCI_PLLC_DIV_MASK) + 1;
Sekhar Nori91172ba2009-11-12 11:07:22 -0500114
115out:
116 return pll_out;
117}
Heiko Schocher0a0522c2011-09-14 19:59:39 +0000118#ifdef CONFIG_DISPLAY_CPUINFO
119int print_cpuinfo(void)
120{
121 printf("Cores: ARM %d MHz",
122 clk_get(DAVINCI_ARM_CLKID) / 1000000);
123 printf("\nDDR: %d MHz\n",
124 /* DDR PHY uses an x2 input clock */
125 clk_get(0x10001) / 1000000);
126 return 0;
127}
128#endif
129#else /* CONFIG_SOC_DA8XX */
David Brownell7a4f5112009-05-15 23:47:12 +0200130
131#ifdef CONFIG_DISPLAY_CPUINFO
132
133static unsigned pll_div(volatile void *pllbase, unsigned offset)
134{
135 u32 div;
136
137 div = REG(pllbase + offset);
138 return (div & BIT(15)) ? (1 + (div & 0x1f)) : 1;
139}
140
141static inline unsigned pll_prediv(volatile void *pllbase)
142{
143#ifdef CONFIG_SOC_DM355
144 /* this register read seems to fail on pll0 */
145 if (pllbase == (volatile void *)DAVINCI_PLL_CNTRL0_BASE)
146 return 8;
147 else
148 return pll_div(pllbase, PLLC_PREDIV);
149#endif
150 return 1;
151}
152
153static inline unsigned pll_postdiv(volatile void *pllbase)
154{
155#ifdef CONFIG_SOC_DM355
156 return pll_div(pllbase, PLLC_POSTDIV);
157#elif defined(CONFIG_SOC_DM6446)
158 if (pllbase == (volatile void *)DAVINCI_PLL_CNTRL0_BASE)
159 return pll_div(pllbase, PLLC_POSTDIV);
160#endif
161 return 1;
162}
163
164static unsigned pll_sysclk_mhz(unsigned pll_addr, unsigned div)
165{
166 volatile void *pllbase = (volatile void *) pll_addr;
Sandeep Paulraj5342a712010-12-29 14:31:26 -0500167#ifdef CONFIG_SOC_DM646X
168 unsigned base = CFG_REFCLK_FREQ / 1000;
169#else
David Brownell7a4f5112009-05-15 23:47:12 +0200170 unsigned base = CONFIG_SYS_HZ_CLOCK / 1000;
Sandeep Paulraj5342a712010-12-29 14:31:26 -0500171#endif
David Brownell7a4f5112009-05-15 23:47:12 +0200172
173 /* the PLL might be bypassed */
174 if (REG(pllbase + PLLC_PLLCTL) & BIT(0)) {
175 base /= pll_prediv(pllbase);
176 base *= 1 + (REG(pllbase + PLLC_PLLM) & 0x0ff);
177 base /= pll_postdiv(pllbase);
178 }
179 return DIV_ROUND_UP(base, 1000 * pll_div(pllbase, div));
180}
181
182int print_cpuinfo(void)
183{
184 /* REVISIT fetch and display CPU ID and revision information
185 * too ... that will matter as more revisions appear.
186 */
187 printf("Cores: ARM %d MHz",
188 pll_sysclk_mhz(DAVINCI_PLL_CNTRL0_BASE, ARM_PLLDIV));
189
190#ifdef DSP_PLLDIV
191 printf(", DSP %d MHz",
192 pll_sysclk_mhz(DAVINCI_PLL_CNTRL0_BASE, DSP_PLLDIV));
193#endif
194
195 printf("\nDDR: %d MHz\n",
196 /* DDR PHY uses an x2 input clock */
197 pll_sysclk_mhz(DAVINCI_PLL_CNTRL1_BASE, DDR_PLLDIV)
198 / 2);
199 return 0;
200}
201
Sandeep Paulraj5342a712010-12-29 14:31:26 -0500202#ifdef DAVINCI_DM6467EVM
203unsigned int davinci_arm_clk_get()
204{
205 return pll_sysclk_mhz(DAVINCI_PLL_CNTRL0_BASE, ARM_PLLDIV) * 1000000;
206}
207#endif
Heiko Schocher0a0522c2011-09-14 19:59:39 +0000208#endif /* CONFIG_DISPLAY_CPUINFO */
209#endif /* !CONFIG_SOC_DA8XX */
David Brownell7a4f5112009-05-15 23:47:12 +0200210
Ben Warren84535872009-05-26 00:34:07 -0700211/*
212 * Initializes on-chip ethernet controllers.
213 * to override, implement board_eth_init()
214 */
215int cpu_eth_init(bd_t *bis)
216{
217#if defined(CONFIG_DRIVER_TI_EMAC)
218 davinci_emac_initialize();
219#endif
220 return 0;
221}