diff options
author | Lennert Buytenhek <buytenh@wantstofly.org> | 2008-03-27 14:51:40 -0400 |
---|---|---|
committer | Nicolas Pitre <nico@marvell.com> | 2008-03-27 14:51:40 -0400 |
commit | 2bac1de2031aa4cad88a437d4410ec289da4f7dc (patch) | |
tree | 1f9abbf6f3d428bbdcbfc93337e3e2e28e3d81c9 /arch/arm/mach-orion/common.c | |
parent | abc0197d7a74e51a1581ce9971d7c2c0f2adadaf (diff) | |
download | op-kernel-dev-2bac1de2031aa4cad88a437d4410ec289da4f7dc.zip op-kernel-dev-2bac1de2031aa4cad88a437d4410ec289da4f7dc.tar.gz |
plat-orion: share time handling code
Split off Orion time handling code into plat-orion/.
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Reviewed-by: Tzachi Perelstein <tzachi@marvell.com>
Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Nicolas Pitre <nico@marvell.com>
Diffstat (limited to 'arch/arm/mach-orion/common.c')
-rw-r--r-- | arch/arm/mach-orion/common.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/arm/mach-orion/common.c b/arch/arm/mach-orion/common.c index a32fe8e..86d7f7c 100644 --- a/arch/arm/mach-orion/common.c +++ b/arch/arm/mach-orion/common.c @@ -23,8 +23,11 @@ #include <asm/timex.h> #include <asm/mach/arch.h> #include <asm/mach/map.h> +#include <asm/mach/time.h> #include <asm/arch/hardware.h> +#include <asm/arch/orion.h> #include <asm/arch/platform.h> +#include <asm/plat-orion/time.h> #include "common.h" /***************************************************************************** @@ -296,6 +299,19 @@ void __init orion_sata_init(struct mv_sata_platform_data *sata_data) } /***************************************************************************** + * Time handling + ****************************************************************************/ + +static void orion_timer_init(void) +{ + orion_time_init(IRQ_ORION_BRIDGE, ORION_TCLK); +} + +struct sys_timer orion_timer = { + .init = orion_timer_init, +}; + +/***************************************************************************** * General ****************************************************************************/ |