blob: c0e637adf65d2555adddaa1897730fc4021d04d7 [file] [log] [blame]
Greg Ungerer699a7142007-07-30 02:38:47 +01001/*
2 * arch/arm/mach-at91/at91x40_time.c
3 *
4 * (C) Copyright 2007, Greg Ungerer <gerg@snapgear.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#include <linux/kernel.h>
22#include <linux/init.h>
23#include <linux/interrupt.h>
24#include <linux/irq.h>
25#include <linux/time.h>
Russell Kingfced80c2008-09-06 12:10:45 +010026#include <linux/io.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010027#include <mach/hardware.h>
Greg Ungerer699a7142007-07-30 02:38:47 +010028#include <asm/mach/time.h>
Jean-Christophe PLAGNIOL-VILLARDd6ca4362012-10-30 06:45:13 +080029
30#include "at91_tc.h"
Greg Ungerer699a7142007-07-30 02:38:47 +010031
Jean-Christophe PLAGNIOL-VILLARDfac36a52012-02-05 20:35:39 +080032#define at91_tc_read(field) \
Arnd Bergmanndca4ba42012-09-14 20:10:19 +000033 __raw_readl(AT91_IO_P2V(AT91_TC) + field)
Jean-Christophe PLAGNIOL-VILLARDfac36a52012-02-05 20:35:39 +080034
35#define at91_tc_write(field, value) \
Johan Hovold3aa630b2013-04-07 16:49:59 +020036 __raw_writel(value, AT91_IO_P2V(AT91_TC) + field)
Jean-Christophe PLAGNIOL-VILLARDfac36a52012-02-05 20:35:39 +080037
Greg Ungerer699a7142007-07-30 02:38:47 +010038/*
39 * 3 counter/timer units present.
40 */
41#define AT91_TC_CLK0BASE 0
42#define AT91_TC_CLK1BASE 0x40
43#define AT91_TC_CLK2BASE 0x80
44
Stephen Warren23c197b2012-11-08 11:51:58 -070045static u32 at91x40_gettimeoffset(void)
Greg Ungerer699a7142007-07-30 02:38:47 +010046{
Stephen Warren23c197b2012-11-08 11:51:58 -070047 return (at91_tc_read(AT91_TC_CLK1BASE + AT91_TC_CV) * 1000000 /
48 (AT91X40_MASTER_CLOCK / 128)) * 1000;
Greg Ungerer699a7142007-07-30 02:38:47 +010049}
50
51static irqreturn_t at91x40_timer_interrupt(int irq, void *dev_id)
52{
Jean-Christophe PLAGNIOL-VILLARDfac36a52012-02-05 20:35:39 +080053 at91_tc_read(AT91_TC_CLK1BASE + AT91_TC_SR);
Greg Ungerer699a7142007-07-30 02:38:47 +010054 timer_tick();
55 return IRQ_HANDLED;
56}
57
58static struct irqaction at91x40_timer_irq = {
59 .name = "at91_tick",
Michael Opdenacker9ceb3892013-09-04 06:54:39 +020060 .flags = IRQF_TIMER,
Greg Ungerer699a7142007-07-30 02:38:47 +010061 .handler = at91x40_timer_interrupt
62};
63
64void __init at91x40_timer_init(void)
65{
66 unsigned int v;
67
Stephen Warren23c197b2012-11-08 11:51:58 -070068 arch_gettimeoffset = at91x40_gettimeoffset;
69
Jean-Christophe PLAGNIOL-VILLARDfac36a52012-02-05 20:35:39 +080070 at91_tc_write(AT91_TC_BCR, 0);
71 v = at91_tc_read(AT91_TC_BMR);
Greg Ungerer699a7142007-07-30 02:38:47 +010072 v = (v & ~AT91_TC_TC1XC1S) | AT91_TC_TC1XC1S_NONE;
Jean-Christophe PLAGNIOL-VILLARDfac36a52012-02-05 20:35:39 +080073 at91_tc_write(AT91_TC_BMR, v);
Greg Ungerer699a7142007-07-30 02:38:47 +010074
Jean-Christophe PLAGNIOL-VILLARDfac36a52012-02-05 20:35:39 +080075 at91_tc_write(AT91_TC_CLK1BASE + AT91_TC_CCR, AT91_TC_CLKDIS);
76 at91_tc_write(AT91_TC_CLK1BASE + AT91_TC_CMR, (AT91_TC_TIMER_CLOCK4 | AT91_TC_CPCTRG));
77 at91_tc_write(AT91_TC_CLK1BASE + AT91_TC_IDR, 0xffffffff);
78 at91_tc_write(AT91_TC_CLK1BASE + AT91_TC_RC, (AT91X40_MASTER_CLOCK / 128) / HZ - 1);
79 at91_tc_write(AT91_TC_CLK1BASE + AT91_TC_IER, (1<<4));
Greg Ungerer699a7142007-07-30 02:38:47 +010080
81 setup_irq(AT91X40_ID_TC1, &at91x40_timer_irq);
82
Jean-Christophe PLAGNIOL-VILLARDfac36a52012-02-05 20:35:39 +080083 at91_tc_write(AT91_TC_CLK1BASE + AT91_TC_CCR, (AT91_TC_SWTRG | AT91_TC_CLKEN));
Greg Ungerer699a7142007-07-30 02:38:47 +010084}