2 * linux/arch/arm/mach-clps711x/core.c
4 * Core support for the CLPS711x-based machines.
6 * Copyright (C) 2001,2011 Deep Blue Solutions Ltd
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/kernel.h>
24 #include <linux/init.h>
25 #include <linux/interrupt.h>
27 #include <linux/irq.h>
28 #include <linux/sched.h>
29 #include <linux/timex.h>
31 #include <asm/sizes.h>
32 #include <mach/hardware.h>
35 #include <asm/pgtable.h>
37 #include <asm/mach/map.h>
38 #include <asm/mach/time.h>
39 #include <asm/hardware/clps7111.h>
42 * This maps the generic CLPS711x registers
44 static struct map_desc clps711x_io_desc
[] __initdata
= {
46 .virtual = CLPS7111_VIRT_BASE
,
47 .pfn
= __phys_to_pfn(CLPS7111_PHYS_BASE
),
53 void __init
clps711x_map_io(void)
55 iotable_init(clps711x_io_desc
, ARRAY_SIZE(clps711x_io_desc
));
58 static void int1_mask(struct irq_data
*d
)
62 intmr1
= clps_readl(INTMR1
);
63 intmr1
&= ~(1 << d
->irq
);
64 clps_writel(intmr1
, INTMR1
);
67 static void int1_ack(struct irq_data
*d
)
71 intmr1
= clps_readl(INTMR1
);
72 intmr1
&= ~(1 << d
->irq
);
73 clps_writel(intmr1
, INTMR1
);
76 case IRQ_CSINT
: clps_writel(0, COEOI
); break;
77 case IRQ_TC1OI
: clps_writel(0, TC1EOI
); break;
78 case IRQ_TC2OI
: clps_writel(0, TC2EOI
); break;
79 case IRQ_RTCMI
: clps_writel(0, RTCEOI
); break;
80 case IRQ_TINT
: clps_writel(0, TEOI
); break;
81 case IRQ_UMSINT
: clps_writel(0, UMSEOI
); break;
85 static void int1_unmask(struct irq_data
*d
)
89 intmr1
= clps_readl(INTMR1
);
90 intmr1
|= 1 << d
->irq
;
91 clps_writel(intmr1
, INTMR1
);
94 static struct irq_chip int1_chip
= {
96 .irq_mask
= int1_mask
,
97 .irq_unmask
= int1_unmask
,
100 static void int2_mask(struct irq_data
*d
)
104 intmr2
= clps_readl(INTMR2
);
105 intmr2
&= ~(1 << (d
->irq
- 16));
106 clps_writel(intmr2
, INTMR2
);
109 static void int2_ack(struct irq_data
*d
)
113 intmr2
= clps_readl(INTMR2
);
114 intmr2
&= ~(1 << (d
->irq
- 16));
115 clps_writel(intmr2
, INTMR2
);
118 case IRQ_KBDINT
: clps_writel(0, KBDEOI
); break;
122 static void int2_unmask(struct irq_data
*d
)
126 intmr2
= clps_readl(INTMR2
);
127 intmr2
|= 1 << (d
->irq
- 16);
128 clps_writel(intmr2
, INTMR2
);
131 static struct irq_chip int2_chip
= {
133 .irq_mask
= int2_mask
,
134 .irq_unmask
= int2_unmask
,
137 void __init
clps711x_init_irq(void)
141 for (i
= 0; i
< NR_IRQS
; i
++) {
142 if (INT1_IRQS
& (1 << i
)) {
143 irq_set_chip_and_handler(i
, &int1_chip
,
145 set_irq_flags(i
, IRQF_VALID
| IRQF_PROBE
);
147 if (INT2_IRQS
& (1 << i
)) {
148 irq_set_chip_and_handler(i
, &int2_chip
,
150 set_irq_flags(i
, IRQF_VALID
| IRQF_PROBE
);
157 clps_writel(0, INTMR1
);
158 clps_writel(0, INTMR2
);
161 * Clear down any pending interrupts
163 clps_writel(0, COEOI
);
164 clps_writel(0, TC1EOI
);
165 clps_writel(0, TC2EOI
);
166 clps_writel(0, RTCEOI
);
167 clps_writel(0, TEOI
);
168 clps_writel(0, UMSEOI
);
169 clps_writel(0, SYNCIO
);
170 clps_writel(0, KBDEOI
);
174 * gettimeoffset() returns time since last timer tick, in usecs.
176 * 'LATCH' is hwclock ticks (see CLOCK_TICK_RATE in timex.h) per jiffy.
177 * 'tick' is usecs per jiffy.
179 static unsigned long clps711x_gettimeoffset(void)
181 unsigned long hwticks
;
182 hwticks
= LATCH
- (clps_readl(TC2D
) & 0xffff); /* since last underflow */
183 return (hwticks
* (tick_nsec
/ 1000)) / LATCH
;
187 * IRQ handler for the timer
189 static irqreturn_t
p720t_timer_interrupt(int irq
, void *dev_id
)
195 static struct irqaction clps711x_timer_irq
= {
196 .name
= "CLPS711x Timer Tick",
197 .flags
= IRQF_DISABLED
| IRQF_TIMER
| IRQF_IRQPOLL
,
198 .handler
= p720t_timer_interrupt
,
201 static void __init
clps711x_timer_init(void)
206 syscon
= clps_readl(SYSCON1
);
207 syscon
|= SYSCON1_TC2S
| SYSCON1_TC2M
;
208 clps_writel(syscon
, SYSCON1
);
210 clps_writel(LATCH
-1, TC2D
); /* 512kHz / 100Hz - 1 */
212 setup_irq(IRQ_TC2OI
, &clps711x_timer_irq
);
215 tv
.tv_sec
= clps_readl(RTCDR
);
216 do_settimeofday(&tv
);
219 struct sys_timer clps711x_timer
= {
220 .init
= clps711x_timer_init
,
221 .offset
= clps711x_gettimeoffset
,
224 void clps711x_restart(char mode
, const char *cmd
)