davinci: remove macro CONFIG_DISPLAY_CPUINFO
[oweals/u-boot.git] / arch / arm / cpu / arm926ejs / davinci / cpu.c
1 /*
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>
24 #include <netdev.h>
25 #include <asm/arch/hardware.h>
26 #include <asm/io.h>
27
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
40 #define PLLC_PLLDIV7    0x16c
41 #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
58 #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
64 #ifdef CONFIG_SOC_DA8XX
65 unsigned int sysdiv[9] = {
66         PLLC_PLLDIV1, PLLC_PLLDIV2, PLLC_PLLDIV3, PLLC_PLLDIV4, PLLC_PLLDIV5,
67         PLLC_PLLDIV6, PLLC_PLLDIV7, PLLC_PLLDIV8, PLLC_PLLDIV9
68 };
69
70 int clk_get(enum davinci_clk_ids id)
71 {
72         int pre_div;
73         int pllm;
74         int post_div;
75         int pll_out;
76         unsigned int pll_base;
77
78         pll_out = CONFIG_SYS_OSCIN_FREQ;
79
80         if (id == DAVINCI_AUXCLK_CLKID)
81                 goto out;
82
83         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
90         /*
91          * Lets keep this simple. Combining operations can result in
92          * unexpected approximations
93          */
94         pre_div = (readl(pll_base + PLLC_PREDIV) &
95                 DAVINCI_PLLC_DIV_MASK) + 1;
96         pllm = readl(pll_base + PLLC_PLLM) + 1;
97
98         pll_out /= pre_div;
99         pll_out *= pllm;
100
101         if (id == DAVINCI_PLLM_CLKID)
102                 goto out;
103
104         post_div = (readl(pll_base + PLLC_POSTDIV) &
105                 DAVINCI_PLLC_DIV_MASK) + 1;
106
107         pll_out /= post_div;
108
109         if (id == DAVINCI_PLLC_CLKID)
110                 goto out;
111
112         pll_out /= (readl(pll_base + sysdiv[id - 1]) &
113                 DAVINCI_PLLC_DIV_MASK) + 1;
114
115 out:
116         return pll_out;
117 }
118 #else /* CONFIG_SOC_DA8XX */
119
120 static unsigned pll_div(volatile void *pllbase, unsigned offset)
121 {
122         u32     div;
123
124         div = REG(pllbase + offset);
125         return (div & BIT(15)) ? (1 + (div & 0x1f)) : 1;
126 }
127
128 static inline unsigned pll_prediv(volatile void *pllbase)
129 {
130 #ifdef CONFIG_SOC_DM355
131         /* this register read seems to fail on pll0 */
132         if (pllbase == (volatile void *)DAVINCI_PLL_CNTRL0_BASE)
133                 return 8;
134         else
135                 return pll_div(pllbase, PLLC_PREDIV);
136 #elif defined(CONFIG_SOC_DM365)
137         return pll_div(pllbase, PLLC_PREDIV);
138 #endif
139         return 1;
140 }
141
142 static inline unsigned pll_postdiv(volatile void *pllbase)
143 {
144 #if defined(CONFIG_SOC_DM355) || defined(CONFIG_SOC_DM365)
145         return pll_div(pllbase, PLLC_POSTDIV);
146 #elif defined(CONFIG_SOC_DM6446)
147         if (pllbase == (volatile void *)DAVINCI_PLL_CNTRL0_BASE)
148                 return pll_div(pllbase, PLLC_POSTDIV);
149 #endif
150         return 1;
151 }
152
153 static unsigned pll_sysclk_mhz(unsigned pll_addr, unsigned div)
154 {
155         volatile void   *pllbase = (volatile void *) pll_addr;
156 #ifdef CONFIG_SOC_DM646X
157         unsigned        base = CFG_REFCLK_FREQ / 1000;
158 #else
159         unsigned        base = CONFIG_SYS_HZ_CLOCK / 1000;
160 #endif
161
162         /* the PLL might be bypassed */
163         if (readl(pllbase + PLLC_PLLCTL) & BIT(0)) {
164                 base /= pll_prediv(pllbase);
165 #if defined(CONFIG_SOC_DM365)
166                 base *=  2 * (readl(pllbase + PLLC_PLLM) & 0x0ff);
167 #else
168                 base *= 1 + (REG(pllbase + PLLC_PLLM) & 0x0ff);
169 #endif
170                 base /= pll_postdiv(pllbase);
171         }
172         return DIV_ROUND_UP(base, 1000 * pll_div(pllbase, div));
173 }
174
175 #ifdef DAVINCI_DM6467EVM
176 unsigned int davinci_arm_clk_get()
177 {
178         return pll_sysclk_mhz(DAVINCI_PLL_CNTRL0_BASE, ARM_PLLDIV) * 1000000;
179 }
180 #endif
181
182 #if defined(CONFIG_SOC_DM365)
183 unsigned int davinci_clk_get(unsigned int div)
184 {
185         return pll_sysclk_mhz(DAVINCI_PLL_CNTRL0_BASE, div) * 1000000;
186 }
187 #endif
188 #endif /* !CONFIG_SOC_DA8XX */
189
190 /*
191  * Initializes on-chip ethernet controllers.
192  * to override, implement board_eth_init()
193  */
194 int cpu_eth_init(bd_t *bis)
195 {
196 #if defined(CONFIG_DRIVER_TI_EMAC)
197         davinci_emac_initialize();
198 #endif
199         return 0;
200 }