aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-versatile (follow)
AgeCommit message (Collapse)AuthorFilesLines
2010-05-02ARM: Indirect round/set_rate operations through clk structureRussell King2-12/+41
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2010-05-02ARM: Realview/Versatile: separate out common sched_clock()Russell King2-0/+55
Provide a common sched_clock() implementation for Versatile and Realview. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2010-05-02ARM: Realview/Versatile: don't use magic numbers for timer frequencyRussell King1-7/+5
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2010-05-02ARM: Realview/Versatile: remove useless TIMER_RELOAD calculationsRussell King1-11/+1
Realview/Versatile copied the Integrator timer code, including the calculations for ensuring that the reload value fits into the 16-bit counter. However, these platforms have a 32-bit counter which is clocked at a slower rate. The result is that the preprocessor conditions are never triggered: TICKS_PER_uSEC = 1, mSEC_10 = 10000, which is 0x2710 - less than 0x10000. So, remove the unnecessary complexity, reducing the TIMER_RELOAD calculation to just: TICKS_PER_uSEC * mSEC_10 Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2010-05-02ARM: Realview/Versatile: separate out common SP804 timer codeRussell King3-0/+171
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2010-05-02ARM: Realview/Versatile/Integrator: separate out common clock codeRussell King2-0/+61
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>