From c24f16b8abca3ff2f98474d451e00178aded0ac1 Mon Sep 17 00:00:00 2001 From: Sebastian Sumpf Date: Wed, 8 Mar 2017 16:58:27 +0100 Subject: [PATCH] foc: adjust panda timer to version A6 A6 runs at 800 not 700 MHz (as the ES2 does) when bootstrapped by U-boot (thanks to mstein) --- .../src/kern/arm/bsp/omap/timer-arm-mptimer-omap4.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/fiasco/src/kern/arm/bsp/omap/timer-arm-mptimer-omap4.cpp b/kernel/fiasco/src/kern/arm/bsp/omap/timer-arm-mptimer-omap4.cpp index 1d2d9189..aa3f3d50 100644 --- a/kernel/fiasco/src/kern/arm/bsp/omap/timer-arm-mptimer-omap4.cpp +++ b/kernel/fiasco/src/kern/arm/bsp/omap/timer-arm-mptimer-omap4.cpp @@ -7,10 +7,10 @@ private: 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 + * This is only valid for Panda A6, as we run it at our offices. For A6 + * U-Boot will clock the board at 800 MHz leading to a 400 MHz private timer * tick. */ - return 349999; + return 399999; } };