FOC: Rate OMAP4 timer at 350 MHz

Only valid for PandaBoard ES2 where u-boot sets the MPU clock to 700 MHz (of
possible 1200 MHz) only.
This commit is contained in:
Sebastian Sumpf
2013-07-18 10:49:37 +02:00
parent 3db87defce
commit 4239a0e015

View File

@@ -4,5 +4,13 @@ INTERFACE [arm && mptimer && omap4_pandaboard]:
EXTENSION class Timer
{
private:
static Mword interval() { return 499999; }
static Mword interval()
{
/*
* This is only valid for Panda ES2, as we run it at our offices. For ES2
* U-Boot will clock the board at 700 MHz leading to a 350 MHz private timer
* tick.
*/
return 349999;
}
};