diff options
Diffstat (limited to 'arch/arm/plat-spear')
-rw-r--r-- | arch/arm/plat-spear/Kconfig | 3 | ||||
-rw-r--r-- | arch/arm/plat-spear/Makefile | 2 | ||||
-rw-r--r-- | arch/arm/plat-spear/include/plat/debug-macro.S | 2 | ||||
-rw-r--r-- | arch/arm/plat-spear/include/plat/hardware.h | 17 | ||||
-rw-r--r-- | arch/arm/plat-spear/include/plat/pl080.h | 21 | ||||
-rw-r--r-- | arch/arm/plat-spear/include/plat/uncompress.h | 2 | ||||
-rw-r--r-- | arch/arm/plat-spear/pl080.c | 80 | ||||
-rw-r--r-- | arch/arm/plat-spear/restart.c | 2 | ||||
-rw-r--r-- | arch/arm/plat-spear/time.c | 17 |
9 files changed, 115 insertions, 31 deletions
diff --git a/arch/arm/plat-spear/Kconfig b/arch/arm/plat-spear/Kconfig index 1bb3dbce881..6c066fcb297 100644 --- a/arch/arm/plat-spear/Kconfig +++ b/arch/arm/plat-spear/Kconfig | |||
@@ -9,9 +9,10 @@ choice | |||
9 | default ARCH_SPEAR3XX | 9 | default ARCH_SPEAR3XX |
10 | 10 | ||
11 | config ARCH_SPEAR3XX | 11 | config ARCH_SPEAR3XX |
12 | bool "SPEAr3XX" | 12 | bool "ST SPEAr3xx with Device Tree" |
13 | select ARM_VIC | 13 | select ARM_VIC |
14 | select CPU_ARM926T | 14 | select CPU_ARM926T |
15 | select USE_OF | ||
15 | help | 16 | help |
16 | Supports for ARM's SPEAR3XX family | 17 | Supports for ARM's SPEAR3XX family |
17 | 18 | ||
diff --git a/arch/arm/plat-spear/Makefile b/arch/arm/plat-spear/Makefile index e0f2e5b9530..4af6258d0fe 100644 --- a/arch/arm/plat-spear/Makefile +++ b/arch/arm/plat-spear/Makefile | |||
@@ -3,6 +3,6 @@ | |||
3 | # | 3 | # |
4 | 4 | ||
5 | # Common support | 5 | # Common support |
6 | obj-y := clock.o restart.o time.o | 6 | obj-y := clock.o restart.o time.o pl080.o |
7 | 7 | ||
8 | obj-$(CONFIG_ARCH_SPEAR3XX) += shirq.o padmux.o | 8 | obj-$(CONFIG_ARCH_SPEAR3XX) += shirq.o padmux.o |
diff --git a/arch/arm/plat-spear/include/plat/debug-macro.S b/arch/arm/plat-spear/include/plat/debug-macro.S index 02b160a1ec9..ab3de721c5d 100644 --- a/arch/arm/plat-spear/include/plat/debug-macro.S +++ b/arch/arm/plat-spear/include/plat/debug-macro.S | |||
@@ -12,7 +12,7 @@ | |||
12 | */ | 12 | */ |
13 | 13 | ||
14 | #include <linux/amba/serial.h> | 14 | #include <linux/amba/serial.h> |
15 | #include <mach/hardware.h> | 15 | #include <mach/spear.h> |
16 | 16 | ||
17 | .macro addruart, rp, rv, tmp | 17 | .macro addruart, rp, rv, tmp |
18 | mov \rp, #SPEAR_DBG_UART_BASE @ Physical base | 18 | mov \rp, #SPEAR_DBG_UART_BASE @ Physical base |
diff --git a/arch/arm/plat-spear/include/plat/hardware.h b/arch/arm/plat-spear/include/plat/hardware.h deleted file mode 100644 index 70187d763e2..00000000000 --- a/arch/arm/plat-spear/include/plat/hardware.h +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
1 | /* | ||
2 | * arch/arm/plat-spear/include/plat/hardware.h | ||
3 | * | ||
4 | * Hardware definitions for SPEAr | ||
5 | * | ||
6 | * Copyright (C) 2010 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 __PLAT_HARDWARE_H | ||
15 | #define __PLAT_HARDWARE_H | ||
16 | |||
17 | #endif /* __PLAT_HARDWARE_H */ | ||
diff --git a/arch/arm/plat-spear/include/plat/pl080.h b/arch/arm/plat-spear/include/plat/pl080.h new file mode 100644 index 00000000000..e14a3e4932f --- /dev/null +++ b/arch/arm/plat-spear/include/plat/pl080.h | |||
@@ -0,0 +1,21 @@ | |||
1 | /* | ||
2 | * arch/arm/plat-spear/include/plat/pl080.h | ||
3 | * | ||
4 | * DMAC pl080 definitions for SPEAr platform | ||
5 | * | ||
6 | * Copyright (C) 2012 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 __PLAT_PL080_H | ||
15 | #define __PLAT_PL080_H | ||
16 | |||
17 | struct pl08x_dma_chan; | ||
18 | int pl080_get_signal(struct pl08x_dma_chan *ch); | ||
19 | void pl080_put_signal(struct pl08x_dma_chan *ch); | ||
20 | |||
21 | #endif /* __PLAT_PL080_H */ | ||
diff --git a/arch/arm/plat-spear/include/plat/uncompress.h b/arch/arm/plat-spear/include/plat/uncompress.h index 1bf84527aee..6dd455bafdf 100644 --- a/arch/arm/plat-spear/include/plat/uncompress.h +++ b/arch/arm/plat-spear/include/plat/uncompress.h | |||
@@ -13,7 +13,7 @@ | |||
13 | 13 | ||
14 | #include <linux/io.h> | 14 | #include <linux/io.h> |
15 | #include <linux/amba/serial.h> | 15 | #include <linux/amba/serial.h> |
16 | #include <mach/hardware.h> | 16 | #include <mach/spear.h> |
17 | 17 | ||
18 | #ifndef __PLAT_UNCOMPRESS_H | 18 | #ifndef __PLAT_UNCOMPRESS_H |
19 | #define __PLAT_UNCOMPRESS_H | 19 | #define __PLAT_UNCOMPRESS_H |
diff --git a/arch/arm/plat-spear/pl080.c b/arch/arm/plat-spear/pl080.c new file mode 100644 index 00000000000..a56a067717c --- /dev/null +++ b/arch/arm/plat-spear/pl080.c | |||
@@ -0,0 +1,80 @@ | |||
1 | /* | ||
2 | * arch/arm/plat-spear/pl080.c | ||
3 | * | ||
4 | * DMAC pl080 definitions for SPEAr platform | ||
5 | * | ||
6 | * Copyright (C) 2012 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/amba/pl08x.h> | ||
15 | #include <linux/amba/bus.h> | ||
16 | #include <linux/bug.h> | ||
17 | #include <linux/err.h> | ||
18 | #include <linux/io.h> | ||
19 | #include <linux/spinlock_types.h> | ||
20 | #include <mach/spear.h> | ||
21 | #include <mach/misc_regs.h> | ||
22 | |||
23 | static spinlock_t lock = __SPIN_LOCK_UNLOCKED(x); | ||
24 | |||
25 | struct { | ||
26 | unsigned char busy; | ||
27 | unsigned char val; | ||
28 | } signals[16] = {{0, 0}, }; | ||
29 | |||
30 | int pl080_get_signal(struct pl08x_dma_chan *ch) | ||
31 | { | ||
32 | const struct pl08x_channel_data *cd = ch->cd; | ||
33 | unsigned int signal = cd->min_signal, val; | ||
34 | unsigned long flags; | ||
35 | |||
36 | spin_lock_irqsave(&lock, flags); | ||
37 | |||
38 | /* Return if signal is already acquired by somebody else */ | ||
39 | if (signals[signal].busy && | ||
40 | (signals[signal].val != cd->muxval)) { | ||
41 | spin_unlock_irqrestore(&lock, flags); | ||
42 | return -EBUSY; | ||
43 | } | ||
44 | |||
45 | /* If acquiring for the first time, configure it */ | ||
46 | if (!signals[signal].busy) { | ||
47 | val = readl(DMA_CHN_CFG); | ||
48 | |||
49 | /* | ||
50 | * Each request line has two bits in DMA_CHN_CFG register. To | ||
51 | * goto the bits of current request line, do left shift of | ||
52 | * value by 2 * signal number. | ||
53 | */ | ||
54 | val &= ~(0x3 << (signal * 2)); | ||
55 | val |= cd->muxval << (signal * 2); | ||
56 | writel(val, DMA_CHN_CFG); | ||
57 | } | ||
58 | |||
59 | signals[signal].busy++; | ||
60 | signals[signal].val = cd->muxval; | ||
61 | spin_unlock_irqrestore(&lock, flags); | ||
62 | |||
63 | return signal; | ||
64 | } | ||
65 | |||
66 | void pl080_put_signal(struct pl08x_dma_chan *ch) | ||
67 | { | ||
68 | const struct pl08x_channel_data *cd = ch->cd; | ||
69 | unsigned long flags; | ||
70 | |||
71 | spin_lock_irqsave(&lock, flags); | ||
72 | |||
73 | /* if signal is not used */ | ||
74 | if (!signals[cd->min_signal].busy) | ||
75 | BUG(); | ||
76 | |||
77 | signals[cd->min_signal].busy--; | ||
78 | |||
79 | spin_unlock_irqrestore(&lock, flags); | ||
80 | } | ||
diff --git a/arch/arm/plat-spear/restart.c b/arch/arm/plat-spear/restart.c index 16f203e78d8..4471a232713 100644 --- a/arch/arm/plat-spear/restart.c +++ b/arch/arm/plat-spear/restart.c | |||
@@ -13,7 +13,7 @@ | |||
13 | #include <linux/io.h> | 13 | #include <linux/io.h> |
14 | #include <asm/system_misc.h> | 14 | #include <asm/system_misc.h> |
15 | #include <asm/hardware/sp810.h> | 15 | #include <asm/hardware/sp810.h> |
16 | #include <mach/hardware.h> | 16 | #include <mach/spear.h> |
17 | #include <mach/generic.h> | 17 | #include <mach/generic.h> |
18 | 18 | ||
19 | void spear_restart(char mode, const char *cmd) | 19 | void spear_restart(char mode, const char *cmd) |
diff --git a/arch/arm/plat-spear/time.c b/arch/arm/plat-spear/time.c index abb5bdecd50..a3164d1647f 100644 --- a/arch/arm/plat-spear/time.c +++ b/arch/arm/plat-spear/time.c | |||
@@ -15,14 +15,13 @@ | |||
15 | #include <linux/err.h> | 15 | #include <linux/err.h> |
16 | #include <linux/init.h> | 16 | #include <linux/init.h> |
17 | #include <linux/interrupt.h> | 17 | #include <linux/interrupt.h> |
18 | #include <linux/ioport.h> | ||
18 | #include <linux/io.h> | 19 | #include <linux/io.h> |
19 | #include <linux/kernel.h> | 20 | #include <linux/kernel.h> |
20 | #include <linux/time.h> | 21 | #include <linux/time.h> |
21 | #include <linux/irq.h> | 22 | #include <linux/irq.h> |
22 | #include <asm/mach/time.h> | 23 | #include <asm/mach/time.h> |
23 | #include <mach/generic.h> | 24 | #include <mach/generic.h> |
24 | #include <mach/hardware.h> | ||
25 | #include <mach/irqs.h> | ||
26 | 25 | ||
27 | /* | 26 | /* |
28 | * We would use TIMER0 and TIMER1 as clockevent and clocksource. | 27 | * We would use TIMER0 and TIMER1 as clockevent and clocksource. |
@@ -175,7 +174,7 @@ static struct irqaction spear_timer_irq = { | |||
175 | .handler = spear_timer_interrupt | 174 | .handler = spear_timer_interrupt |
176 | }; | 175 | }; |
177 | 176 | ||
178 | static void __init spear_clockevent_init(void) | 177 | static void __init spear_clockevent_init(int irq) |
179 | { | 178 | { |
180 | u32 tick_rate; | 179 | u32 tick_rate; |
181 | 180 | ||
@@ -195,19 +194,19 @@ static void __init spear_clockevent_init(void) | |||
195 | 194 | ||
196 | clockevents_register_device(&clkevt); | 195 | clockevents_register_device(&clkevt); |
197 | 196 | ||
198 | setup_irq(SPEAR_GPT0_CHAN0_IRQ, &spear_timer_irq); | 197 | setup_irq(irq, &spear_timer_irq); |
199 | } | 198 | } |
200 | 199 | ||
201 | void __init spear_setup_timer(void) | 200 | void __init spear_setup_timer(resource_size_t base, int irq) |
202 | { | 201 | { |
203 | int ret; | 202 | int ret; |
204 | 203 | ||
205 | if (!request_mem_region(SPEAR_GPT0_BASE, SZ_1K, "gpt0")) { | 204 | if (!request_mem_region(base, SZ_1K, "gpt0")) { |
206 | pr_err("%s:cannot get IO addr\n", __func__); | 205 | pr_err("%s:cannot get IO addr\n", __func__); |
207 | return; | 206 | return; |
208 | } | 207 | } |
209 | 208 | ||
210 | gpt_base = (void __iomem *)ioremap(SPEAR_GPT0_BASE, SZ_1K); | 209 | gpt_base = ioremap(base, SZ_1K); |
211 | if (!gpt_base) { | 210 | if (!gpt_base) { |
212 | pr_err("%s:ioremap failed for gpt\n", __func__); | 211 | pr_err("%s:ioremap failed for gpt\n", __func__); |
213 | goto err_mem; | 212 | goto err_mem; |
@@ -225,7 +224,7 @@ void __init spear_setup_timer(void) | |||
225 | goto err_clk; | 224 | goto err_clk; |
226 | } | 225 | } |
227 | 226 | ||
228 | spear_clockevent_init(); | 227 | spear_clockevent_init(irq); |
229 | spear_clocksource_init(); | 228 | spear_clocksource_init(); |
230 | 229 | ||
231 | return; | 230 | return; |
@@ -235,5 +234,5 @@ err_clk: | |||
235 | err_iomap: | 234 | err_iomap: |
236 | iounmap(gpt_base); | 235 | iounmap(gpt_base); |
237 | err_mem: | 236 | err_mem: |
238 | release_mem_region(SPEAR_GPT0_BASE, SZ_1K); | 237 | release_mem_region(base, SZ_1K); |
239 | } | 238 | } |