diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-22 10:38:37 -0500 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-22 10:38:37 -0500 |
commit | fcc9d2e5a6c89d22b8b773a64fb4ad21ac318446 (patch) | |
tree | a57612d1888735a2ec7972891b68c1ac5ec8faea /arch/arm/mach-spear3xx | |
parent | 8dea78da5cee153b8af9c07a2745f6c55057fe12 (diff) |
Diffstat (limited to 'arch/arm/mach-spear3xx')
-rw-r--r-- | arch/arm/mach-spear3xx/clock.c | 759 | ||||
-rw-r--r-- | arch/arm/mach-spear3xx/include/mach/entry-macro.S | 45 | ||||
-rw-r--r-- | arch/arm/mach-spear3xx/include/mach/gpio.h | 19 | ||||
-rw-r--r-- | arch/arm/mach-spear3xx/include/mach/io.h | 19 | ||||
-rw-r--r-- | arch/arm/mach-spear3xx/include/mach/memory.h | 19 | ||||
-rw-r--r-- | arch/arm/mach-spear3xx/include/mach/spear300.h | 54 | ||||
-rw-r--r-- | arch/arm/mach-spear3xx/include/mach/spear310.h | 58 | ||||
-rw-r--r-- | arch/arm/mach-spear3xx/include/mach/spear320.h | 67 | ||||
-rw-r--r-- | arch/arm/mach-spear3xx/include/mach/system.h | 19 | ||||
-rw-r--r-- | arch/arm/mach-spear3xx/include/mach/vmalloc.h | 19 | ||||
-rw-r--r-- | arch/arm/mach-spear3xx/spear300_evb.c | 72 | ||||
-rw-r--r-- | arch/arm/mach-spear3xx/spear310_evb.c | 78 | ||||
-rw-r--r-- | arch/arm/mach-spear3xx/spear320_evb.c | 76 |
13 files changed, 1304 insertions, 0 deletions
diff --git a/arch/arm/mach-spear3xx/clock.c b/arch/arm/mach-spear3xx/clock.c new file mode 100644 index 00000000000..f67860cd649 --- /dev/null +++ b/arch/arm/mach-spear3xx/clock.c | |||
@@ -0,0 +1,759 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-spear3xx/clock.c | ||
3 | * | ||
4 | * SPEAr3xx machines clock framework source file | ||
5 | * | ||
6 | * Copyright (C) 2009 ST Microelectronics | ||
7 | * Viresh Kumar<viresh.kumar@st.com> | ||
8 | * | ||
9 | * This file is licensed under the terms of the GNU General Public | ||
10 | * License version 2. This program is licensed "as is" without any | ||
11 | * warranty of any kind, whether express or implied. | ||
12 | */ | ||
13 | |||
14 | #include <linux/init.h> | ||
15 | #include <linux/kernel.h> | ||
16 | #include <asm/mach-types.h> | ||
17 | #include <plat/clock.h> | ||
18 | #include <mach/misc_regs.h> | ||
19 | |||
20 | /* root clks */ | ||
21 | /* 32 KHz oscillator clock */ | ||
22 | static struct clk osc_32k_clk = { | ||
23 | .flags = ALWAYS_ENABLED, | ||
24 | .rate = 32000, | ||
25 | }; | ||
26 | |||
27 | /* 24 MHz oscillator clock */ | ||
28 | static struct clk osc_24m_clk = { | ||
29 | .flags = ALWAYS_ENABLED, | ||
30 | .rate = 24000000, | ||
31 | }; | ||
32 | |||
33 | /* clock derived from 32 KHz osc clk */ | ||
34 | /* rtc clock */ | ||
35 | static struct clk rtc_clk = { | ||
36 | .pclk = &osc_32k_clk, | ||
37 | .en_reg = PERIP1_CLK_ENB, | ||
38 | .en_reg_bit = RTC_CLK_ENB, | ||
39 | .recalc = &follow_parent, | ||
40 | }; | ||
41 | |||
42 | /* clock derived from 24 MHz osc clk */ | ||
43 | /* pll masks structure */ | ||
44 | static struct pll_clk_masks pll1_masks = { | ||
45 | .mode_mask = PLL_MODE_MASK, | ||
46 | .mode_shift = PLL_MODE_SHIFT, | ||
47 | .norm_fdbk_m_mask = PLL_NORM_FDBK_M_MASK, | ||
48 | .norm_fdbk_m_shift = PLL_NORM_FDBK_M_SHIFT, | ||
49 | .dith_fdbk_m_mask = PLL_DITH_FDBK_M_MASK, | ||
50 | .dith_fdbk_m_shift = PLL_DITH_FDBK_M_SHIFT, | ||
51 | .div_p_mask = PLL_DIV_P_MASK, | ||
52 | .div_p_shift = PLL_DIV_P_SHIFT, | ||
53 | .div_n_mask = PLL_DIV_N_MASK, | ||
54 | .div_n_shift = PLL_DIV_N_SHIFT, | ||
55 | }; | ||
56 | |||
57 | /* pll1 configuration structure */ | ||
58 | static struct pll_clk_config pll1_config = { | ||
59 | .mode_reg = PLL1_CTR, | ||
60 | .cfg_reg = PLL1_FRQ, | ||
61 | .masks = &pll1_masks, | ||
62 | }; | ||
63 | |||
64 | /* pll rate configuration table, in ascending order of rates */ | ||
65 | struct pll_rate_tbl pll_rtbl[] = { | ||
66 | {.mode = 0, .m = 0x85, .n = 0x0C, .p = 0x1}, /* 266 MHz */ | ||
67 | {.mode = 0, .m = 0xA6, .n = 0x0C, .p = 0x1}, /* 332 MHz */ | ||
68 | }; | ||
69 | |||
70 | /* PLL1 clock */ | ||
71 | static struct clk pll1_clk = { | ||
72 | .flags = ENABLED_ON_INIT, | ||
73 | .pclk = &osc_24m_clk, | ||
74 | .en_reg = PLL1_CTR, | ||
75 | .en_reg_bit = PLL_ENABLE, | ||
76 | .calc_rate = &pll_calc_rate, | ||
77 | .recalc = &pll_clk_recalc, | ||
78 | .set_rate = &pll_clk_set_rate, | ||
79 | .rate_config = {pll_rtbl, ARRAY_SIZE(pll_rtbl), 1}, | ||
80 | .private_data = &pll1_config, | ||
81 | }; | ||
82 | |||
83 | /* PLL3 48 MHz clock */ | ||
84 | static struct clk pll3_48m_clk = { | ||
85 | .flags = ALWAYS_ENABLED, | ||
86 | .pclk = &osc_24m_clk, | ||
87 | .rate = 48000000, | ||
88 | }; | ||
89 | |||
90 | /* watch dog timer clock */ | ||
91 | static struct clk wdt_clk = { | ||
92 | .flags = ALWAYS_ENABLED, | ||
93 | .pclk = &osc_24m_clk, | ||
94 | .recalc = &follow_parent, | ||
95 | }; | ||
96 | |||
97 | /* clock derived from pll1 clk */ | ||
98 | /* cpu clock */ | ||
99 | static struct clk cpu_clk = { | ||
100 | .flags = ALWAYS_ENABLED, | ||
101 | .pclk = &pll1_clk, | ||
102 | .recalc = &follow_parent, | ||
103 | }; | ||
104 | |||
105 | /* ahb masks structure */ | ||
106 | static struct bus_clk_masks ahb_masks = { | ||
107 | .mask = PLL_HCLK_RATIO_MASK, | ||
108 | .shift = PLL_HCLK_RATIO_SHIFT, | ||
109 | }; | ||
110 | |||
111 | /* ahb configuration structure */ | ||
112 | static struct bus_clk_config ahb_config = { | ||
113 | .reg = CORE_CLK_CFG, | ||
114 | .masks = &ahb_masks, | ||
115 | }; | ||
116 | |||
117 | /* ahb rate configuration table, in ascending order of rates */ | ||
118 | struct bus_rate_tbl bus_rtbl[] = { | ||
119 | {.div = 3}, /* == parent divided by 4 */ | ||
120 | {.div = 2}, /* == parent divided by 3 */ | ||
121 | {.div = 1}, /* == parent divided by 2 */ | ||
122 | {.div = 0}, /* == parent divided by 1 */ | ||
123 | }; | ||
124 | |||
125 | /* ahb clock */ | ||
126 | static struct clk ahb_clk = { | ||
127 | .flags = ALWAYS_ENABLED, | ||
128 | .pclk = &pll1_clk, | ||
129 | .calc_rate = &bus_calc_rate, | ||
130 | .recalc = &bus_clk_recalc, | ||
131 | .set_rate = &bus_clk_set_rate, | ||
132 | .rate_config = {bus_rtbl, ARRAY_SIZE(bus_rtbl), 2}, | ||
133 | .private_data = &ahb_config, | ||
134 | }; | ||
135 | |||
136 | /* auxiliary synthesizers masks */ | ||
137 | static struct aux_clk_masks aux_masks = { | ||
138 | .eq_sel_mask = AUX_EQ_SEL_MASK, | ||
139 | .eq_sel_shift = AUX_EQ_SEL_SHIFT, | ||
140 | .eq1_mask = AUX_EQ1_SEL, | ||
141 | .eq2_mask = AUX_EQ2_SEL, | ||
142 | .xscale_sel_mask = AUX_XSCALE_MASK, | ||
143 | .xscale_sel_shift = AUX_XSCALE_SHIFT, | ||
144 | .yscale_sel_mask = AUX_YSCALE_MASK, | ||
145 | .yscale_sel_shift = AUX_YSCALE_SHIFT, | ||
146 | }; | ||
147 | |||
148 | /* uart synth configurations */ | ||
149 | static struct aux_clk_config uart_synth_config = { | ||
150 | .synth_reg = UART_CLK_SYNT, | ||
151 | .masks = &aux_masks, | ||
152 | }; | ||
153 | |||
154 | /* aux rate configuration table, in ascending order of rates */ | ||
155 | struct aux_rate_tbl aux_rtbl[] = { | ||
156 | /* For PLL1 = 332 MHz */ | ||
157 | {.xscale = 1, .yscale = 8, .eq = 1}, /* 41.5 MHz */ | ||
158 | {.xscale = 1, .yscale = 4, .eq = 1}, /* 83 MHz */ | ||
159 | {.xscale = 1, .yscale = 2, .eq = 1}, /* 166 MHz */ | ||
160 | }; | ||
161 | |||
162 | /* uart synth clock */ | ||
163 | static struct clk uart_synth_clk = { | ||
164 | .en_reg = UART_CLK_SYNT, | ||
165 | .en_reg_bit = AUX_SYNT_ENB, | ||
166 | .pclk = &pll1_clk, | ||
167 | .calc_rate = &aux_calc_rate, | ||
168 | .recalc = &aux_clk_recalc, | ||
169 | .set_rate = &aux_clk_set_rate, | ||
170 | .rate_config = {aux_rtbl, ARRAY_SIZE(aux_rtbl), 1}, | ||
171 | .private_data = &uart_synth_config, | ||
172 | }; | ||
173 | |||
174 | /* uart parents */ | ||
175 | static struct pclk_info uart_pclk_info[] = { | ||
176 | { | ||
177 | .pclk = &uart_synth_clk, | ||
178 | .pclk_val = AUX_CLK_PLL1_VAL, | ||
179 | }, { | ||
180 | .pclk = &pll3_48m_clk, | ||
181 | .pclk_val = AUX_CLK_PLL3_VAL, | ||
182 | }, | ||
183 | }; | ||
184 | |||
185 | /* uart parent select structure */ | ||
186 | static struct pclk_sel uart_pclk_sel = { | ||
187 | .pclk_info = uart_pclk_info, | ||
188 | .pclk_count = ARRAY_SIZE(uart_pclk_info), | ||
189 | .pclk_sel_reg = PERIP_CLK_CFG, | ||
190 | .pclk_sel_mask = UART_CLK_MASK, | ||
191 | }; | ||
192 | |||
193 | /* uart clock */ | ||
194 | static struct clk uart_clk = { | ||
195 | .en_reg = PERIP1_CLK_ENB, | ||
196 | .en_reg_bit = UART_CLK_ENB, | ||
197 | .pclk_sel = &uart_pclk_sel, | ||
198 | .pclk_sel_shift = UART_CLK_SHIFT, | ||
199 | .recalc = &follow_parent, | ||
200 | }; | ||
201 | |||
202 | /* firda configurations */ | ||
203 | static struct aux_clk_config firda_synth_config = { | ||
204 | .synth_reg = FIRDA_CLK_SYNT, | ||
205 | .masks = &aux_masks, | ||
206 | }; | ||
207 | |||
208 | /* firda synth clock */ | ||
209 | static struct clk firda_synth_clk = { | ||
210 | .en_reg = FIRDA_CLK_SYNT, | ||
211 | .en_reg_bit = AUX_SYNT_ENB, | ||
212 | .pclk = &pll1_clk, | ||
213 | .calc_rate = &aux_calc_rate, | ||
214 | .recalc = &aux_clk_recalc, | ||
215 | .set_rate = &aux_clk_set_rate, | ||
216 | .rate_config = {aux_rtbl, ARRAY_SIZE(aux_rtbl), 1}, | ||
217 | .private_data = &firda_synth_config, | ||
218 | }; | ||
219 | |||
220 | /* firda parents */ | ||
221 | static struct pclk_info firda_pclk_info[] = { | ||
222 | { | ||
223 | .pclk = &firda_synth_clk, | ||
224 | .pclk_val = AUX_CLK_PLL1_VAL, | ||
225 | }, { | ||
226 | .pclk = &pll3_48m_clk, | ||
227 | .pclk_val = AUX_CLK_PLL3_VAL, | ||
228 | }, | ||
229 | }; | ||
230 | |||
231 | /* firda parent select structure */ | ||
232 | static struct pclk_sel firda_pclk_sel = { | ||
233 | .pclk_info = firda_pclk_info, | ||
234 | .pclk_count = ARRAY_SIZE(firda_pclk_info), | ||
235 | .pclk_sel_reg = PERIP_CLK_CFG, | ||
236 | .pclk_sel_mask = FIRDA_CLK_MASK, | ||
237 | }; | ||
238 | |||
239 | /* firda clock */ | ||
240 | static struct clk firda_clk = { | ||
241 | .en_reg = PERIP1_CLK_ENB, | ||
242 | .en_reg_bit = FIRDA_CLK_ENB, | ||
243 | .pclk_sel = &firda_pclk_sel, | ||
244 | .pclk_sel_shift = FIRDA_CLK_SHIFT, | ||
245 | .recalc = &follow_parent, | ||
246 | }; | ||
247 | |||
248 | /* gpt synthesizer masks */ | ||
249 | static struct gpt_clk_masks gpt_masks = { | ||
250 | .mscale_sel_mask = GPT_MSCALE_MASK, | ||
251 | .mscale_sel_shift = GPT_MSCALE_SHIFT, | ||
252 | .nscale_sel_mask = GPT_NSCALE_MASK, | ||
253 | .nscale_sel_shift = GPT_NSCALE_SHIFT, | ||
254 | }; | ||
255 | |||
256 | /* gpt rate configuration table, in ascending order of rates */ | ||
257 | struct gpt_rate_tbl gpt_rtbl[] = { | ||
258 | /* For pll1 = 332 MHz */ | ||
259 | {.mscale = 4, .nscale = 0}, /* 41.5 MHz */ | ||
260 | {.mscale = 2, .nscale = 0}, /* 55.3 MHz */ | ||
261 | {.mscale = 1, .nscale = 0}, /* 83 MHz */ | ||
262 | }; | ||
263 | |||
264 | /* gpt0 synth clk config*/ | ||
265 | static struct gpt_clk_config gpt0_synth_config = { | ||
266 | .synth_reg = PRSC1_CLK_CFG, | ||
267 | .masks = &gpt_masks, | ||
268 | }; | ||
269 | |||
270 | /* gpt synth clock */ | ||
271 | static struct clk gpt0_synth_clk = { | ||
272 | .flags = ALWAYS_ENABLED, | ||
273 | .pclk = &pll1_clk, | ||
274 | .calc_rate = &gpt_calc_rate, | ||
275 | .recalc = &gpt_clk_recalc, | ||
276 | .set_rate = &gpt_clk_set_rate, | ||
277 | .rate_config = {gpt_rtbl, ARRAY_SIZE(gpt_rtbl), 2}, | ||
278 | .private_data = &gpt0_synth_config, | ||
279 | }; | ||
280 | |||
281 | /* gpt parents */ | ||
282 | static struct pclk_info gpt0_pclk_info[] = { | ||
283 | { | ||
284 | .pclk = &gpt0_synth_clk, | ||
285 | .pclk_val = AUX_CLK_PLL1_VAL, | ||
286 | }, { | ||
287 | .pclk = &pll3_48m_clk, | ||
288 | .pclk_val = AUX_CLK_PLL3_VAL, | ||
289 | }, | ||
290 | }; | ||
291 | |||
292 | /* gpt parent select structure */ | ||
293 | static struct pclk_sel gpt0_pclk_sel = { | ||
294 | .pclk_info = gpt0_pclk_info, | ||
295 | .pclk_count = ARRAY_SIZE(gpt0_pclk_info), | ||
296 | .pclk_sel_reg = PERIP_CLK_CFG, | ||
297 | .pclk_sel_mask = GPT_CLK_MASK, | ||
298 | }; | ||
299 | |||
300 | /* gpt0 timer clock */ | ||
301 | static struct clk gpt0_clk = { | ||
302 | .flags = ALWAYS_ENABLED, | ||
303 | .pclk_sel = &gpt0_pclk_sel, | ||
304 | .pclk_sel_shift = GPT0_CLK_SHIFT, | ||
305 | .recalc = &follow_parent, | ||
306 | }; | ||
307 | |||
308 | /* gpt1 synth clk configurations */ | ||
309 | static struct gpt_clk_config gpt1_synth_config = { | ||
310 | .synth_reg = PRSC2_CLK_CFG, | ||
311 | .masks = &gpt_masks, | ||
312 | }; | ||
313 | |||
314 | /* gpt1 synth clock */ | ||
315 | static struct clk gpt1_synth_clk = { | ||
316 | .flags = ALWAYS_ENABLED, | ||
317 | .pclk = &pll1_clk, | ||
318 | .calc_rate = &gpt_calc_rate, | ||
319 | .recalc = &gpt_clk_recalc, | ||
320 | .set_rate = &gpt_clk_set_rate, | ||
321 | .rate_config = {gpt_rtbl, ARRAY_SIZE(gpt_rtbl), 2}, | ||
322 | .private_data = &gpt1_synth_config, | ||
323 | }; | ||
324 | |||
325 | static struct pclk_info gpt1_pclk_info[] = { | ||
326 | { | ||
327 | .pclk = &gpt1_synth_clk, | ||
328 | .pclk_val = AUX_CLK_PLL1_VAL, | ||
329 | }, { | ||
330 | .pclk = &pll3_48m_clk, | ||
331 | .pclk_val = AUX_CLK_PLL3_VAL, | ||
332 | }, | ||
333 | }; | ||
334 | |||
335 | /* gpt parent select structure */ | ||
336 | static struct pclk_sel gpt1_pclk_sel = { | ||
337 | .pclk_info = gpt1_pclk_info, | ||
338 | .pclk_count = ARRAY_SIZE(gpt1_pclk_info), | ||
339 | .pclk_sel_reg = PERIP_CLK_CFG, | ||
340 | .pclk_sel_mask = GPT_CLK_MASK, | ||
341 | }; | ||
342 | |||
343 | /* gpt1 timer clock */ | ||
344 | static struct clk gpt1_clk = { | ||
345 | .en_reg = PERIP1_CLK_ENB, | ||
346 | .en_reg_bit = GPT1_CLK_ENB, | ||
347 | .pclk_sel = &gpt1_pclk_sel, | ||
348 | .pclk_sel_shift = GPT1_CLK_SHIFT, | ||
349 | .recalc = &follow_parent, | ||
350 | }; | ||
351 | |||
352 | /* gpt2 synth clk configurations */ | ||
353 | static struct gpt_clk_config gpt2_synth_config = { | ||
354 | .synth_reg = PRSC3_CLK_CFG, | ||
355 | .masks = &gpt_masks, | ||
356 | }; | ||
357 | |||
358 | /* gpt1 synth clock */ | ||
359 | static struct clk gpt2_synth_clk = { | ||
360 | .flags = ALWAYS_ENABLED, | ||
361 | .pclk = &pll1_clk, | ||
362 | .calc_rate = &gpt_calc_rate, | ||
363 | .recalc = &gpt_clk_recalc, | ||
364 | .set_rate = &gpt_clk_set_rate, | ||
365 | .rate_config = {gpt_rtbl, ARRAY_SIZE(gpt_rtbl), 2}, | ||
366 | .private_data = &gpt2_synth_config, | ||
367 | }; | ||
368 | |||
369 | static struct pclk_info gpt2_pclk_info[] = { | ||
370 | { | ||
371 | .pclk = &gpt2_synth_clk, | ||
372 | .pclk_val = AUX_CLK_PLL1_VAL, | ||
373 | }, { | ||
374 | .pclk = &pll3_48m_clk, | ||
375 | .pclk_val = AUX_CLK_PLL3_VAL, | ||
376 | }, | ||
377 | }; | ||
378 | |||
379 | /* gpt parent select structure */ | ||
380 | static struct pclk_sel gpt2_pclk_sel = { | ||
381 | .pclk_info = gpt2_pclk_info, | ||
382 | .pclk_count = ARRAY_SIZE(gpt2_pclk_info), | ||
383 | .pclk_sel_reg = PERIP_CLK_CFG, | ||
384 | .pclk_sel_mask = GPT_CLK_MASK, | ||
385 | }; | ||
386 | |||
387 | /* gpt2 timer clock */ | ||
388 | static struct clk gpt2_clk = { | ||
389 | .en_reg = PERIP1_CLK_ENB, | ||
390 | .en_reg_bit = GPT2_CLK_ENB, | ||
391 | .pclk_sel = &gpt2_pclk_sel, | ||
392 | .pclk_sel_shift = GPT2_CLK_SHIFT, | ||
393 | .recalc = &follow_parent, | ||
394 | }; | ||
395 | |||
396 | /* clock derived from pll3 clk */ | ||
397 | /* usbh clock */ | ||
398 | static struct clk usbh_clk = { | ||
399 | .pclk = &pll3_48m_clk, | ||
400 | .en_reg = PERIP1_CLK_ENB, | ||
401 | .en_reg_bit = USBH_CLK_ENB, | ||
402 | .recalc = &follow_parent, | ||
403 | }; | ||
404 | |||
405 | /* usbd clock */ | ||
406 | static struct clk usbd_clk = { | ||
407 | .pclk = &pll3_48m_clk, | ||
408 | .en_reg = PERIP1_CLK_ENB, | ||
409 | .en_reg_bit = USBD_CLK_ENB, | ||
410 | .recalc = &follow_parent, | ||
411 | }; | ||
412 | |||
413 | /* clock derived from ahb clk */ | ||
414 | /* apb masks structure */ | ||
415 | static struct bus_clk_masks apb_masks = { | ||
416 | .mask = HCLK_PCLK_RATIO_MASK, | ||
417 | .shift = HCLK_PCLK_RATIO_SHIFT, | ||
418 | }; | ||
419 | |||
420 | /* apb configuration structure */ | ||
421 | static struct bus_clk_config apb_config = { | ||
422 | .reg = CORE_CLK_CFG, | ||
423 | .masks = &apb_masks, | ||
424 | }; | ||
425 | |||
426 | /* apb clock */ | ||
427 | static struct clk apb_clk = { | ||
428 | .flags = ALWAYS_ENABLED, | ||
429 | .pclk = &ahb_clk, | ||
430 | .calc_rate = &bus_calc_rate, | ||
431 | .recalc = &bus_clk_recalc, | ||
432 | .set_rate = &bus_clk_set_rate, | ||
433 | .rate_config = {bus_rtbl, ARRAY_SIZE(bus_rtbl), 2}, | ||
434 | .private_data = &apb_config, | ||
435 | }; | ||
436 | |||
437 | /* i2c clock */ | ||
438 | static struct clk i2c_clk = { | ||
439 | .pclk = &ahb_clk, | ||
440 | .en_reg = PERIP1_CLK_ENB, | ||
441 | .en_reg_bit = I2C_CLK_ENB, | ||
442 | .recalc = &follow_parent, | ||
443 | }; | ||
444 | |||
445 | /* dma clock */ | ||
446 | static struct clk dma_clk = { | ||
447 | .pclk = &ahb_clk, | ||
448 | .en_reg = PERIP1_CLK_ENB, | ||
449 | .en_reg_bit = DMA_CLK_ENB, | ||
450 | .recalc = &follow_parent, | ||
451 | }; | ||
452 | |||
453 | /* jpeg clock */ | ||
454 | static struct clk jpeg_clk = { | ||
455 | .pclk = &ahb_clk, | ||
456 | .en_reg = PERIP1_CLK_ENB, | ||
457 | .en_reg_bit = JPEG_CLK_ENB, | ||
458 | .recalc = &follow_parent, | ||
459 | }; | ||
460 | |||
461 | /* gmac clock */ | ||
462 | static struct clk gmac_clk = { | ||
463 | .pclk = &ahb_clk, | ||
464 | .en_reg = PERIP1_CLK_ENB, | ||
465 | .en_reg_bit = GMAC_CLK_ENB, | ||
466 | .recalc = &follow_parent, | ||
467 | }; | ||
468 | |||
469 | /* smi clock */ | ||
470 | static struct clk smi_clk = { | ||
471 | .pclk = &ahb_clk, | ||
472 | .en_reg = PERIP1_CLK_ENB, | ||
473 | .en_reg_bit = SMI_CLK_ENB, | ||
474 | .recalc = &follow_parent, | ||
475 | }; | ||
476 | |||
477 | /* c3 clock */ | ||
478 | static struct clk c3_clk = { | ||
479 | .pclk = &ahb_clk, | ||
480 | .en_reg = PERIP1_CLK_ENB, | ||
481 | .en_reg_bit = C3_CLK_ENB, | ||
482 | .recalc = &follow_parent, | ||
483 | }; | ||
484 | |||
485 | /* clock derived from apb clk */ | ||
486 | /* adc clock */ | ||
487 | static struct clk adc_clk = { | ||
488 | .pclk = &apb_clk, | ||
489 | .en_reg = PERIP1_CLK_ENB, | ||
490 | .en_reg_bit = ADC_CLK_ENB, | ||
491 | .recalc = &follow_parent, | ||
492 | }; | ||
493 | |||
494 | #if defined(CONFIG_MACH_SPEAR310) || defined(CONFIG_MACH_SPEAR320) | ||
495 | /* emi clock */ | ||
496 | static struct clk emi_clk = { | ||
497 | .flags = ALWAYS_ENABLED, | ||
498 | .pclk = &ahb_clk, | ||
499 | .recalc = &follow_parent, | ||
500 | }; | ||
501 | #endif | ||
502 | |||
503 | /* ssp clock */ | ||
504 | static struct clk ssp0_clk = { | ||
505 | .pclk = &apb_clk, | ||
506 | .en_reg = PERIP1_CLK_ENB, | ||
507 | .en_reg_bit = SSP_CLK_ENB, | ||
508 | .recalc = &follow_parent, | ||
509 | }; | ||
510 | |||
511 | /* gpio clock */ | ||
512 | static struct clk gpio_clk = { | ||
513 | .pclk = &apb_clk, | ||
514 | .en_reg = PERIP1_CLK_ENB, | ||
515 | .en_reg_bit = GPIO_CLK_ENB, | ||
516 | .recalc = &follow_parent, | ||
517 | }; | ||
518 | |||
519 | static struct clk dummy_apb_pclk; | ||
520 | |||
521 | #if defined(CONFIG_MACH_SPEAR300) || defined(CONFIG_MACH_SPEAR310) || \ | ||
522 | defined(CONFIG_MACH_SPEAR320) | ||
523 | /* fsmc clock */ | ||
524 | static struct clk fsmc_clk = { | ||
525 | .flags = ALWAYS_ENABLED, | ||
526 | .pclk = &ahb_clk, | ||
527 | .recalc = &follow_parent, | ||
528 | }; | ||
529 | #endif | ||
530 | |||
531 | /* common clocks to spear310 and spear320 */ | ||
532 | #if defined(CONFIG_MACH_SPEAR310) || defined(CONFIG_MACH_SPEAR320) | ||
533 | /* uart1 clock */ | ||
534 | static struct clk uart1_clk = { | ||
535 | .flags = ALWAYS_ENABLED, | ||
536 | .pclk = &apb_clk, | ||
537 | .recalc = &follow_parent, | ||
538 | }; | ||
539 | |||
540 | /* uart2 clock */ | ||
541 | static struct clk uart2_clk = { | ||
542 | .flags = ALWAYS_ENABLED, | ||
543 | .pclk = &apb_clk, | ||
544 | .recalc = &follow_parent, | ||
545 | }; | ||
546 | #endif /* CONFIG_MACH_SPEAR310 || CONFIG_MACH_SPEAR320 */ | ||
547 | |||
548 | /* common clocks to spear300 and spear320 */ | ||
549 | #if defined(CONFIG_MACH_SPEAR300) || defined(CONFIG_MACH_SPEAR320) | ||
550 | /* clcd clock */ | ||
551 | static struct clk clcd_clk = { | ||
552 | .flags = ALWAYS_ENABLED, | ||
553 | .pclk = &pll3_48m_clk, | ||
554 | .recalc = &follow_parent, | ||
555 | }; | ||
556 | |||
557 | /* sdhci clock */ | ||
558 | static struct clk sdhci_clk = { | ||
559 | .flags = ALWAYS_ENABLED, | ||
560 | .pclk = &ahb_clk, | ||
561 | .recalc = &follow_parent, | ||
562 | }; | ||
563 | #endif /* CONFIG_MACH_SPEAR300 || CONFIG_MACH_SPEAR320 */ | ||
564 | |||
565 | /* spear300 machine specific clock structures */ | ||
566 | #ifdef CONFIG_MACH_SPEAR300 | ||
567 | /* gpio1 clock */ | ||
568 | static struct clk gpio1_clk = { | ||
569 | .flags = ALWAYS_ENABLED, | ||
570 | .pclk = &apb_clk, | ||
571 | .recalc = &follow_parent, | ||
572 | }; | ||
573 | |||
574 | /* keyboard clock */ | ||
575 | static struct clk kbd_clk = { | ||
576 | .flags = ALWAYS_ENABLED, | ||
577 | .pclk = &apb_clk, | ||
578 | .recalc = &follow_parent, | ||
579 | }; | ||
580 | |||
581 | #endif | ||
582 | |||
583 | /* spear310 machine specific clock structures */ | ||
584 | #ifdef CONFIG_MACH_SPEAR310 | ||
585 | /* uart3 clock */ | ||
586 | static struct clk uart3_clk = { | ||
587 | .flags = ALWAYS_ENABLED, | ||
588 | .pclk = &apb_clk, | ||
589 | .recalc = &follow_parent, | ||
590 | }; | ||
591 | |||
592 | /* uart4 clock */ | ||
593 | static struct clk uart4_clk = { | ||
594 | .flags = ALWAYS_ENABLED, | ||
595 | .pclk = &apb_clk, | ||
596 | .recalc = &follow_parent, | ||
597 | }; | ||
598 | |||
599 | /* uart5 clock */ | ||
600 | static struct clk uart5_clk = { | ||
601 | .flags = ALWAYS_ENABLED, | ||
602 | .pclk = &apb_clk, | ||
603 | .recalc = &follow_parent, | ||
604 | }; | ||
605 | #endif | ||
606 | |||
607 | /* spear320 machine specific clock structures */ | ||
608 | #ifdef CONFIG_MACH_SPEAR320 | ||
609 | /* can0 clock */ | ||
610 | static struct clk can0_clk = { | ||
611 | .flags = ALWAYS_ENABLED, | ||
612 | .pclk = &apb_clk, | ||
613 | .recalc = &follow_parent, | ||
614 | }; | ||
615 | |||
616 | /* can1 clock */ | ||
617 | static struct clk can1_clk = { | ||
618 | .flags = ALWAYS_ENABLED, | ||
619 | .pclk = &apb_clk, | ||
620 | .recalc = &follow_parent, | ||
621 | }; | ||
622 | |||
623 | /* i2c1 clock */ | ||
624 | static struct clk i2c1_clk = { | ||
625 | .flags = ALWAYS_ENABLED, | ||
626 | .pclk = &ahb_clk, | ||
627 | .recalc = &follow_parent, | ||
628 | }; | ||
629 | |||
630 | /* ssp1 clock */ | ||
631 | static struct clk ssp1_clk = { | ||
632 | .flags = ALWAYS_ENABLED, | ||
633 | .pclk = &apb_clk, | ||
634 | .recalc = &follow_parent, | ||
635 | }; | ||
636 | |||
637 | /* ssp2 clock */ | ||
638 | static struct clk ssp2_clk = { | ||
639 | .flags = ALWAYS_ENABLED, | ||
640 | .pclk = &apb_clk, | ||
641 | .recalc = &follow_parent, | ||
642 | }; | ||
643 | |||
644 | /* pwm clock */ | ||
645 | static struct clk pwm_clk = { | ||
646 | .flags = ALWAYS_ENABLED, | ||
647 | .pclk = &apb_clk, | ||
648 | .recalc = &follow_parent, | ||
649 | }; | ||
650 | #endif | ||
651 | |||
652 | /* array of all spear 3xx clock lookups */ | ||
653 | static struct clk_lookup spear_clk_lookups[] = { | ||
654 | { .con_id = "apb_pclk", .clk = &dummy_apb_pclk}, | ||
655 | /* root clks */ | ||
656 | { .con_id = "osc_32k_clk", .clk = &osc_32k_clk}, | ||
657 | { .con_id = "osc_24m_clk", .clk = &osc_24m_clk}, | ||
658 | /* clock derived from 32 KHz osc clk */ | ||
659 | { .dev_id = "rtc-spear", .clk = &rtc_clk}, | ||
660 | /* clock derived from 24 MHz osc clk */ | ||
661 | { .con_id = "pll1_clk", .clk = &pll1_clk}, | ||
662 | { .con_id = "pll3_48m_clk", .clk = &pll3_48m_clk}, | ||
663 | { .dev_id = "wdt", .clk = &wdt_clk}, | ||
664 | /* clock derived from pll1 clk */ | ||
665 | { .con_id = "cpu_clk", .clk = &cpu_clk}, | ||
666 | { .con_id = "ahb_clk", .clk = &ahb_clk}, | ||
667 | { .con_id = "uart_synth_clk", .clk = &uart_synth_clk}, | ||
668 | { .con_id = "firda_synth_clk", .clk = &firda_synth_clk}, | ||
669 | { .con_id = "gpt0_synth_clk", .clk = &gpt0_synth_clk}, | ||
670 | { .con_id = "gpt1_synth_clk", .clk = &gpt1_synth_clk}, | ||
671 | { .con_id = "gpt2_synth_clk", .clk = &gpt2_synth_clk}, | ||
672 | { .dev_id = "uart", .clk = &uart_clk}, | ||
673 | { .dev_id = "firda", .clk = &firda_clk}, | ||
674 | { .dev_id = "gpt0", .clk = &gpt0_clk}, | ||
675 | { .dev_id = "gpt1", .clk = &gpt1_clk}, | ||
676 | { .dev_id = "gpt2", .clk = &gpt2_clk}, | ||
677 | /* clock derived from pll3 clk */ | ||
678 | { .dev_id = "designware_udc", .clk = &usbd_clk}, | ||
679 | { .con_id = "usbh_clk", .clk = &usbh_clk}, | ||
680 | /* clock derived from ahb clk */ | ||
681 | { .con_id = "apb_clk", .clk = &apb_clk}, | ||
682 | { .dev_id = "i2c_designware.0", .clk = &i2c_clk}, | ||
683 | { .dev_id = "dma", .clk = &dma_clk}, | ||
684 | { .dev_id = "jpeg", .clk = &jpeg_clk}, | ||
685 | { .dev_id = "gmac", .clk = &gmac_clk}, | ||
686 | { .dev_id = "smi", .clk = &smi_clk}, | ||
687 | { .dev_id = "c3", .clk = &c3_clk}, | ||
688 | /* clock derived from apb clk */ | ||
689 | { .dev_id = "adc", .clk = &adc_clk}, | ||
690 | { .dev_id = "ssp-pl022.0", .clk = &ssp0_clk}, | ||
691 | { .dev_id = "gpio", .clk = &gpio_clk}, | ||
692 | }; | ||
693 | |||
694 | /* array of all spear 300 clock lookups */ | ||
695 | #ifdef CONFIG_MACH_SPEAR300 | ||
696 | static struct clk_lookup spear300_clk_lookups[] = { | ||
697 | { .dev_id = "clcd", .clk = &clcd_clk}, | ||
698 | { .con_id = "fsmc", .clk = &fsmc_clk}, | ||
699 | { .dev_id = "gpio1", .clk = &gpio1_clk}, | ||
700 | { .dev_id = "keyboard", .clk = &kbd_clk}, | ||
701 | { .dev_id = "sdhci", .clk = &sdhci_clk}, | ||
702 | }; | ||
703 | #endif | ||
704 | |||
705 | /* array of all spear 310 clock lookups */ | ||
706 | #ifdef CONFIG_MACH_SPEAR310 | ||
707 | static struct clk_lookup spear310_clk_lookups[] = { | ||
708 | { .con_id = "fsmc", .clk = &fsmc_clk}, | ||
709 | { .con_id = "emi", .clk = &emi_clk}, | ||
710 | { .dev_id = "uart1", .clk = &uart1_clk}, | ||
711 | { .dev_id = "uart2", .clk = &uart2_clk}, | ||
712 | { .dev_id = "uart3", .clk = &uart3_clk}, | ||
713 | { .dev_id = "uart4", .clk = &uart4_clk}, | ||
714 | { .dev_id = "uart5", .clk = &uart5_clk}, | ||
715 | }; | ||
716 | #endif | ||
717 | |||
718 | /* array of all spear 320 clock lookups */ | ||
719 | #ifdef CONFIG_MACH_SPEAR320 | ||
720 | static struct clk_lookup spear320_clk_lookups[] = { | ||
721 | { .dev_id = "clcd", .clk = &clcd_clk}, | ||
722 | { .con_id = "fsmc", .clk = &fsmc_clk}, | ||
723 | { .dev_id = "i2c_designware.1", .clk = &i2c1_clk}, | ||
724 | { .con_id = "emi", .clk = &emi_clk}, | ||
725 | { .dev_id = "pwm", .clk = &pwm_clk}, | ||
726 | { .dev_id = "sdhci", .clk = &sdhci_clk}, | ||
727 | { .dev_id = "c_can_platform.0", .clk = &can0_clk}, | ||
728 | { .dev_id = "c_can_platform.1", .clk = &can1_clk}, | ||
729 | { .dev_id = "ssp-pl022.1", .clk = &ssp1_clk}, | ||
730 | { .dev_id = "ssp-pl022.2", .clk = &ssp2_clk}, | ||
731 | { .dev_id = "uart1", .clk = &uart1_clk}, | ||
732 | { .dev_id = "uart2", .clk = &uart2_clk}, | ||
733 | }; | ||
734 | #endif | ||
735 | |||
736 | void __init spear3xx_clk_init(void) | ||
737 | { | ||
738 | int i, cnt; | ||
739 | struct clk_lookup *lookups; | ||
740 | |||
741 | if (machine_is_spear300()) { | ||
742 | cnt = ARRAY_SIZE(spear300_clk_lookups); | ||
743 | lookups = spear300_clk_lookups; | ||
744 | } else if (machine_is_spear310()) { | ||
745 | cnt = ARRAY_SIZE(spear310_clk_lookups); | ||
746 | lookups = spear310_clk_lookups; | ||
747 | } else { | ||
748 | cnt = ARRAY_SIZE(spear320_clk_lookups); | ||
749 | lookups = spear320_clk_lookups; | ||
750 | } | ||
751 | |||
752 | for (i = 0; i < ARRAY_SIZE(spear_clk_lookups); i++) | ||
753 | clk_register(&spear_clk_lookups[i]); | ||
754 | |||
755 | for (i = 0; i < cnt; i++) | ||
756 | clk_register(&lookups[i]); | ||
757 | |||
758 | clk_init(); | ||
759 | } | ||
diff --git a/arch/arm/mach-spear3xx/include/mach/entry-macro.S b/arch/arm/mach-spear3xx/include/mach/entry-macro.S new file mode 100644 index 00000000000..53da4224ba3 --- /dev/null +++ b/arch/arm/mach-spear3xx/include/mach/entry-macro.S | |||
@@ -0,0 +1,45 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-spear3xx/include/mach/entry-macro.S | ||
3 | * | ||
4 | * Low-level IRQ helper macros for SPEAr3xx machine family | ||
5 | * | ||
6 | * Copyright (C) 2009 ST Microelectronics | ||
7 | * Viresh Kumar<viresh.kumar@st.com> | ||
8 | * | ||
9 | * This file is licensed under the terms of the GNU General Public | ||
10 | * License version 2. This program is licensed "as is" without any | ||
11 | * warranty of any kind, whether express or implied. | ||
12 | */ | ||
13 | |||
14 | #include <asm/hardware/vic.h> | ||
15 | #include <mach/hardware.h> | ||
16 | |||
17 | .macro disable_fiq | ||
18 | .endm | ||
19 | |||
20 | .macro get_irqnr_preamble, base, tmp | ||
21 | .endm | ||
22 | |||
23 | .macro arch_ret_to_user, tmp1, tmp2 | ||
24 | .endm | ||
25 | |||
26 | .macro get_irqnr_and_base, irqnr, irqstat, base, tmp | ||
27 | ldr \base, =VA_SPEAR3XX_ML1_VIC_BASE | ||
28 | ldr \irqstat, [\base, #VIC_IRQ_STATUS] @ get status | ||
29 | teq \irqstat, #0 | ||
30 | beq 1001f @ this will set/reset | ||
31 | @ zero register | ||
32 | /* | ||
33 | * Following code will find bit position of least significang | ||
34 | * bit set in irqstat, using following equation | ||
35 | * least significant bit set in n = (n & ~(n-1)) | ||
36 | */ | ||
37 | sub \tmp, \irqstat, #1 @ tmp = irqstat - 1 | ||
38 | mvn \tmp, \tmp @ tmp = ~tmp | ||
39 | and \irqstat, \irqstat, \tmp @ irqstat &= tmp | ||
40 | /* Now, irqstat is = bit no. of 1st bit set in vic irq status */ | ||
41 | clz \tmp, \irqstat @ tmp = leading zeros | ||
42 | rsb \irqnr, \tmp, #0x1F @ irqnr = 32 - tmp - 1 | ||
43 | |||
44 | 1001: /* EQ will be set if no irqs pending */ | ||
45 | .endm | ||
diff --git a/arch/arm/mach-spear3xx/include/mach/gpio.h b/arch/arm/mach-spear3xx/include/mach/gpio.h new file mode 100644 index 00000000000..451b2081bfc --- /dev/null +++ b/arch/arm/mach-spear3xx/include/mach/gpio.h | |||
@@ -0,0 +1,19 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-spear3xx/include/mach/gpio.h | ||
3 | * | ||
4 | * GPIO macros for SPEAr3xx machine family | ||
5 | * | ||
6 | * Copyright (C) 2009 ST Microelectronics | ||
7 | * Viresh Kumar<viresh.kumar@st.com> | ||
8 | * | ||
9 | * This file is licensed under the terms of the GNU General Public | ||
10 | * License version 2. This program is licensed "as is" without any | ||
11 | * warranty of any kind, whether express or implied. | ||
12 | */ | ||
13 | |||
14 | #ifndef __MACH_GPIO_H | ||
15 | #define __MACH_GPIO_H | ||
16 | |||
17 | #include <plat/gpio.h> | ||
18 | |||
19 | #endif /* __MACH_GPIO_H */ | ||
diff --git a/arch/arm/mach-spear3xx/include/mach/io.h b/arch/arm/mach-spear3xx/include/mach/io.h new file mode 100644 index 00000000000..30cff8a1f6b --- /dev/null +++ b/arch/arm/mach-spear3xx/include/mach/io.h | |||
@@ -0,0 +1,19 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-spear3xx/include/mach/io.h | ||
3 | * | ||
4 | * IO definitions for SPEAr3xx machine family | ||
5 | * | ||
6 | * Copyright (C) 2009 ST Microelectronics | ||
7 | * Viresh Kumar<viresh.kumar@st.com> | ||
8 | * | ||
9 | * This file is licensed under the terms of the GNU General Public | ||
10 | * License version 2. This program is licensed "as is" without any | ||
11 | * warranty of any kind, whether express or implied. | ||
12 | */ | ||
13 | |||
14 | #ifndef __MACH_IO_H | ||
15 | #define __MACH_IO_H | ||
16 | |||
17 | #include <plat/io.h> | ||
18 | |||
19 | #endif /* __MACH_IO_H */ | ||
diff --git a/arch/arm/mach-spear3xx/include/mach/memory.h b/arch/arm/mach-spear3xx/include/mach/memory.h new file mode 100644 index 00000000000..51735221ea1 --- /dev/null +++ b/arch/arm/mach-spear3xx/include/mach/memory.h | |||
@@ -0,0 +1,19 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-spear3xx/include/mach/memory.h | ||
3 | * | ||
4 | * Memory map for SPEAr3xx machine family | ||
5 | * | ||
6 | * Copyright (C) 2009 ST Microelectronics | ||
7 | * Viresh Kumar<viresh.kumar@st.com> | ||
8 | * | ||
9 | * This file is licensed under the terms of the GNU General Public | ||
10 | * License version 2. This program is licensed "as is" without any | ||
11 | * warranty of any kind, whether express or implied. | ||
12 | */ | ||
13 | |||
14 | #ifndef __MACH_MEMORY_H | ||
15 | #define __MACH_MEMORY_H | ||
16 | |||
17 | #include <plat/memory.h> | ||
18 | |||
19 | #endif /* __MACH_MEMORY_H */ | ||
diff --git a/arch/arm/mach-spear3xx/include/mach/spear300.h b/arch/arm/mach-spear3xx/include/mach/spear300.h new file mode 100644 index 00000000000..3b6ea072904 --- /dev/null +++ b/arch/arm/mach-spear3xx/include/mach/spear300.h | |||
@@ -0,0 +1,54 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-spear3xx/include/mach/spear300.h | ||
3 | * | ||
4 | * SPEAr300 Machine specific definition | ||
5 | * | ||
6 | * Copyright (C) 2009 ST Microelectronics | ||
7 | * Viresh Kumar<viresh.kumar@st.com> | ||
8 | * | ||
9 | * This file is licensed under the terms of the GNU General Public | ||
10 | * License version 2. This program is licensed "as is" without any | ||
11 | * warranty of any kind, whether express or implied. | ||
12 | */ | ||
13 | |||
14 | #ifdef CONFIG_MACH_SPEAR300 | ||
15 | |||
16 | #ifndef __MACH_SPEAR300_H | ||
17 | #define __MACH_SPEAR300_H | ||
18 | |||
19 | /* Base address of various IPs */ | ||
20 | #define SPEAR300_TELECOM_BASE UL(0x50000000) | ||
21 | |||
22 | /* Interrupt registers offsets and masks */ | ||
23 | #define SPEAR300_INT_ENB_MASK_REG 0x54 | ||
24 | #define SPEAR300_INT_STS_MASK_REG 0x58 | ||
25 | #define SPEAR300_IT_PERS_S_IRQ_MASK (1 << 0) | ||
26 | #define SPEAR300_IT_CHANGE_S_IRQ_MASK (1 << 1) | ||
27 | #define SPEAR300_I2S_IRQ_MASK (1 << 2) | ||
28 | #define SPEAR300_TDM_IRQ_MASK (1 << 3) | ||
29 | #define SPEAR300_CAMERA_L_IRQ_MASK (1 << 4) | ||
30 | #define SPEAR300_CAMERA_F_IRQ_MASK (1 << 5) | ||
31 | #define SPEAR300_CAMERA_V_IRQ_MASK (1 << 6) | ||
32 | #define SPEAR300_KEYBOARD_IRQ_MASK (1 << 7) | ||
33 | #define SPEAR300_GPIO1_IRQ_MASK (1 << 8) | ||
34 | |||
35 | #define SPEAR300_SHIRQ_RAS1_MASK 0x1FF | ||
36 | |||
37 | #define SPEAR300_CLCD_BASE UL(0x60000000) | ||
38 | #define SPEAR300_SDHCI_BASE UL(0x70000000) | ||
39 | #define SPEAR300_NAND_0_BASE UL(0x80000000) | ||
40 | #define SPEAR300_NAND_1_BASE UL(0x84000000) | ||
41 | #define SPEAR300_NAND_2_BASE UL(0x88000000) | ||
42 | #define SPEAR300_NAND_3_BASE UL(0x8c000000) | ||
43 | #define SPEAR300_NOR_0_BASE UL(0x90000000) | ||
44 | #define SPEAR300_NOR_1_BASE UL(0x91000000) | ||
45 | #define SPEAR300_NOR_2_BASE UL(0x92000000) | ||
46 | #define SPEAR300_NOR_3_BASE UL(0x93000000) | ||
47 | #define SPEAR300_FSMC_BASE UL(0x94000000) | ||
48 | #define SPEAR300_SOC_CONFIG_BASE UL(0x99000000) | ||
49 | #define SPEAR300_KEYBOARD_BASE UL(0xA0000000) | ||
50 | #define SPEAR300_GPIO_BASE UL(0xA9000000) | ||
51 | |||
52 | #endif /* __MACH_SPEAR300_H */ | ||
53 | |||
54 | #endif /* CONFIG_MACH_SPEAR300 */ | ||
diff --git a/arch/arm/mach-spear3xx/include/mach/spear310.h b/arch/arm/mach-spear3xx/include/mach/spear310.h new file mode 100644 index 00000000000..1567d0da725 --- /dev/null +++ b/arch/arm/mach-spear3xx/include/mach/spear310.h | |||
@@ -0,0 +1,58 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-spear3xx/include/mach/spear310.h | ||
3 | * | ||
4 | * SPEAr310 Machine specific definition | ||
5 | * | ||
6 | * Copyright (C) 2009 ST Microelectronics | ||
7 | * Viresh Kumar<viresh.kumar@st.com> | ||
8 | * | ||
9 | * This file is licensed under the terms of the GNU General Public | ||
10 | * License version 2. This program is licensed "as is" without any | ||
11 | * warranty of any kind, whether express or implied. | ||
12 | */ | ||
13 | |||
14 | #ifdef CONFIG_MACH_SPEAR310 | ||
15 | |||
16 | #ifndef __MACH_SPEAR310_H | ||
17 | #define __MACH_SPEAR310_H | ||
18 | |||
19 | #define SPEAR310_NAND_BASE UL(0x40000000) | ||
20 | #define SPEAR310_FSMC_BASE UL(0x44000000) | ||
21 | #define SPEAR310_UART1_BASE UL(0xB2000000) | ||
22 | #define SPEAR310_UART2_BASE UL(0xB2080000) | ||
23 | #define SPEAR310_UART3_BASE UL(0xB2100000) | ||
24 | #define SPEAR310_UART4_BASE UL(0xB2180000) | ||
25 | #define SPEAR310_UART5_BASE UL(0xB2200000) | ||
26 | #define SPEAR310_HDLC_BASE UL(0xB2800000) | ||
27 | #define SPEAR310_RS485_0_BASE UL(0xB3000000) | ||
28 | #define SPEAR310_RS485_1_BASE UL(0xB3800000) | ||
29 | #define SPEAR310_SOC_CONFIG_BASE UL(0xB4000000) | ||
30 | |||
31 | /* Interrupt registers offsets and masks */ | ||
32 | #define SPEAR310_INT_STS_MASK_REG 0x04 | ||
33 | #define SPEAR310_SMII0_IRQ_MASK (1 << 0) | ||
34 | #define SPEAR310_SMII1_IRQ_MASK (1 << 1) | ||
35 | #define SPEAR310_SMII2_IRQ_MASK (1 << 2) | ||
36 | #define SPEAR310_SMII3_IRQ_MASK (1 << 3) | ||
37 | #define SPEAR310_WAKEUP_SMII0_IRQ_MASK (1 << 4) | ||
38 | #define SPEAR310_WAKEUP_SMII1_IRQ_MASK (1 << 5) | ||
39 | #define SPEAR310_WAKEUP_SMII2_IRQ_MASK (1 << 6) | ||
40 | #define SPEAR310_WAKEUP_SMII3_IRQ_MASK (1 << 7) | ||
41 | #define SPEAR310_UART1_IRQ_MASK (1 << 8) | ||
42 | #define SPEAR310_UART2_IRQ_MASK (1 << 9) | ||
43 | #define SPEAR310_UART3_IRQ_MASK (1 << 10) | ||
44 | #define SPEAR310_UART4_IRQ_MASK (1 << 11) | ||
45 | #define SPEAR310_UART5_IRQ_MASK (1 << 12) | ||
46 | #define SPEAR310_EMI_IRQ_MASK (1 << 13) | ||
47 | #define SPEAR310_TDM_HDLC_IRQ_MASK (1 << 14) | ||
48 | #define SPEAR310_RS485_0_IRQ_MASK (1 << 15) | ||
49 | #define SPEAR310_RS485_1_IRQ_MASK (1 << 16) | ||
50 | |||
51 | #define SPEAR310_SHIRQ_RAS1_MASK 0x000FF | ||
52 | #define SPEAR310_SHIRQ_RAS2_MASK 0x01F00 | ||
53 | #define SPEAR310_SHIRQ_RAS3_MASK 0x02000 | ||
54 | #define SPEAR310_SHIRQ_INTRCOMM_RAS_MASK 0x1C000 | ||
55 | |||
56 | #endif /* __MACH_SPEAR310_H */ | ||
57 | |||
58 | #endif /* CONFIG_MACH_SPEAR310 */ | ||
diff --git a/arch/arm/mach-spear3xx/include/mach/spear320.h b/arch/arm/mach-spear3xx/include/mach/spear320.h new file mode 100644 index 00000000000..8cfa83fa129 --- /dev/null +++ b/arch/arm/mach-spear3xx/include/mach/spear320.h | |||
@@ -0,0 +1,67 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-spear3xx/include/mach/spear320.h | ||
3 | * | ||
4 | * SPEAr320 Machine specific definition | ||
5 | * | ||
6 | * Copyright (C) 2009 ST Microelectronics | ||
7 | * Viresh Kumar<viresh.kumar@st.com> | ||
8 | * | ||
9 | * This file is licensed under the terms of the GNU General Public | ||
10 | * License version 2. This program is licensed "as is" without any | ||
11 | * warranty of any kind, whether express or implied. | ||
12 | */ | ||
13 | |||
14 | #ifdef CONFIG_MACH_SPEAR320 | ||
15 | |||
16 | #ifndef __MACH_SPEAR320_H | ||
17 | #define __MACH_SPEAR320_H | ||
18 | |||
19 | #define SPEAR320_EMI_CTRL_BASE UL(0x40000000) | ||
20 | #define SPEAR320_FSMC_BASE UL(0x4C000000) | ||
21 | #define SPEAR320_NAND_BASE UL(0x50000000) | ||
22 | #define SPEAR320_I2S_BASE UL(0x60000000) | ||
23 | #define SPEAR320_SDHCI_BASE UL(0x70000000) | ||
24 | #define SPEAR320_CLCD_BASE UL(0x90000000) | ||
25 | #define SPEAR320_PAR_PORT_BASE UL(0xA0000000) | ||
26 | #define SPEAR320_CAN0_BASE UL(0xA1000000) | ||
27 | #define SPEAR320_CAN1_BASE UL(0xA2000000) | ||
28 | #define SPEAR320_UART1_BASE UL(0xA3000000) | ||
29 | #define SPEAR320_UART2_BASE UL(0xA4000000) | ||
30 | #define SPEAR320_SSP0_BASE UL(0xA5000000) | ||
31 | #define SPEAR320_SSP1_BASE UL(0xA6000000) | ||
32 | #define SPEAR320_I2C_BASE UL(0xA7000000) | ||
33 | #define SPEAR320_PWM_BASE UL(0xA8000000) | ||
34 | #define SPEAR320_SMII0_BASE UL(0xAA000000) | ||
35 | #define SPEAR320_SMII1_BASE UL(0xAB000000) | ||
36 | #define SPEAR320_SOC_CONFIG_BASE UL(0xB3000000) | ||
37 | |||
38 | /* Interrupt registers offsets and masks */ | ||
39 | #define SPEAR320_INT_STS_MASK_REG 0x04 | ||
40 | #define SPEAR320_INT_CLR_MASK_REG 0x04 | ||
41 | #define SPEAR320_INT_ENB_MASK_REG 0x08 | ||
42 | #define SPEAR320_GPIO_IRQ_MASK (1 << 0) | ||
43 | #define SPEAR320_I2S_PLAY_IRQ_MASK (1 << 1) | ||
44 | #define SPEAR320_I2S_REC_IRQ_MASK (1 << 2) | ||
45 | #define SPEAR320_EMI_IRQ_MASK (1 << 7) | ||
46 | #define SPEAR320_CLCD_IRQ_MASK (1 << 8) | ||
47 | #define SPEAR320_SPP_IRQ_MASK (1 << 9) | ||
48 | #define SPEAR320_SDHCI_IRQ_MASK (1 << 10) | ||
49 | #define SPEAR320_CAN_U_IRQ_MASK (1 << 11) | ||
50 | #define SPEAR320_CAN_L_IRQ_MASK (1 << 12) | ||
51 | #define SPEAR320_UART1_IRQ_MASK (1 << 13) | ||
52 | #define SPEAR320_UART2_IRQ_MASK (1 << 14) | ||
53 | #define SPEAR320_SSP1_IRQ_MASK (1 << 15) | ||
54 | #define SPEAR320_SSP2_IRQ_MASK (1 << 16) | ||
55 | #define SPEAR320_SMII0_IRQ_MASK (1 << 17) | ||
56 | #define SPEAR320_MII1_SMII1_IRQ_MASK (1 << 18) | ||
57 | #define SPEAR320_WAKEUP_SMII0_IRQ_MASK (1 << 19) | ||
58 | #define SPEAR320_WAKEUP_MII1_SMII1_IRQ_MASK (1 << 20) | ||
59 | #define SPEAR320_I2C1_IRQ_MASK (1 << 21) | ||
60 | |||
61 | #define SPEAR320_SHIRQ_RAS1_MASK 0x000380 | ||
62 | #define SPEAR320_SHIRQ_RAS3_MASK 0x000007 | ||
63 | #define SPEAR320_SHIRQ_INTRCOMM_RAS_MASK 0x3FF800 | ||
64 | |||
65 | #endif /* __MACH_SPEAR320_H */ | ||
66 | |||
67 | #endif /* CONFIG_MACH_SPEAR320 */ | ||
diff --git a/arch/arm/mach-spear3xx/include/mach/system.h b/arch/arm/mach-spear3xx/include/mach/system.h new file mode 100644 index 00000000000..92cee6335c9 --- /dev/null +++ b/arch/arm/mach-spear3xx/include/mach/system.h | |||
@@ -0,0 +1,19 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-spear3xx/include/mach/system.h | ||
3 | * | ||
4 | * SPEAr3xx Machine family specific architecture functions | ||
5 | * | ||
6 | * Copyright (C) 2009 ST Microelectronics | ||
7 | * Viresh Kumar<viresh.kumar@st.com> | ||
8 | * | ||
9 | * This file is licensed under the terms of the GNU General Public | ||
10 | * License version 2. This program is licensed "as is" without any | ||
11 | * warranty of any kind, whether express or implied. | ||
12 | */ | ||
13 | |||
14 | #ifndef __MACH_SYSTEM_H | ||
15 | #define __MACH_SYSTEM_H | ||
16 | |||
17 | #include <plat/system.h> | ||
18 | |||
19 | #endif /* __MACH_SYSTEM_H */ | ||
diff --git a/arch/arm/mach-spear3xx/include/mach/vmalloc.h b/arch/arm/mach-spear3xx/include/mach/vmalloc.h new file mode 100644 index 00000000000..df977b3c9a6 --- /dev/null +++ b/arch/arm/mach-spear3xx/include/mach/vmalloc.h | |||
@@ -0,0 +1,19 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-spear3xx/include/mach/vmalloc.h | ||
3 | * | ||
4 | * Defining Vmalloc area for SPEAr3xx machine family | ||
5 | * | ||
6 | * Copyright (C) 2009 ST Microelectronics | ||
7 | * Viresh Kumar<viresh.kumar@st.com> | ||
8 | * | ||
9 | * This file is licensed under the terms of the GNU General Public | ||
10 | * License version 2. This program is licensed "as is" without any | ||
11 | * warranty of any kind, whether express or implied. | ||
12 | */ | ||
13 | |||
14 | #ifndef __MACH_VMALLOC_H | ||
15 | #define __MACH_VMALLOC_H | ||
16 | |||
17 | #include <plat/vmalloc.h> | ||
18 | |||
19 | #endif /* __MACH_VMALLOC_H */ | ||
diff --git a/arch/arm/mach-spear3xx/spear300_evb.c b/arch/arm/mach-spear3xx/spear300_evb.c new file mode 100644 index 00000000000..69006f69422 --- /dev/null +++ b/arch/arm/mach-spear3xx/spear300_evb.c | |||
@@ -0,0 +1,72 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-spear3xx/spear300_evb.c | ||
3 | * | ||
4 | * SPEAr300 evaluation board source file | ||
5 | * | ||
6 | * Copyright (C) 2009 ST Microelectronics | ||
7 | * Viresh Kumar<viresh.kumar@st.com> | ||
8 | * | ||
9 | * This file is licensed under the terms of the GNU General Public | ||
10 | * License version 2. This program is licensed "as is" without any | ||
11 | * warranty of any kind, whether express or implied. | ||
12 | */ | ||
13 | |||
14 | #include <asm/mach/arch.h> | ||
15 | #include <asm/mach-types.h> | ||
16 | #include <mach/generic.h> | ||
17 | #include <mach/hardware.h> | ||
18 | |||
19 | /* padmux devices to enable */ | ||
20 | static struct pmx_dev *pmx_devs[] = { | ||
21 | /* spear3xx specific devices */ | ||
22 | &spear3xx_pmx_i2c, | ||
23 | &spear3xx_pmx_ssp_cs, | ||
24 | &spear3xx_pmx_ssp, | ||
25 | &spear3xx_pmx_mii, | ||
26 | &spear3xx_pmx_uart0, | ||
27 | |||
28 | /* spear300 specific devices */ | ||
29 | &spear300_pmx_fsmc_2_chips, | ||
30 | &spear300_pmx_clcd, | ||
31 | &spear300_pmx_telecom_sdhci_4bit, | ||
32 | &spear300_pmx_gpio1, | ||
33 | }; | ||
34 | |||
35 | static struct amba_device *amba_devs[] __initdata = { | ||
36 | /* spear3xx specific devices */ | ||
37 | &spear3xx_gpio_device, | ||
38 | &spear3xx_uart_device, | ||
39 | |||
40 | /* spear300 specific devices */ | ||
41 | &spear300_gpio1_device, | ||
42 | }; | ||
43 | |||
44 | static struct platform_device *plat_devs[] __initdata = { | ||
45 | /* spear3xx specific devices */ | ||
46 | |||
47 | /* spear300 specific devices */ | ||
48 | }; | ||
49 | |||
50 | static void __init spear300_evb_init(void) | ||
51 | { | ||
52 | unsigned int i; | ||
53 | |||
54 | /* call spear300 machine init function */ | ||
55 | spear300_init(&spear300_photo_frame_mode, pmx_devs, | ||
56 | ARRAY_SIZE(pmx_devs)); | ||
57 | |||
58 | /* Add Platform Devices */ | ||
59 | platform_add_devices(plat_devs, ARRAY_SIZE(plat_devs)); | ||
60 | |||
61 | /* Add Amba Devices */ | ||
62 | for (i = 0; i < ARRAY_SIZE(amba_devs); i++) | ||
63 | amba_device_register(amba_devs[i], &iomem_resource); | ||
64 | } | ||
65 | |||
66 | MACHINE_START(SPEAR300, "ST-SPEAR300-EVB") | ||
67 | .boot_params = 0x00000100, | ||
68 | .map_io = spear3xx_map_io, | ||
69 | .init_irq = spear3xx_init_irq, | ||
70 | .timer = &spear3xx_timer, | ||
71 | .init_machine = spear300_evb_init, | ||
72 | MACHINE_END | ||
diff --git a/arch/arm/mach-spear3xx/spear310_evb.c b/arch/arm/mach-spear3xx/spear310_evb.c new file mode 100644 index 00000000000..c8684ce1f9b --- /dev/null +++ b/arch/arm/mach-spear3xx/spear310_evb.c | |||
@@ -0,0 +1,78 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-spear3xx/spear310_evb.c | ||
3 | * | ||
4 | * SPEAr310 evaluation board source file | ||
5 | * | ||
6 | * Copyright (C) 2009 ST Microelectronics | ||
7 | * Viresh Kumar<viresh.kumar@st.com> | ||
8 | * | ||
9 | * This file is licensed under the terms of the GNU General Public | ||
10 | * License version 2. This program is licensed "as is" without any | ||
11 | * warranty of any kind, whether express or implied. | ||
12 | */ | ||
13 | |||
14 | #include <asm/mach/arch.h> | ||
15 | #include <asm/mach-types.h> | ||
16 | #include <mach/generic.h> | ||
17 | #include <mach/hardware.h> | ||
18 | |||
19 | /* padmux devices to enable */ | ||
20 | static struct pmx_dev *pmx_devs[] = { | ||
21 | /* spear3xx specific devices */ | ||
22 | &spear3xx_pmx_i2c, | ||
23 | &spear3xx_pmx_ssp, | ||
24 | &spear3xx_pmx_gpio_pin0, | ||
25 | &spear3xx_pmx_gpio_pin1, | ||
26 | &spear3xx_pmx_gpio_pin2, | ||
27 | &spear3xx_pmx_gpio_pin3, | ||
28 | &spear3xx_pmx_gpio_pin4, | ||
29 | &spear3xx_pmx_gpio_pin5, | ||
30 | &spear3xx_pmx_uart0, | ||
31 | |||
32 | /* spear310 specific devices */ | ||
33 | &spear310_pmx_emi_cs_0_1_4_5, | ||
34 | &spear310_pmx_emi_cs_2_3, | ||
35 | &spear310_pmx_uart1, | ||
36 | &spear310_pmx_uart2, | ||
37 | &spear310_pmx_uart3_4_5, | ||
38 | &spear310_pmx_fsmc, | ||
39 | &spear310_pmx_rs485_0_1, | ||
40 | &spear310_pmx_tdm0, | ||
41 | }; | ||
42 | |||
43 | static struct amba_device *amba_devs[] __initdata = { | ||
44 | /* spear3xx specific devices */ | ||
45 | &spear3xx_gpio_device, | ||
46 | &spear3xx_uart_device, | ||
47 | |||
48 | /* spear310 specific devices */ | ||
49 | }; | ||
50 | |||
51 | static struct platform_device *plat_devs[] __initdata = { | ||
52 | /* spear3xx specific devices */ | ||
53 | |||
54 | /* spear310 specific devices */ | ||
55 | }; | ||
56 | |||
57 | static void __init spear310_evb_init(void) | ||
58 | { | ||
59 | unsigned int i; | ||
60 | |||
61 | /* call spear310 machine init function */ | ||
62 | spear310_init(NULL, pmx_devs, ARRAY_SIZE(pmx_devs)); | ||
63 | |||
64 | /* Add Platform Devices */ | ||
65 | platform_add_devices(plat_devs, ARRAY_SIZE(plat_devs)); | ||
66 | |||
67 | /* Add Amba Devices */ | ||
68 | for (i = 0; i < ARRAY_SIZE(amba_devs); i++) | ||
69 | amba_device_register(amba_devs[i], &iomem_resource); | ||
70 | } | ||
71 | |||
72 | MACHINE_START(SPEAR310, "ST-SPEAR310-EVB") | ||
73 | .boot_params = 0x00000100, | ||
74 | .map_io = spear3xx_map_io, | ||
75 | .init_irq = spear3xx_init_irq, | ||
76 | .timer = &spear3xx_timer, | ||
77 | .init_machine = spear310_evb_init, | ||
78 | MACHINE_END | ||
diff --git a/arch/arm/mach-spear3xx/spear320_evb.c b/arch/arm/mach-spear3xx/spear320_evb.c new file mode 100644 index 00000000000..a12b353940d --- /dev/null +++ b/arch/arm/mach-spear3xx/spear320_evb.c | |||
@@ -0,0 +1,76 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-spear3xx/spear320_evb.c | ||
3 | * | ||
4 | * SPEAr320 evaluation board source file | ||
5 | * | ||
6 | * Copyright (C) 2009 ST Microelectronics | ||
7 | * Viresh Kumar<viresh.kumar@st.com> | ||
8 | * | ||
9 | * This file is licensed under the terms of the GNU General Public | ||
10 | * License version 2. This program is licensed "as is" without any | ||
11 | * warranty of any kind, whether express or implied. | ||
12 | */ | ||
13 | |||
14 | #include <asm/mach/arch.h> | ||
15 | #include <asm/mach-types.h> | ||
16 | #include <mach/generic.h> | ||
17 | #include <mach/hardware.h> | ||
18 | |||
19 | /* padmux devices to enable */ | ||
20 | static struct pmx_dev *pmx_devs[] = { | ||
21 | /* spear3xx specific devices */ | ||
22 | &spear3xx_pmx_i2c, | ||
23 | &spear3xx_pmx_ssp, | ||
24 | &spear3xx_pmx_mii, | ||
25 | &spear3xx_pmx_uart0, | ||
26 | |||
27 | /* spear320 specific devices */ | ||
28 | &spear320_pmx_fsmc, | ||
29 | &spear320_pmx_sdhci, | ||
30 | &spear320_pmx_i2s, | ||
31 | &spear320_pmx_uart1, | ||
32 | &spear320_pmx_uart2, | ||
33 | &spear320_pmx_can, | ||
34 | &spear320_pmx_pwm0, | ||
35 | &spear320_pmx_pwm1, | ||
36 | &spear320_pmx_pwm2, | ||
37 | &spear320_pmx_mii1, | ||
38 | }; | ||
39 | |||
40 | static struct amba_device *amba_devs[] __initdata = { | ||
41 | /* spear3xx specific devices */ | ||
42 | &spear3xx_gpio_device, | ||
43 | &spear3xx_uart_device, | ||
44 | |||
45 | /* spear320 specific devices */ | ||
46 | }; | ||
47 | |||
48 | static struct platform_device *plat_devs[] __initdata = { | ||
49 | /* spear3xx specific devices */ | ||
50 | |||
51 | /* spear320 specific devices */ | ||
52 | }; | ||
53 | |||
54 | static void __init spear320_evb_init(void) | ||
55 | { | ||
56 | unsigned int i; | ||
57 | |||
58 | /* call spear320 machine init function */ | ||
59 | spear320_init(&spear320_auto_net_mii_mode, pmx_devs, | ||
60 | ARRAY_SIZE(pmx_devs)); | ||
61 | |||
62 | /* Add Platform Devices */ | ||
63 | platform_add_devices(plat_devs, ARRAY_SIZE(plat_devs)); | ||
64 | |||
65 | /* Add Amba Devices */ | ||
66 | for (i = 0; i < ARRAY_SIZE(amba_devs); i++) | ||
67 | amba_device_register(amba_devs[i], &iomem_resource); | ||
68 | } | ||
69 | |||
70 | MACHINE_START(SPEAR320, "ST-SPEAR320-EVB") | ||
71 | .boot_params = 0x00000100, | ||
72 | .map_io = spear3xx_map_io, | ||
73 | .init_irq = spear3xx_init_irq, | ||
74 | .timer = &spear3xx_timer, | ||
75 | .init_machine = spear320_evb_init, | ||
76 | MACHINE_END | ||