We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d10689b commit 9138dccCopy full SHA for 9138dcc
include/asm-arm/arch-ixp4xx/timex.h
@@ -7,7 +7,9 @@
7
8
/*
9
* We use IXP425 General purpose timer for our timer needs, it runs at
10
- * 66.66... MHz
+ * 66.66... MHz. We do a convulted calculation of CLOCK_TICK_RATE b/c the
11
+ * timer register ignores the bottom 2 bits of the LATCH value.
12
*/
-#define CLOCK_TICK_RATE (66666666)
13
+#define FREQ 66666666
14
+#define CLOCK_TICK_RATE (((FREQ / HZ & ~IXP4XX_OST_RELOAD_MASK) + 1) * HZ)
15
0 commit comments