diff options
author | viresh kumar <viresh.kumar@st.com> | 2010-04-01 07:30:49 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-04-14 06:31:59 -0400 |
commit | 986435e3596cbae662b86812e4563fbb6013b994 (patch) | |
tree | 066542754bc3dba9bc5bdffc8d8ba4a7731fa05e /arch/arm/plat-spear | |
parent | bf976b51a32e255523c69022c1f21bf9ad527fc5 (diff) |
ARM: 6013/1: ST SPEAr: Added source files for SPEAr platform
Reviewed-by: Linus Walleij <linux.walleij@stericsson.com>
Signed-off-by: Viresh Kumar <viresh.kumar@st.com>
Signed-off-by: Shiraz Hashim <shiraz.hashim@st.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/plat-spear')
-rw-r--r-- | arch/arm/plat-spear/Kconfig | 31 | ||||
-rw-r--r-- | arch/arm/plat-spear/Makefile | 6 | ||||
-rw-r--r-- | arch/arm/plat-spear/time.c | 292 |
3 files changed, 329 insertions, 0 deletions
diff --git a/arch/arm/plat-spear/Kconfig b/arch/arm/plat-spear/Kconfig new file mode 100644 index 000000000000..1bb3dbce8810 --- /dev/null +++ b/arch/arm/plat-spear/Kconfig | |||
@@ -0,0 +1,31 @@ | |||
1 | # | ||
2 | # SPEAr Platform configuration file | ||
3 | # | ||
4 | |||
5 | if PLAT_SPEAR | ||
6 | |||
7 | choice | ||
8 | prompt "ST SPEAr Family" | ||
9 | default ARCH_SPEAR3XX | ||
10 | |||
11 | config ARCH_SPEAR3XX | ||
12 | bool "SPEAr3XX" | ||
13 | select ARM_VIC | ||
14 | select CPU_ARM926T | ||
15 | help | ||
16 | Supports for ARM's SPEAR3XX family | ||
17 | |||
18 | config ARCH_SPEAR6XX | ||
19 | bool "SPEAr6XX" | ||
20 | select ARM_VIC | ||
21 | select CPU_ARM926T | ||
22 | help | ||
23 | Supports for ARM's SPEAR6XX family | ||
24 | |||
25 | endchoice | ||
26 | |||
27 | # Adding SPEAr machine specific configuration files | ||
28 | source "arch/arm/mach-spear3xx/Kconfig" | ||
29 | source "arch/arm/mach-spear6xx/Kconfig" | ||
30 | |||
31 | endif | ||
diff --git a/arch/arm/plat-spear/Makefile b/arch/arm/plat-spear/Makefile new file mode 100644 index 000000000000..96f9ac3d4b81 --- /dev/null +++ b/arch/arm/plat-spear/Makefile | |||
@@ -0,0 +1,6 @@ | |||
1 | # | ||
2 | # SPEAr Platform specific Makefile | ||
3 | # | ||
4 | |||
5 | # Common support | ||
6 | obj-y := clock.o time.o | ||
diff --git a/arch/arm/plat-spear/time.c b/arch/arm/plat-spear/time.c new file mode 100644 index 000000000000..a1025d38f383 --- /dev/null +++ b/arch/arm/plat-spear/time.c | |||
@@ -0,0 +1,292 @@ | |||
1 | /* | ||
2 | * arch/arm/plat-spear/time.c | ||
3 | * | ||
4 | * Copyright (C) 2009 ST Microelectronics | ||
5 | * Shiraz Hashim<shiraz.hashim@st.com> | ||
6 | * | ||
7 | * This file is licensed under the terms of the GNU General Public | ||
8 | * License version 2. This program is licensed "as is" without any | ||
9 | * warranty of any kind, whether express or implied. | ||
10 | */ | ||
11 | |||
12 | #include <linux/clk.h> | ||
13 | #include <linux/clockchips.h> | ||
14 | #include <linux/clocksource.h> | ||
15 | #include <linux/err.h> | ||
16 | #include <linux/init.h> | ||
17 | #include <linux/interrupt.h> | ||
18 | #include <linux/io.h> | ||
19 | #include <linux/kernel.h> | ||
20 | #include <linux/time.h> | ||
21 | #include <linux/irq.h> | ||
22 | #include <asm/mach/time.h> | ||
23 | #include <mach/irqs.h> | ||
24 | #include <mach/hardware.h> | ||
25 | #include <mach/spear.h> | ||
26 | #include <mach/generic.h> | ||
27 | |||
28 | /* | ||
29 | * We would use TIMER0 and TIMER1 as clockevent and clocksource. | ||
30 | * Timer0 and Timer1 both belong to same gpt block in cpu subbsystem. Further | ||
31 | * they share same functional clock. Any change in one's functional clock will | ||
32 | * also affect other timer. | ||
33 | */ | ||
34 | |||
35 | #define CLKEVT 0 /* gpt0, channel0 as clockevent */ | ||
36 | #define CLKSRC 1 /* gpt0, channel1 as clocksource */ | ||
37 | |||
38 | /* Register offsets, x is channel number */ | ||
39 | #define CR(x) ((x) * 0x80 + 0x80) | ||
40 | #define IR(x) ((x) * 0x80 + 0x84) | ||
41 | #define LOAD(x) ((x) * 0x80 + 0x88) | ||
42 | #define COUNT(x) ((x) * 0x80 + 0x8C) | ||
43 | |||
44 | /* Reg bit definitions */ | ||
45 | #define CTRL_INT_ENABLE 0x0100 | ||
46 | #define CTRL_ENABLE 0x0020 | ||
47 | #define CTRL_ONE_SHOT 0x0010 | ||
48 | |||
49 | #define CTRL_PRESCALER1 0x0 | ||
50 | #define CTRL_PRESCALER2 0x1 | ||
51 | #define CTRL_PRESCALER4 0x2 | ||
52 | #define CTRL_PRESCALER8 0x3 | ||
53 | #define CTRL_PRESCALER16 0x4 | ||
54 | #define CTRL_PRESCALER32 0x5 | ||
55 | #define CTRL_PRESCALER64 0x6 | ||
56 | #define CTRL_PRESCALER128 0x7 | ||
57 | #define CTRL_PRESCALER256 0x8 | ||
58 | |||
59 | #define INT_STATUS 0x1 | ||
60 | |||
61 | static __iomem void *gpt_base; | ||
62 | static struct clk *gpt_clk; | ||
63 | |||
64 | static void clockevent_set_mode(enum clock_event_mode mode, | ||
65 | struct clock_event_device *clk_event_dev); | ||
66 | static int clockevent_next_event(unsigned long evt, | ||
67 | struct clock_event_device *clk_event_dev); | ||
68 | |||
69 | /* | ||
70 | * Following clocksource_set_clock and clockevent_set_clock picked | ||
71 | * from arch/mips/kernel/time.c | ||
72 | */ | ||
73 | |||
74 | void __init clocksource_set_clock(struct clocksource *cs, unsigned int clock) | ||
75 | { | ||
76 | u64 temp; | ||
77 | u32 shift; | ||
78 | |||
79 | /* Find a shift value */ | ||
80 | for (shift = 32; shift > 0; shift--) { | ||
81 | temp = (u64) NSEC_PER_SEC << shift; | ||
82 | do_div(temp, clock); | ||
83 | if ((temp >> 32) == 0) | ||
84 | break; | ||
85 | } | ||
86 | cs->shift = shift; | ||
87 | cs->mult = (u32) temp; | ||
88 | } | ||
89 | |||
90 | void __init clockevent_set_clock(struct clock_event_device *cd, | ||
91 | unsigned int clock) | ||
92 | { | ||
93 | u64 temp; | ||
94 | u32 shift; | ||
95 | |||
96 | /* Find a shift value */ | ||
97 | for (shift = 32; shift > 0; shift--) { | ||
98 | temp = (u64) clock << shift; | ||
99 | do_div(temp, NSEC_PER_SEC); | ||
100 | if ((temp >> 32) == 0) | ||
101 | break; | ||
102 | } | ||
103 | cd->shift = shift; | ||
104 | cd->mult = (u32) temp; | ||
105 | } | ||
106 | |||
107 | static cycle_t clocksource_read_cycles(struct clocksource *cs) | ||
108 | { | ||
109 | return (cycle_t) readw(gpt_base + COUNT(CLKSRC)); | ||
110 | } | ||
111 | |||
112 | static struct clocksource clksrc = { | ||
113 | .name = "tmr1", | ||
114 | .rating = 200, /* its a pretty decent clock */ | ||
115 | .read = clocksource_read_cycles, | ||
116 | .mask = 0xFFFF, /* 16 bits */ | ||
117 | .mult = 0, /* to be computed */ | ||
118 | .shift = 0, /* to be computed */ | ||
119 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, | ||
120 | }; | ||
121 | |||
122 | static void spear_clocksource_init(void) | ||
123 | { | ||
124 | u32 tick_rate; | ||
125 | u16 val; | ||
126 | |||
127 | /* program the prescaler (/256)*/ | ||
128 | writew(CTRL_PRESCALER256, gpt_base + CR(CLKSRC)); | ||
129 | |||
130 | /* find out actual clock driving Timer */ | ||
131 | tick_rate = clk_get_rate(gpt_clk); | ||
132 | tick_rate >>= CTRL_PRESCALER256; | ||
133 | |||
134 | writew(0xFFFF, gpt_base + LOAD(CLKSRC)); | ||
135 | |||
136 | val = readw(gpt_base + CR(CLKSRC)); | ||
137 | val &= ~CTRL_ONE_SHOT; /* autoreload mode */ | ||
138 | val |= CTRL_ENABLE ; | ||
139 | writew(val, gpt_base + CR(CLKSRC)); | ||
140 | |||
141 | clocksource_set_clock(&clksrc, tick_rate); | ||
142 | |||
143 | /* register the clocksource */ | ||
144 | clocksource_register(&clksrc); | ||
145 | } | ||
146 | |||
147 | static struct clock_event_device clkevt = { | ||
148 | .name = "tmr0", | ||
149 | .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT, | ||
150 | .set_mode = clockevent_set_mode, | ||
151 | .set_next_event = clockevent_next_event, | ||
152 | .shift = 0, /* to be computed */ | ||
153 | }; | ||
154 | |||
155 | static void clockevent_set_mode(enum clock_event_mode mode, | ||
156 | struct clock_event_device *clk_event_dev) | ||
157 | { | ||
158 | u32 period; | ||
159 | u16 val; | ||
160 | |||
161 | /* stop the timer */ | ||
162 | val = readw(gpt_base + CR(CLKEVT)); | ||
163 | val &= ~CTRL_ENABLE; | ||
164 | writew(val, gpt_base + CR(CLKEVT)); | ||
165 | |||
166 | switch (mode) { | ||
167 | case CLOCK_EVT_MODE_PERIODIC: | ||
168 | period = clk_get_rate(gpt_clk) / HZ; | ||
169 | period >>= CTRL_PRESCALER16; | ||
170 | writew(period, gpt_base + LOAD(CLKEVT)); | ||
171 | |||
172 | val = readw(gpt_base + CR(CLKEVT)); | ||
173 | val &= ~CTRL_ONE_SHOT; | ||
174 | val |= CTRL_ENABLE | CTRL_INT_ENABLE; | ||
175 | writew(val, gpt_base + CR(CLKEVT)); | ||
176 | |||
177 | break; | ||
178 | case CLOCK_EVT_MODE_ONESHOT: | ||
179 | val = readw(gpt_base + CR(CLKEVT)); | ||
180 | val |= CTRL_ONE_SHOT; | ||
181 | writew(val, gpt_base + CR(CLKEVT)); | ||
182 | |||
183 | break; | ||
184 | case CLOCK_EVT_MODE_UNUSED: | ||
185 | case CLOCK_EVT_MODE_SHUTDOWN: | ||
186 | case CLOCK_EVT_MODE_RESUME: | ||
187 | |||
188 | break; | ||
189 | default: | ||
190 | pr_err("Invalid mode requested\n"); | ||
191 | break; | ||
192 | } | ||
193 | } | ||
194 | |||
195 | static int clockevent_next_event(unsigned long cycles, | ||
196 | struct clock_event_device *clk_event_dev) | ||
197 | { | ||
198 | u16 val; | ||
199 | |||
200 | writew(cycles, gpt_base + LOAD(CLKEVT)); | ||
201 | |||
202 | val = readw(gpt_base + CR(CLKEVT)); | ||
203 | val |= CTRL_ENABLE | CTRL_INT_ENABLE; | ||
204 | writew(val, gpt_base + CR(CLKEVT)); | ||
205 | |||
206 | return 0; | ||
207 | } | ||
208 | |||
209 | static irqreturn_t spear_timer_interrupt(int irq, void *dev_id) | ||
210 | { | ||
211 | struct clock_event_device *evt = &clkevt; | ||
212 | |||
213 | writew(INT_STATUS, gpt_base + IR(CLKEVT)); | ||
214 | |||
215 | evt->event_handler(evt); | ||
216 | |||
217 | return IRQ_HANDLED; | ||
218 | } | ||
219 | |||
220 | static struct irqaction spear_timer_irq = { | ||
221 | .name = "timer", | ||
222 | .flags = IRQF_DISABLED | IRQF_TIMER, | ||
223 | .handler = spear_timer_interrupt | ||
224 | }; | ||
225 | |||
226 | static void __init spear_clockevent_init(void) | ||
227 | { | ||
228 | u32 tick_rate; | ||
229 | |||
230 | /* program the prescaler */ | ||
231 | writew(CTRL_PRESCALER16, gpt_base + CR(CLKEVT)); | ||
232 | |||
233 | tick_rate = clk_get_rate(gpt_clk); | ||
234 | tick_rate >>= CTRL_PRESCALER16; | ||
235 | |||
236 | clockevent_set_clock(&clkevt, tick_rate); | ||
237 | |||
238 | clkevt.max_delta_ns = clockevent_delta2ns(0xfff0, | ||
239 | &clkevt); | ||
240 | clkevt.min_delta_ns = clockevent_delta2ns(3, &clkevt); | ||
241 | |||
242 | clkevt.cpumask = cpumask_of(0); | ||
243 | |||
244 | clockevents_register_device(&clkevt); | ||
245 | |||
246 | setup_irq(SPEAR_GPT0_CHAN0_IRQ, &spear_timer_irq); | ||
247 | } | ||
248 | |||
249 | void __init spear_setup_timer(void) | ||
250 | { | ||
251 | struct clk *pll3_clk; | ||
252 | |||
253 | if (!request_mem_region(SPEAR_GPT0_BASE, SZ_1K, "gpt0")) { | ||
254 | pr_err("%s:cannot get IO addr\n", __func__); | ||
255 | return; | ||
256 | } | ||
257 | |||
258 | gpt_base = (void __iomem *)ioremap(SPEAR_GPT0_BASE, SZ_1K); | ||
259 | if (!gpt_base) { | ||
260 | pr_err("%s:ioremap failed for gpt\n", __func__); | ||
261 | goto err_mem; | ||
262 | } | ||
263 | |||
264 | gpt_clk = clk_get_sys("gpt0", NULL); | ||
265 | if (!gpt_clk) { | ||
266 | pr_err("%s:couldn't get clk for gpt\n", __func__); | ||
267 | goto err_iomap; | ||
268 | } | ||
269 | |||
270 | pll3_clk = clk_get(NULL, "pll3_48m_clk"); | ||
271 | if (!pll3_clk) { | ||
272 | pr_err("%s:couldn't get PLL3 as parent for gpt\n", __func__); | ||
273 | goto err_iomap; | ||
274 | } | ||
275 | |||
276 | clk_set_parent(gpt_clk, pll3_clk); | ||
277 | |||
278 | spear_clockevent_init(); | ||
279 | spear_clocksource_init(); | ||
280 | |||
281 | return; | ||
282 | |||
283 | err_iomap: | ||
284 | iounmap(gpt_base); | ||
285 | |||
286 | err_mem: | ||
287 | release_mem_region(SPEAR_GPT0_BASE, SZ_1K); | ||
288 | } | ||
289 | |||
290 | struct sys_timer spear_sys_timer = { | ||
291 | .init = spear_setup_timer, | ||
292 | }; | ||