]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/include/asm/arch-am33xx/clocks_am33xx.h
TX6 Release 2013-04-22
[karo-tx-uboot.git] / arch / arm / include / asm / arch-am33xx / clocks_am33xx.h
1 /*
2  * clocks_am33xx.h
3  *
4  * AM33xx clock define
5  *
6  * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
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
19 #ifndef _CLOCKS_AM33XX_H_
20 #define _CLOCKS_AM33XX_H_
21
22 #define OSC     (V_OSCK/1000000)
23
24 #ifndef CONFIG_SYS_MPU_CLK
25 /* MAIN PLL Fdll = 550 MHZ, */
26 #define MPUPLL_M        550
27 #else
28 #define MPUPLL_M        CONFIG_SYS_MPU_CLK
29 #endif
30 #define MPUPLL_N        (OSC - 1)
31 #define MPUPLL_M2       1
32
33 /* Core PLL Fdll = 1 GHZ, */
34 #define COREPLL_M       1000
35 #define COREPLL_N       (OSC - 1)
36
37 #define COREPLL_M4      10      /* CORE_CLKOUTM4 = 200 MHZ */
38 #define COREPLL_M5      8       /* CORE_CLKOUTM5 = 250 MHZ */
39 #define COREPLL_M6      4       /* CORE_CLKOUTM6 = 500 MHZ */
40
41 /*
42  * USB PHY clock is 960 MHZ. Since, this comes directly from Fdll, Fdll
43  * frequency needs to be set to 960 MHZ. Hence,
44  * For clkout = 192 MHZ, Fdll = 960 MHZ, divider values are given below
45  */
46 #define PERPLL_M        960
47 #define PERPLL_N        (OSC - 1)
48 #define PERPLL_M2       5
49
50 /* DDR Freq is 266 MHZ for now */
51 /* Set Fdll = 400 MHZ , Fdll = M * 2 * CLKINP/ N + 1; clkout = Fdll /(2 * M2) */
52 #ifndef CONFIG_SYS_DDR_CLK
53 #define DDRPLL_M        266
54 #else
55 #define DDRPLL_M        CONFIG_SYS_DDR_CLK
56 #endif
57 #define DDRPLL_N        (OSC - 1)
58 #define DDRPLL_M2       1
59
60 #define DISPPLL_M       200
61 #define DISPPLL_N       (OSC - 1)
62 #define DISPPLL_M2      1
63
64 extern void pll_init(void);
65 extern void enable_emif_clocks(void);
66
67 #endif  /* endif _CLOCKS_AM33XX_H_ */