10
10
#define __ASM_ARM_ARCH_CLK_H__
11
11
12
12
#include <asm/arch/hardware.h>
13
+ #include <asm/arch/at91_pmc.h>
13
14
#include <asm/global_data.h>
14
15
15
16
static inline unsigned long get_cpu_clk_rate (void )
@@ -48,14 +49,34 @@ static inline u32 get_pllb_init(void)
48
49
return gd -> arch .at91_pllb_usb_init ;
49
50
}
50
51
52
+ #ifdef CPU_HAS_H32MXDIV
53
+ static inline unsigned int get_h32mxdiv (void )
54
+ {
55
+ struct at91_pmc * pmc = (struct at91_pmc * )ATMEL_BASE_PMC ;
56
+
57
+ return readl (& pmc -> mckr ) & AT91_PMC_MCKR_H32MXDIV ;
58
+ }
59
+ #else
60
+ static inline unsigned int get_h32mxdiv (void )
61
+ {
62
+ return 0 ;
63
+ }
64
+ #endif
65
+
51
66
static inline unsigned long get_macb_pclk_rate (unsigned int dev_id )
52
67
{
53
- return get_mck_clk_rate ();
68
+ if (get_h32mxdiv ())
69
+ return get_mck_clk_rate () / 2 ;
70
+ else
71
+ return get_mck_clk_rate ();
54
72
}
55
73
56
74
static inline unsigned long get_usart_clk_rate (unsigned int dev_id )
57
75
{
58
- return get_mck_clk_rate ();
76
+ if (get_h32mxdiv ())
77
+ return get_mck_clk_rate () / 2 ;
78
+ else
79
+ return get_mck_clk_rate ();
59
80
}
60
81
61
82
static inline unsigned long get_lcdc_clk_rate (unsigned int dev_id )
@@ -65,17 +86,34 @@ static inline unsigned long get_lcdc_clk_rate(unsigned int dev_id)
65
86
66
87
static inline unsigned long get_spi_clk_rate (unsigned int dev_id )
67
88
{
68
- return get_mck_clk_rate ();
89
+ if (get_h32mxdiv ())
90
+ return get_mck_clk_rate () / 2 ;
91
+ else
92
+ return get_mck_clk_rate ();
69
93
}
70
94
71
95
static inline unsigned long get_twi_clk_rate (unsigned int dev_id )
72
96
{
73
- return get_mck_clk_rate ();
97
+ if (get_h32mxdiv ())
98
+ return get_mck_clk_rate () / 2 ;
99
+ else
100
+ return get_mck_clk_rate ();
74
101
}
75
102
76
103
static inline unsigned long get_mci_clk_rate (void )
77
104
{
78
- return get_mck_clk_rate ();
105
+ if (get_h32mxdiv ())
106
+ return get_mck_clk_rate () / 2 ;
107
+ else
108
+ return get_mck_clk_rate ();
109
+ }
110
+
111
+ static inline unsigned long get_pit_clk_rate (void )
112
+ {
113
+ if (get_h32mxdiv ())
114
+ return get_mck_clk_rate () / 2 ;
115
+ else
116
+ return get_mck_clk_rate ();
79
117
}
80
118
81
119
int at91_clock_init (unsigned long main_clock );
0 commit comments