|
|
| File: [Development] / linux-2.6-xfs / include / asm-arm / arch-ixp4xx / Attic / timex.h (download)
Revision 1.2, Mon Aug 29 15:50:38 2005 UTC (12 years, 1 month ago) by nathans.longdrop.melbourne.sgi.com
Merge up to 2.6.13. Merge of 2.6.x-xfs-melb:linux:23660a by kenmcd. |
/* * linux/include/asm-arm/arch-ixp4xx/timex.h * */ #include <asm/hardware.h> /* * We use IXP425 General purpose timer for our timer needs, it runs at * 66.66... MHz. We do a convulted calculation of CLOCK_TICK_RATE b/c the * timer register ignores the bottom 2 bits of the LATCH value. */ #define FREQ 66666666 #define CLOCK_TICK_RATE (((FREQ / HZ & ~IXP4XX_OST_RELOAD_MASK) + 1) * HZ)