diff options
212 files changed, 3899 insertions, 7750 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 43449305961e..7275009686e6 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -469,7 +469,7 @@ config ARCH_IXP4XX | |||
469 | 469 | ||
470 | config ARCH_DOVE | 470 | config ARCH_DOVE |
471 | bool "Marvell Dove" | 471 | bool "Marvell Dove" |
472 | select CPU_V6K | 472 | select CPU_V7 |
473 | select PCI | 473 | select PCI |
474 | select ARCH_REQUIRE_GPIOLIB | 474 | select ARCH_REQUIRE_GPIOLIB |
475 | select GENERIC_CLOCKEVENTS | 475 | select GENERIC_CLOCKEVENTS |
@@ -850,6 +850,7 @@ config ARCH_DAVINCI | |||
850 | select HAVE_IDE | 850 | select HAVE_IDE |
851 | select CLKDEV_LOOKUP | 851 | select CLKDEV_LOOKUP |
852 | select GENERIC_ALLOCATOR | 852 | select GENERIC_ALLOCATOR |
853 | select GENERIC_IRQ_CHIP | ||
853 | select ARCH_HAS_HOLES_MEMORYMODEL | 854 | select ARCH_HAS_HOLES_MEMORYMODEL |
854 | help | 855 | help |
855 | Support for TI's DaVinci platform. | 856 | Support for TI's DaVinci platform. |
@@ -1027,6 +1028,7 @@ config PLAT_IOP | |||
1027 | config PLAT_ORION | 1028 | config PLAT_ORION |
1028 | bool | 1029 | bool |
1029 | select CLKSRC_MMIO | 1030 | select CLKSRC_MMIO |
1031 | select GENERIC_IRQ_CHIP | ||
1030 | select HAVE_SCHED_CLOCK | 1032 | select HAVE_SCHED_CLOCK |
1031 | 1033 | ||
1032 | config PLAT_PXA | 1034 | config PLAT_PXA |
diff --git a/arch/arm/Makefile b/arch/arm/Makefile index 458a01516676..25750bcb3397 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile | |||
@@ -158,9 +158,8 @@ machine-$(CONFIG_ARCH_MV78XX0) := mv78xx0 | |||
158 | machine-$(CONFIG_ARCH_MX1) := imx | 158 | machine-$(CONFIG_ARCH_MX1) := imx |
159 | machine-$(CONFIG_ARCH_MX2) := imx | 159 | machine-$(CONFIG_ARCH_MX2) := imx |
160 | machine-$(CONFIG_ARCH_MX25) := imx | 160 | machine-$(CONFIG_ARCH_MX25) := imx |
161 | machine-$(CONFIG_ARCH_MX3) := mx3 | 161 | machine-$(CONFIG_ARCH_MX3) := imx |
162 | machine-$(CONFIG_ARCH_MX5) := mx5 | 162 | machine-$(CONFIG_ARCH_MX5) := mx5 |
163 | machine-$(CONFIG_ARCH_MXC91231) := mxc91231 | ||
164 | machine-$(CONFIG_ARCH_MXS) := mxs | 163 | machine-$(CONFIG_ARCH_MXS) := mxs |
165 | machine-$(CONFIG_ARCH_NETX) := netx | 164 | machine-$(CONFIG_ARCH_NETX) := netx |
166 | machine-$(CONFIG_ARCH_NOMADIK) := nomadik | 165 | machine-$(CONFIG_ARCH_NOMADIK) := nomadik |
diff --git a/arch/arm/boot/compressed/Makefile b/arch/arm/boot/compressed/Makefile index 0c6852d93506..23aad0722303 100644 --- a/arch/arm/boot/compressed/Makefile +++ b/arch/arm/boot/compressed/Makefile | |||
@@ -98,8 +98,6 @@ endif | |||
98 | ccflags-y := -fpic -fno-builtin | 98 | ccflags-y := -fpic -fno-builtin |
99 | asflags-y := -Wa,-march=all | 99 | asflags-y := -Wa,-march=all |
100 | 100 | ||
101 | # Provide size of uncompressed kernel to the decompressor via a linker symbol. | ||
102 | LDFLAGS_vmlinux = --defsym _image_size=$(shell stat -c "%s" $(obj)/../Image) | ||
103 | # Supply ZRELADDR to the decompressor via a linker symbol. | 101 | # Supply ZRELADDR to the decompressor via a linker symbol. |
104 | ifneq ($(CONFIG_AUTO_ZRELADDR),y) | 102 | ifneq ($(CONFIG_AUTO_ZRELADDR),y) |
105 | LDFLAGS_vmlinux += --defsym zreladdr=$(ZRELADDR) | 103 | LDFLAGS_vmlinux += --defsym zreladdr=$(ZRELADDR) |
@@ -122,10 +120,23 @@ lib1funcs = $(obj)/lib1funcs.o | |||
122 | $(obj)/lib1funcs.S: $(srctree)/arch/$(SRCARCH)/lib/lib1funcs.S FORCE | 120 | $(obj)/lib1funcs.S: $(srctree)/arch/$(SRCARCH)/lib/lib1funcs.S FORCE |
123 | $(call cmd,shipped) | 121 | $(call cmd,shipped) |
124 | 122 | ||
123 | # We need to prevent any GOTOFF relocs being used with references | ||
124 | # to symbols in the .bss section since we cannot relocate them | ||
125 | # independently from the rest at run time. This can be achieved by | ||
126 | # ensuring that no private .bss symbols exist, as global symbols | ||
127 | # always have a GOT entry which is what we need. | ||
128 | # The .data section is already discarded by the linker script so no need | ||
129 | # to bother about it here. | ||
130 | check_for_bad_syms = \ | ||
131 | bad_syms=$$($(CROSS_COMPILE)nm $@ | sed -n 's/^.\{8\} [bc] \(.*\)/\1/p') && \ | ||
132 | [ -z "$$bad_syms" ] || \ | ||
133 | ( echo "following symbols must have non local/private scope:" >&2; \ | ||
134 | echo "$$bad_syms" >&2; rm -f $@; false ) | ||
135 | |||
125 | $(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.$(suffix_y).o \ | 136 | $(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.$(suffix_y).o \ |
126 | $(addprefix $(obj)/, $(OBJS)) $(lib1funcs) FORCE | 137 | $(addprefix $(obj)/, $(OBJS)) $(lib1funcs) FORCE |
127 | $(call if_changed,ld) | 138 | $(call if_changed,ld) |
128 | @: | 139 | @$(check_for_bad_syms) |
129 | 140 | ||
130 | $(obj)/piggy.$(suffix_y): $(obj)/../Image FORCE | 141 | $(obj)/piggy.$(suffix_y): $(obj)/../Image FORCE |
131 | $(call if_changed,$(suffix_y)) | 142 | $(call if_changed,$(suffix_y)) |
diff --git a/arch/arm/boot/compressed/decompress.c b/arch/arm/boot/compressed/decompress.c index 4c72a97bc3e1..07be5a2f8302 100644 --- a/arch/arm/boot/compressed/decompress.c +++ b/arch/arm/boot/compressed/decompress.c | |||
@@ -44,7 +44,7 @@ extern void error(char *); | |||
44 | #include "../../../../lib/decompress_unlzma.c" | 44 | #include "../../../../lib/decompress_unlzma.c" |
45 | #endif | 45 | #endif |
46 | 46 | ||
47 | void do_decompress(u8 *input, int len, u8 *output, void (*error)(char *x)) | 47 | int do_decompress(u8 *input, int len, u8 *output, void (*error)(char *x)) |
48 | { | 48 | { |
49 | decompress(input, len, NULL, NULL, output, NULL, error); | 49 | return decompress(input, len, NULL, NULL, output, NULL, error); |
50 | } | 50 | } |
diff --git a/arch/arm/boot/compressed/head.S b/arch/arm/boot/compressed/head.S index 6fdf4abb718b..f9da41921c52 100644 --- a/arch/arm/boot/compressed/head.S +++ b/arch/arm/boot/compressed/head.S | |||
@@ -179,7 +179,7 @@ not_angel: | |||
179 | bl cache_on | 179 | bl cache_on |
180 | 180 | ||
181 | restart: adr r0, LC0 | 181 | restart: adr r0, LC0 |
182 | ldmia r0, {r1, r2, r3, r6, r9, r11, r12} | 182 | ldmia r0, {r1, r2, r3, r6, r10, r11, r12} |
183 | ldr sp, [r0, #28] | 183 | ldr sp, [r0, #28] |
184 | 184 | ||
185 | /* | 185 | /* |
@@ -188,6 +188,20 @@ restart: adr r0, LC0 | |||
188 | */ | 188 | */ |
189 | sub r0, r0, r1 @ calculate the delta offset | 189 | sub r0, r0, r1 @ calculate the delta offset |
190 | add r6, r6, r0 @ _edata | 190 | add r6, r6, r0 @ _edata |
191 | add r10, r10, r0 @ inflated kernel size location | ||
192 | |||
193 | /* | ||
194 | * The kernel build system appends the size of the | ||
195 | * decompressed kernel at the end of the compressed data | ||
196 | * in little-endian form. | ||
197 | */ | ||
198 | ldrb r9, [r10, #0] | ||
199 | ldrb lr, [r10, #1] | ||
200 | orr r9, r9, lr, lsl #8 | ||
201 | ldrb lr, [r10, #2] | ||
202 | ldrb r10, [r10, #3] | ||
203 | orr r9, r9, lr, lsl #16 | ||
204 | orr r9, r9, r10, lsl #24 | ||
191 | 205 | ||
192 | #ifndef CONFIG_ZBOOT_ROM | 206 | #ifndef CONFIG_ZBOOT_ROM |
193 | /* malloc space is above the relocated stack (64k max) */ | 207 | /* malloc space is above the relocated stack (64k max) */ |
@@ -347,10 +361,10 @@ LC0: .word LC0 @ r1 | |||
347 | .word __bss_start @ r2 | 361 | .word __bss_start @ r2 |
348 | .word _end @ r3 | 362 | .word _end @ r3 |
349 | .word _edata @ r6 | 363 | .word _edata @ r6 |
350 | .word _image_size @ r9 | 364 | .word input_data_end - 4 @ r10 (inflated size location) |
351 | .word _got_start @ r11 | 365 | .word _got_start @ r11 |
352 | .word _got_end @ ip | 366 | .word _got_end @ ip |
353 | .word user_stack_end @ sp | 367 | .word .L_user_stack_end @ sp |
354 | .size LC0, . - LC0 | 368 | .size LC0, . - LC0 |
355 | 369 | ||
356 | #ifdef CONFIG_ARCH_RPC | 370 | #ifdef CONFIG_ARCH_RPC |
@@ -763,12 +777,6 @@ proc_types: | |||
763 | W(b) __armv4_mmu_cache_off | 777 | W(b) __armv4_mmu_cache_off |
764 | W(b) __armv6_mmu_cache_flush | 778 | W(b) __armv6_mmu_cache_flush |
765 | 779 | ||
766 | .word 0x560f5810 @ Marvell PJ4 ARMv6 | ||
767 | .word 0xff0ffff0 | ||
768 | W(b) __armv4_mmu_cache_on | ||
769 | W(b) __armv4_mmu_cache_off | ||
770 | W(b) __armv6_mmu_cache_flush | ||
771 | |||
772 | .word 0x000f0000 @ new CPU Id | 780 | .word 0x000f0000 @ new CPU Id |
773 | .word 0x000f0000 | 781 | .word 0x000f0000 |
774 | W(b) __armv7_mmu_cache_on | 782 | W(b) __armv7_mmu_cache_on |
@@ -1094,5 +1102,5 @@ reloc_code_end: | |||
1094 | 1102 | ||
1095 | .align | 1103 | .align |
1096 | .section ".stack", "aw", %nobits | 1104 | .section ".stack", "aw", %nobits |
1097 | user_stack: .space 4096 | 1105 | .L_user_stack: .space 4096 |
1098 | user_stack_end: | 1106 | .L_user_stack_end: |
diff --git a/arch/arm/boot/compressed/misc.c b/arch/arm/boot/compressed/misc.c index 2df38263124c..832d37236c59 100644 --- a/arch/arm/boot/compressed/misc.c +++ b/arch/arm/boot/compressed/misc.c | |||
@@ -26,8 +26,6 @@ unsigned int __machine_arch_type; | |||
26 | #include <linux/linkage.h> | 26 | #include <linux/linkage.h> |
27 | #include <asm/string.h> | 27 | #include <asm/string.h> |
28 | 28 | ||
29 | #include <asm/unaligned.h> | ||
30 | |||
31 | 29 | ||
32 | static void putstr(const char *ptr); | 30 | static void putstr(const char *ptr); |
33 | extern void error(char *x); | 31 | extern void error(char *x); |
@@ -139,13 +137,12 @@ void *memcpy(void *__dest, __const void *__src, size_t __n) | |||
139 | } | 137 | } |
140 | 138 | ||
141 | /* | 139 | /* |
142 | * gzip delarations | 140 | * gzip declarations |
143 | */ | 141 | */ |
144 | extern char input_data[]; | 142 | extern char input_data[]; |
145 | extern char input_data_end[]; | 143 | extern char input_data_end[]; |
146 | 144 | ||
147 | unsigned char *output_data; | 145 | unsigned char *output_data; |
148 | unsigned long output_ptr; | ||
149 | 146 | ||
150 | unsigned long free_mem_ptr; | 147 | unsigned long free_mem_ptr; |
151 | unsigned long free_mem_end_ptr; | 148 | unsigned long free_mem_end_ptr; |
@@ -170,15 +167,15 @@ asmlinkage void __div0(void) | |||
170 | error("Attempting division by 0!"); | 167 | error("Attempting division by 0!"); |
171 | } | 168 | } |
172 | 169 | ||
173 | extern void do_decompress(u8 *input, int len, u8 *output, void (*error)(char *x)); | 170 | extern int do_decompress(u8 *input, int len, u8 *output, void (*error)(char *x)); |
174 | 171 | ||
175 | 172 | ||
176 | unsigned long | 173 | void |
177 | decompress_kernel(unsigned long output_start, unsigned long free_mem_ptr_p, | 174 | decompress_kernel(unsigned long output_start, unsigned long free_mem_ptr_p, |
178 | unsigned long free_mem_ptr_end_p, | 175 | unsigned long free_mem_ptr_end_p, |
179 | int arch_id) | 176 | int arch_id) |
180 | { | 177 | { |
181 | unsigned char *tmp; | 178 | int ret; |
182 | 179 | ||
183 | output_data = (unsigned char *)output_start; | 180 | output_data = (unsigned char *)output_start; |
184 | free_mem_ptr = free_mem_ptr_p; | 181 | free_mem_ptr = free_mem_ptr_p; |
@@ -187,12 +184,11 @@ decompress_kernel(unsigned long output_start, unsigned long free_mem_ptr_p, | |||
187 | 184 | ||
188 | arch_decomp_setup(); | 185 | arch_decomp_setup(); |
189 | 186 | ||
190 | tmp = (unsigned char *) (((unsigned long)input_data_end) - 4); | ||
191 | output_ptr = get_unaligned_le32(tmp); | ||
192 | |||
193 | putstr("Uncompressing Linux..."); | 187 | putstr("Uncompressing Linux..."); |
194 | do_decompress(input_data, input_data_end - input_data, | 188 | ret = do_decompress(input_data, input_data_end - input_data, |
195 | output_data, error); | 189 | output_data, error); |
196 | putstr(" done, booting the kernel.\n"); | 190 | if (ret) |
197 | return output_ptr; | 191 | error("decompressor returned an error"); |
192 | else | ||
193 | putstr(" done, booting the kernel.\n"); | ||
198 | } | 194 | } |
diff --git a/arch/arm/common/gic.c b/arch/arm/common/gic.c index f70ec7dadebb..4ddd0a6ac7ff 100644 --- a/arch/arm/common/gic.c +++ b/arch/arm/common/gic.c | |||
@@ -49,7 +49,7 @@ struct gic_chip_data { | |||
49 | * Default make them NULL. | 49 | * Default make them NULL. |
50 | */ | 50 | */ |
51 | struct irq_chip gic_arch_extn = { | 51 | struct irq_chip gic_arch_extn = { |
52 | .irq_ack = NULL, | 52 | .irq_eoi = NULL, |
53 | .irq_mask = NULL, | 53 | .irq_mask = NULL, |
54 | .irq_unmask = NULL, | 54 | .irq_unmask = NULL, |
55 | .irq_retrigger = NULL, | 55 | .irq_retrigger = NULL, |
@@ -84,21 +84,12 @@ static inline unsigned int gic_irq(struct irq_data *d) | |||
84 | /* | 84 | /* |
85 | * Routines to acknowledge, disable and enable interrupts | 85 | * Routines to acknowledge, disable and enable interrupts |
86 | */ | 86 | */ |
87 | static void gic_ack_irq(struct irq_data *d) | ||
88 | { | ||
89 | spin_lock(&irq_controller_lock); | ||
90 | if (gic_arch_extn.irq_ack) | ||
91 | gic_arch_extn.irq_ack(d); | ||
92 | writel(gic_irq(d), gic_cpu_base(d) + GIC_CPU_EOI); | ||
93 | spin_unlock(&irq_controller_lock); | ||
94 | } | ||
95 | |||
96 | static void gic_mask_irq(struct irq_data *d) | 87 | static void gic_mask_irq(struct irq_data *d) |
97 | { | 88 | { |
98 | u32 mask = 1 << (d->irq % 32); | 89 | u32 mask = 1 << (d->irq % 32); |
99 | 90 | ||
100 | spin_lock(&irq_controller_lock); | 91 | spin_lock(&irq_controller_lock); |
101 | writel(mask, gic_dist_base(d) + GIC_DIST_ENABLE_CLEAR + (gic_irq(d) / 32) * 4); | 92 | writel_relaxed(mask, gic_dist_base(d) + GIC_DIST_ENABLE_CLEAR + (gic_irq(d) / 32) * 4); |
102 | if (gic_arch_extn.irq_mask) | 93 | if (gic_arch_extn.irq_mask) |
103 | gic_arch_extn.irq_mask(d); | 94 | gic_arch_extn.irq_mask(d); |
104 | spin_unlock(&irq_controller_lock); | 95 | spin_unlock(&irq_controller_lock); |
@@ -111,10 +102,21 @@ static void gic_unmask_irq(struct irq_data *d) | |||
111 | spin_lock(&irq_controller_lock); | 102 | spin_lock(&irq_controller_lock); |
112 | if (gic_arch_extn.irq_unmask) | 103 | if (gic_arch_extn.irq_unmask) |
113 | gic_arch_extn.irq_unmask(d); | 104 | gic_arch_extn.irq_unmask(d); |
114 | writel(mask, gic_dist_base(d) + GIC_DIST_ENABLE_SET + (gic_irq(d) / 32) * 4); | 105 | writel_relaxed(mask, gic_dist_base(d) + GIC_DIST_ENABLE_SET + (gic_irq(d) / 32) * 4); |
115 | spin_unlock(&irq_controller_lock); | 106 | spin_unlock(&irq_controller_lock); |
116 | } | 107 | } |
117 | 108 | ||
109 | static void gic_eoi_irq(struct irq_data *d) | ||
110 | { | ||
111 | if (gic_arch_extn.irq_eoi) { | ||
112 | spin_lock(&irq_controller_lock); | ||
113 | gic_arch_extn.irq_eoi(d); | ||
114 | spin_unlock(&irq_controller_lock); | ||
115 | } | ||
116 | |||
117 | writel_relaxed(gic_irq(d), gic_cpu_base(d) + GIC_CPU_EOI); | ||
118 | } | ||
119 | |||
118 | static int gic_set_type(struct irq_data *d, unsigned int type) | 120 | static int gic_set_type(struct irq_data *d, unsigned int type) |
119 | { | 121 | { |
120 | void __iomem *base = gic_dist_base(d); | 122 | void __iomem *base = gic_dist_base(d); |
@@ -138,7 +140,7 @@ static int gic_set_type(struct irq_data *d, unsigned int type) | |||
138 | if (gic_arch_extn.irq_set_type) | 140 | if (gic_arch_extn.irq_set_type) |
139 | gic_arch_extn.irq_set_type(d, type); | 141 | gic_arch_extn.irq_set_type(d, type); |
140 | 142 | ||
141 | val = readl(base + GIC_DIST_CONFIG + confoff); | 143 | val = readl_relaxed(base + GIC_DIST_CONFIG + confoff); |
142 | if (type == IRQ_TYPE_LEVEL_HIGH) | 144 | if (type == IRQ_TYPE_LEVEL_HIGH) |
143 | val &= ~confmask; | 145 | val &= ~confmask; |
144 | else if (type == IRQ_TYPE_EDGE_RISING) | 146 | else if (type == IRQ_TYPE_EDGE_RISING) |
@@ -148,15 +150,15 @@ static int gic_set_type(struct irq_data *d, unsigned int type) | |||
148 | * As recommended by the spec, disable the interrupt before changing | 150 | * As recommended by the spec, disable the interrupt before changing |
149 | * the configuration | 151 | * the configuration |
150 | */ | 152 | */ |
151 | if (readl(base + GIC_DIST_ENABLE_SET + enableoff) & enablemask) { | 153 | if (readl_relaxed(base + GIC_DIST_ENABLE_SET + enableoff) & enablemask) { |
152 | writel(enablemask, base + GIC_DIST_ENABLE_CLEAR + enableoff); | 154 | writel_relaxed(enablemask, base + GIC_DIST_ENABLE_CLEAR + enableoff); |
153 | enabled = true; | 155 | enabled = true; |
154 | } | 156 | } |
155 | 157 | ||
156 | writel(val, base + GIC_DIST_CONFIG + confoff); | 158 | writel_relaxed(val, base + GIC_DIST_CONFIG + confoff); |
157 | 159 | ||
158 | if (enabled) | 160 | if (enabled) |
159 | writel(enablemask, base + GIC_DIST_ENABLE_SET + enableoff); | 161 | writel_relaxed(enablemask, base + GIC_DIST_ENABLE_SET + enableoff); |
160 | 162 | ||
161 | spin_unlock(&irq_controller_lock); | 163 | spin_unlock(&irq_controller_lock); |
162 | 164 | ||
@@ -188,8 +190,8 @@ static int gic_set_affinity(struct irq_data *d, const struct cpumask *mask_val, | |||
188 | 190 | ||
189 | spin_lock(&irq_controller_lock); | 191 | spin_lock(&irq_controller_lock); |
190 | d->node = cpu; | 192 | d->node = cpu; |
191 | val = readl(reg) & ~mask; | 193 | val = readl_relaxed(reg) & ~mask; |
192 | writel(val | bit, reg); | 194 | writel_relaxed(val | bit, reg); |
193 | spin_unlock(&irq_controller_lock); | 195 | spin_unlock(&irq_controller_lock); |
194 | 196 | ||
195 | return 0; | 197 | return 0; |
@@ -218,11 +220,10 @@ static void gic_handle_cascade_irq(unsigned int irq, struct irq_desc *desc) | |||
218 | unsigned int cascade_irq, gic_irq; | 220 | unsigned int cascade_irq, gic_irq; |
219 | unsigned long status; | 221 | unsigned long status; |
220 | 222 | ||
221 | /* primary controller ack'ing */ | 223 | chained_irq_enter(chip, desc); |
222 | chip->irq_ack(&desc->irq_data); | ||
223 | 224 | ||
224 | spin_lock(&irq_controller_lock); | 225 | spin_lock(&irq_controller_lock); |
225 | status = readl(chip_data->cpu_base + GIC_CPU_INTACK); | 226 | status = readl_relaxed(chip_data->cpu_base + GIC_CPU_INTACK); |
226 | spin_unlock(&irq_controller_lock); | 227 | spin_unlock(&irq_controller_lock); |
227 | 228 | ||
228 | gic_irq = (status & 0x3ff); | 229 | gic_irq = (status & 0x3ff); |
@@ -236,15 +237,14 @@ static void gic_handle_cascade_irq(unsigned int irq, struct irq_desc *desc) | |||
236 | generic_handle_irq(cascade_irq); | 237 | generic_handle_irq(cascade_irq); |
237 | 238 | ||
238 | out: | 239 | out: |
239 | /* primary controller unmasking */ | 240 | chained_irq_exit(chip, desc); |
240 | chip->irq_unmask(&desc->irq_data); | ||
241 | } | 241 | } |
242 | 242 | ||
243 | static struct irq_chip gic_chip = { | 243 | static struct irq_chip gic_chip = { |
244 | .name = "GIC", | 244 | .name = "GIC", |
245 | .irq_ack = gic_ack_irq, | ||
246 | .irq_mask = gic_mask_irq, | 245 | .irq_mask = gic_mask_irq, |
247 | .irq_unmask = gic_unmask_irq, | 246 | .irq_unmask = gic_unmask_irq, |
247 | .irq_eoi = gic_eoi_irq, | ||
248 | .irq_set_type = gic_set_type, | 248 | .irq_set_type = gic_set_type, |
249 | .irq_retrigger = gic_retrigger, | 249 | .irq_retrigger = gic_retrigger, |
250 | #ifdef CONFIG_SMP | 250 | #ifdef CONFIG_SMP |
@@ -272,13 +272,13 @@ static void __init gic_dist_init(struct gic_chip_data *gic, | |||
272 | cpumask |= cpumask << 8; | 272 | cpumask |= cpumask << 8; |
273 | cpumask |= cpumask << 16; | 273 | cpumask |= cpumask << 16; |
274 | 274 | ||
275 | writel(0, base + GIC_DIST_CTRL); | 275 | writel_relaxed(0, base + GIC_DIST_CTRL); |
276 | 276 | ||
277 | /* | 277 | /* |
278 | * Find out how many interrupts are supported. | 278 | * Find out how many interrupts are supported. |
279 | * The GIC only supports up to 1020 interrupt sources. | 279 | * The GIC only supports up to 1020 interrupt sources. |
280 | */ | 280 | */ |
281 | gic_irqs = readl(base + GIC_DIST_CTR) & 0x1f; | 281 | gic_irqs = readl_relaxed(base + GIC_DIST_CTR) & 0x1f; |
282 | gic_irqs = (gic_irqs + 1) * 32; | 282 | gic_irqs = (gic_irqs + 1) * 32; |
283 | if (gic_irqs > 1020) | 283 | if (gic_irqs > 1020) |
284 | gic_irqs = 1020; | 284 | gic_irqs = 1020; |
@@ -287,26 +287,26 @@ static void __init gic_dist_init(struct gic_chip_data *gic, | |||
287 | * Set all global interrupts to be level triggered, active low. | 287 | * Set all global interrupts to be level triggered, active low. |
288 | */ | 288 | */ |
289 | for (i = 32; i < gic_irqs; i += 16) | 289 | for (i = 32; i < gic_irqs; i += 16) |
290 | writel(0, base + GIC_DIST_CONFIG + i * 4 / 16); | 290 | writel_relaxed(0, base + GIC_DIST_CONFIG + i * 4 / 16); |
291 | 291 | ||
292 | /* | 292 | /* |
293 | * Set all global interrupts to this CPU only. | 293 | * Set all global interrupts to this CPU only. |
294 | */ | 294 | */ |
295 | for (i = 32; i < gic_irqs; i += 4) | 295 | for (i = 32; i < gic_irqs; i += 4) |
296 | writel(cpumask, base + GIC_DIST_TARGET + i * 4 / 4); | 296 | writel_relaxed(cpumask, base + GIC_DIST_TARGET + i * 4 / 4); |
297 | 297 | ||
298 | /* | 298 | /* |
299 | * Set priority on all global interrupts. | 299 | * Set priority on all global interrupts. |
300 | */ | 300 | */ |
301 | for (i = 32; i < gic_irqs; i += 4) | 301 | for (i = 32; i < gic_irqs; i += 4) |
302 | writel(0xa0a0a0a0, base + GIC_DIST_PRI + i * 4 / 4); | 302 | writel_relaxed(0xa0a0a0a0, base + GIC_DIST_PRI + i * 4 / 4); |
303 | 303 | ||
304 | /* | 304 | /* |
305 | * Disable all interrupts. Leave the PPI and SGIs alone | 305 | * Disable all interrupts. Leave the PPI and SGIs alone |
306 | * as these enables are banked registers. | 306 | * as these enables are banked registers. |
307 | */ | 307 | */ |
308 | for (i = 32; i < gic_irqs; i += 32) | 308 | for (i = 32; i < gic_irqs; i += 32) |
309 | writel(0xffffffff, base + GIC_DIST_ENABLE_CLEAR + i * 4 / 32); | 309 | writel_relaxed(0xffffffff, base + GIC_DIST_ENABLE_CLEAR + i * 4 / 32); |
310 | 310 | ||
311 | /* | 311 | /* |
312 | * Limit number of interrupts registered to the platform maximum | 312 | * Limit number of interrupts registered to the platform maximum |
@@ -319,12 +319,12 @@ static void __init gic_dist_init(struct gic_chip_data *gic, | |||
319 | * Setup the Linux IRQ subsystem. | 319 | * Setup the Linux IRQ subsystem. |
320 | */ | 320 | */ |
321 | for (i = irq_start; i < irq_limit; i++) { | 321 | for (i = irq_start; i < irq_limit; i++) { |
322 | irq_set_chip_and_handler(i, &gic_chip, handle_level_irq); | 322 | irq_set_chip_and_handler(i, &gic_chip, handle_fasteoi_irq); |
323 | irq_set_chip_data(i, gic); | 323 | irq_set_chip_data(i, gic); |
324 | set_irq_flags(i, IRQF_VALID | IRQF_PROBE); | 324 | set_irq_flags(i, IRQF_VALID | IRQF_PROBE); |
325 | } | 325 | } |
326 | 326 | ||
327 | writel(1, base + GIC_DIST_CTRL); | 327 | writel_relaxed(1, base + GIC_DIST_CTRL); |
328 | } | 328 | } |
329 | 329 | ||
330 | static void __cpuinit gic_cpu_init(struct gic_chip_data *gic) | 330 | static void __cpuinit gic_cpu_init(struct gic_chip_data *gic) |
@@ -337,17 +337,17 @@ static void __cpuinit gic_cpu_init(struct gic_chip_data *gic) | |||
337 | * Deal with the banked PPI and SGI interrupts - disable all | 337 | * Deal with the banked PPI and SGI interrupts - disable all |
338 | * PPI interrupts, ensure all SGI interrupts are enabled. | 338 | * PPI interrupts, ensure all SGI interrupts are enabled. |
339 | */ | 339 | */ |
340 | writel(0xffff0000, dist_base + GIC_DIST_ENABLE_CLEAR); | 340 | writel_relaxed(0xffff0000, dist_base + GIC_DIST_ENABLE_CLEAR); |
341 | writel(0x0000ffff, dist_base + GIC_DIST_ENABLE_SET); | 341 | writel_relaxed(0x0000ffff, dist_base + GIC_DIST_ENABLE_SET); |
342 | 342 | ||
343 | /* | 343 | /* |
344 | * Set priority on PPI and SGI interrupts | 344 | * Set priority on PPI and SGI interrupts |
345 | */ | 345 | */ |
346 | for (i = 0; i < 32; i += 4) | 346 | for (i = 0; i < 32; i += 4) |
347 | writel(0xa0a0a0a0, dist_base + GIC_DIST_PRI + i * 4 / 4); | 347 | writel_relaxed(0xa0a0a0a0, dist_base + GIC_DIST_PRI + i * 4 / 4); |
348 | 348 | ||
349 | writel(0xf0, base + GIC_CPU_PRIMASK); | 349 | writel_relaxed(0xf0, base + GIC_CPU_PRIMASK); |
350 | writel(1, base + GIC_CPU_CTRL); | 350 | writel_relaxed(1, base + GIC_CPU_CTRL); |
351 | } | 351 | } |
352 | 352 | ||
353 | void __init gic_init(unsigned int gic_nr, unsigned int irq_start, | 353 | void __init gic_init(unsigned int gic_nr, unsigned int irq_start, |
@@ -391,7 +391,13 @@ void gic_raise_softirq(const struct cpumask *mask, unsigned int irq) | |||
391 | { | 391 | { |
392 | unsigned long map = *cpus_addr(*mask); | 392 | unsigned long map = *cpus_addr(*mask); |
393 | 393 | ||
394 | /* | ||
395 | * Ensure that stores to Normal memory are visible to the | ||
396 | * other CPUs before issuing the IPI. | ||
397 | */ | ||
398 | dsb(); | ||
399 | |||
394 | /* this always happens on GIC0 */ | 400 | /* this always happens on GIC0 */ |
395 | writel(map << 16 | irq, gic_data[0].dist_base + GIC_DIST_SOFTINT); | 401 | writel_relaxed(map << 16 | irq, gic_data[0].dist_base + GIC_DIST_SOFTINT); |
396 | } | 402 | } |
397 | #endif | 403 | #endif |
diff --git a/arch/arm/configs/dove_defconfig b/arch/arm/configs/dove_defconfig index 54bf5eec8016..40db34cf2771 100644 --- a/arch/arm/configs/dove_defconfig +++ b/arch/arm/configs/dove_defconfig | |||
@@ -8,8 +8,6 @@ CONFIG_MODULE_UNLOAD=y | |||
8 | # CONFIG_BLK_DEV_BSG is not set | 8 | # CONFIG_BLK_DEV_BSG is not set |
9 | CONFIG_ARCH_DOVE=y | 9 | CONFIG_ARCH_DOVE=y |
10 | CONFIG_MACH_DOVE_DB=y | 10 | CONFIG_MACH_DOVE_DB=y |
11 | CONFIG_CPU_V6=y | ||
12 | CONFIG_CPU_32v6K=y | ||
13 | CONFIG_NO_HZ=y | 11 | CONFIG_NO_HZ=y |
14 | CONFIG_HIGH_RES_TIMERS=y | 12 | CONFIG_HIGH_RES_TIMERS=y |
15 | CONFIG_AEABI=y | 13 | CONFIG_AEABI=y |
@@ -44,7 +42,6 @@ CONFIG_MTD_UBI=y | |||
44 | CONFIG_BLK_DEV_LOOP=y | 42 | CONFIG_BLK_DEV_LOOP=y |
45 | CONFIG_BLK_DEV_RAM=y | 43 | CONFIG_BLK_DEV_RAM=y |
46 | CONFIG_BLK_DEV_RAM_COUNT=1 | 44 | CONFIG_BLK_DEV_RAM_COUNT=1 |
47 | # CONFIG_MISC_DEVICES is not set | ||
48 | # CONFIG_SCSI_PROC_FS is not set | 45 | # CONFIG_SCSI_PROC_FS is not set |
49 | CONFIG_BLK_DEV_SD=y | 46 | CONFIG_BLK_DEV_SD=y |
50 | # CONFIG_SCSI_LOWLEVEL is not set | 47 | # CONFIG_SCSI_LOWLEVEL is not set |
@@ -59,12 +56,12 @@ CONFIG_INPUT_EVDEV=y | |||
59 | # CONFIG_KEYBOARD_ATKBD is not set | 56 | # CONFIG_KEYBOARD_ATKBD is not set |
60 | # CONFIG_MOUSE_PS2 is not set | 57 | # CONFIG_MOUSE_PS2 is not set |
61 | # CONFIG_SERIO is not set | 58 | # CONFIG_SERIO is not set |
59 | CONFIG_LEGACY_PTY_COUNT=16 | ||
62 | # CONFIG_DEVKMEM is not set | 60 | # CONFIG_DEVKMEM is not set |
63 | CONFIG_SERIAL_8250=y | 61 | CONFIG_SERIAL_8250=y |
64 | CONFIG_SERIAL_8250_CONSOLE=y | 62 | CONFIG_SERIAL_8250_CONSOLE=y |
65 | # CONFIG_SERIAL_8250_PCI is not set | 63 | # CONFIG_SERIAL_8250_PCI is not set |
66 | CONFIG_SERIAL_8250_RUNTIME_UARTS=2 | 64 | CONFIG_SERIAL_8250_RUNTIME_UARTS=2 |
67 | CONFIG_LEGACY_PTY_COUNT=16 | ||
68 | # CONFIG_HW_RANDOM is not set | 65 | # CONFIG_HW_RANDOM is not set |
69 | CONFIG_I2C=y | 66 | CONFIG_I2C=y |
70 | CONFIG_I2C_CHARDEV=y | 67 | CONFIG_I2C_CHARDEV=y |
@@ -72,12 +69,10 @@ CONFIG_I2C_MV64XXX=y | |||
72 | CONFIG_SPI=y | 69 | CONFIG_SPI=y |
73 | CONFIG_SPI_ORION=y | 70 | CONFIG_SPI_ORION=y |
74 | # CONFIG_HWMON is not set | 71 | # CONFIG_HWMON is not set |
75 | # CONFIG_VGA_CONSOLE is not set | ||
76 | CONFIG_USB=y | 72 | CONFIG_USB=y |
77 | CONFIG_USB_DEVICEFS=y | 73 | CONFIG_USB_DEVICEFS=y |
78 | CONFIG_USB_EHCI_HCD=y | 74 | CONFIG_USB_EHCI_HCD=y |
79 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 75 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
80 | CONFIG_USB_EHCI_TT_NEWSCHED=y | ||
81 | CONFIG_USB_STORAGE=y | 76 | CONFIG_USB_STORAGE=y |
82 | CONFIG_RTC_CLASS=y | 77 | CONFIG_RTC_CLASS=y |
83 | CONFIG_RTC_DRV_MV=y | 78 | CONFIG_RTC_DRV_MV=y |
@@ -86,7 +81,6 @@ CONFIG_MV_XOR=y | |||
86 | CONFIG_EXT2_FS=y | 81 | CONFIG_EXT2_FS=y |
87 | CONFIG_EXT3_FS=y | 82 | CONFIG_EXT3_FS=y |
88 | # CONFIG_EXT3_FS_XATTR is not set | 83 | # CONFIG_EXT3_FS_XATTR is not set |
89 | CONFIG_INOTIFY=y | ||
90 | CONFIG_ISO9660_FS=y | 84 | CONFIG_ISO9660_FS=y |
91 | CONFIG_JOLIET=y | 85 | CONFIG_JOLIET=y |
92 | CONFIG_UDF_FS=m | 86 | CONFIG_UDF_FS=m |
@@ -110,23 +104,19 @@ CONFIG_DEBUG_KERNEL=y | |||
110 | CONFIG_TIMER_STATS=y | 104 | CONFIG_TIMER_STATS=y |
111 | # CONFIG_DEBUG_BUGVERBOSE is not set | 105 | # CONFIG_DEBUG_BUGVERBOSE is not set |
112 | CONFIG_DEBUG_INFO=y | 106 | CONFIG_DEBUG_INFO=y |
113 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
114 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 107 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
115 | CONFIG_DEBUG_USER=y | 108 | CONFIG_DEBUG_USER=y |
116 | CONFIG_DEBUG_ERRORS=y | 109 | CONFIG_DEBUG_ERRORS=y |
117 | CONFIG_CRYPTO_NULL=y | 110 | CONFIG_CRYPTO_NULL=y |
118 | CONFIG_CRYPTO_CBC=y | ||
119 | CONFIG_CRYPTO_ECB=m | 111 | CONFIG_CRYPTO_ECB=m |
120 | CONFIG_CRYPTO_PCBC=m | 112 | CONFIG_CRYPTO_PCBC=m |
121 | CONFIG_CRYPTO_HMAC=y | 113 | CONFIG_CRYPTO_HMAC=y |
122 | CONFIG_CRYPTO_MD4=y | 114 | CONFIG_CRYPTO_MD4=y |
123 | CONFIG_CRYPTO_MD5=y | ||
124 | CONFIG_CRYPTO_SHA1=y | 115 | CONFIG_CRYPTO_SHA1=y |
125 | CONFIG_CRYPTO_SHA256=y | 116 | CONFIG_CRYPTO_SHA256=y |
126 | CONFIG_CRYPTO_SHA512=y | 117 | CONFIG_CRYPTO_SHA512=y |
127 | CONFIG_CRYPTO_AES=y | 118 | CONFIG_CRYPTO_AES=y |
128 | CONFIG_CRYPTO_BLOWFISH=y | 119 | CONFIG_CRYPTO_BLOWFISH=y |
129 | CONFIG_CRYPTO_DES=y | ||
130 | CONFIG_CRYPTO_TEA=y | 120 | CONFIG_CRYPTO_TEA=y |
131 | CONFIG_CRYPTO_TWOFISH=y | 121 | CONFIG_CRYPTO_TWOFISH=y |
132 | CONFIG_CRYPTO_DEFLATE=y | 122 | CONFIG_CRYPTO_DEFLATE=y |
diff --git a/arch/arm/configs/mx1_defconfig b/arch/arm/configs/mx1_defconfig index b39b5ced8a10..c9436d0bf593 100644 --- a/arch/arm/configs/mx1_defconfig +++ b/arch/arm/configs/mx1_defconfig | |||
@@ -15,6 +15,7 @@ CONFIG_ARCH_MXC=y | |||
15 | CONFIG_ARCH_MX1=y | 15 | CONFIG_ARCH_MX1=y |
16 | CONFIG_ARCH_MX1ADS=y | 16 | CONFIG_ARCH_MX1ADS=y |
17 | CONFIG_MACH_SCB9328=y | 17 | CONFIG_MACH_SCB9328=y |
18 | CONFIG_MACH_APF9328=y | ||
18 | CONFIG_MXC_IRQ_PRIOR=y | 19 | CONFIG_MXC_IRQ_PRIOR=y |
19 | CONFIG_NO_HZ=y | 20 | CONFIG_NO_HZ=y |
20 | CONFIG_HIGH_RES_TIMERS=y | 21 | CONFIG_HIGH_RES_TIMERS=y |
diff --git a/arch/arm/configs/mx51_defconfig b/arch/arm/configs/mx51_defconfig index e3c903281f70..0ace16cba9b5 100644 --- a/arch/arm/configs/mx51_defconfig +++ b/arch/arm/configs/mx51_defconfig | |||
@@ -13,7 +13,7 @@ CONFIG_MODULE_SRCVERSION_ALL=y | |||
13 | # CONFIG_LBDAF is not set | 13 | # CONFIG_LBDAF is not set |
14 | # CONFIG_BLK_DEV_BSG is not set | 14 | # CONFIG_BLK_DEV_BSG is not set |
15 | CONFIG_ARCH_MXC=y | 15 | CONFIG_ARCH_MXC=y |
16 | CONFIG_ARCH_MX5=y | 16 | CONFIG_ARCH_MX51=y |
17 | CONFIG_MACH_MX51_BABBAGE=y | 17 | CONFIG_MACH_MX51_BABBAGE=y |
18 | CONFIG_MACH_MX51_3DS=y | 18 | CONFIG_MACH_MX51_3DS=y |
19 | CONFIG_MACH_EUKREA_CPUIMX51=y | 19 | CONFIG_MACH_EUKREA_CPUIMX51=y |
diff --git a/arch/arm/mach-davinci/include/mach/uncompress.h b/arch/arm/mach-davinci/include/mach/uncompress.h index 47723e8d75a4..78d80683cdc2 100644 --- a/arch/arm/mach-davinci/include/mach/uncompress.h +++ b/arch/arm/mach-davinci/include/mach/uncompress.h | |||
@@ -25,8 +25,7 @@ | |||
25 | 25 | ||
26 | #include <mach/serial.h> | 26 | #include <mach/serial.h> |
27 | 27 | ||
28 | static u32 *uart; | 28 | u32 *uart; |
29 | static u32 *uart_info = (u32 *)(DAVINCI_UART_INFO); | ||
30 | 29 | ||
31 | /* PORT_16C550A, in polled non-fifo mode */ | 30 | /* PORT_16C550A, in polled non-fifo mode */ |
32 | static void putc(char c) | 31 | static void putc(char c) |
@@ -44,6 +43,8 @@ static inline void flush(void) | |||
44 | 43 | ||
45 | static inline void set_uart_info(u32 phys, void * __iomem virt) | 44 | static inline void set_uart_info(u32 phys, void * __iomem virt) |
46 | { | 45 | { |
46 | u32 *uart_info = (u32 *)(DAVINCI_UART_INFO); | ||
47 | |||
47 | uart = (u32 *)phys; | 48 | uart = (u32 *)phys; |
48 | uart_info[0] = phys; | 49 | uart_info[0] = phys; |
49 | uart_info[1] = (u32)virt; | 50 | uart_info[1] = (u32)virt; |
diff --git a/arch/arm/mach-davinci/irq.c b/arch/arm/mach-davinci/irq.c index e6269a6e0014..bfe68ec4e1a6 100644 --- a/arch/arm/mach-davinci/irq.c +++ b/arch/arm/mach-davinci/irq.c | |||
@@ -29,8 +29,6 @@ | |||
29 | #include <mach/common.h> | 29 | #include <mach/common.h> |
30 | #include <asm/mach/irq.h> | 30 | #include <asm/mach/irq.h> |
31 | 31 | ||
32 | #define IRQ_BIT(irq) ((irq) & 0x1f) | ||
33 | |||
34 | #define FIQ_REG0_OFFSET 0x0000 | 32 | #define FIQ_REG0_OFFSET 0x0000 |
35 | #define FIQ_REG1_OFFSET 0x0004 | 33 | #define FIQ_REG1_OFFSET 0x0004 |
36 | #define IRQ_REG0_OFFSET 0x0008 | 34 | #define IRQ_REG0_OFFSET 0x0008 |
@@ -42,78 +40,33 @@ | |||
42 | #define IRQ_INTPRI0_REG_OFFSET 0x0030 | 40 | #define IRQ_INTPRI0_REG_OFFSET 0x0030 |
43 | #define IRQ_INTPRI7_REG_OFFSET 0x004C | 41 | #define IRQ_INTPRI7_REG_OFFSET 0x004C |
44 | 42 | ||
45 | static inline unsigned int davinci_irq_readl(int offset) | ||
46 | { | ||
47 | return __raw_readl(davinci_intc_base + offset); | ||
48 | } | ||
49 | |||
50 | static inline void davinci_irq_writel(unsigned long value, int offset) | 43 | static inline void davinci_irq_writel(unsigned long value, int offset) |
51 | { | 44 | { |
52 | __raw_writel(value, davinci_intc_base + offset); | 45 | __raw_writel(value, davinci_intc_base + offset); |
53 | } | 46 | } |
54 | 47 | ||
55 | /* Disable interrupt */ | 48 | static __init void |
56 | static void davinci_mask_irq(struct irq_data *d) | 49 | davinci_alloc_gc(void __iomem *base, unsigned int irq_start, unsigned int num) |
57 | { | 50 | { |
58 | unsigned int mask; | 51 | struct irq_chip_generic *gc; |
59 | u32 l; | 52 | struct irq_chip_type *ct; |
60 | 53 | ||
61 | mask = 1 << IRQ_BIT(d->irq); | 54 | gc = irq_alloc_generic_chip("AINTC", 1, irq_start, base, handle_edge_irq); |
62 | 55 | ct = gc->chip_types; | |
63 | if (d->irq > 31) { | 56 | ct->chip.irq_ack = irq_gc_ack; |
64 | l = davinci_irq_readl(IRQ_ENT_REG1_OFFSET); | 57 | ct->chip.irq_mask = irq_gc_mask_clr_bit; |
65 | l &= ~mask; | 58 | ct->chip.irq_unmask = irq_gc_mask_set_bit; |
66 | davinci_irq_writel(l, IRQ_ENT_REG1_OFFSET); | 59 | |
67 | } else { | 60 | ct->regs.ack = IRQ_REG0_OFFSET; |
68 | l = davinci_irq_readl(IRQ_ENT_REG0_OFFSET); | 61 | ct->regs.mask = IRQ_ENT_REG0_OFFSET; |
69 | l &= ~mask; | 62 | irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE, |
70 | davinci_irq_writel(l, IRQ_ENT_REG0_OFFSET); | 63 | IRQ_NOREQUEST | IRQ_NOPROBE, 0); |
71 | } | ||
72 | } | ||
73 | |||
74 | /* Enable interrupt */ | ||
75 | static void davinci_unmask_irq(struct irq_data *d) | ||
76 | { | ||
77 | unsigned int mask; | ||
78 | u32 l; | ||
79 | |||
80 | mask = 1 << IRQ_BIT(d->irq); | ||
81 | |||
82 | if (d->irq > 31) { | ||
83 | l = davinci_irq_readl(IRQ_ENT_REG1_OFFSET); | ||
84 | l |= mask; | ||
85 | davinci_irq_writel(l, IRQ_ENT_REG1_OFFSET); | ||
86 | } else { | ||
87 | l = davinci_irq_readl(IRQ_ENT_REG0_OFFSET); | ||
88 | l |= mask; | ||
89 | davinci_irq_writel(l, IRQ_ENT_REG0_OFFSET); | ||
90 | } | ||
91 | } | 64 | } |
92 | 65 | ||
93 | /* EOI interrupt */ | ||
94 | static void davinci_ack_irq(struct irq_data *d) | ||
95 | { | ||
96 | unsigned int mask; | ||
97 | |||
98 | mask = 1 << IRQ_BIT(d->irq); | ||
99 | |||
100 | if (d->irq > 31) | ||
101 | davinci_irq_writel(mask, IRQ_REG1_OFFSET); | ||
102 | else | ||
103 | davinci_irq_writel(mask, IRQ_REG0_OFFSET); | ||
104 | } | ||
105 | |||
106 | static struct irq_chip davinci_irq_chip_0 = { | ||
107 | .name = "AINTC", | ||
108 | .irq_ack = davinci_ack_irq, | ||
109 | .irq_mask = davinci_mask_irq, | ||
110 | .irq_unmask = davinci_unmask_irq, | ||
111 | }; | ||
112 | |||
113 | /* ARM Interrupt Controller Initialization */ | 66 | /* ARM Interrupt Controller Initialization */ |
114 | void __init davinci_irq_init(void) | 67 | void __init davinci_irq_init(void) |
115 | { | 68 | { |
116 | unsigned i; | 69 | unsigned i, j; |
117 | const u8 *davinci_def_priorities = davinci_soc_info.intc_irq_prios; | 70 | const u8 *davinci_def_priorities = davinci_soc_info.intc_irq_prios; |
118 | 71 | ||
119 | davinci_intc_type = DAVINCI_INTC_TYPE_AINTC; | 72 | davinci_intc_type = DAVINCI_INTC_TYPE_AINTC; |
@@ -144,7 +97,6 @@ void __init davinci_irq_init(void) | |||
144 | davinci_irq_writel(~0x0, IRQ_REG1_OFFSET); | 97 | davinci_irq_writel(~0x0, IRQ_REG1_OFFSET); |
145 | 98 | ||
146 | for (i = IRQ_INTPRI0_REG_OFFSET; i <= IRQ_INTPRI7_REG_OFFSET; i += 4) { | 99 | for (i = IRQ_INTPRI0_REG_OFFSET; i <= IRQ_INTPRI7_REG_OFFSET; i += 4) { |
147 | unsigned j; | ||
148 | u32 pri; | 100 | u32 pri; |
149 | 101 | ||
150 | for (j = 0, pri = 0; j < 32; j += 4, davinci_def_priorities++) | 102 | for (j = 0, pri = 0; j < 32; j += 4, davinci_def_priorities++) |
@@ -152,13 +104,8 @@ void __init davinci_irq_init(void) | |||
152 | davinci_irq_writel(pri, i); | 104 | davinci_irq_writel(pri, i); |
153 | } | 105 | } |
154 | 106 | ||
155 | /* set up genirq dispatch for ARM INTC */ | 107 | for (i = 0, j = 0; i < davinci_soc_info.intc_irq_num; i += 32, j += 0x04) |
156 | for (i = 0; i < davinci_soc_info.intc_irq_num; i++) { | 108 | davinci_alloc_gc(davinci_intc_base + j, i, 32); |
157 | irq_set_chip(i, &davinci_irq_chip_0); | 109 | |
158 | set_irq_flags(i, IRQF_VALID | IRQF_PROBE); | 110 | irq_set_handler(IRQ_TINT1_TINT34, handle_level_irq); |
159 | if (i != IRQ_TINT1_TINT34) | ||
160 | irq_set_handler(i, handle_edge_irq); | ||
161 | else | ||
162 | irq_set_handler(i, handle_level_irq); | ||
163 | } | ||
164 | } | 111 | } |
diff --git a/arch/arm/mach-dove/common.c b/arch/arm/mach-dove/common.c index e06a88f1f81d..5ed51b84c1b2 100644 --- a/arch/arm/mach-dove/common.c +++ b/arch/arm/mach-dove/common.c | |||
@@ -16,10 +16,8 @@ | |||
16 | #include <linux/serial_8250.h> | 16 | #include <linux/serial_8250.h> |
17 | #include <linux/clk.h> | 17 | #include <linux/clk.h> |
18 | #include <linux/mbus.h> | 18 | #include <linux/mbus.h> |
19 | #include <linux/mv643xx_eth.h> | ||
20 | #include <linux/mv643xx_i2c.h> | ||
21 | #include <linux/ata_platform.h> | 19 | #include <linux/ata_platform.h> |
22 | #include <linux/spi/orion_spi.h> | 20 | #include <linux/serial_8250.h> |
23 | #include <linux/gpio.h> | 21 | #include <linux/gpio.h> |
24 | #include <asm/page.h> | 22 | #include <asm/page.h> |
25 | #include <asm/setup.h> | 23 | #include <asm/setup.h> |
@@ -32,11 +30,12 @@ | |||
32 | #include <mach/bridge-regs.h> | 30 | #include <mach/bridge-regs.h> |
33 | #include <asm/mach/arch.h> | 31 | #include <asm/mach/arch.h> |
34 | #include <linux/irq.h> | 32 | #include <linux/irq.h> |
35 | #include <plat/mv_xor.h> | ||
36 | #include <plat/ehci-orion.h> | ||
37 | #include <plat/time.h> | 33 | #include <plat/time.h> |
34 | #include <plat/common.h> | ||
38 | #include "common.h" | 35 | #include "common.h" |
39 | 36 | ||
37 | static int get_tclk(void); | ||
38 | |||
40 | /***************************************************************************** | 39 | /***************************************************************************** |
41 | * I/O Address Mapping | 40 | * I/O Address Mapping |
42 | ****************************************************************************/ | 41 | ****************************************************************************/ |
@@ -70,463 +69,106 @@ void __init dove_map_io(void) | |||
70 | } | 69 | } |
71 | 70 | ||
72 | /***************************************************************************** | 71 | /***************************************************************************** |
73 | * EHCI | ||
74 | ****************************************************************************/ | ||
75 | static struct orion_ehci_data dove_ehci_data = { | ||
76 | .dram = &dove_mbus_dram_info, | ||
77 | .phy_version = EHCI_PHY_NA, | ||
78 | }; | ||
79 | |||
80 | static u64 ehci_dmamask = DMA_BIT_MASK(32); | ||
81 | |||
82 | /***************************************************************************** | ||
83 | * EHCI0 | 72 | * EHCI0 |
84 | ****************************************************************************/ | 73 | ****************************************************************************/ |
85 | static struct resource dove_ehci0_resources[] = { | ||
86 | { | ||
87 | .start = DOVE_USB0_PHYS_BASE, | ||
88 | .end = DOVE_USB0_PHYS_BASE + SZ_4K - 1, | ||
89 | .flags = IORESOURCE_MEM, | ||
90 | }, { | ||
91 | .start = IRQ_DOVE_USB0, | ||
92 | .end = IRQ_DOVE_USB0, | ||
93 | .flags = IORESOURCE_IRQ, | ||
94 | }, | ||
95 | }; | ||
96 | |||
97 | static struct platform_device dove_ehci0 = { | ||
98 | .name = "orion-ehci", | ||
99 | .id = 0, | ||
100 | .dev = { | ||
101 | .dma_mask = &ehci_dmamask, | ||
102 | .coherent_dma_mask = DMA_BIT_MASK(32), | ||
103 | .platform_data = &dove_ehci_data, | ||
104 | }, | ||
105 | .resource = dove_ehci0_resources, | ||
106 | .num_resources = ARRAY_SIZE(dove_ehci0_resources), | ||
107 | }; | ||
108 | |||
109 | void __init dove_ehci0_init(void) | 74 | void __init dove_ehci0_init(void) |
110 | { | 75 | { |
111 | platform_device_register(&dove_ehci0); | 76 | orion_ehci_init(&dove_mbus_dram_info, |
77 | DOVE_USB0_PHYS_BASE, IRQ_DOVE_USB0); | ||
112 | } | 78 | } |
113 | 79 | ||
114 | /***************************************************************************** | 80 | /***************************************************************************** |
115 | * EHCI1 | 81 | * EHCI1 |
116 | ****************************************************************************/ | 82 | ****************************************************************************/ |
117 | static struct resource dove_ehci1_resources[] = { | ||
118 | { | ||
119 | .start = DOVE_USB1_PHYS_BASE, | ||
120 | .end = DOVE_USB1_PHYS_BASE + SZ_4K - 1, | ||
121 | .flags = IORESOURCE_MEM, | ||
122 | }, { | ||
123 | .start = IRQ_DOVE_USB1, | ||
124 | .end = IRQ_DOVE_USB1, | ||
125 | .flags = IORESOURCE_IRQ, | ||
126 | }, | ||
127 | }; | ||
128 | |||
129 | static struct platform_device dove_ehci1 = { | ||
130 | .name = "orion-ehci", | ||
131 | .id = 1, | ||
132 | .dev = { | ||
133 | .dma_mask = &ehci_dmamask, | ||
134 | .coherent_dma_mask = DMA_BIT_MASK(32), | ||
135 | .platform_data = &dove_ehci_data, | ||
136 | }, | ||
137 | .resource = dove_ehci1_resources, | ||
138 | .num_resources = ARRAY_SIZE(dove_ehci1_resources), | ||
139 | }; | ||
140 | |||
141 | void __init dove_ehci1_init(void) | 83 | void __init dove_ehci1_init(void) |
142 | { | 84 | { |
143 | platform_device_register(&dove_ehci1); | 85 | orion_ehci_1_init(&dove_mbus_dram_info, |
86 | DOVE_USB1_PHYS_BASE, IRQ_DOVE_USB1); | ||
144 | } | 87 | } |
145 | 88 | ||
146 | /***************************************************************************** | 89 | /***************************************************************************** |
147 | * GE00 | 90 | * GE00 |
148 | ****************************************************************************/ | 91 | ****************************************************************************/ |
149 | struct mv643xx_eth_shared_platform_data dove_ge00_shared_data = { | ||
150 | .t_clk = 0, | ||
151 | .dram = &dove_mbus_dram_info, | ||
152 | }; | ||
153 | |||
154 | static struct resource dove_ge00_shared_resources[] = { | ||
155 | { | ||
156 | .name = "ge00 base", | ||
157 | .start = DOVE_GE00_PHYS_BASE + 0x2000, | ||
158 | .end = DOVE_GE00_PHYS_BASE + SZ_16K - 1, | ||
159 | .flags = IORESOURCE_MEM, | ||
160 | }, | ||
161 | }; | ||
162 | |||
163 | static struct platform_device dove_ge00_shared = { | ||
164 | .name = MV643XX_ETH_SHARED_NAME, | ||
165 | .id = 0, | ||
166 | .dev = { | ||
167 | .platform_data = &dove_ge00_shared_data, | ||
168 | }, | ||
169 | .num_resources = 1, | ||
170 | .resource = dove_ge00_shared_resources, | ||
171 | }; | ||
172 | |||
173 | static struct resource dove_ge00_resources[] = { | ||
174 | { | ||
175 | .name = "ge00 irq", | ||
176 | .start = IRQ_DOVE_GE00_SUM, | ||
177 | .end = IRQ_DOVE_GE00_SUM, | ||
178 | .flags = IORESOURCE_IRQ, | ||
179 | }, | ||
180 | }; | ||
181 | |||
182 | static struct platform_device dove_ge00 = { | ||
183 | .name = MV643XX_ETH_NAME, | ||
184 | .id = 0, | ||
185 | .num_resources = 1, | ||
186 | .resource = dove_ge00_resources, | ||
187 | .dev = { | ||
188 | .coherent_dma_mask = 0xffffffff, | ||
189 | }, | ||
190 | }; | ||
191 | |||
192 | void __init dove_ge00_init(struct mv643xx_eth_platform_data *eth_data) | 92 | void __init dove_ge00_init(struct mv643xx_eth_platform_data *eth_data) |
193 | { | 93 | { |
194 | eth_data->shared = &dove_ge00_shared; | 94 | orion_ge00_init(eth_data, &dove_mbus_dram_info, |
195 | dove_ge00.dev.platform_data = eth_data; | 95 | DOVE_GE00_PHYS_BASE, IRQ_DOVE_GE00_SUM, |
196 | 96 | 0, get_tclk()); | |
197 | platform_device_register(&dove_ge00_shared); | ||
198 | platform_device_register(&dove_ge00); | ||
199 | } | 97 | } |
200 | 98 | ||
201 | /***************************************************************************** | 99 | /***************************************************************************** |
202 | * SoC RTC | 100 | * SoC RTC |
203 | ****************************************************************************/ | 101 | ****************************************************************************/ |
204 | static struct resource dove_rtc_resource[] = { | ||
205 | { | ||
206 | .start = DOVE_RTC_PHYS_BASE, | ||
207 | .end = DOVE_RTC_PHYS_BASE + 32 - 1, | ||
208 | .flags = IORESOURCE_MEM, | ||
209 | }, { | ||
210 | .start = IRQ_DOVE_RTC, | ||
211 | .flags = IORESOURCE_IRQ, | ||
212 | } | ||
213 | }; | ||
214 | |||
215 | void __init dove_rtc_init(void) | 102 | void __init dove_rtc_init(void) |
216 | { | 103 | { |
217 | platform_device_register_simple("rtc-mv", -1, dove_rtc_resource, 2); | 104 | orion_rtc_init(DOVE_RTC_PHYS_BASE, IRQ_DOVE_RTC); |
218 | } | 105 | } |
219 | 106 | ||
220 | /***************************************************************************** | 107 | /***************************************************************************** |
221 | * SATA | 108 | * SATA |
222 | ****************************************************************************/ | 109 | ****************************************************************************/ |
223 | static struct resource dove_sata_resources[] = { | ||
224 | { | ||
225 | .name = "sata base", | ||
226 | .start = DOVE_SATA_PHYS_BASE, | ||
227 | .end = DOVE_SATA_PHYS_BASE + 0x5000 - 1, | ||
228 | .flags = IORESOURCE_MEM, | ||
229 | }, { | ||
230 | .name = "sata irq", | ||
231 | .start = IRQ_DOVE_SATA, | ||
232 | .end = IRQ_DOVE_SATA, | ||
233 | .flags = IORESOURCE_IRQ, | ||
234 | }, | ||
235 | }; | ||
236 | |||
237 | static struct platform_device dove_sata = { | ||
238 | .name = "sata_mv", | ||
239 | .id = 0, | ||
240 | .dev = { | ||
241 | .coherent_dma_mask = DMA_BIT_MASK(32), | ||
242 | }, | ||
243 | .num_resources = ARRAY_SIZE(dove_sata_resources), | ||
244 | .resource = dove_sata_resources, | ||
245 | }; | ||
246 | |||
247 | void __init dove_sata_init(struct mv_sata_platform_data *sata_data) | 110 | void __init dove_sata_init(struct mv_sata_platform_data *sata_data) |
248 | { | 111 | { |
249 | sata_data->dram = &dove_mbus_dram_info; | 112 | orion_sata_init(sata_data, &dove_mbus_dram_info, |
250 | dove_sata.dev.platform_data = sata_data; | 113 | DOVE_SATA_PHYS_BASE, IRQ_DOVE_SATA); |
251 | platform_device_register(&dove_sata); | 114 | |
252 | } | 115 | } |
253 | 116 | ||
254 | /***************************************************************************** | 117 | /***************************************************************************** |
255 | * UART0 | 118 | * UART0 |
256 | ****************************************************************************/ | 119 | ****************************************************************************/ |
257 | static struct plat_serial8250_port dove_uart0_data[] = { | ||
258 | { | ||
259 | .mapbase = DOVE_UART0_PHYS_BASE, | ||
260 | .membase = (char *)DOVE_UART0_VIRT_BASE, | ||
261 | .irq = IRQ_DOVE_UART_0, | ||
262 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, | ||
263 | .iotype = UPIO_MEM, | ||
264 | .regshift = 2, | ||
265 | .uartclk = 0, | ||
266 | }, { | ||
267 | }, | ||
268 | }; | ||
269 | |||
270 | static struct resource dove_uart0_resources[] = { | ||
271 | { | ||
272 | .start = DOVE_UART0_PHYS_BASE, | ||
273 | .end = DOVE_UART0_PHYS_BASE + SZ_256 - 1, | ||
274 | .flags = IORESOURCE_MEM, | ||
275 | }, { | ||
276 | .start = IRQ_DOVE_UART_0, | ||
277 | .end = IRQ_DOVE_UART_0, | ||
278 | .flags = IORESOURCE_IRQ, | ||
279 | }, | ||
280 | }; | ||
281 | |||
282 | static struct platform_device dove_uart0 = { | ||
283 | .name = "serial8250", | ||
284 | .id = 0, | ||
285 | .dev = { | ||
286 | .platform_data = dove_uart0_data, | ||
287 | }, | ||
288 | .resource = dove_uart0_resources, | ||
289 | .num_resources = ARRAY_SIZE(dove_uart0_resources), | ||
290 | }; | ||
291 | |||
292 | void __init dove_uart0_init(void) | 120 | void __init dove_uart0_init(void) |
293 | { | 121 | { |
294 | platform_device_register(&dove_uart0); | 122 | orion_uart0_init(DOVE_UART0_VIRT_BASE, DOVE_UART0_PHYS_BASE, |
123 | IRQ_DOVE_UART_0, get_tclk()); | ||
295 | } | 124 | } |
296 | 125 | ||
297 | /***************************************************************************** | 126 | /***************************************************************************** |
298 | * UART1 | 127 | * UART1 |
299 | ****************************************************************************/ | 128 | ****************************************************************************/ |
300 | static struct plat_serial8250_port dove_uart1_data[] = { | ||
301 | { | ||
302 | .mapbase = DOVE_UART1_PHYS_BASE, | ||
303 | .membase = (char *)DOVE_UART1_VIRT_BASE, | ||
304 | .irq = IRQ_DOVE_UART_1, | ||
305 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, | ||
306 | .iotype = UPIO_MEM, | ||
307 | .regshift = 2, | ||
308 | .uartclk = 0, | ||
309 | }, { | ||
310 | }, | ||
311 | }; | ||
312 | |||
313 | static struct resource dove_uart1_resources[] = { | ||
314 | { | ||
315 | .start = DOVE_UART1_PHYS_BASE, | ||
316 | .end = DOVE_UART1_PHYS_BASE + SZ_256 - 1, | ||
317 | .flags = IORESOURCE_MEM, | ||
318 | }, { | ||
319 | .start = IRQ_DOVE_UART_1, | ||
320 | .end = IRQ_DOVE_UART_1, | ||
321 | .flags = IORESOURCE_IRQ, | ||
322 | }, | ||
323 | }; | ||
324 | |||
325 | static struct platform_device dove_uart1 = { | ||
326 | .name = "serial8250", | ||
327 | .id = 1, | ||
328 | .dev = { | ||
329 | .platform_data = dove_uart1_data, | ||
330 | }, | ||
331 | .resource = dove_uart1_resources, | ||
332 | .num_resources = ARRAY_SIZE(dove_uart1_resources), | ||
333 | }; | ||
334 | |||
335 | void __init dove_uart1_init(void) | 129 | void __init dove_uart1_init(void) |
336 | { | 130 | { |
337 | platform_device_register(&dove_uart1); | 131 | orion_uart1_init(DOVE_UART1_VIRT_BASE, DOVE_UART1_PHYS_BASE, |
132 | IRQ_DOVE_UART_1, get_tclk()); | ||
338 | } | 133 | } |
339 | 134 | ||
340 | /***************************************************************************** | 135 | /***************************************************************************** |
341 | * UART2 | 136 | * UART2 |
342 | ****************************************************************************/ | 137 | ****************************************************************************/ |
343 | static struct plat_serial8250_port dove_uart2_data[] = { | ||
344 | { | ||
345 | .mapbase = DOVE_UART2_PHYS_BASE, | ||
346 | .membase = (char *)DOVE_UART2_VIRT_BASE, | ||
347 | .irq = IRQ_DOVE_UART_2, | ||
348 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, | ||
349 | .iotype = UPIO_MEM, | ||
350 | .regshift = 2, | ||
351 | .uartclk = 0, | ||
352 | }, { | ||
353 | }, | ||
354 | }; | ||
355 | |||
356 | static struct resource dove_uart2_resources[] = { | ||
357 | { | ||
358 | .start = DOVE_UART2_PHYS_BASE, | ||
359 | .end = DOVE_UART2_PHYS_BASE + SZ_256 - 1, | ||
360 | .flags = IORESOURCE_MEM, | ||
361 | }, { | ||
362 | .start = IRQ_DOVE_UART_2, | ||
363 | .end = IRQ_DOVE_UART_2, | ||
364 | .flags = IORESOURCE_IRQ, | ||
365 | }, | ||
366 | }; | ||
367 | |||
368 | static struct platform_device dove_uart2 = { | ||
369 | .name = "serial8250", | ||
370 | .id = 2, | ||
371 | .dev = { | ||
372 | .platform_data = dove_uart2_data, | ||
373 | }, | ||
374 | .resource = dove_uart2_resources, | ||
375 | .num_resources = ARRAY_SIZE(dove_uart2_resources), | ||
376 | }; | ||
377 | |||
378 | void __init dove_uart2_init(void) | 138 | void __init dove_uart2_init(void) |
379 | { | 139 | { |
380 | platform_device_register(&dove_uart2); | 140 | orion_uart2_init(DOVE_UART2_VIRT_BASE, DOVE_UART2_PHYS_BASE, |
141 | IRQ_DOVE_UART_2, get_tclk()); | ||
381 | } | 142 | } |
382 | 143 | ||
383 | /***************************************************************************** | 144 | /***************************************************************************** |
384 | * UART3 | 145 | * UART3 |
385 | ****************************************************************************/ | 146 | ****************************************************************************/ |
386 | static struct plat_serial8250_port dove_uart3_data[] = { | ||
387 | { | ||
388 | .mapbase = DOVE_UART3_PHYS_BASE, | ||
389 | .membase = (char *)DOVE_UART3_VIRT_BASE, | ||
390 | .irq = IRQ_DOVE_UART_3, | ||
391 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, | ||
392 | .iotype = UPIO_MEM, | ||
393 | .regshift = 2, | ||
394 | .uartclk = 0, | ||
395 | }, { | ||
396 | }, | ||
397 | }; | ||
398 | |||
399 | static struct resource dove_uart3_resources[] = { | ||
400 | { | ||
401 | .start = DOVE_UART3_PHYS_BASE, | ||
402 | .end = DOVE_UART3_PHYS_BASE + SZ_256 - 1, | ||
403 | .flags = IORESOURCE_MEM, | ||
404 | }, { | ||
405 | .start = IRQ_DOVE_UART_3, | ||
406 | .end = IRQ_DOVE_UART_3, | ||
407 | .flags = IORESOURCE_IRQ, | ||
408 | }, | ||
409 | }; | ||
410 | |||
411 | static struct platform_device dove_uart3 = { | ||
412 | .name = "serial8250", | ||
413 | .id = 3, | ||
414 | .dev = { | ||
415 | .platform_data = dove_uart3_data, | ||
416 | }, | ||
417 | .resource = dove_uart3_resources, | ||
418 | .num_resources = ARRAY_SIZE(dove_uart3_resources), | ||
419 | }; | ||
420 | |||
421 | void __init dove_uart3_init(void) | 147 | void __init dove_uart3_init(void) |
422 | { | 148 | { |
423 | platform_device_register(&dove_uart3); | 149 | orion_uart3_init(DOVE_UART3_VIRT_BASE, DOVE_UART3_PHYS_BASE, |
150 | IRQ_DOVE_UART_3, get_tclk()); | ||
424 | } | 151 | } |
425 | 152 | ||
426 | /***************************************************************************** | 153 | /***************************************************************************** |
427 | * SPI0 | 154 | * SPI |
428 | ****************************************************************************/ | 155 | ****************************************************************************/ |
429 | static struct orion_spi_info dove_spi0_data = { | ||
430 | .tclk = 0, | ||
431 | }; | ||
432 | |||
433 | static struct resource dove_spi0_resources[] = { | ||
434 | { | ||
435 | .start = DOVE_SPI0_PHYS_BASE, | ||
436 | .end = DOVE_SPI0_PHYS_BASE + SZ_512 - 1, | ||
437 | .flags = IORESOURCE_MEM, | ||
438 | }, { | ||
439 | .start = IRQ_DOVE_SPI0, | ||
440 | .end = IRQ_DOVE_SPI0, | ||
441 | .flags = IORESOURCE_IRQ, | ||
442 | }, | ||
443 | }; | ||
444 | |||
445 | static struct platform_device dove_spi0 = { | ||
446 | .name = "orion_spi", | ||
447 | .id = 0, | ||
448 | .resource = dove_spi0_resources, | ||
449 | .dev = { | ||
450 | .platform_data = &dove_spi0_data, | ||
451 | }, | ||
452 | .num_resources = ARRAY_SIZE(dove_spi0_resources), | ||
453 | }; | ||
454 | |||
455 | void __init dove_spi0_init(void) | 156 | void __init dove_spi0_init(void) |
456 | { | 157 | { |
457 | platform_device_register(&dove_spi0); | 158 | orion_spi_init(DOVE_SPI0_PHYS_BASE, get_tclk()); |
458 | } | 159 | } |
459 | 160 | ||
460 | /***************************************************************************** | ||
461 | * SPI1 | ||
462 | ****************************************************************************/ | ||
463 | static struct orion_spi_info dove_spi1_data = { | ||
464 | .tclk = 0, | ||
465 | }; | ||
466 | |||
467 | static struct resource dove_spi1_resources[] = { | ||
468 | { | ||
469 | .start = DOVE_SPI1_PHYS_BASE, | ||
470 | .end = DOVE_SPI1_PHYS_BASE + SZ_512 - 1, | ||
471 | .flags = IORESOURCE_MEM, | ||
472 | }, { | ||
473 | .start = IRQ_DOVE_SPI1, | ||
474 | .end = IRQ_DOVE_SPI1, | ||
475 | .flags = IORESOURCE_IRQ, | ||
476 | }, | ||
477 | }; | ||
478 | |||
479 | static struct platform_device dove_spi1 = { | ||
480 | .name = "orion_spi", | ||
481 | .id = 1, | ||
482 | .resource = dove_spi1_resources, | ||
483 | .dev = { | ||
484 | .platform_data = &dove_spi1_data, | ||
485 | }, | ||
486 | .num_resources = ARRAY_SIZE(dove_spi1_resources), | ||
487 | }; | ||
488 | |||
489 | void __init dove_spi1_init(void) | 161 | void __init dove_spi1_init(void) |
490 | { | 162 | { |
491 | platform_device_register(&dove_spi1); | 163 | orion_spi_init(DOVE_SPI1_PHYS_BASE, get_tclk()); |
492 | } | 164 | } |
493 | 165 | ||
494 | /***************************************************************************** | 166 | /***************************************************************************** |
495 | * I2C | 167 | * I2C |
496 | ****************************************************************************/ | 168 | ****************************************************************************/ |
497 | static struct mv64xxx_i2c_pdata dove_i2c_data = { | ||
498 | .freq_m = 10, /* assumes 166 MHz TCLK gets 94.3kHz */ | ||
499 | .freq_n = 3, | ||
500 | .timeout = 1000, /* Default timeout of 1 second */ | ||
501 | }; | ||
502 | |||
503 | static struct resource dove_i2c_resources[] = { | ||
504 | { | ||
505 | .name = "i2c base", | ||
506 | .start = DOVE_I2C_PHYS_BASE, | ||
507 | .end = DOVE_I2C_PHYS_BASE + 0x20 - 1, | ||
508 | .flags = IORESOURCE_MEM, | ||
509 | }, { | ||
510 | .name = "i2c irq", | ||
511 | .start = IRQ_DOVE_I2C, | ||
512 | .end = IRQ_DOVE_I2C, | ||
513 | .flags = IORESOURCE_IRQ, | ||
514 | }, | ||
515 | }; | ||
516 | |||
517 | static struct platform_device dove_i2c = { | ||
518 | .name = MV64XXX_I2C_CTLR_NAME, | ||
519 | .id = 0, | ||
520 | .num_resources = ARRAY_SIZE(dove_i2c_resources), | ||
521 | .resource = dove_i2c_resources, | ||
522 | .dev = { | ||
523 | .platform_data = &dove_i2c_data, | ||
524 | }, | ||
525 | }; | ||
526 | |||
527 | void __init dove_i2c_init(void) | 169 | void __init dove_i2c_init(void) |
528 | { | 170 | { |
529 | platform_device_register(&dove_i2c); | 171 | orion_i2c_init(DOVE_I2C_PHYS_BASE, IRQ_DOVE_I2C, 10); |
530 | } | 172 | } |
531 | 173 | ||
532 | /***************************************************************************** | 174 | /***************************************************************************** |
@@ -554,208 +196,22 @@ struct sys_timer dove_timer = { | |||
554 | }; | 196 | }; |
555 | 197 | ||
556 | /***************************************************************************** | 198 | /***************************************************************************** |
557 | * XOR | ||
558 | ****************************************************************************/ | ||
559 | static struct mv_xor_platform_shared_data dove_xor_shared_data = { | ||
560 | .dram = &dove_mbus_dram_info, | ||
561 | }; | ||
562 | |||
563 | /***************************************************************************** | ||
564 | * XOR 0 | 199 | * XOR 0 |
565 | ****************************************************************************/ | 200 | ****************************************************************************/ |
566 | static u64 dove_xor0_dmamask = DMA_BIT_MASK(32); | ||
567 | |||
568 | static struct resource dove_xor0_shared_resources[] = { | ||
569 | { | ||
570 | .name = "xor 0 low", | ||
571 | .start = DOVE_XOR0_PHYS_BASE, | ||
572 | .end = DOVE_XOR0_PHYS_BASE + 0xff, | ||
573 | .flags = IORESOURCE_MEM, | ||
574 | }, { | ||
575 | .name = "xor 0 high", | ||
576 | .start = DOVE_XOR0_HIGH_PHYS_BASE, | ||
577 | .end = DOVE_XOR0_HIGH_PHYS_BASE + 0xff, | ||
578 | .flags = IORESOURCE_MEM, | ||
579 | }, | ||
580 | }; | ||
581 | |||
582 | static struct platform_device dove_xor0_shared = { | ||
583 | .name = MV_XOR_SHARED_NAME, | ||
584 | .id = 0, | ||
585 | .dev = { | ||
586 | .platform_data = &dove_xor_shared_data, | ||
587 | }, | ||
588 | .num_resources = ARRAY_SIZE(dove_xor0_shared_resources), | ||
589 | .resource = dove_xor0_shared_resources, | ||
590 | }; | ||
591 | |||
592 | static struct resource dove_xor00_resources[] = { | ||
593 | [0] = { | ||
594 | .start = IRQ_DOVE_XOR_00, | ||
595 | .end = IRQ_DOVE_XOR_00, | ||
596 | .flags = IORESOURCE_IRQ, | ||
597 | }, | ||
598 | }; | ||
599 | |||
600 | static struct mv_xor_platform_data dove_xor00_data = { | ||
601 | .shared = &dove_xor0_shared, | ||
602 | .hw_id = 0, | ||
603 | .pool_size = PAGE_SIZE, | ||
604 | }; | ||
605 | |||
606 | static struct platform_device dove_xor00_channel = { | ||
607 | .name = MV_XOR_NAME, | ||
608 | .id = 0, | ||
609 | .num_resources = ARRAY_SIZE(dove_xor00_resources), | ||
610 | .resource = dove_xor00_resources, | ||
611 | .dev = { | ||
612 | .dma_mask = &dove_xor0_dmamask, | ||
613 | .coherent_dma_mask = DMA_BIT_MASK(64), | ||
614 | .platform_data = &dove_xor00_data, | ||
615 | }, | ||
616 | }; | ||
617 | |||
618 | static struct resource dove_xor01_resources[] = { | ||
619 | [0] = { | ||
620 | .start = IRQ_DOVE_XOR_01, | ||
621 | .end = IRQ_DOVE_XOR_01, | ||
622 | .flags = IORESOURCE_IRQ, | ||
623 | }, | ||
624 | }; | ||
625 | |||
626 | static struct mv_xor_platform_data dove_xor01_data = { | ||
627 | .shared = &dove_xor0_shared, | ||
628 | .hw_id = 1, | ||
629 | .pool_size = PAGE_SIZE, | ||
630 | }; | ||
631 | |||
632 | static struct platform_device dove_xor01_channel = { | ||
633 | .name = MV_XOR_NAME, | ||
634 | .id = 1, | ||
635 | .num_resources = ARRAY_SIZE(dove_xor01_resources), | ||
636 | .resource = dove_xor01_resources, | ||
637 | .dev = { | ||
638 | .dma_mask = &dove_xor0_dmamask, | ||
639 | .coherent_dma_mask = DMA_BIT_MASK(64), | ||
640 | .platform_data = &dove_xor01_data, | ||
641 | }, | ||
642 | }; | ||
643 | |||
644 | void __init dove_xor0_init(void) | 201 | void __init dove_xor0_init(void) |
645 | { | 202 | { |
646 | platform_device_register(&dove_xor0_shared); | 203 | orion_xor0_init(&dove_mbus_dram_info, |
647 | 204 | DOVE_XOR0_PHYS_BASE, DOVE_XOR0_HIGH_PHYS_BASE, | |
648 | /* | 205 | IRQ_DOVE_XOR_00, IRQ_DOVE_XOR_01); |
649 | * two engines can't do memset simultaneously, this limitation | ||
650 | * satisfied by removing memset support from one of the engines. | ||
651 | */ | ||
652 | dma_cap_set(DMA_MEMCPY, dove_xor00_data.cap_mask); | ||
653 | dma_cap_set(DMA_XOR, dove_xor00_data.cap_mask); | ||
654 | platform_device_register(&dove_xor00_channel); | ||
655 | |||
656 | dma_cap_set(DMA_MEMCPY, dove_xor01_data.cap_mask); | ||
657 | dma_cap_set(DMA_MEMSET, dove_xor01_data.cap_mask); | ||
658 | dma_cap_set(DMA_XOR, dove_xor01_data.cap_mask); | ||
659 | platform_device_register(&dove_xor01_channel); | ||
660 | } | 206 | } |
661 | 207 | ||
662 | /***************************************************************************** | 208 | /***************************************************************************** |
663 | * XOR 1 | 209 | * XOR 1 |
664 | ****************************************************************************/ | 210 | ****************************************************************************/ |
665 | static u64 dove_xor1_dmamask = DMA_BIT_MASK(32); | ||
666 | |||
667 | static struct resource dove_xor1_shared_resources[] = { | ||
668 | { | ||
669 | .name = "xor 0 low", | ||
670 | .start = DOVE_XOR1_PHYS_BASE, | ||
671 | .end = DOVE_XOR1_PHYS_BASE + 0xff, | ||
672 | .flags = IORESOURCE_MEM, | ||
673 | }, { | ||
674 | .name = "xor 0 high", | ||
675 | .start = DOVE_XOR1_HIGH_PHYS_BASE, | ||
676 | .end = DOVE_XOR1_HIGH_PHYS_BASE + 0xff, | ||
677 | .flags = IORESOURCE_MEM, | ||
678 | }, | ||
679 | }; | ||
680 | |||
681 | static struct platform_device dove_xor1_shared = { | ||
682 | .name = MV_XOR_SHARED_NAME, | ||
683 | .id = 1, | ||
684 | .dev = { | ||
685 | .platform_data = &dove_xor_shared_data, | ||
686 | }, | ||
687 | .num_resources = ARRAY_SIZE(dove_xor1_shared_resources), | ||
688 | .resource = dove_xor1_shared_resources, | ||
689 | }; | ||
690 | |||
691 | static struct resource dove_xor10_resources[] = { | ||
692 | [0] = { | ||
693 | .start = IRQ_DOVE_XOR_10, | ||
694 | .end = IRQ_DOVE_XOR_10, | ||
695 | .flags = IORESOURCE_IRQ, | ||
696 | }, | ||
697 | }; | ||
698 | |||
699 | static struct mv_xor_platform_data dove_xor10_data = { | ||
700 | .shared = &dove_xor1_shared, | ||
701 | .hw_id = 0, | ||
702 | .pool_size = PAGE_SIZE, | ||
703 | }; | ||
704 | |||
705 | static struct platform_device dove_xor10_channel = { | ||
706 | .name = MV_XOR_NAME, | ||
707 | .id = 2, | ||
708 | .num_resources = ARRAY_SIZE(dove_xor10_resources), | ||
709 | .resource = dove_xor10_resources, | ||
710 | .dev = { | ||
711 | .dma_mask = &dove_xor1_dmamask, | ||
712 | .coherent_dma_mask = DMA_BIT_MASK(64), | ||
713 | .platform_data = &dove_xor10_data, | ||
714 | }, | ||
715 | }; | ||
716 | |||
717 | static struct resource dove_xor11_resources[] = { | ||
718 | [0] = { | ||
719 | .start = IRQ_DOVE_XOR_11, | ||
720 | .end = IRQ_DOVE_XOR_11, | ||
721 | .flags = IORESOURCE_IRQ, | ||
722 | }, | ||
723 | }; | ||
724 | |||
725 | static struct mv_xor_platform_data dove_xor11_data = { | ||
726 | .shared = &dove_xor1_shared, | ||
727 | .hw_id = 1, | ||
728 | .pool_size = PAGE_SIZE, | ||
729 | }; | ||
730 | |||
731 | static struct platform_device dove_xor11_channel = { | ||
732 | .name = MV_XOR_NAME, | ||
733 | .id = 3, | ||
734 | .num_resources = ARRAY_SIZE(dove_xor11_resources), | ||
735 | .resource = dove_xor11_resources, | ||
736 | .dev = { | ||
737 | .dma_mask = &dove_xor1_dmamask, | ||
738 | .coherent_dma_mask = DMA_BIT_MASK(64), | ||
739 | .platform_data = &dove_xor11_data, | ||
740 | }, | ||
741 | }; | ||
742 | |||
743 | void __init dove_xor1_init(void) | 211 | void __init dove_xor1_init(void) |
744 | { | 212 | { |
745 | platform_device_register(&dove_xor1_shared); | 213 | orion_xor1_init(DOVE_XOR1_PHYS_BASE, DOVE_XOR1_HIGH_PHYS_BASE, |
746 | 214 | IRQ_DOVE_XOR_10, IRQ_DOVE_XOR_11); | |
747 | /* | ||
748 | * two engines can't do memset simultaneously, this limitation | ||
749 | * satisfied by removing memset support from one of the engines. | ||
750 | */ | ||
751 | dma_cap_set(DMA_MEMCPY, dove_xor10_data.cap_mask); | ||
752 | dma_cap_set(DMA_XOR, dove_xor10_data.cap_mask); | ||
753 | platform_device_register(&dove_xor10_channel); | ||
754 | |||
755 | dma_cap_set(DMA_MEMCPY, dove_xor11_data.cap_mask); | ||
756 | dma_cap_set(DMA_MEMSET, dove_xor11_data.cap_mask); | ||
757 | dma_cap_set(DMA_XOR, dove_xor11_data.cap_mask); | ||
758 | platform_device_register(&dove_xor11_channel); | ||
759 | } | 215 | } |
760 | 216 | ||
761 | /***************************************************************************** | 217 | /***************************************************************************** |
@@ -833,14 +289,6 @@ void __init dove_init(void) | |||
833 | #endif | 289 | #endif |
834 | dove_setup_cpu_mbus(); | 290 | dove_setup_cpu_mbus(); |
835 | 291 | ||
836 | dove_ge00_shared_data.t_clk = tclk; | ||
837 | dove_uart0_data[0].uartclk = tclk; | ||
838 | dove_uart1_data[0].uartclk = tclk; | ||
839 | dove_uart2_data[0].uartclk = tclk; | ||
840 | dove_uart3_data[0].uartclk = tclk; | ||
841 | dove_spi0_data.tclk = tclk; | ||
842 | dove_spi1_data.tclk = tclk; | ||
843 | |||
844 | /* internal devices that every board has */ | 292 | /* internal devices that every board has */ |
845 | dove_rtc_init(); | 293 | dove_rtc_init(); |
846 | dove_xor0_init(); | 294 | dove_xor0_init(); |
diff --git a/arch/arm/mach-dove/mpp.c b/arch/arm/mach-dove/mpp.c index c66c76346904..51e0e411c9cb 100644 --- a/arch/arm/mach-dove/mpp.c +++ b/arch/arm/mach-dove/mpp.c | |||
@@ -11,24 +11,17 @@ | |||
11 | #include <linux/kernel.h> | 11 | #include <linux/kernel.h> |
12 | #include <linux/gpio.h> | 12 | #include <linux/gpio.h> |
13 | #include <linux/io.h> | 13 | #include <linux/io.h> |
14 | 14 | #include <plat/mpp.h> | |
15 | #include <mach/dove.h> | 15 | #include <mach/dove.h> |
16 | |||
17 | #include "mpp.h" | 16 | #include "mpp.h" |
18 | 17 | ||
19 | #define MPP_NR_REGS 4 | ||
20 | #define MPP_CTRL(i) ((i) == 3 ? \ | ||
21 | DOVE_MPP_CTRL4_VIRT_BASE : \ | ||
22 | DOVE_MPP_VIRT_BASE + (i) * 4) | ||
23 | #define PMU_SIG_REGS 2 | ||
24 | #define PMU_SIG_CTRL(i) (DOVE_PMU_SIG_CTRL + (i) * 4) | ||
25 | |||
26 | struct dove_mpp_grp { | 18 | struct dove_mpp_grp { |
27 | int start; | 19 | int start; |
28 | int end; | 20 | int end; |
29 | }; | 21 | }; |
30 | 22 | ||
31 | static struct dove_mpp_grp dove_mpp_grp[] = { | 23 | /* Map a group to a range of GPIO pins in that group */ |
24 | static const struct dove_mpp_grp dove_mpp_grp[] = { | ||
32 | [MPP_24_39] = { | 25 | [MPP_24_39] = { |
33 | .start = 24, | 26 | .start = 24, |
34 | .end = 39, | 27 | .end = 39, |
@@ -38,8 +31,8 @@ static struct dove_mpp_grp dove_mpp_grp[] = { | |||
38 | .end = 45, | 31 | .end = 45, |
39 | }, | 32 | }, |
40 | [MPP_46_51] = { | 33 | [MPP_46_51] = { |
41 | .start = 40, | 34 | .start = 46, |
42 | .end = 45, | 35 | .end = 51, |
43 | }, | 36 | }, |
44 | [MPP_58_61] = { | 37 | [MPP_58_61] = { |
45 | .start = 58, | 38 | .start = 58, |
@@ -51,6 +44,8 @@ static struct dove_mpp_grp dove_mpp_grp[] = { | |||
51 | }, | 44 | }, |
52 | }; | 45 | }; |
53 | 46 | ||
47 | /* Enable gpio for a range of pins. mode should be a combination of | ||
48 | GPIO_OUTPUT_OK | GPIO_INPUT_OK */ | ||
54 | static void dove_mpp_gpio_mode(int start, int end, int gpio_mode) | 49 | static void dove_mpp_gpio_mode(int start, int end, int gpio_mode) |
55 | { | 50 | { |
56 | int i; | 51 | int i; |
@@ -59,24 +54,17 @@ static void dove_mpp_gpio_mode(int start, int end, int gpio_mode) | |||
59 | orion_gpio_set_valid(i, gpio_mode); | 54 | orion_gpio_set_valid(i, gpio_mode); |
60 | } | 55 | } |
61 | 56 | ||
57 | /* Dump all the extra MPP registers. The platform code will dump the | ||
58 | registers for pins 0-23. */ | ||
62 | static void dove_mpp_dump_regs(void) | 59 | static void dove_mpp_dump_regs(void) |
63 | { | 60 | { |
64 | #ifdef DEBUG | 61 | pr_debug("PMU_CTRL4_CTRL: %08x\n", |
65 | int i; | 62 | readl(DOVE_MPP_CTRL4_VIRT_BASE)); |
66 | 63 | ||
67 | pr_debug("MPP_CTRL regs:"); | 64 | pr_debug("PMU_MPP_GENERAL_CTRL: %08x\n", |
68 | for (i = 0; i < MPP_NR_REGS; i++) | 65 | readl(DOVE_PMU_MPP_GENERAL_CTRL)); |
69 | printk(" %08x", readl(MPP_CTRL(i))); | ||
70 | printk("\n"); | ||
71 | 66 | ||
72 | pr_debug("PMU_SIG_CTRL regs:"); | ||
73 | for (i = 0; i < PMU_SIG_REGS; i++) | ||
74 | printk(" %08x", readl(PMU_SIG_CTRL(i))); | ||
75 | printk("\n"); | ||
76 | |||
77 | pr_debug("PMU_MPP_GENERAL_CTRL: %08x\n", readl(DOVE_PMU_MPP_GENERAL_CTRL)); | ||
78 | pr_debug("MPP_GENERAL: %08x\n", readl(DOVE_MPP_GENERAL_VIRT_BASE)); | 67 | pr_debug("MPP_GENERAL: %08x\n", readl(DOVE_MPP_GENERAL_VIRT_BASE)); |
79 | #endif | ||
80 | } | 68 | } |
81 | 69 | ||
82 | static void dove_mpp_cfg_nfc(int sel) | 70 | static void dove_mpp_cfg_nfc(int sel) |
@@ -92,7 +80,7 @@ static void dove_mpp_cfg_nfc(int sel) | |||
92 | 80 | ||
93 | static void dove_mpp_cfg_au1(int sel) | 81 | static void dove_mpp_cfg_au1(int sel) |
94 | { | 82 | { |
95 | u32 mpp_ctrl4 = readl(DOVE_MPP_CTRL4_VIRT_BASE); | 83 | u32 mpp_ctrl4 = readl(DOVE_MPP_CTRL4_VIRT_BASE); |
96 | u32 ssp_ctrl1 = readl(DOVE_SSP_CTRL_STATUS_1); | 84 | u32 ssp_ctrl1 = readl(DOVE_SSP_CTRL_STATUS_1); |
97 | u32 mpp_gen_ctrl = readl(DOVE_MPP_GENERAL_VIRT_BASE); | 85 | u32 mpp_gen_ctrl = readl(DOVE_MPP_GENERAL_VIRT_BASE); |
98 | u32 global_cfg_2 = readl(DOVE_GLOBAL_CONFIG_2); | 86 | u32 global_cfg_2 = readl(DOVE_GLOBAL_CONFIG_2); |
@@ -128,82 +116,46 @@ static void dove_mpp_cfg_au1(int sel) | |||
128 | writel(global_cfg_2, DOVE_GLOBAL_CONFIG_2); | 116 | writel(global_cfg_2, DOVE_GLOBAL_CONFIG_2); |
129 | } | 117 | } |
130 | 118 | ||
131 | static void dove_mpp_conf_grp(int num, int sel, u32 *mpp_ctrl) | 119 | /* Configure the group registers, enabling GPIO if sel indicates the |
132 | { | 120 | pin is to be used for GPIO */ |
133 | int start = dove_mpp_grp[num].start; | 121 | static void dove_mpp_conf_grp(unsigned int *mpp_grp_list) |
134 | int end = dove_mpp_grp[num].end; | ||
135 | int gpio_mode = sel ? GPIO_OUTPUT_OK | GPIO_INPUT_OK : 0; | ||
136 | |||
137 | *mpp_ctrl &= ~(0x1 << num); | ||
138 | *mpp_ctrl |= sel << num; | ||
139 | |||
140 | dove_mpp_gpio_mode(start, end, gpio_mode); | ||
141 | } | ||
142 | |||
143 | void __init dove_mpp_conf(unsigned int *mpp_list) | ||
144 | { | 122 | { |
145 | u32 mpp_ctrl[MPP_NR_REGS]; | 123 | u32 mpp_ctrl4 = readl(DOVE_MPP_CTRL4_VIRT_BASE); |
146 | u32 pmu_mpp_ctrl = 0; | 124 | int gpio_mode; |
147 | u32 pmu_sig_ctrl[PMU_SIG_REGS]; | ||
148 | int i; | ||
149 | |||
150 | for (i = 0; i < MPP_NR_REGS; i++) | ||
151 | mpp_ctrl[i] = readl(MPP_CTRL(i)); | ||
152 | |||
153 | for (i = 0; i < PMU_SIG_REGS; i++) | ||
154 | pmu_sig_ctrl[i] = readl(PMU_SIG_CTRL(i)); | ||
155 | |||
156 | pmu_mpp_ctrl = readl(DOVE_PMU_MPP_GENERAL_CTRL); | ||
157 | 125 | ||
158 | dove_mpp_dump_regs(); | 126 | for ( ; *mpp_grp_list; mpp_grp_list++) { |
159 | 127 | unsigned int num = MPP_NUM(*mpp_grp_list); | |
160 | for ( ; *mpp_list != MPP_END; mpp_list++) { | 128 | unsigned int sel = MPP_SEL(*mpp_grp_list); |
161 | unsigned int num = MPP_NUM(*mpp_list); | ||
162 | unsigned int sel = MPP_SEL(*mpp_list); | ||
163 | int shift, gpio_mode; | ||
164 | |||
165 | if (num > MPP_MAX) { | ||
166 | pr_err("dove: invalid MPP number (%u)\n", num); | ||
167 | continue; | ||
168 | } | ||
169 | |||
170 | if (*mpp_list & MPP_NFC_MASK) { | ||
171 | dove_mpp_cfg_nfc(sel); | ||
172 | continue; | ||
173 | } | ||
174 | 129 | ||
175 | if (*mpp_list & MPP_AU1_MASK) { | 130 | if (num > MPP_GRP_MAX) { |
176 | dove_mpp_cfg_au1(sel); | 131 | pr_err("dove: invalid MPP GRP number (%u)\n", num); |
177 | continue; | 132 | continue; |
178 | } | 133 | } |
179 | 134 | ||
180 | if (*mpp_list & MPP_GRP_MASK) { | 135 | mpp_ctrl4 &= ~(0x1 << num); |
181 | dove_mpp_conf_grp(num, sel, &mpp_ctrl[3]); | 136 | mpp_ctrl4 |= sel << num; |
182 | continue; | ||
183 | } | ||
184 | |||
185 | shift = (num & 7) << 2; | ||
186 | if (*mpp_list & MPP_PMU_MASK) { | ||
187 | pmu_mpp_ctrl |= (0x1 << num); | ||
188 | pmu_sig_ctrl[num / 8] &= ~(0xf << shift); | ||
189 | pmu_sig_ctrl[num / 8] |= 0xf << shift; | ||
190 | gpio_mode = 0; | ||
191 | } else { | ||
192 | mpp_ctrl[num / 8] &= ~(0xf << shift); | ||
193 | mpp_ctrl[num / 8] |= sel << shift; | ||
194 | gpio_mode = GPIO_OUTPUT_OK | GPIO_INPUT_OK; | ||
195 | } | ||
196 | 137 | ||
197 | orion_gpio_set_valid(num, gpio_mode); | 138 | gpio_mode = sel ? GPIO_OUTPUT_OK | GPIO_INPUT_OK : 0; |
139 | dove_mpp_gpio_mode(dove_mpp_grp[num].start, | ||
140 | dove_mpp_grp[num].end, gpio_mode); | ||
198 | } | 141 | } |
142 | writel(mpp_ctrl4, DOVE_MPP_CTRL4_VIRT_BASE); | ||
143 | } | ||
199 | 144 | ||
200 | for (i = 0; i < MPP_NR_REGS; i++) | 145 | /* Configure the various MPP pins on Dove */ |
201 | writel(mpp_ctrl[i], MPP_CTRL(i)); | 146 | void __init dove_mpp_conf(unsigned int *mpp_list, |
147 | unsigned int *mpp_grp_list, | ||
148 | unsigned int grp_au1_52_57, | ||
149 | unsigned int grp_nfc_64_71) | ||
150 | { | ||
151 | dove_mpp_dump_regs(); | ||
202 | 152 | ||
203 | for (i = 0; i < PMU_SIG_REGS; i++) | 153 | /* Use platform code for pins 0-23 */ |
204 | writel(pmu_sig_ctrl[i], PMU_SIG_CTRL(i)); | 154 | orion_mpp_conf(mpp_list, 0, MPP_MAX, DOVE_MPP_VIRT_BASE); |
205 | 155 | ||
206 | writel(pmu_mpp_ctrl, DOVE_PMU_MPP_GENERAL_CTRL); | 156 | dove_mpp_conf_grp(mpp_grp_list); |
157 | dove_mpp_cfg_au1(grp_au1_52_57); | ||
158 | dove_mpp_cfg_nfc(grp_nfc_64_71); | ||
207 | 159 | ||
208 | dove_mpp_dump_regs(); | 160 | dove_mpp_dump_regs(); |
209 | } | 161 | } |
diff --git a/arch/arm/mach-dove/mpp.h b/arch/arm/mach-dove/mpp.h index 2a43ce413b15..fbec7c52bfac 100644 --- a/arch/arm/mach-dove/mpp.h +++ b/arch/arm/mach-dove/mpp.h | |||
@@ -1,178 +1,150 @@ | |||
1 | #ifndef __ARCH_DOVE_MPP_CODED_H | 1 | #ifndef __ARCH_DOVE_MPP_CODED_H |
2 | #define __ARCH_DOVE_MPP_CODED_H | 2 | #define __ARCH_DOVE_MPP_CODED_H |
3 | 3 | ||
4 | #define MPP(_num, _mode, _pmu, _grp, _au1, _nfc) ( \ | 4 | #define MPP(_num, _sel, _in, _out) ( \ |
5 | /* MPP/group number */ ((_num) & 0xff) | \ | 5 | /* MPP number */ ((_num) & 0xff) | \ |
6 | /* MPP select value */ (((_mode) & 0xf) << 8) | \ | 6 | /* MPP select value */ (((_sel) & 0xf) << 8) | \ |
7 | /* MPP PMU */ ((!!(_pmu)) << 12) | \ | 7 | /* may be input signal */ ((!!(_in)) << 12) | \ |
8 | /* group flag */ ((!!(_grp)) << 13) | \ | 8 | /* may be output signal */ ((!!(_out)) << 13)) |
9 | /* AU1 flag */ ((!!(_au1)) << 14) | \ | 9 | |
10 | /* NFCE flag */ ((!!(_nfc)) << 15)) | 10 | #define MPP0_GPIO0 MPP(0, 0x0, 1, 1) |
11 | 11 | #define MPP0_UA2_RTSn MPP(0, 0x2, 0, 0) | |
12 | #define MPP_MAX 71 | 12 | #define MPP0_SDIO0_CD MPP(0, 0x3, 0, 0) |
13 | 13 | #define MPP0_LCD0_PWM MPP(0, 0xf, 0, 0) | |
14 | #define MPP_NUM(x) ((x) & 0xff) | 14 | |
15 | #define MPP_SEL(x) (((x) >> 8) & 0xf) | 15 | #define MPP1_GPIO1 MPP(1, 0x0, 1, 1) |
16 | 16 | #define MPP1_UA2_CTSn MPP(1, 0x2, 0, 0) | |
17 | #define MPP_PMU_MASK MPP(0, 0x0, 1, 0, 0, 0) | 17 | #define MPP1_SDIO0_WP MPP(1, 0x3, 0, 0) |
18 | #define MPP_GRP_MASK MPP(0, 0x0, 0, 1, 0, 0) | 18 | #define MPP1_LCD1_PWM MPP(1, 0xf, 0, 0) |
19 | #define MPP_AU1_MASK MPP(0, 0x0, 0, 0, 1, 0) | 19 | |
20 | #define MPP_NFC_MASK MPP(0, 0x0, 0, 0, 0, 1) | 20 | #define MPP2_GPIO2 MPP(2, 0x0, 1, 1) |
21 | 21 | #define MPP2_SATA_PRESENT MPP(2, 0x1, 0, 0) | |
22 | #define MPP_END MPP(0xff, 0xf, 1, 1, 1, 1) | 22 | #define MPP2_UA2_TXD MPP(2, 0x2, 0, 0) |
23 | 23 | #define MPP2_SDIO0_BUS_POWER MPP(2, 0x3, 0, 0) | |
24 | #define MPP_PMU_DRIVE_0 0x1 | 24 | #define MPP2_UA_RTSn1 MPP(2, 0x4, 0, 0) |
25 | #define MPP_PMU_DRIVE_1 0x2 | 25 | |
26 | #define MPP_PMU_SDI 0x3 | 26 | #define MPP3_GPIO3 MPP(3, 0x0, 1, 1) |
27 | #define MPP_PMU_CPU_PWRDWN 0x4 | 27 | #define MPP3_SATA_ACT MPP(3, 0x1, 0, 0) |
28 | #define MPP_PMU_STBY_PWRDWN 0x5 | 28 | #define MPP3_UA2_RXD MPP(3, 0x2, 0, 0) |
29 | #define MPP_PMU_CORE_PWR_GOOD 0x8 | 29 | #define MPP3_SDIO0_LED_CTRL MPP(3, 0x3, 0, 0) |
30 | #define MPP_PMU_BAT_FAULT 0xa | 30 | #define MPP3_UA_CTSn1 MPP(3, 0x4, 0, 0) |
31 | #define MPP_PMU_EXT0_WU 0xb | 31 | #define MPP3_SPI_LCD_CS1 MPP(3, 0xf, 0, 0) |
32 | #define MPP_PMU_EXT1_WU 0xc | 32 | |
33 | #define MPP_PMU_EXT2_WU 0xd | 33 | #define MPP4_GPIO4 MPP(4, 0x0, 1, 1) |
34 | #define MPP_PMU_BLINK 0xe | 34 | #define MPP4_UA3_RTSn MPP(4, 0x2, 0, 0) |
35 | #define MPP_PMU(_num, _mode) MPP((_num), MPP_PMU_##_mode, 1, 0, 0, 0) | 35 | #define MPP4_SDIO1_CD MPP(4, 0x3, 0, 0) |
36 | 36 | #define MPP4_SPI_1_MISO MPP(4, 0x4, 0, 0) | |
37 | #define MPP_PIN(_num, _mode) MPP((_num), (_mode), 0, 0, 0, 0) | 37 | |
38 | #define MPP_GRP(_grp, _mode) MPP((_grp), (_mode), 0, 1, 0, 0) | 38 | #define MPP5_GPIO5 MPP(5, 0x0, 1, 1) |
39 | #define MPP_GRP_AU1(_mode) MPP(0, (_mode), 0, 0, 1, 0) | 39 | #define MPP5_UA3_CTSn MPP(5, 0x2, 0, 0) |
40 | #define MPP_GRP_NFC(_mode) MPP(0, (_mode), 0, 0, 0, 1) | 40 | #define MPP5_SDIO1_WP MPP(5, 0x3, 0, 0) |
41 | 41 | #define MPP5_SPI_1_CS MPP(5, 0x4, 0, 0) | |
42 | #define MPP0_GPIO0 MPP_PIN(0, 0x0) | 42 | |
43 | #define MPP0_UA2_RTSn MPP_PIN(0, 0x2) | 43 | #define MPP6_GPIO6 MPP(6, 0x0, 1, 1) |
44 | #define MPP0_SDIO0_CD MPP_PIN(0, 0x3) | 44 | #define MPP6_UA3_TXD MPP(6, 0x2, 0, 0) |
45 | #define MPP0_LCD0_PWM MPP_PIN(0, 0xf) | 45 | #define MPP6_SDIO1_BUS_POWER MPP(6, 0x3, 0, 0) |
46 | 46 | #define MPP6_SPI_1_MOSI MPP(6, 0x4, 0, 0) | |
47 | #define MPP1_GPIO1 MPP_PIN(1, 0x0) | 47 | |
48 | #define MPP1_UA2_CTSn MPP_PIN(1, 0x2) | 48 | #define MPP7_GPIO7 MPP(7, 0x0, 1, 1) |
49 | #define MPP1_SDIO0_WP MPP_PIN(1, 0x3) | 49 | #define MPP7_UA3_RXD MPP(7, 0x2, 0, 0) |
50 | #define MPP1_LCD1_PWM MPP_PIN(1, 0xf) | 50 | #define MPP7_SDIO1_LED_CTRL MPP(7, 0x3, 0, 0) |
51 | 51 | #define MPP7_SPI_1_SCK MPP(7, 0x4, 0, 0) | |
52 | #define MPP2_GPIO2 MPP_PIN(2, 0x0) | 52 | |
53 | #define MPP2_SATA_PRESENT MPP_PIN(2, 0x1) | 53 | #define MPP8_GPIO8 MPP(8, 0x0, 1, 1) |
54 | #define MPP2_UA2_TXD MPP_PIN(2, 0x2) | 54 | #define MPP8_WD_RST_OUT MPP(8, 0x1, 0, 0) |
55 | #define MPP2_SDIO0_BUS_POWER MPP_PIN(2, 0x3) | 55 | |
56 | #define MPP2_UA_RTSn1 MPP_PIN(2, 0x4) | 56 | #define MPP9_GPIO9 MPP(9, 0x0, 1, 1) |
57 | 57 | #define MPP9_PEX1_CLKREQn MPP(9, 0x5, 0, 0) | |
58 | #define MPP3_GPIO3 MPP_PIN(3, 0x0) | 58 | |
59 | #define MPP3_SATA_ACT MPP_PIN(3, 0x1) | 59 | #define MPP10_GPIO10 MPP(10, 0x0, 1, 1) |
60 | #define MPP3_UA2_RXD MPP_PIN(3, 0x2) | 60 | #define MPP10_SSP_SCLK MPP(10, 0x5, 0, 0) |
61 | #define MPP3_SDIO0_LED_CTRL MPP_PIN(3, 0x3) | 61 | |
62 | #define MPP3_UA_CTSn1 MPP_PIN(3, 0x4) | 62 | #define MPP11_GPIO11 MPP(11, 0x0, 1, 1) |
63 | #define MPP3_SPI_LCD_CS1 MPP_PIN(3, 0xf) | 63 | #define MPP11_SATA_PRESENT MPP(11, 0x1, 0, 0) |
64 | 64 | #define MPP11_SATA_ACT MPP(11, 0x2, 0, 0) | |
65 | #define MPP4_GPIO4 MPP_PIN(4, 0x0) | 65 | #define MPP11_SDIO0_LED_CTRL MPP(11, 0x3, 0, 0) |
66 | #define MPP4_UA3_RTSn MPP_PIN(4, 0x2) | 66 | #define MPP11_SDIO1_LED_CTRL MPP(11, 0x4, 0, 0) |
67 | #define MPP4_SDIO1_CD MPP_PIN(4, 0x3) | 67 | #define MPP11_PEX0_CLKREQn MPP(11, 0x5, 0, 0) |
68 | #define MPP4_SPI_1_MISO MPP_PIN(4, 0x4) | 68 | |
69 | 69 | #define MPP12_GPIO12 MPP(12, 0x0, 1, 1) | |
70 | #define MPP5_GPIO5 MPP_PIN(5, 0x0) | 70 | #define MPP12_SATA_ACT MPP(12, 0x1, 0, 0) |
71 | #define MPP5_UA3_CTSn MPP_PIN(5, 0x2) | 71 | #define MPP12_UA2_RTSn MPP(12, 0x2, 0, 0) |
72 | #define MPP5_SDIO1_WP MPP_PIN(5, 0x3) | 72 | #define MPP12_AD0_I2S_EXT_MCLK MPP(12, 0x3, 0, 0) |
73 | #define MPP5_SPI_1_CS MPP_PIN(5, 0x4) | 73 | #define MPP12_SDIO1_CD MPP(12, 0x4, 0, 0) |
74 | 74 | ||
75 | #define MPP6_GPIO6 MPP_PIN(6, 0x0) | 75 | #define MPP13_GPIO13 MPP(13, 0x0, 1, 1) |
76 | #define MPP6_UA3_TXD MPP_PIN(6, 0x2) | 76 | #define MPP13_UA2_CTSn MPP(13, 0x2, 0, 0) |
77 | #define MPP6_SDIO1_BUS_POWER MPP_PIN(6, 0x3) | 77 | #define MPP13_AD1_I2S_EXT_MCLK MPP(13, 0x3, 0, 0) |
78 | #define MPP6_SPI_1_MOSI MPP_PIN(6, 0x4) | 78 | #define MPP13_SDIO1WP MPP(13, 0x4, 0, 0) |
79 | 79 | #define MPP13_SSP_EXTCLK MPP(13, 0x5, 0, 0) | |
80 | #define MPP7_GPIO7 MPP_PIN(7, 0x0) | 80 | |
81 | #define MPP7_UA3_RXD MPP_PIN(7, 0x2) | 81 | #define MPP14_GPIO14 MPP(14, 0x0, 1, 1) |
82 | #define MPP7_SDIO1_LED_CTRL MPP_PIN(7, 0x3) | 82 | #define MPP14_UA2_TXD MPP(14, 0x2, 0, 0) |
83 | #define MPP7_SPI_1_SCK MPP_PIN(7, 0x4) | 83 | #define MPP14_SDIO1_BUS_POWER MPP(14, 0x4, 0, 0) |
84 | 84 | #define MPP14_SSP_RXD MPP(14, 0x5, 0, 0) | |
85 | #define MPP8_GPIO8 MPP_PIN(8, 0x0) | 85 | |
86 | #define MPP8_WD_RST_OUT MPP_PIN(8, 0x1) | 86 | #define MPP15_GPIO15 MPP(15, 0x0, 1, 1) |
87 | 87 | #define MPP15_UA2_RXD MPP(15, 0x2, 0, 0) | |
88 | #define MPP9_GPIO9 MPP_PIN(9, 0x0) | 88 | #define MPP15_SDIO1_LED_CTRL MPP(15, 0x4, 0, 0) |
89 | #define MPP9_PEX1_CLKREQn MPP_PIN(9, 0x5) | 89 | #define MPP15_SSP_SFRM MPP(15, 0x5, 0, 0) |
90 | 90 | ||
91 | #define MPP10_GPIO10 MPP_PIN(10, 0x0) | 91 | #define MPP16_GPIO16 MPP(16, 0x0, 1, 1) |
92 | #define MPP10_SSP_SCLK MPP_PIN(10, 0x5) | 92 | #define MPP16_UA3_RTSn MPP(16, 0x2, 0, 0) |
93 | 93 | #define MPP16_SDIO0_CD MPP(16, 0x3, 0, 0) | |
94 | #define MPP11_GPIO11 MPP_PIN(11, 0x0) | 94 | #define MPP16_SPI_LCD_CS1 MPP(16, 0x4, 0, 0) |
95 | #define MPP11_SATA_PRESENT MPP_PIN(11, 0x1) | 95 | #define MPP16_AC97_SDATA_IN1 MPP(16, 0x5, 0, 0) |
96 | #define MPP11_SATA_ACT MPP_PIN(11, 0x2) | 96 | |
97 | #define MPP11_SDIO0_LED_CTRL MPP_PIN(11, 0x3) | 97 | #define MPP17_GPIO17 MPP(17, 0x0, 1, 1) |
98 | #define MPP11_SDIO1_LED_CTRL MPP_PIN(11, 0x4) | 98 | #define MPP17_AC97_SYSCLK_OUT MPP(17, 0x1, 0, 0) |
99 | #define MPP11_PEX0_CLKREQn MPP_PIN(11, 0x5) | 99 | #define MPP17_UA3_CTSn MPP(17, 0x2, 0, 0) |
100 | 100 | #define MPP17_SDIO0_WP MPP(17, 0x3, 0, 0) | |
101 | #define MPP12_GPIO12 MPP_PIN(12, 0x0) | 101 | #define MPP17_TW_SDA2 MPP(17, 0x4, 0, 0) |
102 | #define MPP12_SATA_ACT MPP_PIN(12, 0x1) | 102 | #define MPP17_AC97_SDATA_IN2 MPP(17, 0x5, 0, 0) |
103 | #define MPP12_UA2_RTSn MPP_PIN(12, 0x2) | 103 | |
104 | #define MPP12_AD0_I2S_EXT_MCLK MPP_PIN(12, 0x3) | 104 | #define MPP18_GPIO18 MPP(18, 0x0, 1, 1) |
105 | #define MPP12_SDIO1_CD MPP_PIN(12, 0x4) | 105 | #define MPP18_UA3_TXD MPP(18, 0x2, 0, 0) |
106 | 106 | #define MPP18_SDIO0_BUS_POWER MPP(18, 0x3, 0, 0) | |
107 | #define MPP13_GPIO13 MPP_PIN(13, 0x0) | 107 | #define MPP18_LCD0_PWM MPP(18, 0x4, 0, 0) |
108 | #define MPP13_UA2_CTSn MPP_PIN(13, 0x2) | 108 | #define MPP18_AC_SDATA_IN3 MPP(18, 0x5, 0, 0) |
109 | #define MPP13_AD1_I2S_EXT_MCLK MPP_PIN(13, 0x3) | 109 | |
110 | #define MPP13_SDIO1WP MPP_PIN(13, 0x4) | 110 | #define MPP19_GPIO19 MPP(19, 0x0, 1, 1) |
111 | #define MPP13_SSP_EXTCLK MPP_PIN(13, 0x5) | 111 | #define MPP19_UA3_RXD MPP(19, 0x2, 0, 0) |
112 | 112 | #define MPP19_SDIO0_LED_CTRL MPP(19, 0x3, 0, 0) | |
113 | #define MPP14_GPIO14 MPP_PIN(14, 0x0) | 113 | #define MPP19_TW_SCK2 MPP(19, 0x4, 0, 0) |
114 | #define MPP14_UA2_TXD MPP_PIN(14, 0x2) | 114 | |
115 | #define MPP14_SDIO1_BUS_POWER MPP_PIN(14, 0x4) | 115 | #define MPP20_GPIO20 MPP(20, 0x0, 1, 1) |
116 | #define MPP14_SSP_RXD MPP_PIN(14, 0x5) | 116 | #define MPP20_AC97_SYSCLK_OUT MPP(20, 0x1, 0, 0) |
117 | 117 | #define MPP20_SPI_LCD_MISO MPP(20, 0x2, 0, 0) | |
118 | #define MPP15_GPIO15 MPP_PIN(15, 0x0) | 118 | #define MPP20_SDIO1_CD MPP(20, 0x3, 0, 0) |
119 | #define MPP15_UA2_RXD MPP_PIN(15, 0x2) | 119 | #define MPP20_SDIO0_CD MPP(20, 0x5, 0, 0) |
120 | #define MPP15_SDIO1_LED_CTRL MPP_PIN(15, 0x4) | 120 | #define MPP20_SPI_1_MISO MPP(20, 0x6, 0, 0) |
121 | #define MPP15_SSP_SFRM MPP_PIN(15, 0x5) | 121 | |
122 | 122 | #define MPP21_GPIO21 MPP(21, 0x0, 1, 1) | |
123 | #define MPP16_GPIO16 MPP_PIN(16, 0x0) | 123 | #define MPP21_UA1_RTSn MPP(21, 0x1, 0, 0) |
124 | #define MPP16_UA3_RTSn MPP_PIN(16, 0x2) | 124 | #define MPP21_SPI_LCD_CS0 MPP(21, 0x2, 0, 0) |
125 | #define MPP16_SDIO0_CD MPP_PIN(16, 0x3) | 125 | #define MPP21_SDIO1_WP MPP(21, 0x3, 0, 0) |
126 | #define MPP16_SPI_LCD_CS1 MPP_PIN(16, 0x4) | 126 | #define MPP21_SSP_SFRM MPP(21, 0x4, 0, 0) |
127 | #define MPP16_AC97_SDATA_IN1 MPP_PIN(16, 0x5) | 127 | #define MPP21_SDIO0_WP MPP(21, 0x5, 0, 0) |
128 | 128 | #define MPP21_SPI_1_CS MPP(21, 0x6, 0, 0) | |
129 | #define MPP17_GPIO17 MPP_PIN(17, 0x0) | 129 | |
130 | #define MPP17_AC97_SYSCLK_OUT MPP_PIN(17, 0x1) | 130 | #define MPP22_GPIO22 MPP(22, 0x0, 1, 1) |
131 | #define MPP17_UA3_CTSn MPP_PIN(17, 0x2) | 131 | #define MPP22_UA1_CTSn MPP(22, 0x1, 0, 0) |
132 | #define MPP17_SDIO0_WP MPP_PIN(17, 0x3) | 132 | #define MPP22_SPI_LCD_MOSI MPP(22, 0x2, 0, 0) |
133 | #define MPP17_TW_SDA2 MPP_PIN(17, 0x4) | 133 | #define MPP22_SDIO1_BUS_POWER MPP(22, 0x3, 0, 0) |
134 | #define MPP17_AC97_SDATA_IN2 MPP_PIN(17, 0x5) | 134 | #define MPP22_SSP_TXD MPP(22, 0x4, 0, 0) |
135 | 135 | #define MPP22_SDIO0_BUS_POWER MPP(22, 0x5, 0, 0) | |
136 | #define MPP18_GPIO18 MPP_PIN(18, 0x0) | 136 | #define MPP22_SPI_1_MOSI MPP(22, 0x6, 0, 0) |
137 | #define MPP18_UA3_TXD MPP_PIN(18, 0x2) | 137 | |
138 | #define MPP18_SDIO0_BUS_POWER MPP_PIN(18, 0x3) | 138 | #define MPP23_GPIO23 MPP(23, 0x0, 1, 1) |
139 | #define MPP18_LCD0_PWM MPP_PIN(18, 0x4) | 139 | #define MPP23_SPI_LCD_SCK MPP(23, 0x2, 0, 0) |
140 | #define MPP18_AC_SDATA_IN3 MPP_PIN(18, 0x5) | 140 | #define MPP23_SDIO1_LED_CTRL MPP(23, 0x3, 0, 0) |
141 | 141 | #define MPP23_SSP_SCLK MPP(23, 0x4, 0, 0) | |
142 | #define MPP19_GPIO19 MPP_PIN(19, 0x0) | 142 | #define MPP23_SDIO0_LED_CTRL MPP(23, 0x5, 0, 0) |
143 | #define MPP19_UA3_RXD MPP_PIN(19, 0x2) | 143 | #define MPP23_SPI_1_SCK MPP(23, 0x6, 0, 0) |
144 | #define MPP19_SDIO0_LED_CTRL MPP_PIN(19, 0x3) | 144 | |
145 | #define MPP19_TW_SCK2 MPP_PIN(19, 0x4) | 145 | #define MPP_MAX 23 |
146 | 146 | ||
147 | #define MPP20_GPIO20 MPP_PIN(20, 0x0) | 147 | #define MPP_GRP(_grp, _mode) MPP((_grp), (_mode), 0, 0) |
148 | #define MPP20_AC97_SYSCLK_OUT MPP_PIN(20, 0x1) | ||
149 | #define MPP20_SPI_LCD_MISO MPP_PIN(20, 0x2) | ||
150 | #define MPP20_SDIO1_CD MPP_PIN(20, 0x3) | ||
151 | #define MPP20_SDIO0_CD MPP_PIN(20, 0x5) | ||
152 | #define MPP20_SPI_1_MISO MPP_PIN(20, 0x6) | ||
153 | |||
154 | #define MPP21_GPIO21 MPP_PIN(21, 0x0) | ||
155 | #define MPP21_UA1_RTSn MPP_PIN(21, 0x1) | ||
156 | #define MPP21_SPI_LCD_CS0 MPP_PIN(21, 0x2) | ||
157 | #define MPP21_SDIO1_WP MPP_PIN(21, 0x3) | ||
158 | #define MPP21_SSP_SFRM MPP_PIN(21, 0x4) | ||
159 | #define MPP21_SDIO0_WP MPP_PIN(21, 0x5) | ||
160 | #define MPP21_SPI_1_CS MPP_PIN(21, 0x6) | ||
161 | |||
162 | #define MPP22_GPIO22 MPP_PIN(22, 0x0) | ||
163 | #define MPP22_UA1_CTSn MPP_PIN(22, 0x1) | ||
164 | #define MPP22_SPI_LCD_MOSI MPP_PIN(22, 0x2) | ||
165 | #define MPP22_SDIO1_BUS_POWER MPP_PIN(22, 0x3) | ||
166 | #define MPP22_SSP_TXD MPP_PIN(22, 0x4) | ||
167 | #define MPP22_SDIO0_BUS_POWER MPP_PIN(22, 0x5) | ||
168 | #define MPP22_SPI_1_MOSI MPP_PIN(22, 0x6) | ||
169 | |||
170 | #define MPP23_GPIO23 MPP_PIN(23, 0x0) | ||
171 | #define MPP23_SPI_LCD_SCK MPP_PIN(23, 0x2) | ||
172 | #define MPP23_SDIO1_LED_CTRL MPP_PIN(23, 0x3) | ||
173 | #define MPP23_SSP_SCLK MPP_PIN(23, 0x4) | ||
174 | #define MPP23_SDIO0_LED_CTRL MPP_PIN(23, 0x5) | ||
175 | #define MPP23_SPI_1_SCK MPP_PIN(23, 0x6) | ||
176 | 148 | ||
177 | /* for MPP groups _num is a group index */ | 149 | /* for MPP groups _num is a group index */ |
178 | enum dove_mpp_grp_idx { | 150 | enum dove_mpp_grp_idx { |
@@ -181,40 +153,44 @@ enum dove_mpp_grp_idx { | |||
181 | MPP_46_51 = 1, | 153 | MPP_46_51 = 1, |
182 | MPP_58_61 = 5, | 154 | MPP_58_61 = 5, |
183 | MPP_62_63 = 4, | 155 | MPP_62_63 = 4, |
156 | MPP_GRP_MAX = 5, | ||
184 | }; | 157 | }; |
185 | 158 | ||
186 | #define MPP24_39_GPIO MPP_GRP(MPP_24_39, 0x1) | 159 | #define MPP_GRP_24_39_GPIO MPP_GRP(MPP_24_39, 0x1) |
187 | #define MPP24_39_CAM MPP_GRP(MPP_24_39, 0x0) | 160 | #define MPP_GRP_24_39_CAM MPP_GRP(MPP_24_39, 0x0) |
188 | 161 | ||
189 | #define MPP40_45_GPIO MPP_GRP(MPP_40_45, 0x1) | 162 | #define MPP_GRP_40_45_GPIO MPP_GRP(MPP_40_45, 0x1) |
190 | #define MPP40_45_SD0 MPP_GRP(MPP_40_45, 0x0) | 163 | #define MPP_GRP_40_45_SD0 MPP_GRP(MPP_40_45, 0x0) |
191 | 164 | ||
192 | #define MPP46_51_GPIO MPP_GRP(MPP_46_51, 0x1) | 165 | #define MPP_GRP_46_51_GPIO MPP_GRP(MPP_46_51, 0x1) |
193 | #define MPP46_51_SD1 MPP_GRP(MPP_46_51, 0x0) | 166 | #define MPP_GRP_46_51_SD1 MPP_GRP(MPP_46_51, 0x0) |
194 | 167 | ||
195 | #define MPP58_61_GPIO MPP_GRP(MPP_58_61, 0x1) | 168 | #define MPP_GRP_58_61_GPIO MPP_GRP(MPP_58_61, 0x1) |
196 | #define MPP58_61_SPI MPP_GRP(MPP_58_61, 0x0) | 169 | #define MPP_GRP_58_61_SPI MPP_GRP(MPP_58_61, 0x0) |
197 | 170 | ||
198 | #define MPP62_63_GPIO MPP_GRP(MPP_62_63, 0x1) | 171 | #define MPP_GRP_62_63_GPIO MPP_GRP(MPP_62_63, 0x1) |
199 | #define MPP62_63_UA1 MPP_GRP(MPP_62_63, 0x0) | 172 | #define MPP_GRP_62_63_UA1 MPP_GRP(MPP_62_63, 0x0) |
200 | 173 | ||
201 | /* The MPP[64:71] control differs from other groups */ | 174 | /* The MPP[64:71] control differs from other groups */ |
202 | #define MPP64_71_GPO MPP_GRP_NFC(0x1) | 175 | #define MPP_GRP_NFC_64_71_GPO 0x1 |
203 | #define MPP64_71_NFC MPP_GRP_NFC(0x0) | 176 | #define MPP_GRP_NFC_64_71_NFC 0x0 |
204 | 177 | ||
205 | /* | 178 | /* |
206 | * The MPP[52:57] functionality is encoded by 4 bits in different | 179 | * The MPP[52:57] functionality is encoded by 4 bits in different |
207 | * registers. The _num field in this case encodes those bits in | 180 | * registers. The _num field in this case encodes those bits in |
208 | * correspodence with Table 135 of 88AP510 Functional specification | 181 | * correspodence with Table 135 of 88AP510 Functional specification |
209 | */ | 182 | */ |
210 | #define MPP52_57_AU1 MPP_GRP_AU1(0x0) | 183 | #define MPP_GRP_AU1_52_57_AU1 0x0 |
211 | #define MPP52_57_AU1_GPIO57 MPP_GRP_AU1(0x2) | 184 | #define MPP_GRP_AU1_52_57_AU1_GPIO57 0x2 |
212 | #define MPP52_57_GPIO MPP_GRP_AU1(0xa) | 185 | #define MPP_GRP_AU1_52_57_GPIO 0xa |
213 | #define MPP52_57_TW_GPIO MPP_GRP_AU1(0xb) | 186 | #define MPP_GRP_AU1_52_57_TW_GPIO 0xb |
214 | #define MPP52_57_AU1_SSP MPP_GRP_AU1(0xc) | 187 | #define MPP_GRP_AU1_52_57_AU1_SSP 0xc |
215 | #define MPP52_57_SSP_GPIO MPP_GRP_AU1(0xe) | 188 | #define MPP_GRP_AU1_52_57_SSP_GPIO 0xe |
216 | #define MPP52_57_SSP_TW MPP_GRP_AU1(0xf) | 189 | #define MPP_GRP_AU1_52_57_SSP_TW 0xf |
217 | 190 | ||
218 | void dove_mpp_conf(unsigned int *mpp_list); | 191 | void dove_mpp_conf(unsigned int *mpp_list, |
192 | unsigned int *mpp_grp_list, | ||
193 | unsigned int grp_au1_52_57, | ||
194 | unsigned int grp_nfc_64_71); | ||
219 | 195 | ||
220 | #endif /* __ARCH_DOVE_MPP_CODED_H */ | 196 | #endif /* __ARCH_DOVE_MPP_CODED_H */ |
diff --git a/arch/arm/mach-exynos4/irq-combiner.c b/arch/arm/mach-exynos4/irq-combiner.c index f488b66d6806..5a2758ab055e 100644 --- a/arch/arm/mach-exynos4/irq-combiner.c +++ b/arch/arm/mach-exynos4/irq-combiner.c | |||
@@ -59,8 +59,7 @@ static void combiner_handle_cascade_irq(unsigned int irq, struct irq_desc *desc) | |||
59 | unsigned int cascade_irq, combiner_irq; | 59 | unsigned int cascade_irq, combiner_irq; |
60 | unsigned long status; | 60 | unsigned long status; |
61 | 61 | ||
62 | /* primary controller ack'ing */ | 62 | chained_irq_enter(chip, desc); |
63 | chip->irq_ack(&desc->irq_data); | ||
64 | 63 | ||
65 | spin_lock(&irq_controller_lock); | 64 | spin_lock(&irq_controller_lock); |
66 | status = __raw_readl(chip_data->base + COMBINER_INT_STATUS); | 65 | status = __raw_readl(chip_data->base + COMBINER_INT_STATUS); |
@@ -79,8 +78,7 @@ static void combiner_handle_cascade_irq(unsigned int irq, struct irq_desc *desc) | |||
79 | generic_handle_irq(cascade_irq); | 78 | generic_handle_irq(cascade_irq); |
80 | 79 | ||
81 | out: | 80 | out: |
82 | /* primary controller unmasking */ | 81 | chained_irq_exit(chip, desc); |
83 | chip->irq_unmask(&desc->irq_data); | ||
84 | } | 82 | } |
85 | 83 | ||
86 | static struct irq_chip combiner_chip = { | 84 | static struct irq_chip combiner_chip = { |
diff --git a/arch/arm/mach-gemini/include/mach/uncompress.h b/arch/arm/mach-gemini/include/mach/uncompress.h index 5483f61a8061..0efa26247235 100644 --- a/arch/arm/mach-gemini/include/mach/uncompress.h +++ b/arch/arm/mach-gemini/include/mach/uncompress.h | |||
@@ -16,7 +16,7 @@ | |||
16 | #include <linux/serial_reg.h> | 16 | #include <linux/serial_reg.h> |
17 | #include <mach/hardware.h> | 17 | #include <mach/hardware.h> |
18 | 18 | ||
19 | static volatile unsigned long *UART = (unsigned long *)GEMINI_UART_BASE; | 19 | static volatile unsigned long * const UART = (unsigned long *)GEMINI_UART_BASE; |
20 | 20 | ||
21 | /* | 21 | /* |
22 | * The following code assumes the serial port has already been | 22 | * The following code assumes the serial port has already been |
diff --git a/arch/arm/mach-imx/Kconfig b/arch/arm/mach-imx/Kconfig index 56b930a13443..59c97a331136 100644 --- a/arch/arm/mach-imx/Kconfig +++ b/arch/arm/mach-imx/Kconfig | |||
@@ -1,5 +1,15 @@ | |||
1 | config IMX_HAVE_DMA_V1 | 1 | config IMX_HAVE_DMA_V1 |
2 | bool | 2 | bool |
3 | # | ||
4 | # ARCH_MX31 and ARCH_MX35 are left for compatibility | ||
5 | # Some usages assume that having one of them implies not having (e.g.) ARCH_MX2. | ||
6 | # To easily distinguish good and reviewed from unreviewed usages new (and IMHO | ||
7 | # more sensible) names are used: SOC_IMX31 and SOC_IMX35 | ||
8 | config ARCH_MX31 | ||
9 | bool | ||
10 | |||
11 | config ARCH_MX35 | ||
12 | bool | ||
3 | 13 | ||
4 | config SOC_IMX1 | 14 | config SOC_IMX1 |
5 | bool | 15 | bool |
@@ -31,6 +41,24 @@ config SOC_IMX27 | |||
31 | select IMX_HAVE_IOMUX_V1 | 41 | select IMX_HAVE_IOMUX_V1 |
32 | select MXC_AVIC | 42 | select MXC_AVIC |
33 | 43 | ||
44 | config SOC_IMX31 | ||
45 | bool | ||
46 | select CPU_V6 | ||
47 | select IMX_HAVE_PLATFORM_MXC_RNGA | ||
48 | select ARCH_MXC_AUDMUX_V2 | ||
49 | select ARCH_MX31 | ||
50 | select MXC_AVIC | ||
51 | |||
52 | config SOC_IMX35 | ||
53 | bool | ||
54 | select CPU_V6 | ||
55 | select ARCH_MXC_IOMUX_V3 | ||
56 | select ARCH_MXC_AUDMUX_V2 | ||
57 | select HAVE_EPIT | ||
58 | select ARCH_MX35 | ||
59 | select MXC_AVIC | ||
60 | |||
61 | |||
34 | if ARCH_MX1 | 62 | if ARCH_MX1 |
35 | 63 | ||
36 | comment "MX1 platforms:" | 64 | comment "MX1 platforms:" |
@@ -40,6 +68,7 @@ config MACH_MXLADS | |||
40 | config ARCH_MX1ADS | 68 | config ARCH_MX1ADS |
41 | bool "MX1ADS platform" | 69 | bool "MX1ADS platform" |
42 | select MACH_MXLADS | 70 | select MACH_MXLADS |
71 | select SOC_IMX1 | ||
43 | select IMX_HAVE_PLATFORM_IMX_I2C | 72 | select IMX_HAVE_PLATFORM_IMX_I2C |
44 | select IMX_HAVE_PLATFORM_IMX_UART | 73 | select IMX_HAVE_PLATFORM_IMX_UART |
45 | help | 74 | help |
@@ -51,6 +80,13 @@ config MACH_SCB9328 | |||
51 | help | 80 | help |
52 | Say Y here if you are using a Synertronixx scb9328 board | 81 | Say Y here if you are using a Synertronixx scb9328 board |
53 | 82 | ||
83 | config MACH_APF9328 | ||
84 | bool "APF9328" | ||
85 | select SOC_IMX1 | ||
86 | select IMX_HAVE_PLATFORM_IMX_UART | ||
87 | help | ||
88 | Say Yes here if you are using the Armadeus APF9328 development board | ||
89 | |||
54 | endif | 90 | endif |
55 | 91 | ||
56 | if ARCH_MX2 | 92 | if ARCH_MX2 |
@@ -129,6 +165,7 @@ choice | |||
129 | 165 | ||
130 | config MACH_EUKREA_MBIMXSD25_BASEBOARD | 166 | config MACH_EUKREA_MBIMXSD25_BASEBOARD |
131 | bool "Eukrea MBIMXSD development board" | 167 | bool "Eukrea MBIMXSD development board" |
168 | select IMX_HAVE_PLATFORM_GPIO_KEYS | ||
132 | select IMX_HAVE_PLATFORM_IMX_SSI | 169 | select IMX_HAVE_PLATFORM_IMX_SSI |
133 | help | 170 | help |
134 | This adds board specific devices that can be found on Eukrea's | 171 | This adds board specific devices that can be found on Eukrea's |
@@ -254,6 +291,7 @@ config MACH_MX27_3DS | |||
254 | config MACH_IMX27_VISSTRIM_M10 | 291 | config MACH_IMX27_VISSTRIM_M10 |
255 | bool "Vista Silicon i.MX27 Visstrim_m10" | 292 | bool "Vista Silicon i.MX27 Visstrim_m10" |
256 | select SOC_IMX27 | 293 | select SOC_IMX27 |
294 | select IMX_HAVE_PLATFORM_GPIO_KEYS | ||
257 | select IMX_HAVE_PLATFORM_IMX_I2C | 295 | select IMX_HAVE_PLATFORM_IMX_I2C |
258 | select IMX_HAVE_PLATFORM_IMX_SSI | 296 | select IMX_HAVE_PLATFORM_IMX_SSI |
259 | select IMX_HAVE_PLATFORM_IMX_UART | 297 | select IMX_HAVE_PLATFORM_IMX_UART |
@@ -314,3 +352,251 @@ config MACH_IMX27IPCAM | |||
314 | configurations for the board and its peripherals. | 352 | configurations for the board and its peripherals. |
315 | 353 | ||
316 | endif | 354 | endif |
355 | |||
356 | if ARCH_MX3 | ||
357 | |||
358 | comment "MX31 platforms:" | ||
359 | |||
360 | config MACH_MX31ADS | ||
361 | bool "Support MX31ADS platforms" | ||
362 | select SOC_IMX31 | ||
363 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
364 | select IMX_HAVE_PLATFORM_IMX_SSI | ||
365 | select IMX_HAVE_PLATFORM_IMX_UART | ||
366 | default y | ||
367 | help | ||
368 | Include support for MX31ADS platform. This includes specific | ||
369 | configurations for the board and its peripherals. | ||
370 | |||
371 | config MACH_MX31ADS_WM1133_EV1 | ||
372 | bool "Support Wolfson Microelectronics 1133-EV1 module" | ||
373 | depends on MACH_MX31ADS | ||
374 | depends on MFD_WM8350_I2C | ||
375 | depends on REGULATOR_WM8350 | ||
376 | select MFD_WM8350_CONFIG_MODE_0 | ||
377 | select MFD_WM8352_CONFIG_MODE_0 | ||
378 | help | ||
379 | Include support for the Wolfson Microelectronics 1133-EV1 PMU | ||
380 | and audio module for the MX31ADS platform. | ||
381 | |||
382 | config MACH_MX31LILLY | ||
383 | bool "Support MX31 LILLY-1131 platforms (INCO startec)" | ||
384 | select SOC_IMX31 | ||
385 | select IMX_HAVE_PLATFORM_IMX_UART | ||
386 | select IMX_HAVE_PLATFORM_IPU_CORE | ||
387 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
388 | select IMX_HAVE_PLATFORM_MXC_MMC | ||
389 | select IMX_HAVE_PLATFORM_SPI_IMX | ||
390 | select MXC_ULPI if USB_ULPI | ||
391 | help | ||
392 | Include support for mx31 based LILLY1131 modules. This includes | ||
393 | specific configurations for the board and its peripherals. | ||
394 | |||
395 | config MACH_MX31LITE | ||
396 | bool "Support MX31 LITEKIT (LogicPD)" | ||
397 | select SOC_IMX31 | ||
398 | select MXC_ULPI if USB_ULPI | ||
399 | select IMX_HAVE_PLATFORM_IMX2_WDT | ||
400 | select IMX_HAVE_PLATFORM_IMX_UART | ||
401 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
402 | select IMX_HAVE_PLATFORM_MXC_MMC | ||
403 | select IMX_HAVE_PLATFORM_MXC_NAND | ||
404 | select IMX_HAVE_PLATFORM_MXC_RTC | ||
405 | select IMX_HAVE_PLATFORM_SPI_IMX | ||
406 | help | ||
407 | Include support for MX31 LITEKIT platform. This includes specific | ||
408 | configurations for the board and its peripherals. | ||
409 | |||
410 | config MACH_PCM037 | ||
411 | bool "Support Phytec pcm037 (i.MX31) platforms" | ||
412 | select SOC_IMX31 | ||
413 | select IMX_HAVE_PLATFORM_FSL_USB2_UDC | ||
414 | select IMX_HAVE_PLATFORM_IMX2_WDT | ||
415 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
416 | select IMX_HAVE_PLATFORM_IMX_UART | ||
417 | select IMX_HAVE_PLATFORM_IPU_CORE | ||
418 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
419 | select IMX_HAVE_PLATFORM_MXC_MMC | ||
420 | select IMX_HAVE_PLATFORM_MXC_NAND | ||
421 | select IMX_HAVE_PLATFORM_MXC_W1 | ||
422 | select MXC_ULPI if USB_ULPI | ||
423 | help | ||
424 | Include support for Phytec pcm037 platform. This includes | ||
425 | specific configurations for the board and its peripherals. | ||
426 | |||
427 | config MACH_PCM037_EET | ||
428 | bool "Support pcm037 EET board extensions" | ||
429 | depends on MACH_PCM037 | ||
430 | select IMX_HAVE_PLATFORM_GPIO_KEYS | ||
431 | select IMX_HAVE_PLATFORM_SPI_IMX | ||
432 | help | ||
433 | Add support for PCM037 EET baseboard extensions. If you are using the | ||
434 | OLED display with EET, use "video=mx3fb:CMEL-OLED" kernel | ||
435 | command-line parameter. | ||
436 | |||
437 | config MACH_MX31_3DS | ||
438 | bool "Support MX31PDK (3DS)" | ||
439 | select SOC_IMX31 | ||
440 | select MXC_DEBUG_BOARD | ||
441 | select IMX_HAVE_PLATFORM_FSL_USB2_UDC | ||
442 | select IMX_HAVE_PLATFORM_IMX2_WDT | ||
443 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
444 | select IMX_HAVE_PLATFORM_IMX_KEYPAD | ||
445 | select IMX_HAVE_PLATFORM_IMX_UART | ||
446 | select IMX_HAVE_PLATFORM_IPU_CORE | ||
447 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
448 | select IMX_HAVE_PLATFORM_MXC_NAND | ||
449 | select IMX_HAVE_PLATFORM_SPI_IMX | ||
450 | select MXC_ULPI if USB_ULPI | ||
451 | help | ||
452 | Include support for MX31PDK (3DS) platform. This includes specific | ||
453 | configurations for the board and its peripherals. | ||
454 | |||
455 | config MACH_MX31_3DS_MXC_NAND_USE_BBT | ||
456 | bool "Make the MXC NAND driver use the in flash Bad Block Table" | ||
457 | depends on MACH_MX31_3DS | ||
458 | depends on MTD_NAND_MXC | ||
459 | help | ||
460 | Enable this if you want that the MXC NAND driver uses the in flash | ||
461 | Bad Block Table to know what blocks are bad instead of scanning the | ||
462 | entire flash looking for bad block markers. | ||
463 | |||
464 | config MACH_MX31MOBOARD | ||
465 | bool "Support mx31moboard platforms (EPFL Mobots group)" | ||
466 | select SOC_IMX31 | ||
467 | select IMX_HAVE_PLATFORM_FSL_USB2_UDC | ||
468 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
469 | select IMX_HAVE_PLATFORM_IMX_UART | ||
470 | select IMX_HAVE_PLATFORM_IPU_CORE | ||
471 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
472 | select IMX_HAVE_PLATFORM_MXC_MMC | ||
473 | select IMX_HAVE_PLATFORM_SPI_IMX | ||
474 | select MXC_ULPI if USB_ULPI | ||
475 | help | ||
476 | Include support for mx31moboard platform. This includes specific | ||
477 | configurations for the board and its peripherals. | ||
478 | |||
479 | config MACH_QONG | ||
480 | bool "Support Dave/DENX QongEVB-LITE platform" | ||
481 | select SOC_IMX31 | ||
482 | select IMX_HAVE_PLATFORM_IMX_UART | ||
483 | help | ||
484 | Include support for Dave/DENX QongEVB-LITE platform. This includes | ||
485 | specific configurations for the board and its peripherals. | ||
486 | |||
487 | config MACH_ARMADILLO5X0 | ||
488 | bool "Support Atmark Armadillo-500 Development Base Board" | ||
489 | select SOC_IMX31 | ||
490 | select IMX_HAVE_PLATFORM_GPIO_KEYS | ||
491 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
492 | select IMX_HAVE_PLATFORM_IMX_UART | ||
493 | select IMX_HAVE_PLATFORM_IPU_CORE | ||
494 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
495 | select IMX_HAVE_PLATFORM_MXC_MMC | ||
496 | select IMX_HAVE_PLATFORM_MXC_NAND | ||
497 | select MXC_ULPI if USB_ULPI | ||
498 | help | ||
499 | Include support for Atmark Armadillo-500 platform. This includes | ||
500 | specific configurations for the board and its peripherals. | ||
501 | |||
502 | config MACH_KZM_ARM11_01 | ||
503 | bool "Support KZM-ARM11-01(Kyoto Microcomputer)" | ||
504 | select SOC_IMX31 | ||
505 | select IMX_HAVE_PLATFORM_IMX_UART | ||
506 | help | ||
507 | Include support for KZM-ARM11-01. This includes specific | ||
508 | configurations for the board and its peripherals. | ||
509 | |||
510 | config MACH_BUG | ||
511 | bool "Support Buglabs BUGBase platform" | ||
512 | select SOC_IMX31 | ||
513 | select IMX_HAVE_PLATFORM_IMX_UART | ||
514 | default y | ||
515 | help | ||
516 | Include support for BUGBase 1.3 platform. This includes specific | ||
517 | configurations for the board and its peripherals. | ||
518 | |||
519 | comment "MX35 platforms:" | ||
520 | |||
521 | config MACH_PCM043 | ||
522 | bool "Support Phytec pcm043 (i.MX35) platforms" | ||
523 | select SOC_IMX35 | ||
524 | select IMX_HAVE_PLATFORM_FLEXCAN | ||
525 | select IMX_HAVE_PLATFORM_FSL_USB2_UDC | ||
526 | select IMX_HAVE_PLATFORM_IMX2_WDT | ||
527 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
528 | select IMX_HAVE_PLATFORM_IMX_SSI | ||
529 | select IMX_HAVE_PLATFORM_IMX_UART | ||
530 | select IMX_HAVE_PLATFORM_IPU_CORE | ||
531 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
532 | select IMX_HAVE_PLATFORM_MXC_NAND | ||
533 | select IMX_HAVE_PLATFORM_SDHCI_ESDHC_IMX | ||
534 | select MXC_ULPI if USB_ULPI | ||
535 | help | ||
536 | Include support for Phytec pcm043 platform. This includes | ||
537 | specific configurations for the board and its peripherals. | ||
538 | |||
539 | config MACH_MX35_3DS | ||
540 | bool "Support MX35PDK platform" | ||
541 | select SOC_IMX35 | ||
542 | select MXC_DEBUG_BOARD | ||
543 | select IMX_HAVE_PLATFORM_FSL_USB2_UDC | ||
544 | select IMX_HAVE_PLATFORM_IMX2_WDT | ||
545 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
546 | select IMX_HAVE_PLATFORM_IMX_UART | ||
547 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
548 | select IMX_HAVE_PLATFORM_MXC_NAND | ||
549 | select IMX_HAVE_PLATFORM_SDHCI_ESDHC_IMX | ||
550 | help | ||
551 | Include support for MX35PDK platform. This includes specific | ||
552 | configurations for the board and its peripherals. | ||
553 | |||
554 | config MACH_EUKREA_CPUIMX35 | ||
555 | bool "Support Eukrea CPUIMX35 Platform" | ||
556 | select SOC_IMX35 | ||
557 | select IMX_HAVE_PLATFORM_FLEXCAN | ||
558 | select IMX_HAVE_PLATFORM_FSL_USB2_UDC | ||
559 | select IMX_HAVE_PLATFORM_IMX2_WDT | ||
560 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
561 | select IMX_HAVE_PLATFORM_IMX_UART | ||
562 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
563 | select IMX_HAVE_PLATFORM_MXC_NAND | ||
564 | select IMX_HAVE_PLATFORM_SDHCI_ESDHC_IMX | ||
565 | select MXC_ULPI if USB_ULPI | ||
566 | help | ||
567 | Include support for Eukrea CPUIMX35 platform. This includes | ||
568 | specific configurations for the board and its peripherals. | ||
569 | |||
570 | choice | ||
571 | prompt "Baseboard" | ||
572 | depends on MACH_EUKREA_CPUIMX35 | ||
573 | default MACH_EUKREA_MBIMXSD35_BASEBOARD | ||
574 | |||
575 | config MACH_EUKREA_MBIMXSD35_BASEBOARD | ||
576 | bool "Eukrea MBIMXSD development board" | ||
577 | select IMX_HAVE_PLATFORM_GPIO_KEYS | ||
578 | select IMX_HAVE_PLATFORM_IMX_SSI | ||
579 | select IMX_HAVE_PLATFORM_IPU_CORE | ||
580 | help | ||
581 | This adds board specific devices that can be found on Eukrea's | ||
582 | MBIMXSD evaluation board. | ||
583 | |||
584 | endchoice | ||
585 | |||
586 | config MACH_VPR200 | ||
587 | bool "Support VPR200 platform" | ||
588 | select SOC_IMX35 | ||
589 | select IMX_HAVE_PLATFORM_FSL_USB2_UDC | ||
590 | select IMX_HAVE_PLATFORM_GPIO_KEYS | ||
591 | select IMX_HAVE_PLATFORM_IMX2_WDT | ||
592 | select IMX_HAVE_PLATFORM_IMX_UART | ||
593 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
594 | select IMX_HAVE_PLATFORM_IPU_CORE | ||
595 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
596 | select IMX_HAVE_PLATFORM_MXC_NAND | ||
597 | select IMX_HAVE_PLATFORM_SDHCI_ESDHC_IMX | ||
598 | help | ||
599 | Include support for VPR200 platform. This includes specific | ||
600 | configurations for the board and its peripherals. | ||
601 | |||
602 | endif | ||
diff --git a/arch/arm/mach-imx/Makefile b/arch/arm/mach-imx/Makefile index b85794d27991..e9eb36dad888 100644 --- a/arch/arm/mach-imx/Makefile +++ b/arch/arm/mach-imx/Makefile | |||
@@ -1,9 +1,3 @@ | |||
1 | # | ||
2 | # Makefile for the linux kernel. | ||
3 | # | ||
4 | |||
5 | # Object file lists. | ||
6 | |||
7 | obj-$(CONFIG_IMX_HAVE_DMA_V1) += dma-v1.o | 1 | obj-$(CONFIG_IMX_HAVE_DMA_V1) += dma-v1.o |
8 | 2 | ||
9 | obj-$(CONFIG_ARCH_MX1) += clock-imx1.o mm-imx1.o | 3 | obj-$(CONFIG_ARCH_MX1) += clock-imx1.o mm-imx1.o |
@@ -14,18 +8,27 @@ obj-$(CONFIG_ARCH_MX25) += clock-imx25.o mm-imx25.o ehci-imx25.o | |||
14 | obj-$(CONFIG_MACH_MX27) += cpu-imx27.o pm-imx27.o | 8 | obj-$(CONFIG_MACH_MX27) += cpu-imx27.o pm-imx27.o |
15 | obj-$(CONFIG_MACH_MX27) += clock-imx27.o mm-imx27.o ehci-imx27.o | 9 | obj-$(CONFIG_MACH_MX27) += clock-imx27.o mm-imx27.o ehci-imx27.o |
16 | 10 | ||
11 | obj-$(CONFIG_SOC_IMX31) += mm-imx31.o cpu-imx31.o clock-imx31.o iomux-imx31.o ehci-imx31.o | ||
12 | obj-$(CONFIG_SOC_IMX35) += mm-imx35.o cpu-imx35.o clock-imx35.o ehci-imx35.o | ||
13 | obj-$(CONFIG_CACHE_L2X0) += cache-l2x0.o | ||
14 | |||
17 | # Support for CMOS sensor interface | 15 | # Support for CMOS sensor interface |
18 | obj-$(CONFIG_MX1_VIDEO) += mx1-camera-fiq.o mx1-camera-fiq-ksym.o | 16 | obj-$(CONFIG_MX1_VIDEO) += mx1-camera-fiq.o mx1-camera-fiq-ksym.o |
19 | 17 | ||
18 | # i.MX1 based machines | ||
20 | obj-$(CONFIG_ARCH_MX1ADS) += mach-mx1ads.o | 19 | obj-$(CONFIG_ARCH_MX1ADS) += mach-mx1ads.o |
21 | obj-$(CONFIG_MACH_SCB9328) += mach-scb9328.o | 20 | obj-$(CONFIG_MACH_SCB9328) += mach-scb9328.o |
21 | obj-$(CONFIG_MACH_APF9328) += mach-apf9328.o | ||
22 | 22 | ||
23 | # i.MX21 based machines | ||
23 | obj-$(CONFIG_MACH_MX21ADS) += mach-mx21ads.o | 24 | obj-$(CONFIG_MACH_MX21ADS) += mach-mx21ads.o |
24 | 25 | ||
26 | # i.MX25 based machines | ||
25 | obj-$(CONFIG_MACH_MX25_3DS) += mach-mx25_3ds.o | 27 | obj-$(CONFIG_MACH_MX25_3DS) += mach-mx25_3ds.o |
26 | obj-$(CONFIG_MACH_EUKREA_CPUIMX25) += mach-eukrea_cpuimx25.o | 28 | obj-$(CONFIG_MACH_EUKREA_CPUIMX25) += mach-eukrea_cpuimx25.o |
27 | obj-$(CONFIG_MACH_EUKREA_MBIMXSD25_BASEBOARD) += eukrea_mbimxsd25-baseboard.o | 29 | obj-$(CONFIG_MACH_EUKREA_MBIMXSD25_BASEBOARD) += eukrea_mbimxsd25-baseboard.o |
28 | 30 | ||
31 | # i.MX27 based machines | ||
29 | obj-$(CONFIG_MACH_MX27ADS) += mach-mx27ads.o | 32 | obj-$(CONFIG_MACH_MX27ADS) += mach-mx27ads.o |
30 | obj-$(CONFIG_MACH_PCM038) += mach-pcm038.o | 33 | obj-$(CONFIG_MACH_PCM038) += mach-pcm038.o |
31 | obj-$(CONFIG_MACH_PCM970_BASEBOARD) += pcm970-baseboard.o | 34 | obj-$(CONFIG_MACH_PCM970_BASEBOARD) += pcm970-baseboard.o |
@@ -37,3 +40,24 @@ obj-$(CONFIG_MACH_EUKREA_MBIMX27_BASEBOARD) += eukrea_mbimx27-baseboard.o | |||
37 | obj-$(CONFIG_MACH_PCA100) += mach-pca100.o | 40 | obj-$(CONFIG_MACH_PCA100) += mach-pca100.o |
38 | obj-$(CONFIG_MACH_MXT_TD60) += mach-mxt_td60.o | 41 | obj-$(CONFIG_MACH_MXT_TD60) += mach-mxt_td60.o |
39 | obj-$(CONFIG_MACH_IMX27IPCAM) += mach-imx27ipcam.o | 42 | obj-$(CONFIG_MACH_IMX27IPCAM) += mach-imx27ipcam.o |
43 | |||
44 | # i.MX31 based machines | ||
45 | obj-$(CONFIG_MACH_MX31ADS) += mach-mx31ads.o | ||
46 | obj-$(CONFIG_MACH_MX31LILLY) += mach-mx31lilly.o mx31lilly-db.o | ||
47 | obj-$(CONFIG_MACH_MX31LITE) += mach-mx31lite.o mx31lite-db.o | ||
48 | obj-$(CONFIG_MACH_PCM037) += mach-pcm037.o | ||
49 | obj-$(CONFIG_MACH_PCM037_EET) += mach-pcm037_eet.o | ||
50 | obj-$(CONFIG_MACH_MX31_3DS) += mach-mx31_3ds.o | ||
51 | obj-$(CONFIG_MACH_MX31MOBOARD) += mach-mx31moboard.o mx31moboard-devboard.o \ | ||
52 | mx31moboard-marxbot.o mx31moboard-smartbot.o | ||
53 | obj-$(CONFIG_MACH_QONG) += mach-qong.o | ||
54 | obj-$(CONFIG_MACH_ARMADILLO5X0) += mach-armadillo5x0.o | ||
55 | obj-$(CONFIG_MACH_KZM_ARM11_01) += mach-kzm_arm11_01.o | ||
56 | obj-$(CONFIG_MACH_BUG) += mach-bug.o | ||
57 | |||
58 | # i.MX35 based machines | ||
59 | obj-$(CONFIG_MACH_PCM043) += mach-pcm043.o | ||
60 | obj-$(CONFIG_MACH_MX35_3DS) += mach-mx35_3ds.o | ||
61 | obj-$(CONFIG_MACH_EUKREA_CPUIMX35) += mach-cpuimx35.o | ||
62 | obj-$(CONFIG_MACH_EUKREA_MBIMXSD35_BASEBOARD) += eukrea_mbimxsd35-baseboard.o | ||
63 | obj-$(CONFIG_MACH_VPR200) += mach-vpr200.o | ||
diff --git a/arch/arm/mach-imx/Makefile.boot b/arch/arm/mach-imx/Makefile.boot index 3953d60bff0b..ebee18b3884c 100644 --- a/arch/arm/mach-imx/Makefile.boot +++ b/arch/arm/mach-imx/Makefile.boot | |||
@@ -13,3 +13,7 @@ initrd_phys-$(CONFIG_ARCH_MX25) := 0x80800000 | |||
13 | zreladdr-$(CONFIG_MACH_MX27) := 0xA0008000 | 13 | zreladdr-$(CONFIG_MACH_MX27) := 0xA0008000 |
14 | params_phys-$(CONFIG_MACH_MX27) := 0xA0000100 | 14 | params_phys-$(CONFIG_MACH_MX27) := 0xA0000100 |
15 | initrd_phys-$(CONFIG_MACH_MX27) := 0xA0800000 | 15 | initrd_phys-$(CONFIG_MACH_MX27) := 0xA0800000 |
16 | |||
17 | zreladdr-$(CONFIG_ARCH_MX3) := 0x80008000 | ||
18 | params_phys-$(CONFIG_ARCH_MX3) := 0x80000100 | ||
19 | initrd_phys-$(CONFIG_ARCH_MX3) := 0x80800000 | ||
diff --git a/arch/arm/mach-imx/cache-l2x0.c b/arch/arm/mach-imx/cache-l2x0.c new file mode 100644 index 000000000000..69d1322add3c --- /dev/null +++ b/arch/arm/mach-imx/cache-l2x0.c | |||
@@ -0,0 +1,56 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2009-2010 Pengutronix | ||
3 | * Sascha Hauer <s.hauer@pengutronix.de> | ||
4 | * Juergen Beisert <j.beisert@pengutronix.de> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it under | ||
7 | * the terms of the GNU General Public License version 2 as published by the | ||
8 | * Free Software Foundation. | ||
9 | */ | ||
10 | |||
11 | #include <linux/init.h> | ||
12 | #include <linux/err.h> | ||
13 | #include <linux/kernel.h> | ||
14 | |||
15 | #include <asm/hardware/cache-l2x0.h> | ||
16 | |||
17 | #include <mach/hardware.h> | ||
18 | |||
19 | static int mxc_init_l2x0(void) | ||
20 | { | ||
21 | void __iomem *l2x0_base; | ||
22 | void __iomem *clkctl_base; | ||
23 | |||
24 | if (!cpu_is_mx31() && !cpu_is_mx35()) | ||
25 | return 0; | ||
26 | |||
27 | /* | ||
28 | * First of all, we must repair broken chip settings. There are some | ||
29 | * i.MX35 CPUs in the wild, comming with bogus L2 cache settings. These | ||
30 | * misconfigured CPUs will run amok immediately when the L2 cache gets enabled. | ||
31 | * Workaraound is to setup the correct register setting prior enabling the | ||
32 | * L2 cache. This should not hurt already working CPUs, as they are using the | ||
33 | * same value. | ||
34 | */ | ||
35 | #define L2_MEM_VAL 0x10 | ||
36 | |||
37 | clkctl_base = ioremap(MX35_CLKCTL_BASE_ADDR, 4096); | ||
38 | if (clkctl_base != NULL) { | ||
39 | writel(0x00000515, clkctl_base + L2_MEM_VAL); | ||
40 | iounmap(clkctl_base); | ||
41 | } else { | ||
42 | pr_err("L2 cache: Cannot fix timing. Trying to continue without\n"); | ||
43 | } | ||
44 | |||
45 | l2x0_base = ioremap(MX3x_L2CC_BASE_ADDR, 4096); | ||
46 | if (IS_ERR(l2x0_base)) { | ||
47 | printk(KERN_ERR "remapping L2 cache area failed with %ld\n", | ||
48 | PTR_ERR(l2x0_base)); | ||
49 | return 0; | ||
50 | } | ||
51 | |||
52 | l2x0_init(l2x0_base, 0x00030024, 0x00000000); | ||
53 | |||
54 | return 0; | ||
55 | } | ||
56 | arch_initcall(mxc_init_l2x0); | ||
diff --git a/arch/arm/mach-mx3/clock-imx31.c b/arch/arm/mach-imx/clock-imx31.c index d423cac8cab7..25f343fca2b9 100644 --- a/arch/arm/mach-mx3/clock-imx31.c +++ b/arch/arm/mach-imx/clock-imx31.c | |||
@@ -32,7 +32,7 @@ | |||
32 | #include <mach/mx31.h> | 32 | #include <mach/mx31.h> |
33 | #include <mach/common.h> | 33 | #include <mach/common.h> |
34 | 34 | ||
35 | #include "crm_regs.h" | 35 | #include "crmregs-imx31.h" |
36 | 36 | ||
37 | #define PRE_DIV_MIN_FREQ 10000000 /* Minimum Frequency after Predivider */ | 37 | #define PRE_DIV_MIN_FREQ 10000000 /* Minimum Frequency after Predivider */ |
38 | 38 | ||
@@ -627,4 +627,3 @@ int __init mx31_clocks_init(unsigned long fref) | |||
627 | 627 | ||
628 | return 0; | 628 | return 0; |
629 | } | 629 | } |
630 | |||
diff --git a/arch/arm/mach-mx3/clock-imx35.c b/arch/arm/mach-imx/clock-imx35.c index 448a038cd1ec..5a4cc1ea405b 100644 --- a/arch/arm/mach-mx3/clock-imx35.c +++ b/arch/arm/mach-imx/clock-imx35.c | |||
@@ -547,4 +547,3 @@ int __init mx35_clocks_init() | |||
547 | 547 | ||
548 | return 0; | 548 | return 0; |
549 | } | 549 | } |
550 | |||
diff --git a/arch/arm/mach-mx3/cpu.c b/arch/arm/mach-imx/cpu-imx31.c index d1d339576fdf..a3780700a882 100644 --- a/arch/arm/mach-mx3/cpu.c +++ b/arch/arm/mach-imx/cpu-imx31.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * MX3 CPU type detection | 2 | * MX31 CPU type detection |
3 | * | 3 | * |
4 | * Copyright (c) 2009 Daniel Mack <daniel@caiaq.de> | 4 | * Copyright (c) 2009 Daniel Mack <daniel@caiaq.de> |
5 | * | 5 | * |
@@ -17,14 +17,12 @@ | |||
17 | unsigned int mx31_cpu_rev; | 17 | unsigned int mx31_cpu_rev; |
18 | EXPORT_SYMBOL(mx31_cpu_rev); | 18 | EXPORT_SYMBOL(mx31_cpu_rev); |
19 | 19 | ||
20 | struct mx3_cpu_type { | 20 | static struct { |
21 | u8 srev; | 21 | u8 srev; |
22 | const char *name; | 22 | const char *name; |
23 | const char *v; | 23 | const char *v; |
24 | unsigned int rev; | 24 | unsigned int rev; |
25 | }; | 25 | } mx31_cpu_type[] __initdata = { |
26 | |||
27 | static struct mx3_cpu_type mx31_cpu_type[] __initdata = { | ||
28 | { .srev = 0x00, .name = "i.MX31(L)", .v = "1.0", .rev = IMX_CHIP_REVISION_1_0 }, | 26 | { .srev = 0x00, .name = "i.MX31(L)", .v = "1.0", .rev = IMX_CHIP_REVISION_1_0 }, |
29 | { .srev = 0x10, .name = "i.MX31", .v = "1.1", .rev = IMX_CHIP_REVISION_1_1 }, | 27 | { .srev = 0x10, .name = "i.MX31", .v = "1.1", .rev = IMX_CHIP_REVISION_1_1 }, |
30 | { .srev = 0x11, .name = "i.MX31L", .v = "1.1", .rev = IMX_CHIP_REVISION_1_1 }, | 28 | { .srev = 0x11, .name = "i.MX31L", .v = "1.1", .rev = IMX_CHIP_REVISION_1_1 }, |
@@ -57,33 +55,3 @@ void __init mx31_read_cpu_rev(void) | |||
57 | 55 | ||
58 | printk(KERN_WARNING "Unknown CPU identifier. srev = %02x\n", srev); | 56 | printk(KERN_WARNING "Unknown CPU identifier. srev = %02x\n", srev); |
59 | } | 57 | } |
60 | |||
61 | unsigned int mx35_cpu_rev; | ||
62 | EXPORT_SYMBOL(mx35_cpu_rev); | ||
63 | |||
64 | void __init mx35_read_cpu_rev(void) | ||
65 | { | ||
66 | u32 rev; | ||
67 | char *srev; | ||
68 | |||
69 | rev = __raw_readl(MX35_IO_ADDRESS(MX35_IIM_BASE_ADDR + MXC_IIMSREV)); | ||
70 | switch (rev) { | ||
71 | case 0x00: | ||
72 | mx35_cpu_rev = IMX_CHIP_REVISION_1_0; | ||
73 | srev = "1.0"; | ||
74 | break; | ||
75 | case 0x10: | ||
76 | mx35_cpu_rev = IMX_CHIP_REVISION_2_0; | ||
77 | srev = "2.0"; | ||
78 | break; | ||
79 | case 0x11: | ||
80 | mx35_cpu_rev = IMX_CHIP_REVISION_2_1; | ||
81 | srev = "2.1"; | ||
82 | break; | ||
83 | default: | ||
84 | mx35_cpu_rev = IMX_CHIP_REVISION_UNKNOWN; | ||
85 | srev = "unknown"; | ||
86 | } | ||
87 | |||
88 | printk(KERN_INFO "CPU identified as i.MX35, silicon rev %s\n", srev); | ||
89 | } | ||
diff --git a/arch/arm/mach-imx/cpu-imx35.c b/arch/arm/mach-imx/cpu-imx35.c new file mode 100644 index 000000000000..6637cd819ecb --- /dev/null +++ b/arch/arm/mach-imx/cpu-imx35.c | |||
@@ -0,0 +1,44 @@ | |||
1 | /* | ||
2 | * MX35 CPU type detection | ||
3 | * | ||
4 | * Copyright (c) 2009 Daniel Mack <daniel@caiaq.de> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | */ | ||
11 | #include <linux/module.h> | ||
12 | #include <linux/io.h> | ||
13 | #include <mach/hardware.h> | ||
14 | #include <mach/iim.h> | ||
15 | |||
16 | unsigned int mx35_cpu_rev; | ||
17 | EXPORT_SYMBOL(mx35_cpu_rev); | ||
18 | |||
19 | void __init mx35_read_cpu_rev(void) | ||
20 | { | ||
21 | u32 rev; | ||
22 | char *srev; | ||
23 | |||
24 | rev = __raw_readl(MX35_IO_ADDRESS(MX35_IIM_BASE_ADDR + MXC_IIMSREV)); | ||
25 | switch (rev) { | ||
26 | case 0x00: | ||
27 | mx35_cpu_rev = IMX_CHIP_REVISION_1_0; | ||
28 | srev = "1.0"; | ||
29 | break; | ||
30 | case 0x10: | ||
31 | mx35_cpu_rev = IMX_CHIP_REVISION_2_0; | ||
32 | srev = "2.0"; | ||
33 | break; | ||
34 | case 0x11: | ||
35 | mx35_cpu_rev = IMX_CHIP_REVISION_2_1; | ||
36 | srev = "2.1"; | ||
37 | break; | ||
38 | default: | ||
39 | mx35_cpu_rev = IMX_CHIP_REVISION_UNKNOWN; | ||
40 | srev = "unknown"; | ||
41 | } | ||
42 | |||
43 | printk(KERN_INFO "CPU identified as i.MX35, silicon rev %s\n", srev); | ||
44 | } | ||
diff --git a/arch/arm/mach-mx3/crm_regs.h b/arch/arm/mach-imx/crmregs-imx31.h index 37a8a07beda3..37a8a07beda3 100644 --- a/arch/arm/mach-mx3/crm_regs.h +++ b/arch/arm/mach-imx/crmregs-imx31.h | |||
diff --git a/arch/arm/mach-imx/devices-imx1.h b/arch/arm/mach-imx/devices-imx1.h index da593657ff3f..3aad1e70de96 100644 --- a/arch/arm/mach-imx/devices-imx1.h +++ b/arch/arm/mach-imx/devices-imx1.h | |||
@@ -9,21 +9,21 @@ | |||
9 | #include <mach/mx1.h> | 9 | #include <mach/mx1.h> |
10 | #include <mach/devices-common.h> | 10 | #include <mach/devices-common.h> |
11 | 11 | ||
12 | extern const struct imx_imx_fb_data imx1_imx_fb_data __initconst; | 12 | extern const struct imx_imx_fb_data imx1_imx_fb_data; |
13 | #define imx1_add_imx_fb(pdata) \ | 13 | #define imx1_add_imx_fb(pdata) \ |
14 | imx_add_imx_fb(&imx1_imx_fb_data, pdata) | 14 | imx_add_imx_fb(&imx1_imx_fb_data, pdata) |
15 | 15 | ||
16 | extern const struct imx_imx_i2c_data imx1_imx_i2c_data __initconst; | 16 | extern const struct imx_imx_i2c_data imx1_imx_i2c_data; |
17 | #define imx1_add_imx_i2c(pdata) \ | 17 | #define imx1_add_imx_i2c(pdata) \ |
18 | imx_add_imx_i2c(&imx1_imx_i2c_data, pdata) | 18 | imx_add_imx_i2c(&imx1_imx_i2c_data, pdata) |
19 | 19 | ||
20 | extern const struct imx_imx_uart_3irq_data imx1_imx_uart_data[] __initconst; | 20 | extern const struct imx_imx_uart_3irq_data imx1_imx_uart_data[]; |
21 | #define imx1_add_imx_uart(id, pdata) \ | 21 | #define imx1_add_imx_uart(id, pdata) \ |
22 | imx_add_imx_uart_3irq(&imx1_imx_uart_data[id], pdata) | 22 | imx_add_imx_uart_3irq(&imx1_imx_uart_data[id], pdata) |
23 | #define imx1_add_imx_uart0(pdata) imx1_add_imx_uart(0, pdata) | 23 | #define imx1_add_imx_uart0(pdata) imx1_add_imx_uart(0, pdata) |
24 | #define imx1_add_imx_uart1(pdata) imx1_add_imx_uart(1, pdata) | 24 | #define imx1_add_imx_uart1(pdata) imx1_add_imx_uart(1, pdata) |
25 | 25 | ||
26 | extern const struct imx_spi_imx_data imx1_cspi_data[] __initconst; | 26 | extern const struct imx_spi_imx_data imx1_cspi_data[]; |
27 | #define imx1_add_cspi(id, pdata) \ | 27 | #define imx1_add_cspi(id, pdata) \ |
28 | imx_add_spi_imx(&imx1_cspi_data[id], pdata) | 28 | imx_add_spi_imx(&imx1_cspi_data[id], pdata) |
29 | 29 | ||
diff --git a/arch/arm/mach-imx/devices-imx21.h b/arch/arm/mach-imx/devices-imx21.h index 16744d2d9b81..2628e0c474dc 100644 --- a/arch/arm/mach-imx/devices-imx21.h +++ b/arch/arm/mach-imx/devices-imx21.h | |||
@@ -9,31 +9,31 @@ | |||
9 | #include <mach/mx21.h> | 9 | #include <mach/mx21.h> |
10 | #include <mach/devices-common.h> | 10 | #include <mach/devices-common.h> |
11 | 11 | ||
12 | extern const struct imx_imx21_hcd_data imx21_imx21_hcd_data __initconst; | 12 | extern const struct imx_imx21_hcd_data imx21_imx21_hcd_data; |
13 | #define imx21_add_imx21_hcd(pdata) \ | 13 | #define imx21_add_imx21_hcd(pdata) \ |
14 | imx_add_imx21_hcd(&imx21_imx21_hcd_data, pdata) | 14 | imx_add_imx21_hcd(&imx21_imx21_hcd_data, pdata) |
15 | 15 | ||
16 | extern const struct imx_imx2_wdt_data imx21_imx2_wdt_data __initconst; | 16 | extern const struct imx_imx2_wdt_data imx21_imx2_wdt_data; |
17 | #define imx21_add_imx2_wdt(pdata) \ | 17 | #define imx21_add_imx2_wdt(pdata) \ |
18 | imx_add_imx2_wdt(&imx21_imx2_wdt_data) | 18 | imx_add_imx2_wdt(&imx21_imx2_wdt_data) |
19 | 19 | ||
20 | extern const struct imx_imx_fb_data imx21_imx_fb_data __initconst; | 20 | extern const struct imx_imx_fb_data imx21_imx_fb_data; |
21 | #define imx21_add_imx_fb(pdata) \ | 21 | #define imx21_add_imx_fb(pdata) \ |
22 | imx_add_imx_fb(&imx21_imx_fb_data, pdata) | 22 | imx_add_imx_fb(&imx21_imx_fb_data, pdata) |
23 | 23 | ||
24 | extern const struct imx_imx_i2c_data imx21_imx_i2c_data __initconst; | 24 | extern const struct imx_imx_i2c_data imx21_imx_i2c_data; |
25 | #define imx21_add_imx_i2c(pdata) \ | 25 | #define imx21_add_imx_i2c(pdata) \ |
26 | imx_add_imx_i2c(&imx21_imx_i2c_data, pdata) | 26 | imx_add_imx_i2c(&imx21_imx_i2c_data, pdata) |
27 | 27 | ||
28 | extern const struct imx_imx_keypad_data imx21_imx_keypad_data __initconst; | 28 | extern const struct imx_imx_keypad_data imx21_imx_keypad_data; |
29 | #define imx21_add_imx_keypad(pdata) \ | 29 | #define imx21_add_imx_keypad(pdata) \ |
30 | imx_add_imx_keypad(&imx21_imx_keypad_data, pdata) | 30 | imx_add_imx_keypad(&imx21_imx_keypad_data, pdata) |
31 | 31 | ||
32 | extern const struct imx_imx_ssi_data imx21_imx_ssi_data[] __initconst; | 32 | extern const struct imx_imx_ssi_data imx21_imx_ssi_data[]; |
33 | #define imx21_add_imx_ssi(id, pdata) \ | 33 | #define imx21_add_imx_ssi(id, pdata) \ |
34 | imx_add_imx_ssi(&imx21_imx_ssi_data[id], pdata) | 34 | imx_add_imx_ssi(&imx21_imx_ssi_data[id], pdata) |
35 | 35 | ||
36 | extern const struct imx_imx_uart_1irq_data imx21_imx_uart_data[] __initconst; | 36 | extern const struct imx_imx_uart_1irq_data imx21_imx_uart_data[]; |
37 | #define imx21_add_imx_uart(id, pdata) \ | 37 | #define imx21_add_imx_uart(id, pdata) \ |
38 | imx_add_imx_uart_1irq(&imx21_imx_uart_data[id], pdata) | 38 | imx_add_imx_uart_1irq(&imx21_imx_uart_data[id], pdata) |
39 | #define imx21_add_imx_uart0(pdata) imx21_add_imx_uart(0, pdata) | 39 | #define imx21_add_imx_uart0(pdata) imx21_add_imx_uart(0, pdata) |
@@ -41,19 +41,19 @@ extern const struct imx_imx_uart_1irq_data imx21_imx_uart_data[] __initconst; | |||
41 | #define imx21_add_imx_uart2(pdata) imx21_add_imx_uart(2, pdata) | 41 | #define imx21_add_imx_uart2(pdata) imx21_add_imx_uart(2, pdata) |
42 | #define imx21_add_imx_uart3(pdata) imx21_add_imx_uart(3, pdata) | 42 | #define imx21_add_imx_uart3(pdata) imx21_add_imx_uart(3, pdata) |
43 | 43 | ||
44 | extern const struct imx_mxc_mmc_data imx21_mxc_mmc_data[] __initconst; | 44 | extern const struct imx_mxc_mmc_data imx21_mxc_mmc_data[]; |
45 | #define imx21_add_mxc_mmc(id, pdata) \ | 45 | #define imx21_add_mxc_mmc(id, pdata) \ |
46 | imx_add_mxc_mmc(&imx21_mxc_mmc_data[id], pdata) | 46 | imx_add_mxc_mmc(&imx21_mxc_mmc_data[id], pdata) |
47 | 47 | ||
48 | extern const struct imx_mxc_nand_data imx21_mxc_nand_data __initconst; | 48 | extern const struct imx_mxc_nand_data imx21_mxc_nand_data; |
49 | #define imx21_add_mxc_nand(pdata) \ | 49 | #define imx21_add_mxc_nand(pdata) \ |
50 | imx_add_mxc_nand(&imx21_mxc_nand_data, pdata) | 50 | imx_add_mxc_nand(&imx21_mxc_nand_data, pdata) |
51 | 51 | ||
52 | extern const struct imx_mxc_w1_data imx21_mxc_w1_data __initconst; | 52 | extern const struct imx_mxc_w1_data imx21_mxc_w1_data; |
53 | #define imx21_add_mxc_w1(pdata) \ | 53 | #define imx21_add_mxc_w1(pdata) \ |
54 | imx_add_mxc_w1(&imx21_mxc_w1_data) | 54 | imx_add_mxc_w1(&imx21_mxc_w1_data) |
55 | 55 | ||
56 | extern const struct imx_spi_imx_data imx21_cspi_data[] __initconst; | 56 | extern const struct imx_spi_imx_data imx21_cspi_data[]; |
57 | #define imx21_add_cspi(id, pdata) \ | 57 | #define imx21_add_cspi(id, pdata) \ |
58 | imx_add_spi_imx(&imx21_cspi_data[id], pdata) | 58 | imx_add_spi_imx(&imx21_cspi_data[id], pdata) |
59 | #define imx21_add_spi_imx0(pdata) imx21_add_cspi(0, pdata) | 59 | #define imx21_add_spi_imx0(pdata) imx21_add_cspi(0, pdata) |
diff --git a/arch/arm/mach-imx/devices-imx25.h b/arch/arm/mach-imx/devices-imx25.h index b591d72f6037..efa0761c508d 100644 --- a/arch/arm/mach-imx/devices-imx25.h +++ b/arch/arm/mach-imx/devices-imx25.h | |||
@@ -9,48 +9,48 @@ | |||
9 | #include <mach/mx25.h> | 9 | #include <mach/mx25.h> |
10 | #include <mach/devices-common.h> | 10 | #include <mach/devices-common.h> |
11 | 11 | ||
12 | extern const struct imx_fec_data imx25_fec_data __initconst; | 12 | extern const struct imx_fec_data imx25_fec_data; |
13 | #define imx25_add_fec(pdata) \ | 13 | #define imx25_add_fec(pdata) \ |
14 | imx_add_fec(&imx25_fec_data, pdata) | 14 | imx_add_fec(&imx25_fec_data, pdata) |
15 | 15 | ||
16 | extern const struct imx_flexcan_data imx25_flexcan_data[] __initconst; | 16 | extern const struct imx_flexcan_data imx25_flexcan_data[]; |
17 | #define imx25_add_flexcan(id, pdata) \ | 17 | #define imx25_add_flexcan(id, pdata) \ |
18 | imx_add_flexcan(&imx25_flexcan_data[id], pdata) | 18 | imx_add_flexcan(&imx25_flexcan_data[id], pdata) |
19 | #define imx25_add_flexcan0(pdata) imx25_add_flexcan(0, pdata) | 19 | #define imx25_add_flexcan0(pdata) imx25_add_flexcan(0, pdata) |
20 | #define imx25_add_flexcan1(pdata) imx25_add_flexcan(1, pdata) | 20 | #define imx25_add_flexcan1(pdata) imx25_add_flexcan(1, pdata) |
21 | 21 | ||
22 | extern const struct imx_fsl_usb2_udc_data imx25_fsl_usb2_udc_data __initconst; | 22 | extern const struct imx_fsl_usb2_udc_data imx25_fsl_usb2_udc_data; |
23 | #define imx25_add_fsl_usb2_udc(pdata) \ | 23 | #define imx25_add_fsl_usb2_udc(pdata) \ |
24 | imx_add_fsl_usb2_udc(&imx25_fsl_usb2_udc_data, pdata) | 24 | imx_add_fsl_usb2_udc(&imx25_fsl_usb2_udc_data, pdata) |
25 | 25 | ||
26 | extern struct imx_imxdi_rtc_data imx25_imxdi_rtc_data __initconst; | 26 | extern struct imx_imxdi_rtc_data imx25_imxdi_rtc_data; |
27 | #define imx25_add_imxdi_rtc(pdata) \ | 27 | #define imx25_add_imxdi_rtc(pdata) \ |
28 | imx_add_imxdi_rtc(&imx25_imxdi_rtc_data) | 28 | imx_add_imxdi_rtc(&imx25_imxdi_rtc_data) |
29 | 29 | ||
30 | extern const struct imx_imx2_wdt_data imx25_imx2_wdt_data __initconst; | 30 | extern const struct imx_imx2_wdt_data imx25_imx2_wdt_data; |
31 | #define imx25_add_imx2_wdt(pdata) \ | 31 | #define imx25_add_imx2_wdt(pdata) \ |
32 | imx_add_imx2_wdt(&imx25_imx2_wdt_data) | 32 | imx_add_imx2_wdt(&imx25_imx2_wdt_data) |
33 | 33 | ||
34 | extern const struct imx_imx_fb_data imx25_imx_fb_data __initconst; | 34 | extern const struct imx_imx_fb_data imx25_imx_fb_data; |
35 | #define imx25_add_imx_fb(pdata) \ | 35 | #define imx25_add_imx_fb(pdata) \ |
36 | imx_add_imx_fb(&imx25_imx_fb_data, pdata) | 36 | imx_add_imx_fb(&imx25_imx_fb_data, pdata) |
37 | 37 | ||
38 | extern const struct imx_imx_i2c_data imx25_imx_i2c_data[] __initconst; | 38 | extern const struct imx_imx_i2c_data imx25_imx_i2c_data[]; |
39 | #define imx25_add_imx_i2c(id, pdata) \ | 39 | #define imx25_add_imx_i2c(id, pdata) \ |
40 | imx_add_imx_i2c(&imx25_imx_i2c_data[id], pdata) | 40 | imx_add_imx_i2c(&imx25_imx_i2c_data[id], pdata) |
41 | #define imx25_add_imx_i2c0(pdata) imx25_add_imx_i2c(0, pdata) | 41 | #define imx25_add_imx_i2c0(pdata) imx25_add_imx_i2c(0, pdata) |
42 | #define imx25_add_imx_i2c1(pdata) imx25_add_imx_i2c(1, pdata) | 42 | #define imx25_add_imx_i2c1(pdata) imx25_add_imx_i2c(1, pdata) |
43 | #define imx25_add_imx_i2c2(pdata) imx25_add_imx_i2c(2, pdata) | 43 | #define imx25_add_imx_i2c2(pdata) imx25_add_imx_i2c(2, pdata) |
44 | 44 | ||
45 | extern const struct imx_imx_keypad_data imx25_imx_keypad_data __initconst; | 45 | extern const struct imx_imx_keypad_data imx25_imx_keypad_data; |
46 | #define imx25_add_imx_keypad(pdata) \ | 46 | #define imx25_add_imx_keypad(pdata) \ |
47 | imx_add_imx_keypad(&imx25_imx_keypad_data, pdata) | 47 | imx_add_imx_keypad(&imx25_imx_keypad_data, pdata) |
48 | 48 | ||
49 | extern const struct imx_imx_ssi_data imx25_imx_ssi_data[] __initconst; | 49 | extern const struct imx_imx_ssi_data imx25_imx_ssi_data[]; |
50 | #define imx25_add_imx_ssi(id, pdata) \ | 50 | #define imx25_add_imx_ssi(id, pdata) \ |
51 | imx_add_imx_ssi(&imx25_imx_ssi_data[id], pdata) | 51 | imx_add_imx_ssi(&imx25_imx_ssi_data[id], pdata) |
52 | 52 | ||
53 | extern const struct imx_imx_uart_1irq_data imx25_imx_uart_data[] __initconst; | 53 | extern const struct imx_imx_uart_1irq_data imx25_imx_uart_data[]; |
54 | #define imx25_add_imx_uart(id, pdata) \ | 54 | #define imx25_add_imx_uart(id, pdata) \ |
55 | imx_add_imx_uart_1irq(&imx25_imx_uart_data[id], pdata) | 55 | imx_add_imx_uart_1irq(&imx25_imx_uart_data[id], pdata) |
56 | #define imx25_add_imx_uart0(pdata) imx25_add_imx_uart(0, pdata) | 56 | #define imx25_add_imx_uart0(pdata) imx25_add_imx_uart(0, pdata) |
@@ -59,33 +59,32 @@ extern const struct imx_imx_uart_1irq_data imx25_imx_uart_data[] __initconst; | |||
59 | #define imx25_add_imx_uart3(pdata) imx25_add_imx_uart(3, pdata) | 59 | #define imx25_add_imx_uart3(pdata) imx25_add_imx_uart(3, pdata) |
60 | #define imx25_add_imx_uart4(pdata) imx25_add_imx_uart(4, pdata) | 60 | #define imx25_add_imx_uart4(pdata) imx25_add_imx_uart(4, pdata) |
61 | 61 | ||
62 | extern const struct imx_mx2_camera_data imx25_mx2_camera_data __initconst; | 62 | extern const struct imx_mx2_camera_data imx25_mx2_camera_data; |
63 | #define imx25_add_mx2_camera(pdata) \ | 63 | #define imx25_add_mx2_camera(pdata) \ |
64 | imx_add_mx2_camera(&imx25_mx2_camera_data, pdata) | 64 | imx_add_mx2_camera(&imx25_mx2_camera_data, pdata) |
65 | 65 | ||
66 | extern const struct imx_mxc_ehci_data imx25_mxc_ehci_otg_data __initconst; | 66 | extern const struct imx_mxc_ehci_data imx25_mxc_ehci_otg_data; |
67 | #define imx25_add_mxc_ehci_otg(pdata) \ | 67 | #define imx25_add_mxc_ehci_otg(pdata) \ |
68 | imx_add_mxc_ehci(&imx25_mxc_ehci_otg_data, pdata) | 68 | imx_add_mxc_ehci(&imx25_mxc_ehci_otg_data, pdata) |
69 | extern const struct imx_mxc_ehci_data imx25_mxc_ehci_hs_data __initconst; | 69 | extern const struct imx_mxc_ehci_data imx25_mxc_ehci_hs_data; |
70 | #define imx25_add_mxc_ehci_hs(pdata) \ | 70 | #define imx25_add_mxc_ehci_hs(pdata) \ |
71 | imx_add_mxc_ehci(&imx25_mxc_ehci_hs_data, pdata) | 71 | imx_add_mxc_ehci(&imx25_mxc_ehci_hs_data, pdata) |
72 | 72 | ||
73 | extern const struct imx_mxc_nand_data imx25_mxc_nand_data __initconst; | 73 | extern const struct imx_mxc_nand_data imx25_mxc_nand_data; |
74 | #define imx25_add_mxc_nand(pdata) \ | 74 | #define imx25_add_mxc_nand(pdata) \ |
75 | imx_add_mxc_nand(&imx25_mxc_nand_data, pdata) | 75 | imx_add_mxc_nand(&imx25_mxc_nand_data, pdata) |
76 | 76 | ||
77 | extern const struct imx_sdhci_esdhc_imx_data | 77 | extern const struct imx_sdhci_esdhc_imx_data imx25_sdhci_esdhc_imx_data[]; |
78 | imx25_sdhci_esdhc_imx_data[] __initconst; | ||
79 | #define imx25_add_sdhci_esdhc_imx(id, pdata) \ | 78 | #define imx25_add_sdhci_esdhc_imx(id, pdata) \ |
80 | imx_add_sdhci_esdhc_imx(&imx25_sdhci_esdhc_imx_data[id], pdata) | 79 | imx_add_sdhci_esdhc_imx(&imx25_sdhci_esdhc_imx_data[id], pdata) |
81 | 80 | ||
82 | extern const struct imx_spi_imx_data imx25_cspi_data[] __initconst; | 81 | extern const struct imx_spi_imx_data imx25_cspi_data[]; |
83 | #define imx25_add_spi_imx(id, pdata) \ | 82 | #define imx25_add_spi_imx(id, pdata) \ |
84 | imx_add_spi_imx(&imx25_cspi_data[id], pdata) | 83 | imx_add_spi_imx(&imx25_cspi_data[id], pdata) |
85 | #define imx25_add_spi_imx0(pdata) imx25_add_spi_imx(0, pdata) | 84 | #define imx25_add_spi_imx0(pdata) imx25_add_spi_imx(0, pdata) |
86 | #define imx25_add_spi_imx1(pdata) imx25_add_spi_imx(1, pdata) | 85 | #define imx25_add_spi_imx1(pdata) imx25_add_spi_imx(1, pdata) |
87 | #define imx25_add_spi_imx2(pdata) imx25_add_spi_imx(2, pdata) | 86 | #define imx25_add_spi_imx2(pdata) imx25_add_spi_imx(2, pdata) |
88 | 87 | ||
89 | extern struct imx_mxc_pwm_data imx25_mxc_pwm_data[] __initconst; | 88 | extern struct imx_mxc_pwm_data imx25_mxc_pwm_data[]; |
90 | #define imx25_add_mxc_pwm(id) \ | 89 | #define imx25_add_mxc_pwm(id) \ |
91 | imx_add_mxc_pwm(&imx25_mxc_pwm_data[id]) | 90 | imx_add_mxc_pwm(&imx25_mxc_pwm_data[id]) |
diff --git a/arch/arm/mach-imx/devices-imx27.h b/arch/arm/mach-imx/devices-imx27.h index f1272d4b5a33..7f97a3cdd41d 100644 --- a/arch/arm/mach-imx/devices-imx27.h +++ b/arch/arm/mach-imx/devices-imx27.h | |||
@@ -9,35 +9,35 @@ | |||
9 | #include <mach/mx27.h> | 9 | #include <mach/mx27.h> |
10 | #include <mach/devices-common.h> | 10 | #include <mach/devices-common.h> |
11 | 11 | ||
12 | extern const struct imx_fec_data imx27_fec_data __initconst; | 12 | extern const struct imx_fec_data imx27_fec_data; |
13 | #define imx27_add_fec(pdata) \ | 13 | #define imx27_add_fec(pdata) \ |
14 | imx_add_fec(&imx27_fec_data, pdata) | 14 | imx_add_fec(&imx27_fec_data, pdata) |
15 | 15 | ||
16 | extern const struct imx_fsl_usb2_udc_data imx27_fsl_usb2_udc_data __initconst; | 16 | extern const struct imx_fsl_usb2_udc_data imx27_fsl_usb2_udc_data; |
17 | #define imx27_add_fsl_usb2_udc(pdata) \ | 17 | #define imx27_add_fsl_usb2_udc(pdata) \ |
18 | imx_add_fsl_usb2_udc(&imx27_fsl_usb2_udc_data, pdata) | 18 | imx_add_fsl_usb2_udc(&imx27_fsl_usb2_udc_data, pdata) |
19 | 19 | ||
20 | extern const struct imx_imx2_wdt_data imx27_imx2_wdt_data __initconst; | 20 | extern const struct imx_imx2_wdt_data imx27_imx2_wdt_data; |
21 | #define imx27_add_imx2_wdt(pdata) \ | 21 | #define imx27_add_imx2_wdt(pdata) \ |
22 | imx_add_imx2_wdt(&imx27_imx2_wdt_data) | 22 | imx_add_imx2_wdt(&imx27_imx2_wdt_data) |
23 | 23 | ||
24 | extern const struct imx_imx_fb_data imx27_imx_fb_data __initconst; | 24 | extern const struct imx_imx_fb_data imx27_imx_fb_data; |
25 | #define imx27_add_imx_fb(pdata) \ | 25 | #define imx27_add_imx_fb(pdata) \ |
26 | imx_add_imx_fb(&imx27_imx_fb_data, pdata) | 26 | imx_add_imx_fb(&imx27_imx_fb_data, pdata) |
27 | 27 | ||
28 | extern const struct imx_imx_i2c_data imx27_imx_i2c_data[] __initconst; | 28 | extern const struct imx_imx_i2c_data imx27_imx_i2c_data[]; |
29 | #define imx27_add_imx_i2c(id, pdata) \ | 29 | #define imx27_add_imx_i2c(id, pdata) \ |
30 | imx_add_imx_i2c(&imx27_imx_i2c_data[id], pdata) | 30 | imx_add_imx_i2c(&imx27_imx_i2c_data[id], pdata) |
31 | 31 | ||
32 | extern const struct imx_imx_keypad_data imx27_imx_keypad_data __initconst; | 32 | extern const struct imx_imx_keypad_data imx27_imx_keypad_data; |
33 | #define imx27_add_imx_keypad(pdata) \ | 33 | #define imx27_add_imx_keypad(pdata) \ |
34 | imx_add_imx_keypad(&imx27_imx_keypad_data, pdata) | 34 | imx_add_imx_keypad(&imx27_imx_keypad_data, pdata) |
35 | 35 | ||
36 | extern const struct imx_imx_ssi_data imx27_imx_ssi_data[] __initconst; | 36 | extern const struct imx_imx_ssi_data imx27_imx_ssi_data[]; |
37 | #define imx27_add_imx_ssi(id, pdata) \ | 37 | #define imx27_add_imx_ssi(id, pdata) \ |
38 | imx_add_imx_ssi(&imx27_imx_ssi_data[id], pdata) | 38 | imx_add_imx_ssi(&imx27_imx_ssi_data[id], pdata) |
39 | 39 | ||
40 | extern const struct imx_imx_uart_1irq_data imx27_imx_uart_data[] __initconst; | 40 | extern const struct imx_imx_uart_1irq_data imx27_imx_uart_data[]; |
41 | #define imx27_add_imx_uart(id, pdata) \ | 41 | #define imx27_add_imx_uart(id, pdata) \ |
42 | imx_add_imx_uart_1irq(&imx27_imx_uart_data[id], pdata) | 42 | imx_add_imx_uart_1irq(&imx27_imx_uart_data[id], pdata) |
43 | #define imx27_add_imx_uart0(pdata) imx27_add_imx_uart(0, pdata) | 43 | #define imx27_add_imx_uart0(pdata) imx27_add_imx_uart(0, pdata) |
@@ -47,30 +47,30 @@ extern const struct imx_imx_uart_1irq_data imx27_imx_uart_data[] __initconst; | |||
47 | #define imx27_add_imx_uart4(pdata) imx27_add_imx_uart(4, pdata) | 47 | #define imx27_add_imx_uart4(pdata) imx27_add_imx_uart(4, pdata) |
48 | #define imx27_add_imx_uart5(pdata) imx27_add_imx_uart(5, pdata) | 48 | #define imx27_add_imx_uart5(pdata) imx27_add_imx_uart(5, pdata) |
49 | 49 | ||
50 | extern const struct imx_mx2_camera_data imx27_mx2_camera_data __initconst; | 50 | extern const struct imx_mx2_camera_data imx27_mx2_camera_data; |
51 | #define imx27_add_mx2_camera(pdata) \ | 51 | #define imx27_add_mx2_camera(pdata) \ |
52 | imx_add_mx2_camera(&imx27_mx2_camera_data, pdata) | 52 | imx_add_mx2_camera(&imx27_mx2_camera_data, pdata) |
53 | 53 | ||
54 | extern const struct imx_mxc_ehci_data imx27_mxc_ehci_otg_data __initconst; | 54 | extern const struct imx_mxc_ehci_data imx27_mxc_ehci_otg_data; |
55 | #define imx27_add_mxc_ehci_otg(pdata) \ | 55 | #define imx27_add_mxc_ehci_otg(pdata) \ |
56 | imx_add_mxc_ehci(&imx27_mxc_ehci_otg_data, pdata) | 56 | imx_add_mxc_ehci(&imx27_mxc_ehci_otg_data, pdata) |
57 | extern const struct imx_mxc_ehci_data imx27_mxc_ehci_hs_data[] __initconst; | 57 | extern const struct imx_mxc_ehci_data imx27_mxc_ehci_hs_data[]; |
58 | #define imx27_add_mxc_ehci_hs(id, pdata) \ | 58 | #define imx27_add_mxc_ehci_hs(id, pdata) \ |
59 | imx_add_mxc_ehci(&imx27_mxc_ehci_hs_data[id - 1], pdata) | 59 | imx_add_mxc_ehci(&imx27_mxc_ehci_hs_data[id - 1], pdata) |
60 | 60 | ||
61 | extern const struct imx_mxc_mmc_data imx27_mxc_mmc_data[] __initconst; | 61 | extern const struct imx_mxc_mmc_data imx27_mxc_mmc_data[]; |
62 | #define imx27_add_mxc_mmc(id, pdata) \ | 62 | #define imx27_add_mxc_mmc(id, pdata) \ |
63 | imx_add_mxc_mmc(&imx27_mxc_mmc_data[id], pdata) | 63 | imx_add_mxc_mmc(&imx27_mxc_mmc_data[id], pdata) |
64 | 64 | ||
65 | extern const struct imx_mxc_nand_data imx27_mxc_nand_data __initconst; | 65 | extern const struct imx_mxc_nand_data imx27_mxc_nand_data; |
66 | #define imx27_add_mxc_nand(pdata) \ | 66 | #define imx27_add_mxc_nand(pdata) \ |
67 | imx_add_mxc_nand(&imx27_mxc_nand_data, pdata) | 67 | imx_add_mxc_nand(&imx27_mxc_nand_data, pdata) |
68 | 68 | ||
69 | extern const struct imx_mxc_w1_data imx27_mxc_w1_data __initconst; | 69 | extern const struct imx_mxc_w1_data imx27_mxc_w1_data; |
70 | #define imx27_add_mxc_w1(pdata) \ | 70 | #define imx27_add_mxc_w1(pdata) \ |
71 | imx_add_mxc_w1(&imx27_mxc_w1_data) | 71 | imx_add_mxc_w1(&imx27_mxc_w1_data) |
72 | 72 | ||
73 | extern const struct imx_spi_imx_data imx27_cspi_data[] __initconst; | 73 | extern const struct imx_spi_imx_data imx27_cspi_data[]; |
74 | #define imx27_add_cspi(id, pdata) \ | 74 | #define imx27_add_cspi(id, pdata) \ |
75 | imx_add_spi_imx(&imx27_cspi_data[id], pdata) | 75 | imx_add_spi_imx(&imx27_cspi_data[id], pdata) |
76 | #define imx27_add_spi_imx0(pdata) imx27_add_cspi(0, pdata) | 76 | #define imx27_add_spi_imx0(pdata) imx27_add_cspi(0, pdata) |
diff --git a/arch/arm/mach-mx3/devices-imx31.h b/arch/arm/mach-imx/devices-imx31.h index 40f4e848a671..dbe940d9c53a 100644 --- a/arch/arm/mach-mx3/devices-imx31.h +++ b/arch/arm/mach-imx/devices-imx31.h | |||
@@ -9,30 +9,30 @@ | |||
9 | #include <mach/mx31.h> | 9 | #include <mach/mx31.h> |
10 | #include <mach/devices-common.h> | 10 | #include <mach/devices-common.h> |
11 | 11 | ||
12 | extern const struct imx_fsl_usb2_udc_data imx31_fsl_usb2_udc_data __initconst; | 12 | extern const struct imx_fsl_usb2_udc_data imx31_fsl_usb2_udc_data; |
13 | #define imx31_add_fsl_usb2_udc(pdata) \ | 13 | #define imx31_add_fsl_usb2_udc(pdata) \ |
14 | imx_add_fsl_usb2_udc(&imx31_fsl_usb2_udc_data, pdata) | 14 | imx_add_fsl_usb2_udc(&imx31_fsl_usb2_udc_data, pdata) |
15 | 15 | ||
16 | extern const struct imx_imx2_wdt_data imx31_imx2_wdt_data __initconst; | 16 | extern const struct imx_imx2_wdt_data imx31_imx2_wdt_data; |
17 | #define imx31_add_imx2_wdt(pdata) \ | 17 | #define imx31_add_imx2_wdt(pdata) \ |
18 | imx_add_imx2_wdt(&imx31_imx2_wdt_data) | 18 | imx_add_imx2_wdt(&imx31_imx2_wdt_data) |
19 | 19 | ||
20 | extern const struct imx_imx_i2c_data imx31_imx_i2c_data[] __initconst; | 20 | extern const struct imx_imx_i2c_data imx31_imx_i2c_data[]; |
21 | #define imx31_add_imx_i2c(id, pdata) \ | 21 | #define imx31_add_imx_i2c(id, pdata) \ |
22 | imx_add_imx_i2c(&imx31_imx_i2c_data[id], pdata) | 22 | imx_add_imx_i2c(&imx31_imx_i2c_data[id], pdata) |
23 | #define imx31_add_imx_i2c0(pdata) imx31_add_imx_i2c(0, pdata) | 23 | #define imx31_add_imx_i2c0(pdata) imx31_add_imx_i2c(0, pdata) |
24 | #define imx31_add_imx_i2c1(pdata) imx31_add_imx_i2c(1, pdata) | 24 | #define imx31_add_imx_i2c1(pdata) imx31_add_imx_i2c(1, pdata) |
25 | #define imx31_add_imx_i2c2(pdata) imx31_add_imx_i2c(2, pdata) | 25 | #define imx31_add_imx_i2c2(pdata) imx31_add_imx_i2c(2, pdata) |
26 | 26 | ||
27 | extern const struct imx_imx_keypad_data imx31_imx_keypad_data __initconst; | 27 | extern const struct imx_imx_keypad_data imx31_imx_keypad_data; |
28 | #define imx31_add_imx_keypad(pdata) \ | 28 | #define imx31_add_imx_keypad(pdata) \ |
29 | imx_add_imx_keypad(&imx31_imx_keypad_data, pdata) | 29 | imx_add_imx_keypad(&imx31_imx_keypad_data, pdata) |
30 | 30 | ||
31 | extern const struct imx_imx_ssi_data imx31_imx_ssi_data[] __initconst; | 31 | extern const struct imx_imx_ssi_data imx31_imx_ssi_data[]; |
32 | #define imx31_add_imx_ssi(id, pdata) \ | 32 | #define imx31_add_imx_ssi(id, pdata) \ |
33 | imx_add_imx_ssi(&imx31_imx_ssi_data[id], pdata) | 33 | imx_add_imx_ssi(&imx31_imx_ssi_data[id], pdata) |
34 | 34 | ||
35 | extern const struct imx_imx_uart_1irq_data imx31_imx_uart_data[] __initconst; | 35 | extern const struct imx_imx_uart_1irq_data imx31_imx_uart_data[]; |
36 | #define imx31_add_imx_uart(id, pdata) \ | 36 | #define imx31_add_imx_uart(id, pdata) \ |
37 | imx_add_imx_uart_1irq(&imx31_imx_uart_data[id], pdata) | 37 | imx_add_imx_uart_1irq(&imx31_imx_uart_data[id], pdata) |
38 | #define imx31_add_imx_uart0(pdata) imx31_add_imx_uart(0, pdata) | 38 | #define imx31_add_imx_uart0(pdata) imx31_add_imx_uart(0, pdata) |
@@ -41,26 +41,38 @@ extern const struct imx_imx_uart_1irq_data imx31_imx_uart_data[] __initconst; | |||
41 | #define imx31_add_imx_uart3(pdata) imx31_add_imx_uart(3, pdata) | 41 | #define imx31_add_imx_uart3(pdata) imx31_add_imx_uart(3, pdata) |
42 | #define imx31_add_imx_uart4(pdata) imx31_add_imx_uart(4, pdata) | 42 | #define imx31_add_imx_uart4(pdata) imx31_add_imx_uart(4, pdata) |
43 | 43 | ||
44 | extern const struct imx_mxc_ehci_data imx31_mxc_ehci_otg_data __initconst; | 44 | extern const struct imx_ipu_core_data imx31_ipu_core_data; |
45 | #define imx31_add_ipu_core(pdata) \ | ||
46 | imx_add_ipu_core(&imx31_ipu_core_data, pdata) | ||
47 | #define imx31_alloc_mx3_camera(pdata) \ | ||
48 | imx_alloc_mx3_camera(&imx31_ipu_core_data, pdata) | ||
49 | #define imx31_add_mx3_sdc_fb(pdata) \ | ||
50 | imx_add_mx3_sdc_fb(&imx31_ipu_core_data, pdata) | ||
51 | |||
52 | extern const struct imx_mxc_ehci_data imx31_mxc_ehci_otg_data; | ||
45 | #define imx31_add_mxc_ehci_otg(pdata) \ | 53 | #define imx31_add_mxc_ehci_otg(pdata) \ |
46 | imx_add_mxc_ehci(&imx31_mxc_ehci_otg_data, pdata) | 54 | imx_add_mxc_ehci(&imx31_mxc_ehci_otg_data, pdata) |
47 | extern const struct imx_mxc_ehci_data imx31_mxc_ehci_hs_data[] __initconst; | 55 | extern const struct imx_mxc_ehci_data imx31_mxc_ehci_hs_data[]; |
48 | #define imx31_add_mxc_ehci_hs(id, pdata) \ | 56 | #define imx31_add_mxc_ehci_hs(id, pdata) \ |
49 | imx_add_mxc_ehci(&imx31_mxc_ehci_hs_data[id - 1], pdata) | 57 | imx_add_mxc_ehci(&imx31_mxc_ehci_hs_data[id - 1], pdata) |
50 | 58 | ||
51 | extern const struct imx_mxc_mmc_data imx31_mxc_mmc_data[] __initconst; | 59 | extern const struct imx_mxc_mmc_data imx31_mxc_mmc_data[]; |
52 | #define imx31_add_mxc_mmc(id, pdata) \ | 60 | #define imx31_add_mxc_mmc(id, pdata) \ |
53 | imx_add_mxc_mmc(&imx31_mxc_mmc_data[id], pdata) | 61 | imx_add_mxc_mmc(&imx31_mxc_mmc_data[id], pdata) |
54 | 62 | ||
55 | extern const struct imx_mxc_nand_data imx31_mxc_nand_data __initconst; | 63 | extern const struct imx_mxc_nand_data imx31_mxc_nand_data; |
56 | #define imx31_add_mxc_nand(pdata) \ | 64 | #define imx31_add_mxc_nand(pdata) \ |
57 | imx_add_mxc_nand(&imx31_mxc_nand_data, pdata) | 65 | imx_add_mxc_nand(&imx31_mxc_nand_data, pdata) |
58 | 66 | ||
59 | extern const struct imx_mxc_w1_data imx31_mxc_w1_data __initconst; | 67 | extern const struct imx_mxc_rtc_data imx31_mxc_rtc_data; |
68 | #define imx31_add_mxc_rtc(pdata) \ | ||
69 | imx_add_mxc_rtc(&imx31_mxc_rtc_data) | ||
70 | |||
71 | extern const struct imx_mxc_w1_data imx31_mxc_w1_data; | ||
60 | #define imx31_add_mxc_w1(pdata) \ | 72 | #define imx31_add_mxc_w1(pdata) \ |
61 | imx_add_mxc_w1(&imx31_mxc_w1_data) | 73 | imx_add_mxc_w1(&imx31_mxc_w1_data) |
62 | 74 | ||
63 | extern const struct imx_spi_imx_data imx31_cspi_data[] __initconst; | 75 | extern const struct imx_spi_imx_data imx31_cspi_data[]; |
64 | #define imx31_add_cspi(id, pdata) \ | 76 | #define imx31_add_cspi(id, pdata) \ |
65 | imx_add_spi_imx(&imx31_cspi_data[id], pdata) | 77 | imx_add_spi_imx(&imx31_cspi_data[id], pdata) |
66 | #define imx31_add_spi_imx0(pdata) imx31_add_cspi(0, pdata) | 78 | #define imx31_add_spi_imx0(pdata) imx31_add_cspi(0, pdata) |
diff --git a/arch/arm/mach-mx3/devices-imx35.h b/arch/arm/mach-imx/devices-imx35.h index d545d86cc202..234cbd3c18af 100644 --- a/arch/arm/mach-mx3/devices-imx35.h +++ b/arch/arm/mach-imx/devices-imx35.h | |||
@@ -9,67 +9,74 @@ | |||
9 | #include <mach/mx35.h> | 9 | #include <mach/mx35.h> |
10 | #include <mach/devices-common.h> | 10 | #include <mach/devices-common.h> |
11 | 11 | ||
12 | extern const struct imx_fec_data imx35_fec_data __initconst; | 12 | extern const struct imx_fec_data imx35_fec_data; |
13 | #define imx35_add_fec(pdata) \ | 13 | #define imx35_add_fec(pdata) \ |
14 | imx_add_fec(&imx35_fec_data, pdata) | 14 | imx_add_fec(&imx35_fec_data, pdata) |
15 | 15 | ||
16 | extern const struct imx_fsl_usb2_udc_data imx35_fsl_usb2_udc_data __initconst; | 16 | extern const struct imx_fsl_usb2_udc_data imx35_fsl_usb2_udc_data; |
17 | #define imx35_add_fsl_usb2_udc(pdata) \ | 17 | #define imx35_add_fsl_usb2_udc(pdata) \ |
18 | imx_add_fsl_usb2_udc(&imx35_fsl_usb2_udc_data, pdata) | 18 | imx_add_fsl_usb2_udc(&imx35_fsl_usb2_udc_data, pdata) |
19 | 19 | ||
20 | extern const struct imx_flexcan_data imx35_flexcan_data[] __initconst; | 20 | extern const struct imx_flexcan_data imx35_flexcan_data[]; |
21 | #define imx35_add_flexcan(id, pdata) \ | 21 | #define imx35_add_flexcan(id, pdata) \ |
22 | imx_add_flexcan(&imx35_flexcan_data[id], pdata) | 22 | imx_add_flexcan(&imx35_flexcan_data[id], pdata) |
23 | #define imx35_add_flexcan0(pdata) imx35_add_flexcan(0, pdata) | 23 | #define imx35_add_flexcan0(pdata) imx35_add_flexcan(0, pdata) |
24 | #define imx35_add_flexcan1(pdata) imx35_add_flexcan(1, pdata) | 24 | #define imx35_add_flexcan1(pdata) imx35_add_flexcan(1, pdata) |
25 | 25 | ||
26 | extern const struct imx_imx2_wdt_data imx35_imx2_wdt_data __initconst; | 26 | extern const struct imx_imx2_wdt_data imx35_imx2_wdt_data; |
27 | #define imx35_add_imx2_wdt(pdata) \ | 27 | #define imx35_add_imx2_wdt(pdata) \ |
28 | imx_add_imx2_wdt(&imx35_imx2_wdt_data) | 28 | imx_add_imx2_wdt(&imx35_imx2_wdt_data) |
29 | 29 | ||
30 | extern const struct imx_imx_i2c_data imx35_imx_i2c_data[] __initconst; | 30 | extern const struct imx_imx_i2c_data imx35_imx_i2c_data[]; |
31 | #define imx35_add_imx_i2c(id, pdata) \ | 31 | #define imx35_add_imx_i2c(id, pdata) \ |
32 | imx_add_imx_i2c(&imx35_imx_i2c_data[id], pdata) | 32 | imx_add_imx_i2c(&imx35_imx_i2c_data[id], pdata) |
33 | #define imx35_add_imx_i2c0(pdata) imx35_add_imx_i2c(0, pdata) | 33 | #define imx35_add_imx_i2c0(pdata) imx35_add_imx_i2c(0, pdata) |
34 | #define imx35_add_imx_i2c1(pdata) imx35_add_imx_i2c(1, pdata) | 34 | #define imx35_add_imx_i2c1(pdata) imx35_add_imx_i2c(1, pdata) |
35 | #define imx35_add_imx_i2c2(pdata) imx35_add_imx_i2c(2, pdata) | 35 | #define imx35_add_imx_i2c2(pdata) imx35_add_imx_i2c(2, pdata) |
36 | 36 | ||
37 | extern const struct imx_imx_keypad_data imx35_imx_keypad_data __initconst; | 37 | extern const struct imx_imx_keypad_data imx35_imx_keypad_data; |
38 | #define imx35_add_imx_keypad(pdata) \ | 38 | #define imx35_add_imx_keypad(pdata) \ |
39 | imx_add_imx_keypad(&imx35_imx_keypad_data, pdata) | 39 | imx_add_imx_keypad(&imx35_imx_keypad_data, pdata) |
40 | 40 | ||
41 | extern const struct imx_imx_ssi_data imx35_imx_ssi_data[] __initconst; | 41 | extern const struct imx_imx_ssi_data imx35_imx_ssi_data[]; |
42 | #define imx35_add_imx_ssi(id, pdata) \ | 42 | #define imx35_add_imx_ssi(id, pdata) \ |
43 | imx_add_imx_ssi(&imx35_imx_ssi_data[id], pdata) | 43 | imx_add_imx_ssi(&imx35_imx_ssi_data[id], pdata) |
44 | 44 | ||
45 | extern const struct imx_imx_uart_1irq_data imx35_imx_uart_data[] __initconst; | 45 | extern const struct imx_imx_uart_1irq_data imx35_imx_uart_data[]; |
46 | #define imx35_add_imx_uart(id, pdata) \ | 46 | #define imx35_add_imx_uart(id, pdata) \ |
47 | imx_add_imx_uart_1irq(&imx35_imx_uart_data[id], pdata) | 47 | imx_add_imx_uart_1irq(&imx35_imx_uart_data[id], pdata) |
48 | #define imx35_add_imx_uart0(pdata) imx35_add_imx_uart(0, pdata) | 48 | #define imx35_add_imx_uart0(pdata) imx35_add_imx_uart(0, pdata) |
49 | #define imx35_add_imx_uart1(pdata) imx35_add_imx_uart(1, pdata) | 49 | #define imx35_add_imx_uart1(pdata) imx35_add_imx_uart(1, pdata) |
50 | #define imx35_add_imx_uart2(pdata) imx35_add_imx_uart(2, pdata) | 50 | #define imx35_add_imx_uart2(pdata) imx35_add_imx_uart(2, pdata) |
51 | 51 | ||
52 | extern const struct imx_mxc_ehci_data imx35_mxc_ehci_otg_data __initconst; | 52 | extern const struct imx_ipu_core_data imx35_ipu_core_data; |
53 | #define imx35_add_ipu_core(pdata) \ | ||
54 | imx_add_ipu_core(&imx35_ipu_core_data, pdata) | ||
55 | #define imx35_alloc_mx3_camera(pdata) \ | ||
56 | imx_alloc_mx3_camera(&imx35_ipu_core_data, pdata) | ||
57 | #define imx35_add_mx3_sdc_fb(pdata) \ | ||
58 | imx_add_mx3_sdc_fb(&imx35_ipu_core_data, pdata) | ||
59 | |||
60 | extern const struct imx_mxc_ehci_data imx35_mxc_ehci_otg_data; | ||
53 | #define imx35_add_mxc_ehci_otg(pdata) \ | 61 | #define imx35_add_mxc_ehci_otg(pdata) \ |
54 | imx_add_mxc_ehci(&imx35_mxc_ehci_otg_data, pdata) | 62 | imx_add_mxc_ehci(&imx35_mxc_ehci_otg_data, pdata) |
55 | extern const struct imx_mxc_ehci_data imx35_mxc_ehci_hs_data __initconst; | 63 | extern const struct imx_mxc_ehci_data imx35_mxc_ehci_hs_data; |
56 | #define imx35_add_mxc_ehci_hs(pdata) \ | 64 | #define imx35_add_mxc_ehci_hs(pdata) \ |
57 | imx_add_mxc_ehci(&imx35_mxc_ehci_hs_data, pdata) | 65 | imx_add_mxc_ehci(&imx35_mxc_ehci_hs_data, pdata) |
58 | 66 | ||
59 | extern const struct imx_mxc_nand_data imx35_mxc_nand_data __initconst; | 67 | extern const struct imx_mxc_nand_data imx35_mxc_nand_data; |
60 | #define imx35_add_mxc_nand(pdata) \ | 68 | #define imx35_add_mxc_nand(pdata) \ |
61 | imx_add_mxc_nand(&imx35_mxc_nand_data, pdata) | 69 | imx_add_mxc_nand(&imx35_mxc_nand_data, pdata) |
62 | 70 | ||
63 | extern const struct imx_mxc_w1_data imx35_mxc_w1_data __initconst; | 71 | extern const struct imx_mxc_w1_data imx35_mxc_w1_data; |
64 | #define imx35_add_mxc_w1(pdata) \ | 72 | #define imx35_add_mxc_w1(pdata) \ |
65 | imx_add_mxc_w1(&imx35_mxc_w1_data) | 73 | imx_add_mxc_w1(&imx35_mxc_w1_data) |
66 | 74 | ||
67 | extern const struct imx_sdhci_esdhc_imx_data | 75 | extern const struct imx_sdhci_esdhc_imx_data imx35_sdhci_esdhc_imx_data[]; |
68 | imx35_sdhci_esdhc_imx_data[] __initconst; | ||
69 | #define imx35_add_sdhci_esdhc_imx(id, pdata) \ | 76 | #define imx35_add_sdhci_esdhc_imx(id, pdata) \ |
70 | imx_add_sdhci_esdhc_imx(&imx35_sdhci_esdhc_imx_data[id], pdata) | 77 | imx_add_sdhci_esdhc_imx(&imx35_sdhci_esdhc_imx_data[id], pdata) |
71 | 78 | ||
72 | extern const struct imx_spi_imx_data imx35_cspi_data[] __initconst; | 79 | extern const struct imx_spi_imx_data imx35_cspi_data[]; |
73 | #define imx35_add_cspi(id, pdata) \ | 80 | #define imx35_add_cspi(id, pdata) \ |
74 | imx_add_spi_imx(&imx35_cspi_data[id], pdata) | 81 | imx_add_spi_imx(&imx35_cspi_data[id], pdata) |
75 | #define imx35_add_spi_imx0(pdata) imx35_add_cspi(0, pdata) | 82 | #define imx35_add_spi_imx0(pdata) imx35_add_cspi(0, pdata) |
diff --git a/arch/arm/mach-mx3/ehci-imx31.c b/arch/arm/mach-imx/ehci-imx31.c index 314a983ac614..faad0f15ac7f 100644 --- a/arch/arm/mach-mx3/ehci-imx31.c +++ b/arch/arm/mach-imx/ehci-imx31.c | |||
@@ -80,4 +80,3 @@ int mx31_initialize_usb_hw(int port, unsigned int flags) | |||
80 | 80 | ||
81 | return 0; | 81 | return 0; |
82 | } | 82 | } |
83 | |||
diff --git a/arch/arm/mach-mx3/ehci-imx35.c b/arch/arm/mach-imx/ehci-imx35.c index 33983a478c6b..001ec3971f5d 100644 --- a/arch/arm/mach-mx3/ehci-imx35.c +++ b/arch/arm/mach-imx/ehci-imx35.c | |||
@@ -77,4 +77,3 @@ int mx35_initialize_usb_hw(int port, unsigned int flags) | |||
77 | 77 | ||
78 | return 0; | 78 | return 0; |
79 | } | 79 | } |
80 | |||
diff --git a/arch/arm/mach-imx/eukrea_mbimx27-baseboard.c b/arch/arm/mach-imx/eukrea_mbimx27-baseboard.c index fa5288018ba7..5911281da5f5 100644 --- a/arch/arm/mach-imx/eukrea_mbimx27-baseboard.c +++ b/arch/arm/mach-imx/eukrea_mbimx27-baseboard.c | |||
@@ -32,7 +32,6 @@ | |||
32 | #include <mach/common.h> | 32 | #include <mach/common.h> |
33 | #include <mach/iomux-mx27.h> | 33 | #include <mach/iomux-mx27.h> |
34 | #include <mach/hardware.h> | 34 | #include <mach/hardware.h> |
35 | #include <mach/spi.h> | ||
36 | #include <mach/audmux.h> | 35 | #include <mach/audmux.h> |
37 | 36 | ||
38 | #include "devices-imx27.h" | 37 | #include "devices-imx27.h" |
diff --git a/arch/arm/mach-imx/eukrea_mbimxsd25-baseboard.c b/arch/arm/mach-imx/eukrea_mbimxsd25-baseboard.c index 6269053505f7..f9ef04acdab1 100644 --- a/arch/arm/mach-imx/eukrea_mbimxsd25-baseboard.c +++ b/arch/arm/mach-imx/eukrea_mbimxsd25-baseboard.c | |||
@@ -22,7 +22,6 @@ | |||
22 | #include <linux/gpio.h> | 22 | #include <linux/gpio.h> |
23 | #include <linux/leds.h> | 23 | #include <linux/leds.h> |
24 | #include <linux/platform_device.h> | 24 | #include <linux/platform_device.h> |
25 | #include <linux/gpio_keys.h> | ||
26 | #include <linux/input.h> | 25 | #include <linux/input.h> |
27 | #include <video/platform_lcd.h> | 26 | #include <video/platform_lcd.h> |
28 | 27 | ||
@@ -32,9 +31,7 @@ | |||
32 | #include <asm/mach-types.h> | 31 | #include <asm/mach-types.h> |
33 | #include <asm/mach/arch.h> | 32 | #include <asm/mach/arch.h> |
34 | #include <mach/mx25.h> | 33 | #include <mach/mx25.h> |
35 | #include <mach/imx-uart.h> | ||
36 | #include <mach/audmux.h> | 34 | #include <mach/audmux.h> |
37 | #include <mach/esdhc.h> | ||
38 | 35 | ||
39 | #include "devices-imx25.h" | 36 | #include "devices-imx25.h" |
40 | 37 | ||
@@ -208,23 +205,14 @@ static struct gpio_keys_button eukrea_mbimxsd_gpio_buttons[] = { | |||
208 | }, | 205 | }, |
209 | }; | 206 | }; |
210 | 207 | ||
211 | static struct gpio_keys_platform_data eukrea_mbimxsd_button_data = { | 208 | static const struct gpio_keys_platform_data |
209 | eukrea_mbimxsd_button_data __initconst = { | ||
212 | .buttons = eukrea_mbimxsd_gpio_buttons, | 210 | .buttons = eukrea_mbimxsd_gpio_buttons, |
213 | .nbuttons = ARRAY_SIZE(eukrea_mbimxsd_gpio_buttons), | 211 | .nbuttons = ARRAY_SIZE(eukrea_mbimxsd_gpio_buttons), |
214 | }; | 212 | }; |
215 | 213 | ||
216 | static struct platform_device eukrea_mbimxsd_button_device = { | ||
217 | .name = "gpio-keys", | ||
218 | .id = -1, | ||
219 | .num_resources = 0, | ||
220 | .dev = { | ||
221 | .platform_data = &eukrea_mbimxsd_button_data, | ||
222 | } | ||
223 | }; | ||
224 | |||
225 | static struct platform_device *platform_devices[] __initdata = { | 214 | static struct platform_device *platform_devices[] __initdata = { |
226 | &eukrea_mbimxsd_leds_gpio, | 215 | &eukrea_mbimxsd_leds_gpio, |
227 | &eukrea_mbimxsd_button_device, | ||
228 | &eukrea_mbimxsd_lcd_powerdev, | 216 | &eukrea_mbimxsd_lcd_powerdev, |
229 | }; | 217 | }; |
230 | 218 | ||
@@ -299,4 +287,5 @@ void __init eukrea_mbimxsd25_baseboard_init(void) | |||
299 | ARRAY_SIZE(eukrea_mbimxsd_i2c_devices)); | 287 | ARRAY_SIZE(eukrea_mbimxsd_i2c_devices)); |
300 | 288 | ||
301 | platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices)); | 289 | platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices)); |
290 | imx_add_gpio_keys(&eukrea_mbimxsd_button_data); | ||
302 | } | 291 | } |
diff --git a/arch/arm/mach-mx3/eukrea_mbimxsd-baseboard.c b/arch/arm/mach-imx/eukrea_mbimxsd35-baseboard.c index 2e288b38b4ad..4909ea05855a 100644 --- a/arch/arm/mach-mx3/eukrea_mbimxsd-baseboard.c +++ b/arch/arm/mach-imx/eukrea_mbimxsd35-baseboard.c | |||
@@ -26,7 +26,6 @@ | |||
26 | #include <linux/interrupt.h> | 26 | #include <linux/interrupt.h> |
27 | #include <linux/leds.h> | 27 | #include <linux/leds.h> |
28 | #include <linux/platform_device.h> | 28 | #include <linux/platform_device.h> |
29 | #include <linux/gpio_keys.h> | ||
30 | #include <linux/input.h> | 29 | #include <linux/input.h> |
31 | #include <video/platform_lcd.h> | 30 | #include <video/platform_lcd.h> |
32 | #include <linux/i2c.h> | 31 | #include <linux/i2c.h> |
@@ -38,15 +37,10 @@ | |||
38 | 37 | ||
39 | #include <mach/hardware.h> | 38 | #include <mach/hardware.h> |
40 | #include <mach/common.h> | 39 | #include <mach/common.h> |
41 | #include <mach/imx-uart.h> | ||
42 | #include <mach/iomux-mx35.h> | 40 | #include <mach/iomux-mx35.h> |
43 | #include <mach/ipu.h> | ||
44 | #include <mach/mx3fb.h> | ||
45 | #include <mach/audmux.h> | 41 | #include <mach/audmux.h> |
46 | #include <mach/esdhc.h> | ||
47 | 42 | ||
48 | #include "devices-imx35.h" | 43 | #include "devices-imx35.h" |
49 | #include "devices.h" | ||
50 | 44 | ||
51 | static const struct fb_videomode fb_modedb[] = { | 45 | static const struct fb_videomode fb_modedb[] = { |
52 | { | 46 | { |
@@ -101,12 +95,11 @@ static const struct fb_videomode fb_modedb[] = { | |||
101 | }, | 95 | }, |
102 | }; | 96 | }; |
103 | 97 | ||
104 | static struct ipu_platform_data mx3_ipu_data = { | 98 | static const struct ipu_platform_data mx3_ipu_data __initconst = { |
105 | .irq_base = MXC_IPU_IRQ_START, | 99 | .irq_base = MXC_IPU_IRQ_START, |
106 | }; | 100 | }; |
107 | 101 | ||
108 | static struct mx3fb_platform_data mx3fb_pdata = { | 102 | static struct mx3fb_platform_data mx3fb_pdata __initdata = { |
109 | .dma_dev = &mx3_ipu.dev, | ||
110 | .name = "CMO-QVGA", | 103 | .name = "CMO-QVGA", |
111 | .mode = fb_modedb, | 104 | .mode = fb_modedb, |
112 | .num_modes = ARRAY_SIZE(fb_modedb), | 105 | .num_modes = ARRAY_SIZE(fb_modedb), |
@@ -223,23 +216,14 @@ static struct gpio_keys_button eukrea_mbimxsd_gpio_buttons[] = { | |||
223 | }, | 216 | }, |
224 | }; | 217 | }; |
225 | 218 | ||
226 | static struct gpio_keys_platform_data eukrea_mbimxsd_button_data = { | 219 | static const struct gpio_keys_platform_data |
220 | eukrea_mbimxsd_button_data __initconst = { | ||
227 | .buttons = eukrea_mbimxsd_gpio_buttons, | 221 | .buttons = eukrea_mbimxsd_gpio_buttons, |
228 | .nbuttons = ARRAY_SIZE(eukrea_mbimxsd_gpio_buttons), | 222 | .nbuttons = ARRAY_SIZE(eukrea_mbimxsd_gpio_buttons), |
229 | }; | 223 | }; |
230 | 224 | ||
231 | static struct platform_device eukrea_mbimxsd_button_device = { | ||
232 | .name = "gpio-keys", | ||
233 | .id = -1, | ||
234 | .num_resources = 0, | ||
235 | .dev = { | ||
236 | .platform_data = &eukrea_mbimxsd_button_data, | ||
237 | } | ||
238 | }; | ||
239 | |||
240 | static struct platform_device *platform_devices[] __initdata = { | 225 | static struct platform_device *platform_devices[] __initdata = { |
241 | &eukrea_mbimxsd_leds_gpio, | 226 | &eukrea_mbimxsd_leds_gpio, |
242 | &eukrea_mbimxsd_button_device, | ||
243 | &eukrea_mbimxsd_lcd_powerdev, | 227 | &eukrea_mbimxsd_lcd_powerdev, |
244 | }; | 228 | }; |
245 | 229 | ||
@@ -292,8 +276,8 @@ void __init eukrea_mbimxsd35_baseboard_init(void) | |||
292 | #endif | 276 | #endif |
293 | 277 | ||
294 | imx35_add_imx_uart1(&uart_pdata); | 278 | imx35_add_imx_uart1(&uart_pdata); |
295 | mxc_register_device(&mx3_ipu, &mx3_ipu_data); | 279 | imx35_add_ipu_core(&mx3_ipu_data); |
296 | mxc_register_device(&mx3_fb, &mx3fb_pdata); | 280 | imx35_add_mx3_sdc_fb(&mx3fb_pdata); |
297 | 281 | ||
298 | imx35_add_imx_ssi(0, &eukrea_mbimxsd_ssi_pdata); | 282 | imx35_add_imx_ssi(0, &eukrea_mbimxsd_ssi_pdata); |
299 | 283 | ||
@@ -315,4 +299,5 @@ void __init eukrea_mbimxsd35_baseboard_init(void) | |||
315 | ARRAY_SIZE(eukrea_mbimxsd_i2c_devices)); | 299 | ARRAY_SIZE(eukrea_mbimxsd_i2c_devices)); |
316 | 300 | ||
317 | platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices)); | 301 | platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices)); |
302 | imx_add_gpio_keys(&eukrea_mbimxsd_button_data); | ||
318 | } | 303 | } |
diff --git a/arch/arm/mach-mx3/iomux-imx31.c b/arch/arm/mach-imx/iomux-imx31.c index cf8f8099ebd7..cf8f8099ebd7 100644 --- a/arch/arm/mach-mx3/iomux-imx31.c +++ b/arch/arm/mach-imx/iomux-imx31.c | |||
diff --git a/arch/arm/mach-imx/mach-apf9328.c b/arch/arm/mach-imx/mach-apf9328.c new file mode 100644 index 000000000000..15e45c84e371 --- /dev/null +++ b/arch/arm/mach-imx/mach-apf9328.c | |||
@@ -0,0 +1,144 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/mach-imx/mach-apf9328.c | ||
3 | * | ||
4 | * Copyright (c) 2005-2011 ARMadeus systems <support@armadeus.com> | ||
5 | * | ||
6 | * This work is based on mach-scb9328.c which is: | ||
7 | * Copyright (c) 2004 Sascha Hauer <saschahauer@web.de> | ||
8 | * Copyright (c) 2006-2008 Juergen Beisert <jbeisert@netscape.net> | ||
9 | * | ||
10 | * This program is free software; you can redistribute it and/or modify | ||
11 | * it under the terms of the GNU General Public License version 2 as | ||
12 | * published by the Free Software Foundation. | ||
13 | * | ||
14 | */ | ||
15 | |||
16 | #include <linux/init.h> | ||
17 | #include <linux/kernel.h> | ||
18 | #include <linux/platform_device.h> | ||
19 | #include <linux/mtd/physmap.h> | ||
20 | #include <linux/dm9000.h> | ||
21 | |||
22 | #include <asm/mach-types.h> | ||
23 | #include <asm/mach/arch.h> | ||
24 | #include <asm/mach/time.h> | ||
25 | |||
26 | #include <mach/common.h> | ||
27 | #include <mach/hardware.h> | ||
28 | #include <mach/irqs.h> | ||
29 | #include <mach/iomux-mx1.h> | ||
30 | |||
31 | #include "devices-imx1.h" | ||
32 | |||
33 | static const int apf9328_pins[] __initconst = { | ||
34 | /* UART1 */ | ||
35 | PC9_PF_UART1_CTS, | ||
36 | PC10_PF_UART1_RTS, | ||
37 | PC11_PF_UART1_TXD, | ||
38 | PC12_PF_UART1_RXD, | ||
39 | /* UART2 */ | ||
40 | PB28_PF_UART2_CTS, | ||
41 | PB29_PF_UART2_RTS, | ||
42 | PB30_PF_UART2_TXD, | ||
43 | PB31_PF_UART2_RXD, | ||
44 | }; | ||
45 | |||
46 | /* | ||
47 | * The APF9328 can have up to 32MB NOR Flash | ||
48 | */ | ||
49 | static struct resource flash_resource = { | ||
50 | .start = MX1_CS0_PHYS, | ||
51 | .end = MX1_CS0_PHYS + SZ_32M - 1, | ||
52 | .flags = IORESOURCE_MEM, | ||
53 | }; | ||
54 | |||
55 | static struct physmap_flash_data apf9328_flash_data = { | ||
56 | .width = 2, | ||
57 | }; | ||
58 | |||
59 | static struct platform_device apf9328_flash_device = { | ||
60 | .name = "physmap-flash", | ||
61 | .id = 0, | ||
62 | .dev = { | ||
63 | .platform_data = &apf9328_flash_data, | ||
64 | }, | ||
65 | .resource = &flash_resource, | ||
66 | .num_resources = 1, | ||
67 | }; | ||
68 | |||
69 | /* | ||
70 | * APF9328 has a DM9000 Ethernet controller | ||
71 | */ | ||
72 | static struct dm9000_plat_data dm9000_setup = { | ||
73 | .flags = DM9000_PLATF_16BITONLY | ||
74 | }; | ||
75 | |||
76 | static struct resource dm9000_resources[] = { | ||
77 | { | ||
78 | .start = MX1_CS4_PHYS + 0x00C00000, | ||
79 | .end = MX1_CS4_PHYS + 0x00C00001, | ||
80 | .flags = IORESOURCE_MEM, | ||
81 | }, { | ||
82 | .start = MX1_CS4_PHYS + 0x00C00002, | ||
83 | .end = MX1_CS4_PHYS + 0x00C00003, | ||
84 | .flags = IORESOURCE_MEM, | ||
85 | }, { | ||
86 | .start = IRQ_GPIOB(14), | ||
87 | .end = IRQ_GPIOB(14), | ||
88 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL, | ||
89 | }, | ||
90 | }; | ||
91 | |||
92 | static struct platform_device dm9000x_device = { | ||
93 | .name = "dm9000", | ||
94 | .id = 0, | ||
95 | .num_resources = ARRAY_SIZE(dm9000_resources), | ||
96 | .resource = dm9000_resources, | ||
97 | .dev = { | ||
98 | .platform_data = &dm9000_setup, | ||
99 | } | ||
100 | }; | ||
101 | |||
102 | /* --- SERIAL RESSOURCE --- */ | ||
103 | static const struct imxuart_platform_data uart0_pdata __initconst = { | ||
104 | .flags = 0, | ||
105 | }; | ||
106 | |||
107 | static const struct imxuart_platform_data uart1_pdata __initconst = { | ||
108 | .flags = IMXUART_HAVE_RTSCTS, | ||
109 | }; | ||
110 | |||
111 | static struct platform_device *devices[] __initdata = { | ||
112 | &apf9328_flash_device, | ||
113 | &dm9000x_device, | ||
114 | }; | ||
115 | |||
116 | static void __init apf9328_init(void) | ||
117 | { | ||
118 | mxc_gpio_setup_multiple_pins(apf9328_pins, | ||
119 | ARRAY_SIZE(apf9328_pins), | ||
120 | "APF9328"); | ||
121 | |||
122 | imx1_add_imx_uart0(&uart0_pdata); | ||
123 | imx1_add_imx_uart1(&uart1_pdata); | ||
124 | |||
125 | platform_add_devices(devices, ARRAY_SIZE(devices)); | ||
126 | } | ||
127 | |||
128 | static void __init apf9328_timer_init(void) | ||
129 | { | ||
130 | mx1_clocks_init(32768); | ||
131 | } | ||
132 | |||
133 | static struct sys_timer apf9328_timer = { | ||
134 | .init = apf9328_timer_init, | ||
135 | }; | ||
136 | |||
137 | MACHINE_START(APF9328, "Armadeus APF9328") | ||
138 | /* Maintainer: Gwenhael Goavec-Merou, ARMadeus Systems */ | ||
139 | .map_io = mx1_map_io, | ||
140 | .init_early = imx1_init_early, | ||
141 | .init_irq = mx1_init_irq, | ||
142 | .timer = &apf9328_timer, | ||
143 | .init_machine = apf9328_init, | ||
144 | MACHINE_END | ||
diff --git a/arch/arm/mach-mx3/mach-armadillo5x0.c b/arch/arm/mach-imx/mach-armadillo5x0.c index 226829bf7c25..ffb40ff619b1 100644 --- a/arch/arm/mach-mx3/mach-armadillo5x0.c +++ b/arch/arm/mach-imx/mach-armadillo5x0.c | |||
@@ -34,7 +34,6 @@ | |||
34 | #include <linux/mtd/physmap.h> | 34 | #include <linux/mtd/physmap.h> |
35 | #include <linux/io.h> | 35 | #include <linux/io.h> |
36 | #include <linux/input.h> | 36 | #include <linux/input.h> |
37 | #include <linux/gpio_keys.h> | ||
38 | #include <linux/i2c.h> | 37 | #include <linux/i2c.h> |
39 | #include <linux/usb/otg.h> | 38 | #include <linux/usb/otg.h> |
40 | #include <linux/usb/ulpi.h> | 39 | #include <linux/usb/ulpi.h> |
@@ -49,13 +48,10 @@ | |||
49 | 48 | ||
50 | #include <mach/common.h> | 49 | #include <mach/common.h> |
51 | #include <mach/iomux-mx3.h> | 50 | #include <mach/iomux-mx3.h> |
52 | #include <mach/ipu.h> | ||
53 | #include <mach/mx3fb.h> | ||
54 | #include <mach/ulpi.h> | 51 | #include <mach/ulpi.h> |
55 | 52 | ||
56 | #include "devices-imx31.h" | 53 | #include "devices-imx31.h" |
57 | #include "devices.h" | 54 | #include "crmregs-imx31.h" |
58 | #include "crm_regs.h" | ||
59 | 55 | ||
60 | static int armadillo5x0_pins[] = { | 56 | static int armadillo5x0_pins[] = { |
61 | /* UART1 */ | 57 | /* UART1 */ |
@@ -280,20 +276,12 @@ static struct gpio_keys_button armadillo5x0_buttons[] = { | |||
280 | } | 276 | } |
281 | }; | 277 | }; |
282 | 278 | ||
283 | static struct gpio_keys_platform_data armadillo5x0_button_data = { | 279 | static const struct gpio_keys_platform_data |
280 | armadillo5x0_button_data __initconst = { | ||
284 | .buttons = armadillo5x0_buttons, | 281 | .buttons = armadillo5x0_buttons, |
285 | .nbuttons = ARRAY_SIZE(armadillo5x0_buttons), | 282 | .nbuttons = ARRAY_SIZE(armadillo5x0_buttons), |
286 | }; | 283 | }; |
287 | 284 | ||
288 | static struct platform_device armadillo5x0_button_device = { | ||
289 | .name = "gpio-keys", | ||
290 | .id = -1, | ||
291 | .num_resources = 0, | ||
292 | .dev = { | ||
293 | .platform_data = &armadillo5x0_button_data, | ||
294 | } | ||
295 | }; | ||
296 | |||
297 | /* | 285 | /* |
298 | * NAND Flash | 286 | * NAND Flash |
299 | */ | 287 | */ |
@@ -383,12 +371,11 @@ static const struct fb_videomode fb_modedb[] = { | |||
383 | }, | 371 | }, |
384 | }; | 372 | }; |
385 | 373 | ||
386 | static struct ipu_platform_data mx3_ipu_data = { | 374 | static const struct ipu_platform_data mx3_ipu_data __initconst = { |
387 | .irq_base = MXC_IPU_IRQ_START, | 375 | .irq_base = MXC_IPU_IRQ_START, |
388 | }; | 376 | }; |
389 | 377 | ||
390 | static struct mx3fb_platform_data mx3fb_pdata = { | 378 | static struct mx3fb_platform_data mx3fb_pdata __initdata = { |
391 | .dma_dev = &mx3_ipu.dev, | ||
392 | .name = "CRT-VGA", | 379 | .name = "CRT-VGA", |
393 | .mode = fb_modedb, | 380 | .mode = fb_modedb, |
394 | .num_modes = ARRAY_SIZE(fb_modedb), | 381 | .num_modes = ARRAY_SIZE(fb_modedb), |
@@ -496,7 +483,6 @@ static const struct imxuart_platform_data uart_pdata __initconst = { | |||
496 | 483 | ||
497 | static struct platform_device *devices[] __initdata = { | 484 | static struct platform_device *devices[] __initdata = { |
498 | &armadillo5x0_smc911x_device, | 485 | &armadillo5x0_smc911x_device, |
499 | &armadillo5x0_button_device, | ||
500 | }; | 486 | }; |
501 | 487 | ||
502 | /* | 488 | /* |
@@ -508,6 +494,7 @@ static void __init armadillo5x0_init(void) | |||
508 | ARRAY_SIZE(armadillo5x0_pins), "armadillo5x0"); | 494 | ARRAY_SIZE(armadillo5x0_pins), "armadillo5x0"); |
509 | 495 | ||
510 | platform_add_devices(devices, ARRAY_SIZE(devices)); | 496 | platform_add_devices(devices, ARRAY_SIZE(devices)); |
497 | imx_add_gpio_keys(&armadillo5x0_button_data); | ||
511 | imx31_add_imx_i2c1(NULL); | 498 | imx31_add_imx_i2c1(NULL); |
512 | 499 | ||
513 | /* Register UART */ | 500 | /* Register UART */ |
@@ -521,8 +508,8 @@ static void __init armadillo5x0_init(void) | |||
521 | imx31_add_mxc_mmc(0, &sdhc_pdata); | 508 | imx31_add_mxc_mmc(0, &sdhc_pdata); |
522 | 509 | ||
523 | /* Register FB */ | 510 | /* Register FB */ |
524 | mxc_register_device(&mx3_ipu, &mx3_ipu_data); | 511 | imx31_add_ipu_core(&mx3_ipu_data); |
525 | mxc_register_device(&mx3_fb, &mx3fb_pdata); | 512 | imx31_add_mx3_sdc_fb(&mx3fb_pdata); |
526 | 513 | ||
527 | /* Register NOR Flash */ | 514 | /* Register NOR Flash */ |
528 | mxc_register_device(&armadillo5x0_nor_flash, | 515 | mxc_register_device(&armadillo5x0_nor_flash, |
diff --git a/arch/arm/mach-mx3/mach-bug.c b/arch/arm/mach-imx/mach-bug.c index d137d7078ee9..42e4f078a19c 100644 --- a/arch/arm/mach-mx3/mach-bug.c +++ b/arch/arm/mach-imx/mach-bug.c | |||
@@ -20,7 +20,6 @@ | |||
20 | #include <linux/platform_device.h> | 20 | #include <linux/platform_device.h> |
21 | 21 | ||
22 | #include <mach/iomux-mx3.h> | 22 | #include <mach/iomux-mx3.h> |
23 | #include <mach/imx-uart.h> | ||
24 | #include <mach/hardware.h> | 23 | #include <mach/hardware.h> |
25 | #include <mach/common.h> | 24 | #include <mach/common.h> |
26 | 25 | ||
diff --git a/arch/arm/mach-imx/mach-cpuimx27.c b/arch/arm/mach-imx/mach-cpuimx27.c index 759299bb035b..46a2e41d43d2 100644 --- a/arch/arm/mach-imx/mach-cpuimx27.c +++ b/arch/arm/mach-imx/mach-cpuimx27.c | |||
@@ -38,7 +38,6 @@ | |||
38 | #include <mach/common.h> | 38 | #include <mach/common.h> |
39 | #include <mach/hardware.h> | 39 | #include <mach/hardware.h> |
40 | #include <mach/iomux-mx27.h> | 40 | #include <mach/iomux-mx27.h> |
41 | #include <mach/mxc_nand.h> | ||
42 | #include <mach/ulpi.h> | 41 | #include <mach/ulpi.h> |
43 | 42 | ||
44 | #include "devices-imx27.h" | 43 | #include "devices-imx27.h" |
diff --git a/arch/arm/mach-mx3/mach-cpuimx35.c b/arch/arm/mach-imx/mach-cpuimx35.c index ec63d998f647..3f8ef825fa6f 100644 --- a/arch/arm/mach-mx3/mach-cpuimx35.c +++ b/arch/arm/mach-imx/mach-cpuimx35.c | |||
@@ -41,10 +41,8 @@ | |||
41 | #include <mach/hardware.h> | 41 | #include <mach/hardware.h> |
42 | #include <mach/common.h> | 42 | #include <mach/common.h> |
43 | #include <mach/iomux-mx35.h> | 43 | #include <mach/iomux-mx35.h> |
44 | #include <mach/mxc_nand.h> | ||
45 | 44 | ||
46 | #include "devices-imx35.h" | 45 | #include "devices-imx35.h" |
47 | #include "devices.h" | ||
48 | 46 | ||
49 | static const struct imxuart_platform_data uart_pdata __initconst = { | 47 | static const struct imxuart_platform_data uart_pdata __initconst = { |
50 | .flags = IMXUART_HAVE_RTSCTS, | 48 | .flags = IMXUART_HAVE_RTSCTS, |
diff --git a/arch/arm/mach-imx/mach-eukrea_cpuimx25.c b/arch/arm/mach-imx/mach-eukrea_cpuimx25.c index 9da8d18eeb00..148cff2819b9 100644 --- a/arch/arm/mach-imx/mach-eukrea_cpuimx25.c +++ b/arch/arm/mach-imx/mach-eukrea_cpuimx25.c | |||
@@ -36,8 +36,6 @@ | |||
36 | #include <asm/mach/map.h> | 36 | #include <asm/mach/map.h> |
37 | #include <mach/common.h> | 37 | #include <mach/common.h> |
38 | #include <mach/mx25.h> | 38 | #include <mach/mx25.h> |
39 | #include <mach/mxc_nand.h> | ||
40 | #include <mach/imxfb.h> | ||
41 | #include <mach/iomux-mx25.h> | 39 | #include <mach/iomux-mx25.h> |
42 | 40 | ||
43 | #include "devices-imx25.h" | 41 | #include "devices-imx25.h" |
diff --git a/arch/arm/mach-imx/mach-imx27_visstrim_m10.c b/arch/arm/mach-imx/mach-imx27_visstrim_m10.c index d7e0d219726a..7ae43b1ec517 100644 --- a/arch/arm/mach-imx/mach-imx27_visstrim_m10.c +++ b/arch/arm/mach-imx/mach-imx27_visstrim_m10.c | |||
@@ -27,7 +27,6 @@ | |||
27 | #include <linux/mtd/physmap.h> | 27 | #include <linux/mtd/physmap.h> |
28 | #include <linux/i2c.h> | 28 | #include <linux/i2c.h> |
29 | #include <linux/i2c/pca953x.h> | 29 | #include <linux/i2c/pca953x.h> |
30 | #include <linux/gpio_keys.h> | ||
31 | #include <linux/input.h> | 30 | #include <linux/input.h> |
32 | #include <linux/gpio.h> | 31 | #include <linux/gpio.h> |
33 | #include <linux/delay.h> | 32 | #include <linux/delay.h> |
@@ -130,19 +129,12 @@ static struct gpio_keys_button visstrim_gpio_keys[] = { | |||
130 | } | 129 | } |
131 | }; | 130 | }; |
132 | 131 | ||
133 | static struct gpio_keys_platform_data visstrim_gpio_keys_platform_data = { | 132 | static const struct gpio_keys_platform_data |
133 | visstrim_gpio_keys_platform_data __initconst = { | ||
134 | .buttons = visstrim_gpio_keys, | 134 | .buttons = visstrim_gpio_keys, |
135 | .nbuttons = ARRAY_SIZE(visstrim_gpio_keys), | 135 | .nbuttons = ARRAY_SIZE(visstrim_gpio_keys), |
136 | }; | 136 | }; |
137 | 137 | ||
138 | static struct platform_device visstrim_gpio_keys_device = { | ||
139 | .name = "gpio-keys", | ||
140 | .id = -1, | ||
141 | .dev = { | ||
142 | .platform_data = &visstrim_gpio_keys_platform_data, | ||
143 | }, | ||
144 | }; | ||
145 | |||
146 | /* Visstrim_SM10 has a microSD slot connected to sdhc1 */ | 138 | /* Visstrim_SM10 has a microSD slot connected to sdhc1 */ |
147 | static int visstrim_m10_sdhc1_init(struct device *dev, | 139 | static int visstrim_m10_sdhc1_init(struct device *dev, |
148 | irq_handler_t detect_irq, void *data) | 140 | irq_handler_t detect_irq, void *data) |
@@ -186,7 +178,6 @@ static struct platform_device visstrim_m10_nor_mtd_device = { | |||
186 | }; | 178 | }; |
187 | 179 | ||
188 | static struct platform_device *platform_devices[] __initdata = { | 180 | static struct platform_device *platform_devices[] __initdata = { |
189 | &visstrim_gpio_keys_device, | ||
190 | &visstrim_m10_nor_mtd_device, | 181 | &visstrim_m10_nor_mtd_device, |
191 | }; | 182 | }; |
192 | 183 | ||
@@ -255,6 +246,7 @@ static void __init visstrim_m10_board_init(void) | |||
255 | imx27_add_mxc_mmc(0, &visstrim_m10_sdhc_pdata); | 246 | imx27_add_mxc_mmc(0, &visstrim_m10_sdhc_pdata); |
256 | imx27_add_mxc_ehci_otg(&visstrim_m10_usbotg_pdata); | 247 | imx27_add_mxc_ehci_otg(&visstrim_m10_usbotg_pdata); |
257 | imx27_add_fec(NULL); | 248 | imx27_add_fec(NULL); |
249 | imx_add_gpio_keys(&visstrim_gpio_keys_platform_data); | ||
258 | platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices)); | 250 | platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices)); |
259 | } | 251 | } |
260 | 252 | ||
diff --git a/arch/arm/mach-mx3/mach-kzm_arm11_01.c b/arch/arm/mach-imx/mach-kzm_arm11_01.c index d35621d62b4d..1ecae20cf4e3 100644 --- a/arch/arm/mach-mx3/mach-kzm_arm11_01.c +++ b/arch/arm/mach-imx/mach-kzm_arm11_01.c | |||
@@ -39,7 +39,6 @@ | |||
39 | #include <mach/iomux-mx3.h> | 39 | #include <mach/iomux-mx3.h> |
40 | 40 | ||
41 | #include "devices-imx31.h" | 41 | #include "devices-imx31.h" |
42 | #include "devices.h" | ||
43 | 42 | ||
44 | #define KZM_ARM11_IO_ADDRESS(x) (IOMEM( \ | 43 | #define KZM_ARM11_IO_ADDRESS(x) (IOMEM( \ |
45 | IMX_IO_P2V_MODULE(x, MX31_CS4) ?: \ | 44 | IMX_IO_P2V_MODULE(x, MX31_CS4) ?: \ |
diff --git a/arch/arm/mach-imx/mach-mx1ads.c b/arch/arm/mach-imx/mach-mx1ads.c index 47cf56ac6d5b..38ec5cbbda9b 100644 --- a/arch/arm/mach-imx/mach-mx1ads.c +++ b/arch/arm/mach-imx/mach-mx1ads.c | |||
@@ -25,7 +25,6 @@ | |||
25 | 25 | ||
26 | #include <mach/common.h> | 26 | #include <mach/common.h> |
27 | #include <mach/hardware.h> | 27 | #include <mach/hardware.h> |
28 | #include <mach/i2c.h> | ||
29 | #include <mach/iomux-mx1.h> | 28 | #include <mach/iomux-mx1.h> |
30 | #include <mach/irqs.h> | 29 | #include <mach/irqs.h> |
31 | 30 | ||
diff --git a/arch/arm/mach-imx/mach-mx21ads.c b/arch/arm/mach-imx/mach-mx21ads.c index fa52a1086eae..74ac88978ddd 100644 --- a/arch/arm/mach-imx/mach-mx21ads.c +++ b/arch/arm/mach-imx/mach-mx21ads.c | |||
@@ -25,7 +25,6 @@ | |||
25 | #include <asm/mach/time.h> | 25 | #include <asm/mach/time.h> |
26 | #include <asm/mach/map.h> | 26 | #include <asm/mach/map.h> |
27 | #include <mach/iomux-mx21.h> | 27 | #include <mach/iomux-mx21.h> |
28 | #include <mach/mxc_nand.h> | ||
29 | 28 | ||
30 | #include "devices-imx21.h" | 29 | #include "devices-imx21.h" |
31 | 30 | ||
diff --git a/arch/arm/mach-imx/mach-mx25_3ds.c b/arch/arm/mach-imx/mach-mx25_3ds.c index 06da438282aa..58ea3fdf0911 100644 --- a/arch/arm/mach-imx/mach-mx25_3ds.c +++ b/arch/arm/mach-imx/mach-mx25_3ds.c | |||
@@ -29,7 +29,6 @@ | |||
29 | #include <linux/irq.h> | 29 | #include <linux/irq.h> |
30 | #include <linux/gpio.h> | 30 | #include <linux/gpio.h> |
31 | #include <linux/platform_device.h> | 31 | #include <linux/platform_device.h> |
32 | #include <linux/input/matrix_keypad.h> | ||
33 | #include <linux/usb/otg.h> | 32 | #include <linux/usb/otg.h> |
34 | 33 | ||
35 | #include <mach/hardware.h> | 34 | #include <mach/hardware.h> |
@@ -103,6 +102,8 @@ static iomux_v3_cfg_t mx25pdk_pads[] = { | |||
103 | MX25_PAD_SD1_DATA1__SD1_DATA1, | 102 | MX25_PAD_SD1_DATA1__SD1_DATA1, |
104 | MX25_PAD_SD1_DATA2__SD1_DATA2, | 103 | MX25_PAD_SD1_DATA2__SD1_DATA2, |
105 | MX25_PAD_SD1_DATA3__SD1_DATA3, | 104 | MX25_PAD_SD1_DATA3__SD1_DATA3, |
105 | MX25_PAD_A14__GPIO_2_0, /* WriteProtect */ | ||
106 | MX25_PAD_A15__GPIO_2_1, /* CardDetect */ | ||
106 | 107 | ||
107 | /* I2C1 */ | 108 | /* I2C1 */ |
108 | MX25_PAD_I2C1_CLK__I2C1_CLK, | 109 | MX25_PAD_I2C1_CLK__I2C1_CLK, |
@@ -208,6 +209,14 @@ static const struct imxi2c_platform_data mx25_3ds_i2c0_data __initconst = { | |||
208 | .bitrate = 100000, | 209 | .bitrate = 100000, |
209 | }; | 210 | }; |
210 | 211 | ||
212 | #define SD1_GPIO_WP IMX_GPIO_NR(2, 0) | ||
213 | #define SD1_GPIO_CD IMX_GPIO_NR(2, 1) | ||
214 | |||
215 | static const struct esdhc_platform_data mx25pdk_esdhc_pdata __initconst = { | ||
216 | .wp_gpio = SD1_GPIO_WP, | ||
217 | .cd_gpio = SD1_GPIO_CD, | ||
218 | }; | ||
219 | |||
211 | static void __init mx25pdk_init(void) | 220 | static void __init mx25pdk_init(void) |
212 | { | 221 | { |
213 | mxc_iomux_v3_setup_multiple_pads(mx25pdk_pads, | 222 | mxc_iomux_v3_setup_multiple_pads(mx25pdk_pads, |
@@ -225,7 +234,7 @@ static void __init mx25pdk_init(void) | |||
225 | imx25_add_fec(&mx25_fec_pdata); | 234 | imx25_add_fec(&mx25_fec_pdata); |
226 | imx25_add_imx_keypad(&mx25pdk_keymap_data); | 235 | imx25_add_imx_keypad(&mx25pdk_keymap_data); |
227 | 236 | ||
228 | imx25_add_sdhci_esdhc_imx(0, NULL); | 237 | imx25_add_sdhci_esdhc_imx(0, &mx25pdk_esdhc_pdata); |
229 | imx25_add_imx_i2c0(&mx25_3ds_i2c0_data); | 238 | imx25_add_imx_i2c0(&mx25_3ds_i2c0_data); |
230 | } | 239 | } |
231 | 240 | ||
diff --git a/arch/arm/mach-imx/mach-mx27ads.c b/arch/arm/mach-imx/mach-mx27ads.c index 367d1e4384c7..1db79506f5e4 100644 --- a/arch/arm/mach-imx/mach-mx27ads.c +++ b/arch/arm/mach-imx/mach-mx27ads.c | |||
@@ -29,7 +29,6 @@ | |||
29 | #include <asm/mach/map.h> | 29 | #include <asm/mach/map.h> |
30 | #include <mach/gpio.h> | 30 | #include <mach/gpio.h> |
31 | #include <mach/iomux-mx27.h> | 31 | #include <mach/iomux-mx27.h> |
32 | #include <mach/mxc_nand.h> | ||
33 | 32 | ||
34 | #include "devices-imx27.h" | 33 | #include "devices-imx27.h" |
35 | 34 | ||
diff --git a/arch/arm/mach-mx3/mach-mx31_3ds.c b/arch/arm/mach-imx/mach-mx31_3ds.c index 034be624d35c..9b982449cb52 100644 --- a/arch/arm/mach-mx3/mach-mx31_3ds.c +++ b/arch/arm/mach-imx/mach-mx31_3ds.c | |||
@@ -39,13 +39,8 @@ | |||
39 | #include <mach/iomux-mx3.h> | 39 | #include <mach/iomux-mx3.h> |
40 | #include <mach/3ds_debugboard.h> | 40 | #include <mach/3ds_debugboard.h> |
41 | #include <mach/ulpi.h> | 41 | #include <mach/ulpi.h> |
42 | #include <mach/mmc.h> | ||
43 | #include <mach/ipu.h> | ||
44 | #include <mach/mx3fb.h> | ||
45 | #include <mach/mx3_camera.h> | ||
46 | 42 | ||
47 | #include "devices-imx31.h" | 43 | #include "devices-imx31.h" |
48 | #include "devices.h" | ||
49 | 44 | ||
50 | /* CPLD IRQ line for external uart, external ethernet etc */ | 45 | /* CPLD IRQ line for external uart, external ethernet etc */ |
51 | #define EXPIO_PARENT_INT IOMUX_TO_IRQ(MX31_PIN_GPIO1_1) | 46 | #define EXPIO_PARENT_INT IOMUX_TO_IRQ(MX31_PIN_GPIO1_1) |
@@ -178,22 +173,37 @@ static struct gpio mx31_3ds_camera_gpios[] = { | |||
178 | { MX31_3DS_GPIO_CAMERA_RST, GPIOF_OUT_INIT_HIGH, "camera-reset" }, | 173 | { MX31_3DS_GPIO_CAMERA_RST, GPIOF_OUT_INIT_HIGH, "camera-reset" }, |
179 | }; | 174 | }; |
180 | 175 | ||
181 | static int __init mx31_3ds_camera_alloc_dma(void) | 176 | static const struct mx3_camera_pdata mx31_3ds_camera_pdata __initconst = { |
177 | .flags = MX3_CAMERA_DATAWIDTH_10, | ||
178 | .mclk_10khz = 2600, | ||
179 | }; | ||
180 | |||
181 | static int __init mx31_3ds_init_camera(void) | ||
182 | { | 182 | { |
183 | int dma; | 183 | int dma, ret = -ENOMEM; |
184 | struct platform_device *pdev = | ||
185 | imx31_alloc_mx3_camera(&mx31_3ds_camera_pdata); | ||
186 | |||
187 | if (IS_ERR(pdev)) | ||
188 | return PTR_ERR(pdev); | ||
184 | 189 | ||
185 | if (!mx3_camera_base) | 190 | if (!mx3_camera_base) |
186 | return -ENOMEM; | 191 | goto err; |
187 | 192 | ||
188 | dma = dma_declare_coherent_memory(&mx3_camera.dev, | 193 | dma = dma_declare_coherent_memory(&pdev->dev, |
189 | mx3_camera_base, mx3_camera_base, | 194 | mx3_camera_base, mx3_camera_base, |
190 | MX31_3DS_CAMERA_BUF_SIZE, | 195 | MX31_3DS_CAMERA_BUF_SIZE, |
191 | DMA_MEMORY_MAP | DMA_MEMORY_EXCLUSIVE); | 196 | DMA_MEMORY_MAP | DMA_MEMORY_EXCLUSIVE); |
192 | 197 | ||
193 | if (!(dma & DMA_MEMORY_MAP)) | 198 | if (!(dma & DMA_MEMORY_MAP)) |
194 | return -ENOMEM; | 199 | goto err; |
195 | 200 | ||
196 | return 0; | 201 | ret = platform_device_add(pdev); |
202 | if (ret) | ||
203 | err: | ||
204 | platform_device_put(pdev); | ||
205 | |||
206 | return ret; | ||
197 | } | 207 | } |
198 | 208 | ||
199 | static int mx31_3ds_camera_power(struct device *dev, int on) | 209 | static int mx31_3ds_camera_power(struct device *dev, int on) |
@@ -241,12 +251,6 @@ static struct platform_device mx31_3ds_ov2640 = { | |||
241 | }, | 251 | }, |
242 | }; | 252 | }; |
243 | 253 | ||
244 | struct mx3_camera_pdata mx31_3ds_camera_pdata = { | ||
245 | .dma_dev = &mx3_ipu.dev, | ||
246 | .flags = MX3_CAMERA_DATAWIDTH_10, | ||
247 | .mclk_10khz = 2600, | ||
248 | }; | ||
249 | |||
250 | /* | 254 | /* |
251 | * FB support | 255 | * FB support |
252 | */ | 256 | */ |
@@ -273,8 +277,7 @@ static struct ipu_platform_data mx3_ipu_data = { | |||
273 | .irq_base = MXC_IPU_IRQ_START, | 277 | .irq_base = MXC_IPU_IRQ_START, |
274 | }; | 278 | }; |
275 | 279 | ||
276 | static struct mx3fb_platform_data mx3fb_pdata = { | 280 | static struct mx3fb_platform_data mx3fb_pdata __initdata = { |
277 | .dma_dev = &mx3_ipu.dev, | ||
278 | .name = "Epson-VGA", | 281 | .name = "Epson-VGA", |
279 | .mode = fb_modedb, | 282 | .mode = fb_modedb, |
280 | .num_modes = ARRAY_SIZE(fb_modedb), | 283 | .num_modes = ARRAY_SIZE(fb_modedb), |
@@ -723,8 +726,8 @@ static void __init mx31_3ds_init(void) | |||
723 | imx31_add_mxc_mmc(0, &sdhc1_pdata); | 726 | imx31_add_mxc_mmc(0, &sdhc1_pdata); |
724 | 727 | ||
725 | imx31_add_spi_imx0(&spi0_pdata); | 728 | imx31_add_spi_imx0(&spi0_pdata); |
726 | mxc_register_device(&mx3_ipu, &mx3_ipu_data); | 729 | imx31_add_ipu_core(&mx3_ipu_data); |
727 | mxc_register_device(&mx3_fb, &mx3fb_pdata); | 730 | imx31_add_mx3_sdc_fb(&mx3fb_pdata); |
728 | 731 | ||
729 | /* CSI */ | 732 | /* CSI */ |
730 | /* Camera power: default - off */ | 733 | /* Camera power: default - off */ |
@@ -735,10 +738,7 @@ static void __init mx31_3ds_init(void) | |||
735 | iclink_ov2640.power = NULL; | 738 | iclink_ov2640.power = NULL; |
736 | } | 739 | } |
737 | 740 | ||
738 | if (!mx31_3ds_camera_alloc_dma()) | 741 | mx31_3ds_init_camera(); |
739 | mxc_register_device(&mx3_camera, &mx31_3ds_camera_pdata); | ||
740 | else | ||
741 | pr_err("Failed to allocate dma memory for camera"); | ||
742 | } | 742 | } |
743 | 743 | ||
744 | static void __init mx31_3ds_timer_init(void) | 744 | static void __init mx31_3ds_timer_init(void) |
diff --git a/arch/arm/mach-mx3/mach-mx31ads.c b/arch/arm/mach-imx/mach-mx31ads.c index 3d095d69bc68..f4dee0254634 100644 --- a/arch/arm/mach-mx3/mach-mx31ads.c +++ b/arch/arm/mach-imx/mach-mx31ads.c | |||
@@ -38,7 +38,6 @@ | |||
38 | #endif | 38 | #endif |
39 | 39 | ||
40 | #include "devices-imx31.h" | 40 | #include "devices-imx31.h" |
41 | #include "devices.h" | ||
42 | 41 | ||
43 | /* PBC Board interrupt status register */ | 42 | /* PBC Board interrupt status register */ |
44 | #define PBC_INTSTATUS 0x000016 | 43 | #define PBC_INTSTATUS 0x000016 |
diff --git a/arch/arm/mach-mx3/mach-mx31lilly.c b/arch/arm/mach-imx/mach-mx31lilly.c index ed95745163b8..410e676ae087 100644 --- a/arch/arm/mach-mx3/mach-mx31lilly.c +++ b/arch/arm/mach-imx/mach-mx31lilly.c | |||
@@ -46,7 +46,6 @@ | |||
46 | #include <mach/ulpi.h> | 46 | #include <mach/ulpi.h> |
47 | 47 | ||
48 | #include "devices-imx31.h" | 48 | #include "devices-imx31.h" |
49 | #include "devices.h" | ||
50 | 49 | ||
51 | /* | 50 | /* |
52 | * This file contains module-specific initialization routines for LILLY-1131. | 51 | * This file contains module-specific initialization routines for LILLY-1131. |
diff --git a/arch/arm/mach-mx3/mach-mx31lite.c b/arch/arm/mach-imx/mach-mx31lite.c index 24a21a384bf1..ac9b4cad320e 100644 --- a/arch/arm/mach-mx3/mach-mx31lite.c +++ b/arch/arm/mach-imx/mach-mx31lite.c | |||
@@ -44,7 +44,6 @@ | |||
44 | #include <mach/ulpi.h> | 44 | #include <mach/ulpi.h> |
45 | 45 | ||
46 | #include "devices-imx31.h" | 46 | #include "devices-imx31.h" |
47 | #include "devices.h" | ||
48 | 47 | ||
49 | /* | 48 | /* |
50 | * This file contains the module-specific initialization routines. | 49 | * This file contains the module-specific initialization routines. |
diff --git a/arch/arm/mach-mx3/mach-mx31moboard.c b/arch/arm/mach-imx/mach-mx31moboard.c index 3a021b01161d..eaa51e49ca95 100644 --- a/arch/arm/mach-mx3/mach-mx31moboard.c +++ b/arch/arm/mach-imx/mach-mx31moboard.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/mfd/mc13783.h> | 27 | #include <linux/mfd/mc13783.h> |
28 | #include <linux/spi/spi.h> | 28 | #include <linux/spi/spi.h> |
29 | #include <linux/types.h> | 29 | #include <linux/types.h> |
30 | #include <linux/memblock.h> | ||
30 | 31 | ||
31 | #include <linux/usb/otg.h> | 32 | #include <linux/usb/otg.h> |
32 | #include <linux/usb/ulpi.h> | 33 | #include <linux/usb/ulpi.h> |
@@ -39,13 +40,9 @@ | |||
39 | #include <mach/common.h> | 40 | #include <mach/common.h> |
40 | #include <mach/hardware.h> | 41 | #include <mach/hardware.h> |
41 | #include <mach/iomux-mx3.h> | 42 | #include <mach/iomux-mx3.h> |
42 | #include <mach/ipu.h> | ||
43 | #include <mach/mx3_camera.h> | ||
44 | #include <mach/spi.h> | ||
45 | #include <mach/ulpi.h> | 43 | #include <mach/ulpi.h> |
46 | 44 | ||
47 | #include "devices-imx31.h" | 45 | #include "devices-imx31.h" |
48 | #include "devices.h" | ||
49 | 46 | ||
50 | static unsigned int moboard_pins[] = { | 47 | static unsigned int moboard_pins[] = { |
51 | /* UART0 */ | 48 | /* UART0 */ |
@@ -102,7 +99,7 @@ static unsigned int moboard_pins[] = { | |||
102 | }; | 99 | }; |
103 | 100 | ||
104 | static struct physmap_flash_data mx31moboard_flash_data = { | 101 | static struct physmap_flash_data mx31moboard_flash_data = { |
105 | .width = 2, | 102 | .width = 2, |
106 | }; | 103 | }; |
107 | 104 | ||
108 | static struct resource mx31moboard_flash_resource = { | 105 | static struct resource mx31moboard_flash_resource = { |
@@ -194,8 +191,8 @@ static struct regulator_init_data sdhc_vreg_data = { | |||
194 | 191 | ||
195 | static struct regulator_consumer_supply cam_consumers[] = { | 192 | static struct regulator_consumer_supply cam_consumers[] = { |
196 | { | 193 | { |
197 | .dev = &mx3_camera.dev, | 194 | .dev_name = "mx3_camera.0", |
198 | .supply = "cam_vcc", | 195 | .supply = "cam_vcc", |
199 | }, | 196 | }, |
200 | }; | 197 | }; |
201 | 198 | ||
@@ -430,9 +427,9 @@ static int __init moboard_usbh2_init(void) | |||
430 | 427 | ||
431 | static struct gpio_led mx31moboard_leds[] = { | 428 | static struct gpio_led mx31moboard_leds[] = { |
432 | { | 429 | { |
433 | .name = "coreboard-led-0:red:running", | 430 | .name = "coreboard-led-0:red:running", |
434 | .default_trigger = "heartbeat", | 431 | .default_trigger = "heartbeat", |
435 | .gpio = IOMUX_TO_GPIO(MX31_PIN_SVEN0), | 432 | .gpio = IOMUX_TO_GPIO(MX31_PIN_SVEN0), |
436 | }, { | 433 | }, { |
437 | .name = "coreboard-led-1:red", | 434 | .name = "coreboard-led-1:red", |
438 | .gpio = IOMUX_TO_GPIO(MX31_PIN_STX0), | 435 | .gpio = IOMUX_TO_GPIO(MX31_PIN_STX0), |
@@ -446,7 +443,7 @@ static struct gpio_led mx31moboard_leds[] = { | |||
446 | }; | 443 | }; |
447 | 444 | ||
448 | static struct gpio_led_platform_data mx31moboard_led_pdata = { | 445 | static struct gpio_led_platform_data mx31moboard_led_pdata = { |
449 | .num_leds = ARRAY_SIZE(mx31moboard_leds), | 446 | .num_leds = ARRAY_SIZE(mx31moboard_leds), |
450 | .leds = mx31moboard_leds, | 447 | .leds = mx31moboard_leds, |
451 | }; | 448 | }; |
452 | 449 | ||
@@ -458,7 +455,7 @@ static struct platform_device mx31moboard_leds_device = { | |||
458 | }, | 455 | }, |
459 | }; | 456 | }; |
460 | 457 | ||
461 | static struct ipu_platform_data mx3_ipu_data = { | 458 | static const struct ipu_platform_data mx3_ipu_data __initconst = { |
462 | .irq_base = MXC_IPU_IRQ_START, | 459 | .irq_base = MXC_IPU_IRQ_START, |
463 | }; | 460 | }; |
464 | 461 | ||
@@ -467,37 +464,39 @@ static struct platform_device *devices[] __initdata = { | |||
467 | &mx31moboard_leds_device, | 464 | &mx31moboard_leds_device, |
468 | }; | 465 | }; |
469 | 466 | ||
470 | static struct mx3_camera_pdata camera_pdata = { | 467 | static struct mx3_camera_pdata camera_pdata __initdata = { |
471 | .dma_dev = &mx3_ipu.dev, | ||
472 | .flags = MX3_CAMERA_DATAWIDTH_8 | MX3_CAMERA_DATAWIDTH_10, | 468 | .flags = MX3_CAMERA_DATAWIDTH_8 | MX3_CAMERA_DATAWIDTH_10, |
473 | .mclk_10khz = 4800, | 469 | .mclk_10khz = 4800, |
474 | }; | 470 | }; |
475 | 471 | ||
476 | #define CAMERA_BUF_SIZE (4*1024*1024) | 472 | static phys_addr_t mx3_camera_base __initdata; |
473 | #define MX3_CAMERA_BUF_SIZE SZ_4M | ||
477 | 474 | ||
478 | static int __init mx31moboard_cam_alloc_dma(const size_t buf_size) | 475 | static int __init mx31moboard_init_cam(void) |
479 | { | 476 | { |
480 | dma_addr_t dma_handle; | 477 | int dma, ret = -ENOMEM; |
481 | void *buf; | 478 | struct platform_device *pdev; |
482 | int dma; | ||
483 | |||
484 | if (buf_size < 2 * 1024 * 1024) | ||
485 | return -EINVAL; | ||
486 | 479 | ||
487 | buf = dma_alloc_coherent(NULL, buf_size, &dma_handle, GFP_KERNEL); | 480 | imx31_add_ipu_core(&mx3_ipu_data); |
488 | if (!buf) { | ||
489 | pr_err("%s: cannot allocate camera buffer-memory\n", __func__); | ||
490 | return -ENOMEM; | ||
491 | } | ||
492 | 481 | ||
493 | memset(buf, 0, buf_size); | 482 | pdev = imx31_alloc_mx3_camera(&camera_pdata); |
483 | if (IS_ERR(pdev)) | ||
484 | return PTR_ERR(pdev); | ||
494 | 485 | ||
495 | dma = dma_declare_coherent_memory(&mx3_camera.dev, | 486 | dma = dma_declare_coherent_memory(&pdev->dev, |
496 | dma_handle, dma_handle, buf_size, | 487 | mx3_camera_base, mx3_camera_base, |
488 | MX3_CAMERA_BUF_SIZE, | ||
497 | DMA_MEMORY_MAP | DMA_MEMORY_EXCLUSIVE); | 489 | DMA_MEMORY_MAP | DMA_MEMORY_EXCLUSIVE); |
490 | if (!(dma & DMA_MEMORY_MAP)) | ||
491 | goto err; | ||
492 | |||
493 | ret = platform_device_add(pdev); | ||
494 | if (ret) | ||
495 | err: | ||
496 | platform_device_put(pdev); | ||
497 | |||
498 | return ret; | ||
498 | 499 | ||
499 | /* The way we call dma_declare_coherent_memory only a malloc can fail */ | ||
500 | return dma & DMA_MEMORY_MAP ? 0 : -ENOMEM; | ||
501 | } | 500 | } |
502 | 501 | ||
503 | static int mx31moboard_baseboard; | 502 | static int mx31moboard_baseboard; |
@@ -529,9 +528,7 @@ static void __init mx31moboard_init(void) | |||
529 | 528 | ||
530 | imx31_add_mxc_mmc(0, &sdhc1_pdata); | 529 | imx31_add_mxc_mmc(0, &sdhc1_pdata); |
531 | 530 | ||
532 | mxc_register_device(&mx3_ipu, &mx3_ipu_data); | 531 | mx31moboard_init_cam(); |
533 | if (!mx31moboard_cam_alloc_dma(CAMERA_BUF_SIZE)) | ||
534 | mxc_register_device(&mx3_camera, &camera_pdata); | ||
535 | 532 | ||
536 | usb_xcvr_reset(); | 533 | usb_xcvr_reset(); |
537 | 534 | ||
@@ -565,9 +562,19 @@ struct sys_timer mx31moboard_timer = { | |||
565 | .init = mx31moboard_timer_init, | 562 | .init = mx31moboard_timer_init, |
566 | }; | 563 | }; |
567 | 564 | ||
565 | static void __init mx31moboard_reserve(void) | ||
566 | { | ||
567 | /* reserve 4 MiB for mx3-camera */ | ||
568 | mx3_camera_base = memblock_alloc(MX3_CAMERA_BUF_SIZE, | ||
569 | MX3_CAMERA_BUF_SIZE); | ||
570 | memblock_free(mx3_camera_base, MX3_CAMERA_BUF_SIZE); | ||
571 | memblock_remove(mx3_camera_base, MX3_CAMERA_BUF_SIZE); | ||
572 | } | ||
573 | |||
568 | MACHINE_START(MX31MOBOARD, "EPFL Mobots mx31moboard") | 574 | MACHINE_START(MX31MOBOARD, "EPFL Mobots mx31moboard") |
569 | /* Maintainer: Valentin Longchamp, EPFL Mobots group */ | 575 | /* Maintainer: Valentin Longchamp, EPFL Mobots group */ |
570 | .boot_params = MX3x_PHYS_OFFSET + 0x100, | 576 | .boot_params = MX3x_PHYS_OFFSET + 0x100, |
577 | .reserve = mx31moboard_reserve, | ||
571 | .map_io = mx31_map_io, | 578 | .map_io = mx31_map_io, |
572 | .init_early = imx31_init_early, | 579 | .init_early = imx31_init_early, |
573 | .init_irq = mx31_init_irq, | 580 | .init_irq = mx31_init_irq, |
diff --git a/arch/arm/mach-mx3/mach-mx35_3ds.c b/arch/arm/mach-imx/mach-mx35_3ds.c index ff5fe231b8d6..882880ac1bbc 100644 --- a/arch/arm/mach-mx3/mach-mx35_3ds.c +++ b/arch/arm/mach-imx/mach-mx35_3ds.c | |||
@@ -42,7 +42,6 @@ | |||
42 | #include <mach/3ds_debugboard.h> | 42 | #include <mach/3ds_debugboard.h> |
43 | 43 | ||
44 | #include "devices-imx35.h" | 44 | #include "devices-imx35.h" |
45 | #include "devices.h" | ||
46 | 45 | ||
47 | #define EXPIO_PARENT_INT (MXC_INTERNAL_IRQS + GPIO_PORTA + 1) | 46 | #define EXPIO_PARENT_INT (MXC_INTERNAL_IRQS + GPIO_PORTA + 1) |
48 | 47 | ||
diff --git a/arch/arm/mach-imx/mach-mxt_td60.c b/arch/arm/mach-imx/mach-mxt_td60.c index 69787c30c320..2774541511e7 100644 --- a/arch/arm/mach-imx/mach-mxt_td60.c +++ b/arch/arm/mach-imx/mach-mxt_td60.c | |||
@@ -29,7 +29,6 @@ | |||
29 | #include <asm/mach/map.h> | 29 | #include <asm/mach/map.h> |
30 | #include <linux/gpio.h> | 30 | #include <linux/gpio.h> |
31 | #include <mach/iomux-mx27.h> | 31 | #include <mach/iomux-mx27.h> |
32 | #include <mach/mxc_nand.h> | ||
33 | #include <linux/i2c/pca953x.h> | 32 | #include <linux/i2c/pca953x.h> |
34 | 33 | ||
35 | #include "devices-imx27.h" | 34 | #include "devices-imx27.h" |
diff --git a/arch/arm/mach-imx/mach-pca100.c b/arch/arm/mach-imx/mach-pca100.c index 63e182556778..bbddc5a11c43 100644 --- a/arch/arm/mach-imx/mach-pca100.c +++ b/arch/arm/mach-imx/mach-pca100.c | |||
@@ -37,7 +37,6 @@ | |||
37 | #include <mach/iomux-mx27.h> | 37 | #include <mach/iomux-mx27.h> |
38 | #include <asm/mach/time.h> | 38 | #include <asm/mach/time.h> |
39 | #include <mach/audmux.h> | 39 | #include <mach/audmux.h> |
40 | #include <mach/mxc_nand.h> | ||
41 | #include <mach/irqs.h> | 40 | #include <mach/irqs.h> |
42 | #include <mach/ulpi.h> | 41 | #include <mach/ulpi.h> |
43 | 42 | ||
diff --git a/arch/arm/mach-mx3/mach-pcm037.c b/arch/arm/mach-imx/mach-pcm037.c index f07d3bded674..89c213b81295 100644 --- a/arch/arm/mach-mx3/mach-pcm037.c +++ b/arch/arm/mach-imx/mach-pcm037.c | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <linux/usb/otg.h> | 31 | #include <linux/usb/otg.h> |
32 | #include <linux/usb/ulpi.h> | 32 | #include <linux/usb/ulpi.h> |
33 | #include <linux/gfp.h> | 33 | #include <linux/gfp.h> |
34 | #include <linux/memblock.h> | ||
34 | 35 | ||
35 | #include <media/soc_camera.h> | 36 | #include <media/soc_camera.h> |
36 | 37 | ||
@@ -41,13 +42,9 @@ | |||
41 | #include <mach/common.h> | 42 | #include <mach/common.h> |
42 | #include <mach/hardware.h> | 43 | #include <mach/hardware.h> |
43 | #include <mach/iomux-mx3.h> | 44 | #include <mach/iomux-mx3.h> |
44 | #include <mach/ipu.h> | ||
45 | #include <mach/mx3_camera.h> | ||
46 | #include <mach/mx3fb.h> | ||
47 | #include <mach/ulpi.h> | 45 | #include <mach/ulpi.h> |
48 | 46 | ||
49 | #include "devices-imx31.h" | 47 | #include "devices-imx31.h" |
50 | #include "devices.h" | ||
51 | #include "pcm037.h" | 48 | #include "pcm037.h" |
52 | 49 | ||
53 | static enum pcm037_board_variant pcm037_instance = PCM037_PCM970; | 50 | static enum pcm037_board_variant pcm037_instance = PCM037_PCM970; |
@@ -404,35 +401,35 @@ static const struct imxmmc_platform_data sdhc_pdata __initconst = { | |||
404 | .exit = pcm970_sdhc1_exit, | 401 | .exit = pcm970_sdhc1_exit, |
405 | }; | 402 | }; |
406 | 403 | ||
407 | struct mx3_camera_pdata camera_pdata = { | 404 | struct mx3_camera_pdata camera_pdata __initdata = { |
408 | .dma_dev = &mx3_ipu.dev, | ||
409 | .flags = MX3_CAMERA_DATAWIDTH_8 | MX3_CAMERA_DATAWIDTH_10, | 405 | .flags = MX3_CAMERA_DATAWIDTH_8 | MX3_CAMERA_DATAWIDTH_10, |
410 | .mclk_10khz = 2000, | 406 | .mclk_10khz = 2000, |
411 | }; | 407 | }; |
412 | 408 | ||
413 | static int __init pcm037_camera_alloc_dma(const size_t buf_size) | 409 | static phys_addr_t mx3_camera_base __initdata; |
414 | { | 410 | #define MX3_CAMERA_BUF_SIZE SZ_4M |
415 | dma_addr_t dma_handle; | ||
416 | void *buf; | ||
417 | int dma; | ||
418 | |||
419 | if (buf_size < 2 * 1024 * 1024) | ||
420 | return -EINVAL; | ||
421 | 411 | ||
422 | buf = dma_alloc_coherent(NULL, buf_size, &dma_handle, GFP_KERNEL); | 412 | static int __init pcm037_init_camera(void) |
423 | if (!buf) { | 413 | { |
424 | pr_err("%s: cannot allocate camera buffer-memory\n", __func__); | 414 | int dma, ret = -ENOMEM; |
425 | return -ENOMEM; | 415 | struct platform_device *pdev = imx31_alloc_mx3_camera(&camera_pdata); |
426 | } | ||
427 | 416 | ||
428 | memset(buf, 0, buf_size); | 417 | if (IS_ERR(pdev)) |
418 | return PTR_ERR(pdev); | ||
429 | 419 | ||
430 | dma = dma_declare_coherent_memory(&mx3_camera.dev, | 420 | dma = dma_declare_coherent_memory(&pdev->dev, |
431 | dma_handle, dma_handle, buf_size, | 421 | mx3_camera_base, mx3_camera_base, |
422 | MX3_CAMERA_BUF_SIZE, | ||
432 | DMA_MEMORY_MAP | DMA_MEMORY_EXCLUSIVE); | 423 | DMA_MEMORY_MAP | DMA_MEMORY_EXCLUSIVE); |
424 | if (!(dma & DMA_MEMORY_MAP)) | ||
425 | goto err; | ||
426 | |||
427 | ret = platform_device_add(pdev); | ||
428 | if (ret) | ||
429 | err: | ||
430 | platform_device_put(pdev); | ||
433 | 431 | ||
434 | /* The way we call dma_declare_coherent_memory only a malloc can fail */ | 432 | return ret; |
435 | return dma & DMA_MEMORY_MAP ? 0 : -ENOMEM; | ||
436 | } | 433 | } |
437 | 434 | ||
438 | static struct platform_device *devices[] __initdata = { | 435 | static struct platform_device *devices[] __initdata = { |
@@ -442,7 +439,7 @@ static struct platform_device *devices[] __initdata = { | |||
442 | &pcm037_mt9v022, | 439 | &pcm037_mt9v022, |
443 | }; | 440 | }; |
444 | 441 | ||
445 | static struct ipu_platform_data mx3_ipu_data = { | 442 | static const struct ipu_platform_data mx3_ipu_data __initconst = { |
446 | .irq_base = MXC_IPU_IRQ_START, | 443 | .irq_base = MXC_IPU_IRQ_START, |
447 | }; | 444 | }; |
448 | 445 | ||
@@ -500,7 +497,6 @@ static const struct fb_videomode fb_modedb[] = { | |||
500 | }; | 497 | }; |
501 | 498 | ||
502 | static struct mx3fb_platform_data mx3fb_pdata = { | 499 | static struct mx3fb_platform_data mx3fb_pdata = { |
503 | .dma_dev = &mx3_ipu.dev, | ||
504 | .name = "Sharp-LQ035Q7DH06-QVGA", | 500 | .name = "Sharp-LQ035Q7DH06-QVGA", |
505 | .mode = fb_modedb, | 501 | .mode = fb_modedb, |
506 | .num_modes = ARRAY_SIZE(fb_modedb), | 502 | .num_modes = ARRAY_SIZE(fb_modedb), |
@@ -638,8 +634,8 @@ static void __init pcm037_init(void) | |||
638 | 634 | ||
639 | imx31_add_mxc_nand(&pcm037_nand_board_info); | 635 | imx31_add_mxc_nand(&pcm037_nand_board_info); |
640 | imx31_add_mxc_mmc(0, &sdhc_pdata); | 636 | imx31_add_mxc_mmc(0, &sdhc_pdata); |
641 | mxc_register_device(&mx3_ipu, &mx3_ipu_data); | 637 | imx31_add_ipu_core(&mx3_ipu_data); |
642 | mxc_register_device(&mx3_fb, &mx3fb_pdata); | 638 | imx31_add_mx3_sdc_fb(&mx3fb_pdata); |
643 | 639 | ||
644 | /* CSI */ | 640 | /* CSI */ |
645 | /* Camera power: default - off */ | 641 | /* Camera power: default - off */ |
@@ -649,8 +645,7 @@ static void __init pcm037_init(void) | |||
649 | else | 645 | else |
650 | iclink_mt9t031.power = NULL; | 646 | iclink_mt9t031.power = NULL; |
651 | 647 | ||
652 | if (!pcm037_camera_alloc_dma(4 * 1024 * 1024)) | 648 | pcm037_init_camera(); |
653 | mxc_register_device(&mx3_camera, &camera_pdata); | ||
654 | 649 | ||
655 | platform_device_register(&pcm970_sja1000); | 650 | platform_device_register(&pcm970_sja1000); |
656 | 651 | ||
@@ -680,9 +675,19 @@ struct sys_timer pcm037_timer = { | |||
680 | .init = pcm037_timer_init, | 675 | .init = pcm037_timer_init, |
681 | }; | 676 | }; |
682 | 677 | ||
678 | static void __init pcm037_reserve(void) | ||
679 | { | ||
680 | /* reserve 4 MiB for mx3-camera */ | ||
681 | mx3_camera_base = memblock_alloc(MX3_CAMERA_BUF_SIZE, | ||
682 | MX3_CAMERA_BUF_SIZE); | ||
683 | memblock_free(mx3_camera_base, MX3_CAMERA_BUF_SIZE); | ||
684 | memblock_remove(mx3_camera_base, MX3_CAMERA_BUF_SIZE); | ||
685 | } | ||
686 | |||
683 | MACHINE_START(PCM037, "Phytec Phycore pcm037") | 687 | MACHINE_START(PCM037, "Phytec Phycore pcm037") |
684 | /* Maintainer: Pengutronix */ | 688 | /* Maintainer: Pengutronix */ |
685 | .boot_params = MX3x_PHYS_OFFSET + 0x100, | 689 | .boot_params = MX3x_PHYS_OFFSET + 0x100, |
690 | .reserve = pcm037_reserve, | ||
686 | .map_io = mx31_map_io, | 691 | .map_io = mx31_map_io, |
687 | .init_early = imx31_init_early, | 692 | .init_early = imx31_init_early, |
688 | .init_irq = mx31_init_irq, | 693 | .init_irq = mx31_init_irq, |
diff --git a/arch/arm/mach-mx3/mach-pcm037_eet.c b/arch/arm/mach-imx/mach-pcm037_eet.c index df6fb07d037e..1b7606bef8f4 100644 --- a/arch/arm/mach-mx3/mach-pcm037_eet.c +++ b/arch/arm/mach-imx/mach-pcm037_eet.c | |||
@@ -7,19 +7,16 @@ | |||
7 | * published by the Free Software Foundation. | 7 | * published by the Free Software Foundation. |
8 | */ | 8 | */ |
9 | #include <linux/gpio.h> | 9 | #include <linux/gpio.h> |
10 | #include <linux/gpio_keys.h> | ||
11 | #include <linux/input.h> | 10 | #include <linux/input.h> |
12 | #include <linux/platform_device.h> | 11 | #include <linux/platform_device.h> |
13 | #include <linux/spi/spi.h> | 12 | #include <linux/spi/spi.h> |
14 | 13 | ||
15 | #include <mach/common.h> | 14 | #include <mach/common.h> |
16 | #include <mach/iomux-mx3.h> | 15 | #include <mach/iomux-mx3.h> |
17 | #include <mach/spi.h> | ||
18 | 16 | ||
19 | #include <asm/mach-types.h> | 17 | #include <asm/mach-types.h> |
20 | 18 | ||
21 | #include "pcm037.h" | 19 | #include "pcm037.h" |
22 | #include "devices.h" | ||
23 | #include "devices-imx31.h" | 20 | #include "devices-imx31.h" |
24 | 21 | ||
25 | static unsigned int pcm037_eet_pins[] = { | 22 | static unsigned int pcm037_eet_pins[] = { |
@@ -156,20 +153,13 @@ static struct gpio_keys_button pcm037_gpio_keys[] = { | |||
156 | }, | 153 | }, |
157 | }; | 154 | }; |
158 | 155 | ||
159 | static struct gpio_keys_platform_data pcm037_gpio_keys_platform_data = { | 156 | static const struct gpio_keys_platform_data |
157 | pcm037_gpio_keys_platform_data __initconst = { | ||
160 | .buttons = pcm037_gpio_keys, | 158 | .buttons = pcm037_gpio_keys, |
161 | .nbuttons = ARRAY_SIZE(pcm037_gpio_keys), | 159 | .nbuttons = ARRAY_SIZE(pcm037_gpio_keys), |
162 | .rep = 0, /* No auto-repeat */ | 160 | .rep = 0, /* No auto-repeat */ |
163 | }; | 161 | }; |
164 | 162 | ||
165 | static struct platform_device pcm037_gpio_keys_device = { | ||
166 | .name = "gpio-keys", | ||
167 | .id = -1, | ||
168 | .dev = { | ||
169 | .platform_data = &pcm037_gpio_keys_platform_data, | ||
170 | }, | ||
171 | }; | ||
172 | |||
173 | static int __init eet_init_devices(void) | 163 | static int __init eet_init_devices(void) |
174 | { | 164 | { |
175 | if (!machine_is_pcm037() || pcm037_variant() != PCM037_EET) | 165 | if (!machine_is_pcm037() || pcm037_variant() != PCM037_EET) |
@@ -182,9 +172,8 @@ static int __init eet_init_devices(void) | |||
182 | spi_register_board_info(pcm037_spi_dev, ARRAY_SIZE(pcm037_spi_dev)); | 172 | spi_register_board_info(pcm037_spi_dev, ARRAY_SIZE(pcm037_spi_dev)); |
183 | imx31_add_spi_imx0(&pcm037_spi1_pdata); | 173 | imx31_add_spi_imx0(&pcm037_spi1_pdata); |
184 | 174 | ||
185 | platform_device_register(&pcm037_gpio_keys_device); | 175 | imx_add_gpio_keys(&pcm037_gpio_keys_platform_data); |
186 | 176 | ||
187 | return 0; | 177 | return 0; |
188 | } | 178 | } |
189 | |||
190 | late_initcall(eet_init_devices); | 179 | late_initcall(eet_init_devices); |
diff --git a/arch/arm/mach-imx/mach-pcm038.c b/arch/arm/mach-imx/mach-pcm038.c index 4cbce6d0fef1..853bb871c7ed 100644 --- a/arch/arm/mach-imx/mach-pcm038.c +++ b/arch/arm/mach-imx/mach-pcm038.c | |||
@@ -36,7 +36,6 @@ | |||
36 | #include <mach/common.h> | 36 | #include <mach/common.h> |
37 | #include <mach/hardware.h> | 37 | #include <mach/hardware.h> |
38 | #include <mach/iomux-mx27.h> | 38 | #include <mach/iomux-mx27.h> |
39 | #include <mach/mxc_nand.h> | ||
40 | #include <mach/ulpi.h> | 39 | #include <mach/ulpi.h> |
41 | 40 | ||
42 | #include "devices-imx27.h" | 41 | #include "devices-imx27.h" |
diff --git a/arch/arm/mach-mx3/mach-pcm043.c b/arch/arm/mach-imx/mach-pcm043.c index 036ba1a4704b..026441628dfa 100644 --- a/arch/arm/mach-mx3/mach-pcm043.c +++ b/arch/arm/mach-imx/mach-pcm043.c | |||
@@ -36,14 +36,10 @@ | |||
36 | #include <mach/hardware.h> | 36 | #include <mach/hardware.h> |
37 | #include <mach/common.h> | 37 | #include <mach/common.h> |
38 | #include <mach/iomux-mx35.h> | 38 | #include <mach/iomux-mx35.h> |
39 | #include <mach/ipu.h> | ||
40 | #include <mach/mx3fb.h> | ||
41 | #include <mach/ulpi.h> | 39 | #include <mach/ulpi.h> |
42 | #include <mach/audmux.h> | 40 | #include <mach/audmux.h> |
43 | #include <mach/esdhc.h> | ||
44 | 41 | ||
45 | #include "devices-imx35.h" | 42 | #include "devices-imx35.h" |
46 | #include "devices.h" | ||
47 | 43 | ||
48 | static const struct fb_videomode fb_modedb[] = { | 44 | static const struct fb_videomode fb_modedb[] = { |
49 | { | 45 | { |
@@ -81,12 +77,11 @@ static const struct fb_videomode fb_modedb[] = { | |||
81 | }, | 77 | }, |
82 | }; | 78 | }; |
83 | 79 | ||
84 | static struct ipu_platform_data mx3_ipu_data = { | 80 | static const struct ipu_platform_data mx3_ipu_data __initconst = { |
85 | .irq_base = MXC_IPU_IRQ_START, | 81 | .irq_base = MXC_IPU_IRQ_START, |
86 | }; | 82 | }; |
87 | 83 | ||
88 | static struct mx3fb_platform_data mx3fb_pdata = { | 84 | static struct mx3fb_platform_data mx3fb_pdata __initdata = { |
89 | .dma_dev = &mx3_ipu.dev, | ||
90 | .name = "Sharp-LQ035Q7", | 85 | .name = "Sharp-LQ035Q7", |
91 | .mode = fb_modedb, | 86 | .mode = fb_modedb, |
92 | .num_modes = ARRAY_SIZE(fb_modedb), | 87 | .num_modes = ARRAY_SIZE(fb_modedb), |
@@ -127,12 +122,12 @@ static struct at24_platform_data board_eeprom = { | |||
127 | }; | 122 | }; |
128 | 123 | ||
129 | static struct i2c_board_info pcm043_i2c_devices[] = { | 124 | static struct i2c_board_info pcm043_i2c_devices[] = { |
130 | { | 125 | { |
131 | I2C_BOARD_INFO("at24", 0x52), /* E0=0, E1=1, E2=0 */ | 126 | I2C_BOARD_INFO("at24", 0x52), /* E0=0, E1=1, E2=0 */ |
132 | .platform_data = &board_eeprom, | 127 | .platform_data = &board_eeprom, |
133 | }, { | 128 | }, { |
134 | I2C_BOARD_INFO("pcf8563", 0x51), | 129 | I2C_BOARD_INFO("pcf8563", 0x51), |
135 | } | 130 | }, |
136 | }; | 131 | }; |
137 | 132 | ||
138 | static struct platform_device *devices[] __initdata = { | 133 | static struct platform_device *devices[] __initdata = { |
@@ -390,8 +385,8 @@ static void __init pcm043_init(void) | |||
390 | 385 | ||
391 | imx35_add_imx_i2c0(&pcm043_i2c0_data); | 386 | imx35_add_imx_i2c0(&pcm043_i2c0_data); |
392 | 387 | ||
393 | mxc_register_device(&mx3_ipu, &mx3_ipu_data); | 388 | imx35_add_ipu_core(&mx3_ipu_data); |
394 | mxc_register_device(&mx3_fb, &mx3fb_pdata); | 389 | imx35_add_mx3_sdc_fb(&mx3fb_pdata); |
395 | 390 | ||
396 | if (otg_mode_host) { | 391 | if (otg_mode_host) { |
397 | otg_pdata.otg = imx_otg_ulpi_create(ULPI_OTG_DRVVBUS | | 392 | otg_pdata.otg = imx_otg_ulpi_create(ULPI_OTG_DRVVBUS | |
diff --git a/arch/arm/mach-mx3/mach-qong.c b/arch/arm/mach-imx/mach-qong.c index 17f758b77623..c16328715939 100644 --- a/arch/arm/mach-mx3/mach-qong.c +++ b/arch/arm/mach-imx/mach-qong.c | |||
@@ -33,24 +33,23 @@ | |||
33 | #include <mach/iomux-mx3.h> | 33 | #include <mach/iomux-mx3.h> |
34 | 34 | ||
35 | #include "devices-imx31.h" | 35 | #include "devices-imx31.h" |
36 | #include "devices.h" | ||
37 | 36 | ||
38 | /* FPGA defines */ | 37 | /* FPGA defines */ |
39 | #define QONG_FPGA_VERSION(major, minor, rev) \ | 38 | #define QONG_FPGA_VERSION(major, minor, rev) \ |
40 | (((major & 0xF) << 12) | ((minor & 0xF) << 8) | (rev & 0xFF)) | 39 | (((major & 0xF) << 12) | ((minor & 0xF) << 8) | (rev & 0xFF)) |
41 | 40 | ||
42 | #define QONG_FPGA_BASEADDR MX31_CS1_BASE_ADDR | 41 | #define QONG_FPGA_BASEADDR MX31_CS1_BASE_ADDR |
43 | #define QONG_FPGA_PERIPH_SIZE (1 << 24) | 42 | #define QONG_FPGA_PERIPH_SIZE (1 << 24) |
44 | 43 | ||
45 | #define QONG_FPGA_CTRL_BASEADDR QONG_FPGA_BASEADDR | 44 | #define QONG_FPGA_CTRL_BASEADDR QONG_FPGA_BASEADDR |
46 | #define QONG_FPGA_CTRL_SIZE 0x10 | 45 | #define QONG_FPGA_CTRL_SIZE 0x10 |
47 | /* FPGA control registers */ | 46 | /* FPGA control registers */ |
48 | #define QONG_FPGA_CTRL_VERSION 0x00 | 47 | #define QONG_FPGA_CTRL_VERSION 0x00 |
49 | 48 | ||
50 | #define QONG_DNET_ID 1 | 49 | #define QONG_DNET_ID 1 |
51 | #define QONG_DNET_BASEADDR \ | 50 | #define QONG_DNET_BASEADDR \ |
52 | (QONG_FPGA_BASEADDR + QONG_DNET_ID * QONG_FPGA_PERIPH_SIZE) | 51 | (QONG_FPGA_BASEADDR + QONG_DNET_ID * QONG_FPGA_PERIPH_SIZE) |
53 | #define QONG_DNET_SIZE 0x00001000 | 52 | #define QONG_DNET_SIZE 0x00001000 |
54 | 53 | ||
55 | #define QONG_FPGA_IRQ IOMUX_TO_IRQ(MX31_PIN_DTR_DCE1) | 54 | #define QONG_FPGA_IRQ IOMUX_TO_IRQ(MX31_PIN_DTR_DCE1) |
56 | 55 | ||
@@ -166,15 +165,15 @@ static struct platform_nand_data qong_nand_data = { | |||
166 | .options = 0, | 165 | .options = 0, |
167 | }, | 166 | }, |
168 | .ctrl = { | 167 | .ctrl = { |
169 | .cmd_ctrl = qong_nand_cmd_ctrl, | 168 | .cmd_ctrl = qong_nand_cmd_ctrl, |
170 | .dev_ready = qong_nand_device_ready, | 169 | .dev_ready = qong_nand_device_ready, |
171 | .select_chip = qong_nand_select_chip, | 170 | .select_chip = qong_nand_select_chip, |
172 | } | 171 | } |
173 | }; | 172 | }; |
174 | 173 | ||
175 | static struct resource qong_nand_resource = { | 174 | static struct resource qong_nand_resource = { |
176 | .start = MX31_CS3_BASE_ADDR, | 175 | .start = MX31_CS3_BASE_ADDR, |
177 | .end = MX31_CS3_BASE_ADDR + SZ_32M - 1, | 176 | .end = MX31_CS3_BASE_ADDR + SZ_32M - 1, |
178 | .flags = IORESOURCE_MEM, | 177 | .flags = IORESOURCE_MEM, |
179 | }; | 178 | }; |
180 | 179 | ||
diff --git a/arch/arm/mach-mx3/mach-vpr200.c b/arch/arm/mach-imx/mach-vpr200.c index 47a69cbc31a8..d74e3473d236 100644 --- a/arch/arm/mach-mx3/mach-vpr200.c +++ b/arch/arm/mach-imx/mach-vpr200.c | |||
@@ -32,16 +32,12 @@ | |||
32 | #include <mach/common.h> | 32 | #include <mach/common.h> |
33 | #include <mach/iomux-mx35.h> | 33 | #include <mach/iomux-mx35.h> |
34 | #include <mach/irqs.h> | 34 | #include <mach/irqs.h> |
35 | #include <mach/ipu.h> | ||
36 | #include <mach/mx3fb.h> | ||
37 | 35 | ||
38 | #include <linux/i2c.h> | 36 | #include <linux/i2c.h> |
39 | #include <linux/i2c/at24.h> | 37 | #include <linux/i2c/at24.h> |
40 | #include <linux/mfd/mc13xxx.h> | 38 | #include <linux/mfd/mc13xxx.h> |
41 | #include <linux/gpio_keys.h> | ||
42 | 39 | ||
43 | #include "devices-imx35.h" | 40 | #include "devices-imx35.h" |
44 | #include "devices.h" | ||
45 | 41 | ||
46 | #define GPIO_LCDPWR IMX_GPIO_NR(1, 2) | 42 | #define GPIO_LCDPWR IMX_GPIO_NR(1, 2) |
47 | #define GPIO_PMIC_INT IMX_GPIO_NR(2, 0) | 43 | #define GPIO_PMIC_INT IMX_GPIO_NR(2, 0) |
@@ -91,12 +87,11 @@ static const struct fb_videomode fb_modedb[] = { | |||
91 | } | 87 | } |
92 | }; | 88 | }; |
93 | 89 | ||
94 | static struct ipu_platform_data mx3_ipu_data = { | 90 | static const struct ipu_platform_data mx3_ipu_data __initconst = { |
95 | .irq_base = MXC_IPU_IRQ_START, | 91 | .irq_base = MXC_IPU_IRQ_START, |
96 | }; | 92 | }; |
97 | 93 | ||
98 | static struct mx3fb_platform_data mx3fb_pdata = { | 94 | static struct mx3fb_platform_data mx3fb_pdata __initdata = { |
99 | .dma_dev = &mx3_ipu.dev, | ||
100 | .name = "PT0708048", | 95 | .name = "PT0708048", |
101 | .mode = fb_modedb, | 96 | .mode = fb_modedb, |
102 | .num_modes = ARRAY_SIZE(fb_modedb), | 97 | .num_modes = ARRAY_SIZE(fb_modedb), |
@@ -141,18 +136,12 @@ static struct gpio_keys_button vpr200_gpio_keys_table[] = { | |||
141 | {KEY_F9, GPIO_BUTTON8, 1, "vpr-keys: F9", 1, VPR_KEY_DEBOUNCE}, | 136 | {KEY_F9, GPIO_BUTTON8, 1, "vpr-keys: F9", 1, VPR_KEY_DEBOUNCE}, |
142 | }; | 137 | }; |
143 | 138 | ||
144 | static struct gpio_keys_platform_data vpr200_gpio_keys_data = { | 139 | static const struct gpio_keys_platform_data |
140 | vpr200_gpio_keys_data __initconst = { | ||
145 | .buttons = vpr200_gpio_keys_table, | 141 | .buttons = vpr200_gpio_keys_table, |
146 | .nbuttons = ARRAY_SIZE(vpr200_gpio_keys_table), | 142 | .nbuttons = ARRAY_SIZE(vpr200_gpio_keys_table), |
147 | }; | 143 | }; |
148 | 144 | ||
149 | static struct platform_device vpr200_device_gpiokeys = { | ||
150 | .name = "gpio-keys", | ||
151 | .dev = { | ||
152 | .platform_data = &vpr200_gpio_keys_data, | ||
153 | } | ||
154 | }; | ||
155 | |||
156 | static struct mc13xxx_platform_data vpr200_pmic = { | 145 | static struct mc13xxx_platform_data vpr200_pmic = { |
157 | .flags = MC13XXX_USE_ADC | MC13XXX_USE_TOUCHSCREEN, | 146 | .flags = MC13XXX_USE_ADC | MC13XXX_USE_TOUCHSCREEN, |
158 | }; | 147 | }; |
@@ -271,7 +260,6 @@ static const struct mxc_usbh_platform_data usb_host_pdata __initconst = { | |||
271 | 260 | ||
272 | static struct platform_device *devices[] __initdata = { | 261 | static struct platform_device *devices[] __initdata = { |
273 | &vpr200_flash, | 262 | &vpr200_flash, |
274 | &vpr200_device_gpiokeys, | ||
275 | }; | 263 | }; |
276 | 264 | ||
277 | /* | 265 | /* |
@@ -283,6 +271,7 @@ static void __init vpr200_board_init(void) | |||
283 | 271 | ||
284 | imx35_add_fec(NULL); | 272 | imx35_add_fec(NULL); |
285 | imx35_add_imx2_wdt(NULL); | 273 | imx35_add_imx2_wdt(NULL); |
274 | imx_add_gpio_keys(&vpr200_gpio_keys_data); | ||
286 | 275 | ||
287 | platform_add_devices(devices, ARRAY_SIZE(devices)); | 276 | platform_add_devices(devices, ARRAY_SIZE(devices)); |
288 | 277 | ||
@@ -299,8 +288,8 @@ static void __init vpr200_board_init(void) | |||
299 | imx35_add_imx_uart0(NULL); | 288 | imx35_add_imx_uart0(NULL); |
300 | imx35_add_imx_uart2(NULL); | 289 | imx35_add_imx_uart2(NULL); |
301 | 290 | ||
302 | mxc_register_device(&mx3_ipu, &mx3_ipu_data); | 291 | imx35_add_ipu_core(&mx3_ipu_data); |
303 | mxc_register_device(&mx3_fb, &mx3fb_pdata); | 292 | imx35_add_mx3_sdc_fb(&mx3fb_pdata); |
304 | 293 | ||
305 | imx35_add_fsl_usb2_udc(&otg_device_pdata); | 294 | imx35_add_fsl_usb2_udc(&otg_device_pdata); |
306 | imx35_add_mxc_ehci_hs(&usb_host_pdata); | 295 | imx35_add_mxc_ehci_hs(&usb_host_pdata); |
diff --git a/arch/arm/mach-imx/mm-imx31.c b/arch/arm/mach-imx/mm-imx31.c new file mode 100644 index 000000000000..86b9b45864d2 --- /dev/null +++ b/arch/arm/mach-imx/mm-imx31.c | |||
@@ -0,0 +1,66 @@ | |||
1 | /* | ||
2 | * Copyright (C) 1999,2000 Arm Limited | ||
3 | * Copyright (C) 2000 Deep Blue Solutions Ltd | ||
4 | * Copyright (C) 2002 Shane Nay (shane@minirl.com) | ||
5 | * Copyright 2005-2007 Freescale Semiconductor, Inc. All Rights Reserved. | ||
6 | * - add MX31 specific definitions | ||
7 | * | ||
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. | ||
12 | * | ||
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. | ||
17 | */ | ||
18 | |||
19 | #include <linux/mm.h> | ||
20 | #include <linux/init.h> | ||
21 | #include <linux/err.h> | ||
22 | |||
23 | #include <asm/pgtable.h> | ||
24 | #include <asm/mach/map.h> | ||
25 | |||
26 | #include <mach/common.h> | ||
27 | #include <mach/hardware.h> | ||
28 | #include <mach/iomux-v3.h> | ||
29 | #include <mach/gpio.h> | ||
30 | #include <mach/irqs.h> | ||
31 | |||
32 | static struct map_desc mx31_io_desc[] __initdata = { | ||
33 | imx_map_entry(MX31, X_MEMC, MT_DEVICE), | ||
34 | imx_map_entry(MX31, AVIC, MT_DEVICE_NONSHARED), | ||
35 | imx_map_entry(MX31, AIPS1, MT_DEVICE_NONSHARED), | ||
36 | imx_map_entry(MX31, AIPS2, MT_DEVICE_NONSHARED), | ||
37 | imx_map_entry(MX31, SPBA0, MT_DEVICE_NONSHARED), | ||
38 | }; | ||
39 | |||
40 | /* | ||
41 | * This function initializes the memory map. It is called during the | ||
42 | * system startup to create static physical to virtual memory mappings | ||
43 | * for the IO modules. | ||
44 | */ | ||
45 | void __init mx31_map_io(void) | ||
46 | { | ||
47 | iotable_init(mx31_io_desc, ARRAY_SIZE(mx31_io_desc)); | ||
48 | } | ||
49 | |||
50 | void __init imx31_init_early(void) | ||
51 | { | ||
52 | mxc_set_cpu_type(MXC_CPU_MX31); | ||
53 | mxc_arch_reset_init(MX31_IO_ADDRESS(MX31_WDOG_BASE_ADDR)); | ||
54 | } | ||
55 | |||
56 | static struct mxc_gpio_port imx31_gpio_ports[] = { | ||
57 | DEFINE_IMX_GPIO_PORT_IRQ(MX31, 0, 1, MX31_INT_GPIO1), | ||
58 | DEFINE_IMX_GPIO_PORT_IRQ(MX31, 1, 2, MX31_INT_GPIO2), | ||
59 | DEFINE_IMX_GPIO_PORT_IRQ(MX31, 2, 3, MX31_INT_GPIO3), | ||
60 | }; | ||
61 | |||
62 | void __init mx31_init_irq(void) | ||
63 | { | ||
64 | mxc_init_irq(MX31_IO_ADDRESS(MX31_AVIC_BASE_ADDR)); | ||
65 | mxc_gpio_init(imx31_gpio_ports, ARRAY_SIZE(imx31_gpio_ports)); | ||
66 | } | ||
diff --git a/arch/arm/mach-imx/mm-imx35.c b/arch/arm/mach-imx/mm-imx35.c new file mode 100644 index 000000000000..c880e6d1ae55 --- /dev/null +++ b/arch/arm/mach-imx/mm-imx35.c | |||
@@ -0,0 +1,63 @@ | |||
1 | /* | ||
2 | * Copyright (C) 1999,2000 Arm Limited | ||
3 | * Copyright (C) 2000 Deep Blue Solutions Ltd | ||
4 | * Copyright (C) 2002 Shane Nay (shane@minirl.com) | ||
5 | * Copyright 2005-2007 Freescale Semiconductor, Inc. All Rights Reserved. | ||
6 | * - add MX31 specific definitions | ||
7 | * | ||
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. | ||
12 | * | ||
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. | ||
17 | */ | ||
18 | |||
19 | #include <linux/mm.h> | ||
20 | #include <linux/init.h> | ||
21 | #include <linux/err.h> | ||
22 | |||
23 | #include <asm/pgtable.h> | ||
24 | #include <asm/mach/map.h> | ||
25 | #include <asm/hardware/cache-l2x0.h> | ||
26 | |||
27 | #include <mach/common.h> | ||
28 | #include <mach/hardware.h> | ||
29 | #include <mach/iomux-v3.h> | ||
30 | #include <mach/gpio.h> | ||
31 | #include <mach/irqs.h> | ||
32 | |||
33 | static struct map_desc mx35_io_desc[] __initdata = { | ||
34 | imx_map_entry(MX35, X_MEMC, MT_DEVICE), | ||
35 | imx_map_entry(MX35, AVIC, MT_DEVICE_NONSHARED), | ||
36 | imx_map_entry(MX35, AIPS1, MT_DEVICE_NONSHARED), | ||
37 | imx_map_entry(MX35, AIPS2, MT_DEVICE_NONSHARED), | ||
38 | imx_map_entry(MX35, SPBA0, MT_DEVICE_NONSHARED), | ||
39 | }; | ||
40 | |||
41 | void __init mx35_map_io(void) | ||
42 | { | ||
43 | iotable_init(mx35_io_desc, ARRAY_SIZE(mx35_io_desc)); | ||
44 | } | ||
45 | |||
46 | void __init imx35_init_early(void) | ||
47 | { | ||
48 | mxc_set_cpu_type(MXC_CPU_MX35); | ||
49 | mxc_iomux_v3_init(MX35_IO_ADDRESS(MX35_IOMUXC_BASE_ADDR)); | ||
50 | mxc_arch_reset_init(MX35_IO_ADDRESS(MX35_WDOG_BASE_ADDR)); | ||
51 | } | ||
52 | |||
53 | static struct mxc_gpio_port imx35_gpio_ports[] = { | ||
54 | DEFINE_IMX_GPIO_PORT_IRQ(MX35, 0, 1, MX35_INT_GPIO1), | ||
55 | DEFINE_IMX_GPIO_PORT_IRQ(MX35, 1, 2, MX35_INT_GPIO2), | ||
56 | DEFINE_IMX_GPIO_PORT_IRQ(MX35, 2, 3, MX35_INT_GPIO3), | ||
57 | }; | ||
58 | |||
59 | void __init mx35_init_irq(void) | ||
60 | { | ||
61 | mxc_init_irq(MX35_IO_ADDRESS(MX35_AVIC_BASE_ADDR)); | ||
62 | mxc_gpio_init(imx35_gpio_ports, ARRAY_SIZE(imx35_gpio_ports)); | ||
63 | } | ||
diff --git a/arch/arm/mach-mx3/mx31lilly-db.c b/arch/arm/mach-imx/mx31lilly-db.c index 8f1a38ebf5c8..7d26f766a4ee 100644 --- a/arch/arm/mach-mx3/mx31lilly-db.c +++ b/arch/arm/mach-imx/mx31lilly-db.c | |||
@@ -34,11 +34,8 @@ | |||
34 | #include <mach/common.h> | 34 | #include <mach/common.h> |
35 | #include <mach/iomux-mx3.h> | 35 | #include <mach/iomux-mx3.h> |
36 | #include <mach/board-mx31lilly.h> | 36 | #include <mach/board-mx31lilly.h> |
37 | #include <mach/mx3fb.h> | ||
38 | #include <mach/ipu.h> | ||
39 | 37 | ||
40 | #include "devices-imx31.h" | 38 | #include "devices-imx31.h" |
41 | #include "devices.h" | ||
42 | 39 | ||
43 | /* | 40 | /* |
44 | * This file contains board-specific initialization routines for the | 41 | * This file contains board-specific initialization routines for the |
@@ -164,13 +161,13 @@ static const struct imxmmc_platform_data mmc_pdata __initconst = { | |||
164 | }; | 161 | }; |
165 | 162 | ||
166 | /* Framebuffer support */ | 163 | /* Framebuffer support */ |
167 | static struct ipu_platform_data ipu_data __initdata = { | 164 | static const struct ipu_platform_data ipu_data __initconst = { |
168 | .irq_base = MXC_IPU_IRQ_START, | 165 | .irq_base = MXC_IPU_IRQ_START, |
169 | }; | 166 | }; |
170 | 167 | ||
171 | static const struct fb_videomode fb_modedb = { | 168 | static const struct fb_videomode fb_modedb = { |
172 | /* 640x480 TFT panel (IPS-056T) */ | 169 | /* 640x480 TFT panel (IPS-056T) */ |
173 | .name = "CRT-VGA", | 170 | .name = "CRT-VGA", |
174 | .refresh = 64, | 171 | .refresh = 64, |
175 | .xres = 640, | 172 | .xres = 640, |
176 | .yres = 480, | 173 | .yres = 480, |
@@ -187,7 +184,6 @@ static const struct fb_videomode fb_modedb = { | |||
187 | }; | 184 | }; |
188 | 185 | ||
189 | static struct mx3fb_platform_data fb_pdata __initdata = { | 186 | static struct mx3fb_platform_data fb_pdata __initdata = { |
190 | .dma_dev = &mx3_ipu.dev, | ||
191 | .name = "CRT-VGA", | 187 | .name = "CRT-VGA", |
192 | .mode = &fb_modedb, | 188 | .mode = &fb_modedb, |
193 | .num_modes = 1, | 189 | .num_modes = 1, |
@@ -202,8 +198,8 @@ static void __init mx31lilly_init_fb(void) | |||
202 | return; | 198 | return; |
203 | } | 199 | } |
204 | 200 | ||
205 | mxc_register_device(&mx3_ipu, &ipu_data); | 201 | imx31_add_ipu_core(&ipu_data); |
206 | mxc_register_device(&mx3_fb, &fb_pdata); | 202 | imx31_add_mx3_sdc_fb(&fb_pdata); |
207 | gpio_direction_output(LCD_VCC_EN_GPIO, 1); | 203 | gpio_direction_output(LCD_VCC_EN_GPIO, 1); |
208 | } | 204 | } |
209 | 205 | ||
@@ -218,4 +214,3 @@ void __init mx31lilly_db_init(void) | |||
218 | imx31_add_mxc_mmc(0, &mmc_pdata); | 214 | imx31_add_mxc_mmc(0, &mmc_pdata); |
219 | mx31lilly_init_fb(); | 215 | mx31lilly_init_fb(); |
220 | } | 216 | } |
221 | |||
diff --git a/arch/arm/mach-mx3/mx31lite-db.c b/arch/arm/mach-imx/mx31lite-db.c index 3124ea837ac7..5aa053edc17c 100644 --- a/arch/arm/mach-mx3/mx31lite-db.c +++ b/arch/arm/mach-imx/mx31lite-db.c | |||
@@ -37,7 +37,6 @@ | |||
37 | #include <mach/board-mx31lite.h> | 37 | #include <mach/board-mx31lite.h> |
38 | 38 | ||
39 | #include "devices-imx31.h" | 39 | #include "devices-imx31.h" |
40 | #include "devices.h" | ||
41 | 40 | ||
42 | /* | 41 | /* |
43 | * This file contains board-specific initialization routines for the | 42 | * This file contains board-specific initialization routines for the |
@@ -200,5 +199,5 @@ void __init mx31lite_db_init(void) | |||
200 | imx31_add_spi_imx0(&spi0_pdata); | 199 | imx31_add_spi_imx0(&spi0_pdata); |
201 | platform_device_register(&litekit_led_device); | 200 | platform_device_register(&litekit_led_device); |
202 | imx31_add_imx2_wdt(NULL); | 201 | imx31_add_imx2_wdt(NULL); |
203 | mxc_register_device(&imx_rtc_device0, NULL); | 202 | imx31_add_mxc_rtc(NULL); |
204 | } | 203 | } |
diff --git a/arch/arm/mach-mx3/mx31moboard-devboard.c b/arch/arm/mach-imx/mx31moboard-devboard.c index 6410b9c48a02..0aa25364360d 100644 --- a/arch/arm/mach-mx3/mx31moboard-devboard.c +++ b/arch/arm/mach-imx/mx31moboard-devboard.c | |||
@@ -28,7 +28,6 @@ | |||
28 | #include <mach/ulpi.h> | 28 | #include <mach/ulpi.h> |
29 | 29 | ||
30 | #include "devices-imx31.h" | 30 | #include "devices-imx31.h" |
31 | #include "devices.h" | ||
32 | 31 | ||
33 | static unsigned int devboard_pins[] = { | 32 | static unsigned int devboard_pins[] = { |
34 | /* UART1 */ | 33 | /* UART1 */ |
diff --git a/arch/arm/mach-mx3/mx31moboard-marxbot.c b/arch/arm/mach-imx/mx31moboard-marxbot.c index 57f7b00cb709..bb639cbda4e5 100644 --- a/arch/arm/mach-mx3/mx31moboard-marxbot.c +++ b/arch/arm/mach-imx/mx31moboard-marxbot.c | |||
@@ -26,14 +26,12 @@ | |||
26 | 26 | ||
27 | #include <mach/common.h> | 27 | #include <mach/common.h> |
28 | #include <mach/hardware.h> | 28 | #include <mach/hardware.h> |
29 | #include <mach/imx-uart.h> | ||
30 | #include <mach/iomux-mx3.h> | 29 | #include <mach/iomux-mx3.h> |
31 | #include <mach/ulpi.h> | 30 | #include <mach/ulpi.h> |
32 | 31 | ||
33 | #include <media/soc_camera.h> | 32 | #include <media/soc_camera.h> |
34 | 33 | ||
35 | #include "devices-imx31.h" | 34 | #include "devices-imx31.h" |
36 | #include "devices.h" | ||
37 | 35 | ||
38 | static unsigned int marxbot_pins[] = { | 36 | static unsigned int marxbot_pins[] = { |
39 | /* SDHC2 */ | 37 | /* SDHC2 */ |
diff --git a/arch/arm/mach-mx3/mx31moboard-smartbot.c b/arch/arm/mach-imx/mx31moboard-smartbot.c index 35f806e737c1..fabb801e7994 100644 --- a/arch/arm/mach-mx3/mx31moboard-smartbot.c +++ b/arch/arm/mach-imx/mx31moboard-smartbot.c | |||
@@ -32,7 +32,6 @@ | |||
32 | #include <media/soc_camera.h> | 32 | #include <media/soc_camera.h> |
33 | 33 | ||
34 | #include "devices-imx31.h" | 34 | #include "devices-imx31.h" |
35 | #include "devices.h" | ||
36 | 35 | ||
37 | static unsigned int smartbot_pins[] = { | 36 | static unsigned int smartbot_pins[] = { |
38 | /* UART1 */ | 37 | /* UART1 */ |
diff --git a/arch/arm/mach-mx3/pcm037.h b/arch/arm/mach-imx/pcm037.h index d6929721a5fd..d6929721a5fd 100644 --- a/arch/arm/mach-mx3/pcm037.h +++ b/arch/arm/mach-imx/pcm037.h | |||
diff --git a/arch/arm/mach-iop32x/include/mach/uncompress.h b/arch/arm/mach-iop32x/include/mach/uncompress.h index b247551b6f5a..4fd715496f45 100644 --- a/arch/arm/mach-iop32x/include/mach/uncompress.h +++ b/arch/arm/mach-iop32x/include/mach/uncompress.h | |||
@@ -7,7 +7,7 @@ | |||
7 | #include <linux/serial_reg.h> | 7 | #include <linux/serial_reg.h> |
8 | #include <mach/hardware.h> | 8 | #include <mach/hardware.h> |
9 | 9 | ||
10 | static volatile u8 *uart_base; | 10 | volatile u8 *uart_base; |
11 | 11 | ||
12 | #define TX_DONE (UART_LSR_TEMT | UART_LSR_THRE) | 12 | #define TX_DONE (UART_LSR_TEMT | UART_LSR_THRE) |
13 | 13 | ||
diff --git a/arch/arm/mach-iop33x/include/mach/uncompress.h b/arch/arm/mach-iop33x/include/mach/uncompress.h index b42423f63302..f99bb848c5a1 100644 --- a/arch/arm/mach-iop33x/include/mach/uncompress.h +++ b/arch/arm/mach-iop33x/include/mach/uncompress.h | |||
@@ -7,7 +7,7 @@ | |||
7 | #include <linux/serial_reg.h> | 7 | #include <linux/serial_reg.h> |
8 | #include <mach/hardware.h> | 8 | #include <mach/hardware.h> |
9 | 9 | ||
10 | static volatile u32 *uart_base; | 10 | volatile u32 *uart_base; |
11 | 11 | ||
12 | #define TX_DONE (UART_LSR_TEMT | UART_LSR_THRE) | 12 | #define TX_DONE (UART_LSR_TEMT | UART_LSR_THRE) |
13 | 13 | ||
diff --git a/arch/arm/mach-ixp4xx/include/mach/uncompress.h b/arch/arm/mach-ixp4xx/include/mach/uncompress.h index 2db0078a8cf2..219d7c1dcdba 100644 --- a/arch/arm/mach-ixp4xx/include/mach/uncompress.h +++ b/arch/arm/mach-ixp4xx/include/mach/uncompress.h | |||
@@ -19,7 +19,7 @@ | |||
19 | 19 | ||
20 | #define TX_DONE (UART_LSR_TEMT|UART_LSR_THRE) | 20 | #define TX_DONE (UART_LSR_TEMT|UART_LSR_THRE) |
21 | 21 | ||
22 | static volatile u32* uart_base; | 22 | volatile u32* uart_base; |
23 | 23 | ||
24 | static inline void putc(int c) | 24 | static inline void putc(int c) |
25 | { | 25 | { |
diff --git a/arch/arm/mach-kirkwood/common.c b/arch/arm/mach-kirkwood/common.c index 20e71df3e3bb..f3248cfbe51d 100644 --- a/arch/arm/mach-kirkwood/common.c +++ b/arch/arm/mach-kirkwood/common.c | |||
@@ -13,11 +13,9 @@ | |||
13 | #include <linux/platform_device.h> | 13 | #include <linux/platform_device.h> |
14 | #include <linux/serial_8250.h> | 14 | #include <linux/serial_8250.h> |
15 | #include <linux/mbus.h> | 15 | #include <linux/mbus.h> |
16 | #include <linux/mv643xx_eth.h> | ||
17 | #include <linux/mv643xx_i2c.h> | ||
18 | #include <linux/ata_platform.h> | 16 | #include <linux/ata_platform.h> |
19 | #include <linux/mtd/nand.h> | 17 | #include <linux/mtd/nand.h> |
20 | #include <linux/spi/orion_spi.h> | 18 | #include <linux/dma-mapping.h> |
21 | #include <net/dsa.h> | 19 | #include <net/dsa.h> |
22 | #include <asm/page.h> | 20 | #include <asm/page.h> |
23 | #include <asm/timex.h> | 21 | #include <asm/timex.h> |
@@ -28,11 +26,9 @@ | |||
28 | #include <mach/bridge-regs.h> | 26 | #include <mach/bridge-regs.h> |
29 | #include <plat/audio.h> | 27 | #include <plat/audio.h> |
30 | #include <plat/cache-feroceon-l2.h> | 28 | #include <plat/cache-feroceon-l2.h> |
31 | #include <plat/ehci-orion.h> | ||
32 | #include <plat/mvsdio.h> | 29 | #include <plat/mvsdio.h> |
33 | #include <plat/mv_xor.h> | ||
34 | #include <plat/orion_nand.h> | 30 | #include <plat/orion_nand.h> |
35 | #include <plat/orion_wdt.h> | 31 | #include <plat/common.h> |
36 | #include <plat/time.h> | 32 | #include <plat/time.h> |
37 | #include "common.h" | 33 | #include "common.h" |
38 | 34 | ||
@@ -69,210 +65,52 @@ void __init kirkwood_map_io(void) | |||
69 | * registered. Some reserved bits must be set to 1. | 65 | * registered. Some reserved bits must be set to 1. |
70 | */ | 66 | */ |
71 | unsigned int kirkwood_clk_ctrl = CGC_DUNIT | CGC_RESERVED; | 67 | unsigned int kirkwood_clk_ctrl = CGC_DUNIT | CGC_RESERVED; |
72 | |||
73 | |||
74 | /***************************************************************************** | ||
75 | * EHCI | ||
76 | ****************************************************************************/ | ||
77 | static struct orion_ehci_data kirkwood_ehci_data = { | ||
78 | .dram = &kirkwood_mbus_dram_info, | ||
79 | .phy_version = EHCI_PHY_NA, | ||
80 | }; | ||
81 | |||
82 | static u64 ehci_dmamask = 0xffffffffUL; | ||
83 | 68 | ||
84 | 69 | ||
85 | /***************************************************************************** | 70 | /***************************************************************************** |
86 | * EHCI0 | 71 | * EHCI0 |
87 | ****************************************************************************/ | 72 | ****************************************************************************/ |
88 | static struct resource kirkwood_ehci_resources[] = { | ||
89 | { | ||
90 | .start = USB_PHYS_BASE, | ||
91 | .end = USB_PHYS_BASE + 0x0fff, | ||
92 | .flags = IORESOURCE_MEM, | ||
93 | }, { | ||
94 | .start = IRQ_KIRKWOOD_USB, | ||
95 | .end = IRQ_KIRKWOOD_USB, | ||
96 | .flags = IORESOURCE_IRQ, | ||
97 | }, | ||
98 | }; | ||
99 | |||
100 | static struct platform_device kirkwood_ehci = { | ||
101 | .name = "orion-ehci", | ||
102 | .id = 0, | ||
103 | .dev = { | ||
104 | .dma_mask = &ehci_dmamask, | ||
105 | .coherent_dma_mask = 0xffffffff, | ||
106 | .platform_data = &kirkwood_ehci_data, | ||
107 | }, | ||
108 | .resource = kirkwood_ehci_resources, | ||
109 | .num_resources = ARRAY_SIZE(kirkwood_ehci_resources), | ||
110 | }; | ||
111 | |||
112 | void __init kirkwood_ehci_init(void) | 73 | void __init kirkwood_ehci_init(void) |
113 | { | 74 | { |
114 | kirkwood_clk_ctrl |= CGC_USB0; | 75 | kirkwood_clk_ctrl |= CGC_USB0; |
115 | platform_device_register(&kirkwood_ehci); | 76 | orion_ehci_init(&kirkwood_mbus_dram_info, |
77 | USB_PHYS_BASE, IRQ_KIRKWOOD_USB); | ||
116 | } | 78 | } |
117 | 79 | ||
118 | 80 | ||
119 | /***************************************************************************** | 81 | /***************************************************************************** |
120 | * GE00 | 82 | * GE00 |
121 | ****************************************************************************/ | 83 | ****************************************************************************/ |
122 | struct mv643xx_eth_shared_platform_data kirkwood_ge00_shared_data = { | ||
123 | .dram = &kirkwood_mbus_dram_info, | ||
124 | }; | ||
125 | |||
126 | static struct resource kirkwood_ge00_shared_resources[] = { | ||
127 | { | ||
128 | .name = "ge00 base", | ||
129 | .start = GE00_PHYS_BASE + 0x2000, | ||
130 | .end = GE00_PHYS_BASE + 0x3fff, | ||
131 | .flags = IORESOURCE_MEM, | ||
132 | }, { | ||
133 | .name = "ge00 err irq", | ||
134 | .start = IRQ_KIRKWOOD_GE00_ERR, | ||
135 | .end = IRQ_KIRKWOOD_GE00_ERR, | ||
136 | .flags = IORESOURCE_IRQ, | ||
137 | }, | ||
138 | }; | ||
139 | |||
140 | static struct platform_device kirkwood_ge00_shared = { | ||
141 | .name = MV643XX_ETH_SHARED_NAME, | ||
142 | .id = 0, | ||
143 | .dev = { | ||
144 | .platform_data = &kirkwood_ge00_shared_data, | ||
145 | }, | ||
146 | .num_resources = ARRAY_SIZE(kirkwood_ge00_shared_resources), | ||
147 | .resource = kirkwood_ge00_shared_resources, | ||
148 | }; | ||
149 | |||
150 | static struct resource kirkwood_ge00_resources[] = { | ||
151 | { | ||
152 | .name = "ge00 irq", | ||
153 | .start = IRQ_KIRKWOOD_GE00_SUM, | ||
154 | .end = IRQ_KIRKWOOD_GE00_SUM, | ||
155 | .flags = IORESOURCE_IRQ, | ||
156 | }, | ||
157 | }; | ||
158 | |||
159 | static struct platform_device kirkwood_ge00 = { | ||
160 | .name = MV643XX_ETH_NAME, | ||
161 | .id = 0, | ||
162 | .num_resources = 1, | ||
163 | .resource = kirkwood_ge00_resources, | ||
164 | .dev = { | ||
165 | .coherent_dma_mask = 0xffffffff, | ||
166 | }, | ||
167 | }; | ||
168 | |||
169 | void __init kirkwood_ge00_init(struct mv643xx_eth_platform_data *eth_data) | 84 | void __init kirkwood_ge00_init(struct mv643xx_eth_platform_data *eth_data) |
170 | { | 85 | { |
171 | kirkwood_clk_ctrl |= CGC_GE0; | 86 | kirkwood_clk_ctrl |= CGC_GE0; |
172 | eth_data->shared = &kirkwood_ge00_shared; | ||
173 | kirkwood_ge00.dev.platform_data = eth_data; | ||
174 | 87 | ||
175 | platform_device_register(&kirkwood_ge00_shared); | 88 | orion_ge00_init(eth_data, &kirkwood_mbus_dram_info, |
176 | platform_device_register(&kirkwood_ge00); | 89 | GE00_PHYS_BASE, IRQ_KIRKWOOD_GE00_SUM, |
90 | IRQ_KIRKWOOD_GE00_ERR, kirkwood_tclk); | ||
177 | } | 91 | } |
178 | 92 | ||
179 | 93 | ||
180 | /***************************************************************************** | 94 | /***************************************************************************** |
181 | * GE01 | 95 | * GE01 |
182 | ****************************************************************************/ | 96 | ****************************************************************************/ |
183 | struct mv643xx_eth_shared_platform_data kirkwood_ge01_shared_data = { | ||
184 | .dram = &kirkwood_mbus_dram_info, | ||
185 | .shared_smi = &kirkwood_ge00_shared, | ||
186 | }; | ||
187 | |||
188 | static struct resource kirkwood_ge01_shared_resources[] = { | ||
189 | { | ||
190 | .name = "ge01 base", | ||
191 | .start = GE01_PHYS_BASE + 0x2000, | ||
192 | .end = GE01_PHYS_BASE + 0x3fff, | ||
193 | .flags = IORESOURCE_MEM, | ||
194 | }, { | ||
195 | .name = "ge01 err irq", | ||
196 | .start = IRQ_KIRKWOOD_GE01_ERR, | ||
197 | .end = IRQ_KIRKWOOD_GE01_ERR, | ||
198 | .flags = IORESOURCE_IRQ, | ||
199 | }, | ||
200 | }; | ||
201 | |||
202 | static struct platform_device kirkwood_ge01_shared = { | ||
203 | .name = MV643XX_ETH_SHARED_NAME, | ||
204 | .id = 1, | ||
205 | .dev = { | ||
206 | .platform_data = &kirkwood_ge01_shared_data, | ||
207 | }, | ||
208 | .num_resources = ARRAY_SIZE(kirkwood_ge01_shared_resources), | ||
209 | .resource = kirkwood_ge01_shared_resources, | ||
210 | }; | ||
211 | |||
212 | static struct resource kirkwood_ge01_resources[] = { | ||
213 | { | ||
214 | .name = "ge01 irq", | ||
215 | .start = IRQ_KIRKWOOD_GE01_SUM, | ||
216 | .end = IRQ_KIRKWOOD_GE01_SUM, | ||
217 | .flags = IORESOURCE_IRQ, | ||
218 | }, | ||
219 | }; | ||
220 | |||
221 | static struct platform_device kirkwood_ge01 = { | ||
222 | .name = MV643XX_ETH_NAME, | ||
223 | .id = 1, | ||
224 | .num_resources = 1, | ||
225 | .resource = kirkwood_ge01_resources, | ||
226 | .dev = { | ||
227 | .coherent_dma_mask = 0xffffffff, | ||
228 | }, | ||
229 | }; | ||
230 | |||
231 | void __init kirkwood_ge01_init(struct mv643xx_eth_platform_data *eth_data) | 97 | void __init kirkwood_ge01_init(struct mv643xx_eth_platform_data *eth_data) |
232 | { | 98 | { |
99 | |||
233 | kirkwood_clk_ctrl |= CGC_GE1; | 100 | kirkwood_clk_ctrl |= CGC_GE1; |
234 | eth_data->shared = &kirkwood_ge01_shared; | ||
235 | kirkwood_ge01.dev.platform_data = eth_data; | ||
236 | 101 | ||
237 | platform_device_register(&kirkwood_ge01_shared); | 102 | orion_ge01_init(eth_data, &kirkwood_mbus_dram_info, |
238 | platform_device_register(&kirkwood_ge01); | 103 | GE01_PHYS_BASE, IRQ_KIRKWOOD_GE01_SUM, |
104 | IRQ_KIRKWOOD_GE01_ERR, kirkwood_tclk); | ||
239 | } | 105 | } |
240 | 106 | ||
241 | 107 | ||
242 | /***************************************************************************** | 108 | /***************************************************************************** |
243 | * Ethernet switch | 109 | * Ethernet switch |
244 | ****************************************************************************/ | 110 | ****************************************************************************/ |
245 | static struct resource kirkwood_switch_resources[] = { | ||
246 | { | ||
247 | .start = 0, | ||
248 | .end = 0, | ||
249 | .flags = IORESOURCE_IRQ, | ||
250 | }, | ||
251 | }; | ||
252 | |||
253 | static struct platform_device kirkwood_switch_device = { | ||
254 | .name = "dsa", | ||
255 | .id = 0, | ||
256 | .num_resources = 0, | ||
257 | .resource = kirkwood_switch_resources, | ||
258 | }; | ||
259 | |||
260 | void __init kirkwood_ge00_switch_init(struct dsa_platform_data *d, int irq) | 111 | void __init kirkwood_ge00_switch_init(struct dsa_platform_data *d, int irq) |
261 | { | 112 | { |
262 | int i; | 113 | orion_ge00_switch_init(d, irq); |
263 | |||
264 | if (irq != NO_IRQ) { | ||
265 | kirkwood_switch_resources[0].start = irq; | ||
266 | kirkwood_switch_resources[0].end = irq; | ||
267 | kirkwood_switch_device.num_resources = 1; | ||
268 | } | ||
269 | |||
270 | d->netdev = &kirkwood_ge00.dev; | ||
271 | for (i = 0; i < d->nr_chips; i++) | ||
272 | d->chip[i].mii_bus = &kirkwood_ge00_shared.dev; | ||
273 | kirkwood_switch_device.dev.platform_data = d; | ||
274 | |||
275 | platform_device_register(&kirkwood_switch_device); | ||
276 | } | 114 | } |
277 | 115 | ||
278 | 116 | ||
@@ -325,53 +163,23 @@ void __init kirkwood_nand_init_rnb(struct mtd_partition *parts, int nr_parts, | |||
325 | /***************************************************************************** | 163 | /***************************************************************************** |
326 | * SoC RTC | 164 | * SoC RTC |
327 | ****************************************************************************/ | 165 | ****************************************************************************/ |
328 | static struct resource kirkwood_rtc_resource = { | ||
329 | .start = RTC_PHYS_BASE, | ||
330 | .end = RTC_PHYS_BASE + SZ_16 - 1, | ||
331 | .flags = IORESOURCE_MEM, | ||
332 | }; | ||
333 | |||
334 | static void __init kirkwood_rtc_init(void) | 166 | static void __init kirkwood_rtc_init(void) |
335 | { | 167 | { |
336 | platform_device_register_simple("rtc-mv", -1, &kirkwood_rtc_resource, 1); | 168 | orion_rtc_init(RTC_PHYS_BASE, IRQ_KIRKWOOD_RTC); |
337 | } | 169 | } |
338 | 170 | ||
339 | 171 | ||
340 | /***************************************************************************** | 172 | /***************************************************************************** |
341 | * SATA | 173 | * SATA |
342 | ****************************************************************************/ | 174 | ****************************************************************************/ |
343 | static struct resource kirkwood_sata_resources[] = { | ||
344 | { | ||
345 | .name = "sata base", | ||
346 | .start = SATA_PHYS_BASE, | ||
347 | .end = SATA_PHYS_BASE + 0x5000 - 1, | ||
348 | .flags = IORESOURCE_MEM, | ||
349 | }, { | ||
350 | .name = "sata irq", | ||
351 | .start = IRQ_KIRKWOOD_SATA, | ||
352 | .end = IRQ_KIRKWOOD_SATA, | ||
353 | .flags = IORESOURCE_IRQ, | ||
354 | }, | ||
355 | }; | ||
356 | |||
357 | static struct platform_device kirkwood_sata = { | ||
358 | .name = "sata_mv", | ||
359 | .id = 0, | ||
360 | .dev = { | ||
361 | .coherent_dma_mask = 0xffffffff, | ||
362 | }, | ||
363 | .num_resources = ARRAY_SIZE(kirkwood_sata_resources), | ||
364 | .resource = kirkwood_sata_resources, | ||
365 | }; | ||
366 | |||
367 | void __init kirkwood_sata_init(struct mv_sata_platform_data *sata_data) | 175 | void __init kirkwood_sata_init(struct mv_sata_platform_data *sata_data) |
368 | { | 176 | { |
369 | kirkwood_clk_ctrl |= CGC_SATA0; | 177 | kirkwood_clk_ctrl |= CGC_SATA0; |
370 | if (sata_data->n_ports > 1) | 178 | if (sata_data->n_ports > 1) |
371 | kirkwood_clk_ctrl |= CGC_SATA1; | 179 | kirkwood_clk_ctrl |= CGC_SATA1; |
372 | sata_data->dram = &kirkwood_mbus_dram_info; | 180 | |
373 | kirkwood_sata.dev.platform_data = sata_data; | 181 | orion_sata_init(sata_data, &kirkwood_mbus_dram_info, |
374 | platform_device_register(&kirkwood_sata); | 182 | SATA_PHYS_BASE, IRQ_KIRKWOOD_SATA); |
375 | } | 183 | } |
376 | 184 | ||
377 | 185 | ||
@@ -391,14 +199,14 @@ static struct resource mvsdio_resources[] = { | |||
391 | }, | 199 | }, |
392 | }; | 200 | }; |
393 | 201 | ||
394 | static u64 mvsdio_dmamask = 0xffffffffUL; | 202 | static u64 mvsdio_dmamask = DMA_BIT_MASK(32); |
395 | 203 | ||
396 | static struct platform_device kirkwood_sdio = { | 204 | static struct platform_device kirkwood_sdio = { |
397 | .name = "mvsdio", | 205 | .name = "mvsdio", |
398 | .id = -1, | 206 | .id = -1, |
399 | .dev = { | 207 | .dev = { |
400 | .dma_mask = &mvsdio_dmamask, | 208 | .dma_mask = &mvsdio_dmamask, |
401 | .coherent_dma_mask = 0xffffffff, | 209 | .coherent_dma_mask = DMA_BIT_MASK(32), |
402 | }, | 210 | }, |
403 | .num_resources = ARRAY_SIZE(mvsdio_resources), | 211 | .num_resources = ARRAY_SIZE(mvsdio_resources), |
404 | .resource = mvsdio_resources, | 212 | .resource = mvsdio_resources, |
@@ -423,424 +231,84 @@ void __init kirkwood_sdio_init(struct mvsdio_platform_data *mvsdio_data) | |||
423 | /***************************************************************************** | 231 | /***************************************************************************** |
424 | * SPI | 232 | * SPI |
425 | ****************************************************************************/ | 233 | ****************************************************************************/ |
426 | static struct orion_spi_info kirkwood_spi_plat_data = { | ||
427 | }; | ||
428 | |||
429 | static struct resource kirkwood_spi_resources[] = { | ||
430 | { | ||
431 | .start = SPI_PHYS_BASE, | ||
432 | .end = SPI_PHYS_BASE + SZ_512 - 1, | ||
433 | .flags = IORESOURCE_MEM, | ||
434 | }, | ||
435 | }; | ||
436 | |||
437 | static struct platform_device kirkwood_spi = { | ||
438 | .name = "orion_spi", | ||
439 | .id = 0, | ||
440 | .resource = kirkwood_spi_resources, | ||
441 | .dev = { | ||
442 | .platform_data = &kirkwood_spi_plat_data, | ||
443 | }, | ||
444 | .num_resources = ARRAY_SIZE(kirkwood_spi_resources), | ||
445 | }; | ||
446 | |||
447 | void __init kirkwood_spi_init() | 234 | void __init kirkwood_spi_init() |
448 | { | 235 | { |
449 | kirkwood_clk_ctrl |= CGC_RUNIT; | 236 | kirkwood_clk_ctrl |= CGC_RUNIT; |
450 | platform_device_register(&kirkwood_spi); | 237 | orion_spi_init(SPI_PHYS_BASE, kirkwood_tclk); |
451 | } | 238 | } |
452 | 239 | ||
453 | 240 | ||
454 | /***************************************************************************** | 241 | /***************************************************************************** |
455 | * I2C | 242 | * I2C |
456 | ****************************************************************************/ | 243 | ****************************************************************************/ |
457 | static struct mv64xxx_i2c_pdata kirkwood_i2c_pdata = { | ||
458 | .freq_m = 8, /* assumes 166 MHz TCLK */ | ||
459 | .freq_n = 3, | ||
460 | .timeout = 1000, /* Default timeout of 1 second */ | ||
461 | }; | ||
462 | |||
463 | static struct resource kirkwood_i2c_resources[] = { | ||
464 | { | ||
465 | .start = I2C_PHYS_BASE, | ||
466 | .end = I2C_PHYS_BASE + 0x1f, | ||
467 | .flags = IORESOURCE_MEM, | ||
468 | }, { | ||
469 | .start = IRQ_KIRKWOOD_TWSI, | ||
470 | .end = IRQ_KIRKWOOD_TWSI, | ||
471 | .flags = IORESOURCE_IRQ, | ||
472 | }, | ||
473 | }; | ||
474 | |||
475 | static struct platform_device kirkwood_i2c = { | ||
476 | .name = MV64XXX_I2C_CTLR_NAME, | ||
477 | .id = 0, | ||
478 | .num_resources = ARRAY_SIZE(kirkwood_i2c_resources), | ||
479 | .resource = kirkwood_i2c_resources, | ||
480 | .dev = { | ||
481 | .platform_data = &kirkwood_i2c_pdata, | ||
482 | }, | ||
483 | }; | ||
484 | |||
485 | void __init kirkwood_i2c_init(void) | 244 | void __init kirkwood_i2c_init(void) |
486 | { | 245 | { |
487 | platform_device_register(&kirkwood_i2c); | 246 | orion_i2c_init(I2C_PHYS_BASE, IRQ_KIRKWOOD_TWSI, 8); |
488 | } | 247 | } |
489 | 248 | ||
490 | 249 | ||
491 | /***************************************************************************** | 250 | /***************************************************************************** |
492 | * UART0 | 251 | * UART0 |
493 | ****************************************************************************/ | 252 | ****************************************************************************/ |
494 | static struct plat_serial8250_port kirkwood_uart0_data[] = { | ||
495 | { | ||
496 | .mapbase = UART0_PHYS_BASE, | ||
497 | .membase = (char *)UART0_VIRT_BASE, | ||
498 | .irq = IRQ_KIRKWOOD_UART_0, | ||
499 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, | ||
500 | .iotype = UPIO_MEM, | ||
501 | .regshift = 2, | ||
502 | .uartclk = 0, | ||
503 | }, { | ||
504 | }, | ||
505 | }; | ||
506 | |||
507 | static struct resource kirkwood_uart0_resources[] = { | ||
508 | { | ||
509 | .start = UART0_PHYS_BASE, | ||
510 | .end = UART0_PHYS_BASE + 0xff, | ||
511 | .flags = IORESOURCE_MEM, | ||
512 | }, { | ||
513 | .start = IRQ_KIRKWOOD_UART_0, | ||
514 | .end = IRQ_KIRKWOOD_UART_0, | ||
515 | .flags = IORESOURCE_IRQ, | ||
516 | }, | ||
517 | }; | ||
518 | |||
519 | static struct platform_device kirkwood_uart0 = { | ||
520 | .name = "serial8250", | ||
521 | .id = 0, | ||
522 | .dev = { | ||
523 | .platform_data = kirkwood_uart0_data, | ||
524 | }, | ||
525 | .resource = kirkwood_uart0_resources, | ||
526 | .num_resources = ARRAY_SIZE(kirkwood_uart0_resources), | ||
527 | }; | ||
528 | 253 | ||
529 | void __init kirkwood_uart0_init(void) | 254 | void __init kirkwood_uart0_init(void) |
530 | { | 255 | { |
531 | platform_device_register(&kirkwood_uart0); | 256 | orion_uart0_init(UART0_VIRT_BASE, UART0_PHYS_BASE, |
257 | IRQ_KIRKWOOD_UART_0, kirkwood_tclk); | ||
532 | } | 258 | } |
533 | 259 | ||
534 | 260 | ||
535 | /***************************************************************************** | 261 | /***************************************************************************** |
536 | * UART1 | 262 | * UART1 |
537 | ****************************************************************************/ | 263 | ****************************************************************************/ |
538 | static struct plat_serial8250_port kirkwood_uart1_data[] = { | ||
539 | { | ||
540 | .mapbase = UART1_PHYS_BASE, | ||
541 | .membase = (char *)UART1_VIRT_BASE, | ||
542 | .irq = IRQ_KIRKWOOD_UART_1, | ||
543 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, | ||
544 | .iotype = UPIO_MEM, | ||
545 | .regshift = 2, | ||
546 | .uartclk = 0, | ||
547 | }, { | ||
548 | }, | ||
549 | }; | ||
550 | |||
551 | static struct resource kirkwood_uart1_resources[] = { | ||
552 | { | ||
553 | .start = UART1_PHYS_BASE, | ||
554 | .end = UART1_PHYS_BASE + 0xff, | ||
555 | .flags = IORESOURCE_MEM, | ||
556 | }, { | ||
557 | .start = IRQ_KIRKWOOD_UART_1, | ||
558 | .end = IRQ_KIRKWOOD_UART_1, | ||
559 | .flags = IORESOURCE_IRQ, | ||
560 | }, | ||
561 | }; | ||
562 | |||
563 | static struct platform_device kirkwood_uart1 = { | ||
564 | .name = "serial8250", | ||
565 | .id = 1, | ||
566 | .dev = { | ||
567 | .platform_data = kirkwood_uart1_data, | ||
568 | }, | ||
569 | .resource = kirkwood_uart1_resources, | ||
570 | .num_resources = ARRAY_SIZE(kirkwood_uart1_resources), | ||
571 | }; | ||
572 | |||
573 | void __init kirkwood_uart1_init(void) | 264 | void __init kirkwood_uart1_init(void) |
574 | { | 265 | { |
575 | platform_device_register(&kirkwood_uart1); | 266 | orion_uart1_init(UART1_VIRT_BASE, UART1_PHYS_BASE, |
267 | IRQ_KIRKWOOD_UART_1, kirkwood_tclk); | ||
576 | } | 268 | } |
577 | 269 | ||
578 | |||
579 | /***************************************************************************** | 270 | /***************************************************************************** |
580 | * Cryptographic Engines and Security Accelerator (CESA) | 271 | * Cryptographic Engines and Security Accelerator (CESA) |
581 | ****************************************************************************/ | 272 | ****************************************************************************/ |
582 | |||
583 | static struct resource kirkwood_crypto_res[] = { | ||
584 | { | ||
585 | .name = "regs", | ||
586 | .start = CRYPTO_PHYS_BASE, | ||
587 | .end = CRYPTO_PHYS_BASE + 0xffff, | ||
588 | .flags = IORESOURCE_MEM, | ||
589 | }, { | ||
590 | .name = "sram", | ||
591 | .start = KIRKWOOD_SRAM_PHYS_BASE, | ||
592 | .end = KIRKWOOD_SRAM_PHYS_BASE + KIRKWOOD_SRAM_SIZE - 1, | ||
593 | .flags = IORESOURCE_MEM, | ||
594 | }, { | ||
595 | .name = "crypto interrupt", | ||
596 | .start = IRQ_KIRKWOOD_CRYPTO, | ||
597 | .end = IRQ_KIRKWOOD_CRYPTO, | ||
598 | .flags = IORESOURCE_IRQ, | ||
599 | }, | ||
600 | }; | ||
601 | |||
602 | static struct platform_device kirkwood_crypto_device = { | ||
603 | .name = "mv_crypto", | ||
604 | .id = -1, | ||
605 | .num_resources = ARRAY_SIZE(kirkwood_crypto_res), | ||
606 | .resource = kirkwood_crypto_res, | ||
607 | }; | ||
608 | |||
609 | void __init kirkwood_crypto_init(void) | 273 | void __init kirkwood_crypto_init(void) |
610 | { | 274 | { |
611 | kirkwood_clk_ctrl |= CGC_CRYPTO; | 275 | kirkwood_clk_ctrl |= CGC_CRYPTO; |
612 | platform_device_register(&kirkwood_crypto_device); | 276 | orion_crypto_init(CRYPTO_PHYS_BASE, KIRKWOOD_SRAM_PHYS_BASE, |
277 | KIRKWOOD_SRAM_SIZE, IRQ_KIRKWOOD_CRYPTO); | ||
613 | } | 278 | } |
614 | 279 | ||
615 | 280 | ||
616 | /***************************************************************************** | 281 | /***************************************************************************** |
617 | * XOR | ||
618 | ****************************************************************************/ | ||
619 | static struct mv_xor_platform_shared_data kirkwood_xor_shared_data = { | ||
620 | .dram = &kirkwood_mbus_dram_info, | ||
621 | }; | ||
622 | |||
623 | static u64 kirkwood_xor_dmamask = DMA_BIT_MASK(32); | ||
624 | |||
625 | |||
626 | /***************************************************************************** | ||
627 | * XOR0 | 282 | * XOR0 |
628 | ****************************************************************************/ | 283 | ****************************************************************************/ |
629 | static struct resource kirkwood_xor0_shared_resources[] = { | ||
630 | { | ||
631 | .name = "xor 0 low", | ||
632 | .start = XOR0_PHYS_BASE, | ||
633 | .end = XOR0_PHYS_BASE + 0xff, | ||
634 | .flags = IORESOURCE_MEM, | ||
635 | }, { | ||
636 | .name = "xor 0 high", | ||
637 | .start = XOR0_HIGH_PHYS_BASE, | ||
638 | .end = XOR0_HIGH_PHYS_BASE + 0xff, | ||
639 | .flags = IORESOURCE_MEM, | ||
640 | }, | ||
641 | }; | ||
642 | |||
643 | static struct platform_device kirkwood_xor0_shared = { | ||
644 | .name = MV_XOR_SHARED_NAME, | ||
645 | .id = 0, | ||
646 | .dev = { | ||
647 | .platform_data = &kirkwood_xor_shared_data, | ||
648 | }, | ||
649 | .num_resources = ARRAY_SIZE(kirkwood_xor0_shared_resources), | ||
650 | .resource = kirkwood_xor0_shared_resources, | ||
651 | }; | ||
652 | |||
653 | static struct resource kirkwood_xor00_resources[] = { | ||
654 | [0] = { | ||
655 | .start = IRQ_KIRKWOOD_XOR_00, | ||
656 | .end = IRQ_KIRKWOOD_XOR_00, | ||
657 | .flags = IORESOURCE_IRQ, | ||
658 | }, | ||
659 | }; | ||
660 | |||
661 | static struct mv_xor_platform_data kirkwood_xor00_data = { | ||
662 | .shared = &kirkwood_xor0_shared, | ||
663 | .hw_id = 0, | ||
664 | .pool_size = PAGE_SIZE, | ||
665 | }; | ||
666 | |||
667 | static struct platform_device kirkwood_xor00_channel = { | ||
668 | .name = MV_XOR_NAME, | ||
669 | .id = 0, | ||
670 | .num_resources = ARRAY_SIZE(kirkwood_xor00_resources), | ||
671 | .resource = kirkwood_xor00_resources, | ||
672 | .dev = { | ||
673 | .dma_mask = &kirkwood_xor_dmamask, | ||
674 | .coherent_dma_mask = DMA_BIT_MASK(64), | ||
675 | .platform_data = &kirkwood_xor00_data, | ||
676 | }, | ||
677 | }; | ||
678 | |||
679 | static struct resource kirkwood_xor01_resources[] = { | ||
680 | [0] = { | ||
681 | .start = IRQ_KIRKWOOD_XOR_01, | ||
682 | .end = IRQ_KIRKWOOD_XOR_01, | ||
683 | .flags = IORESOURCE_IRQ, | ||
684 | }, | ||
685 | }; | ||
686 | |||
687 | static struct mv_xor_platform_data kirkwood_xor01_data = { | ||
688 | .shared = &kirkwood_xor0_shared, | ||
689 | .hw_id = 1, | ||
690 | .pool_size = PAGE_SIZE, | ||
691 | }; | ||
692 | |||
693 | static struct platform_device kirkwood_xor01_channel = { | ||
694 | .name = MV_XOR_NAME, | ||
695 | .id = 1, | ||
696 | .num_resources = ARRAY_SIZE(kirkwood_xor01_resources), | ||
697 | .resource = kirkwood_xor01_resources, | ||
698 | .dev = { | ||
699 | .dma_mask = &kirkwood_xor_dmamask, | ||
700 | .coherent_dma_mask = DMA_BIT_MASK(64), | ||
701 | .platform_data = &kirkwood_xor01_data, | ||
702 | }, | ||
703 | }; | ||
704 | |||
705 | static void __init kirkwood_xor0_init(void) | 284 | static void __init kirkwood_xor0_init(void) |
706 | { | 285 | { |
707 | kirkwood_clk_ctrl |= CGC_XOR0; | 286 | kirkwood_clk_ctrl |= CGC_XOR0; |
708 | platform_device_register(&kirkwood_xor0_shared); | ||
709 | 287 | ||
710 | /* | 288 | orion_xor0_init(&kirkwood_mbus_dram_info, |
711 | * two engines can't do memset simultaneously, this limitation | 289 | XOR0_PHYS_BASE, XOR0_HIGH_PHYS_BASE, |
712 | * satisfied by removing memset support from one of the engines. | 290 | IRQ_KIRKWOOD_XOR_00, IRQ_KIRKWOOD_XOR_01); |
713 | */ | ||
714 | dma_cap_set(DMA_MEMCPY, kirkwood_xor00_data.cap_mask); | ||
715 | dma_cap_set(DMA_XOR, kirkwood_xor00_data.cap_mask); | ||
716 | platform_device_register(&kirkwood_xor00_channel); | ||
717 | |||
718 | dma_cap_set(DMA_MEMCPY, kirkwood_xor01_data.cap_mask); | ||
719 | dma_cap_set(DMA_MEMSET, kirkwood_xor01_data.cap_mask); | ||
720 | dma_cap_set(DMA_XOR, kirkwood_xor01_data.cap_mask); | ||
721 | platform_device_register(&kirkwood_xor01_channel); | ||
722 | } | 291 | } |
723 | 292 | ||
724 | 293 | ||
725 | /***************************************************************************** | 294 | /***************************************************************************** |
726 | * XOR1 | 295 | * XOR1 |
727 | ****************************************************************************/ | 296 | ****************************************************************************/ |
728 | static struct resource kirkwood_xor1_shared_resources[] = { | ||
729 | { | ||
730 | .name = "xor 1 low", | ||
731 | .start = XOR1_PHYS_BASE, | ||
732 | .end = XOR1_PHYS_BASE + 0xff, | ||
733 | .flags = IORESOURCE_MEM, | ||
734 | }, { | ||
735 | .name = "xor 1 high", | ||
736 | .start = XOR1_HIGH_PHYS_BASE, | ||
737 | .end = XOR1_HIGH_PHYS_BASE + 0xff, | ||
738 | .flags = IORESOURCE_MEM, | ||
739 | }, | ||
740 | }; | ||
741 | |||
742 | static struct platform_device kirkwood_xor1_shared = { | ||
743 | .name = MV_XOR_SHARED_NAME, | ||
744 | .id = 1, | ||
745 | .dev = { | ||
746 | .platform_data = &kirkwood_xor_shared_data, | ||
747 | }, | ||
748 | .num_resources = ARRAY_SIZE(kirkwood_xor1_shared_resources), | ||
749 | .resource = kirkwood_xor1_shared_resources, | ||
750 | }; | ||
751 | |||
752 | static struct resource kirkwood_xor10_resources[] = { | ||
753 | [0] = { | ||
754 | .start = IRQ_KIRKWOOD_XOR_10, | ||
755 | .end = IRQ_KIRKWOOD_XOR_10, | ||
756 | .flags = IORESOURCE_IRQ, | ||
757 | }, | ||
758 | }; | ||
759 | |||
760 | static struct mv_xor_platform_data kirkwood_xor10_data = { | ||
761 | .shared = &kirkwood_xor1_shared, | ||
762 | .hw_id = 0, | ||
763 | .pool_size = PAGE_SIZE, | ||
764 | }; | ||
765 | |||
766 | static struct platform_device kirkwood_xor10_channel = { | ||
767 | .name = MV_XOR_NAME, | ||
768 | .id = 2, | ||
769 | .num_resources = ARRAY_SIZE(kirkwood_xor10_resources), | ||
770 | .resource = kirkwood_xor10_resources, | ||
771 | .dev = { | ||
772 | .dma_mask = &kirkwood_xor_dmamask, | ||
773 | .coherent_dma_mask = DMA_BIT_MASK(64), | ||
774 | .platform_data = &kirkwood_xor10_data, | ||
775 | }, | ||
776 | }; | ||
777 | |||
778 | static struct resource kirkwood_xor11_resources[] = { | ||
779 | [0] = { | ||
780 | .start = IRQ_KIRKWOOD_XOR_11, | ||
781 | .end = IRQ_KIRKWOOD_XOR_11, | ||
782 | .flags = IORESOURCE_IRQ, | ||
783 | }, | ||
784 | }; | ||
785 | |||
786 | static struct mv_xor_platform_data kirkwood_xor11_data = { | ||
787 | .shared = &kirkwood_xor1_shared, | ||
788 | .hw_id = 1, | ||
789 | .pool_size = PAGE_SIZE, | ||
790 | }; | ||
791 | |||
792 | static struct platform_device kirkwood_xor11_channel = { | ||
793 | .name = MV_XOR_NAME, | ||
794 | .id = 3, | ||
795 | .num_resources = ARRAY_SIZE(kirkwood_xor11_resources), | ||
796 | .resource = kirkwood_xor11_resources, | ||
797 | .dev = { | ||
798 | .dma_mask = &kirkwood_xor_dmamask, | ||
799 | .coherent_dma_mask = DMA_BIT_MASK(64), | ||
800 | .platform_data = &kirkwood_xor11_data, | ||
801 | }, | ||
802 | }; | ||
803 | |||
804 | static void __init kirkwood_xor1_init(void) | 297 | static void __init kirkwood_xor1_init(void) |
805 | { | 298 | { |
806 | kirkwood_clk_ctrl |= CGC_XOR1; | 299 | kirkwood_clk_ctrl |= CGC_XOR1; |
807 | platform_device_register(&kirkwood_xor1_shared); | ||
808 | 300 | ||
809 | /* | 301 | orion_xor1_init(XOR1_PHYS_BASE, XOR1_HIGH_PHYS_BASE, |
810 | * two engines can't do memset simultaneously, this limitation | 302 | IRQ_KIRKWOOD_XOR_10, IRQ_KIRKWOOD_XOR_11); |
811 | * satisfied by removing memset support from one of the engines. | ||
812 | */ | ||
813 | dma_cap_set(DMA_MEMCPY, kirkwood_xor10_data.cap_mask); | ||
814 | dma_cap_set(DMA_XOR, kirkwood_xor10_data.cap_mask); | ||
815 | platform_device_register(&kirkwood_xor10_channel); | ||
816 | |||
817 | dma_cap_set(DMA_MEMCPY, kirkwood_xor11_data.cap_mask); | ||
818 | dma_cap_set(DMA_MEMSET, kirkwood_xor11_data.cap_mask); | ||
819 | dma_cap_set(DMA_XOR, kirkwood_xor11_data.cap_mask); | ||
820 | platform_device_register(&kirkwood_xor11_channel); | ||
821 | } | 303 | } |
822 | 304 | ||
823 | 305 | ||
824 | /***************************************************************************** | 306 | /***************************************************************************** |
825 | * Watchdog | 307 | * Watchdog |
826 | ****************************************************************************/ | 308 | ****************************************************************************/ |
827 | static struct orion_wdt_platform_data kirkwood_wdt_data = { | ||
828 | .tclk = 0, | ||
829 | }; | ||
830 | |||
831 | static struct platform_device kirkwood_wdt_device = { | ||
832 | .name = "orion_wdt", | ||
833 | .id = -1, | ||
834 | .dev = { | ||
835 | .platform_data = &kirkwood_wdt_data, | ||
836 | }, | ||
837 | .num_resources = 0, | ||
838 | }; | ||
839 | |||
840 | static void __init kirkwood_wdt_init(void) | 309 | static void __init kirkwood_wdt_init(void) |
841 | { | 310 | { |
842 | kirkwood_wdt_data.tclk = kirkwood_tclk; | 311 | orion_wdt_init(kirkwood_tclk); |
843 | platform_device_register(&kirkwood_wdt_device); | ||
844 | } | 312 | } |
845 | 313 | ||
846 | 314 | ||
@@ -984,11 +452,6 @@ void __init kirkwood_init(void) | |||
984 | { | 452 | { |
985 | printk(KERN_INFO "Kirkwood: %s, TCLK=%d.\n", | 453 | printk(KERN_INFO "Kirkwood: %s, TCLK=%d.\n", |
986 | kirkwood_id(), kirkwood_tclk); | 454 | kirkwood_id(), kirkwood_tclk); |
987 | kirkwood_ge00_shared_data.t_clk = kirkwood_tclk; | ||
988 | kirkwood_ge01_shared_data.t_clk = kirkwood_tclk; | ||
989 | kirkwood_spi_plat_data.tclk = kirkwood_tclk; | ||
990 | kirkwood_uart0_data[0].uartclk = kirkwood_tclk; | ||
991 | kirkwood_uart1_data[0].uartclk = kirkwood_tclk; | ||
992 | kirkwood_i2s_data.tclk = kirkwood_tclk; | 455 | kirkwood_i2s_data.tclk = kirkwood_tclk; |
993 | 456 | ||
994 | /* | 457 | /* |
diff --git a/arch/arm/mach-kirkwood/include/mach/irqs.h b/arch/arm/mach-kirkwood/include/mach/irqs.h index 9da2eb59180b..2bf8161e3b51 100644 --- a/arch/arm/mach-kirkwood/include/mach/irqs.h +++ b/arch/arm/mach-kirkwood/include/mach/irqs.h | |||
@@ -51,6 +51,7 @@ | |||
51 | #define IRQ_KIRKWOOD_GPIO_HIGH_16_23 41 | 51 | #define IRQ_KIRKWOOD_GPIO_HIGH_16_23 41 |
52 | #define IRQ_KIRKWOOD_GE00_ERR 46 | 52 | #define IRQ_KIRKWOOD_GE00_ERR 46 |
53 | #define IRQ_KIRKWOOD_GE01_ERR 47 | 53 | #define IRQ_KIRKWOOD_GE01_ERR 47 |
54 | #define IRQ_KIRKWOOD_RTC 53 | ||
54 | 55 | ||
55 | /* | 56 | /* |
56 | * KIRKWOOD General Purpose Pins | 57 | * KIRKWOOD General Purpose Pins |
diff --git a/arch/arm/mach-kirkwood/mpp.c b/arch/arm/mach-kirkwood/mpp.c index 7ce201848067..b0a7d979a8ed 100644 --- a/arch/arm/mach-kirkwood/mpp.c +++ b/arch/arm/mach-kirkwood/mpp.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/io.h> | 14 | #include <linux/io.h> |
15 | #include <asm/gpio.h> | 15 | #include <asm/gpio.h> |
16 | #include <mach/hardware.h> | 16 | #include <mach/hardware.h> |
17 | #include <plat/mpp.h> | ||
17 | #include "common.h" | 18 | #include "common.h" |
18 | #include "mpp.h" | 19 | #include "mpp.h" |
19 | 20 | ||
@@ -36,61 +37,8 @@ static unsigned int __init kirkwood_variant(void) | |||
36 | return 0; | 37 | return 0; |
37 | } | 38 | } |
38 | 39 | ||
39 | #define MPP_CTRL(i) (DEV_BUS_VIRT_BASE + (i) * 4) | ||
40 | #define MPP_NR_REGS (1 + MPP_MAX/8) | ||
41 | |||
42 | void __init kirkwood_mpp_conf(unsigned int *mpp_list) | 40 | void __init kirkwood_mpp_conf(unsigned int *mpp_list) |
43 | { | 41 | { |
44 | u32 mpp_ctrl[MPP_NR_REGS]; | 42 | orion_mpp_conf(mpp_list, kirkwood_variant(), |
45 | unsigned int variant_mask; | 43 | MPP_MAX, DEV_BUS_VIRT_BASE); |
46 | int i; | ||
47 | |||
48 | variant_mask = kirkwood_variant(); | ||
49 | if (!variant_mask) | ||
50 | return; | ||
51 | |||
52 | printk(KERN_DEBUG "initial MPP regs:"); | ||
53 | for (i = 0; i < MPP_NR_REGS; i++) { | ||
54 | mpp_ctrl[i] = readl(MPP_CTRL(i)); | ||
55 | printk(" %08x", mpp_ctrl[i]); | ||
56 | } | ||
57 | printk("\n"); | ||
58 | |||
59 | for ( ; *mpp_list; mpp_list++) { | ||
60 | unsigned int num = MPP_NUM(*mpp_list); | ||
61 | unsigned int sel = MPP_SEL(*mpp_list); | ||
62 | int shift, gpio_mode; | ||
63 | |||
64 | if (num > MPP_MAX) { | ||
65 | printk(KERN_ERR "kirkwood_mpp_conf: invalid MPP " | ||
66 | "number (%u)\n", num); | ||
67 | continue; | ||
68 | } | ||
69 | if (!(*mpp_list & variant_mask)) { | ||
70 | printk(KERN_WARNING | ||
71 | "kirkwood_mpp_conf: requested MPP%u config " | ||
72 | "unavailable on this hardware\n", num); | ||
73 | continue; | ||
74 | } | ||
75 | |||
76 | shift = (num & 7) << 2; | ||
77 | mpp_ctrl[num / 8] &= ~(0xf << shift); | ||
78 | mpp_ctrl[num / 8] |= sel << shift; | ||
79 | |||
80 | gpio_mode = 0; | ||
81 | if (*mpp_list & MPP_INPUT_MASK) | ||
82 | gpio_mode |= GPIO_INPUT_OK; | ||
83 | if (*mpp_list & MPP_OUTPUT_MASK) | ||
84 | gpio_mode |= GPIO_OUTPUT_OK; | ||
85 | if (sel != 0) | ||
86 | gpio_mode = 0; | ||
87 | orion_gpio_set_valid(num, gpio_mode); | ||
88 | } | ||
89 | |||
90 | printk(KERN_DEBUG " final MPP regs:"); | ||
91 | for (i = 0; i < MPP_NR_REGS; i++) { | ||
92 | writel(mpp_ctrl[i], MPP_CTRL(i)); | ||
93 | printk(" %08x", mpp_ctrl[i]); | ||
94 | } | ||
95 | printk("\n"); | ||
96 | } | 44 | } |
diff --git a/arch/arm/mach-kirkwood/mpp.h b/arch/arm/mach-kirkwood/mpp.h index 9b0a94d85c3e..ac787957e2d9 100644 --- a/arch/arm/mach-kirkwood/mpp.h +++ b/arch/arm/mach-kirkwood/mpp.h | |||
@@ -22,14 +22,8 @@ | |||
22 | /* available on F6281 */ ((!!(_F6281)) << 17) | \ | 22 | /* available on F6281 */ ((!!(_F6281)) << 17) | \ |
23 | /* available on F6282 */ ((!!(_F6282)) << 18)) | 23 | /* available on F6282 */ ((!!(_F6282)) << 18)) |
24 | 24 | ||
25 | #define MPP_NUM(x) ((x) & 0xff) | ||
26 | #define MPP_SEL(x) (((x) >> 8) & 0xf) | ||
27 | |||
28 | /* num sel i o 6180 6190 6192 6281 6282 */ | 25 | /* num sel i o 6180 6190 6192 6281 6282 */ |
29 | 26 | ||
30 | #define MPP_INPUT_MASK MPP( 0, 0x0, 1, 0, 0, 0, 0, 0, 0 ) | ||
31 | #define MPP_OUTPUT_MASK MPP( 0, 0x0, 0, 1, 0, 0, 0, 0, 0 ) | ||
32 | |||
33 | #define MPP_F6180_MASK MPP( 0, 0x0, 0, 0, 1, 0, 0, 0, 0 ) | 27 | #define MPP_F6180_MASK MPP( 0, 0x0, 0, 0, 1, 0, 0, 0, 0 ) |
34 | #define MPP_F6190_MASK MPP( 0, 0x0, 0, 0, 0, 1, 0, 0, 0 ) | 28 | #define MPP_F6190_MASK MPP( 0, 0x0, 0, 0, 0, 1, 0, 0, 0 ) |
35 | #define MPP_F6192_MASK MPP( 0, 0x0, 0, 0, 0, 0, 1, 0, 0 ) | 29 | #define MPP_F6192_MASK MPP( 0, 0x0, 0, 0, 0, 0, 1, 0, 0 ) |
diff --git a/arch/arm/mach-loki/common.c b/arch/arm/mach-loki/common.c index e41e909cf8f4..5f02664db812 100644 --- a/arch/arm/mach-loki/common.c +++ b/arch/arm/mach-loki/common.c | |||
@@ -13,7 +13,7 @@ | |||
13 | #include <linux/platform_device.h> | 13 | #include <linux/platform_device.h> |
14 | #include <linux/serial_8250.h> | 14 | #include <linux/serial_8250.h> |
15 | #include <linux/mbus.h> | 15 | #include <linux/mbus.h> |
16 | #include <linux/mv643xx_eth.h> | 16 | #include <linux/dma-mapping.h> |
17 | #include <asm/page.h> | 17 | #include <asm/page.h> |
18 | #include <asm/timex.h> | 18 | #include <asm/timex.h> |
19 | #include <asm/mach/map.h> | 19 | #include <asm/mach/map.h> |
@@ -22,6 +22,7 @@ | |||
22 | #include <mach/loki.h> | 22 | #include <mach/loki.h> |
23 | #include <plat/orion_nand.h> | 23 | #include <plat/orion_nand.h> |
24 | #include <plat/time.h> | 24 | #include <plat/time.h> |
25 | #include <plat/common.h> | ||
25 | #include "common.h" | 26 | #include "common.h" |
26 | 27 | ||
27 | /***************************************************************************** | 28 | /***************************************************************************** |
@@ -43,116 +44,28 @@ void __init loki_map_io(void) | |||
43 | 44 | ||
44 | 45 | ||
45 | /***************************************************************************** | 46 | /***************************************************************************** |
46 | * GE0 | 47 | * GE00 |
47 | ****************************************************************************/ | 48 | ****************************************************************************/ |
48 | struct mv643xx_eth_shared_platform_data loki_ge0_shared_data = { | ||
49 | .t_clk = LOKI_TCLK, | ||
50 | .dram = &loki_mbus_dram_info, | ||
51 | }; | ||
52 | |||
53 | static struct resource loki_ge0_shared_resources[] = { | ||
54 | { | ||
55 | .name = "ge0 base", | ||
56 | .start = GE0_PHYS_BASE + 0x2000, | ||
57 | .end = GE0_PHYS_BASE + 0x3fff, | ||
58 | .flags = IORESOURCE_MEM, | ||
59 | }, | ||
60 | }; | ||
61 | |||
62 | static struct platform_device loki_ge0_shared = { | ||
63 | .name = MV643XX_ETH_SHARED_NAME, | ||
64 | .id = 0, | ||
65 | .dev = { | ||
66 | .platform_data = &loki_ge0_shared_data, | ||
67 | }, | ||
68 | .num_resources = 1, | ||
69 | .resource = loki_ge0_shared_resources, | ||
70 | }; | ||
71 | |||
72 | static struct resource loki_ge0_resources[] = { | ||
73 | { | ||
74 | .name = "ge0 irq", | ||
75 | .start = IRQ_LOKI_GBE_A_INT, | ||
76 | .end = IRQ_LOKI_GBE_A_INT, | ||
77 | .flags = IORESOURCE_IRQ, | ||
78 | }, | ||
79 | }; | ||
80 | |||
81 | static struct platform_device loki_ge0 = { | ||
82 | .name = MV643XX_ETH_NAME, | ||
83 | .id = 0, | ||
84 | .num_resources = 1, | ||
85 | .resource = loki_ge0_resources, | ||
86 | .dev = { | ||
87 | .coherent_dma_mask = 0xffffffff, | ||
88 | }, | ||
89 | }; | ||
90 | |||
91 | void __init loki_ge0_init(struct mv643xx_eth_platform_data *eth_data) | 49 | void __init loki_ge0_init(struct mv643xx_eth_platform_data *eth_data) |
92 | { | 50 | { |
93 | eth_data->shared = &loki_ge0_shared; | ||
94 | loki_ge0.dev.platform_data = eth_data; | ||
95 | |||
96 | writel(0x00079220, GE0_VIRT_BASE + 0x20b0); | 51 | writel(0x00079220, GE0_VIRT_BASE + 0x20b0); |
97 | platform_device_register(&loki_ge0_shared); | 52 | |
98 | platform_device_register(&loki_ge0); | 53 | orion_ge00_init(eth_data, &loki_mbus_dram_info, |
54 | GE0_PHYS_BASE, IRQ_LOKI_GBE_A_INT, | ||
55 | 0, LOKI_TCLK); | ||
99 | } | 56 | } |
100 | 57 | ||
101 | 58 | ||
102 | /***************************************************************************** | 59 | /***************************************************************************** |
103 | * GE1 | 60 | * GE01 |
104 | ****************************************************************************/ | 61 | ****************************************************************************/ |
105 | struct mv643xx_eth_shared_platform_data loki_ge1_shared_data = { | ||
106 | .t_clk = LOKI_TCLK, | ||
107 | .dram = &loki_mbus_dram_info, | ||
108 | }; | ||
109 | |||
110 | static struct resource loki_ge1_shared_resources[] = { | ||
111 | { | ||
112 | .name = "ge1 base", | ||
113 | .start = GE1_PHYS_BASE + 0x2000, | ||
114 | .end = GE1_PHYS_BASE + 0x3fff, | ||
115 | .flags = IORESOURCE_MEM, | ||
116 | }, | ||
117 | }; | ||
118 | |||
119 | static struct platform_device loki_ge1_shared = { | ||
120 | .name = MV643XX_ETH_SHARED_NAME, | ||
121 | .id = 1, | ||
122 | .dev = { | ||
123 | .platform_data = &loki_ge1_shared_data, | ||
124 | }, | ||
125 | .num_resources = 1, | ||
126 | .resource = loki_ge1_shared_resources, | ||
127 | }; | ||
128 | |||
129 | static struct resource loki_ge1_resources[] = { | ||
130 | { | ||
131 | .name = "ge1 irq", | ||
132 | .start = IRQ_LOKI_GBE_B_INT, | ||
133 | .end = IRQ_LOKI_GBE_B_INT, | ||
134 | .flags = IORESOURCE_IRQ, | ||
135 | }, | ||
136 | }; | ||
137 | |||
138 | static struct platform_device loki_ge1 = { | ||
139 | .name = MV643XX_ETH_NAME, | ||
140 | .id = 1, | ||
141 | .num_resources = 1, | ||
142 | .resource = loki_ge1_resources, | ||
143 | .dev = { | ||
144 | .coherent_dma_mask = 0xffffffff, | ||
145 | }, | ||
146 | }; | ||
147 | |||
148 | void __init loki_ge1_init(struct mv643xx_eth_platform_data *eth_data) | 62 | void __init loki_ge1_init(struct mv643xx_eth_platform_data *eth_data) |
149 | { | 63 | { |
150 | eth_data->shared = &loki_ge1_shared; | ||
151 | loki_ge1.dev.platform_data = eth_data; | ||
152 | |||
153 | writel(0x00079220, GE1_VIRT_BASE + 0x20b0); | 64 | writel(0x00079220, GE1_VIRT_BASE + 0x20b0); |
154 | platform_device_register(&loki_ge1_shared); | 65 | |
155 | platform_device_register(&loki_ge1); | 66 | orion_ge01_init(eth_data, &loki_mbus_dram_info, |
67 | GE1_PHYS_BASE, IRQ_LOKI_GBE_B_INT, | ||
68 | 0, LOKI_TCLK); | ||
156 | } | 69 | } |
157 | 70 | ||
158 | 71 | ||
@@ -187,7 +100,7 @@ static struct platform_device loki_sas = { | |||
187 | .name = "mvsas", | 100 | .name = "mvsas", |
188 | .id = 0, | 101 | .id = 0, |
189 | .dev = { | 102 | .dev = { |
190 | .coherent_dma_mask = 0xffffffff, | 103 | .coherent_dma_mask = DMA_BIT_MASK(32), |
191 | }, | 104 | }, |
192 | .num_resources = ARRAY_SIZE(loki_sas_resources), | 105 | .num_resources = ARRAY_SIZE(loki_sas_resources), |
193 | .resource = loki_sas_resources, | 106 | .resource = loki_sas_resources, |
@@ -203,88 +116,19 @@ void __init loki_sas_init(void) | |||
203 | /***************************************************************************** | 116 | /***************************************************************************** |
204 | * UART0 | 117 | * UART0 |
205 | ****************************************************************************/ | 118 | ****************************************************************************/ |
206 | static struct plat_serial8250_port loki_uart0_data[] = { | ||
207 | { | ||
208 | .mapbase = UART0_PHYS_BASE, | ||
209 | .membase = (char *)UART0_VIRT_BASE, | ||
210 | .irq = IRQ_LOKI_UART0, | ||
211 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, | ||
212 | .iotype = UPIO_MEM, | ||
213 | .regshift = 2, | ||
214 | .uartclk = LOKI_TCLK, | ||
215 | }, { | ||
216 | }, | ||
217 | }; | ||
218 | |||
219 | static struct resource loki_uart0_resources[] = { | ||
220 | { | ||
221 | .start = UART0_PHYS_BASE, | ||
222 | .end = UART0_PHYS_BASE + 0xff, | ||
223 | .flags = IORESOURCE_MEM, | ||
224 | }, { | ||
225 | .start = IRQ_LOKI_UART0, | ||
226 | .end = IRQ_LOKI_UART0, | ||
227 | .flags = IORESOURCE_IRQ, | ||
228 | }, | ||
229 | }; | ||
230 | |||
231 | static struct platform_device loki_uart0 = { | ||
232 | .name = "serial8250", | ||
233 | .id = 0, | ||
234 | .dev = { | ||
235 | .platform_data = loki_uart0_data, | ||
236 | }, | ||
237 | .resource = loki_uart0_resources, | ||
238 | .num_resources = ARRAY_SIZE(loki_uart0_resources), | ||
239 | }; | ||
240 | |||
241 | void __init loki_uart0_init(void) | 119 | void __init loki_uart0_init(void) |
242 | { | 120 | { |
243 | platform_device_register(&loki_uart0); | 121 | orion_uart0_init(UART0_VIRT_BASE, UART0_PHYS_BASE, |
122 | IRQ_LOKI_UART0, LOKI_TCLK); | ||
244 | } | 123 | } |
245 | 124 | ||
246 | |||
247 | /***************************************************************************** | 125 | /***************************************************************************** |
248 | * UART1 | 126 | * UART1 |
249 | ****************************************************************************/ | 127 | ****************************************************************************/ |
250 | static struct plat_serial8250_port loki_uart1_data[] = { | ||
251 | { | ||
252 | .mapbase = UART1_PHYS_BASE, | ||
253 | .membase = (char *)UART1_VIRT_BASE, | ||
254 | .irq = IRQ_LOKI_UART1, | ||
255 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, | ||
256 | .iotype = UPIO_MEM, | ||
257 | .regshift = 2, | ||
258 | .uartclk = LOKI_TCLK, | ||
259 | }, { | ||
260 | }, | ||
261 | }; | ||
262 | |||
263 | static struct resource loki_uart1_resources[] = { | ||
264 | { | ||
265 | .start = UART1_PHYS_BASE, | ||
266 | .end = UART1_PHYS_BASE + 0xff, | ||
267 | .flags = IORESOURCE_MEM, | ||
268 | }, { | ||
269 | .start = IRQ_LOKI_UART1, | ||
270 | .end = IRQ_LOKI_UART1, | ||
271 | .flags = IORESOURCE_IRQ, | ||
272 | }, | ||
273 | }; | ||
274 | |||
275 | static struct platform_device loki_uart1 = { | ||
276 | .name = "serial8250", | ||
277 | .id = 1, | ||
278 | .dev = { | ||
279 | .platform_data = loki_uart1_data, | ||
280 | }, | ||
281 | .resource = loki_uart1_resources, | ||
282 | .num_resources = ARRAY_SIZE(loki_uart1_resources), | ||
283 | }; | ||
284 | |||
285 | void __init loki_uart1_init(void) | 128 | void __init loki_uart1_init(void) |
286 | { | 129 | { |
287 | platform_device_register(&loki_uart1); | 130 | orion_uart1_init(UART1_VIRT_BASE, UART1_PHYS_BASE, |
131 | IRQ_LOKI_UART1, LOKI_TCLK); | ||
288 | } | 132 | } |
289 | 133 | ||
290 | 134 | ||
diff --git a/arch/arm/mach-mmp/include/mach/uncompress.h b/arch/arm/mach-mmp/include/mach/uncompress.h index 85bd8a2d84b5..d6daeb7e4ef1 100644 --- a/arch/arm/mach-mmp/include/mach/uncompress.h +++ b/arch/arm/mach-mmp/include/mach/uncompress.h | |||
@@ -14,7 +14,7 @@ | |||
14 | #define UART2_BASE (APB_PHYS_BASE + 0x17000) | 14 | #define UART2_BASE (APB_PHYS_BASE + 0x17000) |
15 | #define UART3_BASE (APB_PHYS_BASE + 0x18000) | 15 | #define UART3_BASE (APB_PHYS_BASE + 0x18000) |
16 | 16 | ||
17 | static volatile unsigned long *UART; | 17 | volatile unsigned long *UART; |
18 | 18 | ||
19 | static inline void putc(char c) | 19 | static inline void putc(char c) |
20 | { | 20 | { |
diff --git a/arch/arm/mach-msm/gpio-v2.c b/arch/arm/mach-msm/gpio-v2.c index 56a964e52ad3..cc9c4fd7cccc 100644 --- a/arch/arm/mach-msm/gpio-v2.c +++ b/arch/arm/mach-msm/gpio-v2.c | |||
@@ -27,6 +27,9 @@ | |||
27 | #include <linux/module.h> | 27 | #include <linux/module.h> |
28 | #include <linux/platform_device.h> | 28 | #include <linux/platform_device.h> |
29 | #include <linux/spinlock.h> | 29 | #include <linux/spinlock.h> |
30 | |||
31 | #include <asm/mach/irq.h> | ||
32 | |||
30 | #include <mach/msm_iomap.h> | 33 | #include <mach/msm_iomap.h> |
31 | #include "gpiomux.h" | 34 | #include "gpiomux.h" |
32 | 35 | ||
@@ -309,8 +312,10 @@ static int msm_gpio_irq_set_type(struct irq_data *d, unsigned int flow_type) | |||
309 | */ | 312 | */ |
310 | static void msm_summary_irq_handler(unsigned int irq, struct irq_desc *desc) | 313 | static void msm_summary_irq_handler(unsigned int irq, struct irq_desc *desc) |
311 | { | 314 | { |
312 | struct irq_data *data = irq_desc_get_irq_data(desc); | ||
313 | unsigned long i; | 315 | unsigned long i; |
316 | struct irq_chip *chip = irq_desc_get_chip(desc); | ||
317 | |||
318 | chained_irq_enter(chip, desc); | ||
314 | 319 | ||
315 | for (i = find_first_bit(msm_gpio.enabled_irqs, NR_GPIO_IRQS); | 320 | for (i = find_first_bit(msm_gpio.enabled_irqs, NR_GPIO_IRQS); |
316 | i < NR_GPIO_IRQS; | 321 | i < NR_GPIO_IRQS; |
@@ -319,7 +324,8 @@ static void msm_summary_irq_handler(unsigned int irq, struct irq_desc *desc) | |||
319 | generic_handle_irq(msm_gpio_to_irq(&msm_gpio.gpio_chip, | 324 | generic_handle_irq(msm_gpio_to_irq(&msm_gpio.gpio_chip, |
320 | i)); | 325 | i)); |
321 | } | 326 | } |
322 | data->chip->irq_ack(data); | 327 | |
328 | chained_irq_exit(chip, desc); | ||
323 | } | 329 | } |
324 | 330 | ||
325 | static int msm_gpio_irq_set_wake(struct irq_data *d, unsigned int on) | 331 | static int msm_gpio_irq_set_wake(struct irq_data *d, unsigned int on) |
diff --git a/arch/arm/mach-mv78xx0/common.c b/arch/arm/mach-mv78xx0/common.c index 44fb4e55be0d..23d3980ef59d 100644 --- a/arch/arm/mach-mv78xx0/common.c +++ b/arch/arm/mach-mv78xx0/common.c | |||
@@ -13,8 +13,6 @@ | |||
13 | #include <linux/platform_device.h> | 13 | #include <linux/platform_device.h> |
14 | #include <linux/serial_8250.h> | 14 | #include <linux/serial_8250.h> |
15 | #include <linux/mbus.h> | 15 | #include <linux/mbus.h> |
16 | #include <linux/mv643xx_eth.h> | ||
17 | #include <linux/mv643xx_i2c.h> | ||
18 | #include <linux/ata_platform.h> | 16 | #include <linux/ata_platform.h> |
19 | #include <linux/ethtool.h> | 17 | #include <linux/ethtool.h> |
20 | #include <asm/mach/map.h> | 18 | #include <asm/mach/map.h> |
@@ -22,11 +20,12 @@ | |||
22 | #include <mach/mv78xx0.h> | 20 | #include <mach/mv78xx0.h> |
23 | #include <mach/bridge-regs.h> | 21 | #include <mach/bridge-regs.h> |
24 | #include <plat/cache-feroceon-l2.h> | 22 | #include <plat/cache-feroceon-l2.h> |
25 | #include <plat/ehci-orion.h> | ||
26 | #include <plat/orion_nand.h> | 23 | #include <plat/orion_nand.h> |
27 | #include <plat/time.h> | 24 | #include <plat/time.h> |
25 | #include <plat/common.h> | ||
28 | #include "common.h" | 26 | #include "common.h" |
29 | 27 | ||
28 | static int get_tclk(void); | ||
30 | 29 | ||
31 | /***************************************************************************** | 30 | /***************************************************************************** |
32 | * Common bits | 31 | * Common bits |
@@ -168,285 +167,62 @@ void __init mv78xx0_map_io(void) | |||
168 | /***************************************************************************** | 167 | /***************************************************************************** |
169 | * EHCI | 168 | * EHCI |
170 | ****************************************************************************/ | 169 | ****************************************************************************/ |
171 | static struct orion_ehci_data mv78xx0_ehci_data = { | ||
172 | .dram = &mv78xx0_mbus_dram_info, | ||
173 | .phy_version = EHCI_PHY_NA, | ||
174 | }; | ||
175 | |||
176 | static u64 ehci_dmamask = 0xffffffffUL; | ||
177 | |||
178 | |||
179 | /***************************************************************************** | ||
180 | * EHCI0 | ||
181 | ****************************************************************************/ | ||
182 | static struct resource mv78xx0_ehci0_resources[] = { | ||
183 | { | ||
184 | .start = USB0_PHYS_BASE, | ||
185 | .end = USB0_PHYS_BASE + 0x0fff, | ||
186 | .flags = IORESOURCE_MEM, | ||
187 | }, { | ||
188 | .start = IRQ_MV78XX0_USB_0, | ||
189 | .end = IRQ_MV78XX0_USB_0, | ||
190 | .flags = IORESOURCE_IRQ, | ||
191 | }, | ||
192 | }; | ||
193 | |||
194 | static struct platform_device mv78xx0_ehci0 = { | ||
195 | .name = "orion-ehci", | ||
196 | .id = 0, | ||
197 | .dev = { | ||
198 | .dma_mask = &ehci_dmamask, | ||
199 | .coherent_dma_mask = 0xffffffff, | ||
200 | .platform_data = &mv78xx0_ehci_data, | ||
201 | }, | ||
202 | .resource = mv78xx0_ehci0_resources, | ||
203 | .num_resources = ARRAY_SIZE(mv78xx0_ehci0_resources), | ||
204 | }; | ||
205 | |||
206 | void __init mv78xx0_ehci0_init(void) | 170 | void __init mv78xx0_ehci0_init(void) |
207 | { | 171 | { |
208 | platform_device_register(&mv78xx0_ehci0); | 172 | orion_ehci_init(&mv78xx0_mbus_dram_info, |
173 | USB0_PHYS_BASE, IRQ_MV78XX0_USB_0); | ||
209 | } | 174 | } |
210 | 175 | ||
211 | 176 | ||
212 | /***************************************************************************** | 177 | /***************************************************************************** |
213 | * EHCI1 | 178 | * EHCI1 |
214 | ****************************************************************************/ | 179 | ****************************************************************************/ |
215 | static struct resource mv78xx0_ehci1_resources[] = { | ||
216 | { | ||
217 | .start = USB1_PHYS_BASE, | ||
218 | .end = USB1_PHYS_BASE + 0x0fff, | ||
219 | .flags = IORESOURCE_MEM, | ||
220 | }, { | ||
221 | .start = IRQ_MV78XX0_USB_1, | ||
222 | .end = IRQ_MV78XX0_USB_1, | ||
223 | .flags = IORESOURCE_IRQ, | ||
224 | }, | ||
225 | }; | ||
226 | |||
227 | static struct platform_device mv78xx0_ehci1 = { | ||
228 | .name = "orion-ehci", | ||
229 | .id = 1, | ||
230 | .dev = { | ||
231 | .dma_mask = &ehci_dmamask, | ||
232 | .coherent_dma_mask = 0xffffffff, | ||
233 | .platform_data = &mv78xx0_ehci_data, | ||
234 | }, | ||
235 | .resource = mv78xx0_ehci1_resources, | ||
236 | .num_resources = ARRAY_SIZE(mv78xx0_ehci1_resources), | ||
237 | }; | ||
238 | |||
239 | void __init mv78xx0_ehci1_init(void) | 180 | void __init mv78xx0_ehci1_init(void) |
240 | { | 181 | { |
241 | platform_device_register(&mv78xx0_ehci1); | 182 | orion_ehci_1_init(&mv78xx0_mbus_dram_info, |
183 | USB1_PHYS_BASE, IRQ_MV78XX0_USB_1); | ||
242 | } | 184 | } |
243 | 185 | ||
244 | 186 | ||
245 | /***************************************************************************** | 187 | /***************************************************************************** |
246 | * EHCI2 | 188 | * EHCI2 |
247 | ****************************************************************************/ | 189 | ****************************************************************************/ |
248 | static struct resource mv78xx0_ehci2_resources[] = { | ||
249 | { | ||
250 | .start = USB2_PHYS_BASE, | ||
251 | .end = USB2_PHYS_BASE + 0x0fff, | ||
252 | .flags = IORESOURCE_MEM, | ||
253 | }, { | ||
254 | .start = IRQ_MV78XX0_USB_2, | ||
255 | .end = IRQ_MV78XX0_USB_2, | ||
256 | .flags = IORESOURCE_IRQ, | ||
257 | }, | ||
258 | }; | ||
259 | |||
260 | static struct platform_device mv78xx0_ehci2 = { | ||
261 | .name = "orion-ehci", | ||
262 | .id = 2, | ||
263 | .dev = { | ||
264 | .dma_mask = &ehci_dmamask, | ||
265 | .coherent_dma_mask = 0xffffffff, | ||
266 | .platform_data = &mv78xx0_ehci_data, | ||
267 | }, | ||
268 | .resource = mv78xx0_ehci2_resources, | ||
269 | .num_resources = ARRAY_SIZE(mv78xx0_ehci2_resources), | ||
270 | }; | ||
271 | |||
272 | void __init mv78xx0_ehci2_init(void) | 190 | void __init mv78xx0_ehci2_init(void) |
273 | { | 191 | { |
274 | platform_device_register(&mv78xx0_ehci2); | 192 | orion_ehci_2_init(&mv78xx0_mbus_dram_info, |
193 | USB2_PHYS_BASE, IRQ_MV78XX0_USB_2); | ||
275 | } | 194 | } |
276 | 195 | ||
277 | 196 | ||
278 | /***************************************************************************** | 197 | /***************************************************************************** |
279 | * GE00 | 198 | * GE00 |
280 | ****************************************************************************/ | 199 | ****************************************************************************/ |
281 | struct mv643xx_eth_shared_platform_data mv78xx0_ge00_shared_data = { | ||
282 | .t_clk = 0, | ||
283 | .dram = &mv78xx0_mbus_dram_info, | ||
284 | }; | ||
285 | |||
286 | static struct resource mv78xx0_ge00_shared_resources[] = { | ||
287 | { | ||
288 | .name = "ge00 base", | ||
289 | .start = GE00_PHYS_BASE + 0x2000, | ||
290 | .end = GE00_PHYS_BASE + 0x3fff, | ||
291 | .flags = IORESOURCE_MEM, | ||
292 | }, { | ||
293 | .name = "ge err irq", | ||
294 | .start = IRQ_MV78XX0_GE_ERR, | ||
295 | .end = IRQ_MV78XX0_GE_ERR, | ||
296 | .flags = IORESOURCE_IRQ, | ||
297 | }, | ||
298 | }; | ||
299 | |||
300 | static struct platform_device mv78xx0_ge00_shared = { | ||
301 | .name = MV643XX_ETH_SHARED_NAME, | ||
302 | .id = 0, | ||
303 | .dev = { | ||
304 | .platform_data = &mv78xx0_ge00_shared_data, | ||
305 | }, | ||
306 | .num_resources = ARRAY_SIZE(mv78xx0_ge00_shared_resources), | ||
307 | .resource = mv78xx0_ge00_shared_resources, | ||
308 | }; | ||
309 | |||
310 | static struct resource mv78xx0_ge00_resources[] = { | ||
311 | { | ||
312 | .name = "ge00 irq", | ||
313 | .start = IRQ_MV78XX0_GE00_SUM, | ||
314 | .end = IRQ_MV78XX0_GE00_SUM, | ||
315 | .flags = IORESOURCE_IRQ, | ||
316 | }, | ||
317 | }; | ||
318 | |||
319 | static struct platform_device mv78xx0_ge00 = { | ||
320 | .name = MV643XX_ETH_NAME, | ||
321 | .id = 0, | ||
322 | .num_resources = 1, | ||
323 | .resource = mv78xx0_ge00_resources, | ||
324 | .dev = { | ||
325 | .coherent_dma_mask = 0xffffffff, | ||
326 | }, | ||
327 | }; | ||
328 | |||
329 | void __init mv78xx0_ge00_init(struct mv643xx_eth_platform_data *eth_data) | 200 | void __init mv78xx0_ge00_init(struct mv643xx_eth_platform_data *eth_data) |
330 | { | 201 | { |
331 | eth_data->shared = &mv78xx0_ge00_shared; | 202 | orion_ge00_init(eth_data, &mv78xx0_mbus_dram_info, |
332 | mv78xx0_ge00.dev.platform_data = eth_data; | 203 | GE00_PHYS_BASE, IRQ_MV78XX0_GE00_SUM, |
333 | 204 | IRQ_MV78XX0_GE_ERR, get_tclk()); | |
334 | platform_device_register(&mv78xx0_ge00_shared); | ||
335 | platform_device_register(&mv78xx0_ge00); | ||
336 | } | 205 | } |
337 | 206 | ||
338 | 207 | ||
339 | /***************************************************************************** | 208 | /***************************************************************************** |
340 | * GE01 | 209 | * GE01 |
341 | ****************************************************************************/ | 210 | ****************************************************************************/ |
342 | struct mv643xx_eth_shared_platform_data mv78xx0_ge01_shared_data = { | ||
343 | .t_clk = 0, | ||
344 | .dram = &mv78xx0_mbus_dram_info, | ||
345 | .shared_smi = &mv78xx0_ge00_shared, | ||
346 | }; | ||
347 | |||
348 | static struct resource mv78xx0_ge01_shared_resources[] = { | ||
349 | { | ||
350 | .name = "ge01 base", | ||
351 | .start = GE01_PHYS_BASE + 0x2000, | ||
352 | .end = GE01_PHYS_BASE + 0x3fff, | ||
353 | .flags = IORESOURCE_MEM, | ||
354 | }, | ||
355 | }; | ||
356 | |||
357 | static struct platform_device mv78xx0_ge01_shared = { | ||
358 | .name = MV643XX_ETH_SHARED_NAME, | ||
359 | .id = 1, | ||
360 | .dev = { | ||
361 | .platform_data = &mv78xx0_ge01_shared_data, | ||
362 | }, | ||
363 | .num_resources = 1, | ||
364 | .resource = mv78xx0_ge01_shared_resources, | ||
365 | }; | ||
366 | |||
367 | static struct resource mv78xx0_ge01_resources[] = { | ||
368 | { | ||
369 | .name = "ge01 irq", | ||
370 | .start = IRQ_MV78XX0_GE01_SUM, | ||
371 | .end = IRQ_MV78XX0_GE01_SUM, | ||
372 | .flags = IORESOURCE_IRQ, | ||
373 | }, | ||
374 | }; | ||
375 | |||
376 | static struct platform_device mv78xx0_ge01 = { | ||
377 | .name = MV643XX_ETH_NAME, | ||
378 | .id = 1, | ||
379 | .num_resources = 1, | ||
380 | .resource = mv78xx0_ge01_resources, | ||
381 | .dev = { | ||
382 | .coherent_dma_mask = 0xffffffff, | ||
383 | }, | ||
384 | }; | ||
385 | |||
386 | void __init mv78xx0_ge01_init(struct mv643xx_eth_platform_data *eth_data) | 211 | void __init mv78xx0_ge01_init(struct mv643xx_eth_platform_data *eth_data) |
387 | { | 212 | { |
388 | eth_data->shared = &mv78xx0_ge01_shared; | 213 | orion_ge01_init(eth_data, &mv78xx0_mbus_dram_info, |
389 | mv78xx0_ge01.dev.platform_data = eth_data; | 214 | GE01_PHYS_BASE, IRQ_MV78XX0_GE01_SUM, |
390 | 215 | NO_IRQ, get_tclk()); | |
391 | platform_device_register(&mv78xx0_ge01_shared); | ||
392 | platform_device_register(&mv78xx0_ge01); | ||
393 | } | 216 | } |
394 | 217 | ||
395 | 218 | ||
396 | /***************************************************************************** | 219 | /***************************************************************************** |
397 | * GE10 | 220 | * GE10 |
398 | ****************************************************************************/ | 221 | ****************************************************************************/ |
399 | struct mv643xx_eth_shared_platform_data mv78xx0_ge10_shared_data = { | ||
400 | .t_clk = 0, | ||
401 | .dram = &mv78xx0_mbus_dram_info, | ||
402 | .shared_smi = &mv78xx0_ge00_shared, | ||
403 | }; | ||
404 | |||
405 | static struct resource mv78xx0_ge10_shared_resources[] = { | ||
406 | { | ||
407 | .name = "ge10 base", | ||
408 | .start = GE10_PHYS_BASE + 0x2000, | ||
409 | .end = GE10_PHYS_BASE + 0x3fff, | ||
410 | .flags = IORESOURCE_MEM, | ||
411 | }, | ||
412 | }; | ||
413 | |||
414 | static struct platform_device mv78xx0_ge10_shared = { | ||
415 | .name = MV643XX_ETH_SHARED_NAME, | ||
416 | .id = 2, | ||
417 | .dev = { | ||
418 | .platform_data = &mv78xx0_ge10_shared_data, | ||
419 | }, | ||
420 | .num_resources = 1, | ||
421 | .resource = mv78xx0_ge10_shared_resources, | ||
422 | }; | ||
423 | |||
424 | static struct resource mv78xx0_ge10_resources[] = { | ||
425 | { | ||
426 | .name = "ge10 irq", | ||
427 | .start = IRQ_MV78XX0_GE10_SUM, | ||
428 | .end = IRQ_MV78XX0_GE10_SUM, | ||
429 | .flags = IORESOURCE_IRQ, | ||
430 | }, | ||
431 | }; | ||
432 | |||
433 | static struct platform_device mv78xx0_ge10 = { | ||
434 | .name = MV643XX_ETH_NAME, | ||
435 | .id = 2, | ||
436 | .num_resources = 1, | ||
437 | .resource = mv78xx0_ge10_resources, | ||
438 | .dev = { | ||
439 | .coherent_dma_mask = 0xffffffff, | ||
440 | }, | ||
441 | }; | ||
442 | |||
443 | void __init mv78xx0_ge10_init(struct mv643xx_eth_platform_data *eth_data) | 222 | void __init mv78xx0_ge10_init(struct mv643xx_eth_platform_data *eth_data) |
444 | { | 223 | { |
445 | u32 dev, rev; | 224 | u32 dev, rev; |
446 | 225 | ||
447 | eth_data->shared = &mv78xx0_ge10_shared; | ||
448 | mv78xx0_ge10.dev.platform_data = eth_data; | ||
449 | |||
450 | /* | 226 | /* |
451 | * On the Z0, ge10 and ge11 are internally connected back | 227 | * On the Z0, ge10 and ge11 are internally connected back |
452 | * to back, and not brought out. | 228 | * to back, and not brought out. |
@@ -458,65 +234,19 @@ void __init mv78xx0_ge10_init(struct mv643xx_eth_platform_data *eth_data) | |||
458 | eth_data->duplex = DUPLEX_FULL; | 234 | eth_data->duplex = DUPLEX_FULL; |
459 | } | 235 | } |
460 | 236 | ||
461 | platform_device_register(&mv78xx0_ge10_shared); | 237 | orion_ge10_init(eth_data, &mv78xx0_mbus_dram_info, |
462 | platform_device_register(&mv78xx0_ge10); | 238 | GE10_PHYS_BASE, IRQ_MV78XX0_GE10_SUM, |
239 | NO_IRQ, get_tclk()); | ||
463 | } | 240 | } |
464 | 241 | ||
465 | 242 | ||
466 | /***************************************************************************** | 243 | /***************************************************************************** |
467 | * GE11 | 244 | * GE11 |
468 | ****************************************************************************/ | 245 | ****************************************************************************/ |
469 | struct mv643xx_eth_shared_platform_data mv78xx0_ge11_shared_data = { | ||
470 | .t_clk = 0, | ||
471 | .dram = &mv78xx0_mbus_dram_info, | ||
472 | .shared_smi = &mv78xx0_ge00_shared, | ||
473 | }; | ||
474 | |||
475 | static struct resource mv78xx0_ge11_shared_resources[] = { | ||
476 | { | ||
477 | .name = "ge11 base", | ||
478 | .start = GE11_PHYS_BASE + 0x2000, | ||
479 | .end = GE11_PHYS_BASE + 0x3fff, | ||
480 | .flags = IORESOURCE_MEM, | ||
481 | }, | ||
482 | }; | ||
483 | |||
484 | static struct platform_device mv78xx0_ge11_shared = { | ||
485 | .name = MV643XX_ETH_SHARED_NAME, | ||
486 | .id = 3, | ||
487 | .dev = { | ||
488 | .platform_data = &mv78xx0_ge11_shared_data, | ||
489 | }, | ||
490 | .num_resources = 1, | ||
491 | .resource = mv78xx0_ge11_shared_resources, | ||
492 | }; | ||
493 | |||
494 | static struct resource mv78xx0_ge11_resources[] = { | ||
495 | { | ||
496 | .name = "ge11 irq", | ||
497 | .start = IRQ_MV78XX0_GE11_SUM, | ||
498 | .end = IRQ_MV78XX0_GE11_SUM, | ||
499 | .flags = IORESOURCE_IRQ, | ||
500 | }, | ||
501 | }; | ||
502 | |||
503 | static struct platform_device mv78xx0_ge11 = { | ||
504 | .name = MV643XX_ETH_NAME, | ||
505 | .id = 3, | ||
506 | .num_resources = 1, | ||
507 | .resource = mv78xx0_ge11_resources, | ||
508 | .dev = { | ||
509 | .coherent_dma_mask = 0xffffffff, | ||
510 | }, | ||
511 | }; | ||
512 | |||
513 | void __init mv78xx0_ge11_init(struct mv643xx_eth_platform_data *eth_data) | 246 | void __init mv78xx0_ge11_init(struct mv643xx_eth_platform_data *eth_data) |
514 | { | 247 | { |
515 | u32 dev, rev; | 248 | u32 dev, rev; |
516 | 249 | ||
517 | eth_data->shared = &mv78xx0_ge11_shared; | ||
518 | mv78xx0_ge11.dev.platform_data = eth_data; | ||
519 | |||
520 | /* | 250 | /* |
521 | * On the Z0, ge10 and ge11 are internally connected back | 251 | * On the Z0, ge10 and ge11 are internally connected back |
522 | * to back, and not brought out. | 252 | * to back, and not brought out. |
@@ -528,293 +258,68 @@ void __init mv78xx0_ge11_init(struct mv643xx_eth_platform_data *eth_data) | |||
528 | eth_data->duplex = DUPLEX_FULL; | 258 | eth_data->duplex = DUPLEX_FULL; |
529 | } | 259 | } |
530 | 260 | ||
531 | platform_device_register(&mv78xx0_ge11_shared); | 261 | orion_ge11_init(eth_data, &mv78xx0_mbus_dram_info, |
532 | platform_device_register(&mv78xx0_ge11); | 262 | GE11_PHYS_BASE, IRQ_MV78XX0_GE11_SUM, |
263 | NO_IRQ, get_tclk()); | ||
533 | } | 264 | } |
534 | 265 | ||
535 | /***************************************************************************** | 266 | /***************************************************************************** |
536 | * I2C bus 0 | 267 | * I2C |
537 | ****************************************************************************/ | ||
538 | |||
539 | static struct mv64xxx_i2c_pdata mv78xx0_i2c_0_pdata = { | ||
540 | .freq_m = 8, /* assumes 166 MHz TCLK */ | ||
541 | .freq_n = 3, | ||
542 | .timeout = 1000, /* Default timeout of 1 second */ | ||
543 | }; | ||
544 | |||
545 | static struct resource mv78xx0_i2c_0_resources[] = { | ||
546 | { | ||
547 | .start = I2C_0_PHYS_BASE, | ||
548 | .end = I2C_0_PHYS_BASE + 0x1f, | ||
549 | .flags = IORESOURCE_MEM, | ||
550 | }, { | ||
551 | .start = IRQ_MV78XX0_I2C_0, | ||
552 | .end = IRQ_MV78XX0_I2C_0, | ||
553 | .flags = IORESOURCE_IRQ, | ||
554 | }, | ||
555 | }; | ||
556 | |||
557 | |||
558 | static struct platform_device mv78xx0_i2c_0 = { | ||
559 | .name = MV64XXX_I2C_CTLR_NAME, | ||
560 | .id = 0, | ||
561 | .num_resources = ARRAY_SIZE(mv78xx0_i2c_0_resources), | ||
562 | .resource = mv78xx0_i2c_0_resources, | ||
563 | .dev = { | ||
564 | .platform_data = &mv78xx0_i2c_0_pdata, | ||
565 | }, | ||
566 | }; | ||
567 | |||
568 | /***************************************************************************** | ||
569 | * I2C bus 1 | ||
570 | ****************************************************************************/ | 268 | ****************************************************************************/ |
571 | |||
572 | static struct mv64xxx_i2c_pdata mv78xx0_i2c_1_pdata = { | ||
573 | .freq_m = 8, /* assumes 166 MHz TCLK */ | ||
574 | .freq_n = 3, | ||
575 | .timeout = 1000, /* Default timeout of 1 second */ | ||
576 | }; | ||
577 | |||
578 | static struct resource mv78xx0_i2c_1_resources[] = { | ||
579 | { | ||
580 | .start = I2C_1_PHYS_BASE, | ||
581 | .end = I2C_1_PHYS_BASE + 0x1f, | ||
582 | .flags = IORESOURCE_MEM, | ||
583 | }, { | ||
584 | .start = IRQ_MV78XX0_I2C_1, | ||
585 | .end = IRQ_MV78XX0_I2C_1, | ||
586 | .flags = IORESOURCE_IRQ, | ||
587 | }, | ||
588 | }; | ||
589 | |||
590 | |||
591 | static struct platform_device mv78xx0_i2c_1 = { | ||
592 | .name = MV64XXX_I2C_CTLR_NAME, | ||
593 | .id = 1, | ||
594 | .num_resources = ARRAY_SIZE(mv78xx0_i2c_1_resources), | ||
595 | .resource = mv78xx0_i2c_1_resources, | ||
596 | .dev = { | ||
597 | .platform_data = &mv78xx0_i2c_1_pdata, | ||
598 | }, | ||
599 | }; | ||
600 | |||
601 | void __init mv78xx0_i2c_init(void) | 269 | void __init mv78xx0_i2c_init(void) |
602 | { | 270 | { |
603 | platform_device_register(&mv78xx0_i2c_0); | 271 | orion_i2c_init(I2C_0_PHYS_BASE, IRQ_MV78XX0_I2C_0, 8); |
604 | platform_device_register(&mv78xx0_i2c_1); | 272 | orion_i2c_1_init(I2C_1_PHYS_BASE, IRQ_MV78XX0_I2C_1, 8); |
605 | } | 273 | } |
606 | 274 | ||
607 | /***************************************************************************** | 275 | /***************************************************************************** |
608 | * SATA | 276 | * SATA |
609 | ****************************************************************************/ | 277 | ****************************************************************************/ |
610 | static struct resource mv78xx0_sata_resources[] = { | ||
611 | { | ||
612 | .name = "sata base", | ||
613 | .start = SATA_PHYS_BASE, | ||
614 | .end = SATA_PHYS_BASE + 0x5000 - 1, | ||
615 | .flags = IORESOURCE_MEM, | ||
616 | }, { | ||
617 | .name = "sata irq", | ||
618 | .start = IRQ_MV78XX0_SATA, | ||
619 | .end = IRQ_MV78XX0_SATA, | ||
620 | .flags = IORESOURCE_IRQ, | ||
621 | }, | ||
622 | }; | ||
623 | |||
624 | static struct platform_device mv78xx0_sata = { | ||
625 | .name = "sata_mv", | ||
626 | .id = 0, | ||
627 | .dev = { | ||
628 | .coherent_dma_mask = 0xffffffff, | ||
629 | }, | ||
630 | .num_resources = ARRAY_SIZE(mv78xx0_sata_resources), | ||
631 | .resource = mv78xx0_sata_resources, | ||
632 | }; | ||
633 | |||
634 | void __init mv78xx0_sata_init(struct mv_sata_platform_data *sata_data) | 278 | void __init mv78xx0_sata_init(struct mv_sata_platform_data *sata_data) |
635 | { | 279 | { |
636 | sata_data->dram = &mv78xx0_mbus_dram_info; | 280 | orion_sata_init(sata_data, &mv78xx0_mbus_dram_info, |
637 | mv78xx0_sata.dev.platform_data = sata_data; | 281 | SATA_PHYS_BASE, IRQ_MV78XX0_SATA); |
638 | platform_device_register(&mv78xx0_sata); | ||
639 | } | 282 | } |
640 | 283 | ||
641 | 284 | ||
642 | /***************************************************************************** | 285 | /***************************************************************************** |
643 | * UART0 | 286 | * UART0 |
644 | ****************************************************************************/ | 287 | ****************************************************************************/ |
645 | static struct plat_serial8250_port mv78xx0_uart0_data[] = { | ||
646 | { | ||
647 | .mapbase = UART0_PHYS_BASE, | ||
648 | .membase = (char *)UART0_VIRT_BASE, | ||
649 | .irq = IRQ_MV78XX0_UART_0, | ||
650 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, | ||
651 | .iotype = UPIO_MEM, | ||
652 | .regshift = 2, | ||
653 | .uartclk = 0, | ||
654 | }, { | ||
655 | }, | ||
656 | }; | ||
657 | |||
658 | static struct resource mv78xx0_uart0_resources[] = { | ||
659 | { | ||
660 | .start = UART0_PHYS_BASE, | ||
661 | .end = UART0_PHYS_BASE + 0xff, | ||
662 | .flags = IORESOURCE_MEM, | ||
663 | }, { | ||
664 | .start = IRQ_MV78XX0_UART_0, | ||
665 | .end = IRQ_MV78XX0_UART_0, | ||
666 | .flags = IORESOURCE_IRQ, | ||
667 | }, | ||
668 | }; | ||
669 | |||
670 | static struct platform_device mv78xx0_uart0 = { | ||
671 | .name = "serial8250", | ||
672 | .id = 0, | ||
673 | .dev = { | ||
674 | .platform_data = mv78xx0_uart0_data, | ||
675 | }, | ||
676 | .resource = mv78xx0_uart0_resources, | ||
677 | .num_resources = ARRAY_SIZE(mv78xx0_uart0_resources), | ||
678 | }; | ||
679 | |||
680 | void __init mv78xx0_uart0_init(void) | 288 | void __init mv78xx0_uart0_init(void) |
681 | { | 289 | { |
682 | platform_device_register(&mv78xx0_uart0); | 290 | orion_uart0_init(UART0_VIRT_BASE, UART0_PHYS_BASE, |
291 | IRQ_MV78XX0_UART_0, get_tclk()); | ||
683 | } | 292 | } |
684 | 293 | ||
685 | 294 | ||
686 | /***************************************************************************** | 295 | /***************************************************************************** |
687 | * UART1 | 296 | * UART1 |
688 | ****************************************************************************/ | 297 | ****************************************************************************/ |
689 | static struct plat_serial8250_port mv78xx0_uart1_data[] = { | ||
690 | { | ||
691 | .mapbase = UART1_PHYS_BASE, | ||
692 | .membase = (char *)UART1_VIRT_BASE, | ||
693 | .irq = IRQ_MV78XX0_UART_1, | ||
694 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, | ||
695 | .iotype = UPIO_MEM, | ||
696 | .regshift = 2, | ||
697 | .uartclk = 0, | ||
698 | }, { | ||
699 | }, | ||
700 | }; | ||
701 | |||
702 | static struct resource mv78xx0_uart1_resources[] = { | ||
703 | { | ||
704 | .start = UART1_PHYS_BASE, | ||
705 | .end = UART1_PHYS_BASE + 0xff, | ||
706 | .flags = IORESOURCE_MEM, | ||
707 | }, { | ||
708 | .start = IRQ_MV78XX0_UART_1, | ||
709 | .end = IRQ_MV78XX0_UART_1, | ||
710 | .flags = IORESOURCE_IRQ, | ||
711 | }, | ||
712 | }; | ||
713 | |||
714 | static struct platform_device mv78xx0_uart1 = { | ||
715 | .name = "serial8250", | ||
716 | .id = 1, | ||
717 | .dev = { | ||
718 | .platform_data = mv78xx0_uart1_data, | ||
719 | }, | ||
720 | .resource = mv78xx0_uart1_resources, | ||
721 | .num_resources = ARRAY_SIZE(mv78xx0_uart1_resources), | ||
722 | }; | ||
723 | |||
724 | void __init mv78xx0_uart1_init(void) | 298 | void __init mv78xx0_uart1_init(void) |
725 | { | 299 | { |
726 | platform_device_register(&mv78xx0_uart1); | 300 | orion_uart1_init(UART1_VIRT_BASE, UART1_PHYS_BASE, |
301 | IRQ_MV78XX0_UART_1, get_tclk()); | ||
727 | } | 302 | } |
728 | 303 | ||
729 | 304 | ||
730 | /***************************************************************************** | 305 | /***************************************************************************** |
731 | * UART2 | 306 | * UART2 |
732 | ****************************************************************************/ | 307 | ****************************************************************************/ |
733 | static struct plat_serial8250_port mv78xx0_uart2_data[] = { | ||
734 | { | ||
735 | .mapbase = UART2_PHYS_BASE, | ||
736 | .membase = (char *)UART2_VIRT_BASE, | ||
737 | .irq = IRQ_MV78XX0_UART_2, | ||
738 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, | ||
739 | .iotype = UPIO_MEM, | ||
740 | .regshift = 2, | ||
741 | .uartclk = 0, | ||
742 | }, { | ||
743 | }, | ||
744 | }; | ||
745 | |||
746 | static struct resource mv78xx0_uart2_resources[] = { | ||
747 | { | ||
748 | .start = UART2_PHYS_BASE, | ||
749 | .end = UART2_PHYS_BASE + 0xff, | ||
750 | .flags = IORESOURCE_MEM, | ||
751 | }, { | ||
752 | .start = IRQ_MV78XX0_UART_2, | ||
753 | .end = IRQ_MV78XX0_UART_2, | ||
754 | .flags = IORESOURCE_IRQ, | ||
755 | }, | ||
756 | }; | ||
757 | |||
758 | static struct platform_device mv78xx0_uart2 = { | ||
759 | .name = "serial8250", | ||
760 | .id = 2, | ||
761 | .dev = { | ||
762 | .platform_data = mv78xx0_uart2_data, | ||
763 | }, | ||
764 | .resource = mv78xx0_uart2_resources, | ||
765 | .num_resources = ARRAY_SIZE(mv78xx0_uart2_resources), | ||
766 | }; | ||
767 | |||
768 | void __init mv78xx0_uart2_init(void) | 308 | void __init mv78xx0_uart2_init(void) |
769 | { | 309 | { |
770 | platform_device_register(&mv78xx0_uart2); | 310 | orion_uart2_init(UART2_VIRT_BASE, UART2_PHYS_BASE, |
311 | IRQ_MV78XX0_UART_2, get_tclk()); | ||
771 | } | 312 | } |
772 | 313 | ||
773 | |||
774 | /***************************************************************************** | 314 | /***************************************************************************** |
775 | * UART3 | 315 | * UART3 |
776 | ****************************************************************************/ | 316 | ****************************************************************************/ |
777 | static struct plat_serial8250_port mv78xx0_uart3_data[] = { | ||
778 | { | ||
779 | .mapbase = UART3_PHYS_BASE, | ||
780 | .membase = (char *)UART3_VIRT_BASE, | ||
781 | .irq = IRQ_MV78XX0_UART_3, | ||
782 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, | ||
783 | .iotype = UPIO_MEM, | ||
784 | .regshift = 2, | ||
785 | .uartclk = 0, | ||
786 | }, { | ||
787 | }, | ||
788 | }; | ||
789 | |||
790 | static struct resource mv78xx0_uart3_resources[] = { | ||
791 | { | ||
792 | .start = UART3_PHYS_BASE, | ||
793 | .end = UART3_PHYS_BASE + 0xff, | ||
794 | .flags = IORESOURCE_MEM, | ||
795 | }, { | ||
796 | .start = IRQ_MV78XX0_UART_3, | ||
797 | .end = IRQ_MV78XX0_UART_3, | ||
798 | .flags = IORESOURCE_IRQ, | ||
799 | }, | ||
800 | }; | ||
801 | |||
802 | static struct platform_device mv78xx0_uart3 = { | ||
803 | .name = "serial8250", | ||
804 | .id = 3, | ||
805 | .dev = { | ||
806 | .platform_data = mv78xx0_uart3_data, | ||
807 | }, | ||
808 | .resource = mv78xx0_uart3_resources, | ||
809 | .num_resources = ARRAY_SIZE(mv78xx0_uart3_resources), | ||
810 | }; | ||
811 | |||
812 | void __init mv78xx0_uart3_init(void) | 317 | void __init mv78xx0_uart3_init(void) |
813 | { | 318 | { |
814 | platform_device_register(&mv78xx0_uart3); | 319 | orion_uart3_init(UART3_VIRT_BASE, UART3_PHYS_BASE, |
320 | IRQ_MV78XX0_UART_3, get_tclk()); | ||
815 | } | 321 | } |
816 | 322 | ||
817 | |||
818 | /***************************************************************************** | 323 | /***************************************************************************** |
819 | * Time handling | 324 | * Time handling |
820 | ****************************************************************************/ | 325 | ****************************************************************************/ |
@@ -895,13 +400,4 @@ void __init mv78xx0_init(void) | |||
895 | #ifdef CONFIG_CACHE_FEROCEON_L2 | 400 | #ifdef CONFIG_CACHE_FEROCEON_L2 |
896 | feroceon_l2_init(is_l2_writethrough()); | 401 | feroceon_l2_init(is_l2_writethrough()); |
897 | #endif | 402 | #endif |
898 | |||
899 | mv78xx0_ge00_shared_data.t_clk = tclk; | ||
900 | mv78xx0_ge01_shared_data.t_clk = tclk; | ||
901 | mv78xx0_ge10_shared_data.t_clk = tclk; | ||
902 | mv78xx0_ge11_shared_data.t_clk = tclk; | ||
903 | mv78xx0_uart0_data[0].uartclk = tclk; | ||
904 | mv78xx0_uart1_data[0].uartclk = tclk; | ||
905 | mv78xx0_uart2_data[0].uartclk = tclk; | ||
906 | mv78xx0_uart3_data[0].uartclk = tclk; | ||
907 | } | 403 | } |
diff --git a/arch/arm/mach-mv78xx0/mpp.c b/arch/arm/mach-mv78xx0/mpp.c index 65b72c454cb0..59b7686b9209 100644 --- a/arch/arm/mach-mv78xx0/mpp.c +++ b/arch/arm/mach-mv78xx0/mpp.c | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
13 | #include <linux/mbus.h> | 13 | #include <linux/mbus.h> |
14 | #include <linux/io.h> | 14 | #include <linux/io.h> |
15 | #include <plat/mpp.h> | ||
15 | #include <asm/gpio.h> | 16 | #include <asm/gpio.h> |
16 | #include <mach/hardware.h> | 17 | #include <mach/hardware.h> |
17 | #include "common.h" | 18 | #include "common.h" |
@@ -31,61 +32,8 @@ static unsigned int __init mv78xx0_variant(void) | |||
31 | return 0; | 32 | return 0; |
32 | } | 33 | } |
33 | 34 | ||
34 | #define MPP_CTRL(i) (DEV_BUS_VIRT_BASE + (i) * 4) | ||
35 | #define MPP_NR_REGS (1 + MPP_MAX/8) | ||
36 | |||
37 | void __init mv78xx0_mpp_conf(unsigned int *mpp_list) | 35 | void __init mv78xx0_mpp_conf(unsigned int *mpp_list) |
38 | { | 36 | { |
39 | u32 mpp_ctrl[MPP_NR_REGS]; | 37 | orion_mpp_conf(mpp_list, mv78xx0_variant(), |
40 | unsigned int variant_mask; | 38 | MPP_MAX, DEV_BUS_VIRT_BASE); |
41 | int i; | ||
42 | |||
43 | variant_mask = mv78xx0_variant(); | ||
44 | if (!variant_mask) | ||
45 | return; | ||
46 | |||
47 | printk(KERN_DEBUG "initial MPP regs:"); | ||
48 | for (i = 0; i < MPP_NR_REGS; i++) { | ||
49 | mpp_ctrl[i] = readl(MPP_CTRL(i)); | ||
50 | printk(" %08x", mpp_ctrl[i]); | ||
51 | } | ||
52 | printk("\n"); | ||
53 | |||
54 | for ( ; *mpp_list; mpp_list++) { | ||
55 | unsigned int num = MPP_NUM(*mpp_list); | ||
56 | unsigned int sel = MPP_SEL(*mpp_list); | ||
57 | int shift, gpio_mode; | ||
58 | |||
59 | if (num > MPP_MAX) { | ||
60 | printk(KERN_ERR "mv78xx0_mpp_conf: invalid MPP " | ||
61 | "number (%u)\n", num); | ||
62 | continue; | ||
63 | } | ||
64 | if (!(*mpp_list & variant_mask)) { | ||
65 | printk(KERN_WARNING | ||
66 | "mv78xx0_mpp_conf: requested MPP%u config " | ||
67 | "unavailable on this hardware\n", num); | ||
68 | continue; | ||
69 | } | ||
70 | |||
71 | shift = (num & 7) << 2; | ||
72 | mpp_ctrl[num / 8] &= ~(0xf << shift); | ||
73 | mpp_ctrl[num / 8] |= sel << shift; | ||
74 | |||
75 | gpio_mode = 0; | ||
76 | if (*mpp_list & MPP_INPUT_MASK) | ||
77 | gpio_mode |= GPIO_INPUT_OK; | ||
78 | if (*mpp_list & MPP_OUTPUT_MASK) | ||
79 | gpio_mode |= GPIO_OUTPUT_OK; | ||
80 | if (sel != 0) | ||
81 | gpio_mode = 0; | ||
82 | orion_gpio_set_valid(num, gpio_mode); | ||
83 | } | ||
84 | |||
85 | printk(KERN_DEBUG " final MPP regs:"); | ||
86 | for (i = 0; i < MPP_NR_REGS; i++) { | ||
87 | writel(mpp_ctrl[i], MPP_CTRL(i)); | ||
88 | printk(" %08x", mpp_ctrl[i]); | ||
89 | } | ||
90 | printk("\n"); | ||
91 | } | 39 | } |
diff --git a/arch/arm/mach-mv78xx0/mpp.h b/arch/arm/mach-mv78xx0/mpp.h index 80840b781eaa..b61b50927123 100644 --- a/arch/arm/mach-mv78xx0/mpp.h +++ b/arch/arm/mach-mv78xx0/mpp.h | |||
@@ -19,14 +19,8 @@ | |||
19 | /* may be output signal */ ((!!(_out)) << 13) | \ | 19 | /* may be output signal */ ((!!(_out)) << 13) | \ |
20 | /* available on A0 */ ((!!(_78100_A0)) << 14)) | 20 | /* available on A0 */ ((!!(_78100_A0)) << 14)) |
21 | 21 | ||
22 | #define MPP_NUM(x) ((x) & 0xff) | ||
23 | #define MPP_SEL(x) (((x) >> 8) & 0xf) | ||
24 | |||
25 | /* num sel i o 78100_A0 */ | 22 | /* num sel i o 78100_A0 */ |
26 | 23 | ||
27 | #define MPP_INPUT_MASK MPP(0, 0x0, 1, 0, 0) | ||
28 | #define MPP_OUTPUT_MASK MPP(0, 0x0, 0, 1, 0) | ||
29 | |||
30 | #define MPP_78100_A0_MASK MPP(0, 0x0, 0, 0, 1) | 24 | #define MPP_78100_A0_MASK MPP(0, 0x0, 0, 0, 1) |
31 | 25 | ||
32 | #define MPP0_GPIO MPP(0, 0x0, 1, 1, 1) | 26 | #define MPP0_GPIO MPP(0, 0x0, 1, 1, 1) |
diff --git a/arch/arm/mach-mx3/Kconfig b/arch/arm/mach-mx3/Kconfig deleted file mode 100644 index 340809a7d233..000000000000 --- a/arch/arm/mach-mx3/Kconfig +++ /dev/null | |||
@@ -1,257 +0,0 @@ | |||
1 | if ARCH_MX3 | ||
2 | |||
3 | # ARCH_MX31 and ARCH_MX35 are left for compatibility | ||
4 | # Some usages assume that having one of them implies not having (e.g.) ARCH_MX2. | ||
5 | # To easily distinguish good and reviewed from unreviewed usages new (and IMHO | ||
6 | # more sensible) names are used: SOC_IMX31 and SOC_IMX35 | ||
7 | config ARCH_MX31 | ||
8 | bool | ||
9 | |||
10 | config ARCH_MX35 | ||
11 | bool | ||
12 | |||
13 | config SOC_IMX31 | ||
14 | bool | ||
15 | select IMX_HAVE_PLATFORM_MXC_RNGA | ||
16 | select ARCH_MXC_AUDMUX_V2 | ||
17 | select ARCH_MX31 | ||
18 | select MXC_AVIC | ||
19 | |||
20 | config SOC_IMX35 | ||
21 | bool | ||
22 | select ARCH_MXC_IOMUX_V3 | ||
23 | select ARCH_MXC_AUDMUX_V2 | ||
24 | select HAVE_EPIT | ||
25 | select ARCH_MX35 | ||
26 | select MXC_AVIC | ||
27 | |||
28 | comment "MX3 platforms:" | ||
29 | |||
30 | config MACH_MX31ADS | ||
31 | bool "Support MX31ADS platforms" | ||
32 | select SOC_IMX31 | ||
33 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
34 | select IMX_HAVE_PLATFORM_IMX_SSI | ||
35 | select IMX_HAVE_PLATFORM_IMX_UART | ||
36 | default y | ||
37 | help | ||
38 | Include support for MX31ADS platform. This includes specific | ||
39 | configurations for the board and its peripherals. | ||
40 | |||
41 | config MACH_MX31ADS_WM1133_EV1 | ||
42 | bool "Support Wolfson Microelectronics 1133-EV1 module" | ||
43 | depends on MACH_MX31ADS | ||
44 | depends on MFD_WM8350_I2C | ||
45 | depends on REGULATOR_WM8350 | ||
46 | select MFD_WM8350_CONFIG_MODE_0 | ||
47 | select MFD_WM8352_CONFIG_MODE_0 | ||
48 | help | ||
49 | Include support for the Wolfson Microelectronics 1133-EV1 PMU | ||
50 | and audio module for the MX31ADS platform. | ||
51 | |||
52 | config MACH_PCM037 | ||
53 | bool "Support Phytec pcm037 (i.MX31) platforms" | ||
54 | select SOC_IMX31 | ||
55 | select IMX_HAVE_PLATFORM_FSL_USB2_UDC | ||
56 | select IMX_HAVE_PLATFORM_IMX2_WDT | ||
57 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
58 | select IMX_HAVE_PLATFORM_IMX_UART | ||
59 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
60 | select IMX_HAVE_PLATFORM_MXC_MMC | ||
61 | select IMX_HAVE_PLATFORM_MXC_NAND | ||
62 | select IMX_HAVE_PLATFORM_MXC_W1 | ||
63 | select MXC_ULPI if USB_ULPI | ||
64 | help | ||
65 | Include support for Phytec pcm037 platform. This includes | ||
66 | specific configurations for the board and its peripherals. | ||
67 | |||
68 | config MACH_PCM037_EET | ||
69 | bool "Support pcm037 EET board extensions" | ||
70 | depends on MACH_PCM037 | ||
71 | select IMX_HAVE_PLATFORM_SPI_IMX | ||
72 | help | ||
73 | Add support for PCM037 EET baseboard extensions. If you are using the | ||
74 | OLED display with EET, use "video=mx3fb:CMEL-OLED" kernel | ||
75 | command-line parameter. | ||
76 | |||
77 | config MACH_MX31LITE | ||
78 | bool "Support MX31 LITEKIT (LogicPD)" | ||
79 | select SOC_IMX31 | ||
80 | select MXC_ULPI if USB_ULPI | ||
81 | select IMX_HAVE_PLATFORM_IMX2_WDT | ||
82 | select IMX_HAVE_PLATFORM_IMX_UART | ||
83 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
84 | select IMX_HAVE_PLATFORM_MXC_MMC | ||
85 | select IMX_HAVE_PLATFORM_MXC_NAND | ||
86 | select IMX_HAVE_PLATFORM_SPI_IMX | ||
87 | help | ||
88 | Include support for MX31 LITEKIT platform. This includes specific | ||
89 | configurations for the board and its peripherals. | ||
90 | |||
91 | config MACH_MX31_3DS | ||
92 | bool "Support MX31PDK (3DS)" | ||
93 | select SOC_IMX31 | ||
94 | select MXC_DEBUG_BOARD | ||
95 | select IMX_HAVE_PLATFORM_FSL_USB2_UDC | ||
96 | select IMX_HAVE_PLATFORM_IMX2_WDT | ||
97 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
98 | select IMX_HAVE_PLATFORM_IMX_KEYPAD | ||
99 | select IMX_HAVE_PLATFORM_IMX_UART | ||
100 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
101 | select IMX_HAVE_PLATFORM_MXC_NAND | ||
102 | select IMX_HAVE_PLATFORM_SPI_IMX | ||
103 | select MXC_ULPI if USB_ULPI | ||
104 | help | ||
105 | Include support for MX31PDK (3DS) platform. This includes specific | ||
106 | configurations for the board and its peripherals. | ||
107 | |||
108 | config MACH_MX31_3DS_MXC_NAND_USE_BBT | ||
109 | bool "Make the MXC NAND driver use the in flash Bad Block Table" | ||
110 | depends on MACH_MX31_3DS | ||
111 | depends on MTD_NAND_MXC | ||
112 | help | ||
113 | Enable this if you want that the MXC NAND driver uses the in flash | ||
114 | Bad Block Table to know what blocks are bad instead of scanning the | ||
115 | entire flash looking for bad block markers. | ||
116 | |||
117 | config MACH_MX31MOBOARD | ||
118 | bool "Support mx31moboard platforms (EPFL Mobots group)" | ||
119 | select SOC_IMX31 | ||
120 | select IMX_HAVE_PLATFORM_FSL_USB2_UDC | ||
121 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
122 | select IMX_HAVE_PLATFORM_IMX_UART | ||
123 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
124 | select IMX_HAVE_PLATFORM_MXC_MMC | ||
125 | select IMX_HAVE_PLATFORM_SPI_IMX | ||
126 | select MXC_ULPI if USB_ULPI | ||
127 | help | ||
128 | Include support for mx31moboard platform. This includes specific | ||
129 | configurations for the board and its peripherals. | ||
130 | |||
131 | config MACH_MX31LILLY | ||
132 | bool "Support MX31 LILLY-1131 platforms (INCO startec)" | ||
133 | select SOC_IMX31 | ||
134 | select IMX_HAVE_PLATFORM_IMX_UART | ||
135 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
136 | select IMX_HAVE_PLATFORM_MXC_MMC | ||
137 | select IMX_HAVE_PLATFORM_SPI_IMX | ||
138 | select MXC_ULPI if USB_ULPI | ||
139 | help | ||
140 | Include support for mx31 based LILLY1131 modules. This includes | ||
141 | specific configurations for the board and its peripherals. | ||
142 | |||
143 | config MACH_QONG | ||
144 | bool "Support Dave/DENX QongEVB-LITE platform" | ||
145 | select SOC_IMX31 | ||
146 | select IMX_HAVE_PLATFORM_IMX_UART | ||
147 | help | ||
148 | Include support for Dave/DENX QongEVB-LITE platform. This includes | ||
149 | specific configurations for the board and its peripherals. | ||
150 | |||
151 | config MACH_PCM043 | ||
152 | bool "Support Phytec pcm043 (i.MX35) platforms" | ||
153 | select SOC_IMX35 | ||
154 | select IMX_HAVE_PLATFORM_FLEXCAN | ||
155 | select IMX_HAVE_PLATFORM_FSL_USB2_UDC | ||
156 | select IMX_HAVE_PLATFORM_IMX2_WDT | ||
157 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
158 | select IMX_HAVE_PLATFORM_IMX_SSI | ||
159 | select IMX_HAVE_PLATFORM_IMX_UART | ||
160 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
161 | select IMX_HAVE_PLATFORM_MXC_NAND | ||
162 | select IMX_HAVE_PLATFORM_SDHCI_ESDHC_IMX | ||
163 | select MXC_ULPI if USB_ULPI | ||
164 | help | ||
165 | Include support for Phytec pcm043 platform. This includes | ||
166 | specific configurations for the board and its peripherals. | ||
167 | |||
168 | config MACH_ARMADILLO5X0 | ||
169 | bool "Support Atmark Armadillo-500 Development Base Board" | ||
170 | select SOC_IMX31 | ||
171 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
172 | select IMX_HAVE_PLATFORM_IMX_UART | ||
173 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
174 | select IMX_HAVE_PLATFORM_MXC_MMC | ||
175 | select IMX_HAVE_PLATFORM_MXC_NAND | ||
176 | select MXC_ULPI if USB_ULPI | ||
177 | help | ||
178 | Include support for Atmark Armadillo-500 platform. This includes | ||
179 | specific configurations for the board and its peripherals. | ||
180 | |||
181 | config MACH_MX35_3DS | ||
182 | bool "Support MX35PDK platform" | ||
183 | select SOC_IMX35 | ||
184 | select MXC_DEBUG_BOARD | ||
185 | select IMX_HAVE_PLATFORM_FSL_USB2_UDC | ||
186 | select IMX_HAVE_PLATFORM_IMX2_WDT | ||
187 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
188 | select IMX_HAVE_PLATFORM_IMX_UART | ||
189 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
190 | select IMX_HAVE_PLATFORM_MXC_NAND | ||
191 | select IMX_HAVE_PLATFORM_SDHCI_ESDHC_IMX | ||
192 | help | ||
193 | Include support for MX35PDK platform. This includes specific | ||
194 | configurations for the board and its peripherals. | ||
195 | |||
196 | config MACH_KZM_ARM11_01 | ||
197 | bool "Support KZM-ARM11-01(Kyoto Microcomputer)" | ||
198 | select SOC_IMX31 | ||
199 | select IMX_HAVE_PLATFORM_IMX_UART | ||
200 | help | ||
201 | Include support for KZM-ARM11-01. This includes specific | ||
202 | configurations for the board and its peripherals. | ||
203 | |||
204 | config MACH_BUG | ||
205 | bool "Support Buglabs BUGBase platform" | ||
206 | select SOC_IMX31 | ||
207 | select IMX_HAVE_PLATFORM_IMX_UART | ||
208 | default y | ||
209 | help | ||
210 | Include support for BUGBase 1.3 platform. This includes specific | ||
211 | configurations for the board and its peripherals. | ||
212 | |||
213 | config MACH_EUKREA_CPUIMX35 | ||
214 | bool "Support Eukrea CPUIMX35 Platform" | ||
215 | select SOC_IMX35 | ||
216 | select IMX_HAVE_PLATFORM_FLEXCAN | ||
217 | select IMX_HAVE_PLATFORM_FSL_USB2_UDC | ||
218 | select IMX_HAVE_PLATFORM_IMX2_WDT | ||
219 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
220 | select IMX_HAVE_PLATFORM_IMX_UART | ||
221 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
222 | select IMX_HAVE_PLATFORM_MXC_NAND | ||
223 | select IMX_HAVE_PLATFORM_SDHCI_ESDHC_IMX | ||
224 | select MXC_ULPI if USB_ULPI | ||
225 | help | ||
226 | Include support for Eukrea CPUIMX35 platform. This includes | ||
227 | specific configurations for the board and its peripherals. | ||
228 | |||
229 | choice | ||
230 | prompt "Baseboard" | ||
231 | depends on MACH_EUKREA_CPUIMX35 | ||
232 | default MACH_EUKREA_MBIMXSD35_BASEBOARD | ||
233 | |||
234 | config MACH_EUKREA_MBIMXSD35_BASEBOARD | ||
235 | bool "Eukrea MBIMXSD development board" | ||
236 | select IMX_HAVE_PLATFORM_IMX_SSI | ||
237 | help | ||
238 | This adds board specific devices that can be found on Eukrea's | ||
239 | MBIMXSD evaluation board. | ||
240 | |||
241 | endchoice | ||
242 | |||
243 | config MACH_VPR200 | ||
244 | bool "Support VPR200 platform" | ||
245 | select SOC_IMX35 | ||
246 | select IMX_HAVE_PLATFORM_FSL_USB2_UDC | ||
247 | select IMX_HAVE_PLATFORM_IMX2_WDT | ||
248 | select IMX_HAVE_PLATFORM_IMX_UART | ||
249 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
250 | select IMX_HAVE_PLATFORM_MXC_EHCI | ||
251 | select IMX_HAVE_PLATFORM_MXC_NAND | ||
252 | select IMX_HAVE_PLATFORM_SDHCI_ESDHC_IMX | ||
253 | help | ||
254 | Include support for VPR200 platform. This includes specific | ||
255 | configurations for the board and its peripherals. | ||
256 | |||
257 | endif | ||
diff --git a/arch/arm/mach-mx3/Makefile b/arch/arm/mach-mx3/Makefile deleted file mode 100644 index a54faf2cf5fa..000000000000 --- a/arch/arm/mach-mx3/Makefile +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | # | ||
2 | # Makefile for the linux kernel. | ||
3 | # | ||
4 | |||
5 | # Object file lists. | ||
6 | |||
7 | obj-y := mm.o devices.o cpu.o | ||
8 | obj-$(CONFIG_SOC_IMX31) += clock-imx31.o iomux-imx31.o ehci-imx31.o | ||
9 | obj-$(CONFIG_SOC_IMX35) += clock-imx35.o ehci-imx35.o | ||
10 | obj-$(CONFIG_MACH_MX31ADS) += mach-mx31ads.o | ||
11 | obj-$(CONFIG_MACH_MX31LILLY) += mach-mx31lilly.o mx31lilly-db.o | ||
12 | obj-$(CONFIG_MACH_MX31LITE) += mach-mx31lite.o mx31lite-db.o | ||
13 | obj-$(CONFIG_MACH_PCM037) += mach-pcm037.o | ||
14 | obj-$(CONFIG_MACH_PCM037_EET) += mach-pcm037_eet.o | ||
15 | obj-$(CONFIG_MACH_MX31_3DS) += mach-mx31_3ds.o | ||
16 | obj-$(CONFIG_MACH_MX31MOBOARD) += mach-mx31moboard.o mx31moboard-devboard.o \ | ||
17 | mx31moboard-marxbot.o mx31moboard-smartbot.o | ||
18 | obj-$(CONFIG_MACH_QONG) += mach-qong.o | ||
19 | obj-$(CONFIG_MACH_PCM043) += mach-pcm043.o | ||
20 | obj-$(CONFIG_MACH_ARMADILLO5X0) += mach-armadillo5x0.o | ||
21 | obj-$(CONFIG_MACH_MX35_3DS) += mach-mx35_3ds.o | ||
22 | obj-$(CONFIG_MACH_KZM_ARM11_01) += mach-kzm_arm11_01.o | ||
23 | obj-$(CONFIG_MACH_BUG) += mach-bug.o | ||
24 | obj-$(CONFIG_MACH_EUKREA_CPUIMX35) += mach-cpuimx35.o | ||
25 | obj-$(CONFIG_MACH_EUKREA_MBIMXSD35_BASEBOARD) += eukrea_mbimxsd-baseboard.o | ||
26 | obj-$(CONFIG_MACH_VPR200) += mach-vpr200.o | ||
diff --git a/arch/arm/mach-mx3/Makefile.boot b/arch/arm/mach-mx3/Makefile.boot deleted file mode 100644 index e1dd366f836b..000000000000 --- a/arch/arm/mach-mx3/Makefile.boot +++ /dev/null | |||
@@ -1,3 +0,0 @@ | |||
1 | zreladdr-y := 0x80008000 | ||
2 | params_phys-y := 0x80000100 | ||
3 | initrd_phys-y := 0x80800000 | ||
diff --git a/arch/arm/mach-mx3/devices.c b/arch/arm/mach-mx3/devices.c deleted file mode 100644 index b6672db788fb..000000000000 --- a/arch/arm/mach-mx3/devices.c +++ /dev/null | |||
@@ -1,115 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright 2006-2007 Freescale Semiconductor, Inc. All Rights Reserved. | ||
3 | * Copyright 2008 Sascha Hauer, kernel@pengutronix.de | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or | ||
6 | * modify it under the terms of the GNU General Public License | ||
7 | * as published by the Free Software Foundation; either version 2 | ||
8 | * of the License, or (at your option) any later version. | ||
9 | * This program is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program; if not, write to the Free Software | ||
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, | ||
17 | * Boston, MA 02110-1301, USA. | ||
18 | */ | ||
19 | |||
20 | #include <linux/dma-mapping.h> | ||
21 | #include <linux/module.h> | ||
22 | #include <linux/platform_device.h> | ||
23 | #include <linux/serial.h> | ||
24 | #include <linux/gpio.h> | ||
25 | #include <mach/hardware.h> | ||
26 | #include <mach/irqs.h> | ||
27 | #include <mach/common.h> | ||
28 | #include <mach/mx3_camera.h> | ||
29 | |||
30 | #include "devices.h" | ||
31 | |||
32 | /* i.MX31 Image Processing Unit */ | ||
33 | |||
34 | /* The resource order is important! */ | ||
35 | static struct resource mx3_ipu_rsrc[] = { | ||
36 | { | ||
37 | .start = MX3x_IPU_CTRL_BASE_ADDR, | ||
38 | .end = MX3x_IPU_CTRL_BASE_ADDR + 0x5F, | ||
39 | .flags = IORESOURCE_MEM, | ||
40 | }, { | ||
41 | .start = MX3x_IPU_CTRL_BASE_ADDR + 0x88, | ||
42 | .end = MX3x_IPU_CTRL_BASE_ADDR + 0xB3, | ||
43 | .flags = IORESOURCE_MEM, | ||
44 | }, { | ||
45 | .start = MX3x_INT_IPU_SYN, | ||
46 | .end = MX3x_INT_IPU_SYN, | ||
47 | .flags = IORESOURCE_IRQ, | ||
48 | }, { | ||
49 | .start = MX3x_INT_IPU_ERR, | ||
50 | .end = MX3x_INT_IPU_ERR, | ||
51 | .flags = IORESOURCE_IRQ, | ||
52 | }, | ||
53 | }; | ||
54 | |||
55 | struct platform_device mx3_ipu = { | ||
56 | .name = "ipu-core", | ||
57 | .id = -1, | ||
58 | .num_resources = ARRAY_SIZE(mx3_ipu_rsrc), | ||
59 | .resource = mx3_ipu_rsrc, | ||
60 | }; | ||
61 | |||
62 | static struct resource fb_resources[] = { | ||
63 | { | ||
64 | .start = MX3x_IPU_CTRL_BASE_ADDR + 0xB4, | ||
65 | .end = MX3x_IPU_CTRL_BASE_ADDR + 0x1BF, | ||
66 | .flags = IORESOURCE_MEM, | ||
67 | }, | ||
68 | }; | ||
69 | |||
70 | struct platform_device mx3_fb = { | ||
71 | .name = "mx3_sdc_fb", | ||
72 | .id = -1, | ||
73 | .num_resources = ARRAY_SIZE(fb_resources), | ||
74 | .resource = fb_resources, | ||
75 | .dev = { | ||
76 | .coherent_dma_mask = DMA_BIT_MASK(32), | ||
77 | }, | ||
78 | }; | ||
79 | |||
80 | static struct resource camera_resources[] = { | ||
81 | { | ||
82 | .start = MX3x_IPU_CTRL_BASE_ADDR + 0x60, | ||
83 | .end = MX3x_IPU_CTRL_BASE_ADDR + 0x87, | ||
84 | .flags = IORESOURCE_MEM, | ||
85 | }, | ||
86 | }; | ||
87 | |||
88 | struct platform_device mx3_camera = { | ||
89 | .name = "mx3-camera", | ||
90 | .id = 0, | ||
91 | .num_resources = ARRAY_SIZE(camera_resources), | ||
92 | .resource = camera_resources, | ||
93 | .dev = { | ||
94 | .coherent_dma_mask = DMA_BIT_MASK(32), | ||
95 | }, | ||
96 | }; | ||
97 | |||
98 | static struct resource imx_rtc_resources[] = { | ||
99 | { | ||
100 | .start = MX31_RTC_BASE_ADDR, | ||
101 | .end = MX31_RTC_BASE_ADDR + 0x3fff, | ||
102 | .flags = IORESOURCE_MEM, | ||
103 | }, | ||
104 | { | ||
105 | .start = MX31_INT_RTC, | ||
106 | .flags = IORESOURCE_IRQ, | ||
107 | }, | ||
108 | }; | ||
109 | |||
110 | struct platform_device imx_rtc_device0 = { | ||
111 | .name = "mxc_rtc", | ||
112 | .id = -1, | ||
113 | .num_resources = ARRAY_SIZE(imx_rtc_resources), | ||
114 | .resource = imx_rtc_resources, | ||
115 | }; | ||
diff --git a/arch/arm/mach-mx3/devices.h b/arch/arm/mach-mx3/devices.h deleted file mode 100644 index 121962c568d1..000000000000 --- a/arch/arm/mach-mx3/devices.h +++ /dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | extern struct platform_device mx3_ipu; | ||
2 | extern struct platform_device mx3_fb; | ||
3 | extern struct platform_device mx3_camera; | ||
4 | extern struct platform_device imx_rtc_device0; | ||
diff --git a/arch/arm/mach-mx3/mm.c b/arch/arm/mach-mx3/mm.c deleted file mode 100644 index 54d7174b4202..000000000000 --- a/arch/arm/mach-mx3/mm.c +++ /dev/null | |||
@@ -1,141 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (C) 1999,2000 Arm Limited | ||
3 | * Copyright (C) 2000 Deep Blue Solutions Ltd | ||
4 | * Copyright (C) 2002 Shane Nay (shane@minirl.com) | ||
5 | * Copyright 2005-2007 Freescale Semiconductor, Inc. All Rights Reserved. | ||
6 | * - add MX31 specific definitions | ||
7 | * | ||
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. | ||
12 | * | ||
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. | ||
17 | */ | ||
18 | |||
19 | #include <linux/mm.h> | ||
20 | #include <linux/init.h> | ||
21 | #include <linux/err.h> | ||
22 | |||
23 | #include <asm/pgtable.h> | ||
24 | #include <asm/mach/map.h> | ||
25 | #include <asm/hardware/cache-l2x0.h> | ||
26 | |||
27 | #include <mach/common.h> | ||
28 | #include <mach/hardware.h> | ||
29 | #include <mach/iomux-v3.h> | ||
30 | #include <mach/gpio.h> | ||
31 | #include <mach/irqs.h> | ||
32 | |||
33 | #ifdef CONFIG_SOC_IMX31 | ||
34 | static struct map_desc mx31_io_desc[] __initdata = { | ||
35 | imx_map_entry(MX31, X_MEMC, MT_DEVICE), | ||
36 | imx_map_entry(MX31, AVIC, MT_DEVICE_NONSHARED), | ||
37 | imx_map_entry(MX31, AIPS1, MT_DEVICE_NONSHARED), | ||
38 | imx_map_entry(MX31, AIPS2, MT_DEVICE_NONSHARED), | ||
39 | imx_map_entry(MX31, SPBA0, MT_DEVICE_NONSHARED), | ||
40 | }; | ||
41 | |||
42 | /* | ||
43 | * This function initializes the memory map. It is called during the | ||
44 | * system startup to create static physical to virtual memory mappings | ||
45 | * for the IO modules. | ||
46 | */ | ||
47 | void __init mx31_map_io(void) | ||
48 | { | ||
49 | iotable_init(mx31_io_desc, ARRAY_SIZE(mx31_io_desc)); | ||
50 | } | ||
51 | |||
52 | void __init imx31_init_early(void) | ||
53 | { | ||
54 | mxc_set_cpu_type(MXC_CPU_MX31); | ||
55 | mxc_arch_reset_init(MX31_IO_ADDRESS(MX31_WDOG_BASE_ADDR)); | ||
56 | } | ||
57 | |||
58 | static struct mxc_gpio_port imx31_gpio_ports[] = { | ||
59 | DEFINE_IMX_GPIO_PORT_IRQ(MX31, 0, 1, MX31_INT_GPIO1), | ||
60 | DEFINE_IMX_GPIO_PORT_IRQ(MX31, 1, 2, MX31_INT_GPIO2), | ||
61 | DEFINE_IMX_GPIO_PORT_IRQ(MX31, 2, 3, MX31_INT_GPIO3), | ||
62 | }; | ||
63 | |||
64 | void __init mx31_init_irq(void) | ||
65 | { | ||
66 | mxc_init_irq(MX31_IO_ADDRESS(MX31_AVIC_BASE_ADDR)); | ||
67 | mxc_gpio_init(imx31_gpio_ports, ARRAY_SIZE(imx31_gpio_ports)); | ||
68 | } | ||
69 | #endif /* ifdef CONFIG_SOC_IMX31 */ | ||
70 | |||
71 | #ifdef CONFIG_SOC_IMX35 | ||
72 | static struct map_desc mx35_io_desc[] __initdata = { | ||
73 | imx_map_entry(MX35, X_MEMC, MT_DEVICE), | ||
74 | imx_map_entry(MX35, AVIC, MT_DEVICE_NONSHARED), | ||
75 | imx_map_entry(MX35, AIPS1, MT_DEVICE_NONSHARED), | ||
76 | imx_map_entry(MX35, AIPS2, MT_DEVICE_NONSHARED), | ||
77 | imx_map_entry(MX35, SPBA0, MT_DEVICE_NONSHARED), | ||
78 | }; | ||
79 | |||
80 | void __init mx35_map_io(void) | ||
81 | { | ||
82 | iotable_init(mx35_io_desc, ARRAY_SIZE(mx35_io_desc)); | ||
83 | } | ||
84 | |||
85 | void __init imx35_init_early(void) | ||
86 | { | ||
87 | mxc_set_cpu_type(MXC_CPU_MX35); | ||
88 | mxc_iomux_v3_init(MX35_IO_ADDRESS(MX35_IOMUXC_BASE_ADDR)); | ||
89 | mxc_arch_reset_init(MX35_IO_ADDRESS(MX35_WDOG_BASE_ADDR)); | ||
90 | } | ||
91 | |||
92 | static struct mxc_gpio_port imx35_gpio_ports[] = { | ||
93 | DEFINE_IMX_GPIO_PORT_IRQ(MX35, 0, 1, MX35_INT_GPIO1), | ||
94 | DEFINE_IMX_GPIO_PORT_IRQ(MX35, 1, 2, MX35_INT_GPIO2), | ||
95 | DEFINE_IMX_GPIO_PORT_IRQ(MX35, 2, 3, MX35_INT_GPIO3), | ||
96 | }; | ||
97 | |||
98 | void __init mx35_init_irq(void) | ||
99 | { | ||
100 | mxc_init_irq(MX35_IO_ADDRESS(MX35_AVIC_BASE_ADDR)); | ||
101 | mxc_gpio_init(imx35_gpio_ports, ARRAY_SIZE(imx35_gpio_ports)); | ||
102 | } | ||
103 | #endif /* ifdef CONFIG_SOC_IMX35 */ | ||
104 | |||
105 | #ifdef CONFIG_CACHE_L2X0 | ||
106 | static int mxc_init_l2x0(void) | ||
107 | { | ||
108 | void __iomem *l2x0_base; | ||
109 | void __iomem *clkctl_base; | ||
110 | /* | ||
111 | * First of all, we must repair broken chip settings. There are some | ||
112 | * i.MX35 CPUs in the wild, comming with bogus L2 cache settings. These | ||
113 | * misconfigured CPUs will run amok immediately when the L2 cache gets enabled. | ||
114 | * Workaraound is to setup the correct register setting prior enabling the | ||
115 | * L2 cache. This should not hurt already working CPUs, as they are using the | ||
116 | * same value | ||
117 | */ | ||
118 | #define L2_MEM_VAL 0x10 | ||
119 | |||
120 | clkctl_base = ioremap(MX35_CLKCTL_BASE_ADDR, 4096); | ||
121 | if (clkctl_base != NULL) { | ||
122 | writel(0x00000515, clkctl_base + L2_MEM_VAL); | ||
123 | iounmap(clkctl_base); | ||
124 | } else { | ||
125 | pr_err("L2 cache: Cannot fix timing. Trying to continue without\n"); | ||
126 | } | ||
127 | |||
128 | l2x0_base = ioremap(MX3x_L2CC_BASE_ADDR, 4096); | ||
129 | if (IS_ERR(l2x0_base)) { | ||
130 | printk(KERN_ERR "remapping L2 cache area failed with %ld\n", | ||
131 | PTR_ERR(l2x0_base)); | ||
132 | return 0; | ||
133 | } | ||
134 | |||
135 | l2x0_init(l2x0_base, 0x00030024, 0x00000000); | ||
136 | |||
137 | return 0; | ||
138 | } | ||
139 | |||
140 | arch_initcall(mxc_init_l2x0); | ||
141 | #endif | ||
diff --git a/arch/arm/mach-mx5/Kconfig b/arch/arm/mach-mx5/Kconfig index 159340da9191..799fbc40e53c 100644 --- a/arch/arm/mach-mx5/Kconfig +++ b/arch/arm/mach-mx5/Kconfig | |||
@@ -1,11 +1,11 @@ | |||
1 | if ARCH_MX5 | 1 | if ARCH_MX503 || ARCH_MX51 |
2 | # ARCH_MX50/51/53 are left to mark places where prevent multi-soc in single | 2 | # ARCH_MX5/50/53 are left to mark places where prevent multi-soc in single |
3 | # image. So for most time, SOC_IMX50/51/53 should be used. | 3 | # image. So for most time, SOC_IMX50/51/53 should be used. |
4 | 4 | ||
5 | config ARCH_MX50 | 5 | config ARCH_MX5 |
6 | bool | 6 | bool |
7 | 7 | ||
8 | config ARCH_MX51 | 8 | config ARCH_MX50 |
9 | bool | 9 | bool |
10 | 10 | ||
11 | config ARCH_MX53 | 11 | config ARCH_MX53 |
@@ -13,27 +13,54 @@ config ARCH_MX53 | |||
13 | 13 | ||
14 | config SOC_IMX50 | 14 | config SOC_IMX50 |
15 | bool | 15 | bool |
16 | select CPU_V7 | ||
17 | select ARM_L1_CACHE_SHIFT_6 | ||
16 | select MXC_TZIC | 18 | select MXC_TZIC |
17 | select ARCH_MXC_IOMUX_V3 | 19 | select ARCH_MXC_IOMUX_V3 |
18 | select ARCH_MXC_AUDMUX_V2 | 20 | select ARCH_MXC_AUDMUX_V2 |
19 | select ARCH_HAS_CPUFREQ | 21 | select ARCH_HAS_CPUFREQ |
22 | select ARCH_MX5 | ||
20 | select ARCH_MX50 | 23 | select ARCH_MX50 |
21 | 24 | ||
22 | config SOC_IMX51 | 25 | config SOC_IMX51 |
23 | bool | 26 | bool |
27 | select CPU_V7 | ||
28 | select ARM_L1_CACHE_SHIFT_6 | ||
24 | select MXC_TZIC | 29 | select MXC_TZIC |
25 | select ARCH_MXC_IOMUX_V3 | 30 | select ARCH_MXC_IOMUX_V3 |
26 | select ARCH_MXC_AUDMUX_V2 | 31 | select ARCH_MXC_AUDMUX_V2 |
27 | select ARCH_HAS_CPUFREQ | 32 | select ARCH_HAS_CPUFREQ |
28 | select ARCH_MX51 | 33 | select ARCH_MX5 |
29 | 34 | ||
30 | config SOC_IMX53 | 35 | config SOC_IMX53 |
31 | bool | 36 | bool |
37 | select CPU_V7 | ||
38 | select ARM_L1_CACHE_SHIFT_6 | ||
32 | select MXC_TZIC | 39 | select MXC_TZIC |
33 | select ARCH_MXC_IOMUX_V3 | 40 | select ARCH_MXC_IOMUX_V3 |
41 | select ARCH_MX5 | ||
34 | select ARCH_MX53 | 42 | select ARCH_MX53 |
35 | 43 | ||
36 | comment "MX5 platforms:" | 44 | if ARCH_MX50_SUPPORTED |
45 | #comment "i.MX50 machines:" | ||
46 | |||
47 | config MACH_MX50_RDP | ||
48 | bool "Support MX50 reference design platform" | ||
49 | depends on BROKEN | ||
50 | select SOC_IMX50 | ||
51 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
52 | select IMX_HAVE_PLATFORM_IMX_UART | ||
53 | select IMX_HAVE_PLATFORM_SDHCI_ESDHC_IMX | ||
54 | select IMX_HAVE_PLATFORM_SPI_IMX | ||
55 | select IMX_HAVE_PLATFORM_FEC | ||
56 | help | ||
57 | Include support for MX50 reference design platform (RDP) board. This | ||
58 | includes specific configurations for the board and its peripherals. | ||
59 | |||
60 | endif # ARCH_MX50_SUPPORTED | ||
61 | |||
62 | if ARCH_MX51 | ||
63 | comment "i.MX51 machines:" | ||
37 | 64 | ||
38 | config MACH_MX51_BABBAGE | 65 | config MACH_MX51_BABBAGE |
39 | bool "Support MX51 BABBAGE platforms" | 66 | bool "Support MX51 BABBAGE platforms" |
@@ -136,6 +163,11 @@ config MACH_MX51_EFIKASB | |||
136 | Include support for Genesi Efika Smartbook. This includes specific | 163 | Include support for Genesi Efika Smartbook. This includes specific |
137 | configurations for the board and its peripherals. | 164 | configurations for the board and its peripherals. |
138 | 165 | ||
166 | endif # ARCH_MX51 | ||
167 | |||
168 | if ARCH_MX53_SUPPORTED | ||
169 | comment "i.MX53 machines:" | ||
170 | |||
139 | config MACH_MX53_EVK | 171 | config MACH_MX53_EVK |
140 | bool "Support MX53 EVK platforms" | 172 | bool "Support MX53 EVK platforms" |
141 | select SOC_IMX53 | 173 | select SOC_IMX53 |
@@ -154,6 +186,7 @@ config MACH_MX53_SMD | |||
154 | select IMX_HAVE_PLATFORM_IMX2_WDT | 186 | select IMX_HAVE_PLATFORM_IMX2_WDT |
155 | select IMX_HAVE_PLATFORM_IMX_I2C | 187 | select IMX_HAVE_PLATFORM_IMX_I2C |
156 | select IMX_HAVE_PLATFORM_IMX_UART | 188 | select IMX_HAVE_PLATFORM_IMX_UART |
189 | select IMX_HAVE_PLATFORM_SDHCI_ESDHC_IMX | ||
157 | help | 190 | help |
158 | Include support for MX53 SMD platform. This includes specific | 191 | Include support for MX53 SMD platform. This includes specific |
159 | configurations for the board and its peripherals. | 192 | configurations for the board and its peripherals. |
@@ -170,17 +203,6 @@ config MACH_MX53_LOCO | |||
170 | Include support for MX53 LOCO platform. This includes specific | 203 | Include support for MX53 LOCO platform. This includes specific |
171 | configurations for the board and its peripherals. | 204 | configurations for the board and its peripherals. |
172 | 205 | ||
173 | config MACH_MX50_RDP | 206 | endif # ARCH_MX53_SUPPORTED |
174 | bool "Support MX50 reference design platform" | ||
175 | depends on BROKEN | ||
176 | select SOC_IMX50 | ||
177 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
178 | select IMX_HAVE_PLATFORM_IMX_UART | ||
179 | select IMX_HAVE_PLATFORM_SDHCI_ESDHC_IMX | ||
180 | select IMX_HAVE_PLATFORM_SPI_IMX | ||
181 | select IMX_HAVE_PLATFORM_FEC | ||
182 | help | ||
183 | Include support for MX50 reference design platform (RDP) board. This | ||
184 | includes specific configurations for the board and its peripherals. | ||
185 | 207 | ||
186 | endif | 208 | endif |
diff --git a/arch/arm/mach-mx5/board-cpuimx51.c b/arch/arm/mach-mx5/board-cpuimx51.c index d0296a94c475..4efa02ee1639 100644 --- a/arch/arm/mach-mx5/board-cpuimx51.c +++ b/arch/arm/mach-mx5/board-cpuimx51.c | |||
@@ -23,13 +23,11 @@ | |||
23 | #include <linux/io.h> | 23 | #include <linux/io.h> |
24 | #include <linux/interrupt.h> | 24 | #include <linux/interrupt.h> |
25 | #include <linux/irq.h> | 25 | #include <linux/irq.h> |
26 | #include <linux/fsl_devices.h> | ||
27 | 26 | ||
28 | #include <mach/eukrea-baseboards.h> | 27 | #include <mach/eukrea-baseboards.h> |
29 | #include <mach/common.h> | 28 | #include <mach/common.h> |
30 | #include <mach/hardware.h> | 29 | #include <mach/hardware.h> |
31 | #include <mach/iomux-mx51.h> | 30 | #include <mach/iomux-mx51.h> |
32 | #include <mach/mxc_ehci.h> | ||
33 | 31 | ||
34 | #include <asm/irq.h> | 32 | #include <asm/irq.h> |
35 | #include <asm/setup.h> | 33 | #include <asm/setup.h> |
diff --git a/arch/arm/mach-mx5/board-cpuimx51sd.c b/arch/arm/mach-mx5/board-cpuimx51sd.c index 29b180823bf5..5ef25a596143 100644 --- a/arch/arm/mach-mx5/board-cpuimx51sd.c +++ b/arch/arm/mach-mx5/board-cpuimx51sd.c | |||
@@ -23,7 +23,6 @@ | |||
23 | #include <linux/io.h> | 23 | #include <linux/io.h> |
24 | #include <linux/interrupt.h> | 24 | #include <linux/interrupt.h> |
25 | #include <linux/irq.h> | 25 | #include <linux/irq.h> |
26 | #include <linux/fsl_devices.h> | ||
27 | #include <linux/i2c-gpio.h> | 26 | #include <linux/i2c-gpio.h> |
28 | #include <linux/spi/spi.h> | 27 | #include <linux/spi/spi.h> |
29 | #include <linux/can/platform/mcp251x.h> | 28 | #include <linux/can/platform/mcp251x.h> |
@@ -32,7 +31,6 @@ | |||
32 | #include <mach/common.h> | 31 | #include <mach/common.h> |
33 | #include <mach/hardware.h> | 32 | #include <mach/hardware.h> |
34 | #include <mach/iomux-mx51.h> | 33 | #include <mach/iomux-mx51.h> |
35 | #include <mach/mxc_ehci.h> | ||
36 | 34 | ||
37 | #include <asm/irq.h> | 35 | #include <asm/irq.h> |
38 | #include <asm/setup.h> | 36 | #include <asm/setup.h> |
diff --git a/arch/arm/mach-mx5/board-mx50_rdp.c b/arch/arm/mach-mx5/board-mx50_rdp.c index dedf7f2d6d0f..11210e1ae42a 100644 --- a/arch/arm/mach-mx5/board-mx50_rdp.c +++ b/arch/arm/mach-mx5/board-mx50_rdp.c | |||
@@ -23,7 +23,6 @@ | |||
23 | #include <linux/gpio.h> | 23 | #include <linux/gpio.h> |
24 | #include <linux/delay.h> | 24 | #include <linux/delay.h> |
25 | #include <linux/io.h> | 25 | #include <linux/io.h> |
26 | #include <linux/fsl_devices.h> | ||
27 | 26 | ||
28 | #include <mach/common.h> | 27 | #include <mach/common.h> |
29 | #include <mach/hardware.h> | 28 | #include <mach/hardware.h> |
diff --git a/arch/arm/mach-mx5/board-mx51_babbage.c b/arch/arm/mach-mx5/board-mx51_babbage.c index bea4e4135f9d..c7b3fabf50f9 100644 --- a/arch/arm/mach-mx5/board-mx51_babbage.c +++ b/arch/arm/mach-mx5/board-mx51_babbage.c | |||
@@ -16,9 +16,6 @@ | |||
16 | #include <linux/gpio.h> | 16 | #include <linux/gpio.h> |
17 | #include <linux/delay.h> | 17 | #include <linux/delay.h> |
18 | #include <linux/io.h> | 18 | #include <linux/io.h> |
19 | #include <linux/fsl_devices.h> | ||
20 | #include <linux/fec.h> | ||
21 | #include <linux/gpio_keys.h> | ||
22 | #include <linux/input.h> | 19 | #include <linux/input.h> |
23 | #include <linux/spi/flash.h> | 20 | #include <linux/spi/flash.h> |
24 | #include <linux/spi/spi.h> | 21 | #include <linux/spi/spi.h> |
@@ -26,7 +23,6 @@ | |||
26 | #include <mach/common.h> | 23 | #include <mach/common.h> |
27 | #include <mach/hardware.h> | 24 | #include <mach/hardware.h> |
28 | #include <mach/iomux-mx51.h> | 25 | #include <mach/iomux-mx51.h> |
29 | #include <mach/mxc_ehci.h> | ||
30 | 26 | ||
31 | #include <asm/irq.h> | 27 | #include <asm/irq.h> |
32 | #include <asm/setup.h> | 28 | #include <asm/setup.h> |
@@ -208,18 +204,16 @@ static inline void babbage_usbhub_reset(void) | |||
208 | { | 204 | { |
209 | int ret; | 205 | int ret; |
210 | 206 | ||
211 | /* Bring USB hub out of reset */ | 207 | /* Reset USB hub */ |
212 | ret = gpio_request(BABBAGE_USB_HUB_RESET, "GPIO1_7"); | 208 | ret = gpio_request_one(BABBAGE_USB_HUB_RESET, |
209 | GPIOF_OUT_INIT_LOW, "GPIO1_7"); | ||
213 | if (ret) { | 210 | if (ret) { |
214 | printk(KERN_ERR"failed to get GPIO_USB_HUB_RESET: %d\n", ret); | 211 | printk(KERN_ERR"failed to get GPIO_USB_HUB_RESET: %d\n", ret); |
215 | return; | 212 | return; |
216 | } | 213 | } |
217 | gpio_direction_output(BABBAGE_USB_HUB_RESET, 0); | ||
218 | 214 | ||
219 | /* USB HUB RESET - De-assert USB HUB RESET_N */ | 215 | msleep(2); |
220 | msleep(1); | 216 | /* Deassert reset */ |
221 | gpio_set_value(BABBAGE_USB_HUB_RESET, 0); | ||
222 | msleep(1); | ||
223 | gpio_set_value(BABBAGE_USB_HUB_RESET, 1); | 217 | gpio_set_value(BABBAGE_USB_HUB_RESET, 1); |
224 | } | 218 | } |
225 | 219 | ||
@@ -361,7 +355,7 @@ static void __init mx51_babbage_init(void) | |||
361 | 355 | ||
362 | /* Set the PAD settings for the pwr key. */ | 356 | /* Set the PAD settings for the pwr key. */ |
363 | mxc_iomux_v3_setup_pad(power_key); | 357 | mxc_iomux_v3_setup_pad(power_key); |
364 | imx51_add_gpio_keys(&imx_button_data); | 358 | imx_add_gpio_keys(&imx_button_data); |
365 | 359 | ||
366 | imx51_add_imx_i2c(0, &babbage_i2c_data); | 360 | imx51_add_imx_i2c(0, &babbage_i2c_data); |
367 | imx51_add_imx_i2c(1, &babbage_i2c_data); | 361 | imx51_add_imx_i2c(1, &babbage_i2c_data); |
diff --git a/arch/arm/mach-mx5/board-mx51_efikamx.c b/arch/arm/mach-mx5/board-mx51_efikamx.c index acab1911cb3c..6e362315291b 100644 --- a/arch/arm/mach-mx5/board-mx51_efikamx.c +++ b/arch/arm/mach-mx5/board-mx51_efikamx.c | |||
@@ -22,7 +22,6 @@ | |||
22 | #include <linux/input.h> | 22 | #include <linux/input.h> |
23 | #include <linux/delay.h> | 23 | #include <linux/delay.h> |
24 | #include <linux/io.h> | 24 | #include <linux/io.h> |
25 | #include <linux/fsl_devices.h> | ||
26 | #include <linux/spi/flash.h> | 25 | #include <linux/spi/flash.h> |
27 | #include <linux/spi/spi.h> | 26 | #include <linux/spi/spi.h> |
28 | #include <linux/mfd/mc13892.h> | 27 | #include <linux/mfd/mc13892.h> |
@@ -32,8 +31,6 @@ | |||
32 | #include <mach/common.h> | 31 | #include <mach/common.h> |
33 | #include <mach/hardware.h> | 32 | #include <mach/hardware.h> |
34 | #include <mach/iomux-mx51.h> | 33 | #include <mach/iomux-mx51.h> |
35 | #include <mach/i2c.h> | ||
36 | #include <mach/mxc_ehci.h> | ||
37 | 34 | ||
38 | #include <asm/irq.h> | 35 | #include <asm/irq.h> |
39 | #include <asm/setup.h> | 36 | #include <asm/setup.h> |
@@ -252,7 +249,7 @@ static void __init mx51_efikamx_init(void) | |||
252 | } | 249 | } |
253 | 250 | ||
254 | platform_device_register(&mx51_efikamx_leds_device); | 251 | platform_device_register(&mx51_efikamx_leds_device); |
255 | imx51_add_gpio_keys(&mx51_efikamx_powerkey_data); | 252 | imx_add_gpio_keys(&mx51_efikamx_powerkey_data); |
256 | 253 | ||
257 | if (system_rev == 0x11) { | 254 | if (system_rev == 0x11) { |
258 | gpio_request(EFIKAMX_RESET1_1, "reset"); | 255 | gpio_request(EFIKAMX_RESET1_1, "reset"); |
diff --git a/arch/arm/mach-mx5/board-mx51_efikasb.c b/arch/arm/mach-mx5/board-mx51_efikasb.c index db04ce8462dc..474fc6e4c6df 100644 --- a/arch/arm/mach-mx5/board-mx51_efikasb.c +++ b/arch/arm/mach-mx5/board-mx51_efikasb.c | |||
@@ -22,7 +22,6 @@ | |||
22 | #include <linux/input.h> | 22 | #include <linux/input.h> |
23 | #include <linux/delay.h> | 23 | #include <linux/delay.h> |
24 | #include <linux/io.h> | 24 | #include <linux/io.h> |
25 | #include <linux/fsl_devices.h> | ||
26 | #include <linux/spi/flash.h> | 25 | #include <linux/spi/flash.h> |
27 | #include <linux/spi/spi.h> | 26 | #include <linux/spi/spi.h> |
28 | #include <linux/mfd/mc13892.h> | 27 | #include <linux/mfd/mc13892.h> |
@@ -35,8 +34,6 @@ | |||
35 | #include <mach/common.h> | 34 | #include <mach/common.h> |
36 | #include <mach/hardware.h> | 35 | #include <mach/hardware.h> |
37 | #include <mach/iomux-mx51.h> | 36 | #include <mach/iomux-mx51.h> |
38 | #include <mach/i2c.h> | ||
39 | #include <mach/mxc_ehci.h> | ||
40 | 37 | ||
41 | #include <asm/irq.h> | 38 | #include <asm/irq.h> |
42 | #include <asm/setup.h> | 39 | #include <asm/setup.h> |
@@ -260,7 +257,7 @@ static void __init efikasb_board_init(void) | |||
260 | imx51_add_sdhci_esdhc_imx(1, NULL); | 257 | imx51_add_sdhci_esdhc_imx(1, NULL); |
261 | 258 | ||
262 | platform_device_register(&mx51_efikasb_leds_device); | 259 | platform_device_register(&mx51_efikasb_leds_device); |
263 | imx51_add_gpio_keys(&mx51_efikasb_keys_data); | 260 | imx_add_gpio_keys(&mx51_efikasb_keys_data); |
264 | 261 | ||
265 | } | 262 | } |
266 | 263 | ||
diff --git a/arch/arm/mach-mx5/board-mx53_evk.c b/arch/arm/mach-mx5/board-mx53_evk.c index 2af3f43f74db..f87d571882c6 100644 --- a/arch/arm/mach-mx5/board-mx53_evk.c +++ b/arch/arm/mach-mx5/board-mx53_evk.c | |||
@@ -21,7 +21,6 @@ | |||
21 | 21 | ||
22 | #include <linux/init.h> | 22 | #include <linux/init.h> |
23 | #include <linux/clk.h> | 23 | #include <linux/clk.h> |
24 | #include <linux/fec.h> | ||
25 | #include <linux/delay.h> | 24 | #include <linux/delay.h> |
26 | #include <linux/gpio.h> | 25 | #include <linux/gpio.h> |
27 | #include <linux/spi/flash.h> | 26 | #include <linux/spi/flash.h> |
@@ -31,7 +30,6 @@ | |||
31 | #include <asm/mach-types.h> | 30 | #include <asm/mach-types.h> |
32 | #include <asm/mach/arch.h> | 31 | #include <asm/mach/arch.h> |
33 | #include <asm/mach/time.h> | 32 | #include <asm/mach/time.h> |
34 | #include <mach/imx-uart.h> | ||
35 | #include <mach/iomux-mx53.h> | 33 | #include <mach/iomux-mx53.h> |
36 | 34 | ||
37 | #define MX53_EVK_FEC_PHY_RST IMX_GPIO_NR(7, 6) | 35 | #define MX53_EVK_FEC_PHY_RST IMX_GPIO_NR(7, 6) |
diff --git a/arch/arm/mach-mx5/board-mx53_loco.c b/arch/arm/mach-mx5/board-mx53_loco.c index 6206b1191fe8..1b947e8c9c0c 100644 --- a/arch/arm/mach-mx5/board-mx53_loco.c +++ b/arch/arm/mach-mx5/board-mx53_loco.c | |||
@@ -20,13 +20,11 @@ | |||
20 | 20 | ||
21 | #include <linux/init.h> | 21 | #include <linux/init.h> |
22 | #include <linux/clk.h> | 22 | #include <linux/clk.h> |
23 | #include <linux/fec.h> | ||
24 | #include <linux/delay.h> | 23 | #include <linux/delay.h> |
25 | #include <linux/gpio.h> | 24 | #include <linux/gpio.h> |
26 | 25 | ||
27 | #include <mach/common.h> | 26 | #include <mach/common.h> |
28 | #include <mach/hardware.h> | 27 | #include <mach/hardware.h> |
29 | #include <mach/imx-uart.h> | ||
30 | #include <mach/iomux-mx53.h> | 28 | #include <mach/iomux-mx53.h> |
31 | 29 | ||
32 | #include <asm/mach-types.h> | 30 | #include <asm/mach-types.h> |
diff --git a/arch/arm/mach-mx5/board-mx53_smd.c b/arch/arm/mach-mx5/board-mx53_smd.c index 31e173267edf..817c08938f55 100644 --- a/arch/arm/mach-mx5/board-mx53_smd.c +++ b/arch/arm/mach-mx5/board-mx53_smd.c | |||
@@ -20,13 +20,11 @@ | |||
20 | 20 | ||
21 | #include <linux/init.h> | 21 | #include <linux/init.h> |
22 | #include <linux/clk.h> | 22 | #include <linux/clk.h> |
23 | #include <linux/fec.h> | ||
24 | #include <linux/delay.h> | 23 | #include <linux/delay.h> |
25 | #include <linux/gpio.h> | 24 | #include <linux/gpio.h> |
26 | 25 | ||
27 | #include <mach/common.h> | 26 | #include <mach/common.h> |
28 | #include <mach/hardware.h> | 27 | #include <mach/hardware.h> |
29 | #include <mach/imx-uart.h> | ||
30 | #include <mach/iomux-mx53.h> | 28 | #include <mach/iomux-mx53.h> |
31 | 29 | ||
32 | #include <asm/mach-types.h> | 30 | #include <asm/mach-types.h> |
@@ -52,6 +50,31 @@ static iomux_v3_cfg_t mx53_smd_pads[] = { | |||
52 | /* I2C1 */ | 50 | /* I2C1 */ |
53 | MX53_PAD_CSI0_DAT8__I2C1_SDA, | 51 | MX53_PAD_CSI0_DAT8__I2C1_SDA, |
54 | MX53_PAD_CSI0_DAT9__I2C1_SCL, | 52 | MX53_PAD_CSI0_DAT9__I2C1_SCL, |
53 | /* SD1 */ | ||
54 | MX53_PAD_SD1_CMD__ESDHC1_CMD, | ||
55 | MX53_PAD_SD1_CLK__ESDHC1_CLK, | ||
56 | MX53_PAD_SD1_DATA0__ESDHC1_DAT0, | ||
57 | MX53_PAD_SD1_DATA1__ESDHC1_DAT1, | ||
58 | MX53_PAD_SD1_DATA2__ESDHC1_DAT2, | ||
59 | MX53_PAD_SD1_DATA3__ESDHC1_DAT3, | ||
60 | /* SD2 */ | ||
61 | MX53_PAD_SD2_CMD__ESDHC2_CMD, | ||
62 | MX53_PAD_SD2_CLK__ESDHC2_CLK, | ||
63 | MX53_PAD_SD2_DATA0__ESDHC2_DAT0, | ||
64 | MX53_PAD_SD2_DATA1__ESDHC2_DAT1, | ||
65 | MX53_PAD_SD2_DATA2__ESDHC2_DAT2, | ||
66 | MX53_PAD_SD2_DATA3__ESDHC2_DAT3, | ||
67 | /* SD3 */ | ||
68 | MX53_PAD_PATA_DATA8__ESDHC3_DAT0, | ||
69 | MX53_PAD_PATA_DATA9__ESDHC3_DAT1, | ||
70 | MX53_PAD_PATA_DATA10__ESDHC3_DAT2, | ||
71 | MX53_PAD_PATA_DATA11__ESDHC3_DAT3, | ||
72 | MX53_PAD_PATA_DATA0__ESDHC3_DAT4, | ||
73 | MX53_PAD_PATA_DATA1__ESDHC3_DAT5, | ||
74 | MX53_PAD_PATA_DATA2__ESDHC3_DAT6, | ||
75 | MX53_PAD_PATA_DATA3__ESDHC3_DAT7, | ||
76 | MX53_PAD_PATA_IORDY__ESDHC3_CLK, | ||
77 | MX53_PAD_PATA_RESET_B__ESDHC3_CMD, | ||
55 | }; | 78 | }; |
56 | 79 | ||
57 | static const struct imxuart_platform_data mx53_smd_uart_data __initconst = { | 80 | static const struct imxuart_platform_data mx53_smd_uart_data __initconst = { |
@@ -97,6 +120,9 @@ static void __init mx53_smd_board_init(void) | |||
97 | imx53_add_fec(&mx53_smd_fec_data); | 120 | imx53_add_fec(&mx53_smd_fec_data); |
98 | imx53_add_imx2_wdt(0, NULL); | 121 | imx53_add_imx2_wdt(0, NULL); |
99 | imx53_add_imx_i2c(0, &mx53_smd_i2c_data); | 122 | imx53_add_imx_i2c(0, &mx53_smd_i2c_data); |
123 | imx53_add_sdhci_esdhc_imx(0, NULL); | ||
124 | imx53_add_sdhci_esdhc_imx(1, NULL); | ||
125 | imx53_add_sdhci_esdhc_imx(2, NULL); | ||
100 | } | 126 | } |
101 | 127 | ||
102 | static void __init mx53_smd_timer_init(void) | 128 | static void __init mx53_smd_timer_init(void) |
diff --git a/arch/arm/mach-mx5/clock-mx51-mx53.c b/arch/arm/mach-mx5/clock-mx51-mx53.c index fdbc05ed5513..6b89c1bf4eb2 100644 --- a/arch/arm/mach-mx5/clock-mx51-mx53.c +++ b/arch/arm/mach-mx5/clock-mx51-mx53.c | |||
@@ -1563,6 +1563,7 @@ int __init mx53_clocks_init(unsigned long ckil, unsigned long osc, | |||
1563 | clk_enable(&iim_clk); | 1563 | clk_enable(&iim_clk); |
1564 | mx53_revision(); | 1564 | mx53_revision(); |
1565 | clk_disable(&iim_clk); | 1565 | clk_disable(&iim_clk); |
1566 | mx53_display_revision(); | ||
1566 | 1567 | ||
1567 | /* Set SDHC parents to be PLL2 */ | 1568 | /* Set SDHC parents to be PLL2 */ |
1568 | clk_set_parent(&esdhc1_clk, &pll2_sw_clk); | 1569 | clk_set_parent(&esdhc1_clk, &pll2_sw_clk); |
diff --git a/arch/arm/mach-mx5/cpu.c b/arch/arm/mach-mx5/cpu.c index 472bdfab2e55..86f87da59c64 100644 --- a/arch/arm/mach-mx5/cpu.c +++ b/arch/arm/mach-mx5/cpu.c | |||
@@ -166,6 +166,29 @@ int mx50_revision(void) | |||
166 | } | 166 | } |
167 | EXPORT_SYMBOL(mx50_revision); | 167 | EXPORT_SYMBOL(mx50_revision); |
168 | 168 | ||
169 | void mx53_display_revision(void) | ||
170 | { | ||
171 | int rev; | ||
172 | char *srev; | ||
173 | rev = mx53_revision(); | ||
174 | |||
175 | switch (rev) { | ||
176 | case IMX_CHIP_REVISION_1_0: | ||
177 | srev = IMX_CHIP_REVISION_1_0_STRING; | ||
178 | break; | ||
179 | case IMX_CHIP_REVISION_2_0: | ||
180 | srev = IMX_CHIP_REVISION_2_0_STRING; | ||
181 | break; | ||
182 | case IMX_CHIP_REVISION_2_1: | ||
183 | srev = IMX_CHIP_REVISION_2_1_STRING; | ||
184 | break; | ||
185 | default: | ||
186 | srev = IMX_CHIP_REVISION_UNKNOWN_STRING; | ||
187 | } | ||
188 | printk(KERN_INFO "CPU identified as i.MX53, silicon rev %s\n", srev); | ||
189 | } | ||
190 | EXPORT_SYMBOL(mx53_display_revision); | ||
191 | |||
169 | static int __init post_cpu_init(void) | 192 | static int __init post_cpu_init(void) |
170 | { | 193 | { |
171 | unsigned int reg; | 194 | unsigned int reg; |
diff --git a/arch/arm/mach-mx5/devices-imx50.h b/arch/arm/mach-mx5/devices-imx50.h index c9e42823c7e3..7216667eaafc 100644 --- a/arch/arm/mach-mx5/devices-imx50.h +++ b/arch/arm/mach-mx5/devices-imx50.h | |||
@@ -21,14 +21,14 @@ | |||
21 | #include <mach/mx50.h> | 21 | #include <mach/mx50.h> |
22 | #include <mach/devices-common.h> | 22 | #include <mach/devices-common.h> |
23 | 23 | ||
24 | extern const struct imx_imx_uart_1irq_data imx50_imx_uart_data[] __initconst; | 24 | extern const struct imx_imx_uart_1irq_data imx50_imx_uart_data[]; |
25 | #define imx50_add_imx_uart(id, pdata) \ | 25 | #define imx50_add_imx_uart(id, pdata) \ |
26 | imx_add_imx_uart_1irq(&imx50_imx_uart_data[id], pdata) | 26 | imx_add_imx_uart_1irq(&imx50_imx_uart_data[id], pdata) |
27 | 27 | ||
28 | extern const struct imx_fec_data imx50_fec_data __initconst; | 28 | extern const struct imx_fec_data imx50_fec_data; |
29 | #define imx50_add_fec(pdata) \ | 29 | #define imx50_add_fec(pdata) \ |
30 | imx_add_fec(&imx50_fec_data, pdata) | 30 | imx_add_fec(&imx50_fec_data, pdata) |
31 | 31 | ||
32 | extern const struct imx_imx_i2c_data imx50_imx_i2c_data[] __initconst; | 32 | extern const struct imx_imx_i2c_data imx50_imx_i2c_data[]; |
33 | #define imx50_add_imx_i2c(id, pdata) \ | 33 | #define imx50_add_imx_i2c(id, pdata) \ |
34 | imx_add_imx_i2c(&imx50_imx_i2c_data[id], pdata) | 34 | imx_add_imx_i2c(&imx50_imx_i2c_data[id], pdata) |
diff --git a/arch/arm/mach-mx5/devices-imx51.h b/arch/arm/mach-mx5/devices-imx51.h index 7fff485e5603..e11bc0e0ec49 100644 --- a/arch/arm/mach-mx5/devices-imx51.h +++ b/arch/arm/mach-mx5/devices-imx51.h | |||
@@ -9,49 +9,46 @@ | |||
9 | #include <mach/mx51.h> | 9 | #include <mach/mx51.h> |
10 | #include <mach/devices-common.h> | 10 | #include <mach/devices-common.h> |
11 | 11 | ||
12 | extern const struct imx_fec_data imx51_fec_data __initconst; | 12 | extern const struct imx_fec_data imx51_fec_data; |
13 | #define imx51_add_fec(pdata) \ | 13 | #define imx51_add_fec(pdata) \ |
14 | imx_add_fec(&imx51_fec_data, pdata) | 14 | imx_add_fec(&imx51_fec_data, pdata) |
15 | 15 | ||
16 | #define imx51_add_gpio_keys(pdata) imx_add_gpio_keys(pdata) | 16 | extern const struct imx_imx_i2c_data imx51_imx_i2c_data[]; |
17 | |||
18 | extern const struct imx_imx_i2c_data imx51_imx_i2c_data[] __initconst; | ||
19 | #define imx51_add_imx_i2c(id, pdata) \ | 17 | #define imx51_add_imx_i2c(id, pdata) \ |
20 | imx_add_imx_i2c(&imx51_imx_i2c_data[id], pdata) | 18 | imx_add_imx_i2c(&imx51_imx_i2c_data[id], pdata) |
21 | 19 | ||
22 | extern const struct imx_imx_ssi_data imx51_imx_ssi_data[] __initconst; | 20 | extern const struct imx_imx_ssi_data imx51_imx_ssi_data[]; |
23 | #define imx51_add_imx_ssi(id, pdata) \ | 21 | #define imx51_add_imx_ssi(id, pdata) \ |
24 | imx_add_imx_ssi(&imx51_imx_ssi_data[id], pdata) | 22 | imx_add_imx_ssi(&imx51_imx_ssi_data[id], pdata) |
25 | 23 | ||
26 | extern const struct imx_imx_uart_1irq_data imx51_imx_uart_data[] __initconst; | 24 | extern const struct imx_imx_uart_1irq_data imx51_imx_uart_data[]; |
27 | #define imx51_add_imx_uart(id, pdata) \ | 25 | #define imx51_add_imx_uart(id, pdata) \ |
28 | imx_add_imx_uart_1irq(&imx51_imx_uart_data[id], pdata) | 26 | imx_add_imx_uart_1irq(&imx51_imx_uart_data[id], pdata) |
29 | 27 | ||
30 | extern const struct imx_mxc_nand_data imx51_mxc_nand_data __initconst; | 28 | extern const struct imx_mxc_nand_data imx51_mxc_nand_data; |
31 | #define imx51_add_mxc_nand(pdata) \ | 29 | #define imx51_add_mxc_nand(pdata) \ |
32 | imx_add_mxc_nand(&imx51_mxc_nand_data, pdata) | 30 | imx_add_mxc_nand(&imx51_mxc_nand_data, pdata) |
33 | 31 | ||
34 | extern const struct imx_sdhci_esdhc_imx_data | 32 | extern const struct imx_sdhci_esdhc_imx_data imx51_sdhci_esdhc_imx_data[]; |
35 | imx51_sdhci_esdhc_imx_data[] __initconst; | ||
36 | #define imx51_add_sdhci_esdhc_imx(id, pdata) \ | 33 | #define imx51_add_sdhci_esdhc_imx(id, pdata) \ |
37 | imx_add_sdhci_esdhc_imx(&imx51_sdhci_esdhc_imx_data[id], pdata) | 34 | imx_add_sdhci_esdhc_imx(&imx51_sdhci_esdhc_imx_data[id], pdata) |
38 | 35 | ||
39 | extern const struct imx_spi_imx_data imx51_cspi_data __initconst; | 36 | extern const struct imx_spi_imx_data imx51_cspi_data; |
40 | #define imx51_add_cspi(pdata) \ | 37 | #define imx51_add_cspi(pdata) \ |
41 | imx_add_spi_imx(&imx51_cspi_data, pdata) | 38 | imx_add_spi_imx(&imx51_cspi_data, pdata) |
42 | 39 | ||
43 | extern const struct imx_spi_imx_data imx51_ecspi_data[] __initconst; | 40 | extern const struct imx_spi_imx_data imx51_ecspi_data[]; |
44 | #define imx51_add_ecspi(id, pdata) \ | 41 | #define imx51_add_ecspi(id, pdata) \ |
45 | imx_add_spi_imx(&imx51_ecspi_data[id], pdata) | 42 | imx_add_spi_imx(&imx51_ecspi_data[id], pdata) |
46 | 43 | ||
47 | extern const struct imx_imx2_wdt_data imx51_imx2_wdt_data[] __initconst; | 44 | extern const struct imx_imx2_wdt_data imx51_imx2_wdt_data[]; |
48 | #define imx51_add_imx2_wdt(id, pdata) \ | 45 | #define imx51_add_imx2_wdt(id, pdata) \ |
49 | imx_add_imx2_wdt(&imx51_imx2_wdt_data[id]) | 46 | imx_add_imx2_wdt(&imx51_imx2_wdt_data[id]) |
50 | 47 | ||
51 | extern const struct imx_mxc_pwm_data imx51_mxc_pwm_data[] __initconst; | 48 | extern const struct imx_mxc_pwm_data imx51_mxc_pwm_data[]; |
52 | #define imx51_add_mxc_pwm(id) \ | 49 | #define imx51_add_mxc_pwm(id) \ |
53 | imx_add_mxc_pwm(&imx51_mxc_pwm_data[id]) | 50 | imx_add_mxc_pwm(&imx51_mxc_pwm_data[id]) |
54 | 51 | ||
55 | extern const struct imx_imx_keypad_data imx51_imx_keypad_data __initconst; | 52 | extern const struct imx_imx_keypad_data imx51_imx_keypad_data; |
56 | #define imx51_add_imx_keypad(pdata) \ | 53 | #define imx51_add_imx_keypad(pdata) \ |
57 | imx_add_imx_keypad(&imx51_imx_keypad_data, pdata) | 54 | imx_add_imx_keypad(&imx51_imx_keypad_data, pdata) |
diff --git a/arch/arm/mach-mx5/devices-imx53.h b/arch/arm/mach-mx5/devices-imx53.h index 9251008dad1f..48f4c8cc42f5 100644 --- a/arch/arm/mach-mx5/devices-imx53.h +++ b/arch/arm/mach-mx5/devices-imx53.h | |||
@@ -8,28 +8,27 @@ | |||
8 | #include <mach/mx53.h> | 8 | #include <mach/mx53.h> |
9 | #include <mach/devices-common.h> | 9 | #include <mach/devices-common.h> |
10 | 10 | ||
11 | extern const struct imx_fec_data imx53_fec_data __initconst; | 11 | extern const struct imx_fec_data imx53_fec_data; |
12 | #define imx53_add_fec(pdata) \ | 12 | #define imx53_add_fec(pdata) \ |
13 | imx_add_fec(&imx53_fec_data, pdata) | 13 | imx_add_fec(&imx53_fec_data, pdata) |
14 | 14 | ||
15 | extern const struct imx_imx_uart_1irq_data imx53_imx_uart_data[] __initconst; | 15 | extern const struct imx_imx_uart_1irq_data imx53_imx_uart_data[]; |
16 | #define imx53_add_imx_uart(id, pdata) \ | 16 | #define imx53_add_imx_uart(id, pdata) \ |
17 | imx_add_imx_uart_1irq(&imx53_imx_uart_data[id], pdata) | 17 | imx_add_imx_uart_1irq(&imx53_imx_uart_data[id], pdata) |
18 | 18 | ||
19 | 19 | ||
20 | extern const struct imx_imx_i2c_data imx53_imx_i2c_data[] __initconst; | 20 | extern const struct imx_imx_i2c_data imx53_imx_i2c_data[]; |
21 | #define imx53_add_imx_i2c(id, pdata) \ | 21 | #define imx53_add_imx_i2c(id, pdata) \ |
22 | imx_add_imx_i2c(&imx53_imx_i2c_data[id], pdata) | 22 | imx_add_imx_i2c(&imx53_imx_i2c_data[id], pdata) |
23 | 23 | ||
24 | extern const struct imx_sdhci_esdhc_imx_data | 24 | extern const struct imx_sdhci_esdhc_imx_data imx53_sdhci_esdhc_imx_data[]; |
25 | imx53_sdhci_esdhc_imx_data[] __initconst; | ||
26 | #define imx53_add_sdhci_esdhc_imx(id, pdata) \ | 25 | #define imx53_add_sdhci_esdhc_imx(id, pdata) \ |
27 | imx_add_sdhci_esdhc_imx(&imx53_sdhci_esdhc_imx_data[id], pdata) | 26 | imx_add_sdhci_esdhc_imx(&imx53_sdhci_esdhc_imx_data[id], pdata) |
28 | 27 | ||
29 | extern const struct imx_spi_imx_data imx53_ecspi_data[] __initconst; | 28 | extern const struct imx_spi_imx_data imx53_ecspi_data[]; |
30 | #define imx53_add_ecspi(id, pdata) \ | 29 | #define imx53_add_ecspi(id, pdata) \ |
31 | imx_add_spi_imx(&imx53_ecspi_data[id], pdata) | 30 | imx_add_spi_imx(&imx53_ecspi_data[id], pdata) |
32 | 31 | ||
33 | extern const struct imx_imx2_wdt_data imx53_imx2_wdt_data[] __initconst; | 32 | extern const struct imx_imx2_wdt_data imx53_imx2_wdt_data[]; |
34 | #define imx53_add_imx2_wdt(id, pdata) \ | 33 | #define imx53_add_imx2_wdt(id, pdata) \ |
35 | imx_add_imx2_wdt(&imx53_imx2_wdt_data[id]) | 34 | imx_add_imx2_wdt(&imx53_imx2_wdt_data[id]) |
diff --git a/arch/arm/mach-mx5/eukrea_mbimx51-baseboard.c b/arch/arm/mach-mx5/eukrea_mbimx51-baseboard.c index 4a8550529b04..97292d20f1f3 100644 --- a/arch/arm/mach-mx5/eukrea_mbimx51-baseboard.c +++ b/arch/arm/mach-mx5/eukrea_mbimx51-baseboard.c | |||
@@ -18,13 +18,11 @@ | |||
18 | #include <linux/io.h> | 18 | #include <linux/io.h> |
19 | #include <linux/interrupt.h> | 19 | #include <linux/interrupt.h> |
20 | #include <linux/irq.h> | 20 | #include <linux/irq.h> |
21 | #include <linux/fsl_devices.h> | ||
22 | #include <linux/i2c/tsc2007.h> | 21 | #include <linux/i2c/tsc2007.h> |
23 | #include <linux/leds.h> | 22 | #include <linux/leds.h> |
24 | 23 | ||
25 | #include <mach/common.h> | 24 | #include <mach/common.h> |
26 | #include <mach/hardware.h> | 25 | #include <mach/hardware.h> |
27 | #include <mach/imx-uart.h> | ||
28 | #include <mach/iomux-mx51.h> | 26 | #include <mach/iomux-mx51.h> |
29 | 27 | ||
30 | #include <asm/mach/arch.h> | 28 | #include <asm/mach/arch.h> |
diff --git a/arch/arm/mach-mx5/eukrea_mbimxsd-baseboard.c b/arch/arm/mach-mx5/eukrea_mbimxsd-baseboard.c index e6c1119c20ae..31c871ec46a6 100644 --- a/arch/arm/mach-mx5/eukrea_mbimxsd-baseboard.c +++ b/arch/arm/mach-mx5/eukrea_mbimxsd-baseboard.c | |||
@@ -27,7 +27,6 @@ | |||
27 | #include <linux/irq.h> | 27 | #include <linux/irq.h> |
28 | #include <linux/leds.h> | 28 | #include <linux/leds.h> |
29 | #include <linux/platform_device.h> | 29 | #include <linux/platform_device.h> |
30 | #include <linux/gpio_keys.h> | ||
31 | #include <linux/input.h> | 30 | #include <linux/input.h> |
32 | #include <linux/i2c.h> | 31 | #include <linux/i2c.h> |
33 | 32 | ||
@@ -38,7 +37,6 @@ | |||
38 | 37 | ||
39 | #include <mach/hardware.h> | 38 | #include <mach/hardware.h> |
40 | #include <mach/common.h> | 39 | #include <mach/common.h> |
41 | #include <mach/imx-uart.h> | ||
42 | #include <mach/iomux-mx51.h> | 40 | #include <mach/iomux-mx51.h> |
43 | #include <mach/audmux.h> | 41 | #include <mach/audmux.h> |
44 | 42 | ||
@@ -108,23 +106,14 @@ static struct gpio_keys_button eukrea_mbimxsd_gpio_buttons[] = { | |||
108 | }, | 106 | }, |
109 | }; | 107 | }; |
110 | 108 | ||
111 | static struct gpio_keys_platform_data eukrea_mbimxsd_button_data = { | 109 | static const struct gpio_keys_platform_data |
110 | eukrea_mbimxsd_button_data __initconst = { | ||
112 | .buttons = eukrea_mbimxsd_gpio_buttons, | 111 | .buttons = eukrea_mbimxsd_gpio_buttons, |
113 | .nbuttons = ARRAY_SIZE(eukrea_mbimxsd_gpio_buttons), | 112 | .nbuttons = ARRAY_SIZE(eukrea_mbimxsd_gpio_buttons), |
114 | }; | 113 | }; |
115 | 114 | ||
116 | static struct platform_device eukrea_mbimxsd_button_device = { | ||
117 | .name = "gpio-keys", | ||
118 | .id = -1, | ||
119 | .num_resources = 0, | ||
120 | .dev = { | ||
121 | .platform_data = &eukrea_mbimxsd_button_data, | ||
122 | } | ||
123 | }; | ||
124 | |||
125 | static struct platform_device *platform_devices[] __initdata = { | 115 | static struct platform_device *platform_devices[] __initdata = { |
126 | &eukrea_mbimxsd_leds_gpio, | 116 | &eukrea_mbimxsd_leds_gpio, |
127 | &eukrea_mbimxsd_button_device, | ||
128 | }; | 117 | }; |
129 | 118 | ||
130 | static const struct imxuart_platform_data uart_pdata __initconst = { | 119 | static const struct imxuart_platform_data uart_pdata __initconst = { |
@@ -166,4 +155,5 @@ void __init eukrea_mbimxsd51_baseboard_init(void) | |||
166 | ARRAY_SIZE(eukrea_mbimxsd_i2c_devices)); | 155 | ARRAY_SIZE(eukrea_mbimxsd_i2c_devices)); |
167 | 156 | ||
168 | platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices)); | 157 | platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices)); |
158 | imx_add_gpio_keys(&eukrea_mbimxsd_button_data); | ||
169 | } | 159 | } |
diff --git a/arch/arm/mach-mx5/mx51_efika.c b/arch/arm/mach-mx5/mx51_efika.c index d0c7075937cf..56739c23aca7 100644 --- a/arch/arm/mach-mx5/mx51_efika.c +++ b/arch/arm/mach-mx5/mx51_efika.c | |||
@@ -20,7 +20,6 @@ | |||
20 | #include <linux/input.h> | 20 | #include <linux/input.h> |
21 | #include <linux/delay.h> | 21 | #include <linux/delay.h> |
22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
23 | #include <linux/fsl_devices.h> | ||
24 | #include <linux/spi/flash.h> | 23 | #include <linux/spi/flash.h> |
25 | #include <linux/spi/spi.h> | 24 | #include <linux/spi/spi.h> |
26 | #include <linux/mfd/mc13892.h> | 25 | #include <linux/mfd/mc13892.h> |
@@ -30,8 +29,6 @@ | |||
30 | #include <mach/common.h> | 29 | #include <mach/common.h> |
31 | #include <mach/hardware.h> | 30 | #include <mach/hardware.h> |
32 | #include <mach/iomux-mx51.h> | 31 | #include <mach/iomux-mx51.h> |
33 | #include <mach/i2c.h> | ||
34 | #include <mach/mxc_ehci.h> | ||
35 | 32 | ||
36 | #include <linux/usb/otg.h> | 33 | #include <linux/usb/otg.h> |
37 | #include <linux/usb/ulpi.h> | 34 | #include <linux/usb/ulpi.h> |
diff --git a/arch/arm/mach-mxc91231/Kconfig b/arch/arm/mach-mxc91231/Kconfig deleted file mode 100644 index 8e5fa38ebb67..000000000000 --- a/arch/arm/mach-mxc91231/Kconfig +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | if ARCH_MXC91231 | ||
2 | |||
3 | comment "MXC91231 platforms:" | ||
4 | |||
5 | config MACH_MAGX_ZN5 | ||
6 | bool "Support Motorola Zn5 GSM phone" | ||
7 | default n | ||
8 | help | ||
9 | Include support for Motorola Zn5 GSM phone. | ||
10 | |||
11 | endif | ||
diff --git a/arch/arm/mach-mxc91231/Makefile b/arch/arm/mach-mxc91231/Makefile deleted file mode 100644 index 011d5e197125..000000000000 --- a/arch/arm/mach-mxc91231/Makefile +++ /dev/null | |||
@@ -1,2 +0,0 @@ | |||
1 | obj-y := mm.o clock.o devices.o system.o iomux.o | ||
2 | obj-$(CONFIG_MACH_MAGX_ZN5) += magx-zn5.o | ||
diff --git a/arch/arm/mach-mxc91231/Makefile.boot b/arch/arm/mach-mxc91231/Makefile.boot deleted file mode 100644 index 9939a19d99a1..000000000000 --- a/arch/arm/mach-mxc91231/Makefile.boot +++ /dev/null | |||
@@ -1,3 +0,0 @@ | |||
1 | zreladdr-y := 0x90008000 | ||
2 | params_phys-y := 0x90000100 | ||
3 | initrd_phys-y := 0x90800000 | ||
diff --git a/arch/arm/mach-mxc91231/clock.c b/arch/arm/mach-mxc91231/clock.c deleted file mode 100644 index 9fab505f1eb1..000000000000 --- a/arch/arm/mach-mxc91231/clock.c +++ /dev/null | |||
@@ -1,640 +0,0 @@ | |||
1 | #include <linux/clk.h> | ||
2 | #include <linux/kernel.h> | ||
3 | #include <linux/init.h> | ||
4 | #include <linux/io.h> | ||
5 | #include <linux/clkdev.h> | ||
6 | |||
7 | #include <mach/clock.h> | ||
8 | #include <mach/hardware.h> | ||
9 | #include <mach/common.h> | ||
10 | |||
11 | #include <asm/bug.h> | ||
12 | #include <asm/div64.h> | ||
13 | |||
14 | #include "crm_regs.h" | ||
15 | |||
16 | #define CRM_SMALL_DIVIDER(base, name) \ | ||
17 | crm_small_divider(base, \ | ||
18 | base ## _ ## name ## _OFFSET, \ | ||
19 | base ## _ ## name ## _MASK) | ||
20 | #define CRM_1DIVIDER(base, name) \ | ||
21 | crm_divider(base, \ | ||
22 | base ## _ ## name ## _OFFSET, \ | ||
23 | base ## _ ## name ## _MASK, 1) | ||
24 | #define CRM_16DIVIDER(base, name) \ | ||
25 | crm_divider(base, \ | ||
26 | base ## _ ## name ## _OFFSET, \ | ||
27 | base ## _ ## name ## _MASK, 16) | ||
28 | |||
29 | static u32 crm_small_divider(void __iomem *reg, u8 offset, u32 mask) | ||
30 | { | ||
31 | static const u32 crm_small_dividers[] = { | ||
32 | 2, 3, 4, 5, 6, 8, 10, 12 | ||
33 | }; | ||
34 | u8 idx; | ||
35 | |||
36 | idx = (__raw_readl(reg) & mask) >> offset; | ||
37 | if (idx > 7) | ||
38 | return 1; | ||
39 | |||
40 | return crm_small_dividers[idx]; | ||
41 | } | ||
42 | |||
43 | static u32 crm_divider(void __iomem *reg, u8 offset, u32 mask, u32 z) | ||
44 | { | ||
45 | u32 div; | ||
46 | div = (__raw_readl(reg) & mask) >> offset; | ||
47 | return div ? div : z; | ||
48 | } | ||
49 | |||
50 | static int _clk_1bit_enable(struct clk *clk) | ||
51 | { | ||
52 | u32 reg; | ||
53 | |||
54 | reg = __raw_readl(clk->enable_reg); | ||
55 | reg |= 1 << clk->enable_shift; | ||
56 | __raw_writel(reg, clk->enable_reg); | ||
57 | |||
58 | return 0; | ||
59 | } | ||
60 | |||
61 | static void _clk_1bit_disable(struct clk *clk) | ||
62 | { | ||
63 | u32 reg; | ||
64 | |||
65 | reg = __raw_readl(clk->enable_reg); | ||
66 | reg &= ~(1 << clk->enable_shift); | ||
67 | __raw_writel(reg, clk->enable_reg); | ||
68 | } | ||
69 | |||
70 | static int _clk_3bit_enable(struct clk *clk) | ||
71 | { | ||
72 | u32 reg; | ||
73 | |||
74 | reg = __raw_readl(clk->enable_reg); | ||
75 | reg |= 0x7 << clk->enable_shift; | ||
76 | __raw_writel(reg, clk->enable_reg); | ||
77 | |||
78 | return 0; | ||
79 | } | ||
80 | |||
81 | static void _clk_3bit_disable(struct clk *clk) | ||
82 | { | ||
83 | u32 reg; | ||
84 | |||
85 | reg = __raw_readl(clk->enable_reg); | ||
86 | reg &= ~(0x7 << clk->enable_shift); | ||
87 | __raw_writel(reg, clk->enable_reg); | ||
88 | } | ||
89 | |||
90 | static unsigned long ckih_rate; | ||
91 | |||
92 | static unsigned long clk_ckih_get_rate(struct clk *clk) | ||
93 | { | ||
94 | return ckih_rate; | ||
95 | } | ||
96 | |||
97 | static struct clk ckih_clk = { | ||
98 | .get_rate = clk_ckih_get_rate, | ||
99 | }; | ||
100 | |||
101 | static unsigned long clk_ckih_x2_get_rate(struct clk *clk) | ||
102 | { | ||
103 | return 2 * clk_get_rate(clk->parent); | ||
104 | } | ||
105 | |||
106 | static struct clk ckih_x2_clk = { | ||
107 | .parent = &ckih_clk, | ||
108 | .get_rate = clk_ckih_x2_get_rate, | ||
109 | }; | ||
110 | |||
111 | static unsigned long clk_ckil_get_rate(struct clk *clk) | ||
112 | { | ||
113 | return CKIL_CLK_FREQ; | ||
114 | } | ||
115 | |||
116 | static struct clk ckil_clk = { | ||
117 | .get_rate = clk_ckil_get_rate, | ||
118 | }; | ||
119 | |||
120 | /* plls stuff */ | ||
121 | static struct clk mcu_pll_clk; | ||
122 | static struct clk dsp_pll_clk; | ||
123 | static struct clk usb_pll_clk; | ||
124 | |||
125 | static struct clk *pll_clk(u8 sel) | ||
126 | { | ||
127 | switch (sel) { | ||
128 | case 0: | ||
129 | return &mcu_pll_clk; | ||
130 | case 1: | ||
131 | return &dsp_pll_clk; | ||
132 | case 2: | ||
133 | return &usb_pll_clk; | ||
134 | } | ||
135 | BUG(); | ||
136 | } | ||
137 | |||
138 | static void __iomem *pll_base(struct clk *clk) | ||
139 | { | ||
140 | if (clk == &mcu_pll_clk) | ||
141 | return MXC_PLL0_BASE; | ||
142 | else if (clk == &dsp_pll_clk) | ||
143 | return MXC_PLL1_BASE; | ||
144 | else if (clk == &usb_pll_clk) | ||
145 | return MXC_PLL2_BASE; | ||
146 | BUG(); | ||
147 | } | ||
148 | |||
149 | static unsigned long clk_pll_get_rate(struct clk *clk) | ||
150 | { | ||
151 | const void __iomem *pllbase; | ||
152 | unsigned long dp_op, dp_mfd, dp_mfn, pll_hfsm, ref_clk, mfi; | ||
153 | long mfn, mfn_abs, mfd, pdf; | ||
154 | s64 temp; | ||
155 | pllbase = pll_base(clk); | ||
156 | |||
157 | pll_hfsm = __raw_readl(pllbase + MXC_PLL_DP_CTL) & MXC_PLL_DP_CTL_HFSM; | ||
158 | if (pll_hfsm == 0) { | ||
159 | dp_op = __raw_readl(pllbase + MXC_PLL_DP_OP); | ||
160 | dp_mfd = __raw_readl(pllbase + MXC_PLL_DP_MFD); | ||
161 | dp_mfn = __raw_readl(pllbase + MXC_PLL_DP_MFN); | ||
162 | } else { | ||
163 | dp_op = __raw_readl(pllbase + MXC_PLL_DP_HFS_OP); | ||
164 | dp_mfd = __raw_readl(pllbase + MXC_PLL_DP_HFS_MFD); | ||
165 | dp_mfn = __raw_readl(pllbase + MXC_PLL_DP_HFS_MFN); | ||
166 | } | ||
167 | |||
168 | pdf = dp_op & MXC_PLL_DP_OP_PDF_MASK; | ||
169 | mfi = (dp_op >> MXC_PLL_DP_OP_MFI_OFFSET) & MXC_PLL_DP_OP_PDF_MASK; | ||
170 | mfi = (mfi <= 5) ? 5 : mfi; | ||
171 | mfd = dp_mfd & MXC_PLL_DP_MFD_MASK; | ||
172 | mfn = dp_mfn & MXC_PLL_DP_MFN_MASK; | ||
173 | mfn = (mfn <= 0x4000000) ? mfn : (mfn - 0x10000000); | ||
174 | |||
175 | if (mfn < 0) | ||
176 | mfn_abs = -mfn; | ||
177 | else | ||
178 | mfn_abs = mfn; | ||
179 | |||
180 | /* XXX: actually this asumes that ckih is fed to pll, but spec says | ||
181 | * that ckih_x2 is also possible. need to check this out. | ||
182 | */ | ||
183 | ref_clk = clk_get_rate(&ckih_clk); | ||
184 | |||
185 | ref_clk *= 2; | ||
186 | ref_clk /= pdf + 1; | ||
187 | |||
188 | temp = (u64) ref_clk * mfn_abs; | ||
189 | do_div(temp, mfd); | ||
190 | if (mfn < 0) | ||
191 | temp = -temp; | ||
192 | temp += ref_clk * mfi; | ||
193 | |||
194 | return temp; | ||
195 | } | ||
196 | |||
197 | static int clk_pll_enable(struct clk *clk) | ||
198 | { | ||
199 | void __iomem *ctl; | ||
200 | u32 reg; | ||
201 | |||
202 | ctl = pll_base(clk); | ||
203 | reg = __raw_readl(ctl); | ||
204 | reg |= (MXC_PLL_DP_CTL_RST | MXC_PLL_DP_CTL_UPEN); | ||
205 | __raw_writel(reg, ctl); | ||
206 | do { | ||
207 | reg = __raw_readl(ctl); | ||
208 | } while ((reg & MXC_PLL_DP_CTL_LRF) != MXC_PLL_DP_CTL_LRF); | ||
209 | return 0; | ||
210 | } | ||
211 | |||
212 | static void clk_pll_disable(struct clk *clk) | ||
213 | { | ||
214 | void __iomem *ctl; | ||
215 | u32 reg; | ||
216 | |||
217 | ctl = pll_base(clk); | ||
218 | reg = __raw_readl(ctl); | ||
219 | reg &= ~(MXC_PLL_DP_CTL_RST | MXC_PLL_DP_CTL_UPEN); | ||
220 | __raw_writel(reg, ctl); | ||
221 | } | ||
222 | |||
223 | static struct clk mcu_pll_clk = { | ||
224 | .parent = &ckih_clk, | ||
225 | .get_rate = clk_pll_get_rate, | ||
226 | .enable = clk_pll_enable, | ||
227 | .disable = clk_pll_disable, | ||
228 | }; | ||
229 | |||
230 | static struct clk dsp_pll_clk = { | ||
231 | .parent = &ckih_clk, | ||
232 | .get_rate = clk_pll_get_rate, | ||
233 | .enable = clk_pll_enable, | ||
234 | .disable = clk_pll_disable, | ||
235 | }; | ||
236 | |||
237 | static struct clk usb_pll_clk = { | ||
238 | .parent = &ckih_clk, | ||
239 | .get_rate = clk_pll_get_rate, | ||
240 | .enable = clk_pll_enable, | ||
241 | .disable = clk_pll_disable, | ||
242 | }; | ||
243 | /* plls stuff end */ | ||
244 | |||
245 | /* ap_ref_clk stuff */ | ||
246 | static struct clk ap_ref_clk; | ||
247 | |||
248 | static unsigned long clk_ap_ref_get_rate(struct clk *clk) | ||
249 | { | ||
250 | u32 ascsr, acsr; | ||
251 | u8 ap_pat_ref_div_2, ap_isel, acs, ads; | ||
252 | |||
253 | ascsr = __raw_readl(MXC_CRMAP_ASCSR); | ||
254 | acsr = __raw_readl(MXC_CRMAP_ACSR); | ||
255 | |||
256 | /* 0 for ckih, 1 for ckih*2 */ | ||
257 | ap_isel = ascsr & MXC_CRMAP_ASCSR_APISEL; | ||
258 | /* reg divider */ | ||
259 | ap_pat_ref_div_2 = (ascsr >> MXC_CRMAP_ASCSR_AP_PATDIV2_OFFSET) & 0x1; | ||
260 | /* undocumented, 1 for disabling divider */ | ||
261 | ads = (acsr >> MXC_CRMAP_ACSR_ADS_OFFSET) & 0x1; | ||
262 | /* 0 for pat_ref, 1 for divider out */ | ||
263 | acs = acsr & MXC_CRMAP_ACSR_ACS; | ||
264 | |||
265 | if (acs & !ads) | ||
266 | /* use divided clock */ | ||
267 | return clk_get_rate(clk->parent) / (ap_pat_ref_div_2 ? 2 : 1); | ||
268 | |||
269 | return clk_get_rate(clk->parent) * (ap_isel ? 2 : 1); | ||
270 | } | ||
271 | |||
272 | static struct clk ap_ref_clk = { | ||
273 | .parent = &ckih_clk, | ||
274 | .get_rate = clk_ap_ref_get_rate, | ||
275 | }; | ||
276 | /* ap_ref_clk stuff end */ | ||
277 | |||
278 | /* ap_pre_dfs_clk stuff */ | ||
279 | static struct clk ap_pre_dfs_clk; | ||
280 | |||
281 | static unsigned long clk_ap_pre_dfs_get_rate(struct clk *clk) | ||
282 | { | ||
283 | u32 acsr, ascsr; | ||
284 | |||
285 | acsr = __raw_readl(MXC_CRMAP_ACSR); | ||
286 | ascsr = __raw_readl(MXC_CRMAP_ASCSR); | ||
287 | |||
288 | if (acsr & MXC_CRMAP_ACSR_ACS) { | ||
289 | u8 sel; | ||
290 | sel = (ascsr & MXC_CRMAP_ASCSR_APSEL_MASK) >> | ||
291 | MXC_CRMAP_ASCSR_APSEL_OFFSET; | ||
292 | return clk_get_rate(pll_clk(sel)) / | ||
293 | CRM_SMALL_DIVIDER(MXC_CRMAP_ACDR, ARMDIV); | ||
294 | } | ||
295 | return clk_get_rate(&ap_ref_clk); | ||
296 | } | ||
297 | |||
298 | static struct clk ap_pre_dfs_clk = { | ||
299 | .get_rate = clk_ap_pre_dfs_get_rate, | ||
300 | }; | ||
301 | /* ap_pre_dfs_clk stuff end */ | ||
302 | |||
303 | /* usb_clk stuff */ | ||
304 | static struct clk usb_clk; | ||
305 | |||
306 | static struct clk *clk_usb_parent(struct clk *clk) | ||
307 | { | ||
308 | u32 acsr, ascsr; | ||
309 | |||
310 | acsr = __raw_readl(MXC_CRMAP_ACSR); | ||
311 | ascsr = __raw_readl(MXC_CRMAP_ASCSR); | ||
312 | |||
313 | if (acsr & MXC_CRMAP_ACSR_ACS) { | ||
314 | u8 sel; | ||
315 | sel = (ascsr & MXC_CRMAP_ASCSR_USBSEL_MASK) >> | ||
316 | MXC_CRMAP_ASCSR_USBSEL_OFFSET; | ||
317 | return pll_clk(sel); | ||
318 | } | ||
319 | return &ap_ref_clk; | ||
320 | } | ||
321 | |||
322 | static unsigned long clk_usb_get_rate(struct clk *clk) | ||
323 | { | ||
324 | return clk_get_rate(clk->parent) / | ||
325 | CRM_SMALL_DIVIDER(MXC_CRMAP_ACDER2, USBDIV); | ||
326 | } | ||
327 | |||
328 | static struct clk usb_clk = { | ||
329 | .enable_reg = MXC_CRMAP_ACDER2, | ||
330 | .enable_shift = MXC_CRMAP_ACDER2_USBEN_OFFSET, | ||
331 | .get_rate = clk_usb_get_rate, | ||
332 | .enable = _clk_1bit_enable, | ||
333 | .disable = _clk_1bit_disable, | ||
334 | }; | ||
335 | /* usb_clk stuff end */ | ||
336 | |||
337 | static unsigned long clk_ipg_get_rate(struct clk *clk) | ||
338 | { | ||
339 | return clk_get_rate(clk->parent) / CRM_16DIVIDER(MXC_CRMAP_ACDR, IPDIV); | ||
340 | } | ||
341 | |||
342 | static unsigned long clk_ahb_get_rate(struct clk *clk) | ||
343 | { | ||
344 | return clk_get_rate(clk->parent) / | ||
345 | CRM_16DIVIDER(MXC_CRMAP_ACDR, AHBDIV); | ||
346 | } | ||
347 | |||
348 | static struct clk ipg_clk = { | ||
349 | .parent = &ap_pre_dfs_clk, | ||
350 | .get_rate = clk_ipg_get_rate, | ||
351 | }; | ||
352 | |||
353 | static struct clk ahb_clk = { | ||
354 | .parent = &ap_pre_dfs_clk, | ||
355 | .get_rate = clk_ahb_get_rate, | ||
356 | }; | ||
357 | |||
358 | /* perclk_clk stuff */ | ||
359 | static struct clk perclk_clk; | ||
360 | |||
361 | static unsigned long clk_perclk_get_rate(struct clk *clk) | ||
362 | { | ||
363 | u32 acder2; | ||
364 | |||
365 | acder2 = __raw_readl(MXC_CRMAP_ACDER2); | ||
366 | if (acder2 & MXC_CRMAP_ACDER2_BAUD_ISEL_MASK) | ||
367 | return 2 * clk_get_rate(clk->parent); | ||
368 | |||
369 | return clk_get_rate(clk->parent); | ||
370 | } | ||
371 | |||
372 | static struct clk perclk_clk = { | ||
373 | .parent = &ckih_clk, | ||
374 | .get_rate = clk_perclk_get_rate, | ||
375 | }; | ||
376 | /* perclk_clk stuff end */ | ||
377 | |||
378 | /* uart_clk stuff */ | ||
379 | static struct clk uart_clk[]; | ||
380 | |||
381 | static unsigned long clk_uart_get_rate(struct clk *clk) | ||
382 | { | ||
383 | u32 div; | ||
384 | |||
385 | switch (clk->id) { | ||
386 | case 0: | ||
387 | case 1: | ||
388 | div = CRM_SMALL_DIVIDER(MXC_CRMAP_ACDER2, BAUDDIV); | ||
389 | break; | ||
390 | case 2: | ||
391 | div = CRM_SMALL_DIVIDER(MXC_CRMAP_APRA, UART3DIV); | ||
392 | break; | ||
393 | default: | ||
394 | BUG(); | ||
395 | } | ||
396 | return clk_get_rate(clk->parent) / div; | ||
397 | } | ||
398 | |||
399 | static struct clk uart_clk[] = { | ||
400 | { | ||
401 | .id = 0, | ||
402 | .parent = &perclk_clk, | ||
403 | .enable_reg = MXC_CRMAP_APRA, | ||
404 | .enable_shift = MXC_CRMAP_APRA_UART1EN_OFFSET, | ||
405 | .get_rate = clk_uart_get_rate, | ||
406 | .enable = _clk_1bit_enable, | ||
407 | .disable = _clk_1bit_disable, | ||
408 | }, { | ||
409 | .id = 1, | ||
410 | .parent = &perclk_clk, | ||
411 | .enable_reg = MXC_CRMAP_APRA, | ||
412 | .enable_shift = MXC_CRMAP_APRA_UART2EN_OFFSET, | ||
413 | .get_rate = clk_uart_get_rate, | ||
414 | .enable = _clk_1bit_enable, | ||
415 | .disable = _clk_1bit_disable, | ||
416 | }, { | ||
417 | .id = 2, | ||
418 | .parent = &perclk_clk, | ||
419 | .enable_reg = MXC_CRMAP_APRA, | ||
420 | .enable_shift = MXC_CRMAP_APRA_UART3EN_OFFSET, | ||
421 | .get_rate = clk_uart_get_rate, | ||
422 | .enable = _clk_1bit_enable, | ||
423 | .disable = _clk_1bit_disable, | ||
424 | }, | ||
425 | }; | ||
426 | /* uart_clk stuff end */ | ||
427 | |||
428 | /* sdhc_clk stuff */ | ||
429 | static struct clk nfc_clk; | ||
430 | |||
431 | static unsigned long clk_nfc_get_rate(struct clk *clk) | ||
432 | { | ||
433 | return clk_get_rate(clk->parent) / | ||
434 | CRM_1DIVIDER(MXC_CRMAP_ACDER2, NFCDIV); | ||
435 | } | ||
436 | |||
437 | static struct clk nfc_clk = { | ||
438 | .parent = &ahb_clk, | ||
439 | .enable_reg = MXC_CRMAP_ACDER2, | ||
440 | .enable_shift = MXC_CRMAP_ACDER2_NFCEN_OFFSET, | ||
441 | .get_rate = clk_nfc_get_rate, | ||
442 | .enable = _clk_1bit_enable, | ||
443 | .disable = _clk_1bit_disable, | ||
444 | }; | ||
445 | /* sdhc_clk stuff end */ | ||
446 | |||
447 | /* sdhc_clk stuff */ | ||
448 | static struct clk sdhc_clk[]; | ||
449 | |||
450 | static struct clk *clk_sdhc_parent(struct clk *clk) | ||
451 | { | ||
452 | u32 aprb; | ||
453 | u8 sel; | ||
454 | u32 mask; | ||
455 | int offset; | ||
456 | |||
457 | aprb = __raw_readl(MXC_CRMAP_APRB); | ||
458 | |||
459 | switch (clk->id) { | ||
460 | case 0: | ||
461 | mask = MXC_CRMAP_APRB_SDHC1_ISEL_MASK; | ||
462 | offset = MXC_CRMAP_APRB_SDHC1_ISEL_OFFSET; | ||
463 | break; | ||
464 | case 1: | ||
465 | mask = MXC_CRMAP_APRB_SDHC2_ISEL_MASK; | ||
466 | offset = MXC_CRMAP_APRB_SDHC2_ISEL_OFFSET; | ||
467 | break; | ||
468 | default: | ||
469 | BUG(); | ||
470 | } | ||
471 | sel = (aprb & mask) >> offset; | ||
472 | |||
473 | switch (sel) { | ||
474 | case 0: | ||
475 | return &ckih_clk; | ||
476 | case 1: | ||
477 | return &ckih_x2_clk; | ||
478 | } | ||
479 | return &usb_clk; | ||
480 | } | ||
481 | |||
482 | static unsigned long clk_sdhc_get_rate(struct clk *clk) | ||
483 | { | ||
484 | u32 div; | ||
485 | |||
486 | switch (clk->id) { | ||
487 | case 0: | ||
488 | div = CRM_SMALL_DIVIDER(MXC_CRMAP_APRB, SDHC1_DIV); | ||
489 | break; | ||
490 | case 1: | ||
491 | div = CRM_SMALL_DIVIDER(MXC_CRMAP_APRB, SDHC2_DIV); | ||
492 | break; | ||
493 | default: | ||
494 | BUG(); | ||
495 | } | ||
496 | |||
497 | return clk_get_rate(clk->parent) / div; | ||
498 | } | ||
499 | |||
500 | static int clk_sdhc_enable(struct clk *clk) | ||
501 | { | ||
502 | u32 amlpmre1, aprb; | ||
503 | |||
504 | amlpmre1 = __raw_readl(MXC_CRMAP_AMLPMRE1); | ||
505 | aprb = __raw_readl(MXC_CRMAP_APRB); | ||
506 | switch (clk->id) { | ||
507 | case 0: | ||
508 | amlpmre1 |= (0x7 << MXC_CRMAP_AMLPMRE1_MLPME4_OFFSET); | ||
509 | aprb |= (0x1 << MXC_CRMAP_APRB_SDHC1EN_OFFSET); | ||
510 | break; | ||
511 | case 1: | ||
512 | amlpmre1 |= (0x7 << MXC_CRMAP_AMLPMRE1_MLPME5_OFFSET); | ||
513 | aprb |= (0x1 << MXC_CRMAP_APRB_SDHC2EN_OFFSET); | ||
514 | break; | ||
515 | } | ||
516 | __raw_writel(amlpmre1, MXC_CRMAP_AMLPMRE1); | ||
517 | __raw_writel(aprb, MXC_CRMAP_APRB); | ||
518 | return 0; | ||
519 | } | ||
520 | |||
521 | static void clk_sdhc_disable(struct clk *clk) | ||
522 | { | ||
523 | u32 amlpmre1, aprb; | ||
524 | |||
525 | amlpmre1 = __raw_readl(MXC_CRMAP_AMLPMRE1); | ||
526 | aprb = __raw_readl(MXC_CRMAP_APRB); | ||
527 | switch (clk->id) { | ||
528 | case 0: | ||
529 | amlpmre1 &= ~(0x7 << MXC_CRMAP_AMLPMRE1_MLPME4_OFFSET); | ||
530 | aprb &= ~(0x1 << MXC_CRMAP_APRB_SDHC1EN_OFFSET); | ||
531 | break; | ||
532 | case 1: | ||
533 | amlpmre1 &= ~(0x7 << MXC_CRMAP_AMLPMRE1_MLPME5_OFFSET); | ||
534 | aprb &= ~(0x1 << MXC_CRMAP_APRB_SDHC2EN_OFFSET); | ||
535 | break; | ||
536 | } | ||
537 | __raw_writel(amlpmre1, MXC_CRMAP_AMLPMRE1); | ||
538 | __raw_writel(aprb, MXC_CRMAP_APRB); | ||
539 | } | ||
540 | |||
541 | static struct clk sdhc_clk[] = { | ||
542 | { | ||
543 | .id = 0, | ||
544 | .get_rate = clk_sdhc_get_rate, | ||
545 | .enable = clk_sdhc_enable, | ||
546 | .disable = clk_sdhc_disable, | ||
547 | }, { | ||
548 | .id = 1, | ||
549 | .get_rate = clk_sdhc_get_rate, | ||
550 | .enable = clk_sdhc_enable, | ||
551 | .disable = clk_sdhc_disable, | ||
552 | }, | ||
553 | }; | ||
554 | /* sdhc_clk stuff end */ | ||
555 | |||
556 | /* wdog_clk stuff */ | ||
557 | static struct clk wdog_clk[] = { | ||
558 | { | ||
559 | .id = 0, | ||
560 | .parent = &ipg_clk, | ||
561 | .enable_reg = MXC_CRMAP_AMLPMRD, | ||
562 | .enable_shift = MXC_CRMAP_AMLPMRD_MLPMD7_OFFSET, | ||
563 | .enable = _clk_3bit_enable, | ||
564 | .disable = _clk_3bit_disable, | ||
565 | }, { | ||
566 | .id = 1, | ||
567 | .parent = &ipg_clk, | ||
568 | .enable_reg = MXC_CRMAP_AMLPMRD, | ||
569 | .enable_shift = MXC_CRMAP_AMLPMRD_MLPMD3_OFFSET, | ||
570 | .enable = _clk_3bit_enable, | ||
571 | .disable = _clk_3bit_disable, | ||
572 | }, | ||
573 | }; | ||
574 | /* wdog_clk stuff end */ | ||
575 | |||
576 | /* gpt_clk stuff */ | ||
577 | static struct clk gpt_clk = { | ||
578 | .parent = &ipg_clk, | ||
579 | .enable_reg = MXC_CRMAP_AMLPMRC, | ||
580 | .enable_shift = MXC_CRMAP_AMLPMRC_MLPMC4_OFFSET, | ||
581 | .enable = _clk_3bit_enable, | ||
582 | .disable = _clk_3bit_disable, | ||
583 | }; | ||
584 | /* gpt_clk stuff end */ | ||
585 | |||
586 | /* cspi_clk stuff */ | ||
587 | static struct clk cspi_clk[] = { | ||
588 | { | ||
589 | .id = 0, | ||
590 | .parent = &ipg_clk, | ||
591 | .enable_reg = MXC_CRMAP_AMLPMRE2, | ||
592 | .enable_shift = MXC_CRMAP_AMLPMRE2_MLPME0_OFFSET, | ||
593 | .enable = _clk_3bit_enable, | ||
594 | .disable = _clk_3bit_disable, | ||
595 | }, { | ||
596 | .id = 1, | ||
597 | .parent = &ipg_clk, | ||
598 | .enable_reg = MXC_CRMAP_AMLPMRE1, | ||
599 | .enable_shift = MXC_CRMAP_AMLPMRE1_MLPME6_OFFSET, | ||
600 | .enable = _clk_3bit_enable, | ||
601 | .disable = _clk_3bit_disable, | ||
602 | }, | ||
603 | }; | ||
604 | /* cspi_clk stuff end */ | ||
605 | |||
606 | #define _REGISTER_CLOCK(d, n, c) \ | ||
607 | { \ | ||
608 | .dev_id = d, \ | ||
609 | .con_id = n, \ | ||
610 | .clk = &c, \ | ||
611 | }, | ||
612 | |||
613 | static struct clk_lookup lookups[] = { | ||
614 | _REGISTER_CLOCK("imx-uart.0", NULL, uart_clk[0]) | ||
615 | _REGISTER_CLOCK("imx-uart.1", NULL, uart_clk[1]) | ||
616 | _REGISTER_CLOCK("imx-uart.2", NULL, uart_clk[2]) | ||
617 | _REGISTER_CLOCK("mxc-mmc.0", NULL, sdhc_clk[0]) | ||
618 | _REGISTER_CLOCK("mxc-mmc.1", NULL, sdhc_clk[1]) | ||
619 | _REGISTER_CLOCK("mxc-wdt.0", NULL, wdog_clk[0]) | ||
620 | _REGISTER_CLOCK("spi_imx.0", NULL, cspi_clk[0]) | ||
621 | _REGISTER_CLOCK("spi_imx.1", NULL, cspi_clk[1]) | ||
622 | }; | ||
623 | |||
624 | int __init mxc91231_clocks_init(unsigned long fref) | ||
625 | { | ||
626 | void __iomem *gpt_base; | ||
627 | |||
628 | ckih_rate = fref; | ||
629 | |||
630 | usb_clk.parent = clk_usb_parent(&usb_clk); | ||
631 | sdhc_clk[0].parent = clk_sdhc_parent(&sdhc_clk[0]); | ||
632 | sdhc_clk[1].parent = clk_sdhc_parent(&sdhc_clk[1]); | ||
633 | |||
634 | clkdev_add_table(lookups, ARRAY_SIZE(lookups)); | ||
635 | |||
636 | gpt_base = MXC91231_IO_ADDRESS(MXC91231_GPT1_BASE_ADDR); | ||
637 | mxc_timer_init(&gpt_clk, gpt_base, MXC91231_INT_GPT); | ||
638 | |||
639 | return 0; | ||
640 | } | ||
diff --git a/arch/arm/mach-mxc91231/crm_regs.h b/arch/arm/mach-mxc91231/crm_regs.h deleted file mode 100644 index b989baccd675..000000000000 --- a/arch/arm/mach-mxc91231/crm_regs.h +++ /dev/null | |||
@@ -1,394 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright 2006 Freescale Semiconductor, Inc. | ||
3 | * Copyright 2006-2007 Motorola, Inc. | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or modify | ||
6 | * it under the terms of the GNU General Public License as published by | ||
7 | * the Free Software Foundation; either version 2 of the License, or | ||
8 | * (at your option) any later version. | ||
9 | * | ||
10 | * This program is distributed in the hope that it will be useful, | ||
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | * GNU General Public License for more details. | ||
14 | */ | ||
15 | |||
16 | #ifndef _ARCH_ARM_MACH_MXC91231_CRM_REGS_H_ | ||
17 | #define _ARCH_ARM_MACH_MXC91231_CRM_REGS_H_ | ||
18 | |||
19 | #define CKIL_CLK_FREQ 32768 | ||
20 | |||
21 | #define MXC_CRM_AP_BASE MXC91231_IO_ADDRESS(MXC91231_CRM_AP_BASE_ADDR) | ||
22 | #define MXC_CRM_COM_BASE MXC91231_IO_ADDRESS(MXC91231_CRM_COM_BASE_ADDR) | ||
23 | #define MXC_DSM_BASE MXC91231_IO_ADDRESS(MXC91231_DSM_BASE_ADDR) | ||
24 | #define MXC_PLL0_BASE MXC91231_IO_ADDRESS(MXC91231_PLL0_BASE_ADDR) | ||
25 | #define MXC_PLL1_BASE MXC91231_IO_ADDRESS(MXC91231_PLL1_BASE_ADDR) | ||
26 | #define MXC_PLL2_BASE MXC91231_IO_ADDRESS(MXC91231_PLL2_BASE_ADDR) | ||
27 | #define MXC_CLKCTL_BASE MXC91231_IO_ADDRESS(MXC91231_CLKCTL_BASE_ADDR) | ||
28 | |||
29 | /* PLL Register Offsets */ | ||
30 | #define MXC_PLL_DP_CTL 0x00 | ||
31 | #define MXC_PLL_DP_CONFIG 0x04 | ||
32 | #define MXC_PLL_DP_OP 0x08 | ||
33 | #define MXC_PLL_DP_MFD 0x0C | ||
34 | #define MXC_PLL_DP_MFN 0x10 | ||
35 | #define MXC_PLL_DP_HFS_OP 0x1C | ||
36 | #define MXC_PLL_DP_HFS_MFD 0x20 | ||
37 | #define MXC_PLL_DP_HFS_MFN 0x24 | ||
38 | |||
39 | /* PLL Register Bit definitions */ | ||
40 | #define MXC_PLL_DP_CTL_DPDCK0_2_EN 0x1000 | ||
41 | #define MXC_PLL_DP_CTL_ADE 0x800 | ||
42 | #define MXC_PLL_DP_CTL_REF_CLK_DIV 0x400 | ||
43 | #define MXC_PLL_DP_CTL_HFSM 0x80 | ||
44 | #define MXC_PLL_DP_CTL_PRE 0x40 | ||
45 | #define MXC_PLL_DP_CTL_UPEN 0x20 | ||
46 | #define MXC_PLL_DP_CTL_RST 0x10 | ||
47 | #define MXC_PLL_DP_CTL_RCP 0x8 | ||
48 | #define MXC_PLL_DP_CTL_PLM 0x4 | ||
49 | #define MXC_PLL_DP_CTL_BRM0 0x2 | ||
50 | #define MXC_PLL_DP_CTL_LRF 0x1 | ||
51 | |||
52 | #define MXC_PLL_DP_OP_MFI_OFFSET 4 | ||
53 | #define MXC_PLL_DP_OP_MFI_MASK 0xF | ||
54 | #define MXC_PLL_DP_OP_PDF_OFFSET 0 | ||
55 | #define MXC_PLL_DP_OP_PDF_MASK 0xF | ||
56 | |||
57 | #define MXC_PLL_DP_MFD_OFFSET 0 | ||
58 | #define MXC_PLL_DP_MFD_MASK 0x7FFFFFF | ||
59 | |||
60 | #define MXC_PLL_DP_MFN_OFFSET 0 | ||
61 | #define MXC_PLL_DP_MFN_MASK 0x7FFFFFF | ||
62 | |||
63 | /* CRM AP Register Offsets */ | ||
64 | #define MXC_CRMAP_ASCSR (MXC_CRM_AP_BASE + 0x00) | ||
65 | #define MXC_CRMAP_ACDR (MXC_CRM_AP_BASE + 0x04) | ||
66 | #define MXC_CRMAP_ACDER1 (MXC_CRM_AP_BASE + 0x08) | ||
67 | #define MXC_CRMAP_ACDER2 (MXC_CRM_AP_BASE + 0x0C) | ||
68 | #define MXC_CRMAP_ACGCR (MXC_CRM_AP_BASE + 0x10) | ||
69 | #define MXC_CRMAP_ACCGCR (MXC_CRM_AP_BASE + 0x14) | ||
70 | #define MXC_CRMAP_AMLPMRA (MXC_CRM_AP_BASE + 0x18) | ||
71 | #define MXC_CRMAP_AMLPMRB (MXC_CRM_AP_BASE + 0x1C) | ||
72 | #define MXC_CRMAP_AMLPMRC (MXC_CRM_AP_BASE + 0x20) | ||
73 | #define MXC_CRMAP_AMLPMRD (MXC_CRM_AP_BASE + 0x24) | ||
74 | #define MXC_CRMAP_AMLPMRE1 (MXC_CRM_AP_BASE + 0x28) | ||
75 | #define MXC_CRMAP_AMLPMRE2 (MXC_CRM_AP_BASE + 0x2C) | ||
76 | #define MXC_CRMAP_AMLPMRF (MXC_CRM_AP_BASE + 0x30) | ||
77 | #define MXC_CRMAP_AMLPMRG (MXC_CRM_AP_BASE + 0x34) | ||
78 | #define MXC_CRMAP_APGCR (MXC_CRM_AP_BASE + 0x38) | ||
79 | #define MXC_CRMAP_ACSR (MXC_CRM_AP_BASE + 0x3C) | ||
80 | #define MXC_CRMAP_ADCR (MXC_CRM_AP_BASE + 0x40) | ||
81 | #define MXC_CRMAP_ACR (MXC_CRM_AP_BASE + 0x44) | ||
82 | #define MXC_CRMAP_AMCR (MXC_CRM_AP_BASE + 0x48) | ||
83 | #define MXC_CRMAP_APCR (MXC_CRM_AP_BASE + 0x4C) | ||
84 | #define MXC_CRMAP_AMORA (MXC_CRM_AP_BASE + 0x50) | ||
85 | #define MXC_CRMAP_AMORB (MXC_CRM_AP_BASE + 0x54) | ||
86 | #define MXC_CRMAP_AGPR (MXC_CRM_AP_BASE + 0x58) | ||
87 | #define MXC_CRMAP_APRA (MXC_CRM_AP_BASE + 0x5C) | ||
88 | #define MXC_CRMAP_APRB (MXC_CRM_AP_BASE + 0x60) | ||
89 | #define MXC_CRMAP_APOR (MXC_CRM_AP_BASE + 0x64) | ||
90 | #define MXC_CRMAP_ADFMR (MXC_CRM_AP_BASE + 0x68) | ||
91 | |||
92 | /* CRM AP Register Bit definitions */ | ||
93 | #define MXC_CRMAP_ASCSR_CRS 0x10000 | ||
94 | #define MXC_CRMAP_ASCSR_AP_PATDIV2_OFFSET 15 | ||
95 | #define MXC_CRMAP_ASCSR_AP_PATREF_DIV2 0x8000 | ||
96 | #define MXC_CRMAP_ASCSR_USBSEL_OFFSET 13 | ||
97 | #define MXC_CRMAP_ASCSR_USBSEL_MASK (0x3 << 13) | ||
98 | #define MXC_CRMAP_ASCSR_CSISEL_OFFSET 11 | ||
99 | #define MXC_CRMAP_ASCSR_CSISEL_MASK (0x3 << 11) | ||
100 | #define MXC_CRMAP_ASCSR_SSI2SEL_OFFSET 7 | ||
101 | #define MXC_CRMAP_ASCSR_SSI2SEL_MASK (0x3 << 7) | ||
102 | #define MXC_CRMAP_ASCSR_SSI1SEL_OFFSET 5 | ||
103 | #define MXC_CRMAP_ASCSR_SSI1SEL_MASK (0x3 << 5) | ||
104 | #define MXC_CRMAP_ASCSR_APSEL_OFFSET 3 | ||
105 | #define MXC_CRMAP_ASCSR_APSEL_MASK (0x3 << 3) | ||
106 | #define MXC_CRMAP_ASCSR_AP_PATDIV1_OFFSET 2 | ||
107 | #define MXC_CRMAP_ASCSR_AP_PATREF_DIV1 0x4 | ||
108 | #define MXC_CRMAP_ASCSR_APISEL 0x1 | ||
109 | |||
110 | #define MXC_CRMAP_ACDR_ARMDIV_OFFSET 8 | ||
111 | #define MXC_CRMAP_ACDR_ARMDIV_MASK (0xF << 8) | ||
112 | #define MXC_CRMAP_ACDR_AHBDIV_OFFSET 4 | ||
113 | #define MXC_CRMAP_ACDR_AHBDIV_MASK (0xF << 4) | ||
114 | #define MXC_CRMAP_ACDR_IPDIV_OFFSET 0 | ||
115 | #define MXC_CRMAP_ACDR_IPDIV_MASK 0xF | ||
116 | |||
117 | #define MXC_CRMAP_ACDER1_CSIEN_OFFSET 30 | ||
118 | #define MXC_CRMAP_ACDER1_CSIDIV_OFFSET 24 | ||
119 | #define MXC_CRMAP_ACDER1_CSIDIV_MASK (0x3F << 24) | ||
120 | #define MXC_CRMAP_ACDER1_SSI2EN_OFFSET 14 | ||
121 | #define MXC_CRMAP_ACDER1_SSI2DIV_OFFSET 8 | ||
122 | #define MXC_CRMAP_ACDER1_SSI2DIV_MASK (0x3F << 8) | ||
123 | #define MXC_CRMAP_ACDER1_SSI1EN_OFFSET 6 | ||
124 | #define MXC_CRMAP_ACDER1_SSI1DIV_OFFSET 0 | ||
125 | #define MXC_CRMAP_ACDER1_SSI1DIV_MASK 0x3F | ||
126 | |||
127 | #define MXC_CRMAP_ACDER2_CRCT_CLK_DIV_OFFSET 24 | ||
128 | #define MXC_CRMAP_ACDER2_CRCT_CLK_DIV_MASK (0x7 << 24) | ||
129 | #define MXC_CRMAP_ACDER2_NFCEN_OFFSET 20 | ||
130 | #define MXC_CRMAP_ACDER2_NFCDIV_OFFSET 16 | ||
131 | #define MXC_CRMAP_ACDER2_NFCDIV_MASK (0xF << 16) | ||
132 | #define MXC_CRMAP_ACDER2_USBEN_OFFSET 12 | ||
133 | #define MXC_CRMAP_ACDER2_USBDIV_OFFSET 8 | ||
134 | #define MXC_CRMAP_ACDER2_USBDIV_MASK (0xF << 8) | ||
135 | #define MXC_CRMAP_ACDER2_BAUD_ISEL_OFFSET 5 | ||
136 | #define MXC_CRMAP_ACDER2_BAUD_ISEL_MASK (0x3 << 5) | ||
137 | #define MXC_CRMAP_ACDER2_BAUDDIV_OFFSET 0 | ||
138 | #define MXC_CRMAP_ACDER2_BAUDDIV_MASK 0xF | ||
139 | |||
140 | #define MXC_CRMAP_AMLPMRA_MLPMA7_OFFSET 22 | ||
141 | #define MXC_CRMAP_AMLPMRA_MLPMA7_MASK (0x7 << 22) | ||
142 | #define MXC_CRMAP_AMLPMRA_MLPMA6_OFFSET 19 | ||
143 | #define MXC_CRMAP_AMLPMRA_MLPMA6_MASK (0x7 << 19) | ||
144 | #define MXC_CRMAP_AMLPMRA_MLPMA4_OFFSET 12 | ||
145 | #define MXC_CRMAP_AMLPMRA_MLPMA4_MASK (0x7 << 12) | ||
146 | #define MXC_CRMAP_AMLPMRA_MLPMA3_OFFSET 9 | ||
147 | #define MXC_CRMAP_AMLPMRA_MLPMA3_MASK (0x7 << 9) | ||
148 | #define MXC_CRMAP_AMLPMRA_MLPMA2_OFFSET 6 | ||
149 | #define MXC_CRMAP_AMLPMRA_MLPMA2_MASK (0x7 << 6) | ||
150 | #define MXC_CRMAP_AMLPMRA_MLPMA1_OFFSET 3 | ||
151 | #define MXC_CRMAP_AMLPMRA_MLPMA1_MASK (0x7 << 3) | ||
152 | |||
153 | #define MXC_CRMAP_AMLPMRB_MLPMB0_OFFSET 0 | ||
154 | #define MXC_CRMAP_AMLPMRB_MLPMB0_MASK 0x7 | ||
155 | |||
156 | #define MXC_CRMAP_AMLPMRC_MLPMC9_OFFSET 28 | ||
157 | #define MXC_CRMAP_AMLPMRC_MLPMC9_MASK (0x7 << 28) | ||
158 | #define MXC_CRMAP_AMLPMRC_MLPMC7_OFFSET 22 | ||
159 | #define MXC_CRMAP_AMLPMRC_MLPMC7_MASK (0x7 << 22) | ||
160 | #define MXC_CRMAP_AMLPMRC_MLPMC5_OFFSET 16 | ||
161 | #define MXC_CRMAP_AMLPMRC_MLPMC5_MASK (0x7 << 16) | ||
162 | #define MXC_CRMAP_AMLPMRC_MLPMC4_OFFSET 12 | ||
163 | #define MXC_CRMAP_AMLPMRC_MLPMC4_MASK (0x7 << 12) | ||
164 | #define MXC_CRMAP_AMLPMRC_MLPMC3_OFFSET 9 | ||
165 | #define MXC_CRMAP_AMLPMRC_MLPMC3_MASK (0x7 << 9) | ||
166 | #define MXC_CRMAP_AMLPMRC_MLPMC2_OFFSET 6 | ||
167 | #define MXC_CRMAP_AMLPMRC_MLPMC2_MASK (0x7 << 6) | ||
168 | #define MXC_CRMAP_AMLPMRC_MLPMC1_OFFSET 3 | ||
169 | #define MXC_CRMAP_AMLPMRC_MLPMC1_MASK (0x7 << 3) | ||
170 | #define MXC_CRMAP_AMLPMRC_MLPMC0_OFFSET 0 | ||
171 | #define MXC_CRMAP_AMLPMRC_MLPMC0_MASK 0x7 | ||
172 | |||
173 | #define MXC_CRMAP_AMLPMRD_MLPMD7_OFFSET 22 | ||
174 | #define MXC_CRMAP_AMLPMRD_MLPMD7_MASK (0x7 << 22) | ||
175 | #define MXC_CRMAP_AMLPMRD_MLPMD4_OFFSET 12 | ||
176 | #define MXC_CRMAP_AMLPMRD_MLPMD4_MASK (0x7 << 12) | ||
177 | #define MXC_CRMAP_AMLPMRD_MLPMD3_OFFSET 9 | ||
178 | #define MXC_CRMAP_AMLPMRD_MLPMD3_MASK (0x7 << 9) | ||
179 | #define MXC_CRMAP_AMLPMRD_MLPMD2_OFFSET 6 | ||
180 | #define MXC_CRMAP_AMLPMRD_MLPMD2_MASK (0x7 << 6) | ||
181 | #define MXC_CRMAP_AMLPMRD_MLPMD0_OFFSET 0 | ||
182 | #define MXC_CRMAP_AMLPMRD_MLPMD0_MASK 0x7 | ||
183 | |||
184 | #define MXC_CRMAP_AMLPMRE1_MLPME9_OFFSET 28 | ||
185 | #define MXC_CRMAP_AMLPMRE1_MLPME9_MASK (0x7 << 28) | ||
186 | #define MXC_CRMAP_AMLPMRE1_MLPME8_OFFSET 25 | ||
187 | #define MXC_CRMAP_AMLPMRE1_MLPME8_MASK (0x7 << 25) | ||
188 | #define MXC_CRMAP_AMLPMRE1_MLPME7_OFFSET 22 | ||
189 | #define MXC_CRMAP_AMLPMRE1_MLPME7_MASK (0x7 << 22) | ||
190 | #define MXC_CRMAP_AMLPMRE1_MLPME6_OFFSET 19 | ||
191 | #define MXC_CRMAP_AMLPMRE1_MLPME6_MASK (0x7 << 19) | ||
192 | #define MXC_CRMAP_AMLPMRE1_MLPME5_OFFSET 16 | ||
193 | #define MXC_CRMAP_AMLPMRE1_MLPME5_MASK (0x7 << 16) | ||
194 | #define MXC_CRMAP_AMLPMRE1_MLPME4_OFFSET 12 | ||
195 | #define MXC_CRMAP_AMLPMRE1_MLPME4_MASK (0x7 << 12) | ||
196 | #define MXC_CRMAP_AMLPMRE1_MLPME3_OFFSET 9 | ||
197 | #define MXC_CRMAP_AMLPMRE1_MLPME3_MASK (0x7 << 9) | ||
198 | #define MXC_CRMAP_AMLPMRE1_MLPME2_OFFSET 6 | ||
199 | #define MXC_CRMAP_AMLPMRE1_MLPME2_MASK (0x7 << 6) | ||
200 | #define MXC_CRMAP_AMLPMRE1_MLPME1_OFFSET 3 | ||
201 | #define MXC_CRMAP_AMLPMRE1_MLPME1_MASK (0x7 << 3) | ||
202 | #define MXC_CRMAP_AMLPMRE1_MLPME0_OFFSET 0 | ||
203 | #define MXC_CRMAP_AMLPMRE1_MLPME0_MASK 0x7 | ||
204 | |||
205 | #define MXC_CRMAP_AMLPMRE2_MLPME0_OFFSET 0 | ||
206 | #define MXC_CRMAP_AMLPMRE2_MLPME0_MASK 0x7 | ||
207 | |||
208 | #define MXC_CRMAP_AMLPMRF_MLPMF6_OFFSET 19 | ||
209 | #define MXC_CRMAP_AMLPMRF_MLPMF6_MASK (0x7 << 19) | ||
210 | #define MXC_CRMAP_AMLPMRF_MLPMF5_OFFSET 16 | ||
211 | #define MXC_CRMAP_AMLPMRF_MLPMF5_MASK (0x7 << 16) | ||
212 | #define MXC_CRMAP_AMLPMRF_MLPMF3_OFFSET 9 | ||
213 | #define MXC_CRMAP_AMLPMRF_MLPMF3_MASK (0x7 << 9) | ||
214 | #define MXC_CRMAP_AMLPMRF_MLPMF2_OFFSET 6 | ||
215 | #define MXC_CRMAP_AMLPMRF_MLPMF2_MASK (0x7 << 6) | ||
216 | #define MXC_CRMAP_AMLPMRF_MLPMF1_OFFSET 3 | ||
217 | #define MXC_CRMAP_AMLPMRF_MLPMF1_MASK (0x7 << 3) | ||
218 | #define MXC_CRMAP_AMLPMRF_MLPMF0_OFFSET 0 | ||
219 | #define MXC_CRMAP_AMLPMRF_MLPMF0_MASK (0x7 << 0) | ||
220 | |||
221 | #define MXC_CRMAP_AMLPMRG_MLPMG9_OFFSET 28 | ||
222 | #define MXC_CRMAP_AMLPMRG_MLPMG9_MASK (0x7 << 28) | ||
223 | #define MXC_CRMAP_AMLPMRG_MLPMG7_OFFSET 22 | ||
224 | #define MXC_CRMAP_AMLPMRG_MLPMG7_MASK (0x7 << 22) | ||
225 | #define MXC_CRMAP_AMLPMRG_MLPMG6_OFFSET 19 | ||
226 | #define MXC_CRMAP_AMLPMRG_MLPMG6_MASK (0x7 << 19) | ||
227 | #define MXC_CRMAP_AMLPMRG_MLPMG5_OFFSET 16 | ||
228 | #define MXC_CRMAP_AMLPMRG_MLPMG5_MASK (0x7 << 16) | ||
229 | #define MXC_CRMAP_AMLPMRG_MLPMG4_OFFSET 12 | ||
230 | #define MXC_CRMAP_AMLPMRG_MLPMG4_MASK (0x7 << 12) | ||
231 | #define MXC_CRMAP_AMLPMRG_MLPMG3_OFFSET 9 | ||
232 | #define MXC_CRMAP_AMLPMRG_MLPMG3_MASK (0x7 << 9) | ||
233 | #define MXC_CRMAP_AMLPMRG_MLPMG2_OFFSET 6 | ||
234 | #define MXC_CRMAP_AMLPMRG_MLPMG2_MASK (0x7 << 6) | ||
235 | #define MXC_CRMAP_AMLPMRG_MLPMG1_OFFSET 3 | ||
236 | #define MXC_CRMAP_AMLPMRG_MLPMG1_MASK (0x7 << 3) | ||
237 | #define MXC_CRMAP_AMLPMRG_MLPMG0_OFFSET 0 | ||
238 | #define MXC_CRMAP_AMLPMRG_MLPMG0_MASK 0x7 | ||
239 | |||
240 | #define MXC_CRMAP_AGPR_IPUPAD_OFFSET 20 | ||
241 | #define MXC_CRMAP_AGPR_IPUPAD_MASK (0x7 << 20) | ||
242 | |||
243 | #define MXC_CRMAP_APRA_EL1TEN_OFFSET 29 | ||
244 | #define MXC_CRMAP_APRA_SIMEN_OFFSET 24 | ||
245 | #define MXC_CRMAP_APRA_UART3DIV_OFFSET 17 | ||
246 | #define MXC_CRMAP_APRA_UART3DIV_MASK (0xF << 17) | ||
247 | #define MXC_CRMAP_APRA_UART3EN_OFFSET 16 | ||
248 | #define MXC_CRMAP_APRA_SAHARA_DIV2_CLKEN_OFFSET 14 | ||
249 | #define MXC_CRMAP_APRA_MQSPIEN_OFFSET 13 | ||
250 | #define MXC_CRMAP_APRA_UART2EN_OFFSET 8 | ||
251 | #define MXC_CRMAP_APRA_UART1EN_OFFSET 0 | ||
252 | |||
253 | #define MXC_CRMAP_APRB_SDHC2_ISEL_OFFSET 13 | ||
254 | #define MXC_CRMAP_APRB_SDHC2_ISEL_MASK (0x7 << 13) | ||
255 | #define MXC_CRMAP_APRB_SDHC2_DIV_OFFSET 9 | ||
256 | #define MXC_CRMAP_APRB_SDHC2_DIV_MASK (0xF << 9) | ||
257 | #define MXC_CRMAP_APRB_SDHC2EN_OFFSET 8 | ||
258 | #define MXC_CRMAP_APRB_SDHC1_ISEL_OFFSET 5 | ||
259 | #define MXC_CRMAP_APRB_SDHC1_ISEL_MASK (0x7 << 5) | ||
260 | #define MXC_CRMAP_APRB_SDHC1_DIV_OFFSET 1 | ||
261 | #define MXC_CRMAP_APRB_SDHC1_DIV_MASK (0xF << 1) | ||
262 | #define MXC_CRMAP_APRB_SDHC1EN_OFFSET 0 | ||
263 | |||
264 | #define MXC_CRMAP_ACSR_ADS_OFFSET 8 | ||
265 | #define MXC_CRMAP_ACSR_ADS (0x1 << 8) | ||
266 | #define MXC_CRMAP_ACSR_ACS 0x1 | ||
267 | |||
268 | #define MXC_CRMAP_ADCR_LFDF_0 (0x0 << 8) | ||
269 | #define MXC_CRMAP_ADCR_LFDF_2 (0x1 << 8) | ||
270 | #define MXC_CRMAP_ADCR_LFDF_4 (0x2 << 8) | ||
271 | #define MXC_CRMAP_ADCR_LFDF_8 (0x3 << 8) | ||
272 | #define MXC_CRMAP_ADCR_LFDF_OFFSET 8 | ||
273 | #define MXC_CRMAP_ADCR_LFDF_MASK (0x3 << 8) | ||
274 | #define MXC_CRMAP_ADCR_ALT_PLL 0x80 | ||
275 | #define MXC_CRMAP_ADCR_DFS_DIVEN 0x20 | ||
276 | #define MXC_CRMAP_ADCR_DIV_BYP 0x2 | ||
277 | #define MXC_CRMAP_ADCR_VSTAT 0x8 | ||
278 | #define MXC_CRMAP_ADCR_TSTAT 0x10 | ||
279 | #define MXC_CRMAP_ADCR_DVFS_VCTRL 0x10 | ||
280 | #define MXC_CRMAP_ADCR_CLK_ON 0x40 | ||
281 | |||
282 | #define MXC_CRMAP_ADFMR_FC_OFFSET 16 | ||
283 | #define MXC_CRMAP_ADFMR_FC_MASK (0x1F << 16) | ||
284 | #define MXC_CRMAP_ADFMR_MF_OFFSET 1 | ||
285 | #define MXC_CRMAP_ADFMR_MF_MASK (0x3FF << 1) | ||
286 | #define MXC_CRMAP_ADFMR_DFM_CLK_READY 0x1 | ||
287 | #define MXC_CRMAP_ADFMR_DFM_PWR_DOWN 0x8000 | ||
288 | |||
289 | #define MXC_CRMAP_ACR_CKOHS_HIGH (1 << 18) | ||
290 | #define MXC_CRMAP_ACR_CKOS_HIGH (1 << 16) | ||
291 | #define MXC_CRMAP_ACR_CKOHS_MASK (0x7 << 12) | ||
292 | #define MXC_CRMAP_ACR_CKOHD (1 << 11) | ||
293 | #define MXC_CRMAP_ACR_CKOHDIV_MASK (0xF << 8) | ||
294 | #define MXC_CRMAP_ACR_CKOHDIV_OFFSET 8 | ||
295 | #define MXC_CRMAP_ACR_CKOD (1 << 7) | ||
296 | #define MXC_CRMAP_ACR_CKOS_MASK (0x7 << 4) | ||
297 | |||
298 | /* AP Warm reset */ | ||
299 | #define MXC_CRMAP_AMCR_SW_AP (1 << 14) | ||
300 | |||
301 | /* Bit definitions of ACGCR in CRM_AP for tree level clock gating */ | ||
302 | #define MXC_CRMAP_ACGCR_ACG0_STOP_WAIT 0x00000001 | ||
303 | #define MXC_CRMAP_ACGCR_ACG0_STOP 0x00000003 | ||
304 | #define MXC_CRMAP_ACGCR_ACG0_RUN 0x00000007 | ||
305 | #define MXC_CRMAP_ACGCR_ACG0_DISABLED 0x00000000 | ||
306 | |||
307 | #define MXC_CRMAP_ACGCR_ACG1_STOP_WAIT 0x00000008 | ||
308 | #define MXC_CRMAP_ACGCR_ACG1_STOP 0x00000018 | ||
309 | #define MXC_CRMAP_ACGCR_ACG1_RUN 0x00000038 | ||
310 | #define MXC_CRMAP_ACGCR_ACG1_DISABLED 0x00000000 | ||
311 | |||
312 | #define MXC_CRMAP_ACGCR_ACG2_STOP_WAIT 0x00000040 | ||
313 | #define MXC_CRMAP_ACGCR_ACG2_STOP 0x000000C0 | ||
314 | #define MXC_CRMAP_ACGCR_ACG2_RUN 0x000001C0 | ||
315 | #define MXC_CRMAP_ACGCR_ACG2_DISABLED 0x00000000 | ||
316 | |||
317 | #define MXC_CRMAP_ACGCR_ACG3_STOP_WAIT 0x00000200 | ||
318 | #define MXC_CRMAP_ACGCR_ACG3_STOP 0x00000600 | ||
319 | #define MXC_CRMAP_ACGCR_ACG3_RUN 0x00000E00 | ||
320 | #define MXC_CRMAP_ACGCR_ACG3_DISABLED 0x00000000 | ||
321 | |||
322 | #define MXC_CRMAP_ACGCR_ACG4_STOP_WAIT 0x00001000 | ||
323 | #define MXC_CRMAP_ACGCR_ACG4_STOP 0x00003000 | ||
324 | #define MXC_CRMAP_ACGCR_ACG4_RUN 0x00007000 | ||
325 | #define MXC_CRMAP_ACGCR_ACG4_DISABLED 0x00000000 | ||
326 | |||
327 | #define MXC_CRMAP_ACGCR_ACG5_STOP_WAIT 0x00010000 | ||
328 | #define MXC_CRMAP_ACGCR_ACG5_STOP 0x00030000 | ||
329 | #define MXC_CRMAP_ACGCR_ACG5_RUN 0x00070000 | ||
330 | #define MXC_CRMAP_ACGCR_ACG5_DISABLED 0x00000000 | ||
331 | |||
332 | #define MXC_CRMAP_ACGCR_ACG6_STOP_WAIT 0x00080000 | ||
333 | #define MXC_CRMAP_ACGCR_ACG6_STOP 0x00180000 | ||
334 | #define MXC_CRMAP_ACGCR_ACG6_RUN 0x00380000 | ||
335 | #define MXC_CRMAP_ACGCR_ACG6_DISABLED 0x00000000 | ||
336 | |||
337 | #define NUM_GATE_CTRL 6 | ||
338 | |||
339 | /* CRM COM Register Offsets */ | ||
340 | #define MXC_CRMCOM_CSCR (MXC_CRM_COM_BASE + 0x0C) | ||
341 | #define MXC_CRMCOM_CCCR (MXC_CRM_COM_BASE + 0x10) | ||
342 | |||
343 | /* CRM COM Bit Definitions */ | ||
344 | #define MXC_CRMCOM_CSCR_PPD1 0x08000000 | ||
345 | #define MXC_CRMCOM_CSCR_CKOHSEL (1 << 18) | ||
346 | #define MXC_CRMCOM_CSCR_CKOSEL (1 << 17) | ||
347 | #define MXC_CRMCOM_CCCR_CC_DIV_OFFSET 8 | ||
348 | #define MXC_CRMCOM_CCCR_CC_DIV_MASK (0x1F << 8) | ||
349 | #define MXC_CRMCOM_CCCR_CC_SEL_OFFSET 0 | ||
350 | #define MXC_CRMCOM_CCCR_CC_SEL_MASK 0x3 | ||
351 | |||
352 | /* DSM Register Offsets */ | ||
353 | #define MXC_DSM_SLEEP_TIME (MXC_DSM_BASE + 0x0c) | ||
354 | #define MXC_DSM_CONTROL0 (MXC_DSM_BASE + 0x20) | ||
355 | #define MXC_DSM_CONTROL1 (MXC_DSM_BASE + 0x24) | ||
356 | #define MXC_DSM_CTREN (MXC_DSM_BASE + 0x28) | ||
357 | #define MXC_DSM_WARM_PER (MXC_DSM_BASE + 0x40) | ||
358 | #define MXC_DSM_LOCK_PER (MXC_DSM_BASE + 0x44) | ||
359 | #define MXC_DSM_MGPER (MXC_DSM_BASE + 0x4c) | ||
360 | #define MXC_DSM_CRM_CONTROL (MXC_DSM_BASE + 0x50) | ||
361 | |||
362 | /* Bit definitions of various registers in DSM */ | ||
363 | #define MXC_DSM_CRM_CTRL_DVFS_BYP 0x00000008 | ||
364 | #define MXC_DSM_CRM_CTRL_DVFS_VCTRL 0x00000004 | ||
365 | #define MXC_DSM_CRM_CTRL_LPMD1 0x00000002 | ||
366 | #define MXC_DSM_CRM_CTRL_LPMD0 0x00000001 | ||
367 | #define MXC_DSM_CRM_CTRL_LPMD_STOP_MODE 0x00000000 | ||
368 | #define MXC_DSM_CRM_CTRL_LPMD_WAIT_MODE 0x00000001 | ||
369 | #define MXC_DSM_CRM_CTRL_LPMD_RUN_MODE 0x00000003 | ||
370 | #define MXC_DSM_CONTROL0_STBY_COMMIT_EN 0x00000200 | ||
371 | #define MXC_DSM_CONTROL0_MSTR_EN 0x00000001 | ||
372 | #define MXC_DSM_CONTROL0_RESTART 0x00000010 | ||
373 | /* Counter Block reset */ | ||
374 | #define MXC_DSM_CONTROL1_CB_RST 0x00000002 | ||
375 | /* State Machine reset */ | ||
376 | #define MXC_DSM_CONTROL1_SM_RST 0x00000004 | ||
377 | /* Bit needed to reset counter block */ | ||
378 | #define MXC_CONTROL1_RST_CNT32 0x00000008 | ||
379 | #define MXC_DSM_CONTROL1_RST_CNT32_EN 0x00000800 | ||
380 | #define MXC_DSM_CONTROL1_SLEEP 0x00000100 | ||
381 | #define MXC_DSM_CONTROL1_WAKEUP_DISABLE 0x00004000 | ||
382 | #define MXC_DSM_CTREN_CNT32 0x00000001 | ||
383 | |||
384 | /* Magic Fix enable bit */ | ||
385 | #define MXC_DSM_MGPER_EN_MGFX 0x80000000 | ||
386 | #define MXC_DSM_MGPER_PER_MASK 0x000003FF | ||
387 | #define MXC_DSM_MGPER_PER(n) (MXC_DSM_MGPER_PER_MASK & n) | ||
388 | |||
389 | /* Address offsets of the CLKCTL registers */ | ||
390 | #define MXC_CLKCTL_GP_CTRL (MXC_CLKCTL_BASE + 0x00) | ||
391 | #define MXC_CLKCTL_GP_SER (MXC_CLKCTL_BASE + 0x04) | ||
392 | #define MXC_CLKCTL_GP_CER (MXC_CLKCTL_BASE + 0x08) | ||
393 | |||
394 | #endif /* _ARCH_ARM_MACH_MXC91231_CRM_REGS_H_ */ | ||
diff --git a/arch/arm/mach-mxc91231/devices.c b/arch/arm/mach-mxc91231/devices.c deleted file mode 100644 index 027af4f0d18a..000000000000 --- a/arch/arm/mach-mxc91231/devices.c +++ /dev/null | |||
@@ -1,251 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright 2006-2007 Freescale Semiconductor, Inc. All Rights Reserved. | ||
3 | * Copyright 2008 Sascha Hauer, kernel@pengutronix.de | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or | ||
6 | * modify it under the terms of the GNU General Public License | ||
7 | * as published by the Free Software Foundation; either version 2 | ||
8 | * of the License, or (at your option) any later version. | ||
9 | * This program is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program; if not, write to the Free Software | ||
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, | ||
17 | * Boston, MA 02110-1301, USA. | ||
18 | */ | ||
19 | |||
20 | #include <linux/module.h> | ||
21 | #include <linux/platform_device.h> | ||
22 | #include <linux/serial.h> | ||
23 | #include <linux/gpio.h> | ||
24 | #include <mach/hardware.h> | ||
25 | #include <mach/irqs.h> | ||
26 | #include <mach/imx-uart.h> | ||
27 | |||
28 | static struct resource uart0[] = { | ||
29 | { | ||
30 | .start = MXC91231_UART1_BASE_ADDR, | ||
31 | .end = MXC91231_UART1_BASE_ADDR + 0x0B5, | ||
32 | .flags = IORESOURCE_MEM, | ||
33 | }, { | ||
34 | .start = MXC91231_INT_UART1_RX, | ||
35 | .end = MXC91231_INT_UART1_RX, | ||
36 | .flags = IORESOURCE_IRQ, | ||
37 | }, { | ||
38 | .start = MXC91231_INT_UART1_TX, | ||
39 | .end = MXC91231_INT_UART1_TX, | ||
40 | .flags = IORESOURCE_IRQ, | ||
41 | }, { | ||
42 | .start = MXC91231_INT_UART1_MINT, | ||
43 | .end = MXC91231_INT_UART1_MINT, | ||
44 | .flags = IORESOURCE_IRQ, | ||
45 | }, | ||
46 | }; | ||
47 | |||
48 | struct platform_device mxc_uart_device0 = { | ||
49 | .name = "imx-uart", | ||
50 | .id = 0, | ||
51 | .resource = uart0, | ||
52 | .num_resources = ARRAY_SIZE(uart0), | ||
53 | }; | ||
54 | |||
55 | static struct resource uart1[] = { | ||
56 | { | ||
57 | .start = MXC91231_UART2_BASE_ADDR, | ||
58 | .end = MXC91231_UART2_BASE_ADDR + 0x0B5, | ||
59 | .flags = IORESOURCE_MEM, | ||
60 | }, { | ||
61 | .start = MXC91231_INT_UART2_RX, | ||
62 | .end = MXC91231_INT_UART2_RX, | ||
63 | .flags = IORESOURCE_IRQ, | ||
64 | }, { | ||
65 | .start = MXC91231_INT_UART2_TX, | ||
66 | .end = MXC91231_INT_UART2_TX, | ||
67 | .flags = IORESOURCE_IRQ, | ||
68 | }, { | ||
69 | .start = MXC91231_INT_UART2_MINT, | ||
70 | .end = MXC91231_INT_UART2_MINT, | ||
71 | .flags = IORESOURCE_IRQ, | ||
72 | }, | ||
73 | }; | ||
74 | |||
75 | struct platform_device mxc_uart_device1 = { | ||
76 | .name = "imx-uart", | ||
77 | .id = 1, | ||
78 | .resource = uart1, | ||
79 | .num_resources = ARRAY_SIZE(uart1), | ||
80 | }; | ||
81 | |||
82 | static struct resource uart2[] = { | ||
83 | { | ||
84 | .start = MXC91231_UART3_BASE_ADDR, | ||
85 | .end = MXC91231_UART3_BASE_ADDR + 0x0B5, | ||
86 | .flags = IORESOURCE_MEM, | ||
87 | }, { | ||
88 | .start = MXC91231_INT_UART3_RX, | ||
89 | .end = MXC91231_INT_UART3_RX, | ||
90 | .flags = IORESOURCE_IRQ, | ||
91 | }, { | ||
92 | .start = MXC91231_INT_UART3_TX, | ||
93 | .end = MXC91231_INT_UART3_TX, | ||
94 | .flags = IORESOURCE_IRQ, | ||
95 | }, { | ||
96 | .start = MXC91231_INT_UART3_MINT, | ||
97 | .end = MXC91231_INT_UART3_MINT, | ||
98 | .flags = IORESOURCE_IRQ, | ||
99 | |||
100 | }, | ||
101 | }; | ||
102 | |||
103 | struct platform_device mxc_uart_device2 = { | ||
104 | .name = "imx-uart", | ||
105 | .id = 2, | ||
106 | .resource = uart2, | ||
107 | .num_resources = ARRAY_SIZE(uart2), | ||
108 | }; | ||
109 | |||
110 | /* GPIO port description */ | ||
111 | static struct mxc_gpio_port mxc_gpio_ports[] = { | ||
112 | [0] = { | ||
113 | .chip.label = "gpio-0", | ||
114 | .base = MXC91231_IO_ADDRESS(MXC91231_GPIO1_AP_BASE_ADDR), | ||
115 | .irq = MXC91231_INT_GPIO1, | ||
116 | .virtual_irq_start = MXC_GPIO_IRQ_START, | ||
117 | }, | ||
118 | [1] = { | ||
119 | .chip.label = "gpio-1", | ||
120 | .base = MXC91231_IO_ADDRESS(MXC91231_GPIO2_AP_BASE_ADDR), | ||
121 | .irq = MXC91231_INT_GPIO2, | ||
122 | .virtual_irq_start = MXC_GPIO_IRQ_START + 32, | ||
123 | }, | ||
124 | [2] = { | ||
125 | .chip.label = "gpio-2", | ||
126 | .base = MXC91231_IO_ADDRESS(MXC91231_GPIO3_AP_BASE_ADDR), | ||
127 | .irq = MXC91231_INT_GPIO3, | ||
128 | .virtual_irq_start = MXC_GPIO_IRQ_START + 64, | ||
129 | }, | ||
130 | [3] = { | ||
131 | .chip.label = "gpio-3", | ||
132 | .base = MXC91231_IO_ADDRESS(MXC91231_GPIO4_SH_BASE_ADDR), | ||
133 | .irq = MXC91231_INT_GPIO4, | ||
134 | .virtual_irq_start = MXC_GPIO_IRQ_START + 96, | ||
135 | }, | ||
136 | }; | ||
137 | |||
138 | int __init mxc91231_register_gpios(void) | ||
139 | { | ||
140 | return mxc_gpio_init(mxc_gpio_ports, ARRAY_SIZE(mxc_gpio_ports)); | ||
141 | } | ||
142 | |||
143 | static struct resource mxc_nand_resources[] = { | ||
144 | { | ||
145 | .start = MXC91231_NFC_BASE_ADDR, | ||
146 | .end = MXC91231_NFC_BASE_ADDR + 0xfff, | ||
147 | .flags = IORESOURCE_MEM | ||
148 | }, { | ||
149 | .start = MXC91231_INT_NANDFC, | ||
150 | .end = MXC91231_INT_NANDFC, | ||
151 | .flags = IORESOURCE_IRQ | ||
152 | }, | ||
153 | }; | ||
154 | |||
155 | struct platform_device mxc_nand_device = { | ||
156 | .name = "mxc_nand", | ||
157 | .id = 0, | ||
158 | .num_resources = ARRAY_SIZE(mxc_nand_resources), | ||
159 | .resource = mxc_nand_resources, | ||
160 | }; | ||
161 | |||
162 | static struct resource mxc_sdhc0_resources[] = { | ||
163 | { | ||
164 | .start = MXC91231_MMC_SDHC1_BASE_ADDR, | ||
165 | .end = MXC91231_MMC_SDHC1_BASE_ADDR + SZ_16K - 1, | ||
166 | .flags = IORESOURCE_MEM, | ||
167 | }, { | ||
168 | .start = MXC91231_INT_MMC_SDHC1, | ||
169 | .end = MXC91231_INT_MMC_SDHC1, | ||
170 | .flags = IORESOURCE_IRQ, | ||
171 | }, | ||
172 | }; | ||
173 | |||
174 | static struct resource mxc_sdhc1_resources[] = { | ||
175 | { | ||
176 | .start = MXC91231_MMC_SDHC2_BASE_ADDR, | ||
177 | .end = MXC91231_MMC_SDHC2_BASE_ADDR + SZ_16K - 1, | ||
178 | .flags = IORESOURCE_MEM, | ||
179 | }, { | ||
180 | .start = MXC91231_INT_MMC_SDHC2, | ||
181 | .end = MXC91231_INT_MMC_SDHC2, | ||
182 | .flags = IORESOURCE_IRQ, | ||
183 | }, | ||
184 | }; | ||
185 | |||
186 | struct platform_device mxc_sdhc_device0 = { | ||
187 | .name = "mxc-mmc", | ||
188 | .id = 0, | ||
189 | .num_resources = ARRAY_SIZE(mxc_sdhc0_resources), | ||
190 | .resource = mxc_sdhc0_resources, | ||
191 | }; | ||
192 | |||
193 | struct platform_device mxc_sdhc_device1 = { | ||
194 | .name = "mxc-mmc", | ||
195 | .id = 1, | ||
196 | .num_resources = ARRAY_SIZE(mxc_sdhc1_resources), | ||
197 | .resource = mxc_sdhc1_resources, | ||
198 | }; | ||
199 | |||
200 | static struct resource mxc_cspi0_resources[] = { | ||
201 | { | ||
202 | .start = MXC91231_CSPI1_BASE_ADDR, | ||
203 | .end = MXC91231_CSPI1_BASE_ADDR + 0x20, | ||
204 | .flags = IORESOURCE_MEM, | ||
205 | }, { | ||
206 | .start = MXC91231_INT_CSPI1, | ||
207 | .end = MXC91231_INT_CSPI1, | ||
208 | .flags = IORESOURCE_IRQ, | ||
209 | }, | ||
210 | }; | ||
211 | |||
212 | struct platform_device mxc_cspi_device0 = { | ||
213 | .name = "spi_imx", | ||
214 | .id = 0, | ||
215 | .num_resources = ARRAY_SIZE(mxc_cspi0_resources), | ||
216 | .resource = mxc_cspi0_resources, | ||
217 | }; | ||
218 | |||
219 | static struct resource mxc_cspi1_resources[] = { | ||
220 | { | ||
221 | .start = MXC91231_CSPI2_BASE_ADDR, | ||
222 | .end = MXC91231_CSPI2_BASE_ADDR + 0x20, | ||
223 | .flags = IORESOURCE_MEM, | ||
224 | }, { | ||
225 | .start = MXC91231_INT_CSPI2, | ||
226 | .end = MXC91231_INT_CSPI2, | ||
227 | .flags = IORESOURCE_IRQ, | ||
228 | }, | ||
229 | }; | ||
230 | |||
231 | struct platform_device mxc_cspi_device1 = { | ||
232 | .name = "spi_imx", | ||
233 | .id = 1, | ||
234 | .num_resources = ARRAY_SIZE(mxc_cspi1_resources), | ||
235 | .resource = mxc_cspi1_resources, | ||
236 | }; | ||
237 | |||
238 | static struct resource mxc_wdog0_resources[] = { | ||
239 | { | ||
240 | .start = MXC91231_WDOG1_BASE_ADDR, | ||
241 | .end = MXC91231_WDOG1_BASE_ADDR + 0x10, | ||
242 | .flags = IORESOURCE_MEM, | ||
243 | }, | ||
244 | }; | ||
245 | |||
246 | struct platform_device mxc_wdog_device0 = { | ||
247 | .name = "mxc-wdt", | ||
248 | .id = 0, | ||
249 | .num_resources = ARRAY_SIZE(mxc_wdog0_resources), | ||
250 | .resource = mxc_wdog0_resources, | ||
251 | }; | ||
diff --git a/arch/arm/mach-mxc91231/devices.h b/arch/arm/mach-mxc91231/devices.h deleted file mode 100644 index 72a2136ce27d..000000000000 --- a/arch/arm/mach-mxc91231/devices.h +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | extern struct platform_device mxc_uart_device0; | ||
2 | extern struct platform_device mxc_uart_device1; | ||
3 | extern struct platform_device mxc_uart_device2; | ||
4 | |||
5 | extern struct platform_device mxc_nand_device; | ||
6 | |||
7 | extern struct platform_device mxc_sdhc_device0; | ||
8 | extern struct platform_device mxc_sdhc_device1; | ||
9 | |||
10 | extern struct platform_device mxc_cspi_device0; | ||
11 | extern struct platform_device mxc_cspi_device1; | ||
12 | |||
13 | extern struct platform_device mxc_wdog_device0; | ||
diff --git a/arch/arm/mach-mxc91231/iomux.c b/arch/arm/mach-mxc91231/iomux.c deleted file mode 100644 index 66fc41cbf2ca..000000000000 --- a/arch/arm/mach-mxc91231/iomux.c +++ /dev/null | |||
@@ -1,177 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright 2004-2006 Freescale Semiconductor, Inc. All Rights Reserved. | ||
3 | * Copyright (C) 2008 by Sascha Hauer <kernel@pengutronix.de> | ||
4 | * Copyright (C) 2009 by Valentin Longchamp <valentin.longchamp@epfl.ch> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public License | ||
8 | * as published by the Free Software Foundation; either version 2 | ||
9 | * of the License, or (at your option) any later version. | ||
10 | * This program is distributed in the hope that it will be useful, | ||
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | * GNU General Public License for more details. | ||
14 | * | ||
15 | * You should have received a copy of the GNU General Public License | ||
16 | * along with this program; if not, write to the Free Software | ||
17 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
18 | * MA 02110-1301, USA. | ||
19 | */ | ||
20 | |||
21 | #include <linux/module.h> | ||
22 | #include <linux/spinlock.h> | ||
23 | #include <linux/io.h> | ||
24 | #include <linux/kernel.h> | ||
25 | #include <mach/hardware.h> | ||
26 | #include <mach/gpio.h> | ||
27 | #include <mach/iomux-mxc91231.h> | ||
28 | |||
29 | /* | ||
30 | * IOMUX register (base) addresses | ||
31 | */ | ||
32 | #define IOMUX_AP_BASE MXC91231_IO_ADDRESS(MXC91231_IOMUX_AP_BASE_ADDR) | ||
33 | #define IOMUX_COM_BASE MXC91231_IO_ADDRESS(MXC91231_IOMUX_COM_BASE_ADDR) | ||
34 | #define IOMUXSW_AP_MUX_CTL (IOMUX_AP_BASE + 0x000) | ||
35 | #define IOMUXSW_SP_MUX_CTL (IOMUX_COM_BASE + 0x000) | ||
36 | #define IOMUXSW_PAD_CTL (IOMUX_COM_BASE + 0x200) | ||
37 | |||
38 | #define IOMUXINT_OBS1 (IOMUX_AP_BASE + 0x600) | ||
39 | #define IOMUXINT_OBS2 (IOMUX_AP_BASE + 0x004) | ||
40 | |||
41 | static DEFINE_SPINLOCK(gpio_mux_lock); | ||
42 | |||
43 | #define NB_PORTS ((PIN_MAX + 32) / 32) | ||
44 | #define PIN_GLOBAL_NUM(pin) \ | ||
45 | (((pin & MUX_SIDE_MASK) >> MUX_SIDE_SHIFT)*PIN_AP_MAX + \ | ||
46 | ((pin & MUX_REG_MASK) >> MUX_REG_SHIFT)*4 + \ | ||
47 | ((pin & MUX_FIELD_MASK) >> MUX_FIELD_SHIFT)) | ||
48 | |||
49 | unsigned long mxc_pin_alloc_map[NB_PORTS * 32 / BITS_PER_LONG]; | ||
50 | /* | ||
51 | * set the mode for a IOMUX pin. | ||
52 | */ | ||
53 | int mxc_iomux_mode(unsigned int pin_mode) | ||
54 | { | ||
55 | u32 side, field, l, mode, ret = 0; | ||
56 | void __iomem *reg; | ||
57 | |||
58 | side = (pin_mode & MUX_SIDE_MASK) >> MUX_SIDE_SHIFT; | ||
59 | switch (side) { | ||
60 | case MUX_SIDE_AP: | ||
61 | reg = IOMUXSW_AP_MUX_CTL; | ||
62 | break; | ||
63 | case MUX_SIDE_SP: | ||
64 | reg = IOMUXSW_SP_MUX_CTL; | ||
65 | break; | ||
66 | default: | ||
67 | return -EINVAL; | ||
68 | } | ||
69 | reg += ((pin_mode & MUX_REG_MASK) >> MUX_REG_SHIFT) * 4; | ||
70 | field = (pin_mode & MUX_FIELD_MASK) >> MUX_FIELD_SHIFT; | ||
71 | mode = (pin_mode & MUX_MODE_MASK) >> MUX_MODE_SHIFT; | ||
72 | |||
73 | spin_lock(&gpio_mux_lock); | ||
74 | |||
75 | l = __raw_readl(reg); | ||
76 | l &= ~(0xff << (field * 8)); | ||
77 | l |= mode << (field * 8); | ||
78 | __raw_writel(l, reg); | ||
79 | |||
80 | spin_unlock(&gpio_mux_lock); | ||
81 | |||
82 | return ret; | ||
83 | } | ||
84 | EXPORT_SYMBOL(mxc_iomux_mode); | ||
85 | |||
86 | /* | ||
87 | * This function configures the pad value for a IOMUX pin. | ||
88 | */ | ||
89 | void mxc_iomux_set_pad(enum iomux_pins pin, u32 config) | ||
90 | { | ||
91 | u32 padgrp, field, l; | ||
92 | void __iomem *reg; | ||
93 | |||
94 | padgrp = (pin & MUX_PADGRP_MASK) >> MUX_PADGRP_SHIFT; | ||
95 | reg = IOMUXSW_PAD_CTL + (pin + 2) / 3 * 4; | ||
96 | field = (pin + 2) % 3; | ||
97 | |||
98 | pr_debug("%s: reg offset = 0x%x, field = %d\n", | ||
99 | __func__, (pin + 2) / 3, field); | ||
100 | |||
101 | spin_lock(&gpio_mux_lock); | ||
102 | |||
103 | l = __raw_readl(reg); | ||
104 | l &= ~(0x1ff << (field * 10)); | ||
105 | l |= config << (field * 10); | ||
106 | __raw_writel(l, reg); | ||
107 | |||
108 | spin_unlock(&gpio_mux_lock); | ||
109 | } | ||
110 | EXPORT_SYMBOL(mxc_iomux_set_pad); | ||
111 | |||
112 | /* | ||
113 | * allocs a single pin: | ||
114 | * - reserves the pin so that it is not claimed by another driver | ||
115 | * - setups the iomux according to the configuration | ||
116 | */ | ||
117 | int mxc_iomux_alloc_pin(unsigned int pin_mode, const char *label) | ||
118 | { | ||
119 | unsigned pad = PIN_GLOBAL_NUM(pin_mode); | ||
120 | if (pad >= (PIN_MAX + 1)) { | ||
121 | printk(KERN_ERR "mxc_iomux: Attempt to request nonexistant pin %u for \"%s\"\n", | ||
122 | pad, label ? label : "?"); | ||
123 | return -EINVAL; | ||
124 | } | ||
125 | |||
126 | if (test_and_set_bit(pad, mxc_pin_alloc_map)) { | ||
127 | printk(KERN_ERR "mxc_iomux: pin %u already used. Allocation for \"%s\" failed\n", | ||
128 | pad, label ? label : "?"); | ||
129 | return -EBUSY; | ||
130 | } | ||
131 | mxc_iomux_mode(pin_mode); | ||
132 | |||
133 | return 0; | ||
134 | } | ||
135 | EXPORT_SYMBOL(mxc_iomux_alloc_pin); | ||
136 | |||
137 | int mxc_iomux_setup_multiple_pins(const unsigned int *pin_list, unsigned count, | ||
138 | const char *label) | ||
139 | { | ||
140 | const unsigned int *p = pin_list; | ||
141 | int i; | ||
142 | int ret = -EINVAL; | ||
143 | |||
144 | for (i = 0; i < count; i++) { | ||
145 | ret = mxc_iomux_alloc_pin(*p, label); | ||
146 | if (ret) | ||
147 | goto setup_error; | ||
148 | p++; | ||
149 | } | ||
150 | return 0; | ||
151 | |||
152 | setup_error: | ||
153 | mxc_iomux_release_multiple_pins(pin_list, i); | ||
154 | return ret; | ||
155 | } | ||
156 | EXPORT_SYMBOL(mxc_iomux_setup_multiple_pins); | ||
157 | |||
158 | void mxc_iomux_release_pin(unsigned int pin_mode) | ||
159 | { | ||
160 | unsigned pad = PIN_GLOBAL_NUM(pin_mode); | ||
161 | |||
162 | if (pad < (PIN_MAX + 1)) | ||
163 | clear_bit(pad, mxc_pin_alloc_map); | ||
164 | } | ||
165 | EXPORT_SYMBOL(mxc_iomux_release_pin); | ||
166 | |||
167 | void mxc_iomux_release_multiple_pins(const unsigned int *pin_list, int count) | ||
168 | { | ||
169 | const unsigned int *p = pin_list; | ||
170 | int i; | ||
171 | |||
172 | for (i = 0; i < count; i++) { | ||
173 | mxc_iomux_release_pin(*p); | ||
174 | p++; | ||
175 | } | ||
176 | } | ||
177 | EXPORT_SYMBOL(mxc_iomux_release_multiple_pins); | ||
diff --git a/arch/arm/mach-mxc91231/magx-zn5.c b/arch/arm/mach-mxc91231/magx-zn5.c deleted file mode 100644 index f31a45e5a0b8..000000000000 --- a/arch/arm/mach-mxc91231/magx-zn5.c +++ /dev/null | |||
@@ -1,62 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright 2009 Dmitriy Taychenachev <dimichxp@gmail.com> | ||
3 | * | ||
4 | * This file is released under the GPLv2 or later. | ||
5 | */ | ||
6 | |||
7 | #include <linux/irq.h> | ||
8 | #include <linux/init.h> | ||
9 | #include <linux/device.h> | ||
10 | |||
11 | #include <asm/mach-types.h> | ||
12 | #include <asm/mach/time.h> | ||
13 | #include <asm/mach/arch.h> | ||
14 | |||
15 | #include <mach/common.h> | ||
16 | #include <mach/hardware.h> | ||
17 | #include <mach/iomux-mxc91231.h> | ||
18 | #include <mach/mmc.h> | ||
19 | #include <mach/imx-uart.h> | ||
20 | |||
21 | #include "devices.h" | ||
22 | |||
23 | static struct imxuart_platform_data uart_pdata = { | ||
24 | }; | ||
25 | |||
26 | static struct imxmmc_platform_data sdhc_pdata = { | ||
27 | }; | ||
28 | |||
29 | static void __init zn5_init(void) | ||
30 | { | ||
31 | pm_power_off = mxc91231_power_off; | ||
32 | |||
33 | mxc_iomux_alloc_pin(MXC91231_PIN_SP_USB_DAT_VP__RXD2, "uart2-rx"); | ||
34 | mxc_iomux_alloc_pin(MXC91231_PIN_SP_USB_SE0_VM__TXD2, "uart2-tx"); | ||
35 | |||
36 | mxc_register_device(&mxc_uart_device1, &uart_pdata); | ||
37 | mxc_register_device(&mxc_uart_device0, &uart_pdata); | ||
38 | |||
39 | mxc_register_device(&mxc_sdhc_device0, &sdhc_pdata); | ||
40 | |||
41 | mxc_register_device(&mxc_wdog_device0, NULL); | ||
42 | |||
43 | return; | ||
44 | } | ||
45 | |||
46 | static void __init zn5_timer_init(void) | ||
47 | { | ||
48 | mxc91231_clocks_init(26000000); /* 26mhz ckih */ | ||
49 | } | ||
50 | |||
51 | struct sys_timer zn5_timer = { | ||
52 | .init = zn5_timer_init, | ||
53 | }; | ||
54 | |||
55 | MACHINE_START(MAGX_ZN5, "Motorola Zn5") | ||
56 | .boot_params = MXC91231_PHYS_OFFSET + 0x100, | ||
57 | .map_io = mxc91231_map_io, | ||
58 | .init_early = mxc91231_init_early, | ||
59 | .init_irq = mxc91231_init_irq, | ||
60 | .timer = &zn5_timer, | ||
61 | .init_machine = zn5_init, | ||
62 | MACHINE_END | ||
diff --git a/arch/arm/mach-mxc91231/mm.c b/arch/arm/mach-mxc91231/mm.c deleted file mode 100644 index a77f6daf6a26..000000000000 --- a/arch/arm/mach-mxc91231/mm.c +++ /dev/null | |||
@@ -1,62 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (C) 1999,2000 Arm Limited | ||
3 | * Copyright (C) 2000 Deep Blue Solutions Ltd | ||
4 | * Copyright (C) 2002 Shane Nay (shane@minirl.com) | ||
5 | * Copyright 2004-2005 Freescale Semiconductor, Inc. All Rights Reserved. | ||
6 | * - add MXC specific definitions | ||
7 | * Copyright 2006 Motorola, Inc. | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License as published by | ||
11 | * the Free Software Foundation; either version 2 of the License, or | ||
12 | * (at your option) any later version. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, | ||
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
17 | * GNU General Public License for more details. | ||
18 | */ | ||
19 | |||
20 | #include <linux/mm.h> | ||
21 | #include <linux/init.h> | ||
22 | #include <mach/hardware.h> | ||
23 | #include <mach/common.h> | ||
24 | #include <asm/pgtable.h> | ||
25 | #include <asm/mach/map.h> | ||
26 | |||
27 | /* | ||
28 | * This structure defines the MXC memory map. | ||
29 | */ | ||
30 | static struct map_desc mxc91231_io_desc[] __initdata = { | ||
31 | imx_map_entry(MXC91231, L2CC, MT_DEVICE), | ||
32 | imx_map_entry(MXC91231, X_MEMC, MT_DEVICE), | ||
33 | imx_map_entry(MXC91231, ROMP, MT_DEVICE), | ||
34 | imx_map_entry(MXC91231, AVIC, MT_DEVICE), | ||
35 | imx_map_entry(MXC91231, AIPS1, MT_DEVICE), | ||
36 | imx_map_entry(MXC91231, SPBA0, MT_DEVICE), | ||
37 | imx_map_entry(MXC91231, SPBA1, MT_DEVICE), | ||
38 | imx_map_entry(MXC91231, AIPS2, MT_DEVICE), | ||
39 | }; | ||
40 | |||
41 | /* | ||
42 | * This function initializes the memory map. It is called during the | ||
43 | * system startup to create static physical to virtual memory map for | ||
44 | * the IO modules. | ||
45 | */ | ||
46 | void __init mxc91231_map_io(void) | ||
47 | { | ||
48 | iotable_init(mxc91231_io_desc, ARRAY_SIZE(mxc91231_io_desc)); | ||
49 | } | ||
50 | |||
51 | void __init mxc91231_init_early(void) | ||
52 | { | ||
53 | mxc_set_cpu_type(MXC_CPU_MXC91231); | ||
54 | } | ||
55 | |||
56 | int mxc91231_register_gpios(void); | ||
57 | |||
58 | void __init mxc91231_init_irq(void) | ||
59 | { | ||
60 | mxc91231_register_gpios(); | ||
61 | mxc_init_irq(MXC91231_IO_ADDRESS(MXC91231_AVIC_BASE_ADDR)); | ||
62 | } | ||
diff --git a/arch/arm/mach-mxc91231/system.c b/arch/arm/mach-mxc91231/system.c deleted file mode 100644 index 736f7efd874a..000000000000 --- a/arch/arm/mach-mxc91231/system.c +++ /dev/null | |||
@@ -1,51 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright 2009 Dmitriy Taychenachev <dimichxp@gmail.com> | ||
3 | * | ||
4 | * This file is released under the GPLv2 or later. | ||
5 | */ | ||
6 | |||
7 | #include <linux/delay.h> | ||
8 | #include <linux/io.h> | ||
9 | |||
10 | #include <asm/proc-fns.h> | ||
11 | #include <mach/hardware.h> | ||
12 | |||
13 | #include "crm_regs.h" | ||
14 | |||
15 | #define WDOG_WCR MXC91231_IO_ADDRESS(MXC91231_WDOG1_BASE_ADDR) | ||
16 | #define WDOG_WCR_OUT_ENABLE (1 << 6) | ||
17 | #define WDOG_WCR_ASSERT (1 << 5) | ||
18 | |||
19 | void mxc91231_power_off(void) | ||
20 | { | ||
21 | u16 wcr; | ||
22 | |||
23 | wcr = __raw_readw(WDOG_WCR); | ||
24 | wcr |= WDOG_WCR_OUT_ENABLE; | ||
25 | wcr &= ~WDOG_WCR_ASSERT; | ||
26 | __raw_writew(wcr, WDOG_WCR); | ||
27 | } | ||
28 | |||
29 | void mxc91231_arch_reset(char mode, const char *cmd) | ||
30 | { | ||
31 | u32 amcr; | ||
32 | |||
33 | /* Reset the AP using CRM */ | ||
34 | amcr = __raw_readl(MXC_CRMAP_AMCR); | ||
35 | amcr &= ~MXC_CRMAP_AMCR_SW_AP; | ||
36 | __raw_writel(amcr, MXC_CRMAP_AMCR); | ||
37 | |||
38 | mdelay(10); | ||
39 | cpu_reset(0); | ||
40 | } | ||
41 | |||
42 | void mxc91231_prepare_idle(void) | ||
43 | { | ||
44 | u32 crm_ctl; | ||
45 | |||
46 | /* Go to WAIT mode after WFI */ | ||
47 | crm_ctl = __raw_readl(MXC_DSM_CRM_CONTROL); | ||
48 | crm_ctl &= ~(MXC_DSM_CRM_CTRL_LPMD0 | MXC_DSM_CRM_CTRL_LPMD1); | ||
49 | crm_ctl |= MXC_DSM_CRM_CTRL_LPMD_WAIT_MODE; | ||
50 | __raw_writel(crm_ctl, MXC_DSM_CRM_CONTROL); | ||
51 | } | ||
diff --git a/arch/arm/mach-mxs/Kconfig b/arch/arm/mach-mxs/Kconfig index edacefac2270..f114960622e0 100644 --- a/arch/arm/mach-mxs/Kconfig +++ b/arch/arm/mach-mxs/Kconfig | |||
@@ -34,7 +34,6 @@ config MACH_MX23EVK | |||
34 | select MXS_HAVE_PLATFORM_AUART | 34 | select MXS_HAVE_PLATFORM_AUART |
35 | select MXS_HAVE_PLATFORM_MXS_MMC | 35 | select MXS_HAVE_PLATFORM_MXS_MMC |
36 | select MXS_HAVE_PLATFORM_MXSFB | 36 | select MXS_HAVE_PLATFORM_MXSFB |
37 | default y | ||
38 | help | 37 | help |
39 | Include support for MX23EVK platform. This includes specific | 38 | Include support for MX23EVK platform. This includes specific |
40 | configurations for the board and its peripherals. | 39 | configurations for the board and its peripherals. |
@@ -49,7 +48,6 @@ config MACH_MX28EVK | |||
49 | select MXS_HAVE_PLATFORM_MXS_MMC | 48 | select MXS_HAVE_PLATFORM_MXS_MMC |
50 | select MXS_HAVE_PLATFORM_MXSFB | 49 | select MXS_HAVE_PLATFORM_MXSFB |
51 | select MXS_OCOTP | 50 | select MXS_OCOTP |
52 | default y | ||
53 | help | 51 | help |
54 | Include support for MX28EVK platform. This includes specific | 52 | Include support for MX28EVK platform. This includes specific |
55 | configurations for the board and its peripherals. | 53 | configurations for the board and its peripherals. |
diff --git a/arch/arm/mach-mxs/clock-mx23.c b/arch/arm/mach-mxs/clock-mx23.c index c3577ea789ac..0163b6d83773 100644 --- a/arch/arm/mach-mxs/clock-mx23.c +++ b/arch/arm/mach-mxs/clock-mx23.c | |||
@@ -446,6 +446,8 @@ static struct clk_lookup lookups[] = { | |||
446 | _REGISTER_CLOCK("rtc", NULL, rtc_clk) | 446 | _REGISTER_CLOCK("rtc", NULL, rtc_clk) |
447 | _REGISTER_CLOCK("mxs-dma-apbh", NULL, hbus_clk) | 447 | _REGISTER_CLOCK("mxs-dma-apbh", NULL, hbus_clk) |
448 | _REGISTER_CLOCK("mxs-dma-apbx", NULL, xbus_clk) | 448 | _REGISTER_CLOCK("mxs-dma-apbx", NULL, xbus_clk) |
449 | _REGISTER_CLOCK("mxs-mmc.0", NULL, ssp_clk) | ||
450 | _REGISTER_CLOCK("mxs-mmc.1", NULL, ssp_clk) | ||
449 | _REGISTER_CLOCK(NULL, "usb", usb_clk) | 451 | _REGISTER_CLOCK(NULL, "usb", usb_clk) |
450 | _REGISTER_CLOCK(NULL, "audio", audio_clk) | 452 | _REGISTER_CLOCK(NULL, "audio", audio_clk) |
451 | _REGISTER_CLOCK("mxs-pwm.0", NULL, pwm_clk) | 453 | _REGISTER_CLOCK("mxs-pwm.0", NULL, pwm_clk) |
diff --git a/arch/arm/mach-mxs/devices-mx28.h b/arch/arm/mach-mxs/devices-mx28.h index c473eddce8cf..79b94523954a 100644 --- a/arch/arm/mach-mxs/devices-mx28.h +++ b/arch/arm/mach-mxs/devices-mx28.h | |||
@@ -34,7 +34,7 @@ extern const struct mxs_flexcan_data mx28_flexcan_data[] __initconst; | |||
34 | #define mx28_add_flexcan0(pdata) mx28_add_flexcan(0, pdata) | 34 | #define mx28_add_flexcan0(pdata) mx28_add_flexcan(0, pdata) |
35 | #define mx28_add_flexcan1(pdata) mx28_add_flexcan(1, pdata) | 35 | #define mx28_add_flexcan1(pdata) mx28_add_flexcan(1, pdata) |
36 | 36 | ||
37 | extern const struct mxs_i2c_data mx28_mxs_i2c_data[] __initconst; | 37 | extern const struct mxs_mxs_i2c_data mx28_mxs_i2c_data[] __initconst; |
38 | #define mx28_add_mxs_i2c(id) mxs_add_mxs_i2c(&mx28_mxs_i2c_data[id]) | 38 | #define mx28_add_mxs_i2c(id) mxs_add_mxs_i2c(&mx28_mxs_i2c_data[id]) |
39 | 39 | ||
40 | extern const struct mxs_mxs_mmc_data mx28_mxs_mmc_data[] __initconst; | 40 | extern const struct mxs_mxs_mmc_data mx28_mxs_mmc_data[] __initconst; |
diff --git a/arch/arm/mach-mxs/devices/platform-mxs-i2c.c b/arch/arm/mach-mxs/devices/platform-mxs-i2c.c index eab3a06836d6..79222ec8ede1 100644 --- a/arch/arm/mach-mxs/devices/platform-mxs-i2c.c +++ b/arch/arm/mach-mxs/devices/platform-mxs-i2c.c | |||
@@ -22,13 +22,14 @@ | |||
22 | [_id] = mxs_i2c_data_entry_single(soc, _id) | 22 | [_id] = mxs_i2c_data_entry_single(soc, _id) |
23 | 23 | ||
24 | #ifdef CONFIG_SOC_IMX28 | 24 | #ifdef CONFIG_SOC_IMX28 |
25 | const struct mxs_i2c_data mx28_mxs_i2c_data[] __initconst = { | 25 | const struct mxs_mxs_i2c_data mx28_mxs_i2c_data[] __initconst = { |
26 | mxs_i2c_data_entry(MX28, 0), | 26 | mxs_i2c_data_entry(MX28, 0), |
27 | mxs_i2c_data_entry(MX28, 1), | 27 | mxs_i2c_data_entry(MX28, 1), |
28 | }; | 28 | }; |
29 | #endif | 29 | #endif |
30 | 30 | ||
31 | struct platform_device *__init mxs_add_mxs_i2c(const struct mxs_i2c_data *data) | 31 | struct platform_device *__init mxs_add_mxs_i2c( |
32 | const struct mxs_mxs_i2c_data *data) | ||
32 | { | 33 | { |
33 | struct resource res[] = { | 34 | struct resource res[] = { |
34 | { | 35 | { |
diff --git a/arch/arm/mach-mxs/include/mach/devices-common.h b/arch/arm/mach-mxs/include/mach/devices-common.h index c5137f14c364..7a37469ed5bf 100644 --- a/arch/arm/mach-mxs/include/mach/devices-common.h +++ b/arch/arm/mach-mxs/include/mach/devices-common.h | |||
@@ -65,13 +65,14 @@ struct platform_device *__init mxs_add_flexcan( | |||
65 | const struct flexcan_platform_data *pdata); | 65 | const struct flexcan_platform_data *pdata); |
66 | 66 | ||
67 | /* i2c */ | 67 | /* i2c */ |
68 | struct mxs_i2c_data { | 68 | struct mxs_mxs_i2c_data { |
69 | int id; | 69 | int id; |
70 | resource_size_t iobase; | 70 | resource_size_t iobase; |
71 | resource_size_t errirq; | 71 | resource_size_t errirq; |
72 | resource_size_t dmairq; | 72 | resource_size_t dmairq; |
73 | }; | 73 | }; |
74 | struct platform_device * __init mxs_add_mxs_i2c(const struct mxs_i2c_data *data); | 74 | struct platform_device * __init mxs_add_mxs_i2c( |
75 | const struct mxs_mxs_i2c_data *data); | ||
75 | 76 | ||
76 | /* mmc */ | 77 | /* mmc */ |
77 | #include <mach/mmc.h> | 78 | #include <mach/mmc.h> |
diff --git a/arch/arm/mach-mxs/include/mach/mx23.h b/arch/arm/mach-mxs/include/mach/mx23.h index c0a18c23084a..599094bc99de 100644 --- a/arch/arm/mach-mxs/include/mach/mx23.h +++ b/arch/arm/mach-mxs/include/mach/mx23.h | |||
@@ -57,7 +57,7 @@ | |||
57 | #define MX23_AUDIOIN_BASE_ADDR (MX23_IO_BASE_ADDR + 0x04c000) | 57 | #define MX23_AUDIOIN_BASE_ADDR (MX23_IO_BASE_ADDR + 0x04c000) |
58 | #define MX23_LRADC_BASE_ADDR (MX23_IO_BASE_ADDR + 0x050000) | 58 | #define MX23_LRADC_BASE_ADDR (MX23_IO_BASE_ADDR + 0x050000) |
59 | #define MX23_SPDIF_BASE_ADDR (MX23_IO_BASE_ADDR + 0x054000) | 59 | #define MX23_SPDIF_BASE_ADDR (MX23_IO_BASE_ADDR + 0x054000) |
60 | #define MX23_I2C0_BASE_ADDR (MX23_IO_BASE_ADDR + 0x058000) | 60 | #define MX23_I2C_BASE_ADDR (MX23_IO_BASE_ADDR + 0x058000) |
61 | #define MX23_RTC_BASE_ADDR (MX23_IO_BASE_ADDR + 0x05c000) | 61 | #define MX23_RTC_BASE_ADDR (MX23_IO_BASE_ADDR + 0x05c000) |
62 | #define MX23_PWM_BASE_ADDR (MX23_IO_BASE_ADDR + 0x064000) | 62 | #define MX23_PWM_BASE_ADDR (MX23_IO_BASE_ADDR + 0x064000) |
63 | #define MX23_TIMROT_BASE_ADDR (MX23_IO_BASE_ADDR + 0x068000) | 63 | #define MX23_TIMROT_BASE_ADDR (MX23_IO_BASE_ADDR + 0x068000) |
diff --git a/arch/arm/mach-mxs/include/mach/uncompress.h b/arch/arm/mach-mxs/include/mach/uncompress.h index f12a1732d8b8..7f8bf6539646 100644 --- a/arch/arm/mach-mxs/include/mach/uncompress.h +++ b/arch/arm/mach-mxs/include/mach/uncompress.h | |||
@@ -20,7 +20,7 @@ | |||
20 | 20 | ||
21 | #include <asm/mach-types.h> | 21 | #include <asm/mach-types.h> |
22 | 22 | ||
23 | static unsigned long mxs_duart_base; | 23 | unsigned long mxs_duart_base; |
24 | 24 | ||
25 | #define MXS_DUART(x) (*(volatile unsigned long *)(mxs_duart_base + (x))) | 25 | #define MXS_DUART(x) (*(volatile unsigned long *)(mxs_duart_base + (x))) |
26 | 26 | ||
diff --git a/arch/arm/mach-mxs/mach-mx23evk.c b/arch/arm/mach-mxs/mach-mx23evk.c index 214e5b641bbc..3c2de33803ab 100644 --- a/arch/arm/mach-mxs/mach-mx23evk.c +++ b/arch/arm/mach-mxs/mach-mx23evk.c | |||
@@ -148,7 +148,7 @@ static void __init mx23evk_init(void) | |||
148 | mx23_add_auart0(); | 148 | mx23_add_auart0(); |
149 | 149 | ||
150 | /* power on mmc slot by writing 0 to the gpio */ | 150 | /* power on mmc slot by writing 0 to the gpio */ |
151 | ret = gpio_request_one(MX23EVK_MMC0_SLOT_POWER, GPIOF_DIR_OUT, | 151 | ret = gpio_request_one(MX23EVK_MMC0_SLOT_POWER, GPIOF_OUT_INIT_LOW, |
152 | "mmc0-slot-power"); | 152 | "mmc0-slot-power"); |
153 | if (ret) | 153 | if (ret) |
154 | pr_warn("failed to request gpio mmc0-slot-power: %d\n", ret); | 154 | pr_warn("failed to request gpio mmc0-slot-power: %d\n", ret); |
diff --git a/arch/arm/mach-mxs/mach-mx28evk.c b/arch/arm/mach-mxs/mach-mx28evk.c index bb329b9a2608..eacdc6b0e70a 100644 --- a/arch/arm/mach-mxs/mach-mx28evk.c +++ b/arch/arm/mach-mxs/mach-mx28evk.c | |||
@@ -375,13 +375,13 @@ static void __init mx28evk_init(void) | |||
375 | mx28_add_mxsfb(&mx28evk_mxsfb_pdata); | 375 | mx28_add_mxsfb(&mx28evk_mxsfb_pdata); |
376 | 376 | ||
377 | /* power on mmc slot by writing 0 to the gpio */ | 377 | /* power on mmc slot by writing 0 to the gpio */ |
378 | ret = gpio_request_one(MX28EVK_MMC0_SLOT_POWER, GPIOF_DIR_OUT, | 378 | ret = gpio_request_one(MX28EVK_MMC0_SLOT_POWER, GPIOF_OUT_INIT_LOW, |
379 | "mmc0-slot-power"); | 379 | "mmc0-slot-power"); |
380 | if (ret) | 380 | if (ret) |
381 | pr_warn("failed to request gpio mmc0-slot-power: %d\n", ret); | 381 | pr_warn("failed to request gpio mmc0-slot-power: %d\n", ret); |
382 | mx28_add_mxs_mmc(0, &mx28evk_mmc_pdata[0]); | 382 | mx28_add_mxs_mmc(0, &mx28evk_mmc_pdata[0]); |
383 | 383 | ||
384 | ret = gpio_request_one(MX28EVK_MMC1_SLOT_POWER, GPIOF_DIR_OUT, | 384 | ret = gpio_request_one(MX28EVK_MMC1_SLOT_POWER, GPIOF_OUT_INIT_LOW, |
385 | "mmc1-slot-power"); | 385 | "mmc1-slot-power"); |
386 | if (ret) | 386 | if (ret) |
387 | pr_warn("failed to request gpio mmc1-slot-power: %d\n", ret); | 387 | pr_warn("failed to request gpio mmc1-slot-power: %d\n", ret); |
diff --git a/arch/arm/mach-nuc93x/include/mach/uncompress.h b/arch/arm/mach-nuc93x/include/mach/uncompress.h index 73082cd61e84..381cb9baadd5 100644 --- a/arch/arm/mach-nuc93x/include/mach/uncompress.h +++ b/arch/arm/mach-nuc93x/include/mach/uncompress.h | |||
@@ -27,7 +27,7 @@ | |||
27 | #define arch_decomp_wdog() | 27 | #define arch_decomp_wdog() |
28 | 28 | ||
29 | #define TX_DONE (UART_LSR_TEMT | UART_LSR_THRE) | 29 | #define TX_DONE (UART_LSR_TEMT | UART_LSR_THRE) |
30 | static u32 * uart_base = (u32 *)UART0_PA; | 30 | static u32 * const uart_base = (u32 *)UART0_PA; |
31 | 31 | ||
32 | static void putc(int ch) | 32 | static void putc(int ch) |
33 | { | 33 | { |
diff --git a/arch/arm/mach-omap2/irq.c b/arch/arm/mach-omap2/irq.c index 237e4530abf2..3af2b7a1045e 100644 --- a/arch/arm/mach-omap2/irq.c +++ b/arch/arm/mach-omap2/irq.c | |||
@@ -73,83 +73,18 @@ static u32 intc_bank_read_reg(struct omap_irq_bank *bank, u16 reg) | |||
73 | return __raw_readl(bank->base_reg + reg); | 73 | return __raw_readl(bank->base_reg + reg); |
74 | } | 74 | } |
75 | 75 | ||
76 | static int previous_irq; | ||
77 | |||
78 | /* | ||
79 | * On 34xx we can get occasional spurious interrupts if the ack from | ||
80 | * an interrupt handler does not get posted before we unmask. Warn about | ||
81 | * the interrupt handlers that need to flush posted writes. | ||
82 | */ | ||
83 | static int omap_check_spurious(unsigned int irq) | ||
84 | { | ||
85 | u32 sir, spurious; | ||
86 | |||
87 | sir = intc_bank_read_reg(&irq_banks[0], INTC_SIR); | ||
88 | spurious = sir >> 7; | ||
89 | |||
90 | if (spurious) { | ||
91 | printk(KERN_WARNING "Spurious irq %i: 0x%08x, please flush " | ||
92 | "posted write for irq %i\n", | ||
93 | irq, sir, previous_irq); | ||
94 | return spurious; | ||
95 | } | ||
96 | |||
97 | return 0; | ||
98 | } | ||
99 | |||
100 | /* XXX: FIQ and additional INTC support (only MPU at the moment) */ | 76 | /* XXX: FIQ and additional INTC support (only MPU at the moment) */ |
101 | static void omap_ack_irq(struct irq_data *d) | 77 | static void omap_ack_irq(struct irq_data *d) |
102 | { | 78 | { |
103 | intc_bank_write_reg(0x1, &irq_banks[0], INTC_CONTROL); | 79 | intc_bank_write_reg(0x1, &irq_banks[0], INTC_CONTROL); |
104 | } | 80 | } |
105 | 81 | ||
106 | static void omap_mask_irq(struct irq_data *d) | ||
107 | { | ||
108 | unsigned int irq = d->irq; | ||
109 | int offset = irq & (~(IRQ_BITS_PER_REG - 1)); | ||
110 | |||
111 | if (cpu_is_omap34xx() && !cpu_is_ti816x()) { | ||
112 | int spurious = 0; | ||
113 | |||
114 | /* | ||
115 | * INT_34XX_GPT12_IRQ is also the spurious irq. Maybe because | ||
116 | * it is the highest irq number? | ||
117 | */ | ||
118 | if (irq == INT_34XX_GPT12_IRQ) | ||
119 | spurious = omap_check_spurious(irq); | ||
120 | |||
121 | if (!spurious) | ||
122 | previous_irq = irq; | ||
123 | } | ||
124 | |||
125 | irq &= (IRQ_BITS_PER_REG - 1); | ||
126 | |||
127 | intc_bank_write_reg(1 << irq, &irq_banks[0], INTC_MIR_SET0 + offset); | ||
128 | } | ||
129 | |||
130 | static void omap_unmask_irq(struct irq_data *d) | ||
131 | { | ||
132 | unsigned int irq = d->irq; | ||
133 | int offset = irq & (~(IRQ_BITS_PER_REG - 1)); | ||
134 | |||
135 | irq &= (IRQ_BITS_PER_REG - 1); | ||
136 | |||
137 | intc_bank_write_reg(1 << irq, &irq_banks[0], INTC_MIR_CLEAR0 + offset); | ||
138 | } | ||
139 | |||
140 | static void omap_mask_ack_irq(struct irq_data *d) | 82 | static void omap_mask_ack_irq(struct irq_data *d) |
141 | { | 83 | { |
142 | omap_mask_irq(d); | 84 | irq_gc_mask_disable_reg(d); |
143 | omap_ack_irq(d); | 85 | omap_ack_irq(d); |
144 | } | 86 | } |
145 | 87 | ||
146 | static struct irq_chip omap_irq_chip = { | ||
147 | .name = "INTC", | ||
148 | .irq_ack = omap_mask_ack_irq, | ||
149 | .irq_mask = omap_mask_irq, | ||
150 | .irq_unmask = omap_unmask_irq, | ||
151 | }; | ||
152 | |||
153 | static void __init omap_irq_bank_init_one(struct omap_irq_bank *bank) | 88 | static void __init omap_irq_bank_init_one(struct omap_irq_bank *bank) |
154 | { | 89 | { |
155 | unsigned long tmp; | 90 | unsigned long tmp; |
@@ -186,11 +121,31 @@ int omap_irq_pending(void) | |||
186 | return 0; | 121 | return 0; |
187 | } | 122 | } |
188 | 123 | ||
124 | static __init void | ||
125 | omap_alloc_gc(void __iomem *base, unsigned int irq_start, unsigned int num) | ||
126 | { | ||
127 | struct irq_chip_generic *gc; | ||
128 | struct irq_chip_type *ct; | ||
129 | |||
130 | gc = irq_alloc_generic_chip("INTC", 1, irq_start, base, | ||
131 | handle_level_irq); | ||
132 | ct = gc->chip_types; | ||
133 | ct->chip.irq_ack = omap_mask_ack_irq; | ||
134 | ct->chip.irq_mask = irq_gc_mask_disable_reg; | ||
135 | ct->chip.irq_unmask = irq_gc_unmask_enable_reg; | ||
136 | |||
137 | ct->regs.ack = INTC_CONTROL; | ||
138 | ct->regs.enable = INTC_MIR_CLEAR0; | ||
139 | ct->regs.disable = INTC_MIR_SET0; | ||
140 | irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE, | ||
141 | IRQ_NOREQUEST | IRQ_NOPROBE, 0); | ||
142 | } | ||
143 | |||
189 | void __init omap_init_irq(void) | 144 | void __init omap_init_irq(void) |
190 | { | 145 | { |
191 | unsigned long nr_of_irqs = 0; | 146 | unsigned long nr_of_irqs = 0; |
192 | unsigned int nr_banks = 0; | 147 | unsigned int nr_banks = 0; |
193 | int i; | 148 | int i, j; |
194 | 149 | ||
195 | for (i = 0; i < ARRAY_SIZE(irq_banks); i++) { | 150 | for (i = 0; i < ARRAY_SIZE(irq_banks); i++) { |
196 | unsigned long base = 0; | 151 | unsigned long base = 0; |
@@ -215,17 +170,15 @@ void __init omap_init_irq(void) | |||
215 | 170 | ||
216 | omap_irq_bank_init_one(bank); | 171 | omap_irq_bank_init_one(bank); |
217 | 172 | ||
173 | for (i = 0, j = 0; i < bank->nr_irqs; i += 32, j += 0x20) | ||
174 | omap_alloc_gc(bank->base_reg + j, i, 32); | ||
175 | |||
218 | nr_of_irqs += bank->nr_irqs; | 176 | nr_of_irqs += bank->nr_irqs; |
219 | nr_banks++; | 177 | nr_banks++; |
220 | } | 178 | } |
221 | 179 | ||
222 | printk(KERN_INFO "Total of %ld interrupts on %d active controller%s\n", | 180 | printk(KERN_INFO "Total of %ld interrupts on %d active controller%s\n", |
223 | nr_of_irqs, nr_banks, nr_banks > 1 ? "s" : ""); | 181 | nr_of_irqs, nr_banks, nr_banks > 1 ? "s" : ""); |
224 | |||
225 | for (i = 0; i < nr_of_irqs; i++) { | ||
226 | irq_set_chip_and_handler(i, &omap_irq_chip, handle_level_irq); | ||
227 | set_irq_flags(i, IRQF_VALID); | ||
228 | } | ||
229 | } | 182 | } |
230 | 183 | ||
231 | #ifdef CONFIG_ARCH_OMAP3 | 184 | #ifdef CONFIG_ARCH_OMAP3 |
diff --git a/arch/arm/mach-orion5x/common.c b/arch/arm/mach-orion5x/common.c index 986c3bf4e6b8..0ab531d047fc 100644 --- a/arch/arm/mach-orion5x/common.c +++ b/arch/arm/mach-orion5x/common.c | |||
@@ -13,12 +13,11 @@ | |||
13 | #include <linux/kernel.h> | 13 | #include <linux/kernel.h> |
14 | #include <linux/init.h> | 14 | #include <linux/init.h> |
15 | #include <linux/platform_device.h> | 15 | #include <linux/platform_device.h> |
16 | #include <linux/dma-mapping.h> | ||
16 | #include <linux/serial_8250.h> | 17 | #include <linux/serial_8250.h> |
17 | #include <linux/mbus.h> | 18 | #include <linux/mbus.h> |
18 | #include <linux/mv643xx_eth.h> | ||
19 | #include <linux/mv643xx_i2c.h> | 19 | #include <linux/mv643xx_i2c.h> |
20 | #include <linux/ata_platform.h> | 20 | #include <linux/ata_platform.h> |
21 | #include <linux/spi/orion_spi.h> | ||
22 | #include <net/dsa.h> | 21 | #include <net/dsa.h> |
23 | #include <asm/page.h> | 22 | #include <asm/page.h> |
24 | #include <asm/setup.h> | 23 | #include <asm/setup.h> |
@@ -29,11 +28,9 @@ | |||
29 | #include <mach/bridge-regs.h> | 28 | #include <mach/bridge-regs.h> |
30 | #include <mach/hardware.h> | 29 | #include <mach/hardware.h> |
31 | #include <mach/orion5x.h> | 30 | #include <mach/orion5x.h> |
32 | #include <plat/ehci-orion.h> | ||
33 | #include <plat/mv_xor.h> | ||
34 | #include <plat/orion_nand.h> | 31 | #include <plat/orion_nand.h> |
35 | #include <plat/orion_wdt.h> | ||
36 | #include <plat/time.h> | 32 | #include <plat/time.h> |
33 | #include <plat/common.h> | ||
37 | #include "common.h" | 34 | #include "common.h" |
38 | 35 | ||
39 | /***************************************************************************** | 36 | /***************************************************************************** |
@@ -70,530 +67,124 @@ void __init orion5x_map_io(void) | |||
70 | 67 | ||
71 | 68 | ||
72 | /***************************************************************************** | 69 | /***************************************************************************** |
73 | * EHCI | ||
74 | ****************************************************************************/ | ||
75 | static struct orion_ehci_data orion5x_ehci_data = { | ||
76 | .dram = &orion5x_mbus_dram_info, | ||
77 | .phy_version = EHCI_PHY_ORION, | ||
78 | }; | ||
79 | |||
80 | static u64 ehci_dmamask = 0xffffffffUL; | ||
81 | |||
82 | |||
83 | /***************************************************************************** | ||
84 | * EHCI0 | 70 | * EHCI0 |
85 | ****************************************************************************/ | 71 | ****************************************************************************/ |
86 | static struct resource orion5x_ehci0_resources[] = { | ||
87 | { | ||
88 | .start = ORION5X_USB0_PHYS_BASE, | ||
89 | .end = ORION5X_USB0_PHYS_BASE + SZ_4K - 1, | ||
90 | .flags = IORESOURCE_MEM, | ||
91 | }, { | ||
92 | .start = IRQ_ORION5X_USB0_CTRL, | ||
93 | .end = IRQ_ORION5X_USB0_CTRL, | ||
94 | .flags = IORESOURCE_IRQ, | ||
95 | }, | ||
96 | }; | ||
97 | |||
98 | static struct platform_device orion5x_ehci0 = { | ||
99 | .name = "orion-ehci", | ||
100 | .id = 0, | ||
101 | .dev = { | ||
102 | .dma_mask = &ehci_dmamask, | ||
103 | .coherent_dma_mask = 0xffffffff, | ||
104 | .platform_data = &orion5x_ehci_data, | ||
105 | }, | ||
106 | .resource = orion5x_ehci0_resources, | ||
107 | .num_resources = ARRAY_SIZE(orion5x_ehci0_resources), | ||
108 | }; | ||
109 | |||
110 | void __init orion5x_ehci0_init(void) | 72 | void __init orion5x_ehci0_init(void) |
111 | { | 73 | { |
112 | platform_device_register(&orion5x_ehci0); | 74 | orion_ehci_init(&orion5x_mbus_dram_info, |
75 | ORION5X_USB0_PHYS_BASE, IRQ_ORION5X_USB0_CTRL); | ||
113 | } | 76 | } |
114 | 77 | ||
115 | 78 | ||
116 | /***************************************************************************** | 79 | /***************************************************************************** |
117 | * EHCI1 | 80 | * EHCI1 |
118 | ****************************************************************************/ | 81 | ****************************************************************************/ |
119 | static struct resource orion5x_ehci1_resources[] = { | ||
120 | { | ||
121 | .start = ORION5X_USB1_PHYS_BASE, | ||
122 | .end = ORION5X_USB1_PHYS_BASE + SZ_4K - 1, | ||
123 | .flags = IORESOURCE_MEM, | ||
124 | }, { | ||
125 | .start = IRQ_ORION5X_USB1_CTRL, | ||
126 | .end = IRQ_ORION5X_USB1_CTRL, | ||
127 | .flags = IORESOURCE_IRQ, | ||
128 | }, | ||
129 | }; | ||
130 | |||
131 | static struct platform_device orion5x_ehci1 = { | ||
132 | .name = "orion-ehci", | ||
133 | .id = 1, | ||
134 | .dev = { | ||
135 | .dma_mask = &ehci_dmamask, | ||
136 | .coherent_dma_mask = 0xffffffff, | ||
137 | .platform_data = &orion5x_ehci_data, | ||
138 | }, | ||
139 | .resource = orion5x_ehci1_resources, | ||
140 | .num_resources = ARRAY_SIZE(orion5x_ehci1_resources), | ||
141 | }; | ||
142 | |||
143 | void __init orion5x_ehci1_init(void) | 82 | void __init orion5x_ehci1_init(void) |
144 | { | 83 | { |
145 | platform_device_register(&orion5x_ehci1); | 84 | orion_ehci_1_init(&orion5x_mbus_dram_info, |
85 | ORION5X_USB1_PHYS_BASE, IRQ_ORION5X_USB1_CTRL); | ||
146 | } | 86 | } |
147 | 87 | ||
148 | 88 | ||
149 | /***************************************************************************** | 89 | /***************************************************************************** |
150 | * GigE | 90 | * GE00 |
151 | ****************************************************************************/ | 91 | ****************************************************************************/ |
152 | struct mv643xx_eth_shared_platform_data orion5x_eth_shared_data = { | ||
153 | .dram = &orion5x_mbus_dram_info, | ||
154 | }; | ||
155 | |||
156 | static struct resource orion5x_eth_shared_resources[] = { | ||
157 | { | ||
158 | .start = ORION5X_ETH_PHYS_BASE + 0x2000, | ||
159 | .end = ORION5X_ETH_PHYS_BASE + 0x3fff, | ||
160 | .flags = IORESOURCE_MEM, | ||
161 | }, { | ||
162 | .start = IRQ_ORION5X_ETH_ERR, | ||
163 | .end = IRQ_ORION5X_ETH_ERR, | ||
164 | .flags = IORESOURCE_IRQ, | ||
165 | }, | ||
166 | }; | ||
167 | |||
168 | static struct platform_device orion5x_eth_shared = { | ||
169 | .name = MV643XX_ETH_SHARED_NAME, | ||
170 | .id = 0, | ||
171 | .dev = { | ||
172 | .platform_data = &orion5x_eth_shared_data, | ||
173 | }, | ||
174 | .num_resources = ARRAY_SIZE(orion5x_eth_shared_resources), | ||
175 | .resource = orion5x_eth_shared_resources, | ||
176 | }; | ||
177 | |||
178 | static struct resource orion5x_eth_resources[] = { | ||
179 | { | ||
180 | .name = "eth irq", | ||
181 | .start = IRQ_ORION5X_ETH_SUM, | ||
182 | .end = IRQ_ORION5X_ETH_SUM, | ||
183 | .flags = IORESOURCE_IRQ, | ||
184 | }, | ||
185 | }; | ||
186 | |||
187 | static struct platform_device orion5x_eth = { | ||
188 | .name = MV643XX_ETH_NAME, | ||
189 | .id = 0, | ||
190 | .num_resources = 1, | ||
191 | .resource = orion5x_eth_resources, | ||
192 | .dev = { | ||
193 | .coherent_dma_mask = 0xffffffff, | ||
194 | }, | ||
195 | }; | ||
196 | |||
197 | void __init orion5x_eth_init(struct mv643xx_eth_platform_data *eth_data) | 92 | void __init orion5x_eth_init(struct mv643xx_eth_platform_data *eth_data) |
198 | { | 93 | { |
199 | eth_data->shared = &orion5x_eth_shared; | 94 | orion_ge00_init(eth_data, &orion5x_mbus_dram_info, |
200 | orion5x_eth.dev.platform_data = eth_data; | 95 | ORION5X_ETH_PHYS_BASE, IRQ_ORION5X_ETH_SUM, |
201 | 96 | IRQ_ORION5X_ETH_ERR, orion5x_tclk); | |
202 | platform_device_register(&orion5x_eth_shared); | ||
203 | platform_device_register(&orion5x_eth); | ||
204 | } | 97 | } |
205 | 98 | ||
206 | 99 | ||
207 | /***************************************************************************** | 100 | /***************************************************************************** |
208 | * Ethernet switch | 101 | * Ethernet switch |
209 | ****************************************************************************/ | 102 | ****************************************************************************/ |
210 | static struct resource orion5x_switch_resources[] = { | ||
211 | { | ||
212 | .start = 0, | ||
213 | .end = 0, | ||
214 | .flags = IORESOURCE_IRQ, | ||
215 | }, | ||
216 | }; | ||
217 | |||
218 | static struct platform_device orion5x_switch_device = { | ||
219 | .name = "dsa", | ||
220 | .id = 0, | ||
221 | .num_resources = 0, | ||
222 | .resource = orion5x_switch_resources, | ||
223 | }; | ||
224 | |||
225 | void __init orion5x_eth_switch_init(struct dsa_platform_data *d, int irq) | 103 | void __init orion5x_eth_switch_init(struct dsa_platform_data *d, int irq) |
226 | { | 104 | { |
227 | int i; | 105 | orion_ge00_switch_init(d, irq); |
228 | |||
229 | if (irq != NO_IRQ) { | ||
230 | orion5x_switch_resources[0].start = irq; | ||
231 | orion5x_switch_resources[0].end = irq; | ||
232 | orion5x_switch_device.num_resources = 1; | ||
233 | } | ||
234 | |||
235 | d->netdev = &orion5x_eth.dev; | ||
236 | for (i = 0; i < d->nr_chips; i++) | ||
237 | d->chip[i].mii_bus = &orion5x_eth_shared.dev; | ||
238 | orion5x_switch_device.dev.platform_data = d; | ||
239 | |||
240 | platform_device_register(&orion5x_switch_device); | ||
241 | } | 106 | } |
242 | 107 | ||
243 | 108 | ||
244 | /***************************************************************************** | 109 | /***************************************************************************** |
245 | * I2C | 110 | * I2C |
246 | ****************************************************************************/ | 111 | ****************************************************************************/ |
247 | static struct mv64xxx_i2c_pdata orion5x_i2c_pdata = { | ||
248 | .freq_m = 8, /* assumes 166 MHz TCLK */ | ||
249 | .freq_n = 3, | ||
250 | .timeout = 1000, /* Default timeout of 1 second */ | ||
251 | }; | ||
252 | |||
253 | static struct resource orion5x_i2c_resources[] = { | ||
254 | { | ||
255 | .start = I2C_PHYS_BASE, | ||
256 | .end = I2C_PHYS_BASE + 0x1f, | ||
257 | .flags = IORESOURCE_MEM, | ||
258 | }, { | ||
259 | .start = IRQ_ORION5X_I2C, | ||
260 | .end = IRQ_ORION5X_I2C, | ||
261 | .flags = IORESOURCE_IRQ, | ||
262 | }, | ||
263 | }; | ||
264 | |||
265 | static struct platform_device orion5x_i2c = { | ||
266 | .name = MV64XXX_I2C_CTLR_NAME, | ||
267 | .id = 0, | ||
268 | .num_resources = ARRAY_SIZE(orion5x_i2c_resources), | ||
269 | .resource = orion5x_i2c_resources, | ||
270 | .dev = { | ||
271 | .platform_data = &orion5x_i2c_pdata, | ||
272 | }, | ||
273 | }; | ||
274 | |||
275 | void __init orion5x_i2c_init(void) | 112 | void __init orion5x_i2c_init(void) |
276 | { | 113 | { |
277 | platform_device_register(&orion5x_i2c); | 114 | orion_i2c_init(I2C_PHYS_BASE, IRQ_ORION5X_I2C, 8); |
115 | |||
278 | } | 116 | } |
279 | 117 | ||
280 | 118 | ||
281 | /***************************************************************************** | 119 | /***************************************************************************** |
282 | * SATA | 120 | * SATA |
283 | ****************************************************************************/ | 121 | ****************************************************************************/ |
284 | static struct resource orion5x_sata_resources[] = { | ||
285 | { | ||
286 | .name = "sata base", | ||
287 | .start = ORION5X_SATA_PHYS_BASE, | ||
288 | .end = ORION5X_SATA_PHYS_BASE + 0x5000 - 1, | ||
289 | .flags = IORESOURCE_MEM, | ||
290 | }, { | ||
291 | .name = "sata irq", | ||
292 | .start = IRQ_ORION5X_SATA, | ||
293 | .end = IRQ_ORION5X_SATA, | ||
294 | .flags = IORESOURCE_IRQ, | ||
295 | }, | ||
296 | }; | ||
297 | |||
298 | static struct platform_device orion5x_sata = { | ||
299 | .name = "sata_mv", | ||
300 | .id = 0, | ||
301 | .dev = { | ||
302 | .coherent_dma_mask = 0xffffffff, | ||
303 | }, | ||
304 | .num_resources = ARRAY_SIZE(orion5x_sata_resources), | ||
305 | .resource = orion5x_sata_resources, | ||
306 | }; | ||
307 | |||
308 | void __init orion5x_sata_init(struct mv_sata_platform_data *sata_data) | 122 | void __init orion5x_sata_init(struct mv_sata_platform_data *sata_data) |
309 | { | 123 | { |
310 | sata_data->dram = &orion5x_mbus_dram_info; | 124 | orion_sata_init(sata_data, &orion5x_mbus_dram_info, |
311 | orion5x_sata.dev.platform_data = sata_data; | 125 | ORION5X_SATA_PHYS_BASE, IRQ_ORION5X_SATA); |
312 | platform_device_register(&orion5x_sata); | ||
313 | } | 126 | } |
314 | 127 | ||
315 | 128 | ||
316 | /***************************************************************************** | 129 | /***************************************************************************** |
317 | * SPI | 130 | * SPI |
318 | ****************************************************************************/ | 131 | ****************************************************************************/ |
319 | static struct orion_spi_info orion5x_spi_plat_data = { | ||
320 | .tclk = 0, | ||
321 | .enable_clock_fix = 1, | ||
322 | }; | ||
323 | |||
324 | static struct resource orion5x_spi_resources[] = { | ||
325 | { | ||
326 | .name = "spi base", | ||
327 | .start = SPI_PHYS_BASE, | ||
328 | .end = SPI_PHYS_BASE + 0x1f, | ||
329 | .flags = IORESOURCE_MEM, | ||
330 | }, | ||
331 | }; | ||
332 | |||
333 | static struct platform_device orion5x_spi = { | ||
334 | .name = "orion_spi", | ||
335 | .id = 0, | ||
336 | .dev = { | ||
337 | .platform_data = &orion5x_spi_plat_data, | ||
338 | }, | ||
339 | .num_resources = ARRAY_SIZE(orion5x_spi_resources), | ||
340 | .resource = orion5x_spi_resources, | ||
341 | }; | ||
342 | |||
343 | void __init orion5x_spi_init() | 132 | void __init orion5x_spi_init() |
344 | { | 133 | { |
345 | platform_device_register(&orion5x_spi); | 134 | orion_spi_init(SPI_PHYS_BASE, orion5x_tclk); |
346 | } | 135 | } |
347 | 136 | ||
348 | 137 | ||
349 | /***************************************************************************** | 138 | /***************************************************************************** |
350 | * UART0 | 139 | * UART0 |
351 | ****************************************************************************/ | 140 | ****************************************************************************/ |
352 | static struct plat_serial8250_port orion5x_uart0_data[] = { | ||
353 | { | ||
354 | .mapbase = UART0_PHYS_BASE, | ||
355 | .membase = (char *)UART0_VIRT_BASE, | ||
356 | .irq = IRQ_ORION5X_UART0, | ||
357 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, | ||
358 | .iotype = UPIO_MEM, | ||
359 | .regshift = 2, | ||
360 | .uartclk = 0, | ||
361 | }, { | ||
362 | }, | ||
363 | }; | ||
364 | |||
365 | static struct resource orion5x_uart0_resources[] = { | ||
366 | { | ||
367 | .start = UART0_PHYS_BASE, | ||
368 | .end = UART0_PHYS_BASE + 0xff, | ||
369 | .flags = IORESOURCE_MEM, | ||
370 | }, { | ||
371 | .start = IRQ_ORION5X_UART0, | ||
372 | .end = IRQ_ORION5X_UART0, | ||
373 | .flags = IORESOURCE_IRQ, | ||
374 | }, | ||
375 | }; | ||
376 | |||
377 | static struct platform_device orion5x_uart0 = { | ||
378 | .name = "serial8250", | ||
379 | .id = PLAT8250_DEV_PLATFORM, | ||
380 | .dev = { | ||
381 | .platform_data = orion5x_uart0_data, | ||
382 | }, | ||
383 | .resource = orion5x_uart0_resources, | ||
384 | .num_resources = ARRAY_SIZE(orion5x_uart0_resources), | ||
385 | }; | ||
386 | |||
387 | void __init orion5x_uart0_init(void) | 141 | void __init orion5x_uart0_init(void) |
388 | { | 142 | { |
389 | platform_device_register(&orion5x_uart0); | 143 | orion_uart0_init(UART0_VIRT_BASE, UART0_PHYS_BASE, |
144 | IRQ_ORION5X_UART0, orion5x_tclk); | ||
390 | } | 145 | } |
391 | 146 | ||
392 | |||
393 | /***************************************************************************** | 147 | /***************************************************************************** |
394 | * UART1 | 148 | * UART1 |
395 | ****************************************************************************/ | 149 | ****************************************************************************/ |
396 | static struct plat_serial8250_port orion5x_uart1_data[] = { | ||
397 | { | ||
398 | .mapbase = UART1_PHYS_BASE, | ||
399 | .membase = (char *)UART1_VIRT_BASE, | ||
400 | .irq = IRQ_ORION5X_UART1, | ||
401 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, | ||
402 | .iotype = UPIO_MEM, | ||
403 | .regshift = 2, | ||
404 | .uartclk = 0, | ||
405 | }, { | ||
406 | }, | ||
407 | }; | ||
408 | |||
409 | static struct resource orion5x_uart1_resources[] = { | ||
410 | { | ||
411 | .start = UART1_PHYS_BASE, | ||
412 | .end = UART1_PHYS_BASE + 0xff, | ||
413 | .flags = IORESOURCE_MEM, | ||
414 | }, { | ||
415 | .start = IRQ_ORION5X_UART1, | ||
416 | .end = IRQ_ORION5X_UART1, | ||
417 | .flags = IORESOURCE_IRQ, | ||
418 | }, | ||
419 | }; | ||
420 | |||
421 | static struct platform_device orion5x_uart1 = { | ||
422 | .name = "serial8250", | ||
423 | .id = PLAT8250_DEV_PLATFORM1, | ||
424 | .dev = { | ||
425 | .platform_data = orion5x_uart1_data, | ||
426 | }, | ||
427 | .resource = orion5x_uart1_resources, | ||
428 | .num_resources = ARRAY_SIZE(orion5x_uart1_resources), | ||
429 | }; | ||
430 | |||
431 | void __init orion5x_uart1_init(void) | 150 | void __init orion5x_uart1_init(void) |
432 | { | 151 | { |
433 | platform_device_register(&orion5x_uart1); | 152 | orion_uart1_init(UART1_VIRT_BASE, UART1_PHYS_BASE, |
153 | IRQ_ORION5X_UART1, orion5x_tclk); | ||
434 | } | 154 | } |
435 | 155 | ||
436 | |||
437 | /***************************************************************************** | 156 | /***************************************************************************** |
438 | * XOR engine | 157 | * XOR engine |
439 | ****************************************************************************/ | 158 | ****************************************************************************/ |
440 | struct mv_xor_platform_shared_data orion5x_xor_shared_data = { | ||
441 | .dram = &orion5x_mbus_dram_info, | ||
442 | }; | ||
443 | |||
444 | static struct resource orion5x_xor_shared_resources[] = { | ||
445 | { | ||
446 | .name = "xor low", | ||
447 | .start = ORION5X_XOR_PHYS_BASE, | ||
448 | .end = ORION5X_XOR_PHYS_BASE + 0xff, | ||
449 | .flags = IORESOURCE_MEM, | ||
450 | }, { | ||
451 | .name = "xor high", | ||
452 | .start = ORION5X_XOR_PHYS_BASE + 0x200, | ||
453 | .end = ORION5X_XOR_PHYS_BASE + 0x2ff, | ||
454 | .flags = IORESOURCE_MEM, | ||
455 | }, | ||
456 | }; | ||
457 | |||
458 | static struct platform_device orion5x_xor_shared = { | ||
459 | .name = MV_XOR_SHARED_NAME, | ||
460 | .id = 0, | ||
461 | .dev = { | ||
462 | .platform_data = &orion5x_xor_shared_data, | ||
463 | }, | ||
464 | .num_resources = ARRAY_SIZE(orion5x_xor_shared_resources), | ||
465 | .resource = orion5x_xor_shared_resources, | ||
466 | }; | ||
467 | |||
468 | static u64 orion5x_xor_dmamask = DMA_BIT_MASK(32); | ||
469 | |||
470 | static struct resource orion5x_xor0_resources[] = { | ||
471 | [0] = { | ||
472 | .start = IRQ_ORION5X_XOR0, | ||
473 | .end = IRQ_ORION5X_XOR0, | ||
474 | .flags = IORESOURCE_IRQ, | ||
475 | }, | ||
476 | }; | ||
477 | |||
478 | static struct mv_xor_platform_data orion5x_xor0_data = { | ||
479 | .shared = &orion5x_xor_shared, | ||
480 | .hw_id = 0, | ||
481 | .pool_size = PAGE_SIZE, | ||
482 | }; | ||
483 | |||
484 | static struct platform_device orion5x_xor0_channel = { | ||
485 | .name = MV_XOR_NAME, | ||
486 | .id = 0, | ||
487 | .num_resources = ARRAY_SIZE(orion5x_xor0_resources), | ||
488 | .resource = orion5x_xor0_resources, | ||
489 | .dev = { | ||
490 | .dma_mask = &orion5x_xor_dmamask, | ||
491 | .coherent_dma_mask = DMA_BIT_MASK(64), | ||
492 | .platform_data = &orion5x_xor0_data, | ||
493 | }, | ||
494 | }; | ||
495 | |||
496 | static struct resource orion5x_xor1_resources[] = { | ||
497 | [0] = { | ||
498 | .start = IRQ_ORION5X_XOR1, | ||
499 | .end = IRQ_ORION5X_XOR1, | ||
500 | .flags = IORESOURCE_IRQ, | ||
501 | }, | ||
502 | }; | ||
503 | |||
504 | static struct mv_xor_platform_data orion5x_xor1_data = { | ||
505 | .shared = &orion5x_xor_shared, | ||
506 | .hw_id = 1, | ||
507 | .pool_size = PAGE_SIZE, | ||
508 | }; | ||
509 | |||
510 | static struct platform_device orion5x_xor1_channel = { | ||
511 | .name = MV_XOR_NAME, | ||
512 | .id = 1, | ||
513 | .num_resources = ARRAY_SIZE(orion5x_xor1_resources), | ||
514 | .resource = orion5x_xor1_resources, | ||
515 | .dev = { | ||
516 | .dma_mask = &orion5x_xor_dmamask, | ||
517 | .coherent_dma_mask = DMA_BIT_MASK(64), | ||
518 | .platform_data = &orion5x_xor1_data, | ||
519 | }, | ||
520 | }; | ||
521 | |||
522 | void __init orion5x_xor_init(void) | 159 | void __init orion5x_xor_init(void) |
523 | { | 160 | { |
524 | platform_device_register(&orion5x_xor_shared); | 161 | orion_xor0_init(&orion5x_mbus_dram_info, |
525 | 162 | ORION5X_XOR_PHYS_BASE, | |
526 | /* | 163 | ORION5X_XOR_PHYS_BASE + 0x200, |
527 | * two engines can't do memset simultaneously, this limitation | 164 | IRQ_ORION5X_XOR0, IRQ_ORION5X_XOR1); |
528 | * satisfied by removing memset support from one of the engines. | ||
529 | */ | ||
530 | dma_cap_set(DMA_MEMCPY, orion5x_xor0_data.cap_mask); | ||
531 | dma_cap_set(DMA_XOR, orion5x_xor0_data.cap_mask); | ||
532 | platform_device_register(&orion5x_xor0_channel); | ||
533 | |||
534 | dma_cap_set(DMA_MEMCPY, orion5x_xor1_data.cap_mask); | ||
535 | dma_cap_set(DMA_MEMSET, orion5x_xor1_data.cap_mask); | ||
536 | dma_cap_set(DMA_XOR, orion5x_xor1_data.cap_mask); | ||
537 | platform_device_register(&orion5x_xor1_channel); | ||
538 | } | 165 | } |
539 | 166 | ||
540 | static struct resource orion5x_crypto_res[] = { | 167 | /***************************************************************************** |
541 | { | 168 | * Cryptographic Engines and Security Accelerator (CESA) |
542 | .name = "regs", | 169 | ****************************************************************************/ |
543 | .start = ORION5X_CRYPTO_PHYS_BASE, | 170 | static void __init orion5x_crypto_init(void) |
544 | .end = ORION5X_CRYPTO_PHYS_BASE + 0xffff, | ||
545 | .flags = IORESOURCE_MEM, | ||
546 | }, { | ||
547 | .name = "sram", | ||
548 | .start = ORION5X_SRAM_PHYS_BASE, | ||
549 | .end = ORION5X_SRAM_PHYS_BASE + SZ_8K - 1, | ||
550 | .flags = IORESOURCE_MEM, | ||
551 | }, { | ||
552 | .name = "crypto interrupt", | ||
553 | .start = IRQ_ORION5X_CESA, | ||
554 | .end = IRQ_ORION5X_CESA, | ||
555 | .flags = IORESOURCE_IRQ, | ||
556 | }, | ||
557 | }; | ||
558 | |||
559 | static struct platform_device orion5x_crypto_device = { | ||
560 | .name = "mv_crypto", | ||
561 | .id = -1, | ||
562 | .num_resources = ARRAY_SIZE(orion5x_crypto_res), | ||
563 | .resource = orion5x_crypto_res, | ||
564 | }; | ||
565 | |||
566 | static int __init orion5x_crypto_init(void) | ||
567 | { | 171 | { |
568 | int ret; | 172 | int ret; |
569 | 173 | ||
570 | ret = orion5x_setup_sram_win(); | 174 | ret = orion5x_setup_sram_win(); |
571 | if (ret) | 175 | if (ret) |
572 | return ret; | 176 | return; |
573 | 177 | ||
574 | return platform_device_register(&orion5x_crypto_device); | 178 | orion_crypto_init(ORION5X_CRYPTO_PHYS_BASE, ORION5X_SRAM_PHYS_BASE, |
179 | SZ_8K, IRQ_ORION5X_CESA); | ||
575 | } | 180 | } |
576 | 181 | ||
577 | /***************************************************************************** | 182 | /***************************************************************************** |
578 | * Watchdog | 183 | * Watchdog |
579 | ****************************************************************************/ | 184 | ****************************************************************************/ |
580 | static struct orion_wdt_platform_data orion5x_wdt_data = { | ||
581 | .tclk = 0, | ||
582 | }; | ||
583 | |||
584 | static struct platform_device orion5x_wdt_device = { | ||
585 | .name = "orion_wdt", | ||
586 | .id = -1, | ||
587 | .dev = { | ||
588 | .platform_data = &orion5x_wdt_data, | ||
589 | }, | ||
590 | .num_resources = 0, | ||
591 | }; | ||
592 | |||
593 | void __init orion5x_wdt_init(void) | 185 | void __init orion5x_wdt_init(void) |
594 | { | 186 | { |
595 | orion5x_wdt_data.tclk = orion5x_tclk; | 187 | orion_wdt_init(orion5x_tclk); |
596 | platform_device_register(&orion5x_wdt_device); | ||
597 | } | 188 | } |
598 | 189 | ||
599 | 190 | ||
@@ -685,11 +276,6 @@ void __init orion5x_init(void) | |||
685 | orion5x_id(&dev, &rev, &dev_name); | 276 | orion5x_id(&dev, &rev, &dev_name); |
686 | printk(KERN_INFO "Orion ID: %s. TCLK=%d.\n", dev_name, orion5x_tclk); | 277 | printk(KERN_INFO "Orion ID: %s. TCLK=%d.\n", dev_name, orion5x_tclk); |
687 | 278 | ||
688 | orion5x_eth_shared_data.t_clk = orion5x_tclk; | ||
689 | orion5x_spi_plat_data.tclk = orion5x_tclk; | ||
690 | orion5x_uart0_data[0].uartclk = orion5x_tclk; | ||
691 | orion5x_uart1_data[0].uartclk = orion5x_tclk; | ||
692 | |||
693 | /* | 279 | /* |
694 | * Setup Orion address map | 280 | * Setup Orion address map |
695 | */ | 281 | */ |
diff --git a/arch/arm/mach-orion5x/d2net-setup.c b/arch/arm/mach-orion5x/d2net-setup.c index 425807579303..19cf5bf99f1b 100644 --- a/arch/arm/mach-orion5x/d2net-setup.c +++ b/arch/arm/mach-orion5x/d2net-setup.c | |||
@@ -267,28 +267,28 @@ static struct platform_device d2net_gpio_buttons = { | |||
267 | * General Setup | 267 | * General Setup |
268 | ****************************************************************************/ | 268 | ****************************************************************************/ |
269 | 269 | ||
270 | static struct orion5x_mpp_mode d2net_mpp_modes[] __initdata = { | 270 | static unsigned int d2net_mpp_modes[] __initdata = { |
271 | { 0, MPP_GPIO }, /* Board ID (bit 0) */ | 271 | MPP0_GPIO, /* Board ID (bit 0) */ |
272 | { 1, MPP_GPIO }, /* Board ID (bit 1) */ | 272 | MPP1_GPIO, /* Board ID (bit 1) */ |
273 | { 2, MPP_GPIO }, /* Board ID (bit 2) */ | 273 | MPP2_GPIO, /* Board ID (bit 2) */ |
274 | { 3, MPP_GPIO }, /* SATA 0 power */ | 274 | MPP3_GPIO, /* SATA 0 power */ |
275 | { 4, MPP_UNUSED }, | 275 | MPP4_UNUSED, |
276 | { 5, MPP_GPIO }, /* Fan fail detection */ | 276 | MPP5_GPIO, /* Fan fail detection */ |
277 | { 6, MPP_GPIO }, /* Red front LED */ | 277 | MPP6_GPIO, /* Red front LED */ |
278 | { 7, MPP_UNUSED }, | 278 | MPP7_UNUSED, |
279 | { 8, MPP_GPIO }, /* Rear power switch (on|auto) */ | 279 | MPP8_GPIO, /* Rear power switch (on|auto) */ |
280 | { 9, MPP_GPIO }, /* Rear power switch (auto|off) */ | 280 | MPP9_GPIO, /* Rear power switch (auto|off) */ |
281 | { 10, MPP_UNUSED }, | 281 | MPP10_UNUSED, |
282 | { 11, MPP_UNUSED }, | 282 | MPP11_UNUSED, |
283 | { 12, MPP_GPIO }, /* SATA 1 power */ | 283 | MPP12_GPIO, /* SATA 1 power */ |
284 | { 13, MPP_UNUSED }, | 284 | MPP13_UNUSED, |
285 | { 14, MPP_SATA_LED }, /* SATA 0 active */ | 285 | MPP14_SATA_LED, /* SATA 0 active */ |
286 | { 15, MPP_SATA_LED }, /* SATA 1 active */ | 286 | MPP15_SATA_LED, /* SATA 1 active */ |
287 | { 16, MPP_GPIO }, /* Blue front LED blink control */ | 287 | MPP16_GPIO, /* Blue front LED blink control */ |
288 | { 17, MPP_UNUSED }, | 288 | MPP17_UNUSED, |
289 | { 18, MPP_GPIO }, /* Front button (0 = Released, 1 = Pushed ) */ | 289 | MPP18_GPIO, /* Front button (0 = Released, 1 = Pushed ) */ |
290 | { 19, MPP_UNUSED }, | 290 | MPP19_UNUSED, |
291 | { -1 } | 291 | 0, |
292 | /* 22: USB port 1 fuse (0 = Fail, 1 = Ok) */ | 292 | /* 22: USB port 1 fuse (0 = Fail, 1 = Ok) */ |
293 | /* 23: Blue front LED off */ | 293 | /* 23: Blue front LED off */ |
294 | /* 24: Inhibit board power off (0 = Disabled, 1 = Enabled) */ | 294 | /* 24: Inhibit board power off (0 = Disabled, 1 = Enabled) */ |
diff --git a/arch/arm/mach-orion5x/db88f5281-setup.c b/arch/arm/mach-orion5x/db88f5281-setup.c index b7d4591214e0..f95d3cb01cbf 100644 --- a/arch/arm/mach-orion5x/db88f5281-setup.c +++ b/arch/arm/mach-orion5x/db88f5281-setup.c | |||
@@ -298,28 +298,28 @@ static struct i2c_board_info __initdata db88f5281_i2c_rtc = { | |||
298 | /***************************************************************************** | 298 | /***************************************************************************** |
299 | * General Setup | 299 | * General Setup |
300 | ****************************************************************************/ | 300 | ****************************************************************************/ |
301 | static struct orion5x_mpp_mode db88f5281_mpp_modes[] __initdata = { | 301 | static unsigned int db88f5281_mpp_modes[] __initdata = { |
302 | { 0, MPP_GPIO }, /* USB Over Current */ | 302 | MPP0_GPIO, /* USB Over Current */ |
303 | { 1, MPP_GPIO }, /* USB Vbat input */ | 303 | MPP1_GPIO, /* USB Vbat input */ |
304 | { 2, MPP_PCI_ARB }, /* PCI_REQn[2] */ | 304 | MPP2_PCI_ARB, /* PCI_REQn[2] */ |
305 | { 3, MPP_PCI_ARB }, /* PCI_GNTn[2] */ | 305 | MPP3_PCI_ARB, /* PCI_GNTn[2] */ |
306 | { 4, MPP_PCI_ARB }, /* PCI_REQn[3] */ | 306 | MPP4_PCI_ARB, /* PCI_REQn[3] */ |
307 | { 5, MPP_PCI_ARB }, /* PCI_GNTn[3] */ | 307 | MPP5_PCI_ARB, /* PCI_GNTn[3] */ |
308 | { 6, MPP_GPIO }, /* JP0, CON17.2 */ | 308 | MPP6_GPIO, /* JP0, CON17.2 */ |
309 | { 7, MPP_GPIO }, /* JP1, CON17.1 */ | 309 | MPP7_GPIO, /* JP1, CON17.1 */ |
310 | { 8, MPP_GPIO }, /* JP2, CON11.2 */ | 310 | MPP8_GPIO, /* JP2, CON11.2 */ |
311 | { 9, MPP_GPIO }, /* JP3, CON11.3 */ | 311 | MPP9_GPIO, /* JP3, CON11.3 */ |
312 | { 10, MPP_GPIO }, /* RTC int */ | 312 | MPP10_GPIO, /* RTC int */ |
313 | { 11, MPP_GPIO }, /* Baud Rate Generator */ | 313 | MPP11_GPIO, /* Baud Rate Generator */ |
314 | { 12, MPP_GPIO }, /* PCI int 1 */ | 314 | MPP12_GPIO, /* PCI int 1 */ |
315 | { 13, MPP_GPIO }, /* PCI int 2 */ | 315 | MPP13_GPIO, /* PCI int 2 */ |
316 | { 14, MPP_NAND }, /* NAND_REn[2] */ | 316 | MPP14_NAND, /* NAND_REn[2] */ |
317 | { 15, MPP_NAND }, /* NAND_WEn[2] */ | 317 | MPP15_NAND, /* NAND_WEn[2] */ |
318 | { 16, MPP_UART }, /* UART1_RX */ | 318 | MPP16_UART, /* UART1_RX */ |
319 | { 17, MPP_UART }, /* UART1_TX */ | 319 | MPP17_UART, /* UART1_TX */ |
320 | { 18, MPP_UART }, /* UART1_CTSn */ | 320 | MPP18_UART, /* UART1_CTSn */ |
321 | { 19, MPP_UART }, /* UART1_RTSn */ | 321 | MPP19_UART, /* UART1_RTSn */ |
322 | { -1 }, | 322 | 0, |
323 | }; | 323 | }; |
324 | 324 | ||
325 | static void __init db88f5281_init(void) | 325 | static void __init db88f5281_init(void) |
diff --git a/arch/arm/mach-orion5x/dns323-setup.c b/arch/arm/mach-orion5x/dns323-setup.c index 90ab022eabeb..855e0e77d563 100644 --- a/arch/arm/mach-orion5x/dns323-setup.c +++ b/arch/arm/mach-orion5x/dns323-setup.c | |||
@@ -385,76 +385,76 @@ static struct mv_sata_platform_data dns323_sata_data = { | |||
385 | /**************************************************************************** | 385 | /**************************************************************************** |
386 | * General Setup | 386 | * General Setup |
387 | */ | 387 | */ |
388 | static struct orion5x_mpp_mode dns323a_mpp_modes[] __initdata = { | 388 | static unsigned int dns323a_mpp_modes[] __initdata = { |
389 | { 0, MPP_PCIE_RST_OUTn }, | 389 | MPP0_PCIE_RST_OUTn, |
390 | { 1, MPP_GPIO }, /* right amber LED (sata ch0) */ | 390 | MPP1_GPIO, /* right amber LED (sata ch0) */ |
391 | { 2, MPP_GPIO }, /* left amber LED (sata ch1) */ | 391 | MPP2_GPIO, /* left amber LED (sata ch1) */ |
392 | { 3, MPP_UNUSED }, | 392 | MPP3_UNUSED, |
393 | { 4, MPP_GPIO }, /* power button LED */ | 393 | MPP4_GPIO, /* power button LED */ |
394 | { 5, MPP_GPIO }, /* power button LED */ | 394 | MPP5_GPIO, /* power button LED */ |
395 | { 6, MPP_GPIO }, /* GMT G751-2f overtemp */ | 395 | MPP6_GPIO, /* GMT G751-2f overtemp */ |
396 | { 7, MPP_GPIO }, /* M41T80 nIRQ/OUT/SQW */ | 396 | MPP7_GPIO, /* M41T80 nIRQ/OUT/SQW */ |
397 | { 8, MPP_GPIO }, /* triggers power off */ | 397 | MPP8_GPIO, /* triggers power off */ |
398 | { 9, MPP_GPIO }, /* power button switch */ | 398 | MPP9_GPIO, /* power button switch */ |
399 | { 10, MPP_GPIO }, /* reset button switch */ | 399 | MPP10_GPIO, /* reset button switch */ |
400 | { 11, MPP_UNUSED }, | 400 | MPP11_UNUSED, |
401 | { 12, MPP_UNUSED }, | 401 | MPP12_UNUSED, |
402 | { 13, MPP_UNUSED }, | 402 | MPP13_UNUSED, |
403 | { 14, MPP_UNUSED }, | 403 | MPP14_UNUSED, |
404 | { 15, MPP_UNUSED }, | 404 | MPP15_UNUSED, |
405 | { 16, MPP_UNUSED }, | 405 | MPP16_UNUSED, |
406 | { 17, MPP_UNUSED }, | 406 | MPP17_UNUSED, |
407 | { 18, MPP_UNUSED }, | 407 | MPP18_UNUSED, |
408 | { 19, MPP_UNUSED }, | 408 | MPP19_UNUSED, |
409 | { -1 }, | 409 | 0, |
410 | }; | 410 | }; |
411 | 411 | ||
412 | static struct orion5x_mpp_mode dns323b_mpp_modes[] __initdata = { | 412 | static unsigned int dns323b_mpp_modes[] __initdata = { |
413 | { 0, MPP_UNUSED }, | 413 | MPP0_UNUSED, |
414 | { 1, MPP_GPIO }, /* right amber LED (sata ch0) */ | 414 | MPP1_GPIO, /* right amber LED (sata ch0) */ |
415 | { 2, MPP_GPIO }, /* left amber LED (sata ch1) */ | 415 | MPP2_GPIO, /* left amber LED (sata ch1) */ |
416 | { 3, MPP_GPIO }, /* system up flag */ | 416 | MPP3_GPIO, /* system up flag */ |
417 | { 4, MPP_GPIO }, /* power button LED */ | 417 | MPP4_GPIO, /* power button LED */ |
418 | { 5, MPP_GPIO }, /* power button LED */ | 418 | MPP5_GPIO, /* power button LED */ |
419 | { 6, MPP_GPIO }, /* GMT G751-2f overtemp */ | 419 | MPP6_GPIO, /* GMT G751-2f overtemp */ |
420 | { 7, MPP_GPIO }, /* M41T80 nIRQ/OUT/SQW */ | 420 | MPP7_GPIO, /* M41T80 nIRQ/OUT/SQW */ |
421 | { 8, MPP_GPIO }, /* triggers power off */ | 421 | MPP8_GPIO, /* triggers power off */ |
422 | { 9, MPP_GPIO }, /* power button switch */ | 422 | MPP9_GPIO, /* power button switch */ |
423 | { 10, MPP_GPIO }, /* reset button switch */ | 423 | MPP10_GPIO, /* reset button switch */ |
424 | { 11, MPP_UNUSED }, | 424 | MPP11_UNUSED, |
425 | { 12, MPP_SATA_LED }, | 425 | MPP12_SATA_LED, |
426 | { 13, MPP_SATA_LED }, | 426 | MPP13_SATA_LED, |
427 | { 14, MPP_SATA_LED }, | 427 | MPP14_SATA_LED, |
428 | { 15, MPP_SATA_LED }, | 428 | MPP15_SATA_LED, |
429 | { 16, MPP_UNUSED }, | 429 | MPP16_UNUSED, |
430 | { 17, MPP_UNUSED }, | 430 | MPP17_UNUSED, |
431 | { 18, MPP_UNUSED }, | 431 | MPP18_UNUSED, |
432 | { 19, MPP_UNUSED }, | 432 | MPP19_UNUSED, |
433 | { -1 }, | 433 | 0, |
434 | }; | 434 | }; |
435 | 435 | ||
436 | static struct orion5x_mpp_mode dns323c_mpp_modes[] __initdata = { | 436 | static unsigned int dns323c_mpp_modes[] __initdata = { |
437 | { 0, MPP_GPIO }, /* ? input */ | 437 | MPP0_GPIO, /* ? input */ |
438 | { 1, MPP_GPIO }, /* input power switch (0 = pressed) */ | 438 | MPP1_GPIO, /* input power switch (0 = pressed) */ |
439 | { 2, MPP_GPIO }, /* output power off */ | 439 | MPP2_GPIO, /* output power off */ |
440 | { 3, MPP_UNUSED }, /* ? output */ | 440 | MPP3_UNUSED, /* ? output */ |
441 | { 4, MPP_UNUSED }, /* ? output */ | 441 | MPP4_UNUSED, /* ? output */ |
442 | { 5, MPP_UNUSED }, /* ? output */ | 442 | MPP5_UNUSED, /* ? output */ |
443 | { 6, MPP_UNUSED }, /* ? output */ | 443 | MPP6_UNUSED, /* ? output */ |
444 | { 7, MPP_UNUSED }, /* ? output */ | 444 | MPP7_UNUSED, /* ? output */ |
445 | { 8, MPP_GPIO }, /* i/o right amber LED */ | 445 | MPP8_GPIO, /* i/o right amber LED */ |
446 | { 9, MPP_GPIO }, /* i/o left amber LED */ | 446 | MPP9_GPIO, /* i/o left amber LED */ |
447 | { 10, MPP_GPIO }, /* input */ | 447 | MPP10_GPIO, /* input */ |
448 | { 11, MPP_UNUSED }, | 448 | MPP11_UNUSED, |
449 | { 12, MPP_SATA_LED }, | 449 | MPP12_SATA_LED, |
450 | { 13, MPP_SATA_LED }, | 450 | MPP13_SATA_LED, |
451 | { 14, MPP_SATA_LED }, | 451 | MPP14_SATA_LED, |
452 | { 15, MPP_SATA_LED }, | 452 | MPP15_SATA_LED, |
453 | { 16, MPP_UNUSED }, | 453 | MPP16_UNUSED, |
454 | { 17, MPP_GPIO }, /* power button LED */ | 454 | MPP17_GPIO, /* power button LED */ |
455 | { 18, MPP_GPIO }, /* fan speed bit 0 */ | 455 | MPP18_GPIO, /* fan speed bit 0 */ |
456 | { 19, MPP_GPIO }, /* fan speed bit 1 */ | 456 | MPP19_GPIO, /* fan speed bit 1 */ |
457 | { -1 }, | 457 | 0, |
458 | }; | 458 | }; |
459 | 459 | ||
460 | /* Rev C1 Fan speed notes: | 460 | /* Rev C1 Fan speed notes: |
diff --git a/arch/arm/mach-orion5x/edmini_v2-setup.c b/arch/arm/mach-orion5x/edmini_v2-setup.c index d037a90c216c..b67cff0d4cfe 100644 --- a/arch/arm/mach-orion5x/edmini_v2-setup.c +++ b/arch/arm/mach-orion5x/edmini_v2-setup.c | |||
@@ -180,31 +180,31 @@ static struct platform_device edmini_v2_gpio_buttons = { | |||
180 | /***************************************************************************** | 180 | /***************************************************************************** |
181 | * General Setup | 181 | * General Setup |
182 | ****************************************************************************/ | 182 | ****************************************************************************/ |
183 | static struct orion5x_mpp_mode edminiv2_mpp_modes[] __initdata = { | 183 | static unsigned int edminiv2_mpp_modes[] __initdata = { |
184 | { 0, MPP_UNUSED }, | 184 | MPP0_UNUSED, |
185 | { 1, MPP_UNUSED }, | 185 | MPP1_UNUSED, |
186 | { 2, MPP_UNUSED }, | 186 | MPP2_UNUSED, |
187 | { 3, MPP_GPIO }, /* RTC interrupt */ | 187 | MPP3_GPIO, /* RTC interrupt */ |
188 | { 4, MPP_UNUSED }, | 188 | MPP4_UNUSED, |
189 | { 5, MPP_UNUSED }, | 189 | MPP5_UNUSED, |
190 | { 6, MPP_UNUSED }, | 190 | MPP6_UNUSED, |
191 | { 7, MPP_UNUSED }, | 191 | MPP7_UNUSED, |
192 | { 8, MPP_UNUSED }, | 192 | MPP8_UNUSED, |
193 | { 9, MPP_UNUSED }, | 193 | MPP9_UNUSED, |
194 | { 10, MPP_UNUSED }, | 194 | MPP10_UNUSED, |
195 | { 11, MPP_UNUSED }, | 195 | MPP11_UNUSED, |
196 | { 12, MPP_SATA_LED }, /* SATA 0 presence */ | 196 | MPP12_SATA_LED, /* SATA 0 presence */ |
197 | { 13, MPP_SATA_LED }, /* SATA 1 presence */ | 197 | MPP13_SATA_LED, /* SATA 1 presence */ |
198 | { 14, MPP_SATA_LED }, /* SATA 0 active */ | 198 | MPP14_SATA_LED, /* SATA 0 active */ |
199 | { 15, MPP_SATA_LED }, /* SATA 1 active */ | 199 | MPP15_SATA_LED, /* SATA 1 active */ |
200 | /* 16: Power LED control (0 = On, 1 = Off) */ | 200 | /* 16: Power LED control (0 = On, 1 = Off) */ |
201 | { 16, MPP_GPIO }, | 201 | MPP16_GPIO, |
202 | /* 17: Power LED control select (0 = CPLD, 1 = GPIO16) */ | 202 | /* 17: Power LED control select (0 = CPLD, 1 = GPIO16) */ |
203 | { 17, MPP_GPIO }, | 203 | MPP17_GPIO, |
204 | /* 18: Power button status (0 = Released, 1 = Pressed) */ | 204 | /* 18: Power button status (0 = Released, 1 = Pressed) */ |
205 | { 18, MPP_GPIO }, | 205 | MPP18_GPIO, |
206 | { 19, MPP_UNUSED }, | 206 | MPP19_UNUSED, |
207 | { -1 } | 207 | 0, |
208 | }; | 208 | }; |
209 | 209 | ||
210 | static void __init edmini_v2_init(void) | 210 | static void __init edmini_v2_init(void) |
diff --git a/arch/arm/mach-orion5x/kurobox_pro-setup.c b/arch/arm/mach-orion5x/kurobox_pro-setup.c index 47497c76162a..c0eb6462633f 100644 --- a/arch/arm/mach-orion5x/kurobox_pro-setup.c +++ b/arch/arm/mach-orion5x/kurobox_pro-setup.c | |||
@@ -315,28 +315,28 @@ static void kurobox_pro_power_off(void) | |||
315 | /***************************************************************************** | 315 | /***************************************************************************** |
316 | * General Setup | 316 | * General Setup |
317 | ****************************************************************************/ | 317 | ****************************************************************************/ |
318 | static struct orion5x_mpp_mode kurobox_pro_mpp_modes[] __initdata = { | 318 | static unsigned int kurobox_pro_mpp_modes[] __initdata = { |
319 | { 0, MPP_UNUSED }, | 319 | MPP0_UNUSED, |
320 | { 1, MPP_UNUSED }, | 320 | MPP1_UNUSED, |
321 | { 2, MPP_GPIO }, /* GPIO Micon */ | 321 | MPP2_GPIO, /* GPIO Micon */ |
322 | { 3, MPP_GPIO }, /* GPIO Rtc */ | 322 | MPP3_GPIO, /* GPIO Rtc */ |
323 | { 4, MPP_UNUSED }, | 323 | MPP4_UNUSED, |
324 | { 5, MPP_UNUSED }, | 324 | MPP5_UNUSED, |
325 | { 6, MPP_NAND }, /* NAND Flash REn */ | 325 | MPP6_NAND, /* NAND Flash REn */ |
326 | { 7, MPP_NAND }, /* NAND Flash WEn */ | 326 | MPP7_NAND, /* NAND Flash WEn */ |
327 | { 8, MPP_UNUSED }, | 327 | MPP8_UNUSED, |
328 | { 9, MPP_UNUSED }, | 328 | MPP9_UNUSED, |
329 | { 10, MPP_UNUSED }, | 329 | MPP10_UNUSED, |
330 | { 11, MPP_UNUSED }, | 330 | MPP11_UNUSED, |
331 | { 12, MPP_SATA_LED }, /* SATA 0 presence */ | 331 | MPP12_SATA_LED, /* SATA 0 presence */ |
332 | { 13, MPP_SATA_LED }, /* SATA 1 presence */ | 332 | MPP13_SATA_LED, /* SATA 1 presence */ |
333 | { 14, MPP_SATA_LED }, /* SATA 0 active */ | 333 | MPP14_SATA_LED, /* SATA 0 active */ |
334 | { 15, MPP_SATA_LED }, /* SATA 1 active */ | 334 | MPP15_SATA_LED, /* SATA 1 active */ |
335 | { 16, MPP_UART }, /* UART1 RXD */ | 335 | MPP16_UART, /* UART1 RXD */ |
336 | { 17, MPP_UART }, /* UART1 TXD */ | 336 | MPP17_UART, /* UART1 TXD */ |
337 | { 18, MPP_UART }, /* UART1 CTSn */ | 337 | MPP18_UART, /* UART1 CTSn */ |
338 | { 19, MPP_UART }, /* UART1 RTSn */ | 338 | MPP19_UART, /* UART1 RTSn */ |
339 | { -1 }, | 339 | 0, |
340 | }; | 340 | }; |
341 | 341 | ||
342 | static void __init kurobox_pro_init(void) | 342 | static void __init kurobox_pro_init(void) |
diff --git a/arch/arm/mach-orion5x/ls-chl-setup.c b/arch/arm/mach-orion5x/ls-chl-setup.c index 6ae12aa6d759..5065803ca82a 100644 --- a/arch/arm/mach-orion5x/ls-chl-setup.c +++ b/arch/arm/mach-orion5x/ls-chl-setup.c | |||
@@ -251,28 +251,28 @@ static struct platform_device lschl_fan_device = { | |||
251 | * GPIO Data | 251 | * GPIO Data |
252 | ****************************************************************************/ | 252 | ****************************************************************************/ |
253 | 253 | ||
254 | static struct orion5x_mpp_mode lschl_mpp_modes[] __initdata = { | 254 | static unsigned int lschl_mpp_modes[] __initdata = { |
255 | { 0, MPP_GPIO }, /* LED POWER */ | 255 | MPP0_GPIO, /* LED POWER */ |
256 | { 1, MPP_GPIO }, /* HDD POWER */ | 256 | MPP1_GPIO, /* HDD POWER */ |
257 | { 2, MPP_GPIO }, /* LED ALARM */ | 257 | MPP2_GPIO, /* LED ALARM */ |
258 | { 3, MPP_GPIO }, /* LED INFO */ | 258 | MPP3_GPIO, /* LED INFO */ |
259 | { 4, MPP_UNUSED }, | 259 | MPP4_UNUSED, |
260 | { 5, MPP_UNUSED }, | 260 | MPP5_UNUSED, |
261 | { 6, MPP_GPIO }, /* FAN LOCK */ | 261 | MPP6_GPIO, /* FAN LOCK */ |
262 | { 7, MPP_GPIO }, /* SW INIT */ | 262 | MPP7_GPIO, /* SW INIT */ |
263 | { 8, MPP_GPIO }, /* SW POWER */ | 263 | MPP8_GPIO, /* SW POWER */ |
264 | { 9, MPP_GPIO }, /* USB POWER */ | 264 | MPP9_GPIO, /* USB POWER */ |
265 | { 10, MPP_GPIO }, /* SW AUTO POWER */ | 265 | MPP10_GPIO, /* SW AUTO POWER */ |
266 | { 11, MPP_UNUSED }, | 266 | MPP11_UNUSED, |
267 | { 12, MPP_UNUSED }, | 267 | MPP12_UNUSED, |
268 | { 13, MPP_UNUSED }, | 268 | MPP13_UNUSED, |
269 | { 14, MPP_GPIO }, /* FAN HIGH */ | 269 | MPP14_GPIO, /* FAN HIGH */ |
270 | { 15, MPP_GPIO }, /* SW FUNC */ | 270 | MPP15_GPIO, /* SW FUNC */ |
271 | { 16, MPP_GPIO }, /* FAN LOW */ | 271 | MPP16_GPIO, /* FAN LOW */ |
272 | { 17, MPP_GPIO }, /* LED FUNC */ | 272 | MPP17_GPIO, /* LED FUNC */ |
273 | { 18, MPP_UNUSED }, | 273 | MPP18_UNUSED, |
274 | { 19, MPP_UNUSED }, | 274 | MPP19_UNUSED, |
275 | { -1 }, | 275 | 0, |
276 | }; | 276 | }; |
277 | 277 | ||
278 | static void __init lschl_init(void) | 278 | static void __init lschl_init(void) |
diff --git a/arch/arm/mach-orion5x/ls_hgl-setup.c b/arch/arm/mach-orion5x/ls_hgl-setup.c index 7adafd79cf98..8503d0a42d41 100644 --- a/arch/arm/mach-orion5x/ls_hgl-setup.c +++ b/arch/arm/mach-orion5x/ls_hgl-setup.c | |||
@@ -200,28 +200,28 @@ static void ls_hgl_power_off(void) | |||
200 | 200 | ||
201 | #define LS_HGL_GPIO_HDD_POWER 1 | 201 | #define LS_HGL_GPIO_HDD_POWER 1 |
202 | 202 | ||
203 | static struct orion5x_mpp_mode ls_hgl_mpp_modes[] __initdata = { | 203 | static unsigned int ls_hgl_mpp_modes[] __initdata = { |
204 | { 0, MPP_GPIO }, /* LED_PWR */ | 204 | MPP0_GPIO, /* LED_PWR */ |
205 | { 1, MPP_GPIO }, /* HDD_PWR */ | 205 | MPP1_GPIO, /* HDD_PWR */ |
206 | { 2, MPP_GPIO }, /* LED_ALARM */ | 206 | MPP2_GPIO, /* LED_ALARM */ |
207 | { 3, MPP_GPIO }, /* LED_INFO */ | 207 | MPP3_GPIO, /* LED_INFO */ |
208 | { 4, MPP_UNUSED }, | 208 | MPP4_UNUSED, |
209 | { 5, MPP_UNUSED }, | 209 | MPP5_UNUSED, |
210 | { 6, MPP_GPIO }, /* FAN_LCK */ | 210 | MPP6_GPIO, /* FAN_LCK */ |
211 | { 7, MPP_GPIO }, /* INIT */ | 211 | MPP7_GPIO, /* INIT */ |
212 | { 8, MPP_GPIO }, /* POWER */ | 212 | MPP8_GPIO, /* POWER */ |
213 | { 9, MPP_GPIO }, /* USB_PWR */ | 213 | MPP9_GPIO, /* USB_PWR */ |
214 | { 10, MPP_GPIO }, /* AUTO_POWER */ | 214 | MPP10_GPIO, /* AUTO_POWER */ |
215 | { 11, MPP_UNUSED }, /* LED_ETH (dummy) */ | 215 | MPP11_UNUSED, /* LED_ETH (dummy) */ |
216 | { 12, MPP_UNUSED }, | 216 | MPP12_UNUSED, |
217 | { 13, MPP_UNUSED }, | 217 | MPP13_UNUSED, |
218 | { 14, MPP_UNUSED }, | 218 | MPP14_UNUSED, |
219 | { 15, MPP_GPIO }, /* FUNC */ | 219 | MPP15_GPIO, /* FUNC */ |
220 | { 16, MPP_UNUSED }, | 220 | MPP16_UNUSED, |
221 | { 17, MPP_GPIO }, /* LED_FUNC */ | 221 | MPP17_GPIO, /* LED_FUNC */ |
222 | { 18, MPP_UNUSED }, | 222 | MPP18_UNUSED, |
223 | { 19, MPP_UNUSED }, | 223 | MPP19_UNUSED, |
224 | { -1 }, | 224 | 0, |
225 | }; | 225 | }; |
226 | 226 | ||
227 | static void __init ls_hgl_init(void) | 227 | static void __init ls_hgl_init(void) |
diff --git a/arch/arm/mach-orion5x/lsmini-setup.c b/arch/arm/mach-orion5x/lsmini-setup.c index 869958f5c394..9c82723c05c0 100644 --- a/arch/arm/mach-orion5x/lsmini-setup.c +++ b/arch/arm/mach-orion5x/lsmini-setup.c | |||
@@ -201,28 +201,28 @@ static void lsmini_power_off(void) | |||
201 | #define LSMINI_GPIO_HDD_POWER0 1 | 201 | #define LSMINI_GPIO_HDD_POWER0 1 |
202 | #define LSMINI_GPIO_HDD_POWER1 19 | 202 | #define LSMINI_GPIO_HDD_POWER1 19 |
203 | 203 | ||
204 | static struct orion5x_mpp_mode lsmini_mpp_modes[] __initdata = { | 204 | static unsigned int lsmini_mpp_modes[] __initdata = { |
205 | { 0, MPP_UNUSED }, /* LED_RESERVE1 (unused) */ | 205 | MPP0_UNUSED, /* LED_RESERVE1 (unused) */ |
206 | { 1, MPP_GPIO }, /* HDD_PWR */ | 206 | MPP1_GPIO, /* HDD_PWR */ |
207 | { 2, MPP_GPIO }, /* LED_ALARM */ | 207 | MPP2_GPIO, /* LED_ALARM */ |
208 | { 3, MPP_GPIO }, /* LED_INFO */ | 208 | MPP3_GPIO, /* LED_INFO */ |
209 | { 4, MPP_UNUSED }, | 209 | MPP4_UNUSED, |
210 | { 5, MPP_UNUSED }, | 210 | MPP5_UNUSED, |
211 | { 6, MPP_UNUSED }, | 211 | MPP6_UNUSED, |
212 | { 7, MPP_UNUSED }, | 212 | MPP7_UNUSED, |
213 | { 8, MPP_UNUSED }, | 213 | MPP8_UNUSED, |
214 | { 9, MPP_GPIO }, /* LED_FUNC */ | 214 | MPP9_GPIO, /* LED_FUNC */ |
215 | { 10, MPP_UNUSED }, | 215 | MPP10_UNUSED, |
216 | { 11, MPP_UNUSED }, /* LED_ETH (dummy) */ | 216 | MPP11_UNUSED, /* LED_ETH (dummy) */ |
217 | { 12, MPP_UNUSED }, | 217 | MPP12_UNUSED, |
218 | { 13, MPP_UNUSED }, | 218 | MPP13_UNUSED, |
219 | { 14, MPP_GPIO }, /* LED_PWR */ | 219 | MPP14_GPIO, /* LED_PWR */ |
220 | { 15, MPP_GPIO }, /* FUNC */ | 220 | MPP15_GPIO, /* FUNC */ |
221 | { 16, MPP_GPIO }, /* USB_PWR */ | 221 | MPP16_GPIO, /* USB_PWR */ |
222 | { 17, MPP_GPIO }, /* AUTO_POWER */ | 222 | MPP17_GPIO, /* AUTO_POWER */ |
223 | { 18, MPP_GPIO }, /* POWER */ | 223 | MPP18_GPIO, /* POWER */ |
224 | { 19, MPP_GPIO }, /* HDD_PWR1 */ | 224 | MPP19_GPIO, /* HDD_PWR1 */ |
225 | { -1 }, | 225 | 0, |
226 | }; | 226 | }; |
227 | 227 | ||
228 | static void __init lsmini_init(void) | 228 | static void __init lsmini_init(void) |
diff --git a/arch/arm/mach-orion5x/mpp.c b/arch/arm/mach-orion5x/mpp.c index 2288207726e4..f12c41b98d46 100644 --- a/arch/arm/mach-orion5x/mpp.c +++ b/arch/arm/mach-orion5x/mpp.c | |||
@@ -12,154 +12,34 @@ | |||
12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
13 | #include <linux/mbus.h> | 13 | #include <linux/mbus.h> |
14 | #include <linux/io.h> | 14 | #include <linux/io.h> |
15 | #include <asm/gpio.h> | ||
16 | #include <mach/hardware.h> | 15 | #include <mach/hardware.h> |
17 | #include "common.h" | 16 | #include <plat/mpp.h> |
18 | #include "mpp.h" | 17 | #include "mpp.h" |
18 | #include "common.h" | ||
19 | 19 | ||
20 | static int is_5181l(void) | 20 | static unsigned int __init orion5x_variant(void) |
21 | { | ||
22 | u32 dev; | ||
23 | u32 rev; | ||
24 | |||
25 | orion5x_pcie_id(&dev, &rev); | ||
26 | |||
27 | return !!(dev == MV88F5181_DEV_ID && rev >= MV88F5181L_REV_A0); | ||
28 | } | ||
29 | |||
30 | static int is_5182(void) | ||
31 | { | 21 | { |
32 | u32 dev; | 22 | u32 dev; |
33 | u32 rev; | 23 | u32 rev; |
34 | 24 | ||
35 | orion5x_pcie_id(&dev, &rev); | 25 | orion5x_pcie_id(&dev, &rev); |
36 | 26 | ||
37 | return !!(dev == MV88F5182_DEV_ID); | 27 | if (dev == MV88F5181_DEV_ID && rev >= MV88F5181L_REV_A0) |
38 | } | 28 | return MPP_F5181_MASK; |
39 | 29 | ||
40 | static int is_5281(void) | 30 | if (dev == MV88F5182_DEV_ID) |
41 | { | 31 | return MPP_F5182_MASK; |
42 | u32 dev; | ||
43 | u32 rev; | ||
44 | 32 | ||
45 | orion5x_pcie_id(&dev, &rev); | 33 | if (dev == MV88F5281_DEV_ID) |
34 | return MPP_F5281_MASK; | ||
46 | 35 | ||
47 | return !!(dev == MV88F5281_DEV_ID); | 36 | printk(KERN_ERR "MPP setup: unknown orion5x variant " |
37 | "(dev %#x rev %#x)\n", dev, rev); | ||
38 | return 0; | ||
48 | } | 39 | } |
49 | 40 | ||
50 | static int __init determine_type_encoding(int mpp, enum orion5x_mpp_type type) | 41 | void __init orion5x_mpp_conf(unsigned int *mpp_list) |
51 | { | 42 | { |
52 | switch (type) { | 43 | orion_mpp_conf(mpp_list, orion5x_variant(), |
53 | case MPP_UNUSED: | 44 | MPP_MAX, ORION5X_DEV_BUS_VIRT_BASE); |
54 | case MPP_GPIO: | ||
55 | if (mpp == 0) | ||
56 | return 3; | ||
57 | if (mpp >= 1 && mpp <= 15) | ||
58 | return 0; | ||
59 | if (mpp >= 16 && mpp <= 19) { | ||
60 | if (is_5182()) | ||
61 | return 5; | ||
62 | if (type == MPP_UNUSED) | ||
63 | return 0; | ||
64 | } | ||
65 | return -1; | ||
66 | |||
67 | case MPP_PCIE_RST_OUTn: | ||
68 | if (mpp == 0) | ||
69 | return 0; | ||
70 | return -1; | ||
71 | |||
72 | case MPP_PCI_ARB: | ||
73 | if (mpp >= 0 && mpp <= 7) | ||
74 | return 2; | ||
75 | return -1; | ||
76 | |||
77 | case MPP_PCI_PMEn: | ||
78 | if (mpp == 2) | ||
79 | return 3; | ||
80 | return -1; | ||
81 | |||
82 | case MPP_GIGE: | ||
83 | if (mpp >= 8 && mpp <= 19) | ||
84 | return 1; | ||
85 | return -1; | ||
86 | |||
87 | case MPP_NAND: | ||
88 | if (is_5182() || is_5281()) { | ||
89 | if (mpp >= 4 && mpp <= 7) | ||
90 | return 4; | ||
91 | if (mpp >= 12 && mpp <= 17) | ||
92 | return 4; | ||
93 | } | ||
94 | return -1; | ||
95 | |||
96 | case MPP_PCI_CLK: | ||
97 | if (is_5181l() && mpp >= 6 && mpp <= 7) | ||
98 | return 5; | ||
99 | return -1; | ||
100 | |||
101 | case MPP_SATA_LED: | ||
102 | if (is_5182()) { | ||
103 | if (mpp >= 4 && mpp <= 7) | ||
104 | return 5; | ||
105 | if (mpp >= 12 && mpp <= 15) | ||
106 | return 5; | ||
107 | } | ||
108 | return -1; | ||
109 | |||
110 | case MPP_UART: | ||
111 | if (mpp >= 16 && mpp <= 19) | ||
112 | return 0; | ||
113 | return -1; | ||
114 | } | ||
115 | |||
116 | printk(KERN_INFO "unknown MPP type %d\n", type); | ||
117 | |||
118 | return -1; | ||
119 | } | ||
120 | |||
121 | void __init orion5x_mpp_conf(struct orion5x_mpp_mode *mode) | ||
122 | { | ||
123 | u32 mpp_0_7_ctrl = readl(MPP_0_7_CTRL); | ||
124 | u32 mpp_8_15_ctrl = readl(MPP_8_15_CTRL); | ||
125 | u32 mpp_16_19_ctrl = readl(MPP_16_19_CTRL); | ||
126 | |||
127 | for ( ; mode->mpp >= 0; mode++) { | ||
128 | u32 *reg; | ||
129 | int num_type; | ||
130 | int shift; | ||
131 | |||
132 | if (mode->mpp >= 0 && mode->mpp <= 7) | ||
133 | reg = &mpp_0_7_ctrl; | ||
134 | else if (mode->mpp >= 8 && mode->mpp <= 15) | ||
135 | reg = &mpp_8_15_ctrl; | ||
136 | else if (mode->mpp >= 16 && mode->mpp <= 19) | ||
137 | reg = &mpp_16_19_ctrl; | ||
138 | else { | ||
139 | printk(KERN_ERR "orion5x_mpp_conf: invalid MPP " | ||
140 | "(%d)\n", mode->mpp); | ||
141 | continue; | ||
142 | } | ||
143 | |||
144 | num_type = determine_type_encoding(mode->mpp, mode->type); | ||
145 | if (num_type < 0) { | ||
146 | printk(KERN_ERR "orion5x_mpp_conf: invalid MPP " | ||
147 | "combination (%d, %d)\n", mode->mpp, | ||
148 | mode->type); | ||
149 | continue; | ||
150 | } | ||
151 | |||
152 | shift = (mode->mpp & 7) << 2; | ||
153 | *reg &= ~(0xf << shift); | ||
154 | *reg |= (num_type & 0xf) << shift; | ||
155 | |||
156 | if (mode->type == MPP_UNUSED && (mode->mpp < 16 || is_5182())) | ||
157 | orion_gpio_set_unused(mode->mpp); | ||
158 | |||
159 | orion_gpio_set_valid(mode->mpp, !!(mode->type == MPP_GPIO)); | ||
160 | } | ||
161 | |||
162 | writel(mpp_0_7_ctrl, MPP_0_7_CTRL); | ||
163 | writel(mpp_8_15_ctrl, MPP_8_15_CTRL); | ||
164 | writel(mpp_16_19_ctrl, MPP_16_19_CTRL); | ||
165 | } | 45 | } |
diff --git a/arch/arm/mach-orion5x/mpp.h b/arch/arm/mach-orion5x/mpp.h index 290e610dc012..eac68978a2c2 100644 --- a/arch/arm/mach-orion5x/mpp.h +++ b/arch/arm/mach-orion5x/mpp.h | |||
@@ -1,74 +1,129 @@ | |||
1 | #ifndef __ARCH_ORION5X_MPP_H | 1 | #ifndef __ARCH_ORION5X_MPP_H |
2 | #define __ARCH_ORION5X_MPP_H | 2 | #define __ARCH_ORION5X_MPP_H |
3 | 3 | ||
4 | enum orion5x_mpp_type { | 4 | #define MPP(_num, _sel, _in, _out, _F5181l, _F5182, _F5281) ( \ |
5 | /* | 5 | /* MPP number */ ((_num) & 0xff) | \ |
6 | * This MPP is unused. | 6 | /* MPP select value */ (((_sel) & 0xf) << 8) | \ |
7 | */ | 7 | /* may be input signal */ ((!!(_in)) << 12) | \ |
8 | MPP_UNUSED, | 8 | /* may be output signal */ ((!!(_out)) << 13) | \ |
9 | 9 | /* available on F5181l */ ((!!(_F5181l)) << 14) | \ | |
10 | /* | 10 | /* available on F5182 */ ((!!(_F5182)) << 15) | \ |
11 | * This MPP pin is used as a generic GPIO pin. Valid for | 11 | /* available on F5281 */ ((!!(_F5281)) << 16)) |
12 | * MPPs 0-15 and device bus data pins 16-31. On 5182, also | ||
13 | * valid for MPPs 16-19. | ||
14 | */ | ||
15 | MPP_GPIO, | ||
16 | |||
17 | /* | ||
18 | * This MPP is used as PCIe_RST_OUTn pin. Valid for | ||
19 | * MPP 0 only. | ||
20 | */ | ||
21 | MPP_PCIE_RST_OUTn, | ||
22 | |||
23 | /* | ||
24 | * This MPP is used as PCI arbiter pin (REQn/GNTn). | ||
25 | * Valid for MPPs 0-7 only. | ||
26 | */ | ||
27 | MPP_PCI_ARB, | ||
28 | |||
29 | /* | ||
30 | * This MPP is used as PCI_PMEn pin. Valid for MPP 2 only. | ||
31 | */ | ||
32 | MPP_PCI_PMEn, | ||
33 | |||
34 | /* | ||
35 | * This MPP is used as GigE half-duplex (COL, CRS) or GMII | ||
36 | * (RXERR, CRS, TXERR, TXD[7:4], RXD[7:4]) pin. Valid for | ||
37 | * MPPs 8-19 only. | ||
38 | */ | ||
39 | MPP_GIGE, | ||
40 | |||
41 | /* | ||
42 | * This MPP is used as NAND REn/WEn pin. Valid for MPPs | ||
43 | * 4-7 and 12-17 only, and only on the 5181l/5182/5281. | ||
44 | */ | ||
45 | MPP_NAND, | ||
46 | |||
47 | /* | ||
48 | * This MPP is used as a PCI clock output pin. Valid for | ||
49 | * MPPs 6-7 only, and only on the 5181l. | ||
50 | */ | ||
51 | MPP_PCI_CLK, | ||
52 | |||
53 | /* | ||
54 | * This MPP is used as a SATA presence/activity LED. | ||
55 | * Valid for MPPs 4-7 and 12-15 only, and only on the 5182. | ||
56 | */ | ||
57 | MPP_SATA_LED, | ||
58 | |||
59 | /* | ||
60 | * This MPP is used as UART1 RXD/TXD/CTSn/RTSn pin. | ||
61 | * Valid for MPPs 16-19 only. | ||
62 | */ | ||
63 | MPP_UART, | ||
64 | }; | ||
65 | |||
66 | struct orion5x_mpp_mode { | ||
67 | int mpp; | ||
68 | enum orion5x_mpp_type type; | ||
69 | }; | ||
70 | |||
71 | void orion5x_mpp_conf(struct orion5x_mpp_mode *mode); | ||
72 | 12 | ||
13 | /* num sel i o 5181 5182 5281 */ | ||
14 | |||
15 | #define MPP_F5181_MASK MPP(0, 0x0, 0, 0, 1, 0, 0) | ||
16 | #define MPP_F5182_MASK MPP(0, 0x0, 0, 0, 0, 1, 0) | ||
17 | #define MPP_F5281_MASK MPP(0, 0x0, 0, 0, 0, 0, 1) | ||
18 | |||
19 | #define MPP0_UNUSED MPP(0, 0x3, 0, 0, 1, 1, 1) | ||
20 | #define MPP0_GPIO MPP(0, 0x3, 1, 1, 1, 1, 1) | ||
21 | #define MPP0_PCIE_RST_OUTn MPP(0, 0x0, 0, 0, 1, 1, 1) | ||
22 | #define MPP0_PCI_ARB MPP(0, 0x2, 0, 0, 1, 1, 1) | ||
23 | |||
24 | #define MPP1_UNUSED MPP(1, 0x0, 0, 0, 1, 1, 1) | ||
25 | #define MPP1_GPIO MPP(1, 0x0, 1, 1, 1, 1, 1) | ||
26 | #define MPP1_PCI_ARB MPP(1, 0x2, 0, 0, 1, 1, 1) | ||
27 | |||
28 | #define MPP2_UNUSED MPP(2, 0x0, 0, 0, 1, 1, 1) | ||
29 | #define MPP2_GPIO MPP(2, 0x0, 1, 1, 1, 1, 1) | ||
30 | #define MPP2_PCI_ARB MPP(2, 0x2, 0, 0, 1, 1, 1) | ||
31 | #define MPP2_PCI_PMEn MPP(2, 0x3, 0, 0, 1, 1, 1) | ||
32 | |||
33 | #define MPP3_UNUSED MPP(3, 0x0, 0, 0, 1, 1, 1) | ||
34 | #define MPP3_GPIO MPP(3, 0x0, 1, 1, 1, 1, 1) | ||
35 | #define MPP3_PCI_ARB MPP(3, 0x2, 0, 0, 1, 1, 1) | ||
36 | |||
37 | #define MPP4_UNUSED MPP(4, 0x0, 0, 0, 1, 1, 1) | ||
38 | #define MPP4_GPIO MPP(4, 0x0, 1, 1, 1, 1, 1) | ||
39 | #define MPP4_PCI_ARB MPP(4, 0x2, 0, 0, 1, 1, 1) | ||
40 | #define MPP4_NAND MPP(4, 0x4, 0, 0, 0, 1, 1) | ||
41 | #define MPP4_SATA_LED MPP(4, 0x5, 0, 0, 0, 1, 0) | ||
42 | |||
43 | #define MPP5_UNUSED MPP(5, 0x0, 0, 0, 1, 1, 1) | ||
44 | #define MPP5_GPIO MPP(5, 0x0, 1, 1, 1, 1, 1) | ||
45 | #define MPP5_PCI_ARB MPP(5, 0x2, 0, 0, 1, 1, 1) | ||
46 | #define MPP5_NAND MPP(5, 0x4, 0, 0, 0, 1, 1) | ||
47 | #define MPP5_SATA_LED MPP(5, 0x5, 0, 0, 0, 1, 0) | ||
48 | |||
49 | #define MPP6_UNUSED MPP(6, 0x0, 0, 0, 1, 1, 1) | ||
50 | #define MPP6_GPIO MPP(6, 0x0, 1, 1, 1, 1, 1) | ||
51 | #define MPP6_PCI_ARB MPP(6, 0x2, 0, 0, 1, 1, 1) | ||
52 | #define MPP6_NAND MPP(6, 0x4, 0, 0, 0, 1, 1) | ||
53 | #define MPP6_PCI_CLK MPP(6, 0x5, 0, 0, 1, 0, 0) | ||
54 | #define MPP6_SATA_LED MPP(6, 0x5, 0, 0, 0, 1, 0) | ||
55 | |||
56 | #define MPP7_UNUSED MPP(7, 0x0, 0, 0, 1, 1, 1) | ||
57 | #define MPP7_GPIO MPP(7, 0x0, 1, 1, 1, 1, 1) | ||
58 | #define MPP7_PCI_ARB MPP(7, 0x2, 0, 0, 1, 1, 1) | ||
59 | #define MPP7_NAND MPP(7, 0x4, 0, 0, 0, 1, 1) | ||
60 | #define MPP7_PCI_CLK MPP(7, 0x5, 0, 0, 1, 0, 0) | ||
61 | #define MPP7_SATA_LED MPP(7, 0x5, 0, 0, 0, 1, 0) | ||
62 | |||
63 | #define MPP8_UNUSED MPP(8, 0x0, 0, 0, 1, 1, 1) | ||
64 | #define MPP8_GPIO MPP(8, 0x0, 1, 1, 1, 1, 1) | ||
65 | #define MPP8_GIGE MPP(8, 0x1, 0, 0, 1, 1, 1) | ||
66 | |||
67 | #define MPP9_UNUSED MPP(9, 0x0, 0, 0, 1, 1, 1) | ||
68 | #define MPP9_GPIO MPP(9, 0x0, 0, 0, 1, 1, 1) | ||
69 | #define MPP9_GIGE MPP(9, 0x1, 1, 1, 1, 1, 1) | ||
70 | |||
71 | #define MPP10_UNUSED MPP(10, 0x0, 0, 0, 1, 1, 1) | ||
72 | #define MPP10_GPIO MPP(10, 0x0, 1, 1, 1, 1, 1) | ||
73 | #define MPP10_GIGE MPP(10, 0x1, 0, 0, 1, 1, 1) | ||
74 | |||
75 | #define MPP11_UNUSED MPP(11, 0x0, 0, 0, 1, 1, 1) | ||
76 | #define MPP11_GPIO MPP(11, 0x0, 1, 1, 1, 1, 1) | ||
77 | #define MPP11_GIGE MPP(11, 0x1, 0, 0, 1, 1, 1) | ||
78 | |||
79 | #define MPP12_UNUSED MPP(12, 0x0, 0, 0, 1, 1, 1) | ||
80 | #define MPP12_GPIO MPP(12, 0x0, 1, 1, 1, 1, 1) | ||
81 | #define MPP12_GIGE MPP(12, 0x1, 0, 0, 1, 1, 1) | ||
82 | #define MPP12_NAND MPP(12, 0x4, 0, 0, 0, 1, 1) | ||
83 | #define MPP12_SATA_LED MPP(12, 0x5, 0, 0, 0, 1, 0) | ||
84 | |||
85 | #define MPP13_UNUSED MPP(13, 0x0, 0, 0, 1, 1, 1) | ||
86 | #define MPP13_GPIO MPP(13, 0x0, 1, 1, 1, 1, 1) | ||
87 | #define MPP13_GIGE MPP(13, 0x1, 0, 0, 1, 1, 1) | ||
88 | #define MPP13_NAND MPP(13, 0x4, 0, 0, 0, 1, 1) | ||
89 | #define MPP13_SATA_LED MPP(13, 0x5, 0, 0, 0, 1, 0) | ||
90 | |||
91 | #define MPP14_UNUSED MPP(14, 0x0, 0, 0, 1, 1, 1) | ||
92 | #define MPP14_GPIO MPP(14, 0x0, 1, 1, 1, 1, 1) | ||
93 | #define MPP14_GIGE MPP(14, 0x1, 0, 0, 1, 1, 1) | ||
94 | #define MPP14_NAND MPP(14, 0x4, 0, 0, 0, 1, 1) | ||
95 | #define MPP14_SATA_LED MPP(14, 0x5, 0, 0, 0, 1, 0) | ||
96 | |||
97 | #define MPP15_UNUSED MPP(15, 0x0, 0, 0, 1, 1, 1) | ||
98 | #define MPP15_GPIO MPP(15, 0x0, 1, 1, 1, 1, 1) | ||
99 | #define MPP15_GIGE MPP(15, 0x1, 0, 0, 1, 1, 1) | ||
100 | #define MPP15_NAND MPP(15, 0x4, 0, 0, 0, 1, 1) | ||
101 | #define MPP15_SATA_LED MPP(15, 0x5, 0, 0, 0, 1, 0) | ||
102 | |||
103 | #define MPP16_UNUSED MPP(16, 0x0, 0, 0, 1, 1, 1) | ||
104 | #define MPP16_GPIO MPP(16, 0x5, 1, 1, 0, 1, 0) | ||
105 | #define MPP16_GIGE MPP(16, 0x1, 0, 0, 1, 1, 1) | ||
106 | #define MPP16_NAND MPP(16, 0x4, 0, 0, 0, 1, 1) | ||
107 | #define MPP16_UART MPP(16, 0x0, 0, 0, 0, 1, 1) | ||
108 | |||
109 | #define MPP17_UNUSED MPP(17, 0x0, 0, 0, 1, 1, 1) | ||
110 | #define MPP17_GPIO MPP(17, 0x5, 1, 1, 0, 1, 0) | ||
111 | #define MPP17_GIGE MPP(17, 0x1, 0, 0, 1, 1, 1) | ||
112 | #define MPP17_NAND MPP(17, 0x4, 0, 0, 0, 1, 1) | ||
113 | #define MPP17_UART MPP(17, 0x0, 0, 0, 0, 1, 1) | ||
114 | |||
115 | #define MPP18_UNUSED MPP(18, 0x0, 0, 0, 1, 1, 1) | ||
116 | #define MPP18_GPIO MPP(18, 0x5, 1, 1, 0, 1, 0) | ||
117 | #define MPP18_GIGE MPP(18, 0x1, 0, 0, 1, 1, 1) | ||
118 | #define MPP18_UART MPP(18, 0x0, 0, 0, 0, 1, 1) | ||
119 | |||
120 | #define MPP19_UNUSED MPP(19, 0x0, 0, 0, 1, 1, 1) | ||
121 | #define MPP19_GPIO MPP(19, 0x5, 1, 1, 0, 1, 0) | ||
122 | #define MPP19_GIGE MPP(19, 0x1, 0, 0, 1, 1, 1) | ||
123 | #define MPP19_UART MPP(19, 0x0, 0, 0, 0, 1, 1) | ||
124 | |||
125 | #define MPP_MAX 19 | ||
126 | |||
127 | void orion5x_mpp_conf(unsigned int *mpp_list); | ||
73 | 128 | ||
74 | #endif | 129 | #endif |
diff --git a/arch/arm/mach-orion5x/mss2-setup.c b/arch/arm/mach-orion5x/mss2-setup.c index b43b208153cb..59263b73d1e4 100644 --- a/arch/arm/mach-orion5x/mss2-setup.c +++ b/arch/arm/mach-orion5x/mss2-setup.c | |||
@@ -193,28 +193,28 @@ static void mss2_power_off(void) | |||
193 | /**************************************************************************** | 193 | /**************************************************************************** |
194 | * General Setup | 194 | * General Setup |
195 | ****************************************************************************/ | 195 | ****************************************************************************/ |
196 | static struct orion5x_mpp_mode mss2_mpp_modes[] __initdata = { | 196 | static unsigned int mss2_mpp_modes[] __initdata = { |
197 | { 0, MPP_GPIO }, /* Power LED */ | 197 | MPP0_GPIO, /* Power LED */ |
198 | { 1, MPP_GPIO }, /* Error LED */ | 198 | MPP1_GPIO, /* Error LED */ |
199 | { 2, MPP_UNUSED }, | 199 | MPP2_UNUSED, |
200 | { 3, MPP_GPIO }, /* RTC interrupt */ | 200 | MPP3_GPIO, /* RTC interrupt */ |
201 | { 4, MPP_GPIO }, /* HDD ind. (Single/Dual)*/ | 201 | MPP4_GPIO, /* HDD ind. (Single/Dual)*/ |
202 | { 5, MPP_GPIO }, /* HD0 5V control */ | 202 | MPP5_GPIO, /* HD0 5V control */ |
203 | { 6, MPP_GPIO }, /* HD0 12V control */ | 203 | MPP6_GPIO, /* HD0 12V control */ |
204 | { 7, MPP_GPIO }, /* HD1 5V control */ | 204 | MPP7_GPIO, /* HD1 5V control */ |
205 | { 8, MPP_GPIO }, /* HD1 12V control */ | 205 | MPP8_GPIO, /* HD1 12V control */ |
206 | { 9, MPP_UNUSED }, | 206 | MPP9_UNUSED, |
207 | { 10, MPP_GPIO }, /* Fan control */ | 207 | MPP10_GPIO, /* Fan control */ |
208 | { 11, MPP_GPIO }, /* Power button */ | 208 | MPP11_GPIO, /* Power button */ |
209 | { 12, MPP_GPIO }, /* Reset button */ | 209 | MPP12_GPIO, /* Reset button */ |
210 | { 13, MPP_UNUSED }, | 210 | MPP13_UNUSED, |
211 | { 14, MPP_SATA_LED }, /* SATA 0 active */ | 211 | MPP14_SATA_LED, /* SATA 0 active */ |
212 | { 15, MPP_SATA_LED }, /* SATA 1 active */ | 212 | MPP15_SATA_LED, /* SATA 1 active */ |
213 | { 16, MPP_UNUSED }, | 213 | MPP16_UNUSED, |
214 | { 17, MPP_UNUSED }, | 214 | MPP17_UNUSED, |
215 | { 18, MPP_UNUSED }, | 215 | MPP18_UNUSED, |
216 | { 19, MPP_UNUSED }, | 216 | MPP19_UNUSED, |
217 | { -1 }, | 217 | 0, |
218 | }; | 218 | }; |
219 | 219 | ||
220 | static void __init mss2_init(void) | 220 | static void __init mss2_init(void) |
diff --git a/arch/arm/mach-orion5x/mv2120-setup.c b/arch/arm/mach-orion5x/mv2120-setup.c index c55d071707f5..63ff10c3c464 100644 --- a/arch/arm/mach-orion5x/mv2120-setup.c +++ b/arch/arm/mach-orion5x/mv2120-setup.c | |||
@@ -108,28 +108,28 @@ static struct platform_device mv2120_button_device = { | |||
108 | /**************************************************************************** | 108 | /**************************************************************************** |
109 | * General Setup | 109 | * General Setup |
110 | ****************************************************************************/ | 110 | ****************************************************************************/ |
111 | static struct orion5x_mpp_mode mv2120_mpp_modes[] __initdata = { | 111 | static unsigned int mv2120_mpp_modes[] __initdata = { |
112 | { 0, MPP_GPIO }, /* Sys status LED */ | 112 | MPP0_GPIO, /* Sys status LED */ |
113 | { 1, MPP_GPIO }, /* Sys error LED */ | 113 | MPP1_GPIO, /* Sys error LED */ |
114 | { 2, MPP_GPIO }, /* OverTemp interrupt */ | 114 | MPP2_GPIO, /* OverTemp interrupt */ |
115 | { 3, MPP_GPIO }, /* RTC interrupt */ | 115 | MPP3_GPIO, /* RTC interrupt */ |
116 | { 4, MPP_GPIO }, /* V_LED 5V */ | 116 | MPP4_GPIO, /* V_LED 5V */ |
117 | { 5, MPP_GPIO }, /* V_LED 3.3V */ | 117 | MPP5_GPIO, /* V_LED 3.3V */ |
118 | { 6, MPP_UNUSED }, | 118 | MPP6_UNUSED, |
119 | { 7, MPP_UNUSED }, | 119 | MPP7_UNUSED, |
120 | { 8, MPP_GPIO }, /* SATA 0 fail LED */ | 120 | MPP8_GPIO, /* SATA 0 fail LED */ |
121 | { 9, MPP_GPIO }, /* SATA 1 fail LED */ | 121 | MPP9_GPIO, /* SATA 1 fail LED */ |
122 | { 10, MPP_UNUSED }, | 122 | MPP10_UNUSED, |
123 | { 11, MPP_UNUSED }, | 123 | MPP11_UNUSED, |
124 | { 12, MPP_SATA_LED }, /* SATA 0 presence */ | 124 | MPP12_SATA_LED, /* SATA 0 presence */ |
125 | { 13, MPP_SATA_LED }, /* SATA 1 presence */ | 125 | MPP13_SATA_LED, /* SATA 1 presence */ |
126 | { 14, MPP_SATA_LED }, /* SATA 0 active */ | 126 | MPP14_SATA_LED, /* SATA 0 active */ |
127 | { 15, MPP_SATA_LED }, /* SATA 1 active */ | 127 | MPP15_SATA_LED, /* SATA 1 active */ |
128 | { 16, MPP_UNUSED }, | 128 | MPP16_UNUSED, |
129 | { 17, MPP_GPIO }, /* Reset button */ | 129 | MPP17_GPIO, /* Reset button */ |
130 | { 18, MPP_GPIO }, /* Power button */ | 130 | MPP18_GPIO, /* Power button */ |
131 | { 19, MPP_GPIO }, /* Power off */ | 131 | MPP19_GPIO, /* Power off */ |
132 | { -1 }, | 132 | 0, |
133 | }; | 133 | }; |
134 | 134 | ||
135 | static struct i2c_board_info __initdata mv2120_i2c_rtc = { | 135 | static struct i2c_board_info __initdata mv2120_i2c_rtc = { |
diff --git a/arch/arm/mach-orion5x/net2big-setup.c b/arch/arm/mach-orion5x/net2big-setup.c index a5930f83958b..e43b39cc7fe9 100644 --- a/arch/arm/mach-orion5x/net2big-setup.c +++ b/arch/arm/mach-orion5x/net2big-setup.c | |||
@@ -339,28 +339,28 @@ static struct platform_device net2big_gpio_buttons = { | |||
339 | * General Setup | 339 | * General Setup |
340 | ****************************************************************************/ | 340 | ****************************************************************************/ |
341 | 341 | ||
342 | static struct orion5x_mpp_mode net2big_mpp_modes[] __initdata = { | 342 | static unsigned int net2big_mpp_modes[] __initdata = { |
343 | { 0, MPP_GPIO }, /* Raid mode (bit 0) */ | 343 | MPP0_GPIO, /* Raid mode (bit 0) */ |
344 | { 1, MPP_GPIO }, /* USB port 2 fuse (0 = Fail, 1 = Ok) */ | 344 | MPP1_GPIO, /* USB port 2 fuse (0 = Fail, 1 = Ok) */ |
345 | { 2, MPP_GPIO }, /* Raid mode (bit 1) */ | 345 | MPP2_GPIO, /* Raid mode (bit 1) */ |
346 | { 3, MPP_GPIO }, /* Board ID (bit 0) */ | 346 | MPP3_GPIO, /* Board ID (bit 0) */ |
347 | { 4, MPP_GPIO }, /* Fan activity (0 = Off, 1 = On) */ | 347 | MPP4_GPIO, /* Fan activity (0 = Off, 1 = On) */ |
348 | { 5, MPP_GPIO }, /* Fan fail detection */ | 348 | MPP5_GPIO, /* Fan fail detection */ |
349 | { 6, MPP_GPIO }, /* Red front LED (0 = Off, 1 = On) */ | 349 | MPP6_GPIO, /* Red front LED (0 = Off, 1 = On) */ |
350 | { 7, MPP_GPIO }, /* Disable initial blinking on front LED */ | 350 | MPP7_GPIO, /* Disable initial blinking on front LED */ |
351 | { 8, MPP_GPIO }, /* Rear power switch (on|auto) */ | 351 | MPP8_GPIO, /* Rear power switch (on|auto) */ |
352 | { 9, MPP_GPIO }, /* Rear power switch (auto|off) */ | 352 | MPP9_GPIO, /* Rear power switch (auto|off) */ |
353 | { 10, MPP_GPIO }, /* SATA 1 red LED (0 = Off, 1 = On) */ | 353 | MPP10_GPIO, /* SATA 1 red LED (0 = Off, 1 = On) */ |
354 | { 11, MPP_GPIO }, /* SATA 0 red LED (0 = Off, 1 = On) */ | 354 | MPP11_GPIO, /* SATA 0 red LED (0 = Off, 1 = On) */ |
355 | { 12, MPP_GPIO }, /* Board ID (bit 1) */ | 355 | MPP12_GPIO, /* Board ID (bit 1) */ |
356 | { 13, MPP_GPIO }, /* SATA 1 blue LED blink control */ | 356 | MPP13_GPIO, /* SATA 1 blue LED blink control */ |
357 | { 14, MPP_SATA_LED }, | 357 | MPP14_SATA_LED, |
358 | { 15, MPP_SATA_LED }, | 358 | MPP15_SATA_LED, |
359 | { 16, MPP_GPIO }, /* Blue front LED control */ | 359 | MPP16_GPIO, /* Blue front LED control */ |
360 | { 17, MPP_GPIO }, /* SATA 0 blue LED blink control */ | 360 | MPP17_GPIO, /* SATA 0 blue LED blink control */ |
361 | { 18, MPP_GPIO }, /* Front button (0 = Released, 1 = Pushed ) */ | 361 | MPP18_GPIO, /* Front button (0 = Released, 1 = Pushed ) */ |
362 | { 19, MPP_GPIO }, /* SATA{0,1} power On/Off request */ | 362 | MPP19_GPIO, /* SATA{0,1} power On/Off request */ |
363 | { -1 } | 363 | 0, |
364 | /* 22: USB port 1 fuse (0 = Fail, 1 = Ok) */ | 364 | /* 22: USB port 1 fuse (0 = Fail, 1 = Ok) */ |
365 | /* 23: SATA 0 power status */ | 365 | /* 23: SATA 0 power status */ |
366 | /* 24: Board power off */ | 366 | /* 24: Board power off */ |
diff --git a/arch/arm/mach-orion5x/rd88f5181l-fxo-setup.c b/arch/arm/mach-orion5x/rd88f5181l-fxo-setup.c index 34310ab56e29..9eec7c2375e9 100644 --- a/arch/arm/mach-orion5x/rd88f5181l-fxo-setup.c +++ b/arch/arm/mach-orion5x/rd88f5181l-fxo-setup.c | |||
@@ -64,28 +64,28 @@ static struct platform_device rd88f5181l_fxo_nor_boot_flash = { | |||
64 | /***************************************************************************** | 64 | /***************************************************************************** |
65 | * General Setup | 65 | * General Setup |
66 | ****************************************************************************/ | 66 | ****************************************************************************/ |
67 | static struct orion5x_mpp_mode rd88f5181l_fxo_mpp_modes[] __initdata = { | 67 | static unsigned int rd88f5181l_fxo_mpp_modes[] __initdata = { |
68 | { 0, MPP_GPIO }, /* LED1 CardBus LED (front panel) */ | 68 | MPP0_GPIO, /* LED1 CardBus LED (front panel) */ |
69 | { 1, MPP_GPIO }, /* PCI_intA */ | 69 | MPP1_GPIO, /* PCI_intA */ |
70 | { 2, MPP_GPIO }, /* Hard Reset / Factory Init*/ | 70 | MPP2_GPIO, /* Hard Reset / Factory Init*/ |
71 | { 3, MPP_GPIO }, /* FXS or DAA select */ | 71 | MPP3_GPIO, /* FXS or DAA select */ |
72 | { 4, MPP_GPIO }, /* LED6 - phone LED (front panel) */ | 72 | MPP4_GPIO, /* LED6 - phone LED (front panel) */ |
73 | { 5, MPP_GPIO }, /* LED5 - phone LED (front panel) */ | 73 | MPP5_GPIO, /* LED5 - phone LED (front panel) */ |
74 | { 6, MPP_PCI_CLK }, /* CPU PCI refclk */ | 74 | MPP6_PCI_CLK, /* CPU PCI refclk */ |
75 | { 7, MPP_PCI_CLK }, /* PCI/PCIe refclk */ | 75 | MPP7_PCI_CLK, /* PCI/PCIe refclk */ |
76 | { 8, MPP_GPIO }, /* CardBus reset */ | 76 | MPP8_GPIO, /* CardBus reset */ |
77 | { 9, MPP_GPIO }, /* GE_RXERR */ | 77 | MPP9_GPIO, /* GE_RXERR */ |
78 | { 10, MPP_GPIO }, /* LED2 MiniPCI LED (front panel) */ | 78 | MPP10_GPIO, /* LED2 MiniPCI LED (front panel) */ |
79 | { 11, MPP_GPIO }, /* Lifeline control */ | 79 | MPP11_GPIO, /* Lifeline control */ |
80 | { 12, MPP_GIGE }, /* GE_TXD[4] */ | 80 | MPP12_GIGE, /* GE_TXD[4] */ |
81 | { 13, MPP_GIGE }, /* GE_TXD[5] */ | 81 | MPP13_GIGE, /* GE_TXD[5] */ |
82 | { 14, MPP_GIGE }, /* GE_TXD[6] */ | 82 | MPP14_GIGE, /* GE_TXD[6] */ |
83 | { 15, MPP_GIGE }, /* GE_TXD[7] */ | 83 | MPP15_GIGE, /* GE_TXD[7] */ |
84 | { 16, MPP_GIGE }, /* GE_RXD[4] */ | 84 | MPP16_GIGE, /* GE_RXD[4] */ |
85 | { 17, MPP_GIGE }, /* GE_RXD[5] */ | 85 | MPP17_GIGE, /* GE_RXD[5] */ |
86 | { 18, MPP_GIGE }, /* GE_RXD[6] */ | 86 | MPP18_GIGE, /* GE_RXD[6] */ |
87 | { 19, MPP_GIGE }, /* GE_RXD[7] */ | 87 | MPP19_GIGE, /* GE_RXD[7] */ |
88 | { -1 }, | 88 | 0, |
89 | }; | 89 | }; |
90 | 90 | ||
91 | static struct mv643xx_eth_platform_data rd88f5181l_fxo_eth_data = { | 91 | static struct mv643xx_eth_platform_data rd88f5181l_fxo_eth_data = { |
diff --git a/arch/arm/mach-orion5x/rd88f5181l-ge-setup.c b/arch/arm/mach-orion5x/rd88f5181l-ge-setup.c index c1f79fa014ed..0cc90bbfd326 100644 --- a/arch/arm/mach-orion5x/rd88f5181l-ge-setup.c +++ b/arch/arm/mach-orion5x/rd88f5181l-ge-setup.c | |||
@@ -65,28 +65,28 @@ static struct platform_device rd88f5181l_ge_nor_boot_flash = { | |||
65 | /***************************************************************************** | 65 | /***************************************************************************** |
66 | * General Setup | 66 | * General Setup |
67 | ****************************************************************************/ | 67 | ****************************************************************************/ |
68 | static struct orion5x_mpp_mode rd88f5181l_ge_mpp_modes[] __initdata = { | 68 | static unsigned int rd88f5181l_ge_mpp_modes[] __initdata = { |
69 | { 0, MPP_GPIO }, /* LED1 */ | 69 | MPP0_GPIO, /* LED1 */ |
70 | { 1, MPP_GPIO }, /* LED5 */ | 70 | MPP1_GPIO, /* LED5 */ |
71 | { 2, MPP_GPIO }, /* LED4 */ | 71 | MPP2_GPIO, /* LED4 */ |
72 | { 3, MPP_GPIO }, /* LED3 */ | 72 | MPP3_GPIO, /* LED3 */ |
73 | { 4, MPP_GPIO }, /* PCI_intA */ | 73 | MPP4_GPIO, /* PCI_intA */ |
74 | { 5, MPP_GPIO }, /* RTC interrupt */ | 74 | MPP5_GPIO, /* RTC interrupt */ |
75 | { 6, MPP_PCI_CLK }, /* CPU PCI refclk */ | 75 | MPP6_PCI_CLK, /* CPU PCI refclk */ |
76 | { 7, MPP_PCI_CLK }, /* PCI/PCIe refclk */ | 76 | MPP7_PCI_CLK, /* PCI/PCIe refclk */ |
77 | { 8, MPP_GPIO }, /* 88e6131 interrupt */ | 77 | MPP8_GPIO, /* 88e6131 interrupt */ |
78 | { 9, MPP_GPIO }, /* GE_RXERR */ | 78 | MPP9_GPIO, /* GE_RXERR */ |
79 | { 10, MPP_GPIO }, /* PCI_intB */ | 79 | MPP10_GPIO, /* PCI_intB */ |
80 | { 11, MPP_GPIO }, /* LED2 */ | 80 | MPP11_GPIO, /* LED2 */ |
81 | { 12, MPP_GIGE }, /* GE_TXD[4] */ | 81 | MPP12_GIGE, /* GE_TXD[4] */ |
82 | { 13, MPP_GIGE }, /* GE_TXD[5] */ | 82 | MPP13_GIGE, /* GE_TXD[5] */ |
83 | { 14, MPP_GIGE }, /* GE_TXD[6] */ | 83 | MPP14_GIGE, /* GE_TXD[6] */ |
84 | { 15, MPP_GIGE }, /* GE_TXD[7] */ | 84 | MPP15_GIGE, /* GE_TXD[7] */ |
85 | { 16, MPP_GIGE }, /* GE_RXD[4] */ | 85 | MPP16_GIGE, /* GE_RXD[4] */ |
86 | { 17, MPP_GIGE }, /* GE_RXD[5] */ | 86 | MPP17_GIGE, /* GE_RXD[5] */ |
87 | { 18, MPP_GIGE }, /* GE_RXD[6] */ | 87 | MPP18_GIGE, /* GE_RXD[6] */ |
88 | { 19, MPP_GIGE }, /* GE_RXD[7] */ | 88 | MPP19_GIGE, /* GE_RXD[7] */ |
89 | { -1 }, | 89 | 0, |
90 | }; | 90 | }; |
91 | 91 | ||
92 | static struct mv643xx_eth_platform_data rd88f5181l_ge_eth_data = { | 92 | static struct mv643xx_eth_platform_data rd88f5181l_ge_eth_data = { |
diff --git a/arch/arm/mach-orion5x/rd88f5182-setup.c b/arch/arm/mach-orion5x/rd88f5182-setup.c index 4fc46772a087..48da39b9bdb0 100644 --- a/arch/arm/mach-orion5x/rd88f5182-setup.c +++ b/arch/arm/mach-orion5x/rd88f5182-setup.c | |||
@@ -241,28 +241,28 @@ static struct mv_sata_platform_data rd88f5182_sata_data = { | |||
241 | /***************************************************************************** | 241 | /***************************************************************************** |
242 | * General Setup | 242 | * General Setup |
243 | ****************************************************************************/ | 243 | ****************************************************************************/ |
244 | static struct orion5x_mpp_mode rd88f5182_mpp_modes[] __initdata = { | 244 | static unsigned int rd88f5182_mpp_modes[] __initdata = { |
245 | { 0, MPP_GPIO }, /* Debug Led */ | 245 | MPP0_GPIO, /* Debug Led */ |
246 | { 1, MPP_GPIO }, /* Reset Switch */ | 246 | MPP1_GPIO, /* Reset Switch */ |
247 | { 2, MPP_UNUSED }, | 247 | MPP2_UNUSED, |
248 | { 3, MPP_GPIO }, /* RTC Int */ | 248 | MPP3_GPIO, /* RTC Int */ |
249 | { 4, MPP_GPIO }, | 249 | MPP4_GPIO, |
250 | { 5, MPP_GPIO }, | 250 | MPP5_GPIO, |
251 | { 6, MPP_GPIO }, /* PCI_intA */ | 251 | MPP6_GPIO, /* PCI_intA */ |
252 | { 7, MPP_GPIO }, /* PCI_intB */ | 252 | MPP7_GPIO, /* PCI_intB */ |
253 | { 8, MPP_UNUSED }, | 253 | MPP8_UNUSED, |
254 | { 9, MPP_UNUSED }, | 254 | MPP9_UNUSED, |
255 | { 10, MPP_UNUSED }, | 255 | MPP10_UNUSED, |
256 | { 11, MPP_UNUSED }, | 256 | MPP11_UNUSED, |
257 | { 12, MPP_SATA_LED }, /* SATA 0 presence */ | 257 | MPP12_SATA_LED, /* SATA 0 presence */ |
258 | { 13, MPP_SATA_LED }, /* SATA 1 presence */ | 258 | MPP13_SATA_LED, /* SATA 1 presence */ |
259 | { 14, MPP_SATA_LED }, /* SATA 0 active */ | 259 | MPP14_SATA_LED, /* SATA 0 active */ |
260 | { 15, MPP_SATA_LED }, /* SATA 1 active */ | 260 | MPP15_SATA_LED, /* SATA 1 active */ |
261 | { 16, MPP_UNUSED }, | 261 | MPP16_UNUSED, |
262 | { 17, MPP_UNUSED }, | 262 | MPP17_UNUSED, |
263 | { 18, MPP_UNUSED }, | 263 | MPP18_UNUSED, |
264 | { 19, MPP_UNUSED }, | 264 | MPP19_UNUSED, |
265 | { -1 }, | 265 | 0, |
266 | }; | 266 | }; |
267 | 267 | ||
268 | static void __init rd88f5182_init(void) | 268 | static void __init rd88f5182_init(void) |
diff --git a/arch/arm/mach-orion5x/rd88f6183ap-ge-setup.c b/arch/arm/mach-orion5x/rd88f6183ap-ge-setup.c index b080c6966d10..ad2eba9286ad 100644 --- a/arch/arm/mach-orion5x/rd88f6183ap-ge-setup.c +++ b/arch/arm/mach-orion5x/rd88f6183ap-ge-setup.c | |||
@@ -27,7 +27,6 @@ | |||
27 | #include <asm/mach/pci.h> | 27 | #include <asm/mach/pci.h> |
28 | #include <mach/orion5x.h> | 28 | #include <mach/orion5x.h> |
29 | #include "common.h" | 29 | #include "common.h" |
30 | #include "mpp.h" | ||
31 | 30 | ||
32 | static struct mv643xx_eth_platform_data rd88f6183ap_ge_eth_data = { | 31 | static struct mv643xx_eth_platform_data rd88f6183ap_ge_eth_data = { |
33 | .phy_addr = -1, | 32 | .phy_addr = -1, |
diff --git a/arch/arm/mach-orion5x/terastation_pro2-setup.c b/arch/arm/mach-orion5x/terastation_pro2-setup.c index 616004143912..29ce826c3c21 100644 --- a/arch/arm/mach-orion5x/terastation_pro2-setup.c +++ b/arch/arm/mach-orion5x/terastation_pro2-setup.c | |||
@@ -295,28 +295,28 @@ static void tsp2_power_off(void) | |||
295 | /***************************************************************************** | 295 | /***************************************************************************** |
296 | * General Setup | 296 | * General Setup |
297 | ****************************************************************************/ | 297 | ****************************************************************************/ |
298 | static struct orion5x_mpp_mode tsp2_mpp_modes[] __initdata = { | 298 | static unsigned int tsp2_mpp_modes[] __initdata = { |
299 | { 0, MPP_PCIE_RST_OUTn }, | 299 | MPP0_PCIE_RST_OUTn, |
300 | { 1, MPP_UNUSED }, | 300 | MPP1_UNUSED, |
301 | { 2, MPP_UNUSED }, | 301 | MPP2_UNUSED, |
302 | { 3, MPP_UNUSED }, | 302 | MPP3_UNUSED, |
303 | { 4, MPP_NAND }, /* BOOT NAND Flash REn */ | 303 | MPP4_NAND, /* BOOT NAND Flash REn */ |
304 | { 5, MPP_NAND }, /* BOOT NAND Flash WEn */ | 304 | MPP5_NAND, /* BOOT NAND Flash WEn */ |
305 | { 6, MPP_NAND }, /* BOOT NAND Flash HREn[0] */ | 305 | MPP6_NAND, /* BOOT NAND Flash HREn[0] */ |
306 | { 7, MPP_NAND }, /* BOOT NAND Flash WEn[0] */ | 306 | MPP7_NAND, /* BOOT NAND Flash WEn[0] */ |
307 | { 8, MPP_GPIO }, /* MICON int */ | 307 | MPP8_GPIO, /* MICON int */ |
308 | { 9, MPP_GPIO }, /* RTC int */ | 308 | MPP9_GPIO, /* RTC int */ |
309 | { 10, MPP_UNUSED }, | 309 | MPP10_UNUSED, |
310 | { 11, MPP_GPIO }, /* PCI Int A */ | 310 | MPP11_GPIO, /* PCI Int A */ |
311 | { 12, MPP_UNUSED }, | 311 | MPP12_UNUSED, |
312 | { 13, MPP_GPIO }, /* UPS on UART0 enable */ | 312 | MPP13_GPIO, /* UPS on UART0 enable */ |
313 | { 14, MPP_GPIO }, /* UPS low battery detection */ | 313 | MPP14_GPIO, /* UPS low battery detection */ |
314 | { 15, MPP_UNUSED }, | 314 | MPP15_UNUSED, |
315 | { 16, MPP_UART }, /* UART1 RXD */ | 315 | MPP16_UART, /* UART1 RXD */ |
316 | { 17, MPP_UART }, /* UART1 TXD */ | 316 | MPP17_UART, /* UART1 TXD */ |
317 | { 18, MPP_UART }, /* UART1 CTSn */ | 317 | MPP18_UART, /* UART1 CTSn */ |
318 | { 19, MPP_UART }, /* UART1 RTSn */ | 318 | MPP19_UART, /* UART1 RTSn */ |
319 | { -1 }, | 319 | 0, |
320 | }; | 320 | }; |
321 | 321 | ||
322 | static void __init tsp2_init(void) | 322 | static void __init tsp2_init(void) |
diff --git a/arch/arm/mach-orion5x/ts209-setup.c b/arch/arm/mach-orion5x/ts209-setup.c index e6d64494d3de..47162fd5f044 100644 --- a/arch/arm/mach-orion5x/ts209-setup.c +++ b/arch/arm/mach-orion5x/ts209-setup.c | |||
@@ -244,28 +244,28 @@ static struct mv_sata_platform_data qnap_ts209_sata_data = { | |||
244 | 244 | ||
245 | * General Setup | 245 | * General Setup |
246 | ****************************************************************************/ | 246 | ****************************************************************************/ |
247 | static struct orion5x_mpp_mode ts209_mpp_modes[] __initdata = { | 247 | static unsigned int ts209_mpp_modes[] __initdata = { |
248 | { 0, MPP_UNUSED }, | 248 | MPP0_UNUSED, |
249 | { 1, MPP_GPIO }, /* USB copy button */ | 249 | MPP1_GPIO, /* USB copy button */ |
250 | { 2, MPP_GPIO }, /* Load defaults button */ | 250 | MPP2_GPIO, /* Load defaults button */ |
251 | { 3, MPP_GPIO }, /* GPIO RTC */ | 251 | MPP3_GPIO, /* GPIO RTC */ |
252 | { 4, MPP_UNUSED }, | 252 | MPP4_UNUSED, |
253 | { 5, MPP_UNUSED }, | 253 | MPP5_UNUSED, |
254 | { 6, MPP_GPIO }, /* PCI Int A */ | 254 | MPP6_GPIO, /* PCI Int A */ |
255 | { 7, MPP_GPIO }, /* PCI Int B */ | 255 | MPP7_GPIO, /* PCI Int B */ |
256 | { 8, MPP_UNUSED }, | 256 | MPP8_UNUSED, |
257 | { 9, MPP_UNUSED }, | 257 | MPP9_UNUSED, |
258 | { 10, MPP_UNUSED }, | 258 | MPP10_UNUSED, |
259 | { 11, MPP_UNUSED }, | 259 | MPP11_UNUSED, |
260 | { 12, MPP_SATA_LED }, /* SATA 0 presence */ | 260 | MPP12_SATA_LED, /* SATA 0 presence */ |
261 | { 13, MPP_SATA_LED }, /* SATA 1 presence */ | 261 | MPP13_SATA_LED, /* SATA 1 presence */ |
262 | { 14, MPP_SATA_LED }, /* SATA 0 active */ | 262 | MPP14_SATA_LED, /* SATA 0 active */ |
263 | { 15, MPP_SATA_LED }, /* SATA 1 active */ | 263 | MPP15_SATA_LED, /* SATA 1 active */ |
264 | { 16, MPP_UART }, /* UART1 RXD */ | 264 | MPP16_UART, /* UART1 RXD */ |
265 | { 17, MPP_UART }, /* UART1 TXD */ | 265 | MPP17_UART, /* UART1 TXD */ |
266 | { 18, MPP_GPIO }, /* SW_RST */ | 266 | MPP18_GPIO, /* SW_RST */ |
267 | { 19, MPP_UNUSED }, | 267 | MPP19_UNUSED, |
268 | { -1 }, | 268 | 0, |
269 | }; | 269 | }; |
270 | 270 | ||
271 | static void __init qnap_ts209_init(void) | 271 | static void __init qnap_ts209_init(void) |
diff --git a/arch/arm/mach-orion5x/ts409-setup.c b/arch/arm/mach-orion5x/ts409-setup.c index 9eac8192d923..5aacc7ac5cf4 100644 --- a/arch/arm/mach-orion5x/ts409-setup.c +++ b/arch/arm/mach-orion5x/ts409-setup.c | |||
@@ -242,28 +242,28 @@ static struct platform_device qnap_ts409_button_device = { | |||
242 | /***************************************************************************** | 242 | /***************************************************************************** |
243 | * General Setup | 243 | * General Setup |
244 | ****************************************************************************/ | 244 | ****************************************************************************/ |
245 | static struct orion5x_mpp_mode ts409_mpp_modes[] __initdata = { | 245 | static unsigned int ts409_mpp_modes[] __initdata = { |
246 | { 0, MPP_UNUSED }, | 246 | MPP0_UNUSED, |
247 | { 1, MPP_UNUSED }, | 247 | MPP1_UNUSED, |
248 | { 2, MPP_UNUSED }, | 248 | MPP2_UNUSED, |
249 | { 3, MPP_UNUSED }, | 249 | MPP3_UNUSED, |
250 | { 4, MPP_GPIO }, /* HDD 1 status */ | 250 | MPP4_GPIO, /* HDD 1 status */ |
251 | { 5, MPP_GPIO }, /* HDD 2 status */ | 251 | MPP5_GPIO, /* HDD 2 status */ |
252 | { 6, MPP_GPIO }, /* HDD 3 status */ | 252 | MPP6_GPIO, /* HDD 3 status */ |
253 | { 7, MPP_GPIO }, /* HDD 4 status */ | 253 | MPP7_GPIO, /* HDD 4 status */ |
254 | { 8, MPP_UNUSED }, | 254 | MPP8_UNUSED, |
255 | { 9, MPP_UNUSED }, | 255 | MPP9_UNUSED, |
256 | { 10, MPP_GPIO }, /* RTC int */ | 256 | MPP10_GPIO, /* RTC int */ |
257 | { 11, MPP_UNUSED }, | 257 | MPP11_UNUSED, |
258 | { 12, MPP_UNUSED }, | 258 | MPP12_UNUSED, |
259 | { 13, MPP_UNUSED }, | 259 | MPP13_UNUSED, |
260 | { 14, MPP_GPIO }, /* SW_RST */ | 260 | MPP14_GPIO, /* SW_RST */ |
261 | { 15, MPP_GPIO }, /* USB copy button */ | 261 | MPP15_GPIO, /* USB copy button */ |
262 | { 16, MPP_UART }, /* UART1 RXD */ | 262 | MPP16_UART, /* UART1 RXD */ |
263 | { 17, MPP_UART }, /* UART1 TXD */ | 263 | MPP17_UART, /* UART1 TXD */ |
264 | { 18, MPP_UNUSED }, | 264 | MPP18_UNUSED, |
265 | { 19, MPP_UNUSED }, | 265 | MPP19_UNUSED, |
266 | { -1 }, | 266 | 0, |
267 | }; | 267 | }; |
268 | 268 | ||
269 | static void __init qnap_ts409_init(void) | 269 | static void __init qnap_ts409_init(void) |
diff --git a/arch/arm/mach-orion5x/ts78xx-setup.c b/arch/arm/mach-orion5x/ts78xx-setup.c index edb1dd2d1611..6b7b54116f30 100644 --- a/arch/arm/mach-orion5x/ts78xx-setup.c +++ b/arch/arm/mach-orion5x/ts78xx-setup.c | |||
@@ -557,27 +557,27 @@ static struct kobj_attribute ts78xx_fpga_attr = | |||
557 | /***************************************************************************** | 557 | /***************************************************************************** |
558 | * General Setup | 558 | * General Setup |
559 | ****************************************************************************/ | 559 | ****************************************************************************/ |
560 | static struct orion5x_mpp_mode ts78xx_mpp_modes[] __initdata = { | 560 | static unsigned int ts78xx_mpp_modes[] __initdata = { |
561 | { 0, MPP_UNUSED }, | 561 | MPP0_UNUSED, |
562 | { 1, MPP_GPIO }, /* JTAG Clock */ | 562 | MPP1_GPIO, /* JTAG Clock */ |
563 | { 2, MPP_GPIO }, /* JTAG Data In */ | 563 | MPP2_GPIO, /* JTAG Data In */ |
564 | { 3, MPP_GPIO }, /* Lat ECP2 256 FPGA - PB2B */ | 564 | MPP3_GPIO, /* Lat ECP2 256 FPGA - PB2B */ |
565 | { 4, MPP_GPIO }, /* JTAG Data Out */ | 565 | MPP4_GPIO, /* JTAG Data Out */ |
566 | { 5, MPP_GPIO }, /* JTAG TMS */ | 566 | MPP5_GPIO, /* JTAG TMS */ |
567 | { 6, MPP_GPIO }, /* Lat ECP2 256 FPGA - PB31A_CLK4+ */ | 567 | MPP6_GPIO, /* Lat ECP2 256 FPGA - PB31A_CLK4+ */ |
568 | { 7, MPP_GPIO }, /* Lat ECP2 256 FPGA - PB22B */ | 568 | MPP7_GPIO, /* Lat ECP2 256 FPGA - PB22B */ |
569 | { 8, MPP_UNUSED }, | 569 | MPP8_UNUSED, |
570 | { 9, MPP_UNUSED }, | 570 | MPP9_UNUSED, |
571 | { 10, MPP_UNUSED }, | 571 | MPP10_UNUSED, |
572 | { 11, MPP_UNUSED }, | 572 | MPP11_UNUSED, |
573 | { 12, MPP_UNUSED }, | 573 | MPP12_UNUSED, |
574 | { 13, MPP_UNUSED }, | 574 | MPP13_UNUSED, |
575 | { 14, MPP_UNUSED }, | 575 | MPP14_UNUSED, |
576 | { 15, MPP_UNUSED }, | 576 | MPP15_UNUSED, |
577 | { 16, MPP_UART }, | 577 | MPP16_UART, |
578 | { 17, MPP_UART }, | 578 | MPP17_UART, |
579 | { 18, MPP_UART }, | 579 | MPP18_UART, |
580 | { 19, MPP_UART }, | 580 | MPP19_UART, |
581 | /* | 581 | /* |
582 | * MPP[20] PCI Clock Out 1 | 582 | * MPP[20] PCI Clock Out 1 |
583 | * MPP[21] PCI Clock Out 0 | 583 | * MPP[21] PCI Clock Out 0 |
@@ -586,7 +586,7 @@ static struct orion5x_mpp_mode ts78xx_mpp_modes[] __initdata = { | |||
586 | * MPP[24] Unused | 586 | * MPP[24] Unused |
587 | * MPP[25] Unused | 587 | * MPP[25] Unused |
588 | */ | 588 | */ |
589 | { -1 }, | 589 | 0, |
590 | }; | 590 | }; |
591 | 591 | ||
592 | static void __init ts78xx_init(void) | 592 | static void __init ts78xx_init(void) |
diff --git a/arch/arm/mach-orion5x/wnr854t-setup.c b/arch/arm/mach-orion5x/wnr854t-setup.c index 4e5216be0745..444a1c7fdfd6 100644 --- a/arch/arm/mach-orion5x/wnr854t-setup.c +++ b/arch/arm/mach-orion5x/wnr854t-setup.c | |||
@@ -24,28 +24,28 @@ | |||
24 | #include "common.h" | 24 | #include "common.h" |
25 | #include "mpp.h" | 25 | #include "mpp.h" |
26 | 26 | ||
27 | static struct orion5x_mpp_mode wnr854t_mpp_modes[] __initdata = { | 27 | static unsigned int wnr854t_mpp_modes[] __initdata = { |
28 | { 0, MPP_GPIO }, /* Power LED green (0=on) */ | 28 | MPP0_GPIO, /* Power LED green (0=on) */ |
29 | { 1, MPP_GPIO }, /* Reset Button (0=off) */ | 29 | MPP1_GPIO, /* Reset Button (0=off) */ |
30 | { 2, MPP_GPIO }, /* Power LED blink (0=off) */ | 30 | MPP2_GPIO, /* Power LED blink (0=off) */ |
31 | { 3, MPP_GPIO }, /* WAN Status LED amber (0=off) */ | 31 | MPP3_GPIO, /* WAN Status LED amber (0=off) */ |
32 | { 4, MPP_GPIO }, /* PCI int */ | 32 | MPP4_GPIO, /* PCI int */ |
33 | { 5, MPP_GPIO }, /* ??? */ | 33 | MPP5_GPIO, /* ??? */ |
34 | { 6, MPP_GPIO }, /* ??? */ | 34 | MPP6_GPIO, /* ??? */ |
35 | { 7, MPP_GPIO }, /* ??? */ | 35 | MPP7_GPIO, /* ??? */ |
36 | { 8, MPP_UNUSED }, /* ??? */ | 36 | MPP8_UNUSED, /* ??? */ |
37 | { 9, MPP_GIGE }, /* GE_RXERR */ | 37 | MPP9_GIGE, /* GE_RXERR */ |
38 | { 10, MPP_UNUSED }, /* ??? */ | 38 | MPP10_UNUSED, /* ??? */ |
39 | { 11, MPP_UNUSED }, /* ??? */ | 39 | MPP11_UNUSED, /* ??? */ |
40 | { 12, MPP_GIGE }, /* GE_TXD[4] */ | 40 | MPP12_GIGE, /* GE_TXD[4] */ |
41 | { 13, MPP_GIGE }, /* GE_TXD[5] */ | 41 | MPP13_GIGE, /* GE_TXD[5] */ |
42 | { 14, MPP_GIGE }, /* GE_TXD[6] */ | 42 | MPP14_GIGE, /* GE_TXD[6] */ |
43 | { 15, MPP_GIGE }, /* GE_TXD[7] */ | 43 | MPP15_GIGE, /* GE_TXD[7] */ |
44 | { 16, MPP_GIGE }, /* GE_RXD[4] */ | 44 | MPP16_GIGE, /* GE_RXD[4] */ |
45 | { 17, MPP_GIGE }, /* GE_RXD[5] */ | 45 | MPP17_GIGE, /* GE_RXD[5] */ |
46 | { 18, MPP_GIGE }, /* GE_RXD[6] */ | 46 | MPP18_GIGE, /* GE_RXD[6] */ |
47 | { 19, MPP_GIGE }, /* GE_RXD[7] */ | 47 | MPP19_GIGE, /* GE_RXD[7] */ |
48 | { -1 }, | 48 | 0, |
49 | }; | 49 | }; |
50 | 50 | ||
51 | /* | 51 | /* |
diff --git a/arch/arm/mach-orion5x/wrt350n-v2-setup.c b/arch/arm/mach-orion5x/wrt350n-v2-setup.c index fab79d09cc5c..d1952be0ae1c 100644 --- a/arch/arm/mach-orion5x/wrt350n-v2-setup.c +++ b/arch/arm/mach-orion5x/wrt350n-v2-setup.c | |||
@@ -101,28 +101,28 @@ static struct platform_device wrt350n_v2_button_device = { | |||
101 | /* | 101 | /* |
102 | * General setup | 102 | * General setup |
103 | */ | 103 | */ |
104 | static struct orion5x_mpp_mode wrt350n_v2_mpp_modes[] __initdata = { | 104 | static unsigned int wrt350n_v2_mpp_modes[] __initdata = { |
105 | { 0, MPP_GPIO }, /* Power LED green (0=on) */ | 105 | MPP0_GPIO, /* Power LED green (0=on) */ |
106 | { 1, MPP_GPIO }, /* Security LED (0=on) */ | 106 | MPP1_GPIO, /* Security LED (0=on) */ |
107 | { 2, MPP_GPIO }, /* Internal Button (0=on) */ | 107 | MPP2_GPIO, /* Internal Button (0=on) */ |
108 | { 3, MPP_GPIO }, /* Reset Button (0=on) */ | 108 | MPP3_GPIO, /* Reset Button (0=on) */ |
109 | { 4, MPP_GPIO }, /* PCI int */ | 109 | MPP4_GPIO, /* PCI int */ |
110 | { 5, MPP_GPIO }, /* Power LED orange (0=on) */ | 110 | MPP5_GPIO, /* Power LED orange (0=on) */ |
111 | { 6, MPP_GPIO }, /* USB LED (0=on) */ | 111 | MPP6_GPIO, /* USB LED (0=on) */ |
112 | { 7, MPP_GPIO }, /* Wireless LED (0=on) */ | 112 | MPP7_GPIO, /* Wireless LED (0=on) */ |
113 | { 8, MPP_UNUSED }, /* ??? */ | 113 | MPP8_UNUSED, /* ??? */ |
114 | { 9, MPP_GIGE }, /* GE_RXERR */ | 114 | MPP9_GIGE, /* GE_RXERR */ |
115 | { 10, MPP_UNUSED }, /* ??? */ | 115 | MPP10_UNUSED, /* ??? */ |
116 | { 11, MPP_UNUSED }, /* ??? */ | 116 | MPP11_UNUSED, /* ??? */ |
117 | { 12, MPP_GIGE }, /* GE_TXD[4] */ | 117 | MPP12_GIGE, /* GE_TXD[4] */ |
118 | { 13, MPP_GIGE }, /* GE_TXD[5] */ | 118 | MPP13_GIGE, /* GE_TXD[5] */ |
119 | { 14, MPP_GIGE }, /* GE_TXD[6] */ | 119 | MPP14_GIGE, /* GE_TXD[6] */ |
120 | { 15, MPP_GIGE }, /* GE_TXD[7] */ | 120 | MPP15_GIGE, /* GE_TXD[7] */ |
121 | { 16, MPP_GIGE }, /* GE_RXD[4] */ | 121 | MPP16_GIGE, /* GE_RXD[4] */ |
122 | { 17, MPP_GIGE }, /* GE_RXD[5] */ | 122 | MPP17_GIGE, /* GE_RXD[5] */ |
123 | { 18, MPP_GIGE }, /* GE_RXD[6] */ | 123 | MPP18_GIGE, /* GE_RXD[6] */ |
124 | { 19, MPP_GIGE }, /* GE_RXD[7] */ | 124 | MPP19_GIGE, /* GE_RXD[7] */ |
125 | { -1 }, | 125 | 0, |
126 | }; | 126 | }; |
127 | 127 | ||
128 | /* | 128 | /* |
diff --git a/arch/arm/mach-pxa/include/mach/uncompress.h b/arch/arm/mach-pxa/include/mach/uncompress.h index 759b851ec985..5519a34b667f 100644 --- a/arch/arm/mach-pxa/include/mach/uncompress.h +++ b/arch/arm/mach-pxa/include/mach/uncompress.h | |||
@@ -16,9 +16,9 @@ | |||
16 | #define BTUART_BASE (0x40200000) | 16 | #define BTUART_BASE (0x40200000) |
17 | #define STUART_BASE (0x40700000) | 17 | #define STUART_BASE (0x40700000) |
18 | 18 | ||
19 | static unsigned long uart_base; | 19 | unsigned long uart_base; |
20 | static unsigned int uart_shift; | 20 | unsigned int uart_shift; |
21 | static unsigned int uart_is_pxa; | 21 | unsigned int uart_is_pxa; |
22 | 22 | ||
23 | static inline unsigned char uart_read(int offset) | 23 | static inline unsigned char uart_read(int offset) |
24 | { | 24 | { |
diff --git a/arch/arm/mach-rpc/include/mach/uncompress.h b/arch/arm/mach-rpc/include/mach/uncompress.h index 8c9e2c7161c6..9cd9bcdad6cc 100644 --- a/arch/arm/mach-rpc/include/mach/uncompress.h +++ b/arch/arm/mach-rpc/include/mach/uncompress.h | |||
@@ -66,12 +66,12 @@ extern __attribute__((pure)) struct param_struct *params(void); | |||
66 | #define params (params()) | 66 | #define params (params()) |
67 | 67 | ||
68 | #ifndef STANDALONE_DEBUG | 68 | #ifndef STANDALONE_DEBUG |
69 | static unsigned long video_num_cols; | 69 | unsigned long video_num_cols; |
70 | static unsigned long video_num_rows; | 70 | unsigned long video_num_rows; |
71 | static unsigned long video_x; | 71 | unsigned long video_x; |
72 | static unsigned long video_y; | 72 | unsigned long video_y; |
73 | static unsigned char bytes_per_char_v; | 73 | unsigned char bytes_per_char_v; |
74 | static int white; | 74 | int white; |
75 | 75 | ||
76 | /* | 76 | /* |
77 | * This does not append a newline | 77 | * This does not append a newline |
diff --git a/arch/arm/mach-s3c64xx/irq.c b/arch/arm/mach-s3c64xx/irq.c index 67a145d440f3..97660c8141ae 100644 --- a/arch/arm/mach-s3c64xx/irq.c +++ b/arch/arm/mach-s3c64xx/irq.c | |||
@@ -58,12 +58,7 @@ void __init s3c64xx_init_irq(u32 vic0_valid, u32 vic1_valid) | |||
58 | vic_init(VA_VIC1, IRQ_VIC1_BASE, vic1_valid, 0); | 58 | vic_init(VA_VIC1, IRQ_VIC1_BASE, vic1_valid, 0); |
59 | 59 | ||
60 | /* add the timer sub-irqs */ | 60 | /* add the timer sub-irqs */ |
61 | 61 | s3c_init_vic_timer_irq(5, IRQ_TIMER0); | |
62 | s3c_init_vic_timer_irq(IRQ_TIMER0_VIC, IRQ_TIMER0); | ||
63 | s3c_init_vic_timer_irq(IRQ_TIMER1_VIC, IRQ_TIMER1); | ||
64 | s3c_init_vic_timer_irq(IRQ_TIMER2_VIC, IRQ_TIMER2); | ||
65 | s3c_init_vic_timer_irq(IRQ_TIMER3_VIC, IRQ_TIMER3); | ||
66 | s3c_init_vic_timer_irq(IRQ_TIMER4_VIC, IRQ_TIMER4); | ||
67 | 62 | ||
68 | s3c_init_uart_irqs(uart_irqs, ARRAY_SIZE(uart_irqs)); | 63 | s3c_init_uart_irqs(uart_irqs, ARRAY_SIZE(uart_irqs)); |
69 | } | 64 | } |
diff --git a/arch/arm/mach-s5p64x0/include/mach/uncompress.h b/arch/arm/mach-s5p64x0/include/mach/uncompress.h index c65b229aab23..1608faf870ff 100644 --- a/arch/arm/mach-s5p64x0/include/mach/uncompress.h +++ b/arch/arm/mach-s5p64x0/include/mach/uncompress.h | |||
@@ -24,8 +24,8 @@ typedef unsigned int upf_t; /* cannot include linux/serial_core.h */ | |||
24 | 24 | ||
25 | /* uart setup */ | 25 | /* uart setup */ |
26 | 26 | ||
27 | static unsigned int fifo_mask; | 27 | unsigned int fifo_mask; |
28 | static unsigned int fifo_max; | 28 | unsigned int fifo_max; |
29 | 29 | ||
30 | /* forward declerations */ | 30 | /* forward declerations */ |
31 | 31 | ||
@@ -43,7 +43,7 @@ static void arch_detect_cpu(void); | |||
43 | /* how many bytes we allow into the FIFO at a time in FIFO mode */ | 43 | /* how many bytes we allow into the FIFO at a time in FIFO mode */ |
44 | #define FIFO_MAX (14) | 44 | #define FIFO_MAX (14) |
45 | 45 | ||
46 | static unsigned long uart_base; | 46 | unsigned long uart_base; |
47 | 47 | ||
48 | static __inline__ void get_uart_base(void) | 48 | static __inline__ void get_uart_base(void) |
49 | { | 49 | { |
diff --git a/arch/arm/mach-tegra/Makefile b/arch/arm/mach-tegra/Makefile index 1afe05038c27..823c703e573c 100644 --- a/arch/arm/mach-tegra/Makefile +++ b/arch/arm/mach-tegra/Makefile | |||
@@ -1,7 +1,7 @@ | |||
1 | obj-y += common.o | 1 | obj-y += common.o |
2 | obj-y += devices.o | 2 | obj-y += devices.o |
3 | obj-y += io.o | 3 | obj-y += io.o |
4 | obj-y += irq.o legacy_irq.o | 4 | obj-y += irq.o |
5 | obj-y += clock.o | 5 | obj-y += clock.o |
6 | obj-y += timer.o | 6 | obj-y += timer.o |
7 | obj-y += gpio.o | 7 | obj-y += gpio.o |
diff --git a/arch/arm/mach-tegra/gpio.c b/arch/arm/mach-tegra/gpio.c index 65a1aba6823d..919d63837736 100644 --- a/arch/arm/mach-tegra/gpio.c +++ b/arch/arm/mach-tegra/gpio.c | |||
@@ -24,6 +24,8 @@ | |||
24 | #include <linux/io.h> | 24 | #include <linux/io.h> |
25 | #include <linux/gpio.h> | 25 | #include <linux/gpio.h> |
26 | 26 | ||
27 | #include <asm/mach/irq.h> | ||
28 | |||
27 | #include <mach/iomap.h> | 29 | #include <mach/iomap.h> |
28 | #include <mach/suspend.h> | 30 | #include <mach/suspend.h> |
29 | 31 | ||
@@ -221,8 +223,9 @@ static void tegra_gpio_irq_handler(unsigned int irq, struct irq_desc *desc) | |||
221 | int port; | 223 | int port; |
222 | int pin; | 224 | int pin; |
223 | int unmasked = 0; | 225 | int unmasked = 0; |
226 | struct irq_chip *chip = irq_desc_get_chip(desc); | ||
224 | 227 | ||
225 | desc->irq_data.chip->irq_ack(&desc->irq_data); | 228 | chained_irq_enter(chip, desc); |
226 | 229 | ||
227 | bank = irq_get_handler_data(irq); | 230 | bank = irq_get_handler_data(irq); |
228 | 231 | ||
@@ -241,7 +244,7 @@ static void tegra_gpio_irq_handler(unsigned int irq, struct irq_desc *desc) | |||
241 | */ | 244 | */ |
242 | if (lvl & (0x100 << pin)) { | 245 | if (lvl & (0x100 << pin)) { |
243 | unmasked = 1; | 246 | unmasked = 1; |
244 | desc->irq_data.chip->irq_unmask(&desc->irq_data); | 247 | chained_irq_exit(chip, desc); |
245 | } | 248 | } |
246 | 249 | ||
247 | generic_handle_irq(gpio_to_irq(gpio + pin)); | 250 | generic_handle_irq(gpio_to_irq(gpio + pin)); |
@@ -249,7 +252,7 @@ static void tegra_gpio_irq_handler(unsigned int irq, struct irq_desc *desc) | |||
249 | } | 252 | } |
250 | 253 | ||
251 | if (!unmasked) | 254 | if (!unmasked) |
252 | desc->irq_data.chip->irq_unmask(&desc->irq_data); | 255 | chained_irq_exit(chip, desc); |
253 | 256 | ||
254 | } | 257 | } |
255 | 258 | ||
diff --git a/arch/arm/mach-tegra/include/mach/legacy_irq.h b/arch/arm/mach-tegra/include/mach/legacy_irq.h deleted file mode 100644 index d898c0e3d905..000000000000 --- a/arch/arm/mach-tegra/include/mach/legacy_irq.h +++ /dev/null | |||
@@ -1,35 +0,0 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-tegra/include/mach/legacy_irq.h | ||
3 | * | ||
4 | * Copyright (C) 2010 Google, Inc. | ||
5 | * Author: Colin Cross <ccross@android.com> | ||
6 | * | ||
7 | * This software is licensed under the terms of the GNU General Public | ||
8 | * License version 2, as published by the Free Software Foundation, and | ||
9 | * may be copied, distributed, and modified under those terms. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | * GNU General Public License for more details. | ||
15 | * | ||
16 | */ | ||
17 | |||
18 | #ifndef _ARCH_ARM_MACH_TEGRA_LEGARY_IRQ_H | ||
19 | #define _ARCH_ARM_MACH_TEGRA_LEGARY_IRQ_H | ||
20 | |||
21 | void tegra_legacy_mask_irq(unsigned int irq); | ||
22 | void tegra_legacy_unmask_irq(unsigned int irq); | ||
23 | void tegra_legacy_select_fiq(unsigned int irq, bool fiq); | ||
24 | void tegra_legacy_force_irq_set(unsigned int irq); | ||
25 | void tegra_legacy_force_irq_clr(unsigned int irq); | ||
26 | int tegra_legacy_force_irq_status(unsigned int irq); | ||
27 | void tegra_legacy_select_fiq(unsigned int irq, bool fiq); | ||
28 | unsigned long tegra_legacy_vfiq(int nr); | ||
29 | unsigned long tegra_legacy_class(int nr); | ||
30 | int tegra_legacy_irq_set_wake(int irq, int enable); | ||
31 | void tegra_legacy_irq_set_lp1_wake_mask(void); | ||
32 | void tegra_legacy_irq_restore_mask(void); | ||
33 | void tegra_init_legacy_irq(void); | ||
34 | |||
35 | #endif | ||
diff --git a/arch/arm/mach-tegra/irq.c b/arch/arm/mach-tegra/irq.c index 4330d8995b27..4956c3cea731 100644 --- a/arch/arm/mach-tegra/irq.c +++ b/arch/arm/mach-tegra/irq.c | |||
@@ -1,8 +1,8 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2010 Google, Inc. | 2 | * Copyright (C) 2011 Google, Inc. |
3 | * | 3 | * |
4 | * Author: | 4 | * Author: |
5 | * Colin Cross <ccross@google.com> | 5 | * Colin Cross <ccross@android.com> |
6 | * | 6 | * |
7 | * Copyright (C) 2010, NVIDIA Corporation | 7 | * Copyright (C) 2010, NVIDIA Corporation |
8 | * | 8 | * |
@@ -18,8 +18,6 @@ | |||
18 | */ | 18 | */ |
19 | 19 | ||
20 | #include <linux/kernel.h> | 20 | #include <linux/kernel.h> |
21 | #include <linux/delay.h> | ||
22 | #include <linux/init.h> | ||
23 | #include <linux/interrupt.h> | 21 | #include <linux/interrupt.h> |
24 | #include <linux/irq.h> | 22 | #include <linux/irq.h> |
25 | #include <linux/io.h> | 23 | #include <linux/io.h> |
@@ -27,134 +25,110 @@ | |||
27 | #include <asm/hardware/gic.h> | 25 | #include <asm/hardware/gic.h> |
28 | 26 | ||
29 | #include <mach/iomap.h> | 27 | #include <mach/iomap.h> |
30 | #include <mach/legacy_irq.h> | ||
31 | #include <mach/suspend.h> | ||
32 | 28 | ||
33 | #include "board.h" | 29 | #include "board.h" |
34 | 30 | ||
35 | #define PMC_CTRL 0x0 | 31 | #define INT_SYS_NR (INT_GPIO_BASE - INT_PRI_BASE) |
36 | #define PMC_CTRL_LATCH_WAKEUPS (1 << 5) | 32 | #define INT_SYS_SZ (INT_SEC_BASE - INT_PRI_BASE) |
37 | #define PMC_WAKE_MASK 0xc | 33 | #define PPI_NR ((INT_SYS_NR+INT_SYS_SZ-1)/INT_SYS_SZ) |
38 | #define PMC_WAKE_LEVEL 0x10 | 34 | |
39 | #define PMC_WAKE_STATUS 0x14 | 35 | #define ICTLR_CPU_IEP_VFIQ 0x08 |
40 | #define PMC_SW_WAKE_STATUS 0x18 | 36 | #define ICTLR_CPU_IEP_FIR 0x14 |
41 | #define PMC_DPD_SAMPLE 0x20 | 37 | #define ICTLR_CPU_IEP_FIR_SET 0x18 |
38 | #define ICTLR_CPU_IEP_FIR_CLR 0x1c | ||
39 | |||
40 | #define ICTLR_CPU_IER 0x20 | ||
41 | #define ICTLR_CPU_IER_SET 0x24 | ||
42 | #define ICTLR_CPU_IER_CLR 0x28 | ||
43 | #define ICTLR_CPU_IEP_CLASS 0x2C | ||
44 | |||
45 | #define ICTLR_COP_IER 0x30 | ||
46 | #define ICTLR_COP_IER_SET 0x34 | ||
47 | #define ICTLR_COP_IER_CLR 0x38 | ||
48 | #define ICTLR_COP_IEP_CLASS 0x3c | ||
49 | |||
50 | #define NUM_ICTLRS 4 | ||
51 | #define FIRST_LEGACY_IRQ 32 | ||
52 | |||
53 | static void __iomem *ictlr_reg_base[] = { | ||
54 | IO_ADDRESS(TEGRA_PRIMARY_ICTLR_BASE), | ||
55 | IO_ADDRESS(TEGRA_SECONDARY_ICTLR_BASE), | ||
56 | IO_ADDRESS(TEGRA_TERTIARY_ICTLR_BASE), | ||
57 | IO_ADDRESS(TEGRA_QUATERNARY_ICTLR_BASE), | ||
58 | }; | ||
42 | 59 | ||
43 | static void __iomem *pmc = IO_ADDRESS(TEGRA_PMC_BASE); | 60 | static inline void tegra_irq_write_mask(unsigned int irq, unsigned long reg) |
61 | { | ||
62 | void __iomem *base; | ||
63 | u32 mask; | ||
44 | 64 | ||
45 | static u32 tegra_lp0_wake_enb; | 65 | BUG_ON(irq < FIRST_LEGACY_IRQ || |
46 | static u32 tegra_lp0_wake_level; | 66 | irq >= FIRST_LEGACY_IRQ + NUM_ICTLRS * 32); |
47 | static u32 tegra_lp0_wake_level_any; | ||
48 | 67 | ||
49 | static void (*tegra_gic_mask_irq)(struct irq_data *d); | 68 | base = ictlr_reg_base[(irq - FIRST_LEGACY_IRQ) / 32]; |
50 | static void (*tegra_gic_unmask_irq)(struct irq_data *d); | 69 | mask = BIT((irq - FIRST_LEGACY_IRQ) % 32); |
51 | static void (*tegra_gic_ack_irq)(struct irq_data *d); | ||
52 | 70 | ||
53 | /* ensures that sufficient time is passed for a register write to | 71 | __raw_writel(mask, base + reg); |
54 | * serialize into the 32KHz domain */ | ||
55 | static void pmc_32kwritel(u32 val, unsigned long offs) | ||
56 | { | ||
57 | writel(val, pmc + offs); | ||
58 | udelay(130); | ||
59 | } | 72 | } |
60 | 73 | ||
61 | int tegra_set_lp1_wake(int irq, int enable) | 74 | static void tegra_mask(struct irq_data *d) |
62 | { | 75 | { |
63 | return tegra_legacy_irq_set_wake(irq, enable); | 76 | if (d->irq < FIRST_LEGACY_IRQ) |
77 | return; | ||
78 | |||
79 | tegra_irq_write_mask(d->irq, ICTLR_CPU_IER_CLR); | ||
64 | } | 80 | } |
65 | 81 | ||
66 | void tegra_set_lp0_wake_pads(u32 wake_enb, u32 wake_level, u32 wake_any) | 82 | static void tegra_unmask(struct irq_data *d) |
67 | { | 83 | { |
68 | u32 temp; | 84 | if (d->irq < FIRST_LEGACY_IRQ) |
69 | u32 status; | 85 | return; |
70 | u32 lvl; | ||
71 | |||
72 | wake_level &= wake_enb; | ||
73 | wake_any &= wake_enb; | ||
74 | 86 | ||
75 | wake_level |= (tegra_lp0_wake_level & tegra_lp0_wake_enb); | 87 | tegra_irq_write_mask(d->irq, ICTLR_CPU_IER_SET); |
76 | wake_any |= (tegra_lp0_wake_level_any & tegra_lp0_wake_enb); | ||
77 | |||
78 | wake_enb |= tegra_lp0_wake_enb; | ||
79 | |||
80 | pmc_32kwritel(0, PMC_SW_WAKE_STATUS); | ||
81 | temp = readl(pmc + PMC_CTRL); | ||
82 | temp |= PMC_CTRL_LATCH_WAKEUPS; | ||
83 | pmc_32kwritel(temp, PMC_CTRL); | ||
84 | temp &= ~PMC_CTRL_LATCH_WAKEUPS; | ||
85 | pmc_32kwritel(temp, PMC_CTRL); | ||
86 | status = readl(pmc + PMC_SW_WAKE_STATUS); | ||
87 | lvl = readl(pmc + PMC_WAKE_LEVEL); | ||
88 | |||
89 | /* flip the wakeup trigger for any-edge triggered pads | ||
90 | * which are currently asserting as wakeups */ | ||
91 | lvl ^= status; | ||
92 | lvl &= wake_any; | ||
93 | |||
94 | wake_level |= lvl; | ||
95 | |||
96 | writel(wake_level, pmc + PMC_WAKE_LEVEL); | ||
97 | /* Enable DPD sample to trigger sampling pads data and direction | ||
98 | * in which pad will be driven during lp0 mode*/ | ||
99 | writel(0x1, pmc + PMC_DPD_SAMPLE); | ||
100 | |||
101 | writel(wake_enb, pmc + PMC_WAKE_MASK); | ||
102 | } | 88 | } |
103 | 89 | ||
104 | static void tegra_mask(struct irq_data *d) | 90 | static void tegra_ack(struct irq_data *d) |
105 | { | 91 | { |
106 | tegra_gic_mask_irq(d); | 92 | if (d->irq < FIRST_LEGACY_IRQ) |
107 | tegra_legacy_mask_irq(d->irq); | 93 | return; |
108 | } | ||
109 | 94 | ||
110 | static void tegra_unmask(struct irq_data *d) | 95 | tegra_irq_write_mask(d->irq, ICTLR_CPU_IEP_FIR_CLR); |
111 | { | ||
112 | tegra_gic_unmask_irq(d); | ||
113 | tegra_legacy_unmask_irq(d->irq); | ||
114 | } | 96 | } |
115 | 97 | ||
116 | static void tegra_ack(struct irq_data *d) | 98 | static void tegra_eoi(struct irq_data *d) |
117 | { | 99 | { |
118 | tegra_legacy_force_irq_clr(d->irq); | 100 | if (d->irq < FIRST_LEGACY_IRQ) |
119 | tegra_gic_ack_irq(d); | 101 | return; |
102 | |||
103 | tegra_irq_write_mask(d->irq, ICTLR_CPU_IEP_FIR_CLR); | ||
120 | } | 104 | } |
121 | 105 | ||
122 | static int tegra_retrigger(struct irq_data *d) | 106 | static int tegra_retrigger(struct irq_data *d) |
123 | { | 107 | { |
124 | tegra_legacy_force_irq_set(d->irq); | 108 | if (d->irq < FIRST_LEGACY_IRQ) |
109 | return 0; | ||
110 | |||
111 | tegra_irq_write_mask(d->irq, ICTLR_CPU_IEP_FIR_SET); | ||
112 | |||
125 | return 1; | 113 | return 1; |
126 | } | 114 | } |
127 | 115 | ||
128 | static struct irq_chip tegra_irq = { | ||
129 | .name = "PPI", | ||
130 | .irq_ack = tegra_ack, | ||
131 | .irq_mask = tegra_mask, | ||
132 | .irq_unmask = tegra_unmask, | ||
133 | .irq_retrigger = tegra_retrigger, | ||
134 | }; | ||
135 | |||
136 | void __init tegra_init_irq(void) | 116 | void __init tegra_init_irq(void) |
137 | { | 117 | { |
138 | struct irq_chip *gic; | 118 | int i; |
139 | unsigned int i; | ||
140 | int irq; | ||
141 | 119 | ||
142 | tegra_init_legacy_irq(); | 120 | for (i = 0; i < NUM_ICTLRS; i++) { |
121 | void __iomem *ictlr = ictlr_reg_base[i]; | ||
122 | writel(~0, ictlr + ICTLR_CPU_IER_CLR); | ||
123 | writel(0, ictlr + ICTLR_CPU_IEP_CLASS); | ||
124 | } | ||
125 | |||
126 | gic_arch_extn.irq_ack = tegra_ack; | ||
127 | gic_arch_extn.irq_eoi = tegra_eoi; | ||
128 | gic_arch_extn.irq_mask = tegra_mask; | ||
129 | gic_arch_extn.irq_unmask = tegra_unmask; | ||
130 | gic_arch_extn.irq_retrigger = tegra_retrigger; | ||
143 | 131 | ||
144 | gic_init(0, 29, IO_ADDRESS(TEGRA_ARM_INT_DIST_BASE), | 132 | gic_init(0, 29, IO_ADDRESS(TEGRA_ARM_INT_DIST_BASE), |
145 | IO_ADDRESS(TEGRA_ARM_PERIF_BASE + 0x100)); | 133 | IO_ADDRESS(TEGRA_ARM_PERIF_BASE + 0x100)); |
146 | |||
147 | gic = irq_get_chip(29); | ||
148 | tegra_gic_unmask_irq = gic->irq_unmask; | ||
149 | tegra_gic_mask_irq = gic->irq_mask; | ||
150 | tegra_gic_ack_irq = gic->irq_ack; | ||
151 | #ifdef CONFIG_SMP | ||
152 | tegra_irq.irq_set_affinity = gic->irq_set_affinity; | ||
153 | #endif | ||
154 | |||
155 | for (i = 0; i < INT_MAIN_NR; i++) { | ||
156 | irq = INT_PRI_BASE + i; | ||
157 | irq_set_chip_and_handler(irq, &tegra_irq, handle_level_irq); | ||
158 | set_irq_flags(irq, IRQF_VALID); | ||
159 | } | ||
160 | } | 134 | } |
diff --git a/arch/arm/mach-tegra/legacy_irq.c b/arch/arm/mach-tegra/legacy_irq.c deleted file mode 100644 index 38eb719a4f53..000000000000 --- a/arch/arm/mach-tegra/legacy_irq.c +++ /dev/null | |||
@@ -1,215 +0,0 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-tegra/legacy_irq.c | ||
3 | * | ||
4 | * Copyright (C) 2010 Google, Inc. | ||
5 | * Author: Colin Cross <ccross@android.com> | ||
6 | * | ||
7 | * This software is licensed under the terms of the GNU General Public | ||
8 | * License version 2, as published by the Free Software Foundation, and | ||
9 | * may be copied, distributed, and modified under those terms. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | * GNU General Public License for more details. | ||
15 | * | ||
16 | */ | ||
17 | |||
18 | #include <linux/io.h> | ||
19 | #include <linux/kernel.h> | ||
20 | #include <mach/iomap.h> | ||
21 | #include <mach/irqs.h> | ||
22 | #include <mach/legacy_irq.h> | ||
23 | |||
24 | #define INT_SYS_NR (INT_GPIO_BASE - INT_PRI_BASE) | ||
25 | #define INT_SYS_SZ (INT_SEC_BASE - INT_PRI_BASE) | ||
26 | #define PPI_NR ((INT_SYS_NR+INT_SYS_SZ-1)/INT_SYS_SZ) | ||
27 | |||
28 | #define ICTLR_CPU_IEP_VFIQ 0x08 | ||
29 | #define ICTLR_CPU_IEP_FIR 0x14 | ||
30 | #define ICTLR_CPU_IEP_FIR_SET 0x18 | ||
31 | #define ICTLR_CPU_IEP_FIR_CLR 0x1c | ||
32 | |||
33 | #define ICTLR_CPU_IER 0x20 | ||
34 | #define ICTLR_CPU_IER_SET 0x24 | ||
35 | #define ICTLR_CPU_IER_CLR 0x28 | ||
36 | #define ICTLR_CPU_IEP_CLASS 0x2C | ||
37 | |||
38 | #define ICTLR_COP_IER 0x30 | ||
39 | #define ICTLR_COP_IER_SET 0x34 | ||
40 | #define ICTLR_COP_IER_CLR 0x38 | ||
41 | #define ICTLR_COP_IEP_CLASS 0x3c | ||
42 | |||
43 | #define NUM_ICTLRS 4 | ||
44 | |||
45 | static void __iomem *ictlr_reg_base[] = { | ||
46 | IO_ADDRESS(TEGRA_PRIMARY_ICTLR_BASE), | ||
47 | IO_ADDRESS(TEGRA_SECONDARY_ICTLR_BASE), | ||
48 | IO_ADDRESS(TEGRA_TERTIARY_ICTLR_BASE), | ||
49 | IO_ADDRESS(TEGRA_QUATERNARY_ICTLR_BASE), | ||
50 | }; | ||
51 | |||
52 | static u32 tegra_legacy_wake_mask[4]; | ||
53 | static u32 tegra_legacy_saved_mask[4]; | ||
54 | |||
55 | /* When going into deep sleep, the CPU is powered down, taking the GIC with it | ||
56 | In order to wake, the wake interrupts need to be enabled in the legacy | ||
57 | interrupt controller. */ | ||
58 | void tegra_legacy_unmask_irq(unsigned int irq) | ||
59 | { | ||
60 | void __iomem *base; | ||
61 | pr_debug("%s: %d\n", __func__, irq); | ||
62 | |||
63 | irq -= 32; | ||
64 | base = ictlr_reg_base[irq>>5]; | ||
65 | writel(1 << (irq & 31), base + ICTLR_CPU_IER_SET); | ||
66 | } | ||
67 | |||
68 | void tegra_legacy_mask_irq(unsigned int irq) | ||
69 | { | ||
70 | void __iomem *base; | ||
71 | pr_debug("%s: %d\n", __func__, irq); | ||
72 | |||
73 | irq -= 32; | ||
74 | base = ictlr_reg_base[irq>>5]; | ||
75 | writel(1 << (irq & 31), base + ICTLR_CPU_IER_CLR); | ||
76 | } | ||
77 | |||
78 | void tegra_legacy_force_irq_set(unsigned int irq) | ||
79 | { | ||
80 | void __iomem *base; | ||
81 | pr_debug("%s: %d\n", __func__, irq); | ||
82 | |||
83 | irq -= 32; | ||
84 | base = ictlr_reg_base[irq>>5]; | ||
85 | writel(1 << (irq & 31), base + ICTLR_CPU_IEP_FIR_SET); | ||
86 | } | ||
87 | |||
88 | void tegra_legacy_force_irq_clr(unsigned int irq) | ||
89 | { | ||
90 | void __iomem *base; | ||
91 | pr_debug("%s: %d\n", __func__, irq); | ||
92 | |||
93 | irq -= 32; | ||
94 | base = ictlr_reg_base[irq>>5]; | ||
95 | writel(1 << (irq & 31), base + ICTLR_CPU_IEP_FIR_CLR); | ||
96 | } | ||
97 | |||
98 | int tegra_legacy_force_irq_status(unsigned int irq) | ||
99 | { | ||
100 | void __iomem *base; | ||
101 | pr_debug("%s: %d\n", __func__, irq); | ||
102 | |||
103 | irq -= 32; | ||
104 | base = ictlr_reg_base[irq>>5]; | ||
105 | return !!(readl(base + ICTLR_CPU_IEP_FIR) & (1 << (irq & 31))); | ||
106 | } | ||
107 | |||
108 | void tegra_legacy_select_fiq(unsigned int irq, bool fiq) | ||
109 | { | ||
110 | void __iomem *base; | ||
111 | pr_debug("%s: %d\n", __func__, irq); | ||
112 | |||
113 | irq -= 32; | ||
114 | base = ictlr_reg_base[irq>>5]; | ||
115 | writel(fiq << (irq & 31), base + ICTLR_CPU_IEP_CLASS); | ||
116 | } | ||
117 | |||
118 | unsigned long tegra_legacy_vfiq(int nr) | ||
119 | { | ||
120 | void __iomem *base; | ||
121 | base = ictlr_reg_base[nr]; | ||
122 | return readl(base + ICTLR_CPU_IEP_VFIQ); | ||
123 | } | ||
124 | |||
125 | unsigned long tegra_legacy_class(int nr) | ||
126 | { | ||
127 | void __iomem *base; | ||
128 | base = ictlr_reg_base[nr]; | ||
129 | return readl(base + ICTLR_CPU_IEP_CLASS); | ||
130 | } | ||
131 | |||
132 | int tegra_legacy_irq_set_wake(int irq, int enable) | ||
133 | { | ||
134 | irq -= 32; | ||
135 | if (enable) | ||
136 | tegra_legacy_wake_mask[irq >> 5] |= 1 << (irq & 31); | ||
137 | else | ||
138 | tegra_legacy_wake_mask[irq >> 5] &= ~(1 << (irq & 31)); | ||
139 | |||
140 | return 0; | ||
141 | } | ||
142 | |||
143 | void tegra_legacy_irq_set_lp1_wake_mask(void) | ||
144 | { | ||
145 | void __iomem *base; | ||
146 | int i; | ||
147 | |||
148 | for (i = 0; i < NUM_ICTLRS; i++) { | ||
149 | base = ictlr_reg_base[i]; | ||
150 | tegra_legacy_saved_mask[i] = readl(base + ICTLR_CPU_IER); | ||
151 | writel(tegra_legacy_wake_mask[i], base + ICTLR_CPU_IER); | ||
152 | } | ||
153 | } | ||
154 | |||
155 | void tegra_legacy_irq_restore_mask(void) | ||
156 | { | ||
157 | void __iomem *base; | ||
158 | int i; | ||
159 | |||
160 | for (i = 0; i < NUM_ICTLRS; i++) { | ||
161 | base = ictlr_reg_base[i]; | ||
162 | writel(tegra_legacy_saved_mask[i], base + ICTLR_CPU_IER); | ||
163 | } | ||
164 | } | ||
165 | |||
166 | void tegra_init_legacy_irq(void) | ||
167 | { | ||
168 | int i; | ||
169 | |||
170 | for (i = 0; i < NUM_ICTLRS; i++) { | ||
171 | void __iomem *ictlr = ictlr_reg_base[i]; | ||
172 | writel(~0, ictlr + ICTLR_CPU_IER_CLR); | ||
173 | writel(0, ictlr + ICTLR_CPU_IEP_CLASS); | ||
174 | } | ||
175 | } | ||
176 | |||
177 | #ifdef CONFIG_PM | ||
178 | static u32 cop_ier[NUM_ICTLRS]; | ||
179 | static u32 cpu_ier[NUM_ICTLRS]; | ||
180 | static u32 cpu_iep[NUM_ICTLRS]; | ||
181 | |||
182 | void tegra_irq_suspend(void) | ||
183 | { | ||
184 | unsigned long flags; | ||
185 | int i; | ||
186 | |||
187 | local_irq_save(flags); | ||
188 | for (i = 0; i < NUM_ICTLRS; i++) { | ||
189 | void __iomem *ictlr = ictlr_reg_base[i]; | ||
190 | cpu_ier[i] = readl(ictlr + ICTLR_CPU_IER); | ||
191 | cpu_iep[i] = readl(ictlr + ICTLR_CPU_IEP_CLASS); | ||
192 | cop_ier[i] = readl(ictlr + ICTLR_COP_IER); | ||
193 | writel(~0, ictlr + ICTLR_COP_IER_CLR); | ||
194 | } | ||
195 | local_irq_restore(flags); | ||
196 | } | ||
197 | |||
198 | void tegra_irq_resume(void) | ||
199 | { | ||
200 | unsigned long flags; | ||
201 | int i; | ||
202 | |||
203 | local_irq_save(flags); | ||
204 | for (i = 0; i < NUM_ICTLRS; i++) { | ||
205 | void __iomem *ictlr = ictlr_reg_base[i]; | ||
206 | writel(cpu_iep[i], ictlr + ICTLR_CPU_IEP_CLASS); | ||
207 | writel(~0ul, ictlr + ICTLR_CPU_IER_CLR); | ||
208 | writel(cpu_ier[i], ictlr + ICTLR_CPU_IER_SET); | ||
209 | writel(0, ictlr + ICTLR_COP_IEP_CLASS); | ||
210 | writel(~0ul, ictlr + ICTLR_COP_IER_CLR); | ||
211 | writel(cop_ier[i], ictlr + ICTLR_COP_IER_SET); | ||
212 | } | ||
213 | local_irq_restore(flags); | ||
214 | } | ||
215 | #endif | ||
diff --git a/arch/arm/mach-ux500/include/mach/uncompress.h b/arch/arm/mach-ux500/include/mach/uncompress.h index ab0fe1432fae..088b550c40df 100644 --- a/arch/arm/mach-ux500/include/mach/uncompress.h +++ b/arch/arm/mach-ux500/include/mach/uncompress.h | |||
@@ -24,7 +24,7 @@ | |||
24 | #include <linux/amba/serial.h> | 24 | #include <linux/amba/serial.h> |
25 | #include <mach/hardware.h> | 25 | #include <mach/hardware.h> |
26 | 26 | ||
27 | static u32 ux500_uart_base; | 27 | u32 ux500_uart_base; |
28 | 28 | ||
29 | static void putc(const char c) | 29 | static void putc(const char c) |
30 | { | 30 | { |
diff --git a/arch/arm/mach-w90x900/include/mach/uncompress.h b/arch/arm/mach-w90x900/include/mach/uncompress.h index 56f1a74d7016..03130212ace2 100644 --- a/arch/arm/mach-w90x900/include/mach/uncompress.h +++ b/arch/arm/mach-w90x900/include/mach/uncompress.h | |||
@@ -27,7 +27,7 @@ | |||
27 | #define arch_decomp_wdog() | 27 | #define arch_decomp_wdog() |
28 | 28 | ||
29 | #define TX_DONE (UART_LSR_TEMT | UART_LSR_THRE) | 29 | #define TX_DONE (UART_LSR_TEMT | UART_LSR_THRE) |
30 | static volatile u32 * uart_base = (u32 *)UART0_PA; | 30 | static volatile u32 * const uart_base = (u32 *)UART0_PA; |
31 | 31 | ||
32 | static void putc(int ch) | 32 | static void putc(int ch) |
33 | { | 33 | { |
diff --git a/arch/arm/mm/proc-v6.S b/arch/arm/mm/proc-v6.S index 7c99cb4c8e4f..ab17cc0d3fa7 100644 --- a/arch/arm/mm/proc-v6.S +++ b/arch/arm/mm/proc-v6.S | |||
@@ -175,11 +175,6 @@ cpu_v6_name: | |||
175 | .asciz "ARMv6-compatible processor" | 175 | .asciz "ARMv6-compatible processor" |
176 | .size cpu_v6_name, . - cpu_v6_name | 176 | .size cpu_v6_name, . - cpu_v6_name |
177 | 177 | ||
178 | .type cpu_pj4_name, #object | ||
179 | cpu_pj4_name: | ||
180 | .asciz "Marvell PJ4 processor" | ||
181 | .size cpu_pj4_name, . - cpu_pj4_name | ||
182 | |||
183 | .align | 178 | .align |
184 | 179 | ||
185 | __CPUINIT | 180 | __CPUINIT |
@@ -305,32 +300,3 @@ __v6_proc_info: | |||
305 | .long v6_user_fns | 300 | .long v6_user_fns |
306 | .long v6_cache_fns | 301 | .long v6_cache_fns |
307 | .size __v6_proc_info, . - __v6_proc_info | 302 | .size __v6_proc_info, . - __v6_proc_info |
308 | |||
309 | .type __pj4_v6_proc_info, #object | ||
310 | __pj4_v6_proc_info: | ||
311 | .long 0x560f5810 | ||
312 | .long 0xff0ffff0 | ||
313 | ALT_SMP(.long \ | ||
314 | PMD_TYPE_SECT | \ | ||
315 | PMD_SECT_AP_WRITE | \ | ||
316 | PMD_SECT_AP_READ | \ | ||
317 | PMD_FLAGS_SMP) | ||
318 | ALT_UP(.long \ | ||
319 | PMD_TYPE_SECT | \ | ||
320 | PMD_SECT_AP_WRITE | \ | ||
321 | PMD_SECT_AP_READ | \ | ||
322 | PMD_FLAGS_UP) | ||
323 | .long PMD_TYPE_SECT | \ | ||
324 | PMD_SECT_XN | \ | ||
325 | PMD_SECT_AP_WRITE | \ | ||
326 | PMD_SECT_AP_READ | ||
327 | b __v6_setup | ||
328 | .long cpu_arch_name | ||
329 | .long cpu_elf_name | ||
330 | .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP|HWCAP_TLS | ||
331 | .long cpu_pj4_name | ||
332 | .long v6_processor_functions | ||
333 | .long v6wbi_tlb_fns | ||
334 | .long v6_user_fns | ||
335 | .long v6_cache_fns | ||
336 | .size __pj4_v6_proc_info, . - __pj4_v6_proc_info | ||
diff --git a/arch/arm/plat-mxc/Kconfig b/arch/arm/plat-mxc/Kconfig index b0cb4258e382..a5353fc0793f 100644 --- a/arch/arm/plat-mxc/Kconfig +++ b/arch/arm/plat-mxc/Kconfig | |||
@@ -4,13 +4,18 @@ source "arch/arm/plat-mxc/devices/Kconfig" | |||
4 | 4 | ||
5 | menu "Freescale MXC Implementations" | 5 | menu "Freescale MXC Implementations" |
6 | 6 | ||
7 | config ARCH_MX50_SUPPORTED | ||
8 | bool | ||
9 | |||
10 | config ARCH_MX53_SUPPORTED | ||
11 | bool | ||
12 | |||
7 | choice | 13 | choice |
8 | prompt "Freescale CPU family:" | 14 | prompt "Freescale CPU family:" |
9 | default ARCH_MX3 | 15 | default ARCH_MX3 |
10 | 16 | ||
11 | config ARCH_MX1 | 17 | config ARCH_MX1 |
12 | bool "MX1-based" | 18 | bool "MX1-based" |
13 | select SOC_IMX1 | ||
14 | help | 19 | help |
15 | This enables support for systems based on the Freescale i.MX1 family | 20 | This enables support for systems based on the Freescale i.MX1 family |
16 | 21 | ||
@@ -26,29 +31,26 @@ config ARCH_MX25 | |||
26 | 31 | ||
27 | config ARCH_MX3 | 32 | config ARCH_MX3 |
28 | bool "MX3-based" | 33 | bool "MX3-based" |
29 | select CPU_V6 | ||
30 | help | 34 | help |
31 | This enables support for systems based on the Freescale i.MX3 family | 35 | This enables support for systems based on the Freescale i.MX3 family |
32 | 36 | ||
33 | config ARCH_MXC91231 | 37 | config ARCH_MX503 |
34 | bool "MXC91231-based" | 38 | bool "i.MX50 + i.MX53" |
35 | select CPU_V6 | 39 | select ARCH_MX50_SUPPORTED |
36 | select MXC_AVIC | 40 | select ARCH_MX53_SUPPORTED |
37 | help | 41 | help |
38 | This enables support for systems based on the Freescale MXC91231 family | 42 | This enables support for machines using Freescale's i.MX50 and i.MX51 |
43 | processors. | ||
39 | 44 | ||
40 | config ARCH_MX5 | 45 | config ARCH_MX51 |
41 | bool "MX5-based" | 46 | bool "i.MX51" |
42 | select CPU_V7 | 47 | select ARCH_MX51_SUPPORTED |
43 | select ARM_L1_CACHE_SHIFT_6 | ||
44 | help | 48 | help |
45 | This enables support for systems based on the Freescale i.MX51 family | 49 | This enables support for systems based on the Freescale i.MX51 family |
46 | 50 | ||
47 | endchoice | 51 | endchoice |
48 | 52 | ||
49 | source "arch/arm/mach-imx/Kconfig" | 53 | source "arch/arm/mach-imx/Kconfig" |
50 | source "arch/arm/mach-mx3/Kconfig" | ||
51 | source "arch/arm/mach-mxc91231/Kconfig" | ||
52 | source "arch/arm/mach-mx5/Kconfig" | 54 | source "arch/arm/mach-mx5/Kconfig" |
53 | 55 | ||
54 | endmenu | 56 | endmenu |
diff --git a/arch/arm/plat-mxc/devices/Kconfig b/arch/arm/plat-mxc/devices/Kconfig index b9ab1d58b5e7..bd294add932c 100644 --- a/arch/arm/plat-mxc/devices/Kconfig +++ b/arch/arm/plat-mxc/devices/Kconfig | |||
@@ -24,7 +24,6 @@ config IMX_HAVE_PLATFORM_IMXDI_RTC | |||
24 | 24 | ||
25 | config IMX_HAVE_PLATFORM_IMX_FB | 25 | config IMX_HAVE_PLATFORM_IMX_FB |
26 | bool | 26 | bool |
27 | select HAVE_FB_IMX | ||
28 | 27 | ||
29 | config IMX_HAVE_PLATFORM_IMX_I2C | 28 | config IMX_HAVE_PLATFORM_IMX_I2C |
30 | bool | 29 | bool |
@@ -41,6 +40,9 @@ config IMX_HAVE_PLATFORM_IMX_UART | |||
41 | config IMX_HAVE_PLATFORM_IMX_UDC | 40 | config IMX_HAVE_PLATFORM_IMX_UDC |
42 | bool | 41 | bool |
43 | 42 | ||
43 | config IMX_HAVE_PLATFORM_IPU_CORE | ||
44 | bool | ||
45 | |||
44 | config IMX_HAVE_PLATFORM_MX1_CAMERA | 46 | config IMX_HAVE_PLATFORM_MX1_CAMERA |
45 | bool | 47 | bool |
46 | 48 | ||
@@ -63,6 +65,9 @@ config IMX_HAVE_PLATFORM_MXC_RNGA | |||
63 | bool | 65 | bool |
64 | select ARCH_HAS_RNGA | 66 | select ARCH_HAS_RNGA |
65 | 67 | ||
68 | config IMX_HAVE_PLATFORM_MXC_RTC | ||
69 | bool | ||
70 | |||
66 | config IMX_HAVE_PLATFORM_MXC_W1 | 71 | config IMX_HAVE_PLATFORM_MXC_W1 |
67 | bool | 72 | bool |
68 | 73 | ||
diff --git a/arch/arm/plat-mxc/devices/Makefile b/arch/arm/plat-mxc/devices/Makefile index 75cd2ece9053..ad2922acf480 100644 --- a/arch/arm/plat-mxc/devices/Makefile +++ b/arch/arm/plat-mxc/devices/Makefile | |||
@@ -12,6 +12,7 @@ obj-$(CONFIG_IMX_HAVE_PLATFORM_IMX_KEYPAD) += platform-imx-keypad.o | |||
12 | obj-$(CONFIG_IMX_HAVE_PLATFORM_IMX_SSI) += platform-imx-ssi.o | 12 | obj-$(CONFIG_IMX_HAVE_PLATFORM_IMX_SSI) += platform-imx-ssi.o |
13 | obj-$(CONFIG_IMX_HAVE_PLATFORM_IMX_UART) += platform-imx-uart.o | 13 | obj-$(CONFIG_IMX_HAVE_PLATFORM_IMX_UART) += platform-imx-uart.o |
14 | obj-$(CONFIG_IMX_HAVE_PLATFORM_IMX_UDC) += platform-imx_udc.o | 14 | obj-$(CONFIG_IMX_HAVE_PLATFORM_IMX_UDC) += platform-imx_udc.o |
15 | obj-$(CONFIG_IMX_HAVE_PLATFORM_IPU_CORE) += platform-ipu-core.o | ||
15 | obj-$(CONFIG_IMX_HAVE_PLATFORM_MX1_CAMERA) += platform-mx1-camera.o | 16 | obj-$(CONFIG_IMX_HAVE_PLATFORM_MX1_CAMERA) += platform-mx1-camera.o |
16 | obj-$(CONFIG_IMX_HAVE_PLATFORM_MX2_CAMERA) += platform-mx2-camera.o | 17 | obj-$(CONFIG_IMX_HAVE_PLATFORM_MX2_CAMERA) += platform-mx2-camera.o |
17 | obj-$(CONFIG_IMX_HAVE_PLATFORM_MXC_EHCI) += platform-mxc-ehci.o | 18 | obj-$(CONFIG_IMX_HAVE_PLATFORM_MXC_EHCI) += platform-mxc-ehci.o |
@@ -19,6 +20,7 @@ obj-$(CONFIG_IMX_HAVE_PLATFORM_MXC_MMC) += platform-mxc-mmc.o | |||
19 | obj-$(CONFIG_IMX_HAVE_PLATFORM_MXC_NAND) += platform-mxc_nand.o | 20 | obj-$(CONFIG_IMX_HAVE_PLATFORM_MXC_NAND) += platform-mxc_nand.o |
20 | obj-$(CONFIG_IMX_HAVE_PLATFORM_MXC_PWM) += platform-mxc_pwm.o | 21 | obj-$(CONFIG_IMX_HAVE_PLATFORM_MXC_PWM) += platform-mxc_pwm.o |
21 | obj-$(CONFIG_IMX_HAVE_PLATFORM_MXC_RNGA) += platform-mxc_rnga.o | 22 | obj-$(CONFIG_IMX_HAVE_PLATFORM_MXC_RNGA) += platform-mxc_rnga.o |
23 | obj-$(CONFIG_IMX_HAVE_PLATFORM_MXC_RTC) += platform-mxc_rtc.o | ||
22 | obj-$(CONFIG_IMX_HAVE_PLATFORM_MXC_W1) += platform-mxc_w1.o | 24 | obj-$(CONFIG_IMX_HAVE_PLATFORM_MXC_W1) += platform-mxc_w1.o |
23 | obj-$(CONFIG_IMX_HAVE_PLATFORM_SDHCI_ESDHC_IMX) += platform-sdhci-esdhc-imx.o | 25 | obj-$(CONFIG_IMX_HAVE_PLATFORM_SDHCI_ESDHC_IMX) += platform-sdhci-esdhc-imx.o |
24 | obj-$(CONFIG_IMX_HAVE_PLATFORM_SPI_IMX) += platform-spi_imx.o | 26 | obj-$(CONFIG_IMX_HAVE_PLATFORM_SPI_IMX) += platform-spi_imx.o |
diff --git a/arch/arm/plat-mxc/devices/platform-ipu-core.c b/arch/arm/plat-mxc/devices/platform-ipu-core.c new file mode 100644 index 000000000000..edf65034aea5 --- /dev/null +++ b/arch/arm/plat-mxc/devices/platform-ipu-core.c | |||
@@ -0,0 +1,129 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2011 Pengutronix | ||
3 | * Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de> | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or modify it under | ||
6 | * the terms of the GNU General Public License version 2 as published by the | ||
7 | * Free Software Foundation. | ||
8 | */ | ||
9 | #include <mach/hardware.h> | ||
10 | #include <mach/devices-common.h> | ||
11 | |||
12 | #define imx_ipu_core_entry_single(soc) \ | ||
13 | { \ | ||
14 | .iobase = soc ## _IPU_CTRL_BASE_ADDR, \ | ||
15 | .synirq = soc ## _INT_IPU_SYN, \ | ||
16 | .errirq = soc ## _INT_IPU_ERR, \ | ||
17 | } | ||
18 | |||
19 | #ifdef CONFIG_SOC_IMX31 | ||
20 | const struct imx_ipu_core_data imx31_ipu_core_data __initconst = | ||
21 | imx_ipu_core_entry_single(MX31); | ||
22 | #endif | ||
23 | |||
24 | #ifdef CONFIG_SOC_IMX35 | ||
25 | const struct imx_ipu_core_data imx35_ipu_core_data __initconst = | ||
26 | imx_ipu_core_entry_single(MX35); | ||
27 | #endif | ||
28 | |||
29 | static struct platform_device *imx_ipu_coredev __initdata; | ||
30 | |||
31 | struct platform_device *__init imx_add_ipu_core( | ||
32 | const struct imx_ipu_core_data *data, | ||
33 | const struct ipu_platform_data *pdata) | ||
34 | { | ||
35 | /* The resource order is important! */ | ||
36 | struct resource res[] = { | ||
37 | { | ||
38 | .start = data->iobase, | ||
39 | .end = data->iobase + 0x5f, | ||
40 | .flags = IORESOURCE_MEM, | ||
41 | }, { | ||
42 | .start = data->iobase + 0x88, | ||
43 | .end = data->iobase + 0xb3, | ||
44 | .flags = IORESOURCE_MEM, | ||
45 | }, { | ||
46 | .start = data->synirq, | ||
47 | .end = data->synirq, | ||
48 | .flags = IORESOURCE_IRQ, | ||
49 | }, { | ||
50 | .start = data->errirq, | ||
51 | .end = data->errirq, | ||
52 | .flags = IORESOURCE_IRQ, | ||
53 | }, | ||
54 | }; | ||
55 | |||
56 | return imx_ipu_coredev = imx_add_platform_device("ipu-core", -1, | ||
57 | res, ARRAY_SIZE(res), pdata, sizeof(*pdata)); | ||
58 | } | ||
59 | |||
60 | struct platform_device *__init imx_alloc_mx3_camera( | ||
61 | const struct imx_ipu_core_data *data, | ||
62 | const struct mx3_camera_pdata *pdata) | ||
63 | { | ||
64 | struct resource res[] = { | ||
65 | { | ||
66 | .start = data->iobase + 0x60, | ||
67 | .end = data->iobase + 0x87, | ||
68 | .flags = IORESOURCE_MEM, | ||
69 | }, | ||
70 | }; | ||
71 | int ret = -ENOMEM; | ||
72 | struct platform_device *pdev; | ||
73 | |||
74 | if (IS_ERR_OR_NULL(imx_ipu_coredev)) | ||
75 | return ERR_PTR(-ENODEV); | ||
76 | |||
77 | pdev = platform_device_alloc("mx3-camera", 0); | ||
78 | if (!pdev) | ||
79 | goto err; | ||
80 | |||
81 | pdev->dev.dma_mask = kmalloc(sizeof(*pdev->dev.dma_mask), GFP_KERNEL); | ||
82 | if (!pdev->dev.dma_mask) | ||
83 | goto err; | ||
84 | |||
85 | *pdev->dev.dma_mask = DMA_BIT_MASK(32); | ||
86 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); | ||
87 | |||
88 | ret = platform_device_add_resources(pdev, res, ARRAY_SIZE(res)); | ||
89 | if (ret) | ||
90 | goto err; | ||
91 | |||
92 | if (pdata) { | ||
93 | struct mx3_camera_pdata *copied_pdata; | ||
94 | |||
95 | ret = platform_device_add_data(pdev, pdata, sizeof(*pdata)); | ||
96 | if (ret) { | ||
97 | err: | ||
98 | kfree(pdev->dev.dma_mask); | ||
99 | platform_device_put(pdev); | ||
100 | return ERR_PTR(-ENODEV); | ||
101 | } | ||
102 | copied_pdata = dev_get_platdata(&pdev->dev); | ||
103 | copied_pdata->dma_dev = &imx_ipu_coredev->dev; | ||
104 | } | ||
105 | |||
106 | return pdev; | ||
107 | } | ||
108 | |||
109 | struct platform_device *__init imx_add_mx3_sdc_fb( | ||
110 | const struct imx_ipu_core_data *data, | ||
111 | struct mx3fb_platform_data *pdata) | ||
112 | { | ||
113 | struct resource res[] = { | ||
114 | { | ||
115 | .start = data->iobase + 0xb4, | ||
116 | .end = data->iobase + 0x1bf, | ||
117 | .flags = IORESOURCE_MEM, | ||
118 | }, | ||
119 | }; | ||
120 | |||
121 | if (IS_ERR_OR_NULL(imx_ipu_coredev)) | ||
122 | return ERR_PTR(-ENODEV); | ||
123 | |||
124 | pdata->dma_dev = &imx_ipu_coredev->dev; | ||
125 | |||
126 | return imx_add_platform_device_dmamask("mx3_sdc_fb", -1, | ||
127 | res, ARRAY_SIZE(res), pdata, sizeof(*pdata), | ||
128 | DMA_BIT_MASK(32)); | ||
129 | } | ||
diff --git a/arch/arm/plat-mxc/devices/platform-mxc_rtc.c b/arch/arm/plat-mxc/devices/platform-mxc_rtc.c new file mode 100644 index 000000000000..16d0ec4df5f6 --- /dev/null +++ b/arch/arm/plat-mxc/devices/platform-mxc_rtc.c | |||
@@ -0,0 +1,40 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2010-2011 Pengutronix | ||
3 | * Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de> | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or modify it under | ||
6 | * the terms of the GNU General Public License version 2 as published by the | ||
7 | * Free Software Foundation. | ||
8 | */ | ||
9 | #include <mach/hardware.h> | ||
10 | #include <mach/devices-common.h> | ||
11 | |||
12 | #define imx_mxc_rtc_data_entry_single(soc) \ | ||
13 | { \ | ||
14 | .iobase = soc ## _RTC_BASE_ADDR, \ | ||
15 | .irq = soc ## _INT_RTC, \ | ||
16 | } | ||
17 | |||
18 | #ifdef CONFIG_SOC_IMX31 | ||
19 | const struct imx_mxc_rtc_data imx31_mxc_rtc_data __initconst = | ||
20 | imx_mxc_rtc_data_entry_single(MX31); | ||
21 | #endif /* ifdef CONFIG_SOC_IMX31 */ | ||
22 | |||
23 | struct platform_device *__init imx_add_mxc_rtc( | ||
24 | const struct imx_mxc_rtc_data *data) | ||
25 | { | ||
26 | struct resource res[] = { | ||
27 | { | ||
28 | .start = data->iobase, | ||
29 | .end = data->iobase + SZ_16K - 1, | ||
30 | .flags = IORESOURCE_MEM, | ||
31 | }, { | ||
32 | .start = data->irq, | ||
33 | .end = data->irq, | ||
34 | .flags = IORESOURCE_IRQ, | ||
35 | }, | ||
36 | }; | ||
37 | |||
38 | return imx_add_platform_device("mxc_rtc", -1, | ||
39 | res, ARRAY_SIZE(res), NULL, 0); | ||
40 | } | ||
diff --git a/arch/arm/plat-mxc/devices/platform-spi_imx.c b/arch/arm/plat-mxc/devices/platform-spi_imx.c index f4a60ab6763b..f97eb3615b2c 100644 --- a/arch/arm/plat-mxc/devices/platform-spi_imx.c +++ b/arch/arm/plat-mxc/devices/platform-spi_imx.c | |||
@@ -80,7 +80,7 @@ const struct imx_spi_imx_data imx35_cspi_data[] __initconst = { | |||
80 | 80 | ||
81 | #ifdef CONFIG_SOC_IMX51 | 81 | #ifdef CONFIG_SOC_IMX51 |
82 | const struct imx_spi_imx_data imx51_cspi_data __initconst = | 82 | const struct imx_spi_imx_data imx51_cspi_data __initconst = |
83 | imx_spi_imx_data_entry_single(MX51, CSPI, "imx51-cspi", 0, , SZ_4K); | 83 | imx_spi_imx_data_entry_single(MX51, CSPI, "imx51-cspi", 2, , SZ_4K); |
84 | 84 | ||
85 | const struct imx_spi_imx_data imx51_ecspi_data[] __initconst = { | 85 | const struct imx_spi_imx_data imx51_ecspi_data[] __initconst = { |
86 | #define imx51_ecspi_data_entry(_id, _hwid) \ | 86 | #define imx51_ecspi_data_entry(_id, _hwid) \ |
diff --git a/arch/arm/plat-mxc/include/mach/common.h b/arch/arm/plat-mxc/include/mach/common.h index a22ebe11a602..da7991832af6 100644 --- a/arch/arm/plat-mxc/include/mach/common.h +++ b/arch/arm/plat-mxc/include/mach/common.h | |||
@@ -23,7 +23,6 @@ extern void mx35_map_io(void); | |||
23 | extern void mx50_map_io(void); | 23 | extern void mx50_map_io(void); |
24 | extern void mx51_map_io(void); | 24 | extern void mx51_map_io(void); |
25 | extern void mx53_map_io(void); | 25 | extern void mx53_map_io(void); |
26 | extern void mxc91231_map_io(void); | ||
27 | extern void imx1_init_early(void); | 26 | extern void imx1_init_early(void); |
28 | extern void imx21_init_early(void); | 27 | extern void imx21_init_early(void); |
29 | extern void imx25_init_early(void); | 28 | extern void imx25_init_early(void); |
@@ -33,7 +32,6 @@ extern void imx35_init_early(void); | |||
33 | extern void imx50_init_early(void); | 32 | extern void imx50_init_early(void); |
34 | extern void imx51_init_early(void); | 33 | extern void imx51_init_early(void); |
35 | extern void imx53_init_early(void); | 34 | extern void imx53_init_early(void); |
36 | extern void mxc91231_init_early(void); | ||
37 | extern void mxc_init_irq(void __iomem *); | 35 | extern void mxc_init_irq(void __iomem *); |
38 | extern void tzic_init_irq(void __iomem *); | 36 | extern void tzic_init_irq(void __iomem *); |
39 | extern void mx1_init_irq(void); | 37 | extern void mx1_init_irq(void); |
@@ -45,7 +43,6 @@ extern void mx35_init_irq(void); | |||
45 | extern void mx50_init_irq(void); | 43 | extern void mx50_init_irq(void); |
46 | extern void mx51_init_irq(void); | 44 | extern void mx51_init_irq(void); |
47 | extern void mx53_init_irq(void); | 45 | extern void mx53_init_irq(void); |
48 | extern void mxc91231_init_irq(void); | ||
49 | extern void epit_timer_init(struct clk *timer_clk, void __iomem *base, int irq); | 46 | extern void epit_timer_init(struct clk *timer_clk, void __iomem *base, int irq); |
50 | extern void mxc_timer_init(struct clk *timer_clk, void __iomem *, int); | 47 | extern void mxc_timer_init(struct clk *timer_clk, void __iomem *, int); |
51 | extern int mx1_clocks_init(unsigned long fref); | 48 | extern int mx1_clocks_init(unsigned long fref); |
@@ -58,14 +55,11 @@ extern int mx51_clocks_init(unsigned long ckil, unsigned long osc, | |||
58 | unsigned long ckih1, unsigned long ckih2); | 55 | unsigned long ckih1, unsigned long ckih2); |
59 | extern int mx53_clocks_init(unsigned long ckil, unsigned long osc, | 56 | extern int mx53_clocks_init(unsigned long ckil, unsigned long osc, |
60 | unsigned long ckih1, unsigned long ckih2); | 57 | unsigned long ckih1, unsigned long ckih2); |
61 | extern int mxc91231_clocks_init(unsigned long fref); | ||
62 | extern int mxc_register_gpios(void); | 58 | extern int mxc_register_gpios(void); |
63 | extern int mxc_register_device(struct platform_device *pdev, void *data); | 59 | extern int mxc_register_device(struct platform_device *pdev, void *data); |
64 | extern void mxc_set_cpu_type(unsigned int type); | 60 | extern void mxc_set_cpu_type(unsigned int type); |
65 | extern void mxc_arch_reset_init(void __iomem *); | 61 | extern void mxc_arch_reset_init(void __iomem *); |
66 | extern void mxc91231_power_off(void); | ||
67 | extern void mxc91231_arch_reset(int, const char *); | ||
68 | extern void mxc91231_prepare_idle(void); | ||
69 | extern void mx51_efikamx_reset(void); | 62 | extern void mx51_efikamx_reset(void); |
70 | extern int mx53_revision(void); | 63 | extern int mx53_revision(void); |
64 | extern int mx53_display_revision(void); | ||
71 | #endif | 65 | #endif |
diff --git a/arch/arm/plat-mxc/include/mach/debug-macro.S b/arch/arm/plat-mxc/include/mach/debug-macro.S index 3b3a37c25c56..8e8d175e5077 100644 --- a/arch/arm/plat-mxc/include/mach/debug-macro.S +++ b/arch/arm/plat-mxc/include/mach/debug-macro.S | |||
@@ -44,13 +44,6 @@ | |||
44 | #define UART_PADDR MX51_UART1_BASE_ADDR | 44 | #define UART_PADDR MX51_UART1_BASE_ADDR |
45 | #endif | 45 | #endif |
46 | 46 | ||
47 | #ifdef CONFIG_ARCH_MXC91231 | ||
48 | #ifdef UART_PADDR | ||
49 | #error "CONFIG_DEBUG_LL is incompatible with multiple archs" | ||
50 | #endif | ||
51 | #define UART_PADDR MXC91231_UART2_BASE_ADDR | ||
52 | #endif | ||
53 | |||
54 | #define UART_VADDR IMX_IO_ADDRESS(UART_PADDR) | 47 | #define UART_VADDR IMX_IO_ADDRESS(UART_PADDR) |
55 | 48 | ||
56 | .macro addruart, rp, rv | 49 | .macro addruart, rp, rv |
diff --git a/arch/arm/plat-mxc/include/mach/devices-common.h b/arch/arm/plat-mxc/include/mach/devices-common.h index 8658c9caa650..fa8477337f91 100644 --- a/arch/arm/plat-mxc/include/mach/devices-common.h +++ b/arch/arm/plat-mxc/include/mach/devices-common.h | |||
@@ -166,6 +166,24 @@ struct platform_device *__init imx_add_imx_udc( | |||
166 | const struct imx_imx_udc_data *data, | 166 | const struct imx_imx_udc_data *data, |
167 | const struct imxusb_platform_data *pdata); | 167 | const struct imxusb_platform_data *pdata); |
168 | 168 | ||
169 | #include <mach/ipu.h> | ||
170 | #include <mach/mx3fb.h> | ||
171 | #include <mach/mx3_camera.h> | ||
172 | struct imx_ipu_core_data { | ||
173 | resource_size_t iobase; | ||
174 | resource_size_t synirq; | ||
175 | resource_size_t errirq; | ||
176 | }; | ||
177 | struct platform_device *__init imx_add_ipu_core( | ||
178 | const struct imx_ipu_core_data *data, | ||
179 | const struct ipu_platform_data *pdata); | ||
180 | struct platform_device *__init imx_alloc_mx3_camera( | ||
181 | const struct imx_ipu_core_data *data, | ||
182 | const struct mx3_camera_pdata *pdata); | ||
183 | struct platform_device *__init imx_add_mx3_sdc_fb( | ||
184 | const struct imx_ipu_core_data *data, | ||
185 | struct mx3fb_platform_data *pdata); | ||
186 | |||
169 | #include <mach/mx1_camera.h> | 187 | #include <mach/mx1_camera.h> |
170 | struct imx_mx1_camera_data { | 188 | struct imx_mx1_camera_data { |
171 | resource_size_t iobase; | 189 | resource_size_t iobase; |
@@ -237,6 +255,15 @@ struct imx_mxc_pwm_data { | |||
237 | struct platform_device *__init imx_add_mxc_pwm( | 255 | struct platform_device *__init imx_add_mxc_pwm( |
238 | const struct imx_mxc_pwm_data *data); | 256 | const struct imx_mxc_pwm_data *data); |
239 | 257 | ||
258 | /* mxc_rtc */ | ||
259 | struct imx_mxc_rtc_data { | ||
260 | resource_size_t iobase; | ||
261 | resource_size_t irq; | ||
262 | }; | ||
263 | struct platform_device *__init imx_add_mxc_rtc( | ||
264 | const struct imx_mxc_rtc_data *data); | ||
265 | |||
266 | /* mxc_w1 */ | ||
240 | struct imx_mxc_w1_data { | 267 | struct imx_mxc_w1_data { |
241 | resource_size_t iobase; | 268 | resource_size_t iobase; |
242 | }; | 269 | }; |
diff --git a/arch/arm/plat-mxc/include/mach/hardware.h b/arch/arm/plat-mxc/include/mach/hardware.h index 26bb1bab4aeb..67d3e2bed065 100644 --- a/arch/arm/plat-mxc/include/mach/hardware.h +++ b/arch/arm/plat-mxc/include/mach/hardware.h | |||
@@ -86,15 +86,6 @@ | |||
86 | * SPBA0 0x70000000+0x100000 -> 0xf5400000+0x100000 | 86 | * SPBA0 0x70000000+0x100000 -> 0xf5400000+0x100000 |
87 | * AIPS1 0x73f00000+0x100000 -> 0xf5700000+0x100000 | 87 | * AIPS1 0x73f00000+0x100000 -> 0xf5700000+0x100000 |
88 | * AIPS2 0x83f00000+0x100000 -> 0xf4300000+0x100000 | 88 | * AIPS2 0x83f00000+0x100000 -> 0xf4300000+0x100000 |
89 | * mxc91231: | ||
90 | * L2CC 0x30000000+0x010000 -> 0xf4400000+0x010000 | ||
91 | * X_MEMC 0xb8000000+0x010000 -> 0xf4c00000+0x010000 | ||
92 | * ROMP 0x60000000+0x010000 -> 0xf5000000+0x010000 | ||
93 | * AVIC 0x68000000+0x010000 -> 0xf5800000+0x010000 | ||
94 | * AIPS1 0x43f00000+0x100000 -> 0xf5300000+0x100000 | ||
95 | * SPBA0 0x50000000+0x100000 -> 0xf5400000+0x100000 | ||
96 | * SPBA1 0x52000000+0x100000 -> 0xf5600000+0x100000 | ||
97 | * AIPS2 0x53f00000+0x100000 -> 0xf5700000+0x100000 | ||
98 | */ | 89 | */ |
99 | #define IMX_IO_P2V(x) ( \ | 90 | #define IMX_IO_P2V(x) ( \ |
100 | 0xf4000000 + \ | 91 | 0xf4000000 + \ |
@@ -104,6 +95,8 @@ | |||
104 | 95 | ||
105 | #define IMX_IO_ADDRESS(x) IOMEM(IMX_IO_P2V(x)) | 96 | #define IMX_IO_ADDRESS(x) IOMEM(IMX_IO_P2V(x)) |
106 | 97 | ||
98 | #include <mach/mxc.h> | ||
99 | |||
107 | #ifdef CONFIG_ARCH_MX5 | 100 | #ifdef CONFIG_ARCH_MX5 |
108 | #include <mach/mx50.h> | 101 | #include <mach/mx50.h> |
109 | #include <mach/mx51.h> | 102 | #include <mach/mx51.h> |
@@ -134,12 +127,6 @@ | |||
134 | # include <mach/mx25.h> | 127 | # include <mach/mx25.h> |
135 | #endif | 128 | #endif |
136 | 129 | ||
137 | #ifdef CONFIG_ARCH_MXC91231 | ||
138 | # include <mach/mxc91231.h> | ||
139 | #endif | ||
140 | |||
141 | #include <mach/mxc.h> | ||
142 | |||
143 | #define imx_map_entry(soc, name, _type) { \ | 130 | #define imx_map_entry(soc, name, _type) { \ |
144 | .virtual = soc ## _IO_P2V(soc ## _ ## name ## _BASE_ADDR), \ | 131 | .virtual = soc ## _IO_P2V(soc ## _ ## name ## _BASE_ADDR), \ |
145 | .pfn = __phys_to_pfn(soc ## _ ## name ## _BASE_ADDR), \ | 132 | .pfn = __phys_to_pfn(soc ## _ ## name ## _BASE_ADDR), \ |
diff --git a/arch/arm/plat-mxc/include/mach/io.h b/arch/arm/plat-mxc/include/mach/io.h index b4f2de769466..4347a87d2bb0 100644 --- a/arch/arm/plat-mxc/include/mach/io.h +++ b/arch/arm/plat-mxc/include/mach/io.h | |||
@@ -14,19 +14,26 @@ | |||
14 | /* Allow IO space to be anywhere in the memory */ | 14 | /* Allow IO space to be anywhere in the memory */ |
15 | #define IO_SPACE_LIMIT 0xffffffff | 15 | #define IO_SPACE_LIMIT 0xffffffff |
16 | 16 | ||
17 | #ifdef CONFIG_ARCH_MX3 | 17 | #if defined(CONFIG_SOC_IMX31) || defined(CONFIG_SOC_IMX35) |
18 | #define __arch_ioremap __mx3_ioremap | 18 | #include <mach/hardware.h> |
19 | |||
20 | #define __arch_ioremap __imx_ioremap | ||
19 | #define __arch_iounmap __iounmap | 21 | #define __arch_iounmap __iounmap |
20 | 22 | ||
23 | #define addr_in_module(addr, mod) \ | ||
24 | ((unsigned long)(addr) - mod ## _BASE_ADDR < mod ## _SIZE) | ||
25 | |||
21 | static inline void __iomem * | 26 | static inline void __iomem * |
22 | __mx3_ioremap(unsigned long phys_addr, size_t size, unsigned int mtype) | 27 | __imx_ioremap(unsigned long phys_addr, size_t size, unsigned int mtype) |
23 | { | 28 | { |
24 | if (mtype == MT_DEVICE) { | 29 | if (mtype == MT_DEVICE && (cpu_is_mx31() || cpu_is_mx35())) { |
25 | /* Access all peripherals below 0x80000000 as nonshared device | 30 | /* |
26 | * but leave l2cc alone. | 31 | * Access all peripherals below 0x80000000 as nonshared device |
32 | * on mx3, but leave l2cc alone. Otherwise cache corruptions | ||
33 | * can occur. | ||
27 | */ | 34 | */ |
28 | if ((phys_addr < 0x80000000) && ((phys_addr < 0x30000000) || | 35 | if (phys_addr < 0x80000000 && |
29 | (phys_addr >= 0x30000000 + SZ_1M))) | 36 | !addr_in_module(phys_addr, MX3x_L2CC)) |
30 | mtype = MT_DEVICE_NONSHARED; | 37 | mtype = MT_DEVICE_NONSHARED; |
31 | } | 38 | } |
32 | 39 | ||
diff --git a/arch/arm/plat-mxc/include/mach/iomux-mx25.h b/arch/arm/plat-mxc/include/mach/iomux-mx25.h index d7f52c91f82e..2e5244de7ff5 100644 --- a/arch/arm/plat-mxc/include/mach/iomux-mx25.h +++ b/arch/arm/plat-mxc/include/mach/iomux-mx25.h | |||
@@ -89,13 +89,16 @@ | |||
89 | #define MX25_PAD_CS0__GPIO_4_2 IOMUX_PAD(0x000, 0x04c, 0x05, 0, 0, NO_PAD_CTRL) | 89 | #define MX25_PAD_CS0__GPIO_4_2 IOMUX_PAD(0x000, 0x04c, 0x05, 0, 0, NO_PAD_CTRL) |
90 | 90 | ||
91 | #define MX25_PAD_CS1__CS1 IOMUX_PAD(0x000, 0x050, 0x00, 0, 0, NO_PAD_CTRL) | 91 | #define MX25_PAD_CS1__CS1 IOMUX_PAD(0x000, 0x050, 0x00, 0, 0, NO_PAD_CTRL) |
92 | #define MX25_PAD_CS1__NF_CE3 IOMUX_PAD(0x000, 0x050, 0x01, 0, 0, NO_PAD_CTRL) | ||
92 | #define MX25_PAD_CS1__GPIO_4_3 IOMUX_PAD(0x000, 0x050, 0x05, 0, 0, NO_PAD_CTRL) | 93 | #define MX25_PAD_CS1__GPIO_4_3 IOMUX_PAD(0x000, 0x050, 0x05, 0, 0, NO_PAD_CTRL) |
93 | 94 | ||
94 | #define MX25_PAD_CS4__CS4 IOMUX_PAD(0x264, 0x054, 0x10, 0, 0, NO_PAD_CTRL) | 95 | #define MX25_PAD_CS4__CS4 IOMUX_PAD(0x264, 0x054, 0x10, 0, 0, NO_PAD_CTRL) |
96 | #define MX25_PAD_CS4__NF_CE1 IOMUX_PAD(0x264, 0x054, 0x01, 0, 0, NO_PAD_CTRL) | ||
95 | #define MX25_PAD_CS4__UART5_CTS IOMUX_PAD(0x264, 0x054, 0x13, 0, 0, NO_PAD_CTRL) | 97 | #define MX25_PAD_CS4__UART5_CTS IOMUX_PAD(0x264, 0x054, 0x13, 0, 0, NO_PAD_CTRL) |
96 | #define MX25_PAD_CS4__GPIO_3_20 IOMUX_PAD(0x264, 0x054, 0x15, 0, 0, NO_PAD_CTRL) | 98 | #define MX25_PAD_CS4__GPIO_3_20 IOMUX_PAD(0x264, 0x054, 0x15, 0, 0, NO_PAD_CTRL) |
97 | 99 | ||
98 | #define MX25_PAD_CS5__CS5 IOMUX_PAD(0x268, 0x058, 0x10, 0, 0, NO_PAD_CTRL) | 100 | #define MX25_PAD_CS5__CS5 IOMUX_PAD(0x268, 0x058, 0x10, 0, 0, NO_PAD_CTRL) |
101 | #define MX25_PAD_CS5__NF_CE2 IOMUX_PAD(0x268, 0x058, 0x01, 0, 0, NO_PAD_CTRL) | ||
99 | #define MX25_PAD_CS5__UART5_RTS IOMUX_PAD(0x268, 0x058, 0x13, 0x574, 0, NO_PAD_CTRL) | 102 | #define MX25_PAD_CS5__UART5_RTS IOMUX_PAD(0x268, 0x058, 0x13, 0x574, 0, NO_PAD_CTRL) |
100 | #define MX25_PAD_CS5__GPIO_3_21 IOMUX_PAD(0x268, 0x058, 0x15, 0, 0, NO_PAD_CTRL) | 103 | #define MX25_PAD_CS5__GPIO_3_21 IOMUX_PAD(0x268, 0x058, 0x15, 0, 0, NO_PAD_CTRL) |
101 | 104 | ||
diff --git a/arch/arm/plat-mxc/include/mach/iomux-mxc91231.h b/arch/arm/plat-mxc/include/mach/iomux-mxc91231.h deleted file mode 100644 index bf28df0d58b7..000000000000 --- a/arch/arm/plat-mxc/include/mach/iomux-mxc91231.h +++ /dev/null | |||
@@ -1,283 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright 2004-2006 Freescale Semiconductor, Inc. All Rights Reserved. | ||
3 | * Copyright (C) 2008 by Sascha Hauer <kernel@pengutronix.de> | ||
4 | * Copyright (C) 2009 by Dmitriy Taychenachev <dimichxp@gmail.com> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | * GNU General Public License for more details. | ||
15 | */ | ||
16 | |||
17 | #ifndef __MACH_IOMUX_MXC91231_H__ | ||
18 | #define __MACH_IOMUX_MXC91231_H__ | ||
19 | |||
20 | /* | ||
21 | * various IOMUX output functions | ||
22 | */ | ||
23 | |||
24 | #define IOMUX_OCONFIG_GPIO (0 << 4) /* used as GPIO */ | ||
25 | #define IOMUX_OCONFIG_FUNC (1 << 4) /* used as function */ | ||
26 | #define IOMUX_OCONFIG_ALT1 (2 << 4) /* used as alternate function 1 */ | ||
27 | #define IOMUX_OCONFIG_ALT2 (3 << 4) /* used as alternate function 2 */ | ||
28 | #define IOMUX_OCONFIG_ALT3 (4 << 4) /* used as alternate function 3 */ | ||
29 | #define IOMUX_OCONFIG_ALT4 (5 << 4) /* used as alternate function 4 */ | ||
30 | #define IOMUX_OCONFIG_ALT5 (6 << 4) /* used as alternate function 5 */ | ||
31 | #define IOMUX_OCONFIG_ALT6 (7 << 4) /* used as alternate function 6 */ | ||
32 | #define IOMUX_ICONFIG_NONE 0 /* not configured for input */ | ||
33 | #define IOMUX_ICONFIG_GPIO 1 /* used as GPIO */ | ||
34 | #define IOMUX_ICONFIG_FUNC 2 /* used as function */ | ||
35 | #define IOMUX_ICONFIG_ALT1 4 /* used as alternate function 1 */ | ||
36 | #define IOMUX_ICONFIG_ALT2 8 /* used as alternate function 2 */ | ||
37 | |||
38 | #define IOMUX_CONFIG_GPIO (IOMUX_OCONFIG_GPIO | IOMUX_ICONFIG_GPIO) | ||
39 | #define IOMUX_CONFIG_FUNC (IOMUX_OCONFIG_FUNC | IOMUX_ICONFIG_FUNC) | ||
40 | #define IOMUX_CONFIG_ALT1 (IOMUX_OCONFIG_ALT1 | IOMUX_ICONFIG_ALT1) | ||
41 | #define IOMUX_CONFIG_ALT2 (IOMUX_OCONFIG_ALT2 | IOMUX_ICONFIG_ALT2) | ||
42 | |||
43 | /* | ||
44 | * setups a single pin: | ||
45 | * - reserves the pin so that it is not claimed by another driver | ||
46 | * - setups the iomux according to the configuration | ||
47 | * - if the pin is configured as a GPIO, we claim it through kernel gpiolib | ||
48 | */ | ||
49 | int mxc_iomux_alloc_pin(unsigned int pin_mode, const char *label); | ||
50 | /* | ||
51 | * setups mutliple pins | ||
52 | * convenient way to call the above function with tables | ||
53 | */ | ||
54 | int mxc_iomux_setup_multiple_pins(const unsigned int *pin_list, unsigned count, | ||
55 | const char *label); | ||
56 | |||
57 | /* | ||
58 | * releases a single pin: | ||
59 | * - make it available for a future use by another driver | ||
60 | * - frees the GPIO if the pin was configured as GPIO | ||
61 | * - DOES NOT reconfigure the IOMUX in its reset state | ||
62 | */ | ||
63 | void mxc_iomux_release_pin(unsigned int pin_mode); | ||
64 | /* | ||
65 | * releases multiple pins | ||
66 | * convenvient way to call the above function with tables | ||
67 | */ | ||
68 | void mxc_iomux_release_multiple_pins(const unsigned int *pin_list, int count); | ||
69 | |||
70 | #define MUX_SIDE_AP (0) | ||
71 | #define MUX_SIDE_SP (1) | ||
72 | |||
73 | #define MUX_SIDE_SHIFT (26) | ||
74 | #define MUX_SIDE_MASK (0x1 << MUX_SIDE_SHIFT) | ||
75 | |||
76 | #define MUX_GPIO_PORT_SHIFT (23) | ||
77 | #define MUX_GPIO_PORT_MASK (0x7 << MUX_GPIO_PORT_SHIFT) | ||
78 | |||
79 | #define MUX_GPIO_PIN_SHIFT (20) | ||
80 | #define MUX_GPIO_PIN_MASK (0x1f << MUX_GPIO_PIN_SHIFT) | ||
81 | |||
82 | #define MUX_REG_SHIFT (15) | ||
83 | #define MUX_REG_MASK (0x1f << MUX_REG_SHIFT) | ||
84 | |||
85 | #define MUX_FIELD_SHIFT (13) | ||
86 | #define MUX_FIELD_MASK (0x3 << MUX_FIELD_SHIFT) | ||
87 | |||
88 | #define MUX_PADGRP_SHIFT (8) | ||
89 | #define MUX_PADGRP_MASK (0x1f << MUX_PADGRP_SHIFT) | ||
90 | |||
91 | #define MUX_PIN_MASK (0xffffff << 8) | ||
92 | |||
93 | #define GPIO_PORT_MAX (3) | ||
94 | |||
95 | #define IOMUX_PIN(side, gport, gpin, ctlreg, ctlfield, padgrp) \ | ||
96 | (((side) << MUX_SIDE_SHIFT) | \ | ||
97 | (gport << MUX_GPIO_PORT_SHIFT) | \ | ||
98 | ((gpin) << MUX_GPIO_PIN_SHIFT) | \ | ||
99 | ((ctlreg) << MUX_REG_SHIFT) | \ | ||
100 | ((ctlfield) << MUX_FIELD_SHIFT) | \ | ||
101 | ((padgrp) << MUX_PADGRP_SHIFT)) | ||
102 | |||
103 | #define MUX_MODE_OUT_SHIFT (4) | ||
104 | #define MUX_MODE_IN_SHIFT (0) | ||
105 | #define MUX_MODE_SHIFT (0) | ||
106 | #define MUX_MODE_MASK (0xff << MUX_MODE_SHIFT) | ||
107 | |||
108 | #define IOMUX_MODE(pin, mode) \ | ||
109 | (pin | (mode << MUX_MODE_SHIFT)) | ||
110 | |||
111 | enum iomux_pins { | ||
112 | /* AP Side pins */ | ||
113 | MXC91231_PIN_AP_CLE = IOMUX_PIN(0, 0, 0, 0, 0, 24), | ||
114 | MXC91231_PIN_AP_ALE = IOMUX_PIN(0, 0, 1, 0, 1, 24), | ||
115 | MXC91231_PIN_AP_CE_B = IOMUX_PIN(0, 0, 2, 0, 2, 24), | ||
116 | MXC91231_PIN_AP_RE_B = IOMUX_PIN(0, 0, 3, 0, 3, 24), | ||
117 | MXC91231_PIN_AP_WE_B = IOMUX_PIN(0, 0, 4, 1, 0, 24), | ||
118 | MXC91231_PIN_AP_WP_B = IOMUX_PIN(0, 0, 5, 1, 1, 24), | ||
119 | MXC91231_PIN_AP_BSY_B = IOMUX_PIN(0, 0, 6, 1, 2, 24), | ||
120 | MXC91231_PIN_AP_U1_TXD = IOMUX_PIN(0, 0, 7, 1, 3, 28), | ||
121 | MXC91231_PIN_AP_U1_RXD = IOMUX_PIN(0, 0, 8, 2, 0, 28), | ||
122 | MXC91231_PIN_AP_U1_RTS_B = IOMUX_PIN(0, 0, 9, 2, 1, 28), | ||
123 | MXC91231_PIN_AP_U1_CTS_B = IOMUX_PIN(0, 0, 10, 2, 2, 28), | ||
124 | MXC91231_PIN_AP_AD1_TXD = IOMUX_PIN(0, 0, 11, 2, 3, 9), | ||
125 | MXC91231_PIN_AP_AD1_RXD = IOMUX_PIN(0, 0, 12, 3, 0, 9), | ||
126 | MXC91231_PIN_AP_AD1_TXC = IOMUX_PIN(0, 0, 13, 3, 1, 9), | ||
127 | MXC91231_PIN_AP_AD1_TXFS = IOMUX_PIN(0, 0, 14, 3, 2, 9), | ||
128 | MXC91231_PIN_AP_AD2_TXD = IOMUX_PIN(0, 0, 15, 3, 3, 9), | ||
129 | MXC91231_PIN_AP_AD2_RXD = IOMUX_PIN(0, 0, 16, 4, 0, 9), | ||
130 | MXC91231_PIN_AP_AD2_TXC = IOMUX_PIN(0, 0, 17, 4, 1, 9), | ||
131 | MXC91231_PIN_AP_AD2_TXFS = IOMUX_PIN(0, 0, 18, 4, 2, 9), | ||
132 | MXC91231_PIN_AP_OWDAT = IOMUX_PIN(0, 0, 19, 4, 3, 28), | ||
133 | MXC91231_PIN_AP_IPU_LD17 = IOMUX_PIN(0, 0, 20, 5, 0, 28), | ||
134 | MXC91231_PIN_AP_IPU_D3_VSYNC = IOMUX_PIN(0, 0, 21, 5, 1, 28), | ||
135 | MXC91231_PIN_AP_IPU_D3_HSYNC = IOMUX_PIN(0, 0, 22, 5, 2, 28), | ||
136 | MXC91231_PIN_AP_IPU_D3_CLK = IOMUX_PIN(0, 0, 23, 5, 3, 28), | ||
137 | MXC91231_PIN_AP_IPU_D3_DRDY = IOMUX_PIN(0, 0, 24, 6, 0, 28), | ||
138 | MXC91231_PIN_AP_IPU_D3_CONTR = IOMUX_PIN(0, 0, 25, 6, 1, 28), | ||
139 | MXC91231_PIN_AP_IPU_D0_CS = IOMUX_PIN(0, 0, 26, 6, 2, 28), | ||
140 | MXC91231_PIN_AP_IPU_LD16 = IOMUX_PIN(0, 0, 27, 6, 3, 28), | ||
141 | MXC91231_PIN_AP_IPU_D2_CS = IOMUX_PIN(0, 0, 28, 7, 0, 28), | ||
142 | MXC91231_PIN_AP_IPU_PAR_RS = IOMUX_PIN(0, 0, 29, 7, 1, 28), | ||
143 | MXC91231_PIN_AP_IPU_D3_PS = IOMUX_PIN(0, 0, 30, 7, 2, 28), | ||
144 | MXC91231_PIN_AP_IPU_D3_CLS = IOMUX_PIN(0, 0, 31, 7, 3, 28), | ||
145 | MXC91231_PIN_AP_IPU_RD = IOMUX_PIN(0, 1, 0, 8, 0, 28), | ||
146 | MXC91231_PIN_AP_IPU_WR = IOMUX_PIN(0, 1, 1, 8, 1, 28), | ||
147 | MXC91231_PIN_AP_IPU_LD0 = IOMUX_PIN(0, 7, 0, 8, 2, 28), | ||
148 | MXC91231_PIN_AP_IPU_LD1 = IOMUX_PIN(0, 7, 0, 8, 3, 28), | ||
149 | MXC91231_PIN_AP_IPU_LD2 = IOMUX_PIN(0, 7, 0, 9, 0, 28), | ||
150 | MXC91231_PIN_AP_IPU_LD3 = IOMUX_PIN(0, 1, 2, 9, 1, 28), | ||
151 | MXC91231_PIN_AP_IPU_LD4 = IOMUX_PIN(0, 1, 3, 9, 2, 28), | ||
152 | MXC91231_PIN_AP_IPU_LD5 = IOMUX_PIN(0, 1, 4, 9, 3, 28), | ||
153 | MXC91231_PIN_AP_IPU_LD6 = IOMUX_PIN(0, 1, 5, 10, 0, 28), | ||
154 | MXC91231_PIN_AP_IPU_LD7 = IOMUX_PIN(0, 1, 6, 10, 1, 28), | ||
155 | MXC91231_PIN_AP_IPU_LD8 = IOMUX_PIN(0, 1, 7, 10, 2, 28), | ||
156 | MXC91231_PIN_AP_IPU_LD9 = IOMUX_PIN(0, 1, 8, 10, 3, 28), | ||
157 | MXC91231_PIN_AP_IPU_LD10 = IOMUX_PIN(0, 1, 9, 11, 0, 28), | ||
158 | MXC91231_PIN_AP_IPU_LD11 = IOMUX_PIN(0, 1, 10, 11, 1, 28), | ||
159 | MXC91231_PIN_AP_IPU_LD12 = IOMUX_PIN(0, 1, 11, 11, 2, 28), | ||
160 | MXC91231_PIN_AP_IPU_LD13 = IOMUX_PIN(0, 1, 12, 11, 3, 28), | ||
161 | MXC91231_PIN_AP_IPU_LD14 = IOMUX_PIN(0, 1, 13, 12, 0, 28), | ||
162 | MXC91231_PIN_AP_IPU_LD15 = IOMUX_PIN(0, 1, 14, 12, 1, 28), | ||
163 | MXC91231_PIN_AP_KPROW4 = IOMUX_PIN(0, 7, 0, 12, 2, 10), | ||
164 | MXC91231_PIN_AP_KPROW5 = IOMUX_PIN(0, 1, 16, 12, 3, 10), | ||
165 | MXC91231_PIN_AP_GPIO_AP_B17 = IOMUX_PIN(0, 1, 17, 13, 0, 10), | ||
166 | MXC91231_PIN_AP_GPIO_AP_B18 = IOMUX_PIN(0, 1, 18, 13, 1, 10), | ||
167 | MXC91231_PIN_AP_KPCOL3 = IOMUX_PIN(0, 1, 19, 13, 2, 11), | ||
168 | MXC91231_PIN_AP_KPCOL4 = IOMUX_PIN(0, 1, 20, 13, 3, 11), | ||
169 | MXC91231_PIN_AP_KPCOL5 = IOMUX_PIN(0, 1, 21, 14, 0, 11), | ||
170 | MXC91231_PIN_AP_GPIO_AP_B22 = IOMUX_PIN(0, 1, 22, 14, 1, 11), | ||
171 | MXC91231_PIN_AP_GPIO_AP_B23 = IOMUX_PIN(0, 1, 23, 14, 2, 11), | ||
172 | MXC91231_PIN_AP_CSI_D0 = IOMUX_PIN(0, 1, 24, 14, 3, 21), | ||
173 | MXC91231_PIN_AP_CSI_D1 = IOMUX_PIN(0, 1, 25, 15, 0, 21), | ||
174 | MXC91231_PIN_AP_CSI_D2 = IOMUX_PIN(0, 1, 26, 15, 1, 21), | ||
175 | MXC91231_PIN_AP_CSI_D3 = IOMUX_PIN(0, 1, 27, 15, 2, 21), | ||
176 | MXC91231_PIN_AP_CSI_D4 = IOMUX_PIN(0, 1, 28, 15, 3, 21), | ||
177 | MXC91231_PIN_AP_CSI_D5 = IOMUX_PIN(0, 1, 29, 16, 0, 21), | ||
178 | MXC91231_PIN_AP_CSI_D6 = IOMUX_PIN(0, 1, 30, 16, 1, 21), | ||
179 | MXC91231_PIN_AP_CSI_D7 = IOMUX_PIN(0, 1, 31, 16, 2, 21), | ||
180 | MXC91231_PIN_AP_CSI_D8 = IOMUX_PIN(0, 2, 0, 16, 3, 21), | ||
181 | MXC91231_PIN_AP_CSI_D9 = IOMUX_PIN(0, 2, 1, 17, 0, 21), | ||
182 | MXC91231_PIN_AP_CSI_MCLK = IOMUX_PIN(0, 2, 2, 17, 1, 21), | ||
183 | MXC91231_PIN_AP_CSI_VSYNC = IOMUX_PIN(0, 2, 3, 17, 2, 21), | ||
184 | MXC91231_PIN_AP_CSI_HSYNC = IOMUX_PIN(0, 2, 4, 17, 3, 21), | ||
185 | MXC91231_PIN_AP_CSI_PIXCLK = IOMUX_PIN(0, 2, 5, 18, 0, 21), | ||
186 | MXC91231_PIN_AP_I2CLK = IOMUX_PIN(0, 2, 6, 18, 1, 12), | ||
187 | MXC91231_PIN_AP_I2DAT = IOMUX_PIN(0, 2, 7, 18, 2, 12), | ||
188 | MXC91231_PIN_AP_GPIO_AP_C8 = IOMUX_PIN(0, 2, 8, 18, 3, 9), | ||
189 | MXC91231_PIN_AP_GPIO_AP_C9 = IOMUX_PIN(0, 2, 9, 19, 0, 9), | ||
190 | MXC91231_PIN_AP_GPIO_AP_C10 = IOMUX_PIN(0, 2, 10, 19, 1, 9), | ||
191 | MXC91231_PIN_AP_GPIO_AP_C11 = IOMUX_PIN(0, 2, 11, 19, 2, 9), | ||
192 | MXC91231_PIN_AP_GPIO_AP_C12 = IOMUX_PIN(0, 2, 12, 19, 3, 9), | ||
193 | MXC91231_PIN_AP_GPIO_AP_C13 = IOMUX_PIN(0, 2, 13, 20, 0, 28), | ||
194 | MXC91231_PIN_AP_GPIO_AP_C14 = IOMUX_PIN(0, 2, 14, 20, 1, 28), | ||
195 | MXC91231_PIN_AP_GPIO_AP_C15 = IOMUX_PIN(0, 2, 15, 20, 2, 9), | ||
196 | MXC91231_PIN_AP_GPIO_AP_C16 = IOMUX_PIN(0, 2, 16, 20, 3, 9), | ||
197 | MXC91231_PIN_AP_GPIO_AP_C17 = IOMUX_PIN(0, 2, 17, 21, 0, 9), | ||
198 | MXC91231_PIN_AP_ED_INT0 = IOMUX_PIN(0, 2, 18, 21, 1, 22), | ||
199 | MXC91231_PIN_AP_ED_INT1 = IOMUX_PIN(0, 2, 19, 21, 2, 22), | ||
200 | MXC91231_PIN_AP_ED_INT2 = IOMUX_PIN(0, 2, 20, 21, 3, 22), | ||
201 | MXC91231_PIN_AP_ED_INT3 = IOMUX_PIN(0, 2, 21, 22, 0, 22), | ||
202 | MXC91231_PIN_AP_ED_INT4 = IOMUX_PIN(0, 2, 22, 22, 1, 23), | ||
203 | MXC91231_PIN_AP_ED_INT5 = IOMUX_PIN(0, 2, 23, 22, 2, 23), | ||
204 | MXC91231_PIN_AP_ED_INT6 = IOMUX_PIN(0, 2, 24, 22, 3, 23), | ||
205 | MXC91231_PIN_AP_ED_INT7 = IOMUX_PIN(0, 2, 25, 23, 0, 23), | ||
206 | MXC91231_PIN_AP_U2_DSR_B = IOMUX_PIN(0, 2, 26, 23, 1, 28), | ||
207 | MXC91231_PIN_AP_U2_RI_B = IOMUX_PIN(0, 2, 27, 23, 2, 28), | ||
208 | MXC91231_PIN_AP_U2_CTS_B = IOMUX_PIN(0, 2, 28, 23, 3, 28), | ||
209 | MXC91231_PIN_AP_U2_DTR_B = IOMUX_PIN(0, 2, 29, 24, 0, 28), | ||
210 | MXC91231_PIN_AP_KPROW0 = IOMUX_PIN(0, 7, 0, 24, 1, 10), | ||
211 | MXC91231_PIN_AP_KPROW1 = IOMUX_PIN(0, 1, 15, 24, 2, 10), | ||
212 | MXC91231_PIN_AP_KPROW2 = IOMUX_PIN(0, 7, 0, 24, 3, 10), | ||
213 | MXC91231_PIN_AP_KPROW3 = IOMUX_PIN(0, 7, 0, 25, 0, 10), | ||
214 | MXC91231_PIN_AP_KPCOL0 = IOMUX_PIN(0, 7, 0, 25, 1, 11), | ||
215 | MXC91231_PIN_AP_KPCOL1 = IOMUX_PIN(0, 7, 0, 25, 2, 11), | ||
216 | MXC91231_PIN_AP_KPCOL2 = IOMUX_PIN(0, 7, 0, 25, 3, 11), | ||
217 | |||
218 | /* Shared pins */ | ||
219 | MXC91231_PIN_SP_U3_TXD = IOMUX_PIN(1, 3, 0, 0, 0, 28), | ||
220 | MXC91231_PIN_SP_U3_RXD = IOMUX_PIN(1, 3, 1, 0, 1, 28), | ||
221 | MXC91231_PIN_SP_U3_RTS_B = IOMUX_PIN(1, 3, 2, 0, 2, 28), | ||
222 | MXC91231_PIN_SP_U3_CTS_B = IOMUX_PIN(1, 3, 3, 0, 3, 28), | ||
223 | MXC91231_PIN_SP_USB_TXOE_B = IOMUX_PIN(1, 3, 4, 1, 0, 28), | ||
224 | MXC91231_PIN_SP_USB_DAT_VP = IOMUX_PIN(1, 3, 5, 1, 1, 28), | ||
225 | MXC91231_PIN_SP_USB_SE0_VM = IOMUX_PIN(1, 3, 6, 1, 2, 28), | ||
226 | MXC91231_PIN_SP_USB_RXD = IOMUX_PIN(1, 3, 7, 1, 3, 28), | ||
227 | MXC91231_PIN_SP_UH2_TXOE_B = IOMUX_PIN(1, 3, 8, 2, 0, 28), | ||
228 | MXC91231_PIN_SP_UH2_SPEED = IOMUX_PIN(1, 3, 9, 2, 1, 28), | ||
229 | MXC91231_PIN_SP_UH2_SUSPEN = IOMUX_PIN(1, 3, 10, 2, 2, 28), | ||
230 | MXC91231_PIN_SP_UH2_TXDP = IOMUX_PIN(1, 3, 11, 2, 3, 28), | ||
231 | MXC91231_PIN_SP_UH2_RXDP = IOMUX_PIN(1, 3, 12, 3, 0, 28), | ||
232 | MXC91231_PIN_SP_UH2_RXDM = IOMUX_PIN(1, 3, 13, 3, 1, 28), | ||
233 | MXC91231_PIN_SP_UH2_OVR = IOMUX_PIN(1, 3, 14, 3, 2, 28), | ||
234 | MXC91231_PIN_SP_UH2_PWR = IOMUX_PIN(1, 3, 15, 3, 3, 28), | ||
235 | MXC91231_PIN_SP_SD1_DAT0 = IOMUX_PIN(1, 3, 16, 4, 0, 25), | ||
236 | MXC91231_PIN_SP_SD1_DAT1 = IOMUX_PIN(1, 3, 17, 4, 1, 25), | ||
237 | MXC91231_PIN_SP_SD1_DAT2 = IOMUX_PIN(1, 3, 18, 4, 2, 25), | ||
238 | MXC91231_PIN_SP_SD1_DAT3 = IOMUX_PIN(1, 3, 19, 4, 3, 25), | ||
239 | MXC91231_PIN_SP_SD1_CMD = IOMUX_PIN(1, 3, 20, 5, 0, 25), | ||
240 | MXC91231_PIN_SP_SD1_CLK = IOMUX_PIN(1, 3, 21, 5, 1, 25), | ||
241 | MXC91231_PIN_SP_SD2_DAT0 = IOMUX_PIN(1, 3, 22, 5, 2, 26), | ||
242 | MXC91231_PIN_SP_SD2_DAT1 = IOMUX_PIN(1, 3, 23, 5, 3, 26), | ||
243 | MXC91231_PIN_SP_SD2_DAT2 = IOMUX_PIN(1, 3, 24, 6, 0, 26), | ||
244 | MXC91231_PIN_SP_SD2_DAT3 = IOMUX_PIN(1, 3, 25, 6, 1, 26), | ||
245 | MXC91231_PIN_SP_GPIO_SP_A26 = IOMUX_PIN(1, 3, 26, 6, 2, 28), | ||
246 | MXC91231_PIN_SP_SPI1_CLK = IOMUX_PIN(1, 3, 27, 6, 3, 13), | ||
247 | MXC91231_PIN_SP_SPI1_MOSI = IOMUX_PIN(1, 3, 28, 7, 0, 13), | ||
248 | MXC91231_PIN_SP_SPI1_MISO = IOMUX_PIN(1, 3, 29, 7, 1, 13), | ||
249 | MXC91231_PIN_SP_SPI1_SS0 = IOMUX_PIN(1, 3, 30, 7, 2, 13), | ||
250 | MXC91231_PIN_SP_SPI1_SS1 = IOMUX_PIN(1, 3, 31, 7, 3, 13), | ||
251 | MXC91231_PIN_SP_SD2_CMD = IOMUX_PIN(1, 7, 0, 8, 0, 26), | ||
252 | MXC91231_PIN_SP_SD2_CLK = IOMUX_PIN(1, 7, 0, 8, 1, 26), | ||
253 | MXC91231_PIN_SP_SIM1_RST_B = IOMUX_PIN(1, 2, 30, 8, 2, 28), | ||
254 | MXC91231_PIN_SP_SIM1_SVEN = IOMUX_PIN(1, 7, 0, 8, 3, 28), | ||
255 | MXC91231_PIN_SP_SIM1_CLK = IOMUX_PIN(1, 7, 0, 9, 0, 28), | ||
256 | MXC91231_PIN_SP_SIM1_TRXD = IOMUX_PIN(1, 7, 0, 9, 1, 28), | ||
257 | MXC91231_PIN_SP_SIM1_PD = IOMUX_PIN(1, 2, 31, 9, 2, 28), | ||
258 | MXC91231_PIN_SP_UH2_TXDM = IOMUX_PIN(1, 7, 0, 9, 3, 28), | ||
259 | MXC91231_PIN_SP_UH2_RXD = IOMUX_PIN(1, 7, 0, 10, 0, 28), | ||
260 | }; | ||
261 | |||
262 | #define PIN_AP_MAX (104) | ||
263 | #define PIN_SP_MAX (41) | ||
264 | |||
265 | #define PIN_MAX (PIN_AP_MAX + PIN_SP_MAX) | ||
266 | |||
267 | /* | ||
268 | * Convenience values for use with mxc_iomux_mode() | ||
269 | * | ||
270 | * Format here is MXC91231_PIN_(pin name)__(function) | ||
271 | */ | ||
272 | |||
273 | #define MXC91231_PIN_SP_USB_DAT_VP__USB_DAT_VP \ | ||
274 | IOMUX_MODE(MXC91231_PIN_SP_USB_DAT_VP, IOMUX_CONFIG_FUNC) | ||
275 | #define MXC91231_PIN_SP_USB_SE0_VM__USB_SE0_VM \ | ||
276 | IOMUX_MODE(MXC91231_PIN_SP_USB_SE0_VM, IOMUX_CONFIG_FUNC) | ||
277 | #define MXC91231_PIN_SP_USB_DAT_VP__RXD2 \ | ||
278 | IOMUX_MODE(MXC91231_PIN_SP_USB_DAT_VP, IOMUX_CONFIG_ALT1) | ||
279 | #define MXC91231_PIN_SP_USB_SE0_VM__TXD2 \ | ||
280 | IOMUX_MODE(MXC91231_PIN_SP_USB_SE0_VM, IOMUX_CONFIG_ALT1) | ||
281 | |||
282 | |||
283 | #endif /* __MACH_IOMUX_MXC91231_H__ */ | ||
diff --git a/arch/arm/plat-mxc/include/mach/irqs.h b/arch/arm/plat-mxc/include/mach/irqs.h index a3d930d3e65d..35c89bcdf758 100644 --- a/arch/arm/plat-mxc/include/mach/irqs.h +++ b/arch/arm/plat-mxc/include/mach/irqs.h | |||
@@ -35,8 +35,6 @@ | |||
35 | #define MXC_GPIO_IRQS (32 * 4) | 35 | #define MXC_GPIO_IRQS (32 * 4) |
36 | #elif defined CONFIG_SOC_IMX51 | 36 | #elif defined CONFIG_SOC_IMX51 |
37 | #define MXC_GPIO_IRQS (32 * 4) | 37 | #define MXC_GPIO_IRQS (32 * 4) |
38 | #elif defined CONFIG_ARCH_MXC91231 | ||
39 | #define MXC_GPIO_IRQS (32 * 4) | ||
40 | #elif defined CONFIG_ARCH_MX3 | 38 | #elif defined CONFIG_ARCH_MX3 |
41 | #define MXC_GPIO_IRQS (32 * 3) | 39 | #define MXC_GPIO_IRQS (32 * 3) |
42 | #endif | 40 | #endif |
diff --git a/arch/arm/plat-mxc/include/mach/memory.h b/arch/arm/plat-mxc/include/mach/memory.h index 5d51cbb98893..11be5cdbdd1a 100644 --- a/arch/arm/plat-mxc/include/mach/memory.h +++ b/arch/arm/plat-mxc/include/mach/memory.h | |||
@@ -19,7 +19,6 @@ | |||
19 | #define MX50_PHYS_OFFSET UL(0x70000000) | 19 | #define MX50_PHYS_OFFSET UL(0x70000000) |
20 | #define MX51_PHYS_OFFSET UL(0x90000000) | 20 | #define MX51_PHYS_OFFSET UL(0x90000000) |
21 | #define MX53_PHYS_OFFSET UL(0x70000000) | 21 | #define MX53_PHYS_OFFSET UL(0x70000000) |
22 | #define MXC91231_PHYS_OFFSET UL(0x90000000) | ||
23 | 22 | ||
24 | #if !defined(CONFIG_RUNTIME_PHYS_OFFSET) | 23 | #if !defined(CONFIG_RUNTIME_PHYS_OFFSET) |
25 | # if defined CONFIG_ARCH_MX1 | 24 | # if defined CONFIG_ARCH_MX1 |
@@ -32,8 +31,6 @@ | |||
32 | # define PLAT_PHYS_OFFSET MX27_PHYS_OFFSET | 31 | # define PLAT_PHYS_OFFSET MX27_PHYS_OFFSET |
33 | # elif defined CONFIG_ARCH_MX3 | 32 | # elif defined CONFIG_ARCH_MX3 |
34 | # define PLAT_PHYS_OFFSET MX3x_PHYS_OFFSET | 33 | # define PLAT_PHYS_OFFSET MX3x_PHYS_OFFSET |
35 | # elif defined CONFIG_ARCH_MXC91231 | ||
36 | # define PLAT_PHYS_OFFSET MXC91231_PHYS_OFFSET | ||
37 | # elif defined CONFIG_ARCH_MX50 | 34 | # elif defined CONFIG_ARCH_MX50 |
38 | # define PLAT_PHYS_OFFSET MX50_PHYS_OFFSET | 35 | # define PLAT_PHYS_OFFSET MX50_PHYS_OFFSET |
39 | # elif defined CONFIG_ARCH_MX51 | 36 | # elif defined CONFIG_ARCH_MX51 |
diff --git a/arch/arm/plat-mxc/include/mach/mx27.h b/arch/arm/plat-mxc/include/mach/mx27.h index cbc43ad5ef48..1dc1c522601b 100644 --- a/arch/arm/plat-mxc/include/mach/mx27.h +++ b/arch/arm/plat-mxc/include/mach/mx27.h | |||
@@ -60,8 +60,8 @@ | |||
60 | #define MX27_AUDMUX_BASE_ADDR (MX27_AIPI_BASE_ADDR + 0x16000) | 60 | #define MX27_AUDMUX_BASE_ADDR (MX27_AIPI_BASE_ADDR + 0x16000) |
61 | #define MX27_CSPI3_BASE_ADDR (MX27_AIPI_BASE_ADDR + 0x17000) | 61 | #define MX27_CSPI3_BASE_ADDR (MX27_AIPI_BASE_ADDR + 0x17000) |
62 | #define MX27_MSHC_BASE_ADDR (MX27_AIPI_BASE_ADDR + 0x18000) | 62 | #define MX27_MSHC_BASE_ADDR (MX27_AIPI_BASE_ADDR + 0x18000) |
63 | #define MX27_GPT5_BASE_ADDR (MX27_AIPI_BASE_ADDR + 0x19000) | 63 | #define MX27_GPT4_BASE_ADDR (MX27_AIPI_BASE_ADDR + 0x19000) |
64 | #define MX27_GPT4_BASE_ADDR (MX27_AIPI_BASE_ADDR + 0x1a000) | 64 | #define MX27_GPT5_BASE_ADDR (MX27_AIPI_BASE_ADDR + 0x1a000) |
65 | #define MX27_UART5_BASE_ADDR (MX27_AIPI_BASE_ADDR + 0x1b000) | 65 | #define MX27_UART5_BASE_ADDR (MX27_AIPI_BASE_ADDR + 0x1b000) |
66 | #define MX27_UART6_BASE_ADDR (MX27_AIPI_BASE_ADDR + 0x1c000) | 66 | #define MX27_UART6_BASE_ADDR (MX27_AIPI_BASE_ADDR + 0x1c000) |
67 | #define MX27_I2C2_BASE_ADDR (MX27_AIPI_BASE_ADDR + 0x1d000) | 67 | #define MX27_I2C2_BASE_ADDR (MX27_AIPI_BASE_ADDR + 0x1d000) |
diff --git a/arch/arm/plat-mxc/include/mach/mx53.h b/arch/arm/plat-mxc/include/mach/mx53.h index ace17864575e..9d2a1ef84de2 100644 --- a/arch/arm/plat-mxc/include/mach/mx53.h +++ b/arch/arm/plat-mxc/include/mach/mx53.h | |||
@@ -337,17 +337,4 @@ | |||
337 | #define MX53_INT_GPIO7_LOW 107 | 337 | #define MX53_INT_GPIO7_LOW 107 |
338 | #define MX53_INT_GPIO7_HIGH 108 | 338 | #define MX53_INT_GPIO7_HIGH 108 |
339 | 339 | ||
340 | /* silicon revisions specific to i.MX53 */ | ||
341 | #define MX53_CHIP_REV_1_0 0x10 | ||
342 | #define MX53_CHIP_REV_1_1 0x11 | ||
343 | #define MX53_CHIP_REV_1_2 0x12 | ||
344 | #define MX53_CHIP_REV_1_3 0x13 | ||
345 | #define MX53_CHIP_REV_2_0 0x20 | ||
346 | #define MX53_CHIP_REV_2_1 0x21 | ||
347 | #define MX53_CHIP_REV_2_2 0x22 | ||
348 | #define MX53_CHIP_REV_2_3 0x23 | ||
349 | #define MX53_CHIP_REV_3_0 0x30 | ||
350 | #define MX53_CHIP_REV_3_1 0x31 | ||
351 | #define MX53_CHIP_REV_3_2 0x32 | ||
352 | |||
353 | #endif /* ifndef __MACH_MX53_H__ */ | 340 | #endif /* ifndef __MACH_MX53_H__ */ |
diff --git a/arch/arm/plat-mxc/include/mach/mxc.h b/arch/arm/plat-mxc/include/mach/mxc.h index 1aea818d9d31..4ac53ce97c24 100644 --- a/arch/arm/plat-mxc/include/mach/mxc.h +++ b/arch/arm/plat-mxc/include/mach/mxc.h | |||
@@ -35,7 +35,6 @@ | |||
35 | #define MXC_CPU_MX50 50 | 35 | #define MXC_CPU_MX50 50 |
36 | #define MXC_CPU_MX51 51 | 36 | #define MXC_CPU_MX51 51 |
37 | #define MXC_CPU_MX53 53 | 37 | #define MXC_CPU_MX53 53 |
38 | #define MXC_CPU_MXC91231 91231 | ||
39 | 38 | ||
40 | #define IMX_CHIP_REVISION_1_0 0x10 | 39 | #define IMX_CHIP_REVISION_1_0 0x10 |
41 | #define IMX_CHIP_REVISION_1_1 0x11 | 40 | #define IMX_CHIP_REVISION_1_1 0x11 |
@@ -177,18 +176,6 @@ extern unsigned int __mxc_cpu_type; | |||
177 | # define cpu_is_mx53() (0) | 176 | # define cpu_is_mx53() (0) |
178 | #endif | 177 | #endif |
179 | 178 | ||
180 | #ifdef CONFIG_ARCH_MXC91231 | ||
181 | # ifdef mxc_cpu_type | ||
182 | # undef mxc_cpu_type | ||
183 | # define mxc_cpu_type __mxc_cpu_type | ||
184 | # else | ||
185 | # define mxc_cpu_type MXC_CPU_MXC91231 | ||
186 | # endif | ||
187 | # define cpu_is_mxc91231() (mxc_cpu_type == MXC_CPU_MXC91231) | ||
188 | #else | ||
189 | # define cpu_is_mxc91231() (0) | ||
190 | #endif | ||
191 | |||
192 | #ifndef __ASSEMBLY__ | 179 | #ifndef __ASSEMBLY__ |
193 | 180 | ||
194 | struct cpu_op { | 181 | struct cpu_op { |
@@ -207,14 +194,7 @@ enum mxc_cpu_pwr_mode { | |||
207 | extern struct cpu_op *(*get_cpu_op)(int *op); | 194 | extern struct cpu_op *(*get_cpu_op)(int *op); |
208 | #endif | 195 | #endif |
209 | 196 | ||
210 | #if defined(CONFIG_ARCH_MX3) || defined(CONFIG_ARCH_MX2) | 197 | #define cpu_is_mx3() (cpu_is_mx31() || cpu_is_mx35()) |
211 | /* These are deprecated, use mx[23][157]_setup_weimcs instead. */ | ||
212 | #define CSCR_U(n) (IO_ADDRESS(WEIM_BASE_ADDR + n * 0x10)) | ||
213 | #define CSCR_L(n) (IO_ADDRESS(WEIM_BASE_ADDR + n * 0x10 + 0x4)) | ||
214 | #define CSCR_A(n) (IO_ADDRESS(WEIM_BASE_ADDR + n * 0x10 + 0x8)) | ||
215 | #endif | ||
216 | |||
217 | #define cpu_is_mx3() (cpu_is_mx31() || cpu_is_mx35() || cpu_is_mxc91231()) | ||
218 | #define cpu_is_mx2() (cpu_is_mx21() || cpu_is_mx27()) | 198 | #define cpu_is_mx2() (cpu_is_mx21() || cpu_is_mx27()) |
219 | 199 | ||
220 | #endif /* __ASM_ARCH_MXC_H__ */ | 200 | #endif /* __ASM_ARCH_MXC_H__ */ |
diff --git a/arch/arm/plat-mxc/include/mach/mxc91231.h b/arch/arm/plat-mxc/include/mach/mxc91231.h deleted file mode 100644 index 765190fe6332..000000000000 --- a/arch/arm/plat-mxc/include/mach/mxc91231.h +++ /dev/null | |||
@@ -1,256 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright 2004-2006 Freescale Semiconductor, Inc. All Rights Reserved. | ||
3 | * - Platform specific register memory map | ||
4 | * | ||
5 | * Copyright 2005-2007 Motorola, Inc. | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License as published by | ||
9 | * the Free Software Foundation; either version 2 of the License, or | ||
10 | * (at your option) any later version. | ||
11 | * | ||
12 | * This program is distributed in the hope that it will be useful, | ||
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
15 | * GNU General Public License for more details. | ||
16 | */ | ||
17 | #ifndef __MACH_MXC91231_H__ | ||
18 | #define __MACH_MXC91231_H__ | ||
19 | |||
20 | /* | ||
21 | * L2CC | ||
22 | */ | ||
23 | #define MXC91231_L2CC_BASE_ADDR 0x30000000 | ||
24 | #define MXC91231_L2CC_SIZE SZ_64K | ||
25 | |||
26 | /* | ||
27 | * AIPS 1 | ||
28 | */ | ||
29 | #define MXC91231_AIPS1_BASE_ADDR 0x43F00000 | ||
30 | #define MXC91231_AIPS1_SIZE SZ_1M | ||
31 | |||
32 | #define MXC91231_AIPS1_CTRL_BASE_ADDR MXC91231_AIPS1_BASE_ADDR | ||
33 | #define MXC91231_MAX_BASE_ADDR (MXC91231_AIPS1_BASE_ADDR + 0x04000) | ||
34 | #define MXC91231_EVTMON_BASE_ADDR (MXC91231_AIPS1_BASE_ADDR + 0x08000) | ||
35 | #define MXC91231_CLKCTL_BASE_ADDR (MXC91231_AIPS1_BASE_ADDR + 0x0C000) | ||
36 | #define MXC91231_ETB_SLOT4_BASE_ADDR (MXC91231_AIPS1_BASE_ADDR + 0x10000) | ||
37 | #define MXC91231_ETB_SLOT5_BASE_ADDR (MXC91231_AIPS1_BASE_ADDR + 0x14000) | ||
38 | #define MXC91231_ECT_CTIO_BASE_ADDR (MXC91231_AIPS1_BASE_ADDR + 0x18000) | ||
39 | #define MXC91231_I2C_BASE_ADDR (MXC91231_AIPS1_BASE_ADDR + 0x80000) | ||
40 | #define MXC91231_MU_BASE_ADDR (MXC91231_AIPS1_BASE_ADDR + 0x88000) | ||
41 | #define MXC91231_UART1_BASE_ADDR (MXC91231_AIPS1_BASE_ADDR + 0x90000) | ||
42 | #define MXC91231_UART2_BASE_ADDR (MXC91231_AIPS1_BASE_ADDR + 0x94000) | ||
43 | #define MXC91231_DSM_BASE_ADDR (MXC91231_AIPS1_BASE_ADDR + 0x98000) | ||
44 | #define MXC91231_OWIRE_BASE_ADDR (MXC91231_AIPS1_BASE_ADDR + 0x9C000) | ||
45 | #define MXC91231_SSI1_BASE_ADDR (MXC91231_AIPS1_BASE_ADDR + 0xA0000) | ||
46 | #define MXC91231_KPP_BASE_ADDR (MXC91231_AIPS1_BASE_ADDR + 0xA8000) | ||
47 | #define MXC91231_IOMUX_AP_BASE_ADDR (MXC91231_AIPS1_BASE_ADDR + 0xAC000) | ||
48 | #define MXC91231_CTI_AP_BASE_ADDR (MXC91231_AIPS1_BASE_ADDR + 0xB8000) | ||
49 | |||
50 | /* | ||
51 | * AIPS 2 | ||
52 | */ | ||
53 | #define MXC91231_AIPS2_BASE_ADDR 0x53F00000 | ||
54 | #define MXC91231_AIPS2_SIZE SZ_1M | ||
55 | |||
56 | #define MXC91231_GEMK_BASE_ADDR (MXC91231_AIPS2_BASE_ADDR + 0x8C000) | ||
57 | #define MXC91231_GPT1_BASE_ADDR (MXC91231_AIPS2_BASE_ADDR + 0x90000) | ||
58 | #define MXC91231_EPIT1_AP_BASE_ADDR (MXC91231_AIPS2_BASE_ADDR + 0x94000) | ||
59 | #define MXC91231_SCC_BASE_ADDR (MXC91231_AIPS2_BASE_ADDR + 0xAC000) | ||
60 | #define MXC91231_RNGA_BASE_ADDR (MXC91231_AIPS2_BASE_ADDR + 0xB0000) | ||
61 | #define MXC91231_IPU_CTRL_BASE_ADDR (MXC91231_AIPS2_BASE_ADDR + 0xC0000) | ||
62 | #define MXC91231_AUDMUX_BASE_ADDR (MXC91231_AIPS2_BASE_ADDR + 0xC4000) | ||
63 | #define MXC91231_EDIO_BASE_ADDR (MXC91231_AIPS2_BASE_ADDR + 0xC8000) | ||
64 | #define MXC91231_GPIO1_AP_BASE_ADDR (MXC91231_AIPS2_BASE_ADDR + 0xCC000) | ||
65 | #define MXC91231_GPIO2_AP_BASE_ADDR (MXC91231_AIPS2_BASE_ADDR + 0xD0000) | ||
66 | #define MXC91231_SDMA_BASE_ADDR (MXC91231_AIPS2_BASE_ADDR + 0xD4000) | ||
67 | #define MXC91231_RTC_BASE_ADDR (MXC91231_AIPS2_BASE_ADDR + 0xD8000) | ||
68 | #define MXC91231_WDOG1_BASE_ADDR (MXC91231_AIPS2_BASE_ADDR + 0xDC000) | ||
69 | #define MXC91231_PWM_BASE_ADDR (MXC91231_AIPS2_BASE_ADDR + 0xE0000) | ||
70 | #define MXC91231_GPIO3_AP_BASE_ADDR (MXC91231_AIPS2_BASE_ADDR + 0xE4000) | ||
71 | #define MXC91231_WDOG2_BASE_ADDR (MXC91231_AIPS2_BASE_ADDR + 0xE8000) | ||
72 | #define MXC91231_RTIC_BASE_ADDR (MXC91231_AIPS2_BASE_ADDR + 0xEC000) | ||
73 | #define MXC91231_LPMC_BASE_ADDR (MXC91231_AIPS2_BASE_ADDR + 0xF0000) | ||
74 | |||
75 | /* | ||
76 | * SPBA global module 0 | ||
77 | */ | ||
78 | #define MXC91231_SPBA0_BASE_ADDR 0x50000000 | ||
79 | #define MXC91231_SPBA0_SIZE SZ_1M | ||
80 | |||
81 | #define MXC91231_MMC_SDHC1_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x04000) | ||
82 | #define MXC91231_MMC_SDHC2_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x08000) | ||
83 | #define MXC91231_UART3_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x0C000) | ||
84 | #define MXC91231_CSPI2_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x10000) | ||
85 | #define MXC91231_SSI2_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x14000) | ||
86 | #define MXC91231_SIM_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x18000) | ||
87 | #define MXC91231_IIM_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x1C000) | ||
88 | #define MXC91231_CTI_SDMA_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x20000) | ||
89 | #define MXC91231_USBOTG_CTRL_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x24000) | ||
90 | #define MXC91231_USBOTG_DATA_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x28000) | ||
91 | #define MXC91231_CSPI1_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x30000) | ||
92 | #define MXC91231_SPBA_CTRL_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x3C000) | ||
93 | #define MXC91231_IOMUX_COM_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x40000) | ||
94 | #define MXC91231_CRM_COM_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x44000) | ||
95 | #define MXC91231_CRM_AP_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x48000) | ||
96 | #define MXC91231_PLL0_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x4C000) | ||
97 | #define MXC91231_PLL1_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x50000) | ||
98 | #define MXC91231_PLL2_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x54000) | ||
99 | #define MXC91231_GPIO4_SH_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x58000) | ||
100 | #define MXC91231_HAC_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x5C000) | ||
101 | #define MXC91231_SAHARA_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x5C000) | ||
102 | #define MXC91231_PLL3_BASE_ADDR (MXC91231_SPBA0_BASE_ADDR + 0x60000) | ||
103 | |||
104 | /* | ||
105 | * SPBA global module 1 | ||
106 | */ | ||
107 | #define MXC91231_SPBA1_BASE_ADDR 0x52000000 | ||
108 | #define MXC91231_SPBA1_SIZE SZ_1M | ||
109 | |||
110 | #define MXC91231_MQSPI_BASE_ADDR (MXC91231_SPBA1_BASE_ADDR + 0x34000) | ||
111 | #define MXC91231_EL1T_BASE_ADDR (MXC91231_SPBA1_BASE_ADDR + 0x38000) | ||
112 | |||
113 | /*! | ||
114 | * Defines for SPBA modules | ||
115 | */ | ||
116 | #define MXC91231_SPBA_SDHC1 0x04 | ||
117 | #define MXC91231_SPBA_SDHC2 0x08 | ||
118 | #define MXC91231_SPBA_UART3 0x0C | ||
119 | #define MXC91231_SPBA_CSPI2 0x10 | ||
120 | #define MXC91231_SPBA_SSI2 0x14 | ||
121 | #define MXC91231_SPBA_SIM 0x18 | ||
122 | #define MXC91231_SPBA_IIM 0x1C | ||
123 | #define MXC91231_SPBA_CTI_SDMA 0x20 | ||
124 | #define MXC91231_SPBA_USBOTG_CTRL_REGS 0x24 | ||
125 | #define MXC91231_SPBA_USBOTG_DATA_REGS 0x28 | ||
126 | #define MXC91231_SPBA_CSPI1 0x30 | ||
127 | #define MXC91231_SPBA_MQSPI 0x34 | ||
128 | #define MXC91231_SPBA_EL1T 0x38 | ||
129 | #define MXC91231_SPBA_IOMUX 0x40 | ||
130 | #define MXC91231_SPBA_CRM_COM 0x44 | ||
131 | #define MXC91231_SPBA_CRM_AP 0x48 | ||
132 | #define MXC91231_SPBA_PLL0 0x4C | ||
133 | #define MXC91231_SPBA_PLL1 0x50 | ||
134 | #define MXC91231_SPBA_PLL2 0x54 | ||
135 | #define MXC91231_SPBA_GPIO4 0x58 | ||
136 | #define MXC91231_SPBA_SAHARA 0x5C | ||
137 | |||
138 | /* | ||
139 | * ROMP and AVIC | ||
140 | */ | ||
141 | #define MXC91231_ROMP_BASE_ADDR 0x60000000 | ||
142 | #define MXC91231_ROMP_SIZE SZ_64K | ||
143 | |||
144 | #define MXC91231_AVIC_BASE_ADDR 0x68000000 | ||
145 | #define MXC91231_AVIC_SIZE SZ_64K | ||
146 | |||
147 | /* | ||
148 | * NAND, SDRAM, WEIM, M3IF, EMI controllers | ||
149 | */ | ||
150 | #define MXC91231_X_MEMC_BASE_ADDR 0xB8000000 | ||
151 | #define MXC91231_X_MEMC_SIZE SZ_64K | ||
152 | |||
153 | #define MXC91231_NFC_BASE_ADDR (MXC91231_X_MEMC_BASE_ADDR + 0x0000) | ||
154 | #define MXC91231_ESDCTL_BASE_ADDR (MXC91231_X_MEMC_BASE_ADDR + 0x1000) | ||
155 | #define MXC91231_WEIM_BASE_ADDR (MXC91231_X_MEMC_BASE_ADDR + 0x2000) | ||
156 | #define MXC91231_M3IF_BASE_ADDR (MXC91231_X_MEMC_BASE_ADDR + 0x3000) | ||
157 | #define MXC91231_EMI_CTL_BASE_ADDR (MXC91231_X_MEMC_BASE_ADDR + 0x4000) | ||
158 | |||
159 | /* | ||
160 | * Memory regions and CS | ||
161 | * CPLD is connected on CS4 | ||
162 | * CS5 is TP1021 or it is not connected | ||
163 | * */ | ||
164 | #define MXC91231_FB_RAM_BASE_ADDR 0x78000000 | ||
165 | #define MXC91231_FB_RAM_SIZE SZ_256K | ||
166 | #define MXC91231_CSD0_BASE_ADDR 0x80000000 | ||
167 | #define MXC91231_CSD1_BASE_ADDR 0x90000000 | ||
168 | #define MXC91231_CS0_BASE_ADDR 0xA0000000 | ||
169 | #define MXC91231_CS1_BASE_ADDR 0xA8000000 | ||
170 | #define MXC91231_CS2_BASE_ADDR 0xB0000000 | ||
171 | #define MXC91231_CS3_BASE_ADDR 0xB2000000 | ||
172 | #define MXC91231_CS4_BASE_ADDR 0xB4000000 | ||
173 | #define MXC91231_CS5_BASE_ADDR 0xB6000000 | ||
174 | |||
175 | /* | ||
176 | * This macro defines the physical to virtual address mapping for all the | ||
177 | * peripheral modules. It is used by passing in the physical address as x | ||
178 | * and returning the virtual address. | ||
179 | */ | ||
180 | #define MXC91231_IO_P2V(x) IMX_IO_P2V(x) | ||
181 | #define MXC91231_IO_ADDRESS(x) IOMEM(MXC91231_IO_P2V(x)) | ||
182 | |||
183 | /* | ||
184 | * Interrupt numbers | ||
185 | */ | ||
186 | #define MXC91231_INT_GPIO3 0 | ||
187 | #define MXC91231_INT_EL1T_CI 1 | ||
188 | #define MXC91231_INT_EL1T_RFCI 2 | ||
189 | #define MXC91231_INT_EL1T_RFI 3 | ||
190 | #define MXC91231_INT_EL1T_MCU 4 | ||
191 | #define MXC91231_INT_EL1T_IPI 5 | ||
192 | #define MXC91231_INT_MU_GEN 6 | ||
193 | #define MXC91231_INT_GPIO4 7 | ||
194 | #define MXC91231_INT_MMC_SDHC2 8 | ||
195 | #define MXC91231_INT_MMC_SDHC1 9 | ||
196 | #define MXC91231_INT_I2C 10 | ||
197 | #define MXC91231_INT_SSI2 11 | ||
198 | #define MXC91231_INT_SSI1 12 | ||
199 | #define MXC91231_INT_CSPI2 13 | ||
200 | #define MXC91231_INT_CSPI1 14 | ||
201 | #define MXC91231_INT_RTIC 15 | ||
202 | #define MXC91231_INT_SAHARA 15 | ||
203 | #define MXC91231_INT_HAC 15 | ||
204 | #define MXC91231_INT_UART3_RX 16 | ||
205 | #define MXC91231_INT_UART3_TX 17 | ||
206 | #define MXC91231_INT_UART3_MINT 18 | ||
207 | #define MXC91231_INT_ECT 19 | ||
208 | #define MXC91231_INT_SIM_IPB 20 | ||
209 | #define MXC91231_INT_SIM_DATA 21 | ||
210 | #define MXC91231_INT_RNGA 22 | ||
211 | #define MXC91231_INT_DSM_AP 23 | ||
212 | #define MXC91231_INT_KPP 24 | ||
213 | #define MXC91231_INT_RTC 25 | ||
214 | #define MXC91231_INT_PWM 26 | ||
215 | #define MXC91231_INT_GEMK_AP 27 | ||
216 | #define MXC91231_INT_EPIT 28 | ||
217 | #define MXC91231_INT_GPT 29 | ||
218 | #define MXC91231_INT_UART2_RX 30 | ||
219 | #define MXC91231_INT_UART2_TX 31 | ||
220 | #define MXC91231_INT_UART2_MINT 32 | ||
221 | #define MXC91231_INT_NANDFC 33 | ||
222 | #define MXC91231_INT_SDMA 34 | ||
223 | #define MXC91231_INT_USB_WAKEUP 35 | ||
224 | #define MXC91231_INT_USB_SOF 36 | ||
225 | #define MXC91231_INT_PMU_EVTMON 37 | ||
226 | #define MXC91231_INT_USB_FUNC 38 | ||
227 | #define MXC91231_INT_USB_DMA 39 | ||
228 | #define MXC91231_INT_USB_CTRL 40 | ||
229 | #define MXC91231_INT_IPU_ERR 41 | ||
230 | #define MXC91231_INT_IPU_SYN 42 | ||
231 | #define MXC91231_INT_UART1_RX 43 | ||
232 | #define MXC91231_INT_UART1_TX 44 | ||
233 | #define MXC91231_INT_UART1_MINT 45 | ||
234 | #define MXC91231_INT_IIM 46 | ||
235 | #define MXC91231_INT_MU_RX_OR 47 | ||
236 | #define MXC91231_INT_MU_TX_OR 48 | ||
237 | #define MXC91231_INT_SCC_SCM 49 | ||
238 | #define MXC91231_INT_SCC_SMN 50 | ||
239 | #define MXC91231_INT_GPIO2 51 | ||
240 | #define MXC91231_INT_GPIO1 52 | ||
241 | #define MXC91231_INT_MQSPI1 53 | ||
242 | #define MXC91231_INT_MQSPI2 54 | ||
243 | #define MXC91231_INT_WDOG2 55 | ||
244 | #define MXC91231_INT_EXT_INT7 56 | ||
245 | #define MXC91231_INT_EXT_INT6 57 | ||
246 | #define MXC91231_INT_EXT_INT5 58 | ||
247 | #define MXC91231_INT_EXT_INT4 59 | ||
248 | #define MXC91231_INT_EXT_INT3 60 | ||
249 | #define MXC91231_INT_EXT_INT2 61 | ||
250 | #define MXC91231_INT_EXT_INT1 62 | ||
251 | #define MXC91231_INT_EXT_INT0 63 | ||
252 | |||
253 | #define MXC91231_MAX_INT_LINES 63 | ||
254 | #define MXC91231_MAX_EXT_LINES 8 | ||
255 | |||
256 | #endif /* __MACH_MXC91231_H__ */ | ||
diff --git a/arch/arm/plat-mxc/include/mach/system.h b/arch/arm/plat-mxc/include/mach/system.h index 0417da9f710d..51f02a9d41a3 100644 --- a/arch/arm/plat-mxc/include/mach/system.h +++ b/arch/arm/plat-mxc/include/mach/system.h | |||
@@ -24,12 +24,6 @@ extern void mx5_cpu_lp_set(enum mxc_cpu_pwr_mode mode); | |||
24 | 24 | ||
25 | static inline void arch_idle(void) | 25 | static inline void arch_idle(void) |
26 | { | 26 | { |
27 | #ifdef CONFIG_ARCH_MXC91231 | ||
28 | if (cpu_is_mxc91231()) { | ||
29 | /* Need this to set DSM low-power mode */ | ||
30 | mxc91231_prepare_idle(); | ||
31 | } | ||
32 | #endif | ||
33 | /* fix i.MX31 errata TLSbo65953 and i.MX35 errata ENGcm09472 */ | 27 | /* fix i.MX31 errata TLSbo65953 and i.MX35 errata ENGcm09472 */ |
34 | if (cpu_is_mx31() || cpu_is_mx35()) { | 28 | if (cpu_is_mx31() || cpu_is_mx35()) { |
35 | unsigned long reg = 0; | 29 | unsigned long reg = 0; |
diff --git a/arch/arm/plat-mxc/include/mach/timex.h b/arch/arm/plat-mxc/include/mach/timex.h index 2d9624697cc9..d61d5c74817c 100644 --- a/arch/arm/plat-mxc/include/mach/timex.h +++ b/arch/arm/plat-mxc/include/mach/timex.h | |||
@@ -26,8 +26,6 @@ | |||
26 | #define CLOCK_TICK_RATE 16000000 | 26 | #define CLOCK_TICK_RATE 16000000 |
27 | #elif defined CONFIG_ARCH_MX5 | 27 | #elif defined CONFIG_ARCH_MX5 |
28 | #define CLOCK_TICK_RATE 8000000 | 28 | #define CLOCK_TICK_RATE 8000000 |
29 | #elif defined CONFIG_ARCH_MXC91231 | ||
30 | #define CLOCK_TICK_RATE 13000000 | ||
31 | #endif | 29 | #endif |
32 | 30 | ||
33 | #endif /* __ASM_ARCH_MXC_TIMEX_H__ */ | 31 | #endif /* __ASM_ARCH_MXC_TIMEX_H__ */ |
diff --git a/arch/arm/plat-mxc/include/mach/uncompress.h b/arch/arm/plat-mxc/include/mach/uncompress.h index 4864b0afd440..d85e2d1c0324 100644 --- a/arch/arm/plat-mxc/include/mach/uncompress.h +++ b/arch/arm/plat-mxc/include/mach/uncompress.h | |||
@@ -21,7 +21,7 @@ | |||
21 | 21 | ||
22 | #include <asm/mach-types.h> | 22 | #include <asm/mach-types.h> |
23 | 23 | ||
24 | static unsigned long uart_base; | 24 | unsigned long uart_base; |
25 | 25 | ||
26 | #define UART(x) (*(volatile unsigned long *)(uart_base + (x))) | 26 | #define UART(x) (*(volatile unsigned long *)(uart_base + (x))) |
27 | 27 | ||
diff --git a/arch/arm/plat-mxc/system.c b/arch/arm/plat-mxc/system.c index 3455fc0575a6..8024f2ac177c 100644 --- a/arch/arm/plat-mxc/system.c +++ b/arch/arm/plat-mxc/system.c | |||
@@ -37,12 +37,6 @@ void arch_reset(char mode, const char *cmd) | |||
37 | { | 37 | { |
38 | unsigned int wcr_enable; | 38 | unsigned int wcr_enable; |
39 | 39 | ||
40 | #ifdef CONFIG_ARCH_MXC91231 | ||
41 | if (cpu_is_mxc91231()) { | ||
42 | mxc91231_arch_reset(mode, cmd); | ||
43 | return; | ||
44 | } | ||
45 | #endif | ||
46 | #ifdef CONFIG_MACH_MX51_EFIKAMX | 40 | #ifdef CONFIG_MACH_MX51_EFIKAMX |
47 | if (machine_is_mx51_efikamx()) { | 41 | if (machine_is_mx51_efikamx()) { |
48 | mx51_efikamx_reset(); | 42 | mx51_efikamx_reset(); |
diff --git a/arch/arm/plat-mxc/time.c b/arch/arm/plat-mxc/time.c index e4ac94a86832..4b0fe285e83c 100644 --- a/arch/arm/plat-mxc/time.c +++ b/arch/arm/plat-mxc/time.c | |||
@@ -54,7 +54,7 @@ | |||
54 | #define MX2_TSTAT_CAPT (1 << 1) | 54 | #define MX2_TSTAT_CAPT (1 << 1) |
55 | #define MX2_TSTAT_COMP (1 << 0) | 55 | #define MX2_TSTAT_COMP (1 << 0) |
56 | 56 | ||
57 | /* MX31, MX35, MX25, MXC91231, MX5 */ | 57 | /* MX31, MX35, MX25, MX5 */ |
58 | #define V2_TCTL_WAITEN (1 << 3) /* Wait enable mode */ | 58 | #define V2_TCTL_WAITEN (1 << 3) /* Wait enable mode */ |
59 | #define V2_TCTL_CLK_IPG (1 << 6) | 59 | #define V2_TCTL_CLK_IPG (1 << 6) |
60 | #define V2_TCTL_FRR (1 << 9) | 60 | #define V2_TCTL_FRR (1 << 9) |
diff --git a/arch/arm/plat-nomadik/gpio.c b/arch/arm/plat-nomadik/gpio.c index f49748eca1a3..307b8131aa8c 100644 --- a/arch/arm/plat-nomadik/gpio.c +++ b/arch/arm/plat-nomadik/gpio.c | |||
@@ -23,6 +23,8 @@ | |||
23 | #include <linux/irq.h> | 23 | #include <linux/irq.h> |
24 | #include <linux/slab.h> | 24 | #include <linux/slab.h> |
25 | 25 | ||
26 | #include <asm/mach/irq.h> | ||
27 | |||
26 | #include <plat/pincfg.h> | 28 | #include <plat/pincfg.h> |
27 | #include <mach/hardware.h> | 29 | #include <mach/hardware.h> |
28 | #include <mach/gpio.h> | 30 | #include <mach/gpio.h> |
@@ -681,13 +683,7 @@ static void __nmk_gpio_irq_handler(unsigned int irq, struct irq_desc *desc, | |||
681 | struct irq_chip *host_chip = irq_get_chip(irq); | 683 | struct irq_chip *host_chip = irq_get_chip(irq); |
682 | unsigned int first_irq; | 684 | unsigned int first_irq; |
683 | 685 | ||
684 | if (host_chip->irq_mask_ack) | 686 | chained_irq_enter(host_chip, desc); |
685 | host_chip->irq_mask_ack(&desc->irq_data); | ||
686 | else { | ||
687 | host_chip->irq_mask(&desc->irq_data); | ||
688 | if (host_chip->irq_ack) | ||
689 | host_chip->irq_ack(&desc->irq_data); | ||
690 | } | ||
691 | 687 | ||
692 | nmk_chip = irq_get_handler_data(irq); | 688 | nmk_chip = irq_get_handler_data(irq); |
693 | first_irq = NOMADIK_GPIO_TO_IRQ(nmk_chip->chip.base); | 689 | first_irq = NOMADIK_GPIO_TO_IRQ(nmk_chip->chip.base); |
@@ -698,7 +694,7 @@ static void __nmk_gpio_irq_handler(unsigned int irq, struct irq_desc *desc, | |||
698 | status &= ~BIT(bit); | 694 | status &= ~BIT(bit); |
699 | } | 695 | } |
700 | 696 | ||
701 | host_chip->irq_unmask(&desc->irq_data); | 697 | chained_irq_exit(host_chip, desc); |
702 | } | 698 | } |
703 | 699 | ||
704 | static void nmk_gpio_irq_handler(unsigned int irq, struct irq_desc *desc) | 700 | static void nmk_gpio_irq_handler(unsigned int irq, struct irq_desc *desc) |
diff --git a/arch/arm/plat-omap/Kconfig b/arch/arm/plat-omap/Kconfig index e9c0efc5d4af..49a4c75243fc 100644 --- a/arch/arm/plat-omap/Kconfig +++ b/arch/arm/plat-omap/Kconfig | |||
@@ -19,6 +19,7 @@ config ARCH_OMAP1 | |||
19 | config ARCH_OMAP2PLUS | 19 | config ARCH_OMAP2PLUS |
20 | bool "TI OMAP2/3/4" | 20 | bool "TI OMAP2/3/4" |
21 | select CLKDEV_LOOKUP | 21 | select CLKDEV_LOOKUP |
22 | select GENERIC_IRQ_CHIP | ||
22 | select OMAP_DM_TIMER | 23 | select OMAP_DM_TIMER |
23 | help | 24 | help |
24 | "Systems based on OMAP2, OMAP3 or OMAP4" | 25 | "Systems based on OMAP2, OMAP3 or OMAP4" |
diff --git a/arch/arm/plat-omap/gpio.c b/arch/arm/plat-omap/gpio.c index bd9e32187eab..efb869390199 100644 --- a/arch/arm/plat-omap/gpio.c +++ b/arch/arm/plat-omap/gpio.c | |||
@@ -1137,8 +1137,9 @@ static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc) | |||
1137 | struct gpio_bank *bank; | 1137 | struct gpio_bank *bank; |
1138 | u32 retrigger = 0; | 1138 | u32 retrigger = 0; |
1139 | int unmasked = 0; | 1139 | int unmasked = 0; |
1140 | struct irq_chip *chip = irq_desc_get_chip(desc); | ||
1140 | 1141 | ||
1141 | desc->irq_data.chip->irq_ack(&desc->irq_data); | 1142 | chained_irq_enter(chip, desc); |
1142 | 1143 | ||
1143 | bank = irq_get_handler_data(irq); | 1144 | bank = irq_get_handler_data(irq); |
1144 | #ifdef CONFIG_ARCH_OMAP1 | 1145 | #ifdef CONFIG_ARCH_OMAP1 |
@@ -1195,7 +1196,7 @@ static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc) | |||
1195 | configured, we could unmask GPIO bank interrupt immediately */ | 1196 | configured, we could unmask GPIO bank interrupt immediately */ |
1196 | if (!level_mask && !unmasked) { | 1197 | if (!level_mask && !unmasked) { |
1197 | unmasked = 1; | 1198 | unmasked = 1; |
1198 | desc->irq_data.chip->irq_unmask(&desc->irq_data); | 1199 | chained_irq_exit(chip, desc); |
1199 | } | 1200 | } |
1200 | 1201 | ||
1201 | isr |= retrigger; | 1202 | isr |= retrigger; |
@@ -1231,7 +1232,7 @@ static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc) | |||
1231 | interrupt */ | 1232 | interrupt */ |
1232 | exit: | 1233 | exit: |
1233 | if (!unmasked) | 1234 | if (!unmasked) |
1234 | desc->irq_data.chip->irq_unmask(&desc->irq_data); | 1235 | chained_irq_exit(chip, desc); |
1235 | } | 1236 | } |
1236 | 1237 | ||
1237 | static void gpio_irq_shutdown(struct irq_data *d) | 1238 | static void gpio_irq_shutdown(struct irq_data *d) |
diff --git a/arch/arm/plat-omap/include/plat/uncompress.h b/arch/arm/plat-omap/include/plat/uncompress.h index 30b891c4a93f..565d2664f5a7 100644 --- a/arch/arm/plat-omap/include/plat/uncompress.h +++ b/arch/arm/plat-omap/include/plat/uncompress.h | |||
@@ -27,8 +27,8 @@ | |||
27 | 27 | ||
28 | #define MDR1_MODE_MASK 0x07 | 28 | #define MDR1_MODE_MASK 0x07 |
29 | 29 | ||
30 | static volatile u8 *uart_base; | 30 | volatile u8 *uart_base; |
31 | static int uart_shift; | 31 | int uart_shift; |
32 | 32 | ||
33 | /* | 33 | /* |
34 | * Store the DEBUG_LL uart number into memory. | 34 | * Store the DEBUG_LL uart number into memory. |
diff --git a/arch/arm/plat-orion/Makefile b/arch/arm/plat-orion/Makefile index 56021a72e10c..95a5fc53b6db 100644 --- a/arch/arm/plat-orion/Makefile +++ b/arch/arm/plat-orion/Makefile | |||
@@ -2,7 +2,7 @@ | |||
2 | # Makefile for the linux kernel. | 2 | # Makefile for the linux kernel. |
3 | # | 3 | # |
4 | 4 | ||
5 | obj-y := irq.o pcie.o time.o | 5 | obj-y := irq.o pcie.o time.o common.o mpp.o |
6 | obj-m := | 6 | obj-m := |
7 | obj-n := | 7 | obj-n := |
8 | obj- := | 8 | obj- := |
diff --git a/arch/arm/plat-orion/common.c b/arch/arm/plat-orion/common.c new file mode 100644 index 000000000000..9e5451b3c8e3 --- /dev/null +++ b/arch/arm/plat-orion/common.c | |||
@@ -0,0 +1,957 @@ | |||
1 | /* | ||
2 | * arch/arm/plat-orion/common.c | ||
3 | * | ||
4 | * Marvell Orion SoC common setup code used by multiple mach-/common.c | ||
5 | * | ||
6 | * This file is licensed under the terms of the GNU General Public | ||
7 | * License version 2. This program is licensed "as is" without any | ||
8 | * warranty of any kind, whether express or implied. | ||
9 | */ | ||
10 | |||
11 | #include <linux/kernel.h> | ||
12 | #include <linux/init.h> | ||
13 | #include <linux/platform_device.h> | ||
14 | #include <linux/dma-mapping.h> | ||
15 | #include <linux/serial_8250.h> | ||
16 | #include <linux/mbus.h> | ||
17 | #include <linux/ata_platform.h> | ||
18 | #include <linux/mv643xx_eth.h> | ||
19 | #include <linux/mv643xx_i2c.h> | ||
20 | #include <net/dsa.h> | ||
21 | #include <linux/spi/orion_spi.h> | ||
22 | #include <plat/orion_wdt.h> | ||
23 | #include <plat/mv_xor.h> | ||
24 | #include <plat/ehci-orion.h> | ||
25 | |||
26 | /* Fill in the resources structure and link it into the platform | ||
27 | device structure. There is always a memory region, and nearly | ||
28 | always an interrupt.*/ | ||
29 | static void fill_resources(struct platform_device *device, | ||
30 | struct resource *resources, | ||
31 | resource_size_t mapbase, | ||
32 | resource_size_t size, | ||
33 | unsigned int irq) | ||
34 | { | ||
35 | device->resource = resources; | ||
36 | device->num_resources = 1; | ||
37 | resources[0].flags = IORESOURCE_MEM; | ||
38 | resources[0].start = mapbase; | ||
39 | resources[0].end = mapbase + size; | ||
40 | |||
41 | if (irq != NO_IRQ) { | ||
42 | device->num_resources++; | ||
43 | resources[1].flags = IORESOURCE_IRQ; | ||
44 | resources[1].start = irq; | ||
45 | resources[1].end = irq; | ||
46 | } | ||
47 | } | ||
48 | |||
49 | /***************************************************************************** | ||
50 | * UART | ||
51 | ****************************************************************************/ | ||
52 | static void __init uart_complete( | ||
53 | struct platform_device *orion_uart, | ||
54 | struct plat_serial8250_port *data, | ||
55 | struct resource *resources, | ||
56 | unsigned int membase, | ||
57 | resource_size_t mapbase, | ||
58 | unsigned int irq, | ||
59 | unsigned int uartclk) | ||
60 | { | ||
61 | data->mapbase = mapbase; | ||
62 | data->membase = (void __iomem *)membase; | ||
63 | data->irq = irq; | ||
64 | data->uartclk = uartclk; | ||
65 | orion_uart->dev.platform_data = data; | ||
66 | |||
67 | fill_resources(orion_uart, resources, mapbase, 0xff, irq); | ||
68 | platform_device_register(orion_uart); | ||
69 | } | ||
70 | |||
71 | /***************************************************************************** | ||
72 | * UART0 | ||
73 | ****************************************************************************/ | ||
74 | static struct plat_serial8250_port orion_uart0_data[] = { | ||
75 | { | ||
76 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, | ||
77 | .iotype = UPIO_MEM, | ||
78 | .regshift = 2, | ||
79 | }, { | ||
80 | }, | ||
81 | }; | ||
82 | |||
83 | static struct resource orion_uart0_resources[2]; | ||
84 | |||
85 | static struct platform_device orion_uart0 = { | ||
86 | .name = "serial8250", | ||
87 | .id = PLAT8250_DEV_PLATFORM, | ||
88 | }; | ||
89 | |||
90 | void __init orion_uart0_init(unsigned int membase, | ||
91 | resource_size_t mapbase, | ||
92 | unsigned int irq, | ||
93 | unsigned int uartclk) | ||
94 | { | ||
95 | uart_complete(&orion_uart0, orion_uart0_data, orion_uart0_resources, | ||
96 | membase, mapbase, irq, uartclk); | ||
97 | } | ||
98 | |||
99 | /***************************************************************************** | ||
100 | * UART1 | ||
101 | ****************************************************************************/ | ||
102 | static struct plat_serial8250_port orion_uart1_data[] = { | ||
103 | { | ||
104 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, | ||
105 | .iotype = UPIO_MEM, | ||
106 | .regshift = 2, | ||
107 | }, { | ||
108 | }, | ||
109 | }; | ||
110 | |||
111 | static struct resource orion_uart1_resources[2]; | ||
112 | |||
113 | static struct platform_device orion_uart1 = { | ||
114 | .name = "serial8250", | ||
115 | .id = PLAT8250_DEV_PLATFORM1, | ||
116 | }; | ||
117 | |||
118 | void __init orion_uart1_init(unsigned int membase, | ||
119 | resource_size_t mapbase, | ||
120 | unsigned int irq, | ||
121 | unsigned int uartclk) | ||
122 | { | ||
123 | uart_complete(&orion_uart1, orion_uart1_data, orion_uart1_resources, | ||
124 | membase, mapbase, irq, uartclk); | ||
125 | } | ||
126 | |||
127 | /***************************************************************************** | ||
128 | * UART2 | ||
129 | ****************************************************************************/ | ||
130 | static struct plat_serial8250_port orion_uart2_data[] = { | ||
131 | { | ||
132 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, | ||
133 | .iotype = UPIO_MEM, | ||
134 | .regshift = 2, | ||
135 | }, { | ||
136 | }, | ||
137 | }; | ||
138 | |||
139 | static struct resource orion_uart2_resources[2]; | ||
140 | |||
141 | static struct platform_device orion_uart2 = { | ||
142 | .name = "serial8250", | ||
143 | .id = PLAT8250_DEV_PLATFORM2, | ||
144 | }; | ||
145 | |||
146 | void __init orion_uart2_init(unsigned int membase, | ||
147 | resource_size_t mapbase, | ||
148 | unsigned int irq, | ||
149 | unsigned int uartclk) | ||
150 | { | ||
151 | uart_complete(&orion_uart2, orion_uart2_data, orion_uart2_resources, | ||
152 | membase, mapbase, irq, uartclk); | ||
153 | } | ||
154 | |||
155 | /***************************************************************************** | ||
156 | * UART3 | ||
157 | ****************************************************************************/ | ||
158 | static struct plat_serial8250_port orion_uart3_data[] = { | ||
159 | { | ||
160 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, | ||
161 | .iotype = UPIO_MEM, | ||
162 | .regshift = 2, | ||
163 | }, { | ||
164 | }, | ||
165 | }; | ||
166 | |||
167 | static struct resource orion_uart3_resources[2]; | ||
168 | |||
169 | static struct platform_device orion_uart3 = { | ||
170 | .name = "serial8250", | ||
171 | .id = 3, | ||
172 | }; | ||
173 | |||
174 | void __init orion_uart3_init(unsigned int membase, | ||
175 | resource_size_t mapbase, | ||
176 | unsigned int irq, | ||
177 | unsigned int uartclk) | ||
178 | { | ||
179 | uart_complete(&orion_uart3, orion_uart3_data, orion_uart3_resources, | ||
180 | membase, mapbase, irq, uartclk); | ||
181 | } | ||
182 | |||
183 | /***************************************************************************** | ||
184 | * SoC RTC | ||
185 | ****************************************************************************/ | ||
186 | static struct resource orion_rtc_resource[2]; | ||
187 | |||
188 | void __init orion_rtc_init(unsigned long mapbase, | ||
189 | unsigned long irq) | ||
190 | { | ||
191 | orion_rtc_resource[0].start = mapbase; | ||
192 | orion_rtc_resource[0].end = mapbase + SZ_32 - 1; | ||
193 | orion_rtc_resource[0].flags = IORESOURCE_MEM; | ||
194 | orion_rtc_resource[1].start = irq; | ||
195 | orion_rtc_resource[1].end = irq; | ||
196 | orion_rtc_resource[1].flags = IORESOURCE_IRQ; | ||
197 | |||
198 | platform_device_register_simple("rtc-mv", -1, orion_rtc_resource, 2); | ||
199 | } | ||
200 | |||
201 | /***************************************************************************** | ||
202 | * GE | ||
203 | ****************************************************************************/ | ||
204 | static __init void ge_complete( | ||
205 | struct mv643xx_eth_shared_platform_data *orion_ge_shared_data, | ||
206 | struct mbus_dram_target_info *mbus_dram_info, int tclk, | ||
207 | struct resource *orion_ge_resource, unsigned long irq, | ||
208 | struct platform_device *orion_ge_shared, | ||
209 | struct mv643xx_eth_platform_data *eth_data, | ||
210 | struct platform_device *orion_ge) | ||
211 | { | ||
212 | orion_ge_shared_data->dram = mbus_dram_info; | ||
213 | orion_ge_shared_data->t_clk = tclk; | ||
214 | orion_ge_resource->start = irq; | ||
215 | orion_ge_resource->end = irq; | ||
216 | eth_data->shared = orion_ge_shared; | ||
217 | orion_ge->dev.platform_data = eth_data; | ||
218 | |||
219 | platform_device_register(orion_ge_shared); | ||
220 | platform_device_register(orion_ge); | ||
221 | } | ||
222 | |||
223 | /***************************************************************************** | ||
224 | * GE00 | ||
225 | ****************************************************************************/ | ||
226 | struct mv643xx_eth_shared_platform_data orion_ge00_shared_data; | ||
227 | |||
228 | static struct resource orion_ge00_shared_resources[] = { | ||
229 | { | ||
230 | .name = "ge00 base", | ||
231 | }, { | ||
232 | .name = "ge00 err irq", | ||
233 | }, | ||
234 | }; | ||
235 | |||
236 | static struct platform_device orion_ge00_shared = { | ||
237 | .name = MV643XX_ETH_SHARED_NAME, | ||
238 | .id = 0, | ||
239 | .dev = { | ||
240 | .platform_data = &orion_ge00_shared_data, | ||
241 | }, | ||
242 | }; | ||
243 | |||
244 | static struct resource orion_ge00_resources[] = { | ||
245 | { | ||
246 | .name = "ge00 irq", | ||
247 | .flags = IORESOURCE_IRQ, | ||
248 | }, | ||
249 | }; | ||
250 | |||
251 | static struct platform_device orion_ge00 = { | ||
252 | .name = MV643XX_ETH_NAME, | ||
253 | .id = 0, | ||
254 | .num_resources = 1, | ||
255 | .resource = orion_ge00_resources, | ||
256 | .dev = { | ||
257 | .coherent_dma_mask = DMA_BIT_MASK(32), | ||
258 | }, | ||
259 | }; | ||
260 | |||
261 | void __init orion_ge00_init(struct mv643xx_eth_platform_data *eth_data, | ||
262 | struct mbus_dram_target_info *mbus_dram_info, | ||
263 | unsigned long mapbase, | ||
264 | unsigned long irq, | ||
265 | unsigned long irq_err, | ||
266 | int tclk) | ||
267 | { | ||
268 | fill_resources(&orion_ge00_shared, orion_ge00_shared_resources, | ||
269 | mapbase + 0x2000, SZ_16K - 1, irq_err); | ||
270 | ge_complete(&orion_ge00_shared_data, mbus_dram_info, tclk, | ||
271 | orion_ge00_resources, irq, &orion_ge00_shared, | ||
272 | eth_data, &orion_ge00); | ||
273 | } | ||
274 | |||
275 | /***************************************************************************** | ||
276 | * GE01 | ||
277 | ****************************************************************************/ | ||
278 | struct mv643xx_eth_shared_platform_data orion_ge01_shared_data = { | ||
279 | .shared_smi = &orion_ge00_shared, | ||
280 | }; | ||
281 | |||
282 | static struct resource orion_ge01_shared_resources[] = { | ||
283 | { | ||
284 | .name = "ge01 base", | ||
285 | }, { | ||
286 | .name = "ge01 err irq", | ||
287 | }, | ||
288 | }; | ||
289 | |||
290 | static struct platform_device orion_ge01_shared = { | ||
291 | .name = MV643XX_ETH_SHARED_NAME, | ||
292 | .id = 1, | ||
293 | .dev = { | ||
294 | .platform_data = &orion_ge01_shared_data, | ||
295 | }, | ||
296 | }; | ||
297 | |||
298 | static struct resource orion_ge01_resources[] = { | ||
299 | { | ||
300 | .name = "ge01 irq", | ||
301 | .flags = IORESOURCE_IRQ, | ||
302 | }, | ||
303 | }; | ||
304 | |||
305 | static struct platform_device orion_ge01 = { | ||
306 | .name = MV643XX_ETH_NAME, | ||
307 | .id = 1, | ||
308 | .num_resources = 1, | ||
309 | .resource = orion_ge01_resources, | ||
310 | .dev = { | ||
311 | .coherent_dma_mask = DMA_BIT_MASK(32), | ||
312 | }, | ||
313 | }; | ||
314 | |||
315 | void __init orion_ge01_init(struct mv643xx_eth_platform_data *eth_data, | ||
316 | struct mbus_dram_target_info *mbus_dram_info, | ||
317 | unsigned long mapbase, | ||
318 | unsigned long irq, | ||
319 | unsigned long irq_err, | ||
320 | int tclk) | ||
321 | { | ||
322 | fill_resources(&orion_ge01_shared, orion_ge01_shared_resources, | ||
323 | mapbase + 0x2000, SZ_16K - 1, irq_err); | ||
324 | ge_complete(&orion_ge01_shared_data, mbus_dram_info, tclk, | ||
325 | orion_ge01_resources, irq, &orion_ge01_shared, | ||
326 | eth_data, &orion_ge01); | ||
327 | } | ||
328 | |||
329 | /***************************************************************************** | ||
330 | * GE10 | ||
331 | ****************************************************************************/ | ||
332 | struct mv643xx_eth_shared_platform_data orion_ge10_shared_data = { | ||
333 | .shared_smi = &orion_ge00_shared, | ||
334 | }; | ||
335 | |||
336 | static struct resource orion_ge10_shared_resources[] = { | ||
337 | { | ||
338 | .name = "ge10 base", | ||
339 | }, { | ||
340 | .name = "ge10 err irq", | ||
341 | }, | ||
342 | }; | ||
343 | |||
344 | static struct platform_device orion_ge10_shared = { | ||
345 | .name = MV643XX_ETH_SHARED_NAME, | ||
346 | .id = 1, | ||
347 | .dev = { | ||
348 | .platform_data = &orion_ge10_shared_data, | ||
349 | }, | ||
350 | }; | ||
351 | |||
352 | static struct resource orion_ge10_resources[] = { | ||
353 | { | ||
354 | .name = "ge10 irq", | ||
355 | .flags = IORESOURCE_IRQ, | ||
356 | }, | ||
357 | }; | ||
358 | |||
359 | static struct platform_device orion_ge10 = { | ||
360 | .name = MV643XX_ETH_NAME, | ||
361 | .id = 1, | ||
362 | .num_resources = 2, | ||
363 | .resource = orion_ge10_resources, | ||
364 | .dev = { | ||
365 | .coherent_dma_mask = DMA_BIT_MASK(32), | ||
366 | }, | ||
367 | }; | ||
368 | |||
369 | void __init orion_ge10_init(struct mv643xx_eth_platform_data *eth_data, | ||
370 | struct mbus_dram_target_info *mbus_dram_info, | ||
371 | unsigned long mapbase, | ||
372 | unsigned long irq, | ||
373 | unsigned long irq_err, | ||
374 | int tclk) | ||
375 | { | ||
376 | fill_resources(&orion_ge10_shared, orion_ge10_shared_resources, | ||
377 | mapbase + 0x2000, SZ_16K - 1, irq_err); | ||
378 | ge_complete(&orion_ge10_shared_data, mbus_dram_info, tclk, | ||
379 | orion_ge10_resources, irq, &orion_ge10_shared, | ||
380 | eth_data, &orion_ge10); | ||
381 | } | ||
382 | |||
383 | /***************************************************************************** | ||
384 | * GE11 | ||
385 | ****************************************************************************/ | ||
386 | struct mv643xx_eth_shared_platform_data orion_ge11_shared_data = { | ||
387 | .shared_smi = &orion_ge00_shared, | ||
388 | }; | ||
389 | |||
390 | static struct resource orion_ge11_shared_resources[] = { | ||
391 | { | ||
392 | .name = "ge11 base", | ||
393 | }, { | ||
394 | .name = "ge11 err irq", | ||
395 | }, | ||
396 | }; | ||
397 | |||
398 | static struct platform_device orion_ge11_shared = { | ||
399 | .name = MV643XX_ETH_SHARED_NAME, | ||
400 | .id = 1, | ||
401 | .dev = { | ||
402 | .platform_data = &orion_ge11_shared_data, | ||
403 | }, | ||
404 | }; | ||
405 | |||
406 | static struct resource orion_ge11_resources[] = { | ||
407 | { | ||
408 | .name = "ge11 irq", | ||
409 | .flags = IORESOURCE_IRQ, | ||
410 | }, | ||
411 | }; | ||
412 | |||
413 | static struct platform_device orion_ge11 = { | ||
414 | .name = MV643XX_ETH_NAME, | ||
415 | .id = 1, | ||
416 | .num_resources = 2, | ||
417 | .resource = orion_ge11_resources, | ||
418 | .dev = { | ||
419 | .coherent_dma_mask = DMA_BIT_MASK(32), | ||
420 | }, | ||
421 | }; | ||
422 | |||
423 | void __init orion_ge11_init(struct mv643xx_eth_platform_data *eth_data, | ||
424 | struct mbus_dram_target_info *mbus_dram_info, | ||
425 | unsigned long mapbase, | ||
426 | unsigned long irq, | ||
427 | unsigned long irq_err, | ||
428 | int tclk) | ||
429 | { | ||
430 | fill_resources(&orion_ge11_shared, orion_ge11_shared_resources, | ||
431 | mapbase + 0x2000, SZ_16K - 1, irq_err); | ||
432 | ge_complete(&orion_ge11_shared_data, mbus_dram_info, tclk, | ||
433 | orion_ge11_resources, irq, &orion_ge11_shared, | ||
434 | eth_data, &orion_ge11); | ||
435 | } | ||
436 | |||
437 | /***************************************************************************** | ||
438 | * Ethernet switch | ||
439 | ****************************************************************************/ | ||
440 | static struct resource orion_switch_resources[] = { | ||
441 | { | ||
442 | .start = 0, | ||
443 | .end = 0, | ||
444 | .flags = IORESOURCE_IRQ, | ||
445 | }, | ||
446 | }; | ||
447 | |||
448 | static struct platform_device orion_switch_device = { | ||
449 | .name = "dsa", | ||
450 | .id = 0, | ||
451 | .num_resources = 0, | ||
452 | .resource = orion_switch_resources, | ||
453 | }; | ||
454 | |||
455 | void __init orion_ge00_switch_init(struct dsa_platform_data *d, int irq) | ||
456 | { | ||
457 | int i; | ||
458 | |||
459 | if (irq != NO_IRQ) { | ||
460 | orion_switch_resources[0].start = irq; | ||
461 | orion_switch_resources[0].end = irq; | ||
462 | orion_switch_device.num_resources = 1; | ||
463 | } | ||
464 | |||
465 | d->netdev = &orion_ge00.dev; | ||
466 | for (i = 0; i < d->nr_chips; i++) | ||
467 | d->chip[i].mii_bus = &orion_ge00_shared.dev; | ||
468 | orion_switch_device.dev.platform_data = d; | ||
469 | |||
470 | platform_device_register(&orion_switch_device); | ||
471 | } | ||
472 | |||
473 | /***************************************************************************** | ||
474 | * I2C | ||
475 | ****************************************************************************/ | ||
476 | static struct mv64xxx_i2c_pdata orion_i2c_pdata = { | ||
477 | .freq_n = 3, | ||
478 | .timeout = 1000, /* Default timeout of 1 second */ | ||
479 | }; | ||
480 | |||
481 | static struct resource orion_i2c_resources[2]; | ||
482 | |||
483 | static struct platform_device orion_i2c = { | ||
484 | .name = MV64XXX_I2C_CTLR_NAME, | ||
485 | .id = 0, | ||
486 | .dev = { | ||
487 | .platform_data = &orion_i2c_pdata, | ||
488 | }, | ||
489 | }; | ||
490 | |||
491 | static struct mv64xxx_i2c_pdata orion_i2c_1_pdata = { | ||
492 | .freq_n = 3, | ||
493 | .timeout = 1000, /* Default timeout of 1 second */ | ||
494 | }; | ||
495 | |||
496 | static struct resource orion_i2c_1_resources[2]; | ||
497 | |||
498 | static struct platform_device orion_i2c_1 = { | ||
499 | .name = MV64XXX_I2C_CTLR_NAME, | ||
500 | .id = 1, | ||
501 | .dev = { | ||
502 | .platform_data = &orion_i2c_1_pdata, | ||
503 | }, | ||
504 | }; | ||
505 | |||
506 | void __init orion_i2c_init(unsigned long mapbase, | ||
507 | unsigned long irq, | ||
508 | unsigned long freq_m) | ||
509 | { | ||
510 | orion_i2c_pdata.freq_m = freq_m; | ||
511 | fill_resources(&orion_i2c, orion_i2c_resources, mapbase, | ||
512 | SZ_32 - 1, irq); | ||
513 | platform_device_register(&orion_i2c); | ||
514 | } | ||
515 | |||
516 | void __init orion_i2c_1_init(unsigned long mapbase, | ||
517 | unsigned long irq, | ||
518 | unsigned long freq_m) | ||
519 | { | ||
520 | orion_i2c_1_pdata.freq_m = freq_m; | ||
521 | fill_resources(&orion_i2c_1, orion_i2c_1_resources, mapbase, | ||
522 | SZ_32 - 1, irq); | ||
523 | platform_device_register(&orion_i2c_1); | ||
524 | } | ||
525 | |||
526 | /***************************************************************************** | ||
527 | * SPI | ||
528 | ****************************************************************************/ | ||
529 | static struct orion_spi_info orion_spi_plat_data; | ||
530 | static struct resource orion_spi_resources; | ||
531 | |||
532 | static struct platform_device orion_spi = { | ||
533 | .name = "orion_spi", | ||
534 | .id = 0, | ||
535 | .dev = { | ||
536 | .platform_data = &orion_spi_plat_data, | ||
537 | }, | ||
538 | }; | ||
539 | |||
540 | static struct orion_spi_info orion_spi_1_plat_data; | ||
541 | static struct resource orion_spi_1_resources; | ||
542 | |||
543 | static struct platform_device orion_spi_1 = { | ||
544 | .name = "orion_spi", | ||
545 | .id = 1, | ||
546 | .dev = { | ||
547 | .platform_data = &orion_spi_1_plat_data, | ||
548 | }, | ||
549 | }; | ||
550 | |||
551 | /* Note: The SPI silicon core does have interrupts. However the | ||
552 | * current Linux software driver does not use interrupts. */ | ||
553 | |||
554 | void __init orion_spi_init(unsigned long mapbase, | ||
555 | unsigned long tclk) | ||
556 | { | ||
557 | orion_spi_plat_data.tclk = tclk; | ||
558 | fill_resources(&orion_spi, &orion_spi_resources, | ||
559 | mapbase, SZ_512 - 1, NO_IRQ); | ||
560 | platform_device_register(&orion_spi); | ||
561 | } | ||
562 | |||
563 | void __init orion_spi_1_init(unsigned long mapbase, | ||
564 | unsigned long tclk) | ||
565 | { | ||
566 | orion_spi_1_plat_data.tclk = tclk; | ||
567 | fill_resources(&orion_spi_1, &orion_spi_1_resources, | ||
568 | mapbase, SZ_512 - 1, NO_IRQ); | ||
569 | platform_device_register(&orion_spi_1); | ||
570 | } | ||
571 | |||
572 | /***************************************************************************** | ||
573 | * Watchdog | ||
574 | ****************************************************************************/ | ||
575 | static struct orion_wdt_platform_data orion_wdt_data; | ||
576 | |||
577 | static struct platform_device orion_wdt_device = { | ||
578 | .name = "orion_wdt", | ||
579 | .id = -1, | ||
580 | .dev = { | ||
581 | .platform_data = &orion_wdt_data, | ||
582 | }, | ||
583 | .num_resources = 0, | ||
584 | }; | ||
585 | |||
586 | void __init orion_wdt_init(unsigned long tclk) | ||
587 | { | ||
588 | orion_wdt_data.tclk = tclk; | ||
589 | platform_device_register(&orion_wdt_device); | ||
590 | } | ||
591 | |||
592 | /***************************************************************************** | ||
593 | * XOR | ||
594 | ****************************************************************************/ | ||
595 | static struct mv_xor_platform_shared_data orion_xor_shared_data; | ||
596 | |||
597 | static u64 orion_xor_dmamask = DMA_BIT_MASK(32); | ||
598 | |||
599 | void __init orion_xor_init_channels( | ||
600 | struct mv_xor_platform_data *orion_xor0_data, | ||
601 | struct platform_device *orion_xor0_channel, | ||
602 | struct mv_xor_platform_data *orion_xor1_data, | ||
603 | struct platform_device *orion_xor1_channel) | ||
604 | { | ||
605 | /* | ||
606 | * two engines can't do memset simultaneously, this limitation | ||
607 | * satisfied by removing memset support from one of the engines. | ||
608 | */ | ||
609 | dma_cap_set(DMA_MEMCPY, orion_xor0_data->cap_mask); | ||
610 | dma_cap_set(DMA_XOR, orion_xor0_data->cap_mask); | ||
611 | platform_device_register(orion_xor0_channel); | ||
612 | |||
613 | dma_cap_set(DMA_MEMCPY, orion_xor1_data->cap_mask); | ||
614 | dma_cap_set(DMA_MEMSET, orion_xor1_data->cap_mask); | ||
615 | dma_cap_set(DMA_XOR, orion_xor1_data->cap_mask); | ||
616 | platform_device_register(orion_xor1_channel); | ||
617 | } | ||
618 | |||
619 | /***************************************************************************** | ||
620 | * XOR0 | ||
621 | ****************************************************************************/ | ||
622 | static struct resource orion_xor0_shared_resources[] = { | ||
623 | { | ||
624 | .name = "xor 0 low", | ||
625 | .flags = IORESOURCE_MEM, | ||
626 | }, { | ||
627 | .name = "xor 0 high", | ||
628 | .flags = IORESOURCE_MEM, | ||
629 | }, | ||
630 | }; | ||
631 | |||
632 | static struct platform_device orion_xor0_shared = { | ||
633 | .name = MV_XOR_SHARED_NAME, | ||
634 | .id = 0, | ||
635 | .dev = { | ||
636 | .platform_data = &orion_xor_shared_data, | ||
637 | }, | ||
638 | .num_resources = ARRAY_SIZE(orion_xor0_shared_resources), | ||
639 | .resource = orion_xor0_shared_resources, | ||
640 | }; | ||
641 | |||
642 | static struct resource orion_xor00_resources[] = { | ||
643 | [0] = { | ||
644 | .flags = IORESOURCE_IRQ, | ||
645 | }, | ||
646 | }; | ||
647 | |||
648 | static struct mv_xor_platform_data orion_xor00_data = { | ||
649 | .shared = &orion_xor0_shared, | ||
650 | .hw_id = 0, | ||
651 | .pool_size = PAGE_SIZE, | ||
652 | }; | ||
653 | |||
654 | static struct platform_device orion_xor00_channel = { | ||
655 | .name = MV_XOR_NAME, | ||
656 | .id = 0, | ||
657 | .num_resources = ARRAY_SIZE(orion_xor00_resources), | ||
658 | .resource = orion_xor00_resources, | ||
659 | .dev = { | ||
660 | .dma_mask = &orion_xor_dmamask, | ||
661 | .coherent_dma_mask = DMA_BIT_MASK(64), | ||
662 | .platform_data = &orion_xor00_data, | ||
663 | }, | ||
664 | }; | ||
665 | |||
666 | static struct resource orion_xor01_resources[] = { | ||
667 | [0] = { | ||
668 | .flags = IORESOURCE_IRQ, | ||
669 | }, | ||
670 | }; | ||
671 | |||
672 | static struct mv_xor_platform_data orion_xor01_data = { | ||
673 | .shared = &orion_xor0_shared, | ||
674 | .hw_id = 1, | ||
675 | .pool_size = PAGE_SIZE, | ||
676 | }; | ||
677 | |||
678 | static struct platform_device orion_xor01_channel = { | ||
679 | .name = MV_XOR_NAME, | ||
680 | .id = 1, | ||
681 | .num_resources = ARRAY_SIZE(orion_xor01_resources), | ||
682 | .resource = orion_xor01_resources, | ||
683 | .dev = { | ||
684 | .dma_mask = &orion_xor_dmamask, | ||
685 | .coherent_dma_mask = DMA_BIT_MASK(64), | ||
686 | .platform_data = &orion_xor01_data, | ||
687 | }, | ||
688 | }; | ||
689 | |||
690 | void __init orion_xor0_init(struct mbus_dram_target_info *mbus_dram_info, | ||
691 | unsigned long mapbase_low, | ||
692 | unsigned long mapbase_high, | ||
693 | unsigned long irq_0, | ||
694 | unsigned long irq_1) | ||
695 | { | ||
696 | orion_xor_shared_data.dram = mbus_dram_info; | ||
697 | |||
698 | orion_xor0_shared_resources[0].start = mapbase_low; | ||
699 | orion_xor0_shared_resources[0].end = mapbase_low + 0xff; | ||
700 | orion_xor0_shared_resources[1].start = mapbase_high; | ||
701 | orion_xor0_shared_resources[1].end = mapbase_high + 0xff; | ||
702 | |||
703 | orion_xor00_resources[0].start = irq_0; | ||
704 | orion_xor00_resources[0].end = irq_0; | ||
705 | orion_xor01_resources[0].start = irq_1; | ||
706 | orion_xor01_resources[0].end = irq_1; | ||
707 | |||
708 | platform_device_register(&orion_xor0_shared); | ||
709 | |||
710 | orion_xor_init_channels(&orion_xor00_data, &orion_xor00_channel, | ||
711 | &orion_xor01_data, &orion_xor01_channel); | ||
712 | } | ||
713 | |||
714 | /***************************************************************************** | ||
715 | * XOR1 | ||
716 | ****************************************************************************/ | ||
717 | static struct resource orion_xor1_shared_resources[] = { | ||
718 | { | ||
719 | .name = "xor 1 low", | ||
720 | .flags = IORESOURCE_MEM, | ||
721 | }, { | ||
722 | .name = "xor 1 high", | ||
723 | .flags = IORESOURCE_MEM, | ||
724 | }, | ||
725 | }; | ||
726 | |||
727 | static struct platform_device orion_xor1_shared = { | ||
728 | .name = MV_XOR_SHARED_NAME, | ||
729 | .id = 1, | ||
730 | .dev = { | ||
731 | .platform_data = &orion_xor_shared_data, | ||
732 | }, | ||
733 | .num_resources = ARRAY_SIZE(orion_xor1_shared_resources), | ||
734 | .resource = orion_xor1_shared_resources, | ||
735 | }; | ||
736 | |||
737 | static struct resource orion_xor10_resources[] = { | ||
738 | [0] = { | ||
739 | .flags = IORESOURCE_IRQ, | ||
740 | }, | ||
741 | }; | ||
742 | |||
743 | static struct mv_xor_platform_data orion_xor10_data = { | ||
744 | .shared = &orion_xor1_shared, | ||
745 | .hw_id = 0, | ||
746 | .pool_size = PAGE_SIZE, | ||
747 | }; | ||
748 | |||
749 | static struct platform_device orion_xor10_channel = { | ||
750 | .name = MV_XOR_NAME, | ||
751 | .id = 2, | ||
752 | .num_resources = ARRAY_SIZE(orion_xor10_resources), | ||
753 | .resource = orion_xor10_resources, | ||
754 | .dev = { | ||
755 | .dma_mask = &orion_xor_dmamask, | ||
756 | .coherent_dma_mask = DMA_BIT_MASK(64), | ||
757 | .platform_data = &orion_xor10_data, | ||
758 | }, | ||
759 | }; | ||
760 | |||
761 | static struct resource orion_xor11_resources[] = { | ||
762 | [0] = { | ||
763 | .flags = IORESOURCE_IRQ, | ||
764 | }, | ||
765 | }; | ||
766 | |||
767 | static struct mv_xor_platform_data orion_xor11_data = { | ||
768 | .shared = &orion_xor1_shared, | ||
769 | .hw_id = 1, | ||
770 | .pool_size = PAGE_SIZE, | ||
771 | }; | ||
772 | |||
773 | static struct platform_device orion_xor11_channel = { | ||
774 | .name = MV_XOR_NAME, | ||
775 | .id = 3, | ||
776 | .num_resources = ARRAY_SIZE(orion_xor11_resources), | ||
777 | .resource = orion_xor11_resources, | ||
778 | .dev = { | ||
779 | .dma_mask = &orion_xor_dmamask, | ||
780 | .coherent_dma_mask = DMA_BIT_MASK(64), | ||
781 | .platform_data = &orion_xor11_data, | ||
782 | }, | ||
783 | }; | ||
784 | |||
785 | void __init orion_xor1_init(unsigned long mapbase_low, | ||
786 | unsigned long mapbase_high, | ||
787 | unsigned long irq_0, | ||
788 | unsigned long irq_1) | ||
789 | { | ||
790 | orion_xor1_shared_resources[0].start = mapbase_low; | ||
791 | orion_xor1_shared_resources[0].end = mapbase_low + 0xff; | ||
792 | orion_xor1_shared_resources[1].start = mapbase_high; | ||
793 | orion_xor1_shared_resources[1].end = mapbase_high + 0xff; | ||
794 | |||
795 | orion_xor10_resources[0].start = irq_0; | ||
796 | orion_xor10_resources[0].end = irq_0; | ||
797 | orion_xor11_resources[0].start = irq_1; | ||
798 | orion_xor11_resources[0].end = irq_1; | ||
799 | |||
800 | platform_device_register(&orion_xor1_shared); | ||
801 | |||
802 | orion_xor_init_channels(&orion_xor10_data, &orion_xor10_channel, | ||
803 | &orion_xor11_data, &orion_xor11_channel); | ||
804 | } | ||
805 | |||
806 | /***************************************************************************** | ||
807 | * EHCI | ||
808 | ****************************************************************************/ | ||
809 | static struct orion_ehci_data orion_ehci_data = { | ||
810 | .phy_version = EHCI_PHY_NA, | ||
811 | }; | ||
812 | |||
813 | static u64 ehci_dmamask = DMA_BIT_MASK(32); | ||
814 | |||
815 | |||
816 | /***************************************************************************** | ||
817 | * EHCI0 | ||
818 | ****************************************************************************/ | ||
819 | static struct resource orion_ehci_resources[2]; | ||
820 | |||
821 | static struct platform_device orion_ehci = { | ||
822 | .name = "orion-ehci", | ||
823 | .id = 0, | ||
824 | .dev = { | ||
825 | .dma_mask = &ehci_dmamask, | ||
826 | .coherent_dma_mask = DMA_BIT_MASK(32), | ||
827 | .platform_data = &orion_ehci_data, | ||
828 | }, | ||
829 | }; | ||
830 | |||
831 | void __init orion_ehci_init(struct mbus_dram_target_info *mbus_dram_info, | ||
832 | unsigned long mapbase, | ||
833 | unsigned long irq) | ||
834 | { | ||
835 | orion_ehci_data.dram = mbus_dram_info; | ||
836 | fill_resources(&orion_ehci, orion_ehci_resources, mapbase, SZ_4K - 1, | ||
837 | irq); | ||
838 | |||
839 | platform_device_register(&orion_ehci); | ||
840 | } | ||
841 | |||
842 | /***************************************************************************** | ||
843 | * EHCI1 | ||
844 | ****************************************************************************/ | ||
845 | static struct resource orion_ehci_1_resources[2]; | ||
846 | |||
847 | static struct platform_device orion_ehci_1 = { | ||
848 | .name = "orion-ehci", | ||
849 | .id = 1, | ||
850 | .dev = { | ||
851 | .dma_mask = &ehci_dmamask, | ||
852 | .coherent_dma_mask = DMA_BIT_MASK(32), | ||
853 | .platform_data = &orion_ehci_data, | ||
854 | }, | ||
855 | }; | ||
856 | |||
857 | void __init orion_ehci_1_init(struct mbus_dram_target_info *mbus_dram_info, | ||
858 | unsigned long mapbase, | ||
859 | unsigned long irq) | ||
860 | { | ||
861 | orion_ehci_data.dram = mbus_dram_info; | ||
862 | fill_resources(&orion_ehci_1, orion_ehci_1_resources, | ||
863 | mapbase, SZ_4K - 1, irq); | ||
864 | |||
865 | platform_device_register(&orion_ehci_1); | ||
866 | } | ||
867 | |||
868 | /***************************************************************************** | ||
869 | * EHCI2 | ||
870 | ****************************************************************************/ | ||
871 | static struct resource orion_ehci_2_resources[2]; | ||
872 | |||
873 | static struct platform_device orion_ehci_2 = { | ||
874 | .name = "orion-ehci", | ||
875 | .id = 2, | ||
876 | .dev = { | ||
877 | .dma_mask = &ehci_dmamask, | ||
878 | .coherent_dma_mask = DMA_BIT_MASK(32), | ||
879 | .platform_data = &orion_ehci_data, | ||
880 | }, | ||
881 | }; | ||
882 | |||
883 | void __init orion_ehci_2_init(struct mbus_dram_target_info *mbus_dram_info, | ||
884 | unsigned long mapbase, | ||
885 | unsigned long irq) | ||
886 | { | ||
887 | orion_ehci_data.dram = mbus_dram_info; | ||
888 | fill_resources(&orion_ehci_2, orion_ehci_2_resources, | ||
889 | mapbase, SZ_4K - 1, irq); | ||
890 | |||
891 | platform_device_register(&orion_ehci_2); | ||
892 | } | ||
893 | |||
894 | /***************************************************************************** | ||
895 | * SATA | ||
896 | ****************************************************************************/ | ||
897 | static struct resource orion_sata_resources[2] = { | ||
898 | { | ||
899 | .name = "sata base", | ||
900 | }, { | ||
901 | .name = "sata irq", | ||
902 | }, | ||
903 | }; | ||
904 | |||
905 | static struct platform_device orion_sata = { | ||
906 | .name = "sata_mv", | ||
907 | .id = 0, | ||
908 | .dev = { | ||
909 | .coherent_dma_mask = DMA_BIT_MASK(32), | ||
910 | }, | ||
911 | }; | ||
912 | |||
913 | void __init orion_sata_init(struct mv_sata_platform_data *sata_data, | ||
914 | struct mbus_dram_target_info *mbus_dram_info, | ||
915 | unsigned long mapbase, | ||
916 | unsigned long irq) | ||
917 | { | ||
918 | sata_data->dram = mbus_dram_info; | ||
919 | orion_sata.dev.platform_data = sata_data; | ||
920 | fill_resources(&orion_sata, orion_sata_resources, | ||
921 | mapbase, 0x5000 - 1, irq); | ||
922 | |||
923 | platform_device_register(&orion_sata); | ||
924 | } | ||
925 | |||
926 | /***************************************************************************** | ||
927 | * Cryptographic Engines and Security Accelerator (CESA) | ||
928 | ****************************************************************************/ | ||
929 | static struct resource orion_crypto_resources[] = { | ||
930 | { | ||
931 | .name = "regs", | ||
932 | }, { | ||
933 | .name = "crypto interrupt", | ||
934 | }, { | ||
935 | .name = "sram", | ||
936 | .flags = IORESOURCE_MEM, | ||
937 | }, | ||
938 | }; | ||
939 | |||
940 | static struct platform_device orion_crypto = { | ||
941 | .name = "mv_crypto", | ||
942 | .id = -1, | ||
943 | }; | ||
944 | |||
945 | void __init orion_crypto_init(unsigned long mapbase, | ||
946 | unsigned long srambase, | ||
947 | unsigned long sram_size, | ||
948 | unsigned long irq) | ||
949 | { | ||
950 | fill_resources(&orion_crypto, orion_crypto_resources, | ||
951 | mapbase, 0xffff, irq); | ||
952 | orion_crypto.num_resources = 3; | ||
953 | orion_crypto_resources[2].start = srambase; | ||
954 | orion_crypto_resources[2].end = srambase + sram_size - 1; | ||
955 | |||
956 | platform_device_register(&orion_crypto); | ||
957 | } | ||
diff --git a/arch/arm/plat-orion/gpio.c b/arch/arm/plat-orion/gpio.c index a431a138f402..5b4fffab1eb4 100644 --- a/arch/arm/plat-orion/gpio.c +++ b/arch/arm/plat-orion/gpio.c | |||
@@ -321,59 +321,16 @@ EXPORT_SYMBOL(orion_gpio_set_blink); | |||
321 | * polarity LEVEL mask | 321 | * polarity LEVEL mask |
322 | * | 322 | * |
323 | ****************************************************************************/ | 323 | ****************************************************************************/ |
324 | static void gpio_irq_ack(struct irq_data *d) | ||
325 | { | ||
326 | struct orion_gpio_chip *ochip = irq_data_get_irq_chip_data(d); | ||
327 | int type = irqd_get_trigger_type(d); | ||
328 | |||
329 | if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) { | ||
330 | int pin = d->irq - ochip->secondary_irq_base; | ||
331 | |||
332 | writel(~(1 << pin), GPIO_EDGE_CAUSE(ochip)); | ||
333 | } | ||
334 | } | ||
335 | |||
336 | static void gpio_irq_mask(struct irq_data *d) | ||
337 | { | ||
338 | struct orion_gpio_chip *ochip = irq_data_get_irq_chip_data(d); | ||
339 | int type = irqd_get_trigger_type(d); | ||
340 | void __iomem *reg; | ||
341 | int pin; | ||
342 | |||
343 | if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) | ||
344 | reg = GPIO_EDGE_MASK(ochip); | ||
345 | else | ||
346 | reg = GPIO_LEVEL_MASK(ochip); | ||
347 | |||
348 | pin = d->irq - ochip->secondary_irq_base; | ||
349 | |||
350 | writel(readl(reg) & ~(1 << pin), reg); | ||
351 | } | ||
352 | |||
353 | static void gpio_irq_unmask(struct irq_data *d) | ||
354 | { | ||
355 | struct orion_gpio_chip *ochip = irq_data_get_irq_chip_data(d); | ||
356 | int type = irqd_get_trigger_type(d); | ||
357 | void __iomem *reg; | ||
358 | int pin; | ||
359 | |||
360 | if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) | ||
361 | reg = GPIO_EDGE_MASK(ochip); | ||
362 | else | ||
363 | reg = GPIO_LEVEL_MASK(ochip); | ||
364 | |||
365 | pin = d->irq - ochip->secondary_irq_base; | ||
366 | |||
367 | writel(readl(reg) | (1 << pin), reg); | ||
368 | } | ||
369 | 324 | ||
370 | static int gpio_irq_set_type(struct irq_data *d, u32 type) | 325 | static int gpio_irq_set_type(struct irq_data *d, u32 type) |
371 | { | 326 | { |
372 | struct orion_gpio_chip *ochip = irq_data_get_irq_chip_data(d); | 327 | struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d); |
328 | struct irq_chip_type *ct = irq_data_get_chip_type(d); | ||
329 | struct orion_gpio_chip *ochip = gc->private; | ||
373 | int pin; | 330 | int pin; |
374 | u32 u; | 331 | u32 u; |
375 | 332 | ||
376 | pin = d->irq - ochip->secondary_irq_base; | 333 | pin = d->irq - gc->irq_base; |
377 | 334 | ||
378 | u = readl(GPIO_IO_CONF(ochip)) & (1 << pin); | 335 | u = readl(GPIO_IO_CONF(ochip)) & (1 << pin); |
379 | if (!u) { | 336 | if (!u) { |
@@ -382,18 +339,14 @@ static int gpio_irq_set_type(struct irq_data *d, u32 type) | |||
382 | return -EINVAL; | 339 | return -EINVAL; |
383 | } | 340 | } |
384 | 341 | ||
385 | /* | 342 | type &= IRQ_TYPE_SENSE_MASK; |
386 | * Set edge/level type. | 343 | if (type == IRQ_TYPE_NONE) |
387 | */ | ||
388 | if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) { | ||
389 | __irq_set_handler_locked(d->irq, handle_edge_irq); | ||
390 | } else if (type & (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) { | ||
391 | __irq_set_handler_locked(d->irq, handle_level_irq); | ||
392 | } else { | ||
393 | printk(KERN_ERR "failed to set irq=%d (type=%d)\n", | ||
394 | d->irq, type); | ||
395 | return -EINVAL; | 344 | return -EINVAL; |
396 | } | 345 | |
346 | /* Check if we need to change chip and handler */ | ||
347 | if (!(ct->type & type)) | ||
348 | if (irq_setup_alt_chip(d, type)) | ||
349 | return -EINVAL; | ||
397 | 350 | ||
398 | /* | 351 | /* |
399 | * Configure interrupt polarity. | 352 | * Configure interrupt polarity. |
@@ -425,19 +378,12 @@ static int gpio_irq_set_type(struct irq_data *d, u32 type) | |||
425 | return 0; | 378 | return 0; |
426 | } | 379 | } |
427 | 380 | ||
428 | struct irq_chip orion_gpio_irq_chip = { | ||
429 | .name = "orion_gpio_irq", | ||
430 | .irq_ack = gpio_irq_ack, | ||
431 | .irq_mask = gpio_irq_mask, | ||
432 | .irq_unmask = gpio_irq_unmask, | ||
433 | .irq_set_type = gpio_irq_set_type, | ||
434 | }; | ||
435 | |||
436 | void __init orion_gpio_init(int gpio_base, int ngpio, | 381 | void __init orion_gpio_init(int gpio_base, int ngpio, |
437 | u32 base, int mask_offset, int secondary_irq_base) | 382 | u32 base, int mask_offset, int secondary_irq_base) |
438 | { | 383 | { |
439 | struct orion_gpio_chip *ochip; | 384 | struct orion_gpio_chip *ochip; |
440 | int i; | 385 | struct irq_chip_generic *gc; |
386 | struct irq_chip_type *ct; | ||
441 | 387 | ||
442 | if (orion_gpio_chip_count == ARRAY_SIZE(orion_gpio_chips)) | 388 | if (orion_gpio_chip_count == ARRAY_SIZE(orion_gpio_chips)) |
443 | return; | 389 | return; |
@@ -471,15 +417,29 @@ void __init orion_gpio_init(int gpio_base, int ngpio, | |||
471 | writel(0, GPIO_EDGE_MASK(ochip)); | 417 | writel(0, GPIO_EDGE_MASK(ochip)); |
472 | writel(0, GPIO_LEVEL_MASK(ochip)); | 418 | writel(0, GPIO_LEVEL_MASK(ochip)); |
473 | 419 | ||
474 | for (i = 0; i < ngpio; i++) { | 420 | gc = irq_alloc_generic_chip("orion_gpio_irq", 2, secondary_irq_base, |
475 | unsigned int irq = secondary_irq_base + i; | 421 | ochip->base, handle_level_irq); |
476 | 422 | gc->private = ochip; | |
477 | irq_set_chip_and_handler(irq, &orion_gpio_irq_chip, | 423 | |
478 | handle_level_irq); | 424 | ct = gc->chip_types; |
479 | irq_set_chip_data(irq, ochip); | 425 | ct->regs.mask = ochip->mask_offset + GPIO_LEVEL_MASK_OFF; |
480 | irq_set_status_flags(irq, IRQ_LEVEL); | 426 | ct->type = IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW; |
481 | set_irq_flags(irq, IRQF_VALID); | 427 | ct->chip.irq_mask = irq_gc_mask_clr_bit; |
482 | } | 428 | ct->chip.irq_unmask = irq_gc_mask_set_bit; |
429 | ct->chip.irq_set_type = gpio_irq_set_type; | ||
430 | |||
431 | ct++; | ||
432 | ct->regs.mask = ochip->mask_offset + GPIO_EDGE_MASK_OFF; | ||
433 | ct->regs.ack = GPIO_EDGE_CAUSE_OFF; | ||
434 | ct->type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING; | ||
435 | ct->chip.irq_ack = irq_gc_ack; | ||
436 | ct->chip.irq_mask = irq_gc_mask_clr_bit; | ||
437 | ct->chip.irq_unmask = irq_gc_mask_set_bit; | ||
438 | ct->chip.irq_set_type = gpio_irq_set_type; | ||
439 | ct->handler = handle_edge_irq; | ||
440 | |||
441 | irq_setup_generic_chip(gc, IRQ_MSK(ngpio), IRQ_GC_INIT_MASK_CACHE, | ||
442 | IRQ_NOREQUEST, IRQ_LEVEL | IRQ_NOPROBE); | ||
483 | } | 443 | } |
484 | 444 | ||
485 | void orion_gpio_irq_handler(int pinoff) | 445 | void orion_gpio_irq_handler(int pinoff) |
diff --git a/arch/arm/plat-orion/include/plat/common.h b/arch/arm/plat-orion/include/plat/common.h new file mode 100644 index 000000000000..a63c357e2ab1 --- /dev/null +++ b/arch/arm/plat-orion/include/plat/common.h | |||
@@ -0,0 +1,117 @@ | |||
1 | /* | ||
2 | * arch/arm/plat-orion/include/plat/common.h | ||
3 | * | ||
4 | * Marvell Orion SoC common setup code used by different mach-/common.c | ||
5 | * | ||
6 | * This file is licensed under the terms of the GNU General Public | ||
7 | * License version 2. This program is licensed "as is" without any | ||
8 | * warranty of any kind, whether express or implied. | ||
9 | */ | ||
10 | |||
11 | #ifndef __PLAT_COMMON_H | ||
12 | #include <linux/mv643xx_eth.h> | ||
13 | |||
14 | struct dsa_platform_data; | ||
15 | |||
16 | void __init orion_uart0_init(unsigned int membase, | ||
17 | resource_size_t mapbase, | ||
18 | unsigned int irq, | ||
19 | unsigned int uartclk); | ||
20 | |||
21 | void __init orion_uart1_init(unsigned int membase, | ||
22 | resource_size_t mapbase, | ||
23 | unsigned int irq, | ||
24 | unsigned int uartclk); | ||
25 | |||
26 | void __init orion_uart2_init(unsigned int membase, | ||
27 | resource_size_t mapbase, | ||
28 | unsigned int irq, | ||
29 | unsigned int uartclk); | ||
30 | |||
31 | void __init orion_uart3_init(unsigned int membase, | ||
32 | resource_size_t mapbase, | ||
33 | unsigned int irq, | ||
34 | unsigned int uartclk); | ||
35 | |||
36 | void __init orion_rtc_init(unsigned long mapbase, | ||
37 | unsigned long irq); | ||
38 | |||
39 | void __init orion_ge00_init(struct mv643xx_eth_platform_data *eth_data, | ||
40 | struct mbus_dram_target_info *mbus_dram_info, | ||
41 | unsigned long mapbase, | ||
42 | unsigned long irq, | ||
43 | unsigned long irq_err, | ||
44 | int tclk); | ||
45 | |||
46 | void __init orion_ge01_init(struct mv643xx_eth_platform_data *eth_data, | ||
47 | struct mbus_dram_target_info *mbus_dram_info, | ||
48 | unsigned long mapbase, | ||
49 | unsigned long irq, | ||
50 | unsigned long irq_err, | ||
51 | int tclk); | ||
52 | |||
53 | void __init orion_ge10_init(struct mv643xx_eth_platform_data *eth_data, | ||
54 | struct mbus_dram_target_info *mbus_dram_info, | ||
55 | unsigned long mapbase, | ||
56 | unsigned long irq, | ||
57 | unsigned long irq_err, | ||
58 | int tclk); | ||
59 | |||
60 | void __init orion_ge11_init(struct mv643xx_eth_platform_data *eth_data, | ||
61 | struct mbus_dram_target_info *mbus_dram_info, | ||
62 | unsigned long mapbase, | ||
63 | unsigned long irq, | ||
64 | unsigned long irq_err, | ||
65 | int tclk); | ||
66 | |||
67 | void __init orion_ge00_switch_init(struct dsa_platform_data *d, | ||
68 | int irq); | ||
69 | void __init orion_i2c_init(unsigned long mapbase, | ||
70 | unsigned long irq, | ||
71 | unsigned long freq_m); | ||
72 | |||
73 | void __init orion_i2c_1_init(unsigned long mapbase, | ||
74 | unsigned long irq, | ||
75 | unsigned long freq_m); | ||
76 | |||
77 | void __init orion_spi_init(unsigned long mapbase, | ||
78 | unsigned long tclk); | ||
79 | |||
80 | void __init orion_spi_1_init(unsigned long mapbase, | ||
81 | unsigned long tclk); | ||
82 | |||
83 | void __init orion_wdt_init(unsigned long tclk); | ||
84 | |||
85 | void __init orion_xor0_init(struct mbus_dram_target_info *mbus_dram_info, | ||
86 | unsigned long mapbase_low, | ||
87 | unsigned long mapbase_high, | ||
88 | unsigned long irq_0, | ||
89 | unsigned long irq_1); | ||
90 | |||
91 | void __init orion_xor1_init(unsigned long mapbase_low, | ||
92 | unsigned long mapbase_high, | ||
93 | unsigned long irq_0, | ||
94 | unsigned long irq_1); | ||
95 | |||
96 | void __init orion_ehci_init(struct mbus_dram_target_info *mbus_dram_info, | ||
97 | unsigned long mapbase, | ||
98 | unsigned long irq); | ||
99 | |||
100 | void __init orion_ehci_1_init(struct mbus_dram_target_info *mbus_dram_info, | ||
101 | unsigned long mapbase, | ||
102 | unsigned long irq); | ||
103 | |||
104 | void __init orion_ehci_2_init(struct mbus_dram_target_info *mbus_dram_info, | ||
105 | unsigned long mapbase, | ||
106 | unsigned long irq); | ||
107 | |||
108 | void __init orion_sata_init(struct mv_sata_platform_data *sata_data, | ||
109 | struct mbus_dram_target_info *mbus_dram_info, | ||
110 | unsigned long mapbase, | ||
111 | unsigned long irq); | ||
112 | |||
113 | void __init orion_crypto_init(unsigned long mapbase, | ||
114 | unsigned long srambase, | ||
115 | unsigned long sram_size, | ||
116 | unsigned long irq); | ||
117 | #endif | ||
diff --git a/arch/arm/plat-orion/include/plat/gpio.h b/arch/arm/plat-orion/include/plat/gpio.h index 5578b9803fc6..3075b9fdde83 100644 --- a/arch/arm/plat-orion/include/plat/gpio.h +++ b/arch/arm/plat-orion/include/plat/gpio.h | |||
@@ -39,7 +39,6 @@ void __init orion_gpio_init(int gpio_base, int ngpio, | |||
39 | /* | 39 | /* |
40 | * GPIO interrupt handling. | 40 | * GPIO interrupt handling. |
41 | */ | 41 | */ |
42 | extern struct irq_chip orion_gpio_irq_chip; | ||
43 | void orion_gpio_irq_handler(int irqoff); | 42 | void orion_gpio_irq_handler(int irqoff); |
44 | 43 | ||
45 | 44 | ||
diff --git a/arch/arm/plat-orion/include/plat/mpp.h b/arch/arm/plat-orion/include/plat/mpp.h new file mode 100644 index 000000000000..723adce99f41 --- /dev/null +++ b/arch/arm/plat-orion/include/plat/mpp.h | |||
@@ -0,0 +1,34 @@ | |||
1 | /* | ||
2 | * arch/arm/plat-orion/include/plat/mpp.h | ||
3 | * | ||
4 | * Marvell Orion SoC MPP handling. | ||
5 | * | ||
6 | * This file is licensed under the terms of the GNU General Public | ||
7 | * License version 2. This program is licensed "as is" without any | ||
8 | * warranty of any kind, whether express or implied. | ||
9 | */ | ||
10 | |||
11 | #ifndef __PLAT_MPP_H | ||
12 | #define __PLAT_MPP_H | ||
13 | |||
14 | #define MPP_NUM(x) ((x) & 0xff) | ||
15 | #define MPP_SEL(x) (((x) >> 8) & 0xf) | ||
16 | |||
17 | /* This is the generic MPP macro, without any variant information. | ||
18 | Each machine architecture is expected to extend this with further | ||
19 | bit fields indicating which MPP configurations are valid for a | ||
20 | specific variant. */ | ||
21 | |||
22 | #define GENERIC_MPP(_num, _sel, _in, _out) ( \ | ||
23 | /* MPP number */ ((_num) & 0xff) | \ | ||
24 | /* MPP select value */ (((_sel) & 0xf) << 8) | \ | ||
25 | /* may be input signal */ ((!!(_in)) << 12) | \ | ||
26 | /* may be output signal */ ((!!(_out)) << 13)) | ||
27 | |||
28 | #define MPP_INPUT_MASK GENERIC_MPP(0, 0x0, 1, 0) | ||
29 | #define MPP_OUTPUT_MASK GENERIC_MPP(0, 0x0, 0, 1) | ||
30 | |||
31 | void __init orion_mpp_conf(unsigned int *mpp_list, unsigned int variant_mask, | ||
32 | unsigned int mpp_max, unsigned int dev_bus); | ||
33 | |||
34 | #endif | ||
diff --git a/arch/arm/plat-orion/irq.c b/arch/arm/plat-orion/irq.c index d8d638e09f8f..2d5b9c1ef389 100644 --- a/arch/arm/plat-orion/irq.c +++ b/arch/arm/plat-orion/irq.c | |||
@@ -14,52 +14,21 @@ | |||
14 | #include <linux/io.h> | 14 | #include <linux/io.h> |
15 | #include <plat/irq.h> | 15 | #include <plat/irq.h> |
16 | 16 | ||
17 | static void orion_irq_mask(struct irq_data *d) | ||
18 | { | ||
19 | void __iomem *maskaddr = irq_data_get_irq_chip_data(d); | ||
20 | u32 mask; | ||
21 | |||
22 | mask = readl(maskaddr); | ||
23 | mask &= ~(1 << (d->irq & 31)); | ||
24 | writel(mask, maskaddr); | ||
25 | } | ||
26 | |||
27 | static void orion_irq_unmask(struct irq_data *d) | ||
28 | { | ||
29 | void __iomem *maskaddr = irq_data_get_irq_chip_data(d); | ||
30 | u32 mask; | ||
31 | |||
32 | mask = readl(maskaddr); | ||
33 | mask |= 1 << (d->irq & 31); | ||
34 | writel(mask, maskaddr); | ||
35 | } | ||
36 | |||
37 | static struct irq_chip orion_irq_chip = { | ||
38 | .name = "orion_irq", | ||
39 | .irq_mask = orion_irq_mask, | ||
40 | .irq_mask_ack = orion_irq_mask, | ||
41 | .irq_unmask = orion_irq_unmask, | ||
42 | }; | ||
43 | |||
44 | void __init orion_irq_init(unsigned int irq_start, void __iomem *maskaddr) | 17 | void __init orion_irq_init(unsigned int irq_start, void __iomem *maskaddr) |
45 | { | 18 | { |
46 | unsigned int i; | 19 | struct irq_chip_generic *gc; |
20 | struct irq_chip_type *ct; | ||
47 | 21 | ||
48 | /* | 22 | /* |
49 | * Mask all interrupts initially. | 23 | * Mask all interrupts initially. |
50 | */ | 24 | */ |
51 | writel(0, maskaddr); | 25 | writel(0, maskaddr); |
52 | 26 | ||
53 | /* | 27 | gc = irq_alloc_generic_chip("orion_irq", 1, irq_start, maskaddr, |
54 | * Register IRQ sources. | 28 | handle_level_irq); |
55 | */ | 29 | ct = gc->chip_types; |
56 | for (i = 0; i < 32; i++) { | 30 | ct->chip.irq_mask = irq_gc_mask_clr_bit; |
57 | unsigned int irq = irq_start + i; | 31 | ct->chip.irq_unmask = irq_gc_mask_set_bit; |
58 | 32 | irq_setup_generic_chip(gc, IRQ_MSK(32), IRQ_GC_INIT_MASK_CACHE, | |
59 | irq_set_chip_and_handler(irq, &orion_irq_chip, | 33 | IRQ_NOREQUEST, IRQ_LEVEL | IRQ_NOPROBE); |
60 | handle_level_irq); | ||
61 | irq_set_chip_data(irq, maskaddr); | ||
62 | irq_set_status_flags(irq, IRQ_LEVEL); | ||
63 | set_irq_flags(irq, IRQF_VALID); | ||
64 | } | ||
65 | } | 34 | } |
diff --git a/arch/arm/plat-orion/mpp.c b/arch/arm/plat-orion/mpp.c new file mode 100644 index 000000000000..91553432711d --- /dev/null +++ b/arch/arm/plat-orion/mpp.c | |||
@@ -0,0 +1,78 @@ | |||
1 | /* | ||
2 | * arch/arm/plat-orion/mpp.c | ||
3 | * | ||
4 | * MPP functions for Marvell orion SoCs | ||
5 | * | ||
6 | * This file is licensed under the terms of the GNU General Public | ||
7 | * License version 2. This program is licensed "as is" without any | ||
8 | * warranty of any kind, whether express or implied. | ||
9 | */ | ||
10 | |||
11 | #include <linux/kernel.h> | ||
12 | #include <linux/init.h> | ||
13 | #include <linux/mbus.h> | ||
14 | #include <linux/io.h> | ||
15 | #include <linux/gpio.h> | ||
16 | #include <mach/hardware.h> | ||
17 | #include <plat/mpp.h> | ||
18 | |||
19 | /* Address of the ith MPP control register */ | ||
20 | static __init unsigned long mpp_ctrl_addr(unsigned int i, | ||
21 | unsigned long dev_bus) | ||
22 | { | ||
23 | return dev_bus + (i) * 4; | ||
24 | } | ||
25 | |||
26 | |||
27 | void __init orion_mpp_conf(unsigned int *mpp_list, unsigned int variant_mask, | ||
28 | unsigned int mpp_max, unsigned int dev_bus) | ||
29 | { | ||
30 | unsigned int mpp_nr_regs = (1 + mpp_max/8); | ||
31 | u32 mpp_ctrl[mpp_nr_regs]; | ||
32 | int i; | ||
33 | |||
34 | printk(KERN_DEBUG "initial MPP regs:"); | ||
35 | for (i = 0; i < mpp_nr_regs; i++) { | ||
36 | mpp_ctrl[i] = readl(mpp_ctrl_addr(i, dev_bus)); | ||
37 | printk(" %08x", mpp_ctrl[i]); | ||
38 | } | ||
39 | printk("\n"); | ||
40 | |||
41 | for ( ; *mpp_list; mpp_list++) { | ||
42 | unsigned int num = MPP_NUM(*mpp_list); | ||
43 | unsigned int sel = MPP_SEL(*mpp_list); | ||
44 | int shift, gpio_mode; | ||
45 | |||
46 | if (num > mpp_max) { | ||
47 | printk(KERN_ERR "orion_mpp_conf: invalid MPP " | ||
48 | "number (%u)\n", num); | ||
49 | continue; | ||
50 | } | ||
51 | if (variant_mask & !(*mpp_list & variant_mask)) { | ||
52 | printk(KERN_WARNING | ||
53 | "orion_mpp_conf: requested MPP%u config " | ||
54 | "unavailable on this hardware\n", num); | ||
55 | continue; | ||
56 | } | ||
57 | |||
58 | shift = (num & 7) << 2; | ||
59 | mpp_ctrl[num / 8] &= ~(0xf << shift); | ||
60 | mpp_ctrl[num / 8] |= sel << shift; | ||
61 | |||
62 | gpio_mode = 0; | ||
63 | if (*mpp_list & MPP_INPUT_MASK) | ||
64 | gpio_mode |= GPIO_INPUT_OK; | ||
65 | if (*mpp_list & MPP_OUTPUT_MASK) | ||
66 | gpio_mode |= GPIO_OUTPUT_OK; | ||
67 | if (sel != 0) | ||
68 | gpio_mode = 0; | ||
69 | orion_gpio_set_valid(num, gpio_mode); | ||
70 | } | ||
71 | |||
72 | printk(KERN_DEBUG " final MPP regs:"); | ||
73 | for (i = 0; i < mpp_nr_regs; i++) { | ||
74 | writel(mpp_ctrl[i], mpp_ctrl_addr(i, dev_bus)); | ||
75 | printk(" %08x", mpp_ctrl[i]); | ||
76 | } | ||
77 | printk("\n"); | ||
78 | } | ||
diff --git a/arch/arm/plat-s5p/irq-gpioint.c b/arch/arm/plat-s5p/irq-gpioint.c index cd6d67c8382a..135abda31c9a 100644 --- a/arch/arm/plat-s5p/irq-gpioint.c +++ b/arch/arm/plat-s5p/irq-gpioint.c | |||
@@ -41,72 +41,11 @@ struct s5p_gpioint_bank { | |||
41 | 41 | ||
42 | LIST_HEAD(banks); | 42 | LIST_HEAD(banks); |
43 | 43 | ||
44 | static int s5p_gpioint_get_offset(struct irq_data *data) | 44 | static int s5p_gpioint_set_type(struct irq_data *d, unsigned int type) |
45 | { | 45 | { |
46 | struct s3c_gpio_chip *chip = irq_data_get_irq_handler_data(data); | 46 | struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d); |
47 | return data->irq - chip->irq_base; | 47 | struct irq_chip_type *ct = gc->chip_types; |
48 | } | 48 | unsigned int shift = (d->irq - gc->irq_base) << 2; |
49 | |||
50 | static void s5p_gpioint_ack(struct irq_data *data) | ||
51 | { | ||
52 | struct s3c_gpio_chip *chip = irq_data_get_irq_handler_data(data); | ||
53 | int group, offset, pend_offset; | ||
54 | unsigned int value; | ||
55 | |||
56 | group = chip->group; | ||
57 | offset = s5p_gpioint_get_offset(data); | ||
58 | pend_offset = REG_OFFSET(group); | ||
59 | |||
60 | value = __raw_readl(GPIO_BASE(chip) + PEND_OFFSET + pend_offset); | ||
61 | value |= BIT(offset); | ||
62 | __raw_writel(value, GPIO_BASE(chip) + PEND_OFFSET + pend_offset); | ||
63 | } | ||
64 | |||
65 | static void s5p_gpioint_mask(struct irq_data *data) | ||
66 | { | ||
67 | struct s3c_gpio_chip *chip = irq_data_get_irq_handler_data(data); | ||
68 | int group, offset, mask_offset; | ||
69 | unsigned int value; | ||
70 | |||
71 | group = chip->group; | ||
72 | offset = s5p_gpioint_get_offset(data); | ||
73 | mask_offset = REG_OFFSET(group); | ||
74 | |||
75 | value = __raw_readl(GPIO_BASE(chip) + MASK_OFFSET + mask_offset); | ||
76 | value |= BIT(offset); | ||
77 | __raw_writel(value, GPIO_BASE(chip) + MASK_OFFSET + mask_offset); | ||
78 | } | ||
79 | |||
80 | static void s5p_gpioint_unmask(struct irq_data *data) | ||
81 | { | ||
82 | struct s3c_gpio_chip *chip = irq_data_get_irq_handler_data(data); | ||
83 | int group, offset, mask_offset; | ||
84 | unsigned int value; | ||
85 | |||
86 | group = chip->group; | ||
87 | offset = s5p_gpioint_get_offset(data); | ||
88 | mask_offset = REG_OFFSET(group); | ||
89 | |||
90 | value = __raw_readl(GPIO_BASE(chip) + MASK_OFFSET + mask_offset); | ||
91 | value &= ~BIT(offset); | ||
92 | __raw_writel(value, GPIO_BASE(chip) + MASK_OFFSET + mask_offset); | ||
93 | } | ||
94 | |||
95 | static void s5p_gpioint_mask_ack(struct irq_data *data) | ||
96 | { | ||
97 | s5p_gpioint_mask(data); | ||
98 | s5p_gpioint_ack(data); | ||
99 | } | ||
100 | |||
101 | static int s5p_gpioint_set_type(struct irq_data *data, unsigned int type) | ||
102 | { | ||
103 | struct s3c_gpio_chip *chip = irq_data_get_irq_handler_data(data); | ||
104 | int group, offset, con_offset; | ||
105 | unsigned int value; | ||
106 | |||
107 | group = chip->group; | ||
108 | offset = s5p_gpioint_get_offset(data); | ||
109 | con_offset = REG_OFFSET(group); | ||
110 | 49 | ||
111 | switch (type) { | 50 | switch (type) { |
112 | case IRQ_TYPE_EDGE_RISING: | 51 | case IRQ_TYPE_EDGE_RISING: |
@@ -130,23 +69,12 @@ static int s5p_gpioint_set_type(struct irq_data *data, unsigned int type) | |||
130 | return -EINVAL; | 69 | return -EINVAL; |
131 | } | 70 | } |
132 | 71 | ||
133 | value = __raw_readl(GPIO_BASE(chip) + CON_OFFSET + con_offset); | 72 | gc->type_cache &= ~(0x7 << shift); |
134 | value &= ~(0x7 << (offset * 0x4)); | 73 | gc->type_cache |= type << shift; |
135 | value |= (type << (offset * 0x4)); | 74 | writel(gc->type_cache, gc->reg_base + ct->regs.type); |
136 | __raw_writel(value, GPIO_BASE(chip) + CON_OFFSET + con_offset); | ||
137 | |||
138 | return 0; | 75 | return 0; |
139 | } | 76 | } |
140 | 77 | ||
141 | static struct irq_chip s5p_gpioint = { | ||
142 | .name = "s5p_gpioint", | ||
143 | .irq_ack = s5p_gpioint_ack, | ||
144 | .irq_mask = s5p_gpioint_mask, | ||
145 | .irq_mask_ack = s5p_gpioint_mask_ack, | ||
146 | .irq_unmask = s5p_gpioint_unmask, | ||
147 | .irq_set_type = s5p_gpioint_set_type, | ||
148 | }; | ||
149 | |||
150 | static void s5p_gpioint_handler(unsigned int irq, struct irq_desc *desc) | 78 | static void s5p_gpioint_handler(unsigned int irq, struct irq_desc *desc) |
151 | { | 79 | { |
152 | struct s5p_gpioint_bank *bank = irq_get_handler_data(irq); | 80 | struct s5p_gpioint_bank *bank = irq_get_handler_data(irq); |
@@ -179,9 +107,10 @@ static void s5p_gpioint_handler(unsigned int irq, struct irq_desc *desc) | |||
179 | static __init int s5p_gpioint_add(struct s3c_gpio_chip *chip) | 107 | static __init int s5p_gpioint_add(struct s3c_gpio_chip *chip) |
180 | { | 108 | { |
181 | static int used_gpioint_groups = 0; | 109 | static int used_gpioint_groups = 0; |
182 | int irq, group = chip->group; | 110 | int group = chip->group; |
183 | int i; | ||
184 | struct s5p_gpioint_bank *bank = NULL; | 111 | struct s5p_gpioint_bank *bank = NULL; |
112 | struct irq_chip_generic *gc; | ||
113 | struct irq_chip_type *ct; | ||
185 | 114 | ||
186 | if (used_gpioint_groups >= S5P_GPIOINT_GROUP_COUNT) | 115 | if (used_gpioint_groups >= S5P_GPIOINT_GROUP_COUNT) |
187 | return -ENOMEM; | 116 | return -ENOMEM; |
@@ -211,19 +140,28 @@ static __init int s5p_gpioint_add(struct s3c_gpio_chip *chip) | |||
211 | * chained GPIO irq has been successfully registered, allocate new gpio | 140 | * chained GPIO irq has been successfully registered, allocate new gpio |
212 | * int group and assign irq nubmers | 141 | * int group and assign irq nubmers |
213 | */ | 142 | */ |
214 | |||
215 | chip->irq_base = S5P_GPIOINT_BASE + | 143 | chip->irq_base = S5P_GPIOINT_BASE + |
216 | used_gpioint_groups * S5P_GPIOINT_GROUP_SIZE; | 144 | used_gpioint_groups * S5P_GPIOINT_GROUP_SIZE; |
217 | used_gpioint_groups++; | 145 | used_gpioint_groups++; |
218 | 146 | ||
219 | bank->chips[group - bank->start] = chip; | 147 | bank->chips[group - bank->start] = chip; |
220 | for (i = 0; i < chip->chip.ngpio; i++) { | 148 | |
221 | irq = chip->irq_base + i; | 149 | gc = irq_alloc_generic_chip("s5p_gpioint", 1, chip->irq_base, |
222 | irq_set_chip(irq, &s5p_gpioint); | 150 | (void __iomem *)GPIO_BASE(chip), |
223 | irq_set_handler_data(irq, chip); | 151 | handle_level_irq); |
224 | irq_set_handler(irq, handle_level_irq); | 152 | if (!gc) |
225 | set_irq_flags(irq, IRQF_VALID); | 153 | return -ENOMEM; |
226 | } | 154 | ct = gc->chip_types; |
155 | ct->chip.irq_ack = irq_gc_ack; | ||
156 | ct->chip.irq_mask = irq_gc_mask_set_bit; | ||
157 | ct->chip.irq_unmask = irq_gc_mask_clr_bit; | ||
158 | ct->chip.irq_set_type = s5p_gpioint_set_type, | ||
159 | ct->regs.ack = PEND_OFFSET + REG_OFFSET(chip->group); | ||
160 | ct->regs.mask = MASK_OFFSET + REG_OFFSET(chip->group); | ||
161 | ct->regs.type = CON_OFFSET + REG_OFFSET(chip->group); | ||
162 | irq_setup_generic_chip(gc, IRQ_MSK(chip->chip.ngpio), | ||
163 | IRQ_GC_INIT_MASK_CACHE, | ||
164 | IRQ_NOREQUEST | IRQ_NOPROBE, 0); | ||
227 | return 0; | 165 | return 0; |
228 | } | 166 | } |
229 | 167 | ||
diff --git a/arch/arm/plat-s5p/irq.c b/arch/arm/plat-s5p/irq.c index 5560b12035d1..a97c08957f49 100644 --- a/arch/arm/plat-s5p/irq.c +++ b/arch/arm/plat-s5p/irq.c | |||
@@ -64,11 +64,7 @@ void __init s5p_init_irq(u32 *vic, u32 num_vic) | |||
64 | vic_init(VA_VIC(irq), VIC_BASE(irq), vic[irq], 0); | 64 | vic_init(VA_VIC(irq), VIC_BASE(irq), vic[irq], 0); |
65 | #endif | 65 | #endif |
66 | 66 | ||
67 | s3c_init_vic_timer_irq(IRQ_TIMER0_VIC, IRQ_TIMER0); | 67 | s3c_init_vic_timer_irq(5, IRQ_TIMER0); |
68 | s3c_init_vic_timer_irq(IRQ_TIMER1_VIC, IRQ_TIMER1); | ||
69 | s3c_init_vic_timer_irq(IRQ_TIMER2_VIC, IRQ_TIMER2); | ||
70 | s3c_init_vic_timer_irq(IRQ_TIMER3_VIC, IRQ_TIMER3); | ||
71 | s3c_init_vic_timer_irq(IRQ_TIMER4_VIC, IRQ_TIMER4); | ||
72 | 68 | ||
73 | s3c_init_uart_irqs(uart_irqs, ARRAY_SIZE(uart_irqs)); | 69 | s3c_init_uart_irqs(uart_irqs, ARRAY_SIZE(uart_irqs)); |
74 | } | 70 | } |
diff --git a/arch/arm/plat-samsung/Kconfig b/arch/arm/plat-samsung/Kconfig index be72100b81b4..4d79519d19a4 100644 --- a/arch/arm/plat-samsung/Kconfig +++ b/arch/arm/plat-samsung/Kconfig | |||
@@ -8,6 +8,7 @@ config PLAT_SAMSUNG | |||
8 | bool | 8 | bool |
9 | depends on PLAT_S3C24XX || ARCH_S3C64XX || PLAT_S5P | 9 | depends on PLAT_S3C24XX || ARCH_S3C64XX || PLAT_S5P |
10 | select NO_IOPORT | 10 | select NO_IOPORT |
11 | select GENERIC_IRQ_CHIP | ||
11 | default y | 12 | default y |
12 | help | 13 | help |
13 | Base platform code for all Samsung SoC based systems | 14 | Base platform code for all Samsung SoC based systems |
diff --git a/arch/arm/plat-samsung/include/plat/irq-vic-timer.h b/arch/arm/plat-samsung/include/plat/irq-vic-timer.h index a90b53431b5b..5b9c42fd32d7 100644 --- a/arch/arm/plat-samsung/include/plat/irq-vic-timer.h +++ b/arch/arm/plat-samsung/include/plat/irq-vic-timer.h | |||
@@ -10,4 +10,4 @@ | |||
10 | * published by the Free Software Foundation. | 10 | * published by the Free Software Foundation. |
11 | */ | 11 | */ |
12 | 12 | ||
13 | extern void s3c_init_vic_timer_irq(unsigned int vic, unsigned int timer); | 13 | extern void s3c_init_vic_timer_irq(unsigned int num, unsigned int timer_irq); |
diff --git a/arch/arm/plat-samsung/include/plat/uncompress.h b/arch/arm/plat-samsung/include/plat/uncompress.h index 7d6ed7263d57..ee48e12a1e72 100644 --- a/arch/arm/plat-samsung/include/plat/uncompress.h +++ b/arch/arm/plat-samsung/include/plat/uncompress.h | |||
@@ -18,8 +18,8 @@ typedef unsigned int upf_t; /* cannot include linux/serial_core.h */ | |||
18 | 18 | ||
19 | /* uart setup */ | 19 | /* uart setup */ |
20 | 20 | ||
21 | static unsigned int fifo_mask; | 21 | unsigned int fifo_mask; |
22 | static unsigned int fifo_max; | 22 | unsigned int fifo_max; |
23 | 23 | ||
24 | /* forward declerations */ | 24 | /* forward declerations */ |
25 | 25 | ||
diff --git a/arch/arm/plat-samsung/irq-uart.c b/arch/arm/plat-samsung/irq-uart.c index 4d4e571af553..32582c0958e3 100644 --- a/arch/arm/plat-samsung/irq-uart.c +++ b/arch/arm/plat-samsung/irq-uart.c | |||
@@ -27,60 +27,6 @@ | |||
27 | /* Note, we make use of the fact that the parent IRQs, IRQ_UART[0..3] | 27 | /* Note, we make use of the fact that the parent IRQs, IRQ_UART[0..3] |
28 | * are consecutive when looking up the interrupt in the demux routines. | 28 | * are consecutive when looking up the interrupt in the demux routines. |
29 | */ | 29 | */ |
30 | |||
31 | static inline void __iomem *s3c_irq_uart_base(struct irq_data *data) | ||
32 | { | ||
33 | struct s3c_uart_irq *uirq = irq_data_get_irq_chip_data(data); | ||
34 | return uirq->regs; | ||
35 | } | ||
36 | |||
37 | static inline unsigned int s3c_irq_uart_bit(unsigned int irq) | ||
38 | { | ||
39 | return irq & 3; | ||
40 | } | ||
41 | |||
42 | static void s3c_irq_uart_mask(struct irq_data *data) | ||
43 | { | ||
44 | void __iomem *regs = s3c_irq_uart_base(data); | ||
45 | unsigned int bit = s3c_irq_uart_bit(data->irq); | ||
46 | u32 reg; | ||
47 | |||
48 | reg = __raw_readl(regs + S3C64XX_UINTM); | ||
49 | reg |= (1 << bit); | ||
50 | __raw_writel(reg, regs + S3C64XX_UINTM); | ||
51 | } | ||
52 | |||
53 | static void s3c_irq_uart_maskack(struct irq_data *data) | ||
54 | { | ||
55 | void __iomem *regs = s3c_irq_uart_base(data); | ||
56 | unsigned int bit = s3c_irq_uart_bit(data->irq); | ||
57 | u32 reg; | ||
58 | |||
59 | reg = __raw_readl(regs + S3C64XX_UINTM); | ||
60 | reg |= (1 << bit); | ||
61 | __raw_writel(reg, regs + S3C64XX_UINTM); | ||
62 | __raw_writel(1 << bit, regs + S3C64XX_UINTP); | ||
63 | } | ||
64 | |||
65 | static void s3c_irq_uart_unmask(struct irq_data *data) | ||
66 | { | ||
67 | void __iomem *regs = s3c_irq_uart_base(data); | ||
68 | unsigned int bit = s3c_irq_uart_bit(data->irq); | ||
69 | u32 reg; | ||
70 | |||
71 | reg = __raw_readl(regs + S3C64XX_UINTM); | ||
72 | reg &= ~(1 << bit); | ||
73 | __raw_writel(reg, regs + S3C64XX_UINTM); | ||
74 | } | ||
75 | |||
76 | static void s3c_irq_uart_ack(struct irq_data *data) | ||
77 | { | ||
78 | void __iomem *regs = s3c_irq_uart_base(data); | ||
79 | unsigned int bit = s3c_irq_uart_bit(data->irq); | ||
80 | |||
81 | __raw_writel(1 << bit, regs + S3C64XX_UINTP); | ||
82 | } | ||
83 | |||
84 | static void s3c_irq_demux_uart(unsigned int irq, struct irq_desc *desc) | 30 | static void s3c_irq_demux_uart(unsigned int irq, struct irq_desc *desc) |
85 | { | 31 | { |
86 | struct s3c_uart_irq *uirq = desc->irq_data.handler_data; | 32 | struct s3c_uart_irq *uirq = desc->irq_data.handler_data; |
@@ -97,30 +43,25 @@ static void s3c_irq_demux_uart(unsigned int irq, struct irq_desc *desc) | |||
97 | generic_handle_irq(base + 3); | 43 | generic_handle_irq(base + 3); |
98 | } | 44 | } |
99 | 45 | ||
100 | static struct irq_chip s3c_irq_uart = { | ||
101 | .name = "s3c-uart", | ||
102 | .irq_mask = s3c_irq_uart_mask, | ||
103 | .irq_unmask = s3c_irq_uart_unmask, | ||
104 | .irq_mask_ack = s3c_irq_uart_maskack, | ||
105 | .irq_ack = s3c_irq_uart_ack, | ||
106 | }; | ||
107 | |||
108 | static void __init s3c_init_uart_irq(struct s3c_uart_irq *uirq) | 46 | static void __init s3c_init_uart_irq(struct s3c_uart_irq *uirq) |
109 | { | 47 | { |
110 | void __iomem *reg_base = uirq->regs; | 48 | void __iomem *reg_base = uirq->regs; |
111 | unsigned int irq; | 49 | struct irq_chip_generic *gc; |
112 | int offs; | 50 | struct irq_chip_type *ct; |
113 | 51 | ||
114 | /* mask all interrupts at the start. */ | 52 | /* mask all interrupts at the start. */ |
115 | __raw_writel(0xf, reg_base + S3C64XX_UINTM); | 53 | __raw_writel(0xf, reg_base + S3C64XX_UINTM); |
116 | 54 | ||
117 | for (offs = 0; offs < 3; offs++) { | 55 | gc = irq_alloc_generic_chip("s3c-uart", 1, uirq->base_irq, reg_base, |
118 | irq = uirq->base_irq + offs; | 56 | handle_level_irq); |
119 | 57 | ct = gc->chip_types; | |
120 | irq_set_chip_and_handler(irq, &s3c_irq_uart, handle_level_irq); | 58 | ct->chip.irq_ack = irq_gc_ack; |
121 | irq_set_chip_data(irq, uirq); | 59 | ct->chip.irq_mask = irq_gc_mask_set_bit; |
122 | set_irq_flags(irq, IRQF_VALID); | 60 | ct->chip.irq_unmask = irq_gc_mask_clr_bit; |
123 | } | 61 | ct->regs.ack = S3C64XX_UINTP; |
62 | ct->regs.mask = S3C64XX_UINTM; | ||
63 | irq_setup_generic_chip(gc, IRQ_MSK(4), IRQ_GC_INIT_MASK_CACHE, | ||
64 | IRQ_NOREQUEST | IRQ_NOPROBE, 0); | ||
124 | 65 | ||
125 | irq_set_handler_data(uirq->parent_irq, uirq); | 66 | irq_set_handler_data(uirq->parent_irq, uirq); |
126 | irq_set_chained_handler(uirq->parent_irq, s3c_irq_demux_uart); | 67 | irq_set_chained_handler(uirq->parent_irq, s3c_irq_demux_uart); |
diff --git a/arch/arm/plat-samsung/irq-vic-timer.c b/arch/arm/plat-samsung/irq-vic-timer.c index d6ad66ab9290..a607546ddbd0 100644 --- a/arch/arm/plat-samsung/irq-vic-timer.c +++ b/arch/arm/plat-samsung/irq-vic-timer.c | |||
@@ -28,60 +28,43 @@ static void s3c_irq_demux_vic_timer(unsigned int irq, struct irq_desc *desc) | |||
28 | } | 28 | } |
29 | 29 | ||
30 | /* We assume the IRQ_TIMER0..IRQ_TIMER4 range is continuous. */ | 30 | /* We assume the IRQ_TIMER0..IRQ_TIMER4 range is continuous. */ |
31 | 31 | static void s3c_irq_timer_ack(struct irq_data *d) | |
32 | static void s3c_irq_timer_mask(struct irq_data *data) | ||
33 | { | ||
34 | u32 reg = __raw_readl(S3C64XX_TINT_CSTAT); | ||
35 | u32 mask = (u32)data->chip_data; | ||
36 | |||
37 | reg &= 0x1f; /* mask out pending interrupts */ | ||
38 | reg &= ~mask; | ||
39 | __raw_writel(reg, S3C64XX_TINT_CSTAT); | ||
40 | } | ||
41 | |||
42 | static void s3c_irq_timer_unmask(struct irq_data *data) | ||
43 | { | 32 | { |
44 | u32 reg = __raw_readl(S3C64XX_TINT_CSTAT); | 33 | struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d); |
45 | u32 mask = (u32)data->chip_data; | 34 | u32 mask = (1 << 5) << (d->irq - gc->irq_base); |
46 | 35 | ||
47 | reg &= 0x1f; /* mask out pending interrupts */ | 36 | irq_reg_writel(mask | gc->mask_cache, gc->reg_base); |
48 | reg |= mask; | ||
49 | __raw_writel(reg, S3C64XX_TINT_CSTAT); | ||
50 | } | 37 | } |
51 | 38 | ||
52 | static void s3c_irq_timer_ack(struct irq_data *data) | ||
53 | { | ||
54 | u32 reg = __raw_readl(S3C64XX_TINT_CSTAT); | ||
55 | u32 mask = (u32)data->chip_data; | ||
56 | |||
57 | reg &= 0x1f; | ||
58 | reg |= mask << 5; | ||
59 | __raw_writel(reg, S3C64XX_TINT_CSTAT); | ||
60 | } | ||
61 | |||
62 | static struct irq_chip s3c_irq_timer = { | ||
63 | .name = "s3c-timer", | ||
64 | .irq_mask = s3c_irq_timer_mask, | ||
65 | .irq_unmask = s3c_irq_timer_unmask, | ||
66 | .irq_ack = s3c_irq_timer_ack, | ||
67 | }; | ||
68 | |||
69 | /** | 39 | /** |
70 | * s3c_init_vic_timer_irq() - initialise timer irq chanined off VIC.\ | 40 | * s3c_init_vic_timer_irq() - initialise timer irq chanined off VIC.\ |
71 | * @parent_irq: The parent IRQ on the VIC for the timer. | 41 | * @num: Number of timers to initialize |
72 | * @timer_irq: The IRQ to be used for the timer. | 42 | * @timer_irq: Base IRQ number to be used for the timers. |
73 | * | 43 | * |
74 | * Register the necessary IRQ chaining and support for the timer IRQs | 44 | * Register the necessary IRQ chaining and support for the timer IRQs |
75 | * chained of the VIC. | 45 | * chained of the VIC. |
76 | */ | 46 | */ |
77 | void __init s3c_init_vic_timer_irq(unsigned int parent_irq, | 47 | void __init s3c_init_vic_timer_irq(unsigned int num, unsigned int timer_irq) |
78 | unsigned int timer_irq) | ||
79 | { | 48 | { |
49 | unsigned int pirq[5] = { IRQ_TIMER0_VIC, IRQ_TIMER1_VIC, IRQ_TIMER2_VIC, | ||
50 | IRQ_TIMER3_VIC, IRQ_TIMER4_VIC }; | ||
51 | struct irq_chip_generic *s3c_tgc; | ||
52 | struct irq_chip_type *ct; | ||
53 | unsigned int i; | ||
80 | 54 | ||
81 | irq_set_chained_handler(parent_irq, s3c_irq_demux_vic_timer); | 55 | s3c_tgc = irq_alloc_generic_chip("s3c-timer", 1, timer_irq, |
82 | irq_set_handler_data(parent_irq, (void *)timer_irq); | 56 | S3C64XX_TINT_CSTAT, handle_level_irq); |
57 | ct = s3c_tgc->chip_types; | ||
58 | ct->chip.irq_mask = irq_gc_mask_clr_bit; | ||
59 | ct->chip.irq_unmask = irq_gc_mask_set_bit; | ||
60 | ct->chip.irq_ack = s3c_irq_timer_ack; | ||
61 | irq_setup_generic_chip(s3c_tgc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE, | ||
62 | IRQ_NOREQUEST | IRQ_NOPROBE, 0); | ||
63 | /* Clear the upper bits of the mask_cache*/ | ||
64 | s3c_tgc->mask_cache &= 0x1f; | ||
83 | 65 | ||
84 | irq_set_chip_and_handler(timer_irq, &s3c_irq_timer, handle_level_irq); | 66 | for (i = 0; i < num; i++, timer_irq++) { |
85 | irq_set_chip_data(timer_irq, (void *)(1 << (timer_irq - IRQ_TIMER0))); | 67 | irq_set_chained_handler(pirq[i], s3c_irq_demux_vic_timer); |
86 | set_irq_flags(timer_irq, IRQF_VALID); | 68 | irq_set_handler_data(pirq[i], (void *)timer_irq); |
69 | } | ||
87 | } | 70 | } |
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index e6a8d8c0101d..62f337ab52bc 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig | |||
@@ -8,9 +8,6 @@ menu "Graphics support" | |||
8 | config HAVE_FB_ATMEL | 8 | config HAVE_FB_ATMEL |
9 | bool | 9 | bool |
10 | 10 | ||
11 | config HAVE_FB_IMX | ||
12 | bool | ||
13 | |||
14 | config SH_MIPI_DSI | 11 | config SH_MIPI_DSI |
15 | tristate | 12 | tristate |
16 | depends on (SUPERH || ARCH_SHMOBILE) && HAVE_CLK | 13 | depends on (SUPERH || ARCH_SHMOBILE) && HAVE_CLK |
@@ -359,7 +356,7 @@ config FB_SA1100 | |||
359 | 356 | ||
360 | config FB_IMX | 357 | config FB_IMX |
361 | tristate "Freescale i.MX LCD support" | 358 | tristate "Freescale i.MX LCD support" |
362 | depends on FB && (HAVE_FB_IMX || ARCH_MX1 || ARCH_MX2) | 359 | depends on FB && IMX_HAVE_PLATFORM_IMX_FB |
363 | select FB_CFB_FILLRECT | 360 | select FB_CFB_FILLRECT |
364 | select FB_CFB_COPYAREA | 361 | select FB_CFB_COPYAREA |
365 | select FB_CFB_IMAGEBLIT | 362 | select FB_CFB_IMAGEBLIT |
diff --git a/drivers/video/imxfb.c b/drivers/video/imxfb.c index ef72cb483834..d2ccfd6e662c 100644 --- a/drivers/video/imxfb.c +++ b/drivers/video/imxfb.c | |||
@@ -65,12 +65,6 @@ | |||
65 | #define CPOS_OP (1<<28) | 65 | #define CPOS_OP (1<<28) |
66 | #define CPOS_CXP(x) (((x) & 3ff) << 16) | 66 | #define CPOS_CXP(x) (((x) & 3ff) << 16) |
67 | 67 | ||
68 | #ifdef CONFIG_ARCH_MX1 | ||
69 | #define CPOS_CYP(y) ((y) & 0x1ff) | ||
70 | #else | ||
71 | #define CPOS_CYP(y) ((y) & 0x3ff) | ||
72 | #endif | ||
73 | |||
74 | #define LCDC_LCWHB 0x10 | 68 | #define LCDC_LCWHB 0x10 |
75 | #define LCWHB_BK_EN (1<<31) | 69 | #define LCWHB_BK_EN (1<<31) |
76 | #define LCWHB_CW(w) (((w) & 0x1f) << 24) | 70 | #define LCWHB_CW(w) (((w) & 0x1f) << 24) |
@@ -79,16 +73,6 @@ | |||
79 | 73 | ||
80 | #define LCDC_LCHCC 0x14 | 74 | #define LCDC_LCHCC 0x14 |
81 | 75 | ||
82 | #ifdef CONFIG_ARCH_MX1 | ||
83 | #define LCHCC_CUR_COL_R(r) (((r) & 0x1f) << 11) | ||
84 | #define LCHCC_CUR_COL_G(g) (((g) & 0x3f) << 5) | ||
85 | #define LCHCC_CUR_COL_B(b) ((b) & 0x1f) | ||
86 | #else | ||
87 | #define LCHCC_CUR_COL_R(r) (((r) & 0x3f) << 12) | ||
88 | #define LCHCC_CUR_COL_G(g) (((g) & 0x3f) << 6) | ||
89 | #define LCHCC_CUR_COL_B(b) ((b) & 0x3f) | ||
90 | #endif | ||
91 | |||
92 | #define LCDC_PCR 0x18 | 76 | #define LCDC_PCR 0x18 |
93 | 77 | ||
94 | #define LCDC_HCR 0x1C | 78 | #define LCDC_HCR 0x1C |
@@ -115,11 +99,7 @@ | |||
115 | 99 | ||
116 | #define LCDC_RMCR 0x34 | 100 | #define LCDC_RMCR 0x34 |
117 | 101 | ||
118 | #ifdef CONFIG_ARCH_MX1 | 102 | #define RMCR_LCDC_EN_MX1 (1<<1) |
119 | #define RMCR_LCDC_EN (1<<1) | ||
120 | #else | ||
121 | #define RMCR_LCDC_EN 0 | ||
122 | #endif | ||
123 | 103 | ||
124 | #define RMCR_SELF_REF (1<<0) | 104 | #define RMCR_SELF_REF (1<<0) |
125 | 105 | ||
@@ -536,7 +516,11 @@ static void imxfb_enable_controller(struct imxfb_info *fbi) | |||
536 | writel(readl(fbi->regs + LCDC_CPOS) & ~(CPOS_CC0 | CPOS_CC1), | 516 | writel(readl(fbi->regs + LCDC_CPOS) & ~(CPOS_CC0 | CPOS_CC1), |
537 | fbi->regs + LCDC_CPOS); | 517 | fbi->regs + LCDC_CPOS); |
538 | 518 | ||
539 | writel(RMCR_LCDC_EN, fbi->regs + LCDC_RMCR); | 519 | /* |
520 | * RMCR_LCDC_EN_MX1 is present on i.MX1 only, but doesn't hurt | ||
521 | * on other SoCs | ||
522 | */ | ||
523 | writel(RMCR_LCDC_EN_MX1, fbi->regs + LCDC_RMCR); | ||
540 | 524 | ||
541 | clk_enable(fbi->clk); | 525 | clk_enable(fbi->clk); |
542 | 526 | ||