Path: blob/master/arch/arm/mach-at91/at91x40_time.c
10817 views
/*1* arch/arm/mach-at91/at91x40_time.c2*3* (C) Copyright 2007, Greg Ungerer <[email protected]>4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License as published by7* the Free Software Foundation; either version 2 of the License, or8* (at your option) any later version.9*10* This program is distributed in the hope that it will be useful,11* but WITHOUT ANY WARRANTY; without even the implied warranty of12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the13* GNU General Public License for more details.14*15* You should have received a copy of the GNU General Public License16* along with this program; if not, write to the Free Software17* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA18*/1920#include <linux/kernel.h>21#include <linux/init.h>22#include <linux/interrupt.h>23#include <linux/irq.h>24#include <linux/time.h>25#include <linux/io.h>26#include <mach/hardware.h>27#include <asm/mach/time.h>28#include <mach/at91_tc.h>2930/*31* 3 counter/timer units present.32*/33#define AT91_TC_CLK0BASE 034#define AT91_TC_CLK1BASE 0x4035#define AT91_TC_CLK2BASE 0x803637static unsigned long at91x40_gettimeoffset(void)38{39return (at91_sys_read(AT91_TC + AT91_TC_CLK1BASE + AT91_TC_CV) * 1000000 / (AT91X40_MASTER_CLOCK / 128));40}4142static irqreturn_t at91x40_timer_interrupt(int irq, void *dev_id)43{44at91_sys_read(AT91_TC + AT91_TC_CLK1BASE + AT91_TC_SR);45timer_tick();46return IRQ_HANDLED;47}4849static struct irqaction at91x40_timer_irq = {50.name = "at91_tick",51.flags = IRQF_DISABLED | IRQF_TIMER,52.handler = at91x40_timer_interrupt53};5455void __init at91x40_timer_init(void)56{57unsigned int v;5859at91_sys_write(AT91_TC + AT91_TC_BCR, 0);60v = at91_sys_read(AT91_TC + AT91_TC_BMR);61v = (v & ~AT91_TC_TC1XC1S) | AT91_TC_TC1XC1S_NONE;62at91_sys_write(AT91_TC + AT91_TC_BMR, v);6364at91_sys_write(AT91_TC + AT91_TC_CLK1BASE + AT91_TC_CCR, AT91_TC_CLKDIS);65at91_sys_write(AT91_TC + AT91_TC_CLK1BASE + AT91_TC_CMR, (AT91_TC_TIMER_CLOCK4 | AT91_TC_CPCTRG));66at91_sys_write(AT91_TC + AT91_TC_CLK1BASE + AT91_TC_IDR, 0xffffffff);67at91_sys_write(AT91_TC + AT91_TC_CLK1BASE + AT91_TC_RC, (AT91X40_MASTER_CLOCK / 128) / HZ - 1);68at91_sys_write(AT91_TC + AT91_TC_CLK1BASE + AT91_TC_IER, (1<<4));6970setup_irq(AT91X40_ID_TC1, &at91x40_timer_irq);7172at91_sys_write(AT91_TC + AT91_TC_CLK1BASE + AT91_TC_CCR, (AT91_TC_SWTRG | AT91_TC_CLKEN));73}7475struct sys_timer at91x40_timer = {76.init = at91x40_timer_init,77.offset = at91x40_gettimeoffset,78};79808182