blob: f99d3ec17a459237a05dd76253ed7ef26d5bbca9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Manuel Lauss78814462009-10-07 20:15:15 +02002 * Copyright (C) 2008-2009 Manuel Lauss <manuel.lauss@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Manuel Lauss0c694de2008-12-21 09:26:23 +01004 * Previous incarnations were:
Sergei Shtylyov01675092008-03-24 23:15:50 +03005 * Copyright (C) 2001, 2006, 2008 MontaVista Software, <source@mvista.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copied and modified Carsten Langgaard's time.c
7 *
8 * Carsten Langgaard, carstenl@mips.com
9 * Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved.
10 *
11 * ########################################################################
12 *
13 * This program is free software; you can distribute it and/or modify it
14 * under the terms of the GNU General Public License (Version 2) as
15 * published by the Free Software Foundation.
16 *
17 * This program is distributed in the hope it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * for more details.
21 *
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
25 *
26 * ########################################################################
27 *
Manuel Lauss0c694de2008-12-21 09:26:23 +010028 * Clocksource/event using the 32.768kHz-clocked Counter1 ('RTC' in the
29 * databooks). Firmware/Board init code must enable the counters in the
30 * counter control register, otherwise the CP0 counter clocksource/event
31 * will be installed instead (and use of 'wait' instruction is prohibited).
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 */
33
Manuel Lauss0c694de2008-12-21 09:26:23 +010034#include <linux/clockchips.h>
35#include <linux/clocksource.h>
36#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Ralf Baechlebdc92d742013-05-21 16:59:19 +020039#include <asm/idle.h>
Manuel Lauss2882b0c2009-08-22 18:09:27 +020040#include <asm/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/time.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/mach-au1x00/au1000.h>
43
Manuel Lauss0c694de2008-12-21 09:26:23 +010044/* 32kHz clock enabled and detected */
45#define CNTR_OK (SYS_CNTRL_E0 | SYS_CNTRL_32S)
46
Manuel Laussad058e92009-04-22 08:01:48 +020047static cycle_t au1x_counter1_read(struct clocksource *cs)
Manuel Lauss0c694de2008-12-21 09:26:23 +010048{
Manuel Lauss1d09de72014-07-23 16:36:24 +020049 return alchemy_rdsys(AU1000_SYS_RTCREAD);
Manuel Lauss0c694de2008-12-21 09:26:23 +010050}
51
52static struct clocksource au1x_counter1_clocksource = {
53 .name = "alchemy-counter1",
54 .read = au1x_counter1_read,
55 .mask = CLOCKSOURCE_MASK(32),
56 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Manuel Lauss8e0d7372012-12-17 06:14:08 +000057 .rating = 1500,
Manuel Lauss0c694de2008-12-21 09:26:23 +010058};
59
60static int au1x_rtcmatch2_set_next_event(unsigned long delta,
61 struct clock_event_device *cd)
62{
Manuel Lauss1d09de72014-07-23 16:36:24 +020063 delta += alchemy_rdsys(AU1000_SYS_RTCREAD);
Manuel Lauss0c694de2008-12-21 09:26:23 +010064 /* wait for register access */
Manuel Lauss1d09de72014-07-23 16:36:24 +020065 while (alchemy_rdsys(AU1000_SYS_CNTRCTRL) & SYS_CNTRL_M21)
Manuel Lauss0c694de2008-12-21 09:26:23 +010066 ;
Manuel Lauss1d09de72014-07-23 16:36:24 +020067 alchemy_wrsys(delta, AU1000_SYS_RTCMATCH2);
Manuel Lauss0c694de2008-12-21 09:26:23 +010068
69 return 0;
70}
71
Manuel Lauss0c694de2008-12-21 09:26:23 +010072static irqreturn_t au1x_rtcmatch2_irq(int irq, void *dev_id)
73{
74 struct clock_event_device *cd = dev_id;
75 cd->event_handler(cd);
76 return IRQ_HANDLED;
77}
78
79static struct clock_event_device au1x_rtcmatch2_clockdev = {
80 .name = "rtcmatch2",
81 .features = CLOCK_EVT_FEAT_ONESHOT,
Manuel Lauss8e0d7372012-12-17 06:14:08 +000082 .rating = 1500,
Ralf Baechle70342282013-01-22 12:59:30 +010083 .set_next_event = au1x_rtcmatch2_set_next_event,
Rusty Russell51c870a2009-09-24 09:34:35 -060084 .cpumask = cpu_all_mask,
Manuel Lauss0c694de2008-12-21 09:26:23 +010085};
86
87static struct irqaction au1x_rtcmatch2_irqaction = {
88 .handler = au1x_rtcmatch2_irq,
Yong Zhang8b5690f2011-11-22 14:38:03 +000089 .flags = IRQF_TIMER,
Manuel Lauss0c694de2008-12-21 09:26:23 +010090 .name = "timer",
91 .dev_id = &au1x_rtcmatch2_clockdev,
92};
93
Manuel Lauss78814462009-10-07 20:15:15 +020094static int __init alchemy_time_init(unsigned int m2int)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Manuel Lauss0c694de2008-12-21 09:26:23 +010096 struct clock_event_device *cd = &au1x_rtcmatch2_clockdev;
97 unsigned long t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Manuel Lauss78814462009-10-07 20:15:15 +020099 au1x_rtcmatch2_clockdev.irq = m2int;
100
Manuel Lauss0c694de2008-12-21 09:26:23 +0100101 /* Check if firmware (YAMON, ...) has enabled 32kHz and clock
102 * has been detected. If so install the rtcmatch2 clocksource,
103 * otherwise don't bother. Note that both bits being set is by
104 * no means a definite guarantee that the counters actually work
105 * (the 32S bit seems to be stuck set to 1 once a single clock-
106 * edge is detected, hence the timeouts).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 */
Manuel Lauss1d09de72014-07-23 16:36:24 +0200108 if (CNTR_OK != (alchemy_rdsys(AU1000_SYS_CNTRCTRL) & CNTR_OK))
Manuel Lauss0c694de2008-12-21 09:26:23 +0100109 goto cntr_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Manuel Lauss0c694de2008-12-21 09:26:23 +0100111 /*
112 * setup counter 1 (RTC) to tick at full speed
113 */
114 t = 0xffffff;
Manuel Lauss1d09de72014-07-23 16:36:24 +0200115 while ((alchemy_rdsys(AU1000_SYS_CNTRCTRL) & SYS_CNTRL_T1S) && --t)
Manuel Lauss0c694de2008-12-21 09:26:23 +0100116 asm volatile ("nop");
117 if (!t)
118 goto cntr_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Manuel Lauss1d09de72014-07-23 16:36:24 +0200120 alchemy_wrsys(0, AU1000_SYS_RTCTRIM); /* 32.768 kHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Manuel Lauss0c694de2008-12-21 09:26:23 +0100122 t = 0xffffff;
Manuel Lauss1d09de72014-07-23 16:36:24 +0200123 while ((alchemy_rdsys(AU1000_SYS_CNTRCTRL) & SYS_CNTRL_C1S) && --t)
Manuel Lauss0c694de2008-12-21 09:26:23 +0100124 asm volatile ("nop");
125 if (!t)
126 goto cntr_err;
Manuel Lauss1d09de72014-07-23 16:36:24 +0200127 alchemy_wrsys(0, AU1000_SYS_RTCWRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Manuel Lauss0c694de2008-12-21 09:26:23 +0100129 t = 0xffffff;
Manuel Lauss1d09de72014-07-23 16:36:24 +0200130 while ((alchemy_rdsys(AU1000_SYS_CNTRCTRL) & SYS_CNTRL_C1S) && --t)
Manuel Lauss0c694de2008-12-21 09:26:23 +0100131 asm volatile ("nop");
132 if (!t)
133 goto cntr_err;
134
135 /* register counter1 clocksource and event device */
John Stultz75c4fd82010-04-26 20:23:11 -0700136 clocksource_register_hz(&au1x_counter1_clocksource, 32768);
Manuel Lauss0c694de2008-12-21 09:26:23 +0100137
138 cd->shift = 32;
139 cd->mult = div_sc(32768, NSEC_PER_SEC, cd->shift);
140 cd->max_delta_ns = clockevent_delta2ns(0xffffffff, cd);
Manuel Lauss8e365792011-12-20 17:37:29 +0100141 cd->min_delta_ns = clockevent_delta2ns(9, cd); /* ~0.28ms */
Manuel Lauss0c694de2008-12-21 09:26:23 +0100142 clockevents_register_device(cd);
Manuel Lauss78814462009-10-07 20:15:15 +0200143 setup_irq(m2int, &au1x_rtcmatch2_irqaction);
Manuel Lauss0c694de2008-12-21 09:26:23 +0100144
145 printk(KERN_INFO "Alchemy clocksource installed\n");
146
Manuel Lauss78814462009-10-07 20:15:15 +0200147 return 0;
Manuel Lauss0c694de2008-12-21 09:26:23 +0100148
149cntr_err:
Manuel Lauss78814462009-10-07 20:15:15 +0200150 return -1;
151}
152
Manuel Lauss78814462009-10-07 20:15:15 +0200153static int alchemy_m2inttab[] __initdata = {
154 AU1000_RTC_MATCH2_INT,
155 AU1500_RTC_MATCH2_INT,
156 AU1100_RTC_MATCH2_INT,
157 AU1550_RTC_MATCH2_INT,
158 AU1200_RTC_MATCH2_INT,
Manuel Lauss809f36c2011-11-01 20:03:30 +0100159 AU1300_RTC_MATCH2_INT,
Manuel Lauss78814462009-10-07 20:15:15 +0200160};
161
162void __init plat_time_init(void)
163{
164 int t;
165
166 t = alchemy_get_cputype();
Manuel Lauss8e0d7372012-12-17 06:14:08 +0000167 if (t == ALCHEMY_CPU_UNKNOWN ||
168 alchemy_time_init(alchemy_m2inttab[t]))
169 cpu_wait = NULL; /* wait doesn't work with r4k timer */
Manuel Lauss78814462009-10-07 20:15:15 +0200170}