blob: 297d616d5e152d0644f77cca5b36c4c231d6e132 [file] [log] [blame]
Sascha Hauerafb493c2008-03-30 11:30:43 +01001/*
2 * (C) Copyright 2007
3 * Sascha Hauer, Pengutronix
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
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (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., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25#include <asm/arch/mx31-regs.h>
26
27static u32 mx31_decode_pll(u32 reg, u32 infreq)
28{
29 u32 mfi = (reg >> 10) & 0xf;
30 u32 mfn = reg & 0x3f;
31 u32 mfd = (reg >> 16) & 0x3f;
32 u32 pd = (reg >> 26) & 0xf;
33
34 mfi = mfi <= 5 ? 5 : mfi;
35 mfd += 1;
36 pd += 1;
37
38 return ((2 * (infreq >> 10) * (mfi * mfd + mfn)) /
39 (mfd * pd)) << 10;
40}
41
42u32 mx31_get_mpl_dpdgck_clk(void)
43{
44 u32 infreq;
45
46 if ((__REG(CCM_CCMR) & CCMR_PRCS_MASK) == CCMR_FPM)
47 infreq = CONFIG_MX31_CLK32 * 1024;
48 else
49 infreq = CONFIG_MX31_HCLK_FREQ;
50
51 return mx31_decode_pll(__REG(CCM_MPCTL), infreq); }
52
53u32 mx31_get_mcu_main_clk(void)
54{
55 /* For now we assume mpl_dpdgck_clk == mcu_main_clk
56 * which should be correct for most boards
57 */
58 return mx31_get_mpl_dpdgck_clk();
59}
60
61u32 mx31_get_ipg_clk(void)
62{
63 u32 freq = mx31_get_mcu_main_clk();
64 u32 pdr0 = __REG(CCM_PDR0);
65
66 freq /= ((pdr0 >> 3) & 0x7) + 1;
67 freq /= ((pdr0 >> 6) & 0x3) + 1;
68
69 return freq;
70}
71
72void mx31_dump_clocks(void)
73{
74 u32 cpufreq = mx31_get_mcu_main_clk();
75 printf("mx31 cpu clock: %dMHz\n", cpufreq / 1000000);
76 printf("ipg clock : %dHz\n", mx31_get_ipg_clk());
77}
78
79void mx31_gpio_mux(unsigned long mode)
80{
81 unsigned long reg, shift, tmp;
82
83 reg = IOMUXC_BASE + (mode & 0xfc);
84 shift = (~mode & 0x3) * 8;
85
86 tmp = __REG(reg);
87 tmp &= ~(0xff << shift);
88 tmp |= ((mode >> 8) & 0xff) << shift;
89 __REG(reg) = tmp;
90}
91
92#if defined(CONFIG_DISPLAY_CPUINFO)
93int print_cpuinfo(void)
94{
95 printf("CPU: Freescale i.MX31 at %d MHz\n",
96 mx31_get_mcu_main_clk() / 1000000);
97 return 0;
98}
99#endif