Release 4.10 arch/arm/mach-footbridge/isa-timer.c
/*
* linux/arch/arm/mach-footbridge/isa-timer.c
*
* Copyright (C) 1998 Russell King.
* Copyright (C) 1998 Phil Blundell
*/
#include <linux/clockchips.h>
#include <linux/i8253.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/spinlock.h>
#include <linux/timex.h>
#include <asm/irq.h>
#include <asm/mach/time.h>
#include "common.h"
static irqreturn_t pit_timer_interrupt(int irq, void *dev_id)
{
struct clock_event_device *ce = dev_id;
ce->event_handler(ce);
return IRQ_HANDLED;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
russell king | russell king | 30 | 100.00% | 2 | 100.00% |
| Total | 30 | 100.00% | 2 | 100.00% |
static struct irqaction pit_timer_irq = {
.name = "pit",
.handler = pit_timer_interrupt,
.flags = IRQF_TIMER | IRQF_IRQPOLL,
.dev_id = &i8253_clockevent,
};
void __init isa_timer_init(void)
{
clocksource_i8253_init();
setup_irq(i8253_clockevent.irq, &pit_timer_irq);
clockevent_i8253_init(false);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
russell king | russell king | 23 | 88.46% | 3 | 75.00% |
thomas gleixner | thomas gleixner | 3 | 11.54% | 1 | 25.00% |
| Total | 26 | 100.00% | 4 | 100.00% |
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
russell king | russell king | 104 | 88.89% | 3 | 37.50% |
thomas gleixner | thomas gleixner | 8 | 6.84% | 3 | 37.50% |
ralf baechle | ralf baechle | 3 | 2.56% | 1 | 12.50% |
bernhard walle | bernhard walle | 2 | 1.71% | 1 | 12.50% |
| Total | 117 | 100.00% | 8 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.