aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-footbridge
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2011-07-22 19:51:56 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2011-07-22 19:51:56 -0400
commita99a7d1436f9375662f35ccac8f1a1e1b0302a11 (patch)
tree0b3f411f6b1c4256063cf1d53773110f5a5f7482 /arch/arm/mach-footbridge
parentbdc7ccfc0631797636837b10df7f87bc1e2e4ae3 (diff)
parentded7c1ee9799fe0ca725b459f151402e3ca4d12b (diff)
Merge branch 'timers-cleanup-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'timers-cleanup-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip: mips: Fix i8253 clockevent fallout i8253: Cleanup outb/inb magic arm: Footbridge: Use common i8253 clockevent mips: Use common i8253 clockevent x86: Use common i8253 clockevent i8253: Create common clockevent implementation i8253: Export i8253_lock unconditionally pcpskr: MIPS: Make config dependencies finer grained pcspkr: Cleanup Kconfig dependencies i8253: Move remaining content and delete asm/i8253.h i8253: Consolidate definitions of PIT_LATCH x86: i8253: Consolidate definitions of global_clock_event i8253: Alpha, PowerPC: Remove unused asm/8253pit.h alpha: i8253: Cleanup remaining users of i8253pit.h i8253: Remove I8253_LOCK config i8253: Make pcsp sound driver use the shared i8253_lock i8253: Make pcspkr input driver use the shared i8253_lock i8253: Consolidate all kernel definitions of i8253_lock i8253: Unify all kernel declarations of i8253_lock i8253: Create linux/i8253.h and use it in all 8253 related files
Diffstat (limited to 'arch/arm/mach-footbridge')
-rw-r--r--arch/arm/mach-footbridge/Kconfig1
-rw-r--r--arch/arm/mach-footbridge/isa-timer.c59
2 files changed, 5 insertions, 55 deletions
diff --git a/arch/arm/mach-footbridge/Kconfig b/arch/arm/mach-footbridge/Kconfig
index 46adca068f2..dc26fff22cf 100644
--- a/arch/arm/mach-footbridge/Kconfig
+++ b/arch/arm/mach-footbridge/Kconfig
@@ -5,6 +5,7 @@ menu "Footbridge Implementations"
5config ARCH_CATS 5config ARCH_CATS
6 bool "CATS" 6 bool "CATS"
7 select CLKSRC_I8253 7 select CLKSRC_I8253
8 select CLKEVT_I8253
8 select FOOTBRIDGE_HOST 9 select FOOTBRIDGE_HOST
9 select ISA 10 select ISA
10 select ISA_DMA 11 select ISA_DMA
diff --git a/arch/arm/mach-footbridge/isa-timer.c b/arch/arm/mach-footbridge/isa-timer.c
index 7020f1a3fec..c40bb415f4b 100644
--- a/arch/arm/mach-footbridge/isa-timer.c
+++ b/arch/arm/mach-footbridge/isa-timer.c
@@ -5,64 +5,18 @@
5 * Copyright (C) 1998 Phil Blundell 5 * Copyright (C) 1998 Phil Blundell
6 */ 6 */
7#include <linux/clockchips.h> 7#include <linux/clockchips.h>
8#include <linux/clocksource.h> 8#include <linux/i8253.h>
9#include <linux/init.h> 9#include <linux/init.h>
10#include <linux/interrupt.h> 10#include <linux/interrupt.h>
11#include <linux/irq.h> 11#include <linux/irq.h>
12#include <linux/io.h>
13#include <linux/spinlock.h> 12#include <linux/spinlock.h>
14#include <linux/timex.h> 13#include <linux/timex.h>
15 14
16#include <asm/irq.h> 15#include <asm/irq.h>
17#include <asm/i8253.h>
18#include <asm/mach/time.h> 16#include <asm/mach/time.h>
19 17
20#include "common.h" 18#include "common.h"
21 19
22DEFINE_RAW_SPINLOCK(i8253_lock);
23
24static void pit_set_mode(enum clock_event_mode mode,
25 struct clock_event_device *evt)
26{
27 unsigned long flags;
28
29 raw_local_irq_save(flags);
30
31 switch (mode) {
32 case CLOCK_EVT_MODE_PERIODIC:
33 outb_p(0x34, PIT_MODE);
34 outb_p(PIT_LATCH & 0xff, PIT_CH0);
35 outb_p(PIT_LATCH >> 8, PIT_CH0);
36 break;
37
38 case CLOCK_EVT_MODE_SHUTDOWN:
39 case CLOCK_EVT_MODE_UNUSED:
40 outb_p(0x30, PIT_MODE);
41 outb_p(0, PIT_CH0);
42 outb_p(0, PIT_CH0);
43 break;
44
45 case CLOCK_EVT_MODE_ONESHOT:
46 case CLOCK_EVT_MODE_RESUME:
47 break;
48 }
49 local_irq_restore(flags);
50}
51
52static int pit_set_next_event(unsigned long delta,
53 struct clock_event_device *evt)
54{
55 return 0;
56}
57
58static struct clock_event_device pit_ce = {
59 .name = "pit",
60 .features = CLOCK_EVT_FEAT_PERIODIC,
61 .set_mode = pit_set_mode,
62 .set_next_event = pit_set_next_event,
63 .shift = 32,
64};
65
66static irqreturn_t pit_timer_interrupt(int irq, void *dev_id) 20static irqreturn_t pit_timer_interrupt(int irq, void *dev_id)
67{ 21{
68 struct clock_event_device *ce = dev_id; 22 struct clock_event_device *ce = dev_id;
@@ -74,20 +28,15 @@ static struct irqaction pit_timer_irq = {
74 .name = "pit", 28 .name = "pit",
75 .handler = pit_timer_interrupt, 29 .handler = pit_timer_interrupt,
76 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, 30 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
77 .dev_id = &pit_ce, 31 .dev_id = &i8253_clockevent,
78}; 32};
79 33
80static void __init isa_timer_init(void) 34static void __init isa_timer_init(void)
81{ 35{
82 pit_ce.cpumask = cpumask_of(smp_processor_id());
83 pit_ce.mult = div_sc(PIT_TICK_RATE, NSEC_PER_SEC, pit_ce.shift);
84 pit_ce.max_delta_ns = clockevent_delta2ns(0x7fff, &pit_ce);
85 pit_ce.min_delta_ns = clockevent_delta2ns(0x000f, &pit_ce);
86
87 clocksource_i8253_init(); 36 clocksource_i8253_init();
88 37
89 setup_irq(pit_ce.irq, &pit_timer_irq); 38 setup_irq(i8253_clockevent.irq, &pit_timer_irq);
90 clockevents_register_device(&pit_ce); 39 clockevent_i8253_init(false);
91} 40}
92 41
93struct sys_timer isa_timer = { 42struct sys_timer isa_timer = {