Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 191822
b: refs/heads/master
c: 5a46334
h: refs/heads/master
v: v3
  • Loading branch information
Russell King committed May 2, 2010
1 parent 83e43f3 commit 3179949
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e606a940cba4083b9c382c17251636856e03346b
refs/heads/master: 5a46334ac688fb538b335599e1ff3b6cfaf769e9
1 change: 1 addition & 0 deletions trunk/arch/arm/mach-integrator/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ config ARCH_INTEGRATOR_AP
config ARCH_INTEGRATOR_CP
bool "Support Integrator/CP platform"
select ARCH_CINTEGRATOR
select ARM_TIMER_SP804
help
Include support for the ARM(R) Integrator CP platform.

Expand Down
14 changes: 12 additions & 2 deletions trunk/arch/arm/mach-integrator/integrator_cp.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#include <asm/irq.h>
#include <asm/setup.h>
#include <asm/mach-types.h>
#include <asm/hardware/arm_timer.h>
#include <asm/hardware/icst.h>

#include <mach/cm.h>
Expand All @@ -40,6 +41,8 @@
#include <asm/mach/map.h>
#include <asm/mach/time.h>

#include <plat/timer-sp.h>

#include "common.h"

#define INTCP_PA_FLASH_BASE 0x24000000
Expand Down Expand Up @@ -569,11 +572,18 @@ static void __init intcp_init(void)
}
}

#define TIMER_CTRL_IE (1 << 5) /* Interrupt Enable */
#define TIMER0_VA_BASE __io_address(INTEGRATOR_TIMER0_BASE)
#define TIMER1_VA_BASE __io_address(INTEGRATOR_TIMER1_BASE)
#define TIMER2_VA_BASE __io_address(INTEGRATOR_TIMER2_BASE)

static void __init intcp_timer_init(void)
{
integrator_time_init(1000, TIMER_CTRL_IE);
writel(0, TIMER0_VA_BASE + TIMER_CTRL);
writel(0, TIMER1_VA_BASE + TIMER_CTRL);
writel(0, TIMER2_VA_BASE + TIMER_CTRL);

sp804_clocksource_init(TIMER2_VA_BASE);
sp804_clockevents_init(TIMER1_VA_BASE, IRQ_TIMERINT1);
}

static struct sys_timer cp_timer = {
Expand Down

0 comments on commit 3179949

Please sign in to comment.