📄 iop321-time.c
字号:
/* * arch/arm/mach-iop3xx/iop321-time.c * * Timer code for IOP321 based systems * * Author: Deepak Saxena <dsaxena@mvista.com> * * Copyright 2002 MontaVista Software Inc. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. */#include <linux/kernel.h>#include <linux/interrupt.h>#include <linux/time.h>#include <linux/init.h>#include <linux/timex.h>#include <asm/hardware.h>#include <asm/io.h>#include <asm/irq.h>#include <asm/uaccess.h>#include <asm/mach/irq.h>#include <asm/mach/time.h>static unsigned long iop321_gettimeoffset(void){ unsigned long elapsed, usec; /* * FIXME: Implement what is described in this comment. * * If an interrupt was pending before we read the timer, * we've already wrapped. Factor this into the time. * If an interrupt was pending after we read the timer, * it may have wrapped between checking the interrupt * status and reading the timer. Re-read the timer to * be sure its value is after the wrap. */ elapsed = *IOP321_TU_TCR0; /* * Now convert them to usec. */ usec = (unsigned long)((LATCH - elapsed) * (tick_nsec / 1000)) / LATCH; return usec;}static irqreturn_tiop321_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs){ u32 tisr; asm volatile("mrc p6, 0, %0, c6, c1, 0" : "=r" (tisr)); tisr |= 1; asm volatile("mcr p6, 0, %0, c6, c1, 0" : : "r" (tisr)); timer_tick(regs); return IRQ_HANDLED;}static struct irqaction iop321_timer_irq = { .name = "IOP321 Timer Tick", .handler = iop321_timer_interrupt, .flags = SA_INTERRUPT};extern int setup_arm_irq(int, struct irqaction*);void __init iop321_init_time(void){ u32 timer_ctl; u32 latch = LATCH; gettimeoffset = iop321_gettimeoffset; setup_irq(IRQ_IOP321_TIMER0, &iop321_timer_irq); timer_ctl = IOP321_TMR_EN | IOP321_TMR_PRIVILEGED | IOP321_TMR_RELOAD | IOP321_TMR_RATIO_1_1; asm volatile("mcr p6, 0, %0, c4, c1, 0" : : "r" (LATCH)); asm volatile("mcr p6, 0, %0, c0, c1, 0" : : "r" (timer_ctl));}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -