diff options
Diffstat (limited to 'arch/arm')
77 files changed, 1972 insertions, 1183 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 7a74e3e5f916..50b9afa8ae6d 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -99,13 +99,6 @@ config ARCH_EBSA110 | |||
99 | Ethernet interface, two PCMCIA sockets, two serial ports and a | 99 | Ethernet interface, two PCMCIA sockets, two serial ports and a |
100 | parallel port. | 100 | parallel port. |
101 | 101 | ||
102 | config ARCH_CAMELOT | ||
103 | bool "Epxa10db" | ||
104 | help | ||
105 | This enables support for Altera's Excalibur XA10 development board. | ||
106 | If you would like to build your kernel to run on one of these boards | ||
107 | then you must say 'Y' here. Otherwise say 'N' | ||
108 | |||
109 | config ARCH_FOOTBRIDGE | 102 | config ARCH_FOOTBRIDGE |
110 | bool "FootBridge" | 103 | bool "FootBridge" |
111 | select FOOTBRIDGE | 104 | select FOOTBRIDGE |
@@ -213,12 +206,16 @@ config ARCH_AAEC2000 | |||
213 | help | 206 | help |
214 | This enables support for systems based on the Agilent AAEC-2000 | 207 | This enables support for systems based on the Agilent AAEC-2000 |
215 | 208 | ||
209 | config ARCH_AT91RM9200 | ||
210 | bool "AT91RM9200" | ||
211 | help | ||
212 | Say Y here if you intend to run this kernel on an AT91RM9200-based | ||
213 | board. | ||
214 | |||
216 | endchoice | 215 | endchoice |
217 | 216 | ||
218 | source "arch/arm/mach-clps711x/Kconfig" | 217 | source "arch/arm/mach-clps711x/Kconfig" |
219 | 218 | ||
220 | source "arch/arm/mach-epxa10db/Kconfig" | ||
221 | |||
222 | source "arch/arm/mach-footbridge/Kconfig" | 219 | source "arch/arm/mach-footbridge/Kconfig" |
223 | 220 | ||
224 | source "arch/arm/mach-integrator/Kconfig" | 221 | source "arch/arm/mach-integrator/Kconfig" |
@@ -253,6 +250,8 @@ source "arch/arm/mach-aaec2000/Kconfig" | |||
253 | 250 | ||
254 | source "arch/arm/mach-realview/Kconfig" | 251 | source "arch/arm/mach-realview/Kconfig" |
255 | 252 | ||
253 | source "arch/arm/mach-at91rm9200/Kconfig" | ||
254 | |||
256 | # Definitions to make life easier | 255 | # Definitions to make life easier |
257 | config ARCH_ACORN | 256 | config ARCH_ACORN |
258 | bool | 257 | bool |
@@ -418,7 +417,8 @@ config LEDS | |||
418 | ARCH_EBSA285 || ARCH_IMX || ARCH_INTEGRATOR || \ | 417 | ARCH_EBSA285 || ARCH_IMX || ARCH_INTEGRATOR || \ |
419 | ARCH_LUBBOCK || MACH_MAINSTONE || ARCH_NETWINDER || \ | 418 | ARCH_LUBBOCK || MACH_MAINSTONE || ARCH_NETWINDER || \ |
420 | ARCH_OMAP || ARCH_P720T || ARCH_PXA_IDP || \ | 419 | ARCH_OMAP || ARCH_P720T || ARCH_PXA_IDP || \ |
421 | ARCH_SA1100 || ARCH_SHARK || ARCH_VERSATILE | 420 | ARCH_SA1100 || ARCH_SHARK || ARCH_VERSATILE || \ |
421 | ARCH_AT91RM9200 | ||
422 | help | 422 | help |
423 | If you say Y here, the LEDs on your machine will be used | 423 | If you say Y here, the LEDs on your machine will be used |
424 | to provide useful information about your current system status. | 424 | to provide useful information about your current system status. |
diff --git a/arch/arm/Makefile b/arch/arm/Makefile index afaf3a1e903c..1fa2a1011584 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile | |||
@@ -84,7 +84,6 @@ endif | |||
84 | machine-$(CONFIG_ARCH_PXA) := pxa | 84 | machine-$(CONFIG_ARCH_PXA) := pxa |
85 | machine-$(CONFIG_ARCH_L7200) := l7200 | 85 | machine-$(CONFIG_ARCH_L7200) := l7200 |
86 | machine-$(CONFIG_ARCH_INTEGRATOR) := integrator | 86 | machine-$(CONFIG_ARCH_INTEGRATOR) := integrator |
87 | machine-$(CONFIG_ARCH_CAMELOT) := epxa10db | ||
88 | textofs-$(CONFIG_ARCH_CLPS711X) := 0x00028000 | 87 | textofs-$(CONFIG_ARCH_CLPS711X) := 0x00028000 |
89 | machine-$(CONFIG_ARCH_CLPS711X) := clps711x | 88 | machine-$(CONFIG_ARCH_CLPS711X) := clps711x |
90 | machine-$(CONFIG_ARCH_IOP3XX) := iop3xx | 89 | machine-$(CONFIG_ARCH_IOP3XX) := iop3xx |
@@ -100,6 +99,7 @@ endif | |||
100 | machine-$(CONFIG_ARCH_H720X) := h720x | 99 | machine-$(CONFIG_ARCH_H720X) := h720x |
101 | machine-$(CONFIG_ARCH_AAEC2000) := aaec2000 | 100 | machine-$(CONFIG_ARCH_AAEC2000) := aaec2000 |
102 | machine-$(CONFIG_ARCH_REALVIEW) := realview | 101 | machine-$(CONFIG_ARCH_REALVIEW) := realview |
102 | machine-$(CONFIG_ARCH_AT91RM9200) := at91rm9200 | ||
103 | 103 | ||
104 | ifeq ($(CONFIG_ARCH_EBSA110),y) | 104 | ifeq ($(CONFIG_ARCH_EBSA110),y) |
105 | # This is what happens if you forget the IOCS16 line. | 105 | # This is what happens if you forget the IOCS16 line. |
diff --git a/arch/arm/boot/compressed/Makefile b/arch/arm/boot/compressed/Makefile index 6b505ce41a75..35ffe0f4ece7 100644 --- a/arch/arm/boot/compressed/Makefile +++ b/arch/arm/boot/compressed/Makefile | |||
@@ -21,10 +21,6 @@ ifeq ($(CONFIG_ARCH_SHARK),y) | |||
21 | OBJS += head-shark.o ofw-shark.o | 21 | OBJS += head-shark.o ofw-shark.o |
22 | endif | 22 | endif |
23 | 23 | ||
24 | ifeq ($(CONFIG_ARCH_CAMELOT),y) | ||
25 | OBJS += head-epxa10db.o | ||
26 | endif | ||
27 | |||
28 | ifeq ($(CONFIG_ARCH_L7200),y) | 24 | ifeq ($(CONFIG_ARCH_L7200),y) |
29 | OBJS += head-l7200.o | 25 | OBJS += head-l7200.o |
30 | endif | 26 | endif |
@@ -50,6 +46,10 @@ ifeq ($(CONFIG_PXA_SHARPSL),y) | |||
50 | OBJS += head-sharpsl.o | 46 | OBJS += head-sharpsl.o |
51 | endif | 47 | endif |
52 | 48 | ||
49 | ifeq ($(CONFIG_ARCH_AT91RM9200),y) | ||
50 | OBJS += head-at91rm9200.o | ||
51 | endif | ||
52 | |||
53 | ifeq ($(CONFIG_DEBUG_ICEDCC),y) | 53 | ifeq ($(CONFIG_DEBUG_ICEDCC),y) |
54 | OBJS += ice-dcc.o | 54 | OBJS += ice-dcc.o |
55 | endif | 55 | endif |
diff --git a/arch/arm/boot/compressed/head-at91rm9200.S b/arch/arm/boot/compressed/head-at91rm9200.S new file mode 100644 index 000000000000..2119ea62b547 --- /dev/null +++ b/arch/arm/boot/compressed/head-at91rm9200.S | |||
@@ -0,0 +1,57 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/boot/compressed/head-at91rm9200.S | ||
3 | * | ||
4 | * Copyright (C) 2003 SAN People | ||
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 | */ | ||
12 | #include <asm/mach-types.h> | ||
13 | |||
14 | .section ".start", "ax" | ||
15 | |||
16 | @ Atmel AT91RM9200-DK : 262 | ||
17 | mov r3, #(MACH_TYPE_AT91RM9200DK & 0xff) | ||
18 | orr r3, r3, #(MACH_TYPE_AT91RM9200DK & 0xff00) | ||
19 | cmp r7, r3 | ||
20 | beq 99f | ||
21 | |||
22 | @ Cogent CSB337 : 399 | ||
23 | mov r3, #(MACH_TYPE_CSB337 & 0xff) | ||
24 | orr r3, r3, #(MACH_TYPE_CSB337 & 0xff00) | ||
25 | cmp r7, r3 | ||
26 | beq 99f | ||
27 | |||
28 | @ Cogent CSB637 : 648 | ||
29 | mov r3, #(MACH_TYPE_CSB637 & 0xff) | ||
30 | orr r3, r3, #(MACH_TYPE_CSB637 & 0xff00) | ||
31 | cmp r7, r3 | ||
32 | beq 99f | ||
33 | |||
34 | @ Atmel AT91RM9200-EK : 705 | ||
35 | mov r3, #(MACH_TYPE_AT91RM9200EK & 0xff) | ||
36 | orr r3, r3, #(MACH_TYPE_AT91RM9200EK & 0xff00) | ||
37 | cmp r7, r3 | ||
38 | beq 99f | ||
39 | |||
40 | @ Conitec Carmeva : 769 | ||
41 | mov r3, #(MACH_TYPE_CARMEVA & 0xff) | ||
42 | orr r3, r3, #(MACH_TYPE_CARMEVA & 0xff00) | ||
43 | cmp r7, r3 | ||
44 | beq 99f | ||
45 | |||
46 | @ KwikByte KB920x : 612 | ||
47 | mov r3, #(MACH_TYPE_KB9200 & 0xff) | ||
48 | orr r3, r3, #(MACH_TYPE_KB9200 & 0xff00) | ||
49 | cmp r7, r3 | ||
50 | beq 99f | ||
51 | |||
52 | @ Unknown board, use the AT91RM9200DK board | ||
53 | @ mov r7, #MACH_TYPE_AT91RM9200 | ||
54 | mov r7, #(MACH_TYPE_AT91RM9200DK & 0xff) | ||
55 | orr r7, r7, #(MACH_TYPE_AT91RM9200DK & 0xff00) | ||
56 | |||
57 | 99: | ||
diff --git a/arch/arm/boot/compressed/head-epxa10db.S b/arch/arm/boot/compressed/head-epxa10db.S deleted file mode 100644 index 757681f12a39..000000000000 --- a/arch/arm/boot/compressed/head-epxa10db.S +++ /dev/null | |||
@@ -1,5 +0,0 @@ | |||
1 | #include <asm/mach-types.h> | ||
2 | #include <asm/arch/excalibur.h> | ||
3 | |||
4 | .section ".start", "ax" | ||
5 | mov r7, #MACH_TYPE_CAMELOT | ||
diff --git a/arch/arm/configs/assabet_defconfig b/arch/arm/configs/assabet_defconfig index ccbb4c0d58c4..089c9d598409 100644 --- a/arch/arm/configs/assabet_defconfig +++ b/arch/arm/configs/assabet_defconfig | |||
@@ -63,7 +63,6 @@ CONFIG_OBSOLETE_MODPARM=y | |||
63 | # CONFIG_ARCH_CLPS711X is not set | 63 | # CONFIG_ARCH_CLPS711X is not set |
64 | # CONFIG_ARCH_CO285 is not set | 64 | # CONFIG_ARCH_CO285 is not set |
65 | # CONFIG_ARCH_EBSA110 is not set | 65 | # CONFIG_ARCH_EBSA110 is not set |
66 | # CONFIG_ARCH_CAMELOT is not set | ||
67 | # CONFIG_ARCH_FOOTBRIDGE is not set | 66 | # CONFIG_ARCH_FOOTBRIDGE is not set |
68 | # CONFIG_ARCH_INTEGRATOR is not set | 67 | # CONFIG_ARCH_INTEGRATOR is not set |
69 | # CONFIG_ARCH_IOP3XX is not set | 68 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/badge4_defconfig b/arch/arm/configs/badge4_defconfig index 5d92af975d87..cfe6bd8e81cd 100644 --- a/arch/arm/configs/badge4_defconfig +++ b/arch/arm/configs/badge4_defconfig | |||
@@ -66,7 +66,6 @@ CONFIG_KMOD=y | |||
66 | # CONFIG_ARCH_CLPS711X is not set | 66 | # CONFIG_ARCH_CLPS711X is not set |
67 | # CONFIG_ARCH_CO285 is not set | 67 | # CONFIG_ARCH_CO285 is not set |
68 | # CONFIG_ARCH_EBSA110 is not set | 68 | # CONFIG_ARCH_EBSA110 is not set |
69 | # CONFIG_ARCH_CAMELOT is not set | ||
70 | # CONFIG_ARCH_FOOTBRIDGE is not set | 69 | # CONFIG_ARCH_FOOTBRIDGE is not set |
71 | # CONFIG_ARCH_INTEGRATOR is not set | 70 | # CONFIG_ARCH_INTEGRATOR is not set |
72 | # CONFIG_ARCH_IOP3XX is not set | 71 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/bast_defconfig b/arch/arm/configs/bast_defconfig index 35e3a99bcbb6..6886001b5366 100644 --- a/arch/arm/configs/bast_defconfig +++ b/arch/arm/configs/bast_defconfig | |||
@@ -64,7 +64,6 @@ CONFIG_KMOD=y | |||
64 | # CONFIG_ARCH_CLPS711X is not set | 64 | # CONFIG_ARCH_CLPS711X is not set |
65 | # CONFIG_ARCH_CO285 is not set | 65 | # CONFIG_ARCH_CO285 is not set |
66 | # CONFIG_ARCH_EBSA110 is not set | 66 | # CONFIG_ARCH_EBSA110 is not set |
67 | # CONFIG_ARCH_CAMELOT is not set | ||
68 | # CONFIG_ARCH_FOOTBRIDGE is not set | 67 | # CONFIG_ARCH_FOOTBRIDGE is not set |
69 | # CONFIG_ARCH_INTEGRATOR is not set | 68 | # CONFIG_ARCH_INTEGRATOR is not set |
70 | # CONFIG_ARCH_IOP3XX is not set | 69 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/cerfcube_defconfig b/arch/arm/configs/cerfcube_defconfig index d8fe0f40408f..f81a60005cd3 100644 --- a/arch/arm/configs/cerfcube_defconfig +++ b/arch/arm/configs/cerfcube_defconfig | |||
@@ -65,7 +65,6 @@ CONFIG_KMOD=y | |||
65 | # CONFIG_ARCH_CLPS711X is not set | 65 | # CONFIG_ARCH_CLPS711X is not set |
66 | # CONFIG_ARCH_CO285 is not set | 66 | # CONFIG_ARCH_CO285 is not set |
67 | # CONFIG_ARCH_EBSA110 is not set | 67 | # CONFIG_ARCH_EBSA110 is not set |
68 | # CONFIG_ARCH_CAMELOT is not set | ||
69 | # CONFIG_ARCH_FOOTBRIDGE is not set | 68 | # CONFIG_ARCH_FOOTBRIDGE is not set |
70 | # CONFIG_ARCH_INTEGRATOR is not set | 69 | # CONFIG_ARCH_INTEGRATOR is not set |
71 | # CONFIG_ARCH_IOP3XX is not set | 70 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/clps7500_defconfig b/arch/arm/configs/clps7500_defconfig index 908758371405..af9ae5389131 100644 --- a/arch/arm/configs/clps7500_defconfig +++ b/arch/arm/configs/clps7500_defconfig | |||
@@ -57,7 +57,6 @@ CONFIG_ARCH_CLPS7500=y | |||
57 | # CONFIG_ARCH_CLPS711X is not set | 57 | # CONFIG_ARCH_CLPS711X is not set |
58 | # CONFIG_ARCH_CO285 is not set | 58 | # CONFIG_ARCH_CO285 is not set |
59 | # CONFIG_ARCH_EBSA110 is not set | 59 | # CONFIG_ARCH_EBSA110 is not set |
60 | # CONFIG_ARCH_CAMELOT is not set | ||
61 | # CONFIG_ARCH_FOOTBRIDGE is not set | 60 | # CONFIG_ARCH_FOOTBRIDGE is not set |
62 | # CONFIG_ARCH_INTEGRATOR is not set | 61 | # CONFIG_ARCH_INTEGRATOR is not set |
63 | # CONFIG_ARCH_IOP3XX is not set | 62 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/collie_defconfig b/arch/arm/configs/collie_defconfig index 40dfe07a8bce..15468a0cf70e 100644 --- a/arch/arm/configs/collie_defconfig +++ b/arch/arm/configs/collie_defconfig | |||
@@ -71,7 +71,6 @@ CONFIG_KMOD=y | |||
71 | # CONFIG_ARCH_CLPS711X is not set | 71 | # CONFIG_ARCH_CLPS711X is not set |
72 | # CONFIG_ARCH_CO285 is not set | 72 | # CONFIG_ARCH_CO285 is not set |
73 | # CONFIG_ARCH_EBSA110 is not set | 73 | # CONFIG_ARCH_EBSA110 is not set |
74 | # CONFIG_ARCH_CAMELOT is not set | ||
75 | # CONFIG_ARCH_FOOTBRIDGE is not set | 74 | # CONFIG_ARCH_FOOTBRIDGE is not set |
76 | # CONFIG_ARCH_INTEGRATOR is not set | 75 | # CONFIG_ARCH_INTEGRATOR is not set |
77 | # CONFIG_ARCH_IOP3XX is not set | 76 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/corgi_defconfig b/arch/arm/configs/corgi_defconfig index 06229026f78b..3c3461e83398 100644 --- a/arch/arm/configs/corgi_defconfig +++ b/arch/arm/configs/corgi_defconfig | |||
@@ -87,7 +87,6 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
87 | # CONFIG_ARCH_CLPS711X is not set | 87 | # CONFIG_ARCH_CLPS711X is not set |
88 | # CONFIG_ARCH_CO285 is not set | 88 | # CONFIG_ARCH_CO285 is not set |
89 | # CONFIG_ARCH_EBSA110 is not set | 89 | # CONFIG_ARCH_EBSA110 is not set |
90 | # CONFIG_ARCH_CAMELOT is not set | ||
91 | # CONFIG_ARCH_FOOTBRIDGE is not set | 90 | # CONFIG_ARCH_FOOTBRIDGE is not set |
92 | # CONFIG_ARCH_INTEGRATOR is not set | 91 | # CONFIG_ARCH_INTEGRATOR is not set |
93 | # CONFIG_ARCH_IOP3XX is not set | 92 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/ebsa110_defconfig b/arch/arm/configs/ebsa110_defconfig index 6f61929b97a8..afcfff6140f2 100644 --- a/arch/arm/configs/ebsa110_defconfig +++ b/arch/arm/configs/ebsa110_defconfig | |||
@@ -63,7 +63,6 @@ CONFIG_KMOD=y | |||
63 | # CONFIG_ARCH_CLPS711X is not set | 63 | # CONFIG_ARCH_CLPS711X is not set |
64 | # CONFIG_ARCH_CO285 is not set | 64 | # CONFIG_ARCH_CO285 is not set |
65 | CONFIG_ARCH_EBSA110=y | 65 | CONFIG_ARCH_EBSA110=y |
66 | # CONFIG_ARCH_CAMELOT is not set | ||
67 | # CONFIG_ARCH_FOOTBRIDGE is not set | 66 | # CONFIG_ARCH_FOOTBRIDGE is not set |
68 | # CONFIG_ARCH_INTEGRATOR is not set | 67 | # CONFIG_ARCH_INTEGRATOR is not set |
69 | # CONFIG_ARCH_IOP3XX is not set | 68 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/edb7211_defconfig b/arch/arm/configs/edb7211_defconfig index 78b08ed4d5f4..6ba7355ff85b 100644 --- a/arch/arm/configs/edb7211_defconfig +++ b/arch/arm/configs/edb7211_defconfig | |||
@@ -57,7 +57,6 @@ CONFIG_BASE_SMALL=0 | |||
57 | CONFIG_ARCH_CLPS711X=y | 57 | CONFIG_ARCH_CLPS711X=y |
58 | # CONFIG_ARCH_CO285 is not set | 58 | # CONFIG_ARCH_CO285 is not set |
59 | # CONFIG_ARCH_EBSA110 is not set | 59 | # CONFIG_ARCH_EBSA110 is not set |
60 | # CONFIG_ARCH_CAMELOT is not set | ||
61 | # CONFIG_ARCH_FOOTBRIDGE is not set | 60 | # CONFIG_ARCH_FOOTBRIDGE is not set |
62 | # CONFIG_ARCH_INTEGRATOR is not set | 61 | # CONFIG_ARCH_INTEGRATOR is not set |
63 | # CONFIG_ARCH_IOP3XX is not set | 62 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/enp2611_defconfig b/arch/arm/configs/enp2611_defconfig index fd7c0042bcca..9592e3925c79 100644 --- a/arch/arm/configs/enp2611_defconfig +++ b/arch/arm/configs/enp2611_defconfig | |||
@@ -86,7 +86,6 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
86 | # CONFIG_ARCH_CLPS711X is not set | 86 | # CONFIG_ARCH_CLPS711X is not set |
87 | # CONFIG_ARCH_CO285 is not set | 87 | # CONFIG_ARCH_CO285 is not set |
88 | # CONFIG_ARCH_EBSA110 is not set | 88 | # CONFIG_ARCH_EBSA110 is not set |
89 | # CONFIG_ARCH_CAMELOT is not set | ||
90 | # CONFIG_ARCH_FOOTBRIDGE is not set | 89 | # CONFIG_ARCH_FOOTBRIDGE is not set |
91 | # CONFIG_ARCH_INTEGRATOR is not set | 90 | # CONFIG_ARCH_INTEGRATOR is not set |
92 | # CONFIG_ARCH_IOP3XX is not set | 91 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/ep80219_defconfig b/arch/arm/configs/ep80219_defconfig index 96342afa9c5f..fbe312e757cb 100644 --- a/arch/arm/configs/ep80219_defconfig +++ b/arch/arm/configs/ep80219_defconfig | |||
@@ -64,7 +64,6 @@ CONFIG_KMOD=y | |||
64 | # CONFIG_ARCH_CLPS711X is not set | 64 | # CONFIG_ARCH_CLPS711X is not set |
65 | # CONFIG_ARCH_CO285 is not set | 65 | # CONFIG_ARCH_CO285 is not set |
66 | # CONFIG_ARCH_EBSA110 is not set | 66 | # CONFIG_ARCH_EBSA110 is not set |
67 | # CONFIG_ARCH_CAMELOT is not set | ||
68 | # CONFIG_ARCH_FOOTBRIDGE is not set | 67 | # CONFIG_ARCH_FOOTBRIDGE is not set |
69 | # CONFIG_ARCH_INTEGRATOR is not set | 68 | # CONFIG_ARCH_INTEGRATOR is not set |
70 | CONFIG_ARCH_IOP3XX=y | 69 | CONFIG_ARCH_IOP3XX=y |
diff --git a/arch/arm/configs/epxa10db_defconfig b/arch/arm/configs/epxa10db_defconfig deleted file mode 100644 index 9fb8b58c4954..000000000000 --- a/arch/arm/configs/epxa10db_defconfig +++ /dev/null | |||
@@ -1,644 +0,0 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.12-rc1-bk2 | ||
4 | # Sun Mar 27 22:46:51 2005 | ||
5 | # | ||
6 | CONFIG_ARM=y | ||
7 | CONFIG_MMU=y | ||
8 | CONFIG_UID16=y | ||
9 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
10 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
11 | CONFIG_GENERIC_IOMAP=y | ||
12 | |||
13 | # | ||
14 | # Code maturity level options | ||
15 | # | ||
16 | CONFIG_EXPERIMENTAL=y | ||
17 | CONFIG_CLEAN_COMPILE=y | ||
18 | CONFIG_BROKEN_ON_SMP=y | ||
19 | |||
20 | # | ||
21 | # General setup | ||
22 | # | ||
23 | CONFIG_LOCALVERSION="" | ||
24 | CONFIG_SWAP=y | ||
25 | CONFIG_SYSVIPC=y | ||
26 | # CONFIG_POSIX_MQUEUE is not set | ||
27 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
28 | CONFIG_SYSCTL=y | ||
29 | # CONFIG_AUDIT is not set | ||
30 | # CONFIG_HOTPLUG is not set | ||
31 | CONFIG_KOBJECT_UEVENT=y | ||
32 | # CONFIG_IKCONFIG is not set | ||
33 | # CONFIG_EMBEDDED is not set | ||
34 | CONFIG_KALLSYMS=y | ||
35 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
36 | CONFIG_BASE_FULL=y | ||
37 | CONFIG_FUTEX=y | ||
38 | CONFIG_EPOLL=y | ||
39 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
40 | CONFIG_SHMEM=y | ||
41 | CONFIG_CC_ALIGN_FUNCTIONS=0 | ||
42 | CONFIG_CC_ALIGN_LABELS=0 | ||
43 | CONFIG_CC_ALIGN_LOOPS=0 | ||
44 | CONFIG_CC_ALIGN_JUMPS=0 | ||
45 | # CONFIG_TINY_SHMEM is not set | ||
46 | CONFIG_BASE_SMALL=0 | ||
47 | |||
48 | # | ||
49 | # Loadable module support | ||
50 | # | ||
51 | CONFIG_MODULES=y | ||
52 | CONFIG_MODULE_UNLOAD=y | ||
53 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
54 | CONFIG_OBSOLETE_MODPARM=y | ||
55 | # CONFIG_MODVERSIONS is not set | ||
56 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
57 | # CONFIG_KMOD is not set | ||
58 | |||
59 | # | ||
60 | # System Type | ||
61 | # | ||
62 | # CONFIG_ARCH_CLPS7500 is not set | ||
63 | # CONFIG_ARCH_CLPS711X is not set | ||
64 | # CONFIG_ARCH_CO285 is not set | ||
65 | # CONFIG_ARCH_EBSA110 is not set | ||
66 | CONFIG_ARCH_CAMELOT=y | ||
67 | # CONFIG_ARCH_FOOTBRIDGE is not set | ||
68 | # CONFIG_ARCH_INTEGRATOR is not set | ||
69 | # CONFIG_ARCH_IOP3XX is not set | ||
70 | # CONFIG_ARCH_IXP4XX is not set | ||
71 | # CONFIG_ARCH_IXP2000 is not set | ||
72 | # CONFIG_ARCH_L7200 is not set | ||
73 | # CONFIG_ARCH_PXA is not set | ||
74 | # CONFIG_ARCH_RPC is not set | ||
75 | # CONFIG_ARCH_SA1100 is not set | ||
76 | # CONFIG_ARCH_S3C2410 is not set | ||
77 | # CONFIG_ARCH_SHARK is not set | ||
78 | # CONFIG_ARCH_LH7A40X is not set | ||
79 | # CONFIG_ARCH_OMAP is not set | ||
80 | # CONFIG_ARCH_VERSATILE is not set | ||
81 | # CONFIG_ARCH_IMX is not set | ||
82 | # CONFIG_ARCH_H720X is not set | ||
83 | |||
84 | # | ||
85 | # Epxa10db | ||
86 | # | ||
87 | |||
88 | # | ||
89 | # PLD hotswap support | ||
90 | # | ||
91 | CONFIG_PLD=y | ||
92 | # CONFIG_PLD_HOTSWAP is not set | ||
93 | |||
94 | # | ||
95 | # Processor Type | ||
96 | # | ||
97 | CONFIG_CPU_32=y | ||
98 | CONFIG_CPU_ARM922T=y | ||
99 | CONFIG_CPU_32v4=y | ||
100 | CONFIG_CPU_ABRT_EV4T=y | ||
101 | CONFIG_CPU_CACHE_V4WT=y | ||
102 | CONFIG_CPU_CACHE_VIVT=y | ||
103 | CONFIG_CPU_COPY_V4WB=y | ||
104 | CONFIG_CPU_TLB_V4WBI=y | ||
105 | |||
106 | # | ||
107 | # Processor Features | ||
108 | # | ||
109 | # CONFIG_ARM_THUMB is not set | ||
110 | # CONFIG_CPU_ICACHE_DISABLE is not set | ||
111 | # CONFIG_CPU_DCACHE_DISABLE is not set | ||
112 | # CONFIG_CPU_DCACHE_WRITETHROUGH is not set | ||
113 | |||
114 | # | ||
115 | # Bus support | ||
116 | # | ||
117 | |||
118 | # | ||
119 | # PCCARD (PCMCIA/CardBus) support | ||
120 | # | ||
121 | # CONFIG_PCCARD is not set | ||
122 | |||
123 | # | ||
124 | # Kernel Features | ||
125 | # | ||
126 | # CONFIG_PREEMPT is not set | ||
127 | CONFIG_ALIGNMENT_TRAP=y | ||
128 | |||
129 | # | ||
130 | # Boot options | ||
131 | # | ||
132 | CONFIG_ZBOOT_ROM_TEXT=0x0 | ||
133 | CONFIG_ZBOOT_ROM_BSS=0x0 | ||
134 | CONFIG_CMDLINE="mem=32M console=ttyUA0,115200 initrd=0x00200000,8M root=/dev/ram0 rw" | ||
135 | # CONFIG_XIP_KERNEL is not set | ||
136 | |||
137 | # | ||
138 | # Floating point emulation | ||
139 | # | ||
140 | |||
141 | # | ||
142 | # At least one emulation must be selected | ||
143 | # | ||
144 | CONFIG_FPE_NWFPE=y | ||
145 | # CONFIG_FPE_NWFPE_XP is not set | ||
146 | # CONFIG_FPE_FASTFPE is not set | ||
147 | |||
148 | # | ||
149 | # Userspace binary formats | ||
150 | # | ||
151 | CONFIG_BINFMT_ELF=y | ||
152 | # CONFIG_BINFMT_AOUT is not set | ||
153 | # CONFIG_BINFMT_MISC is not set | ||
154 | # CONFIG_ARTHUR is not set | ||
155 | |||
156 | # | ||
157 | # Power management options | ||
158 | # | ||
159 | # CONFIG_PM is not set | ||
160 | |||
161 | # | ||
162 | # Device Drivers | ||
163 | # | ||
164 | |||
165 | # | ||
166 | # Generic Driver Options | ||
167 | # | ||
168 | CONFIG_STANDALONE=y | ||
169 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
170 | # CONFIG_FW_LOADER is not set | ||
171 | |||
172 | # | ||
173 | # Memory Technology Devices (MTD) | ||
174 | # | ||
175 | # CONFIG_MTD is not set | ||
176 | |||
177 | # | ||
178 | # Parallel port support | ||
179 | # | ||
180 | # CONFIG_PARPORT is not set | ||
181 | |||
182 | # | ||
183 | # Plug and Play support | ||
184 | # | ||
185 | |||
186 | # | ||
187 | # Block devices | ||
188 | # | ||
189 | # CONFIG_BLK_DEV_FD is not set | ||
190 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
191 | CONFIG_BLK_DEV_LOOP=y | ||
192 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
193 | # CONFIG_BLK_DEV_NBD is not set | ||
194 | CONFIG_BLK_DEV_RAM=y | ||
195 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
196 | CONFIG_BLK_DEV_RAM_SIZE=8192 | ||
197 | CONFIG_BLK_DEV_INITRD=y | ||
198 | CONFIG_INITRAMFS_SOURCE="" | ||
199 | # CONFIG_CDROM_PKTCDVD is not set | ||
200 | |||
201 | # | ||
202 | # IO Schedulers | ||
203 | # | ||
204 | CONFIG_IOSCHED_NOOP=y | ||
205 | CONFIG_IOSCHED_AS=y | ||
206 | CONFIG_IOSCHED_DEADLINE=y | ||
207 | CONFIG_IOSCHED_CFQ=y | ||
208 | # CONFIG_ATA_OVER_ETH is not set | ||
209 | |||
210 | # | ||
211 | # SCSI device support | ||
212 | # | ||
213 | # CONFIG_SCSI is not set | ||
214 | |||
215 | # | ||
216 | # Multi-device support (RAID and LVM) | ||
217 | # | ||
218 | # CONFIG_MD is not set | ||
219 | |||
220 | # | ||
221 | # Fusion MPT device support | ||
222 | # | ||
223 | |||
224 | # | ||
225 | # IEEE 1394 (FireWire) support | ||
226 | # | ||
227 | |||
228 | # | ||
229 | # I2O device support | ||
230 | # | ||
231 | |||
232 | # | ||
233 | # Networking support | ||
234 | # | ||
235 | CONFIG_NET=y | ||
236 | |||
237 | # | ||
238 | # Networking options | ||
239 | # | ||
240 | CONFIG_PACKET=y | ||
241 | # CONFIG_PACKET_MMAP is not set | ||
242 | # CONFIG_NETLINK_DEV is not set | ||
243 | CONFIG_UNIX=y | ||
244 | # CONFIG_NET_KEY is not set | ||
245 | CONFIG_INET=y | ||
246 | CONFIG_IP_MULTICAST=y | ||
247 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
248 | CONFIG_IP_PNP=y | ||
249 | # CONFIG_IP_PNP_DHCP is not set | ||
250 | # CONFIG_IP_PNP_BOOTP is not set | ||
251 | # CONFIG_IP_PNP_RARP is not set | ||
252 | # CONFIG_NET_IPIP is not set | ||
253 | # CONFIG_NET_IPGRE is not set | ||
254 | # CONFIG_IP_MROUTE is not set | ||
255 | # CONFIG_ARPD is not set | ||
256 | # CONFIG_SYN_COOKIES is not set | ||
257 | # CONFIG_INET_AH is not set | ||
258 | # CONFIG_INET_ESP is not set | ||
259 | # CONFIG_INET_IPCOMP is not set | ||
260 | # CONFIG_INET_TUNNEL is not set | ||
261 | # CONFIG_IP_TCPDIAG is not set | ||
262 | # CONFIG_IP_TCPDIAG_IPV6 is not set | ||
263 | # CONFIG_IPV6 is not set | ||
264 | # CONFIG_NETFILTER is not set | ||
265 | |||
266 | # | ||
267 | # SCTP Configuration (EXPERIMENTAL) | ||
268 | # | ||
269 | # CONFIG_IP_SCTP is not set | ||
270 | # CONFIG_ATM is not set | ||
271 | # CONFIG_BRIDGE is not set | ||
272 | # CONFIG_VLAN_8021Q is not set | ||
273 | # CONFIG_DECNET is not set | ||
274 | # CONFIG_LLC2 is not set | ||
275 | # CONFIG_IPX is not set | ||
276 | # CONFIG_ATALK is not set | ||
277 | # CONFIG_X25 is not set | ||
278 | # CONFIG_LAPB is not set | ||
279 | # CONFIG_NET_DIVERT is not set | ||
280 | # CONFIG_ECONET is not set | ||
281 | # CONFIG_WAN_ROUTER is not set | ||
282 | |||
283 | # | ||
284 | # QoS and/or fair queueing | ||
285 | # | ||
286 | # CONFIG_NET_SCHED is not set | ||
287 | # CONFIG_NET_CLS_ROUTE is not set | ||
288 | |||
289 | # | ||
290 | # Network testing | ||
291 | # | ||
292 | # CONFIG_NET_PKTGEN is not set | ||
293 | # CONFIG_NETPOLL is not set | ||
294 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
295 | # CONFIG_HAMRADIO is not set | ||
296 | # CONFIG_IRDA is not set | ||
297 | # CONFIG_BT is not set | ||
298 | CONFIG_NETDEVICES=y | ||
299 | # CONFIG_DUMMY is not set | ||
300 | # CONFIG_BONDING is not set | ||
301 | # CONFIG_EQUALIZER is not set | ||
302 | # CONFIG_TUN is not set | ||
303 | |||
304 | # | ||
305 | # Ethernet (10 or 100Mbit) | ||
306 | # | ||
307 | # CONFIG_NET_ETHERNET is not set | ||
308 | |||
309 | # | ||
310 | # Ethernet (1000 Mbit) | ||
311 | # | ||
312 | |||
313 | # | ||
314 | # Ethernet (10000 Mbit) | ||
315 | # | ||
316 | |||
317 | # | ||
318 | # Token Ring devices | ||
319 | # | ||
320 | |||
321 | # | ||
322 | # Wireless LAN (non-hamradio) | ||
323 | # | ||
324 | # CONFIG_NET_RADIO is not set | ||
325 | |||
326 | # | ||
327 | # Wan interfaces | ||
328 | # | ||
329 | # CONFIG_WAN is not set | ||
330 | CONFIG_PPP=y | ||
331 | CONFIG_PPP_MULTILINK=y | ||
332 | # CONFIG_PPP_FILTER is not set | ||
333 | CONFIG_PPP_ASYNC=y | ||
334 | CONFIG_PPP_SYNC_TTY=y | ||
335 | CONFIG_PPP_DEFLATE=y | ||
336 | # CONFIG_PPP_BSDCOMP is not set | ||
337 | # CONFIG_PPPOE is not set | ||
338 | # CONFIG_SLIP is not set | ||
339 | # CONFIG_SHAPER is not set | ||
340 | # CONFIG_NETCONSOLE is not set | ||
341 | |||
342 | # | ||
343 | # ISDN subsystem | ||
344 | # | ||
345 | # CONFIG_ISDN is not set | ||
346 | |||
347 | # | ||
348 | # Input device support | ||
349 | # | ||
350 | CONFIG_INPUT=y | ||
351 | |||
352 | # | ||
353 | # Userland interfaces | ||
354 | # | ||
355 | CONFIG_INPUT_MOUSEDEV=y | ||
356 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
357 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
358 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
359 | # CONFIG_INPUT_JOYDEV is not set | ||
360 | # CONFIG_INPUT_TSDEV is not set | ||
361 | # CONFIG_INPUT_EVDEV is not set | ||
362 | # CONFIG_INPUT_EVBUG is not set | ||
363 | |||
364 | # | ||
365 | # Input Device Drivers | ||
366 | # | ||
367 | # CONFIG_INPUT_KEYBOARD is not set | ||
368 | # CONFIG_INPUT_MOUSE is not set | ||
369 | # CONFIG_INPUT_JOYSTICK is not set | ||
370 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
371 | # CONFIG_INPUT_MISC is not set | ||
372 | |||
373 | # | ||
374 | # Hardware I/O ports | ||
375 | # | ||
376 | CONFIG_SERIO=y | ||
377 | CONFIG_SERIO_SERPORT=y | ||
378 | # CONFIG_SERIO_RAW is not set | ||
379 | # CONFIG_GAMEPORT is not set | ||
380 | CONFIG_SOUND_GAMEPORT=y | ||
381 | |||
382 | # | ||
383 | # Character devices | ||
384 | # | ||
385 | CONFIG_VT=y | ||
386 | CONFIG_VT_CONSOLE=y | ||
387 | CONFIG_HW_CONSOLE=y | ||
388 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
389 | |||
390 | # | ||
391 | # Serial drivers | ||
392 | # | ||
393 | # CONFIG_SERIAL_8250 is not set | ||
394 | |||
395 | # | ||
396 | # Non-8250 serial port support | ||
397 | # | ||
398 | CONFIG_SERIAL_UART00=y | ||
399 | CONFIG_SERIAL_UART00_CONSOLE=y | ||
400 | CONFIG_SERIAL_CORE=y | ||
401 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
402 | CONFIG_UNIX98_PTYS=y | ||
403 | CONFIG_LEGACY_PTYS=y | ||
404 | CONFIG_LEGACY_PTY_COUNT=256 | ||
405 | |||
406 | # | ||
407 | # IPMI | ||
408 | # | ||
409 | # CONFIG_IPMI_HANDLER is not set | ||
410 | |||
411 | # | ||
412 | # Watchdog Cards | ||
413 | # | ||
414 | # CONFIG_WATCHDOG is not set | ||
415 | # CONFIG_NVRAM is not set | ||
416 | # CONFIG_RTC is not set | ||
417 | # CONFIG_DTLK is not set | ||
418 | # CONFIG_R3964 is not set | ||
419 | |||
420 | # | ||
421 | # Ftape, the floppy tape device driver | ||
422 | # | ||
423 | # CONFIG_DRM is not set | ||
424 | # CONFIG_RAW_DRIVER is not set | ||
425 | |||
426 | # | ||
427 | # TPM devices | ||
428 | # | ||
429 | # CONFIG_TCG_TPM is not set | ||
430 | |||
431 | # | ||
432 | # I2C support | ||
433 | # | ||
434 | # CONFIG_I2C is not set | ||
435 | |||
436 | # | ||
437 | # Misc devices | ||
438 | # | ||
439 | |||
440 | # | ||
441 | # Multimedia devices | ||
442 | # | ||
443 | # CONFIG_VIDEO_DEV is not set | ||
444 | |||
445 | # | ||
446 | # Digital Video Broadcasting Devices | ||
447 | # | ||
448 | # CONFIG_DVB is not set | ||
449 | |||
450 | # | ||
451 | # Graphics support | ||
452 | # | ||
453 | # CONFIG_FB is not set | ||
454 | |||
455 | # | ||
456 | # Console display driver support | ||
457 | # | ||
458 | # CONFIG_VGA_CONSOLE is not set | ||
459 | CONFIG_DUMMY_CONSOLE=y | ||
460 | |||
461 | # | ||
462 | # Sound | ||
463 | # | ||
464 | # CONFIG_SOUND is not set | ||
465 | |||
466 | # | ||
467 | # USB support | ||
468 | # | ||
469 | CONFIG_USB_ARCH_HAS_HCD=y | ||
470 | # CONFIG_USB_ARCH_HAS_OHCI is not set | ||
471 | # CONFIG_USB is not set | ||
472 | |||
473 | # | ||
474 | # USB Gadget Support | ||
475 | # | ||
476 | # CONFIG_USB_GADGET is not set | ||
477 | |||
478 | # | ||
479 | # MMC/SD Card support | ||
480 | # | ||
481 | # CONFIG_MMC is not set | ||
482 | |||
483 | # | ||
484 | # File systems | ||
485 | # | ||
486 | CONFIG_EXT2_FS=y | ||
487 | # CONFIG_EXT2_FS_XATTR is not set | ||
488 | # CONFIG_EXT3_FS is not set | ||
489 | # CONFIG_JBD is not set | ||
490 | # CONFIG_REISERFS_FS is not set | ||
491 | # CONFIG_JFS_FS is not set | ||
492 | |||
493 | # | ||
494 | # XFS support | ||
495 | # | ||
496 | # CONFIG_XFS_FS is not set | ||
497 | # CONFIG_MINIX_FS is not set | ||
498 | # CONFIG_ROMFS_FS is not set | ||
499 | # CONFIG_QUOTA is not set | ||
500 | CONFIG_DNOTIFY=y | ||
501 | CONFIG_AUTOFS_FS=y | ||
502 | CONFIG_AUTOFS4_FS=y | ||
503 | |||
504 | # | ||
505 | # CD-ROM/DVD Filesystems | ||
506 | # | ||
507 | # CONFIG_ISO9660_FS is not set | ||
508 | # CONFIG_UDF_FS is not set | ||
509 | |||
510 | # | ||
511 | # DOS/FAT/NT Filesystems | ||
512 | # | ||
513 | # CONFIG_MSDOS_FS is not set | ||
514 | # CONFIG_VFAT_FS is not set | ||
515 | # CONFIG_NTFS_FS is not set | ||
516 | |||
517 | # | ||
518 | # Pseudo filesystems | ||
519 | # | ||
520 | CONFIG_PROC_FS=y | ||
521 | CONFIG_SYSFS=y | ||
522 | # CONFIG_DEVFS_FS is not set | ||
523 | # CONFIG_DEVPTS_FS_XATTR is not set | ||
524 | # CONFIG_TMPFS is not set | ||
525 | # CONFIG_HUGETLB_PAGE is not set | ||
526 | CONFIG_RAMFS=y | ||
527 | |||
528 | # | ||
529 | # Miscellaneous filesystems | ||
530 | # | ||
531 | # CONFIG_ADFS_FS is not set | ||
532 | # CONFIG_AFFS_FS is not set | ||
533 | # CONFIG_HFS_FS is not set | ||
534 | # CONFIG_HFSPLUS_FS is not set | ||
535 | # CONFIG_BEFS_FS is not set | ||
536 | # CONFIG_BFS_FS is not set | ||
537 | # CONFIG_EFS_FS is not set | ||
538 | # CONFIG_CRAMFS is not set | ||
539 | # CONFIG_VXFS_FS is not set | ||
540 | # CONFIG_HPFS_FS is not set | ||
541 | # CONFIG_QNX4FS_FS is not set | ||
542 | # CONFIG_SYSV_FS is not set | ||
543 | # CONFIG_UFS_FS is not set | ||
544 | |||
545 | # | ||
546 | # Network File Systems | ||
547 | # | ||
548 | # CONFIG_NFS_FS is not set | ||
549 | # CONFIG_NFSD is not set | ||
550 | CONFIG_SMB_FS=y | ||
551 | # CONFIG_SMB_NLS_DEFAULT is not set | ||
552 | # CONFIG_CIFS is not set | ||
553 | # CONFIG_NCP_FS is not set | ||
554 | # CONFIG_CODA_FS is not set | ||
555 | # CONFIG_AFS_FS is not set | ||
556 | |||
557 | # | ||
558 | # Partition Types | ||
559 | # | ||
560 | # CONFIG_PARTITION_ADVANCED is not set | ||
561 | CONFIG_MSDOS_PARTITION=y | ||
562 | |||
563 | # | ||
564 | # Native Language Support | ||
565 | # | ||
566 | CONFIG_NLS=y | ||
567 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
568 | # CONFIG_NLS_CODEPAGE_437 is not set | ||
569 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
570 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
571 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
572 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
573 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
574 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
575 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
576 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
577 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
578 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
579 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
580 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
581 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
582 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
583 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
584 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
585 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
586 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
587 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
588 | # CONFIG_NLS_ISO8859_8 is not set | ||
589 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
590 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
591 | # CONFIG_NLS_ASCII is not set | ||
592 | # CONFIG_NLS_ISO8859_1 is not set | ||
593 | # CONFIG_NLS_ISO8859_2 is not set | ||
594 | # CONFIG_NLS_ISO8859_3 is not set | ||
595 | # CONFIG_NLS_ISO8859_4 is not set | ||
596 | # CONFIG_NLS_ISO8859_5 is not set | ||
597 | # CONFIG_NLS_ISO8859_6 is not set | ||
598 | # CONFIG_NLS_ISO8859_7 is not set | ||
599 | # CONFIG_NLS_ISO8859_9 is not set | ||
600 | # CONFIG_NLS_ISO8859_13 is not set | ||
601 | # CONFIG_NLS_ISO8859_14 is not set | ||
602 | # CONFIG_NLS_ISO8859_15 is not set | ||
603 | # CONFIG_NLS_KOI8_R is not set | ||
604 | # CONFIG_NLS_KOI8_U is not set | ||
605 | # CONFIG_NLS_UTF8 is not set | ||
606 | |||
607 | # | ||
608 | # Profiling support | ||
609 | # | ||
610 | # CONFIG_PROFILING is not set | ||
611 | |||
612 | # | ||
613 | # Kernel hacking | ||
614 | # | ||
615 | # CONFIG_PRINTK_TIME is not set | ||
616 | # CONFIG_DEBUG_KERNEL is not set | ||
617 | CONFIG_LOG_BUF_SHIFT=14 | ||
618 | CONFIG_DEBUG_BUGVERBOSE=y | ||
619 | CONFIG_FRAME_POINTER=y | ||
620 | # CONFIG_DEBUG_USER is not set | ||
621 | |||
622 | # | ||
623 | # Security options | ||
624 | # | ||
625 | # CONFIG_KEYS is not set | ||
626 | # CONFIG_SECURITY is not set | ||
627 | |||
628 | # | ||
629 | # Cryptographic options | ||
630 | # | ||
631 | # CONFIG_CRYPTO is not set | ||
632 | |||
633 | # | ||
634 | # Hardware crypto devices | ||
635 | # | ||
636 | |||
637 | # | ||
638 | # Library routines | ||
639 | # | ||
640 | CONFIG_CRC_CCITT=y | ||
641 | CONFIG_CRC32=y | ||
642 | # CONFIG_LIBCRC32C is not set | ||
643 | CONFIG_ZLIB_INFLATE=y | ||
644 | CONFIG_ZLIB_DEFLATE=y | ||
diff --git a/arch/arm/configs/footbridge_defconfig b/arch/arm/configs/footbridge_defconfig index 9737c4850721..2a612d23120b 100644 --- a/arch/arm/configs/footbridge_defconfig +++ b/arch/arm/configs/footbridge_defconfig | |||
@@ -63,7 +63,6 @@ CONFIG_KMOD=y | |||
63 | # CONFIG_ARCH_CLPS711X is not set | 63 | # CONFIG_ARCH_CLPS711X is not set |
64 | # CONFIG_ARCH_CO285 is not set | 64 | # CONFIG_ARCH_CO285 is not set |
65 | # CONFIG_ARCH_EBSA110 is not set | 65 | # CONFIG_ARCH_EBSA110 is not set |
66 | # CONFIG_ARCH_CAMELOT is not set | ||
67 | CONFIG_ARCH_FOOTBRIDGE=y | 66 | CONFIG_ARCH_FOOTBRIDGE=y |
68 | # CONFIG_ARCH_INTEGRATOR is not set | 67 | # CONFIG_ARCH_INTEGRATOR is not set |
69 | # CONFIG_ARCH_IOP3XX is not set | 68 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/fortunet_defconfig b/arch/arm/configs/fortunet_defconfig index b6f688d850dc..65dc73a88c43 100644 --- a/arch/arm/configs/fortunet_defconfig +++ b/arch/arm/configs/fortunet_defconfig | |||
@@ -57,7 +57,6 @@ CONFIG_BASE_SMALL=0 | |||
57 | CONFIG_ARCH_CLPS711X=y | 57 | CONFIG_ARCH_CLPS711X=y |
58 | # CONFIG_ARCH_CO285 is not set | 58 | # CONFIG_ARCH_CO285 is not set |
59 | # CONFIG_ARCH_EBSA110 is not set | 59 | # CONFIG_ARCH_EBSA110 is not set |
60 | # CONFIG_ARCH_CAMELOT is not set | ||
61 | # CONFIG_ARCH_FOOTBRIDGE is not set | 60 | # CONFIG_ARCH_FOOTBRIDGE is not set |
62 | # CONFIG_ARCH_INTEGRATOR is not set | 61 | # CONFIG_ARCH_INTEGRATOR is not set |
63 | # CONFIG_ARCH_IOP3XX is not set | 62 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/h3600_defconfig b/arch/arm/configs/h3600_defconfig index b9de07de80fe..7a0da0b7facb 100644 --- a/arch/arm/configs/h3600_defconfig +++ b/arch/arm/configs/h3600_defconfig | |||
@@ -65,7 +65,6 @@ CONFIG_OBSOLETE_MODPARM=y | |||
65 | # CONFIG_ARCH_CLPS711X is not set | 65 | # CONFIG_ARCH_CLPS711X is not set |
66 | # CONFIG_ARCH_CO285 is not set | 66 | # CONFIG_ARCH_CO285 is not set |
67 | # CONFIG_ARCH_EBSA110 is not set | 67 | # CONFIG_ARCH_EBSA110 is not set |
68 | # CONFIG_ARCH_CAMELOT is not set | ||
69 | # CONFIG_ARCH_FOOTBRIDGE is not set | 68 | # CONFIG_ARCH_FOOTBRIDGE is not set |
70 | # CONFIG_ARCH_INTEGRATOR is not set | 69 | # CONFIG_ARCH_INTEGRATOR is not set |
71 | # CONFIG_ARCH_IOP3XX is not set | 70 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/h7201_defconfig b/arch/arm/configs/h7201_defconfig index 39c13a354541..116920aecef7 100644 --- a/arch/arm/configs/h7201_defconfig +++ b/arch/arm/configs/h7201_defconfig | |||
@@ -60,7 +60,6 @@ CONFIG_KMOD=y | |||
60 | # CONFIG_ARCH_CLPS711X is not set | 60 | # CONFIG_ARCH_CLPS711X is not set |
61 | # CONFIG_ARCH_CO285 is not set | 61 | # CONFIG_ARCH_CO285 is not set |
62 | # CONFIG_ARCH_EBSA110 is not set | 62 | # CONFIG_ARCH_EBSA110 is not set |
63 | # CONFIG_ARCH_CAMELOT is not set | ||
64 | # CONFIG_ARCH_FOOTBRIDGE is not set | 63 | # CONFIG_ARCH_FOOTBRIDGE is not set |
65 | # CONFIG_ARCH_INTEGRATOR is not set | 64 | # CONFIG_ARCH_INTEGRATOR is not set |
66 | # CONFIG_ARCH_IOP3XX is not set | 65 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/h7202_defconfig b/arch/arm/configs/h7202_defconfig index fbf5c244c696..9d62ed16bf57 100644 --- a/arch/arm/configs/h7202_defconfig +++ b/arch/arm/configs/h7202_defconfig | |||
@@ -63,7 +63,6 @@ CONFIG_KMOD=y | |||
63 | # CONFIG_ARCH_CLPS711X is not set | 63 | # CONFIG_ARCH_CLPS711X is not set |
64 | # CONFIG_ARCH_CO285 is not set | 64 | # CONFIG_ARCH_CO285 is not set |
65 | # CONFIG_ARCH_EBSA110 is not set | 65 | # CONFIG_ARCH_EBSA110 is not set |
66 | # CONFIG_ARCH_CAMELOT is not set | ||
67 | # CONFIG_ARCH_FOOTBRIDGE is not set | 66 | # CONFIG_ARCH_FOOTBRIDGE is not set |
68 | # CONFIG_ARCH_INTEGRATOR is not set | 67 | # CONFIG_ARCH_INTEGRATOR is not set |
69 | # CONFIG_ARCH_IOP3XX is not set | 68 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/hackkit_defconfig b/arch/arm/configs/hackkit_defconfig index fb41a36a5a68..a45b57582b86 100644 --- a/arch/arm/configs/hackkit_defconfig +++ b/arch/arm/configs/hackkit_defconfig | |||
@@ -66,7 +66,6 @@ CONFIG_KMOD=y | |||
66 | # CONFIG_ARCH_CLPS711X is not set | 66 | # CONFIG_ARCH_CLPS711X is not set |
67 | # CONFIG_ARCH_CO285 is not set | 67 | # CONFIG_ARCH_CO285 is not set |
68 | # CONFIG_ARCH_EBSA110 is not set | 68 | # CONFIG_ARCH_EBSA110 is not set |
69 | # CONFIG_ARCH_CAMELOT is not set | ||
70 | # CONFIG_ARCH_FOOTBRIDGE is not set | 69 | # CONFIG_ARCH_FOOTBRIDGE is not set |
71 | # CONFIG_ARCH_INTEGRATOR is not set | 70 | # CONFIG_ARCH_INTEGRATOR is not set |
72 | # CONFIG_ARCH_IOP3XX is not set | 71 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/integrator_defconfig b/arch/arm/configs/integrator_defconfig index 27ee76825254..d1ba7fdde818 100644 --- a/arch/arm/configs/integrator_defconfig +++ b/arch/arm/configs/integrator_defconfig | |||
@@ -65,7 +65,6 @@ CONFIG_KMOD=y | |||
65 | # CONFIG_ARCH_CLPS711X is not set | 65 | # CONFIG_ARCH_CLPS711X is not set |
66 | # CONFIG_ARCH_CO285 is not set | 66 | # CONFIG_ARCH_CO285 is not set |
67 | # CONFIG_ARCH_EBSA110 is not set | 67 | # CONFIG_ARCH_EBSA110 is not set |
68 | # CONFIG_ARCH_CAMELOT is not set | ||
69 | # CONFIG_ARCH_FOOTBRIDGE is not set | 68 | # CONFIG_ARCH_FOOTBRIDGE is not set |
70 | CONFIG_ARCH_INTEGRATOR=y | 69 | CONFIG_ARCH_INTEGRATOR=y |
71 | # CONFIG_ARCH_IOP3XX is not set | 70 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/iq31244_defconfig b/arch/arm/configs/iq31244_defconfig index e71443b97390..c07628ceaf0c 100644 --- a/arch/arm/configs/iq31244_defconfig +++ b/arch/arm/configs/iq31244_defconfig | |||
@@ -65,7 +65,6 @@ CONFIG_KMOD=y | |||
65 | # CONFIG_ARCH_CLPS711X is not set | 65 | # CONFIG_ARCH_CLPS711X is not set |
66 | # CONFIG_ARCH_CO285 is not set | 66 | # CONFIG_ARCH_CO285 is not set |
67 | # CONFIG_ARCH_EBSA110 is not set | 67 | # CONFIG_ARCH_EBSA110 is not set |
68 | # CONFIG_ARCH_CAMELOT is not set | ||
69 | # CONFIG_ARCH_FOOTBRIDGE is not set | 68 | # CONFIG_ARCH_FOOTBRIDGE is not set |
70 | # CONFIG_ARCH_INTEGRATOR is not set | 69 | # CONFIG_ARCH_INTEGRATOR is not set |
71 | CONFIG_ARCH_IOP3XX=y | 70 | CONFIG_ARCH_IOP3XX=y |
diff --git a/arch/arm/configs/iq80321_defconfig b/arch/arm/configs/iq80321_defconfig index ab5ad23b27da..18fa1615fdfd 100644 --- a/arch/arm/configs/iq80321_defconfig +++ b/arch/arm/configs/iq80321_defconfig | |||
@@ -64,7 +64,6 @@ CONFIG_KMOD=y | |||
64 | # CONFIG_ARCH_CLPS711X is not set | 64 | # CONFIG_ARCH_CLPS711X is not set |
65 | # CONFIG_ARCH_CO285 is not set | 65 | # CONFIG_ARCH_CO285 is not set |
66 | # CONFIG_ARCH_EBSA110 is not set | 66 | # CONFIG_ARCH_EBSA110 is not set |
67 | # CONFIG_ARCH_CAMELOT is not set | ||
68 | # CONFIG_ARCH_FOOTBRIDGE is not set | 67 | # CONFIG_ARCH_FOOTBRIDGE is not set |
69 | # CONFIG_ARCH_INTEGRATOR is not set | 68 | # CONFIG_ARCH_INTEGRATOR is not set |
70 | CONFIG_ARCH_IOP3XX=y | 69 | CONFIG_ARCH_IOP3XX=y |
diff --git a/arch/arm/configs/iq80331_defconfig b/arch/arm/configs/iq80331_defconfig index bb536133ef87..f50035de1fff 100644 --- a/arch/arm/configs/iq80331_defconfig +++ b/arch/arm/configs/iq80331_defconfig | |||
@@ -64,7 +64,6 @@ CONFIG_KMOD=y | |||
64 | # CONFIG_ARCH_CLPS711X is not set | 64 | # CONFIG_ARCH_CLPS711X is not set |
65 | # CONFIG_ARCH_CO285 is not set | 65 | # CONFIG_ARCH_CO285 is not set |
66 | # CONFIG_ARCH_EBSA110 is not set | 66 | # CONFIG_ARCH_EBSA110 is not set |
67 | # CONFIG_ARCH_CAMELOT is not set | ||
68 | # CONFIG_ARCH_FOOTBRIDGE is not set | 67 | # CONFIG_ARCH_FOOTBRIDGE is not set |
69 | # CONFIG_ARCH_INTEGRATOR is not set | 68 | # CONFIG_ARCH_INTEGRATOR is not set |
70 | CONFIG_ARCH_IOP3XX=y | 69 | CONFIG_ARCH_IOP3XX=y |
diff --git a/arch/arm/configs/iq80332_defconfig b/arch/arm/configs/iq80332_defconfig index 305f01f3a729..18b3f372ed68 100644 --- a/arch/arm/configs/iq80332_defconfig +++ b/arch/arm/configs/iq80332_defconfig | |||
@@ -64,7 +64,6 @@ CONFIG_KMOD=y | |||
64 | # CONFIG_ARCH_CLPS711X is not set | 64 | # CONFIG_ARCH_CLPS711X is not set |
65 | # CONFIG_ARCH_CO285 is not set | 65 | # CONFIG_ARCH_CO285 is not set |
66 | # CONFIG_ARCH_EBSA110 is not set | 66 | # CONFIG_ARCH_EBSA110 is not set |
67 | # CONFIG_ARCH_CAMELOT is not set | ||
68 | # CONFIG_ARCH_FOOTBRIDGE is not set | 67 | # CONFIG_ARCH_FOOTBRIDGE is not set |
69 | # CONFIG_ARCH_INTEGRATOR is not set | 68 | # CONFIG_ARCH_INTEGRATOR is not set |
70 | CONFIG_ARCH_IOP3XX=y | 69 | CONFIG_ARCH_IOP3XX=y |
diff --git a/arch/arm/configs/ixdp2400_defconfig b/arch/arm/configs/ixdp2400_defconfig index e6a4d2656fe5..d9d6bb86a6fa 100644 --- a/arch/arm/configs/ixdp2400_defconfig +++ b/arch/arm/configs/ixdp2400_defconfig | |||
@@ -86,7 +86,6 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
86 | # CONFIG_ARCH_CLPS711X is not set | 86 | # CONFIG_ARCH_CLPS711X is not set |
87 | # CONFIG_ARCH_CO285 is not set | 87 | # CONFIG_ARCH_CO285 is not set |
88 | # CONFIG_ARCH_EBSA110 is not set | 88 | # CONFIG_ARCH_EBSA110 is not set |
89 | # CONFIG_ARCH_CAMELOT is not set | ||
90 | # CONFIG_ARCH_FOOTBRIDGE is not set | 89 | # CONFIG_ARCH_FOOTBRIDGE is not set |
91 | # CONFIG_ARCH_INTEGRATOR is not set | 90 | # CONFIG_ARCH_INTEGRATOR is not set |
92 | # CONFIG_ARCH_IOP3XX is not set | 91 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/ixdp2401_defconfig b/arch/arm/configs/ixdp2401_defconfig index 5572cf95d5f8..2dc9d499c7d7 100644 --- a/arch/arm/configs/ixdp2401_defconfig +++ b/arch/arm/configs/ixdp2401_defconfig | |||
@@ -86,7 +86,6 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
86 | # CONFIG_ARCH_CLPS711X is not set | 86 | # CONFIG_ARCH_CLPS711X is not set |
87 | # CONFIG_ARCH_CO285 is not set | 87 | # CONFIG_ARCH_CO285 is not set |
88 | # CONFIG_ARCH_EBSA110 is not set | 88 | # CONFIG_ARCH_EBSA110 is not set |
89 | # CONFIG_ARCH_CAMELOT is not set | ||
90 | # CONFIG_ARCH_FOOTBRIDGE is not set | 89 | # CONFIG_ARCH_FOOTBRIDGE is not set |
91 | # CONFIG_ARCH_INTEGRATOR is not set | 90 | # CONFIG_ARCH_INTEGRATOR is not set |
92 | # CONFIG_ARCH_IOP3XX is not set | 91 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/ixdp2800_defconfig b/arch/arm/configs/ixdp2800_defconfig index 0fddbde85835..4248123815e9 100644 --- a/arch/arm/configs/ixdp2800_defconfig +++ b/arch/arm/configs/ixdp2800_defconfig | |||
@@ -86,7 +86,6 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
86 | # CONFIG_ARCH_CLPS711X is not set | 86 | # CONFIG_ARCH_CLPS711X is not set |
87 | # CONFIG_ARCH_CO285 is not set | 87 | # CONFIG_ARCH_CO285 is not set |
88 | # CONFIG_ARCH_EBSA110 is not set | 88 | # CONFIG_ARCH_EBSA110 is not set |
89 | # CONFIG_ARCH_CAMELOT is not set | ||
90 | # CONFIG_ARCH_FOOTBRIDGE is not set | 89 | # CONFIG_ARCH_FOOTBRIDGE is not set |
91 | # CONFIG_ARCH_INTEGRATOR is not set | 90 | # CONFIG_ARCH_INTEGRATOR is not set |
92 | # CONFIG_ARCH_IOP3XX is not set | 91 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/ixdp2801_defconfig b/arch/arm/configs/ixdp2801_defconfig index 89b9aa06aa91..ea8f4b478fa3 100644 --- a/arch/arm/configs/ixdp2801_defconfig +++ b/arch/arm/configs/ixdp2801_defconfig | |||
@@ -86,7 +86,6 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
86 | # CONFIG_ARCH_CLPS711X is not set | 86 | # CONFIG_ARCH_CLPS711X is not set |
87 | # CONFIG_ARCH_CO285 is not set | 87 | # CONFIG_ARCH_CO285 is not set |
88 | # CONFIG_ARCH_EBSA110 is not set | 88 | # CONFIG_ARCH_EBSA110 is not set |
89 | # CONFIG_ARCH_CAMELOT is not set | ||
90 | # CONFIG_ARCH_FOOTBRIDGE is not set | 89 | # CONFIG_ARCH_FOOTBRIDGE is not set |
91 | # CONFIG_ARCH_INTEGRATOR is not set | 90 | # CONFIG_ARCH_INTEGRATOR is not set |
92 | # CONFIG_ARCH_IOP3XX is not set | 91 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/ixp4xx_defconfig b/arch/arm/configs/ixp4xx_defconfig index 613afab62720..4975b914f923 100644 --- a/arch/arm/configs/ixp4xx_defconfig +++ b/arch/arm/configs/ixp4xx_defconfig | |||
@@ -85,7 +85,6 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
85 | # CONFIG_ARCH_CLPS711X is not set | 85 | # CONFIG_ARCH_CLPS711X is not set |
86 | # CONFIG_ARCH_CO285 is not set | 86 | # CONFIG_ARCH_CO285 is not set |
87 | # CONFIG_ARCH_EBSA110 is not set | 87 | # CONFIG_ARCH_EBSA110 is not set |
88 | # CONFIG_ARCH_CAMELOT is not set | ||
89 | # CONFIG_ARCH_FOOTBRIDGE is not set | 88 | # CONFIG_ARCH_FOOTBRIDGE is not set |
90 | # CONFIG_ARCH_INTEGRATOR is not set | 89 | # CONFIG_ARCH_INTEGRATOR is not set |
91 | # CONFIG_ARCH_IOP3XX is not set | 90 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/jornada720_defconfig b/arch/arm/configs/jornada720_defconfig index b88aeba82bc0..ad1048db96fb 100644 --- a/arch/arm/configs/jornada720_defconfig +++ b/arch/arm/configs/jornada720_defconfig | |||
@@ -63,7 +63,6 @@ CONFIG_KMOD=y | |||
63 | # CONFIG_ARCH_CLPS711X is not set | 63 | # CONFIG_ARCH_CLPS711X is not set |
64 | # CONFIG_ARCH_CO285 is not set | 64 | # CONFIG_ARCH_CO285 is not set |
65 | # CONFIG_ARCH_EBSA110 is not set | 65 | # CONFIG_ARCH_EBSA110 is not set |
66 | # CONFIG_ARCH_CAMELOT is not set | ||
67 | # CONFIG_ARCH_FOOTBRIDGE is not set | 66 | # CONFIG_ARCH_FOOTBRIDGE is not set |
68 | # CONFIG_ARCH_INTEGRATOR is not set | 67 | # CONFIG_ARCH_INTEGRATOR is not set |
69 | # CONFIG_ARCH_IOP3XX is not set | 68 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/lart_defconfig b/arch/arm/configs/lart_defconfig index 7033829ed145..c3a932844160 100644 --- a/arch/arm/configs/lart_defconfig +++ b/arch/arm/configs/lart_defconfig | |||
@@ -62,7 +62,6 @@ CONFIG_KMOD=y | |||
62 | # CONFIG_ARCH_CLPS711X is not set | 62 | # CONFIG_ARCH_CLPS711X is not set |
63 | # CONFIG_ARCH_CO285 is not set | 63 | # CONFIG_ARCH_CO285 is not set |
64 | # CONFIG_ARCH_EBSA110 is not set | 64 | # CONFIG_ARCH_EBSA110 is not set |
65 | # CONFIG_ARCH_CAMELOT is not set | ||
66 | # CONFIG_ARCH_FOOTBRIDGE is not set | 65 | # CONFIG_ARCH_FOOTBRIDGE is not set |
67 | # CONFIG_ARCH_INTEGRATOR is not set | 66 | # CONFIG_ARCH_INTEGRATOR is not set |
68 | # CONFIG_ARCH_IOP3XX is not set | 67 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/lpd7a400_defconfig b/arch/arm/configs/lpd7a400_defconfig index d64706d3ff35..67eaa26c2647 100644 --- a/arch/arm/configs/lpd7a400_defconfig +++ b/arch/arm/configs/lpd7a400_defconfig | |||
@@ -60,7 +60,6 @@ CONFIG_BASE_SMALL=0 | |||
60 | # CONFIG_ARCH_CLPS711X is not set | 60 | # CONFIG_ARCH_CLPS711X is not set |
61 | # CONFIG_ARCH_CO285 is not set | 61 | # CONFIG_ARCH_CO285 is not set |
62 | # CONFIG_ARCH_EBSA110 is not set | 62 | # CONFIG_ARCH_EBSA110 is not set |
63 | # CONFIG_ARCH_CAMELOT is not set | ||
64 | # CONFIG_ARCH_FOOTBRIDGE is not set | 63 | # CONFIG_ARCH_FOOTBRIDGE is not set |
65 | # CONFIG_ARCH_INTEGRATOR is not set | 64 | # CONFIG_ARCH_INTEGRATOR is not set |
66 | # CONFIG_ARCH_IOP3XX is not set | 65 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/lpd7a404_defconfig b/arch/arm/configs/lpd7a404_defconfig index 87cbedfb303f..208d591ebfce 100644 --- a/arch/arm/configs/lpd7a404_defconfig +++ b/arch/arm/configs/lpd7a404_defconfig | |||
@@ -60,7 +60,6 @@ CONFIG_BASE_SMALL=0 | |||
60 | # CONFIG_ARCH_CLPS711X is not set | 60 | # CONFIG_ARCH_CLPS711X is not set |
61 | # CONFIG_ARCH_CO285 is not set | 61 | # CONFIG_ARCH_CO285 is not set |
62 | # CONFIG_ARCH_EBSA110 is not set | 62 | # CONFIG_ARCH_EBSA110 is not set |
63 | # CONFIG_ARCH_CAMELOT is not set | ||
64 | # CONFIG_ARCH_FOOTBRIDGE is not set | 63 | # CONFIG_ARCH_FOOTBRIDGE is not set |
65 | # CONFIG_ARCH_INTEGRATOR is not set | 64 | # CONFIG_ARCH_INTEGRATOR is not set |
66 | # CONFIG_ARCH_IOP3XX is not set | 65 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/lubbock_defconfig b/arch/arm/configs/lubbock_defconfig index 4bc8717c6f57..81daadcbe0ba 100644 --- a/arch/arm/configs/lubbock_defconfig +++ b/arch/arm/configs/lubbock_defconfig | |||
@@ -63,7 +63,6 @@ CONFIG_OBSOLETE_MODPARM=y | |||
63 | # CONFIG_ARCH_CLPS711X is not set | 63 | # CONFIG_ARCH_CLPS711X is not set |
64 | # CONFIG_ARCH_CO285 is not set | 64 | # CONFIG_ARCH_CO285 is not set |
65 | # CONFIG_ARCH_EBSA110 is not set | 65 | # CONFIG_ARCH_EBSA110 is not set |
66 | # CONFIG_ARCH_CAMELOT is not set | ||
67 | # CONFIG_ARCH_FOOTBRIDGE is not set | 66 | # CONFIG_ARCH_FOOTBRIDGE is not set |
68 | # CONFIG_ARCH_INTEGRATOR is not set | 67 | # CONFIG_ARCH_INTEGRATOR is not set |
69 | # CONFIG_ARCH_IOP3XX is not set | 68 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/lusl7200_defconfig b/arch/arm/configs/lusl7200_defconfig index 3ca64cabc92c..42f6a77bc3c0 100644 --- a/arch/arm/configs/lusl7200_defconfig +++ b/arch/arm/configs/lusl7200_defconfig | |||
@@ -62,7 +62,6 @@ CONFIG_KMOD=y | |||
62 | # CONFIG_ARCH_CLPS711X is not set | 62 | # CONFIG_ARCH_CLPS711X is not set |
63 | # CONFIG_ARCH_CO285 is not set | 63 | # CONFIG_ARCH_CO285 is not set |
64 | # CONFIG_ARCH_EBSA110 is not set | 64 | # CONFIG_ARCH_EBSA110 is not set |
65 | # CONFIG_ARCH_CAMELOT is not set | ||
66 | # CONFIG_ARCH_FOOTBRIDGE is not set | 65 | # CONFIG_ARCH_FOOTBRIDGE is not set |
67 | # CONFIG_ARCH_INTEGRATOR is not set | 66 | # CONFIG_ARCH_INTEGRATOR is not set |
68 | # CONFIG_ARCH_IOP3XX is not set | 67 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/mainstone_defconfig b/arch/arm/configs/mainstone_defconfig index 153d68594beb..b112bd75bda2 100644 --- a/arch/arm/configs/mainstone_defconfig +++ b/arch/arm/configs/mainstone_defconfig | |||
@@ -63,7 +63,6 @@ CONFIG_OBSOLETE_MODPARM=y | |||
63 | # CONFIG_ARCH_CLPS711X is not set | 63 | # CONFIG_ARCH_CLPS711X is not set |
64 | # CONFIG_ARCH_CO285 is not set | 64 | # CONFIG_ARCH_CO285 is not set |
65 | # CONFIG_ARCH_EBSA110 is not set | 65 | # CONFIG_ARCH_EBSA110 is not set |
66 | # CONFIG_ARCH_CAMELOT is not set | ||
67 | # CONFIG_ARCH_FOOTBRIDGE is not set | 66 | # CONFIG_ARCH_FOOTBRIDGE is not set |
68 | # CONFIG_ARCH_INTEGRATOR is not set | 67 | # CONFIG_ARCH_INTEGRATOR is not set |
69 | # CONFIG_ARCH_IOP3XX is not set | 68 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/mx1ads_defconfig b/arch/arm/configs/mx1ads_defconfig index 6517d167acf0..d16f6cd6e039 100644 --- a/arch/arm/configs/mx1ads_defconfig +++ b/arch/arm/configs/mx1ads_defconfig | |||
@@ -63,7 +63,6 @@ CONFIG_KMOD=y | |||
63 | # CONFIG_ARCH_CLPS711X is not set | 63 | # CONFIG_ARCH_CLPS711X is not set |
64 | # CONFIG_ARCH_CO285 is not set | 64 | # CONFIG_ARCH_CO285 is not set |
65 | # CONFIG_ARCH_EBSA110 is not set | 65 | # CONFIG_ARCH_EBSA110 is not set |
66 | # CONFIG_ARCH_CAMELOT is not set | ||
67 | # CONFIG_ARCH_FOOTBRIDGE is not set | 66 | # CONFIG_ARCH_FOOTBRIDGE is not set |
68 | # CONFIG_ARCH_INTEGRATOR is not set | 67 | # CONFIG_ARCH_INTEGRATOR is not set |
69 | # CONFIG_ARCH_IOP3XX is not set | 68 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/neponset_defconfig b/arch/arm/configs/neponset_defconfig index 7fb1f7c7bf43..3d35255c64ed 100644 --- a/arch/arm/configs/neponset_defconfig +++ b/arch/arm/configs/neponset_defconfig | |||
@@ -65,7 +65,6 @@ CONFIG_OBSOLETE_MODPARM=y | |||
65 | # CONFIG_ARCH_CLPS711X is not set | 65 | # CONFIG_ARCH_CLPS711X is not set |
66 | # CONFIG_ARCH_CO285 is not set | 66 | # CONFIG_ARCH_CO285 is not set |
67 | # CONFIG_ARCH_EBSA110 is not set | 67 | # CONFIG_ARCH_EBSA110 is not set |
68 | # CONFIG_ARCH_CAMELOT is not set | ||
69 | # CONFIG_ARCH_FOOTBRIDGE is not set | 68 | # CONFIG_ARCH_FOOTBRIDGE is not set |
70 | # CONFIG_ARCH_INTEGRATOR is not set | 69 | # CONFIG_ARCH_INTEGRATOR is not set |
71 | # CONFIG_ARCH_IOP3XX is not set | 70 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/netwinder_defconfig b/arch/arm/configs/netwinder_defconfig index 6e81acf94c2f..2cae1ead9f9b 100644 --- a/arch/arm/configs/netwinder_defconfig +++ b/arch/arm/configs/netwinder_defconfig | |||
@@ -58,7 +58,6 @@ CONFIG_BASE_SMALL=0 | |||
58 | # CONFIG_ARCH_CLPS711X is not set | 58 | # CONFIG_ARCH_CLPS711X is not set |
59 | # CONFIG_ARCH_CO285 is not set | 59 | # CONFIG_ARCH_CO285 is not set |
60 | # CONFIG_ARCH_EBSA110 is not set | 60 | # CONFIG_ARCH_EBSA110 is not set |
61 | # CONFIG_ARCH_CAMELOT is not set | ||
62 | CONFIG_ARCH_FOOTBRIDGE=y | 61 | CONFIG_ARCH_FOOTBRIDGE=y |
63 | # CONFIG_ARCH_INTEGRATOR is not set | 62 | # CONFIG_ARCH_INTEGRATOR is not set |
64 | # CONFIG_ARCH_IOP3XX is not set | 63 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/omap_h2_1610_defconfig b/arch/arm/configs/omap_h2_1610_defconfig index 529f0f72e1e9..ee3ecbd9002d 100644 --- a/arch/arm/configs/omap_h2_1610_defconfig +++ b/arch/arm/configs/omap_h2_1610_defconfig | |||
@@ -85,7 +85,6 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
85 | # CONFIG_ARCH_CLPS711X is not set | 85 | # CONFIG_ARCH_CLPS711X is not set |
86 | # CONFIG_ARCH_CO285 is not set | 86 | # CONFIG_ARCH_CO285 is not set |
87 | # CONFIG_ARCH_EBSA110 is not set | 87 | # CONFIG_ARCH_EBSA110 is not set |
88 | # CONFIG_ARCH_CAMELOT is not set | ||
89 | # CONFIG_ARCH_FOOTBRIDGE is not set | 88 | # CONFIG_ARCH_FOOTBRIDGE is not set |
90 | # CONFIG_ARCH_INTEGRATOR is not set | 89 | # CONFIG_ARCH_INTEGRATOR is not set |
91 | # CONFIG_ARCH_IOP3XX is not set | 90 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/pleb_defconfig b/arch/arm/configs/pleb_defconfig index 10fec890578d..24e8bdd4cb91 100644 --- a/arch/arm/configs/pleb_defconfig +++ b/arch/arm/configs/pleb_defconfig | |||
@@ -63,7 +63,6 @@ CONFIG_KMOD=y | |||
63 | # CONFIG_ARCH_CLPS711X is not set | 63 | # CONFIG_ARCH_CLPS711X is not set |
64 | # CONFIG_ARCH_CO285 is not set | 64 | # CONFIG_ARCH_CO285 is not set |
65 | # CONFIG_ARCH_EBSA110 is not set | 65 | # CONFIG_ARCH_EBSA110 is not set |
66 | # CONFIG_ARCH_CAMELOT is not set | ||
67 | # CONFIG_ARCH_FOOTBRIDGE is not set | 66 | # CONFIG_ARCH_FOOTBRIDGE is not set |
68 | # CONFIG_ARCH_INTEGRATOR is not set | 67 | # CONFIG_ARCH_INTEGRATOR is not set |
69 | # CONFIG_ARCH_IOP3XX is not set | 68 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/pxa255-idp_defconfig b/arch/arm/configs/pxa255-idp_defconfig index 21c327883d8c..b71d31a4bb56 100644 --- a/arch/arm/configs/pxa255-idp_defconfig +++ b/arch/arm/configs/pxa255-idp_defconfig | |||
@@ -63,7 +63,6 @@ CONFIG_OBSOLETE_MODPARM=y | |||
63 | # CONFIG_ARCH_CLPS711X is not set | 63 | # CONFIG_ARCH_CLPS711X is not set |
64 | # CONFIG_ARCH_CO285 is not set | 64 | # CONFIG_ARCH_CO285 is not set |
65 | # CONFIG_ARCH_EBSA110 is not set | 65 | # CONFIG_ARCH_EBSA110 is not set |
66 | # CONFIG_ARCH_CAMELOT is not set | ||
67 | # CONFIG_ARCH_FOOTBRIDGE is not set | 66 | # CONFIG_ARCH_FOOTBRIDGE is not set |
68 | # CONFIG_ARCH_INTEGRATOR is not set | 67 | # CONFIG_ARCH_INTEGRATOR is not set |
69 | # CONFIG_ARCH_IOP3XX is not set | 68 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/realview_defconfig b/arch/arm/configs/realview_defconfig index 0485b2f1cc20..3f1ec4e304f7 100644 --- a/arch/arm/configs/realview_defconfig +++ b/arch/arm/configs/realview_defconfig | |||
@@ -65,7 +65,6 @@ CONFIG_OBSOLETE_MODPARM=y | |||
65 | # CONFIG_ARCH_CLPS711X is not set | 65 | # CONFIG_ARCH_CLPS711X is not set |
66 | # CONFIG_ARCH_CO285 is not set | 66 | # CONFIG_ARCH_CO285 is not set |
67 | # CONFIG_ARCH_EBSA110 is not set | 67 | # CONFIG_ARCH_EBSA110 is not set |
68 | # CONFIG_ARCH_CAMELOT is not set | ||
69 | # CONFIG_ARCH_FOOTBRIDGE is not set | 68 | # CONFIG_ARCH_FOOTBRIDGE is not set |
70 | # CONFIG_ARCH_INTEGRATOR is not set | 69 | # CONFIG_ARCH_INTEGRATOR is not set |
71 | # CONFIG_ARCH_IOP3XX is not set | 70 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/rpc_defconfig b/arch/arm/configs/rpc_defconfig index 19184c1010ad..b498afdc03b6 100644 --- a/arch/arm/configs/rpc_defconfig +++ b/arch/arm/configs/rpc_defconfig | |||
@@ -66,7 +66,6 @@ CONFIG_KMOD=y | |||
66 | # CONFIG_ARCH_CLPS711X is not set | 66 | # CONFIG_ARCH_CLPS711X is not set |
67 | # CONFIG_ARCH_CO285 is not set | 67 | # CONFIG_ARCH_CO285 is not set |
68 | # CONFIG_ARCH_EBSA110 is not set | 68 | # CONFIG_ARCH_EBSA110 is not set |
69 | # CONFIG_ARCH_CAMELOT is not set | ||
70 | # CONFIG_ARCH_FOOTBRIDGE is not set | 69 | # CONFIG_ARCH_FOOTBRIDGE is not set |
71 | # CONFIG_ARCH_INTEGRATOR is not set | 70 | # CONFIG_ARCH_INTEGRATOR is not set |
72 | # CONFIG_ARCH_IOP3XX is not set | 71 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/s3c2410_defconfig b/arch/arm/configs/s3c2410_defconfig index 3f97590c91f2..33f31080a98c 100644 --- a/arch/arm/configs/s3c2410_defconfig +++ b/arch/arm/configs/s3c2410_defconfig | |||
@@ -85,7 +85,6 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
85 | # CONFIG_ARCH_CLPS711X is not set | 85 | # CONFIG_ARCH_CLPS711X is not set |
86 | # CONFIG_ARCH_CO285 is not set | 86 | # CONFIG_ARCH_CO285 is not set |
87 | # CONFIG_ARCH_EBSA110 is not set | 87 | # CONFIG_ARCH_EBSA110 is not set |
88 | # CONFIG_ARCH_CAMELOT is not set | ||
89 | # CONFIG_ARCH_FOOTBRIDGE is not set | 88 | # CONFIG_ARCH_FOOTBRIDGE is not set |
90 | # CONFIG_ARCH_INTEGRATOR is not set | 89 | # CONFIG_ARCH_INTEGRATOR is not set |
91 | # CONFIG_ARCH_IOP3XX is not set | 90 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/shannon_defconfig b/arch/arm/configs/shannon_defconfig index e3facc4fe792..d052c8f80515 100644 --- a/arch/arm/configs/shannon_defconfig +++ b/arch/arm/configs/shannon_defconfig | |||
@@ -62,7 +62,6 @@ CONFIG_OBSOLETE_MODPARM=y | |||
62 | # CONFIG_ARCH_CLPS711X is not set | 62 | # CONFIG_ARCH_CLPS711X is not set |
63 | # CONFIG_ARCH_CO285 is not set | 63 | # CONFIG_ARCH_CO285 is not set |
64 | # CONFIG_ARCH_EBSA110 is not set | 64 | # CONFIG_ARCH_EBSA110 is not set |
65 | # CONFIG_ARCH_CAMELOT is not set | ||
66 | # CONFIG_ARCH_FOOTBRIDGE is not set | 65 | # CONFIG_ARCH_FOOTBRIDGE is not set |
67 | # CONFIG_ARCH_INTEGRATOR is not set | 66 | # CONFIG_ARCH_INTEGRATOR is not set |
68 | # CONFIG_ARCH_IOP3XX is not set | 67 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/shark_defconfig b/arch/arm/configs/shark_defconfig index 271823f0d708..c48d17062262 100644 --- a/arch/arm/configs/shark_defconfig +++ b/arch/arm/configs/shark_defconfig | |||
@@ -66,7 +66,6 @@ CONFIG_KMOD=y | |||
66 | # CONFIG_ARCH_CLPS711X is not set | 66 | # CONFIG_ARCH_CLPS711X is not set |
67 | # CONFIG_ARCH_CO285 is not set | 67 | # CONFIG_ARCH_CO285 is not set |
68 | # CONFIG_ARCH_EBSA110 is not set | 68 | # CONFIG_ARCH_EBSA110 is not set |
69 | # CONFIG_ARCH_CAMELOT is not set | ||
70 | # CONFIG_ARCH_FOOTBRIDGE is not set | 69 | # CONFIG_ARCH_FOOTBRIDGE is not set |
71 | # CONFIG_ARCH_INTEGRATOR is not set | 70 | # CONFIG_ARCH_INTEGRATOR is not set |
72 | # CONFIG_ARCH_IOP3XX is not set | 71 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/simpad_defconfig b/arch/arm/configs/simpad_defconfig index 5373eeb7d578..2e5a616cc98d 100644 --- a/arch/arm/configs/simpad_defconfig +++ b/arch/arm/configs/simpad_defconfig | |||
@@ -64,7 +64,6 @@ CONFIG_KMOD=y | |||
64 | # CONFIG_ARCH_CLPS711X is not set | 64 | # CONFIG_ARCH_CLPS711X is not set |
65 | # CONFIG_ARCH_CO285 is not set | 65 | # CONFIG_ARCH_CO285 is not set |
66 | # CONFIG_ARCH_EBSA110 is not set | 66 | # CONFIG_ARCH_EBSA110 is not set |
67 | # CONFIG_ARCH_CAMELOT is not set | ||
68 | # CONFIG_ARCH_FOOTBRIDGE is not set | 67 | # CONFIG_ARCH_FOOTBRIDGE is not set |
69 | # CONFIG_ARCH_INTEGRATOR is not set | 68 | # CONFIG_ARCH_INTEGRATOR is not set |
70 | # CONFIG_ARCH_IOP3XX is not set | 69 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/smdk2410_defconfig b/arch/arm/configs/smdk2410_defconfig index 2c60865fda19..4d123d33c7df 100644 --- a/arch/arm/configs/smdk2410_defconfig +++ b/arch/arm/configs/smdk2410_defconfig | |||
@@ -58,7 +58,6 @@ CONFIG_BASE_SMALL=0 | |||
58 | # CONFIG_ARCH_CLPS711X is not set | 58 | # CONFIG_ARCH_CLPS711X is not set |
59 | # CONFIG_ARCH_CO285 is not set | 59 | # CONFIG_ARCH_CO285 is not set |
60 | # CONFIG_ARCH_EBSA110 is not set | 60 | # CONFIG_ARCH_EBSA110 is not set |
61 | # CONFIG_ARCH_CAMELOT is not set | ||
62 | # CONFIG_ARCH_FOOTBRIDGE is not set | 61 | # CONFIG_ARCH_FOOTBRIDGE is not set |
63 | # CONFIG_ARCH_INTEGRATOR is not set | 62 | # CONFIG_ARCH_INTEGRATOR is not set |
64 | # CONFIG_ARCH_IOP3XX is not set | 63 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/spitz_defconfig b/arch/arm/configs/spitz_defconfig index 9895539533d6..d1ace3abfd8a 100644 --- a/arch/arm/configs/spitz_defconfig +++ b/arch/arm/configs/spitz_defconfig | |||
@@ -87,7 +87,6 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
87 | # CONFIG_ARCH_CLPS711X is not set | 87 | # CONFIG_ARCH_CLPS711X is not set |
88 | # CONFIG_ARCH_CO285 is not set | 88 | # CONFIG_ARCH_CO285 is not set |
89 | # CONFIG_ARCH_EBSA110 is not set | 89 | # CONFIG_ARCH_EBSA110 is not set |
90 | # CONFIG_ARCH_CAMELOT is not set | ||
91 | # CONFIG_ARCH_FOOTBRIDGE is not set | 90 | # CONFIG_ARCH_FOOTBRIDGE is not set |
92 | # CONFIG_ARCH_INTEGRATOR is not set | 91 | # CONFIG_ARCH_INTEGRATOR is not set |
93 | # CONFIG_ARCH_IOP3XX is not set | 92 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/configs/versatile_defconfig b/arch/arm/configs/versatile_defconfig index d72f2c754268..2687a225aa6a 100644 --- a/arch/arm/configs/versatile_defconfig +++ b/arch/arm/configs/versatile_defconfig | |||
@@ -64,7 +64,6 @@ CONFIG_KMOD=y | |||
64 | # CONFIG_ARCH_CLPS711X is not set | 64 | # CONFIG_ARCH_CLPS711X is not set |
65 | # CONFIG_ARCH_CO285 is not set | 65 | # CONFIG_ARCH_CO285 is not set |
66 | # CONFIG_ARCH_EBSA110 is not set | 66 | # CONFIG_ARCH_EBSA110 is not set |
67 | # CONFIG_ARCH_CAMELOT is not set | ||
68 | # CONFIG_ARCH_FOOTBRIDGE is not set | 67 | # CONFIG_ARCH_FOOTBRIDGE is not set |
69 | # CONFIG_ARCH_INTEGRATOR is not set | 68 | # CONFIG_ARCH_INTEGRATOR is not set |
70 | # CONFIG_ARCH_IOP3XX is not set | 69 | # CONFIG_ARCH_IOP3XX is not set |
diff --git a/arch/arm/kernel/irq.c b/arch/arm/kernel/irq.c index b5645c4462cf..1d50d2b98f55 100644 --- a/arch/arm/kernel/irq.c +++ b/arch/arm/kernel/irq.c | |||
@@ -710,7 +710,8 @@ int setup_irq(unsigned int irq, struct irqaction *new) | |||
710 | desc->pending = 0; | 710 | desc->pending = 0; |
711 | desc->disable_depth = 1; | 711 | desc->disable_depth = 1; |
712 | 712 | ||
713 | if (new->flags & SA_TRIGGER_MASK) { | 713 | if (new->flags & SA_TRIGGER_MASK && |
714 | desc->chip->set_type) { | ||
714 | unsigned int type = new->flags & SA_TRIGGER_MASK; | 715 | unsigned int type = new->flags & SA_TRIGGER_MASK; |
715 | desc->chip->set_type(irq, type); | 716 | desc->chip->set_type(irq, type); |
716 | } | 717 | } |
diff --git a/arch/arm/mach-at91rm9200/Kconfig b/arch/arm/mach-at91rm9200/Kconfig new file mode 100644 index 000000000000..4b7218fc3eb1 --- /dev/null +++ b/arch/arm/mach-at91rm9200/Kconfig | |||
@@ -0,0 +1,54 @@ | |||
1 | if ARCH_AT91RM9200 | ||
2 | |||
3 | menu "AT91RM9200 Implementations" | ||
4 | |||
5 | comment "AT91RM9200 Board Type" | ||
6 | |||
7 | config ARCH_AT91RM9200DK | ||
8 | bool "Atmel AT91RM9200-DK Development board" | ||
9 | depends on ARCH_AT91RM9200 | ||
10 | help | ||
11 | Select this if you are using Atmel's AT91RM9200-DK Development board | ||
12 | |||
13 | config MACH_AT91RM9200EK | ||
14 | bool "Atmel AT91RM9200-EK Evaluation Kit" | ||
15 | depends on ARCH_AT91RM9200 | ||
16 | help | ||
17 | Select this if you are using Atmel's AT91RM9200-EK Evaluation Kit | ||
18 | |||
19 | config MACH_CSB337 | ||
20 | bool "Cogent CSB337 board" | ||
21 | depends on ARCH_AT91RM9200 | ||
22 | help | ||
23 | Select this if you are using Cogent's CSB337 board | ||
24 | |||
25 | config MACH_CSB637 | ||
26 | bool "Cogent CSB637 board" | ||
27 | depends on ARCH_AT91RM9200 | ||
28 | help | ||
29 | Select this if you are using Cogent's CSB637 board | ||
30 | |||
31 | config MACH_CARMEVA | ||
32 | bool "Conitec's ARM&EVA" | ||
33 | depends on ARCH_AT91RM9200 | ||
34 | help | ||
35 | Select this if you are using Conitec's AT91RM9200-MCU-Module | ||
36 | |||
37 | config MACH_KB9200 | ||
38 | bool "KwikByte's KB920x" | ||
39 | depends on ARCH_AT91RM9200 | ||
40 | help | ||
41 | Select this if you are using KwikByte's KB920x board | ||
42 | |||
43 | |||
44 | comment "AT91RM9200 Feature Selections" | ||
45 | |||
46 | config AT91_PROGRAMMABLE_CLOCKS | ||
47 | bool "Programmable Clocks" | ||
48 | help | ||
49 | Select this if you need to program one or more of the PCK0..PCK3 | ||
50 | programmable clock outputs. | ||
51 | |||
52 | endmenu | ||
53 | |||
54 | endif | ||
diff --git a/arch/arm/mach-at91rm9200/Makefile b/arch/arm/mach-at91rm9200/Makefile new file mode 100644 index 000000000000..1f2805ca6e21 --- /dev/null +++ b/arch/arm/mach-at91rm9200/Makefile | |||
@@ -0,0 +1,27 @@ | |||
1 | # | ||
2 | # Makefile for the linux kernel. | ||
3 | # | ||
4 | |||
5 | obj-y := clock.o irq.o time.o gpio.o common.o devices.o | ||
6 | obj-m := | ||
7 | obj-n := | ||
8 | obj- := | ||
9 | |||
10 | # Board-specific support | ||
11 | #obj-$(CONFIG_ARCH_AT91RM9200DK) += board-dk.o | ||
12 | #obj-$(CONFIG_MACH_AT91RM9200EK) += board-ek.o | ||
13 | #obj-$(CONFIG_MACH_CSB337) += board-csb337.o | ||
14 | #obj-$(CONFIG_MACH_CSB637) += board-csb637.o | ||
15 | #obj-$(CONFIG_MACH_CARMEVA) += board-carmeva.o | ||
16 | #obj-$(CONFIG_MACH_KB9200) += board-kb9202.o | ||
17 | |||
18 | # LEDs support | ||
19 | #led-$(CONFIG_ARCH_AT91RM9200DK) += leds.o | ||
20 | #led-$(CONFIG_MACH_AT91RM9200EK) += leds.o | ||
21 | #led-$(CONFIG_MACH_CSB337) += leds.o | ||
22 | #led-$(CONFIG_MACH_CSB637) += leds.o | ||
23 | #led-$(CONFIG_MACH_KB9200) += leds.o | ||
24 | obj-$(CONFIG_LEDS) += $(led-y) | ||
25 | |||
26 | # VGA support | ||
27 | #obj-$(CONFIG_FB_S1D13XXX) += ics1523.o | ||
diff --git a/arch/arm/mach-at91rm9200/Makefile.boot b/arch/arm/mach-at91rm9200/Makefile.boot new file mode 100644 index 000000000000..e667dcc7cd34 --- /dev/null +++ b/arch/arm/mach-at91rm9200/Makefile.boot | |||
@@ -0,0 +1,9 @@ | |||
1 | # Note: the following conditions must always be true: | ||
2 | # ZRELADDR == virt_to_phys(TEXTADDR) | ||
3 | # PARAMS_PHYS must be within 4MB of ZRELADDR | ||
4 | # INITRD_PHYS must be in RAM | ||
5 | |||
6 | zreladdr-y := 0x20008000 | ||
7 | params_phys-y := 0x20000100 | ||
8 | initrd_phys-y := 0x20410000 | ||
9 | |||
diff --git a/arch/arm/mach-at91rm9200/clock.c b/arch/arm/mach-at91rm9200/clock.c new file mode 100644 index 000000000000..ec8195a2a3cc --- /dev/null +++ b/arch/arm/mach-at91rm9200/clock.c | |||
@@ -0,0 +1,620 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/mach-at91rm9200/clock.c | ||
3 | * | ||
4 | * Copyright (C) 2005 David Brownell | ||
5 | * Copyright (C) 2005 Ivan Kokshaysky | ||
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 | |||
13 | #include <linux/module.h> | ||
14 | #include <linux/kernel.h> | ||
15 | #include <linux/init.h> | ||
16 | #include <linux/fs.h> | ||
17 | #include <linux/debugfs.h> | ||
18 | #include <linux/seq_file.h> | ||
19 | #include <linux/list.h> | ||
20 | #include <linux/errno.h> | ||
21 | #include <linux/err.h> | ||
22 | #include <linux/spinlock.h> | ||
23 | #include <linux/delay.h> | ||
24 | #include <linux/clk.h> | ||
25 | |||
26 | #include <asm/semaphore.h> | ||
27 | #include <asm/io.h> | ||
28 | #include <asm/mach-types.h> | ||
29 | |||
30 | #include <asm/arch/hardware.h> | ||
31 | #include <asm/arch/board.h> /* for master clock global */ | ||
32 | |||
33 | #include "generic.h" | ||
34 | |||
35 | #undef DEBUG | ||
36 | |||
37 | /* | ||
38 | * There's a lot more which can be done with clocks, including cpufreq | ||
39 | * integration, slow clock mode support (for system suspend), letting | ||
40 | * PLLB be used at other rates (on boards that don't need USB), etc. | ||
41 | */ | ||
42 | |||
43 | struct clk { | ||
44 | const char *name; | ||
45 | unsigned long rate_hz; | ||
46 | struct clk *parent; | ||
47 | u32 pmc_mask; | ||
48 | void (*mode)(struct clk *, int); | ||
49 | unsigned id:2; /* PCK0..3, or 32k/main/a/b */ | ||
50 | unsigned primary:1; | ||
51 | unsigned pll:1; | ||
52 | unsigned programmable:1; | ||
53 | u16 users; | ||
54 | }; | ||
55 | |||
56 | static spinlock_t clk_lock; | ||
57 | static u32 at91_pllb_usb_init; | ||
58 | |||
59 | /* | ||
60 | * Four primary clock sources: two crystal oscillators (32K, main), and | ||
61 | * two PLLs. PLLA usually runs the master clock; and PLLB must run at | ||
62 | * 48 MHz (unless no USB function clocks are needed). The main clock and | ||
63 | * both PLLs are turned off to run in "slow clock mode" (system suspend). | ||
64 | */ | ||
65 | static struct clk clk32k = { | ||
66 | .name = "clk32k", | ||
67 | .rate_hz = AT91_SLOW_CLOCK, | ||
68 | .users = 1, /* always on */ | ||
69 | .id = 0, | ||
70 | .primary = 1, | ||
71 | }; | ||
72 | static struct clk main_clk = { | ||
73 | .name = "main", | ||
74 | .pmc_mask = 1 << 0, /* in PMC_SR */ | ||
75 | .users = 1, | ||
76 | .id = 1, | ||
77 | .primary = 1, | ||
78 | }; | ||
79 | static struct clk plla = { | ||
80 | .name = "plla", | ||
81 | .parent = &main_clk, | ||
82 | .pmc_mask = 1 << 1, /* in PMC_SR */ | ||
83 | .id = 2, | ||
84 | .primary = 1, | ||
85 | .pll = 1, | ||
86 | }; | ||
87 | |||
88 | static void pllb_mode(struct clk *clk, int is_on) | ||
89 | { | ||
90 | u32 value; | ||
91 | |||
92 | if (is_on) { | ||
93 | is_on = AT91_PMC_LOCKB; | ||
94 | value = at91_pllb_usb_init; | ||
95 | } else | ||
96 | value = 0; | ||
97 | |||
98 | at91_sys_write(AT91_CKGR_PLLBR, value); | ||
99 | |||
100 | do { | ||
101 | cpu_relax(); | ||
102 | } while ((at91_sys_read(AT91_PMC_SR) & AT91_PMC_LOCKB) != is_on); | ||
103 | } | ||
104 | |||
105 | static struct clk pllb = { | ||
106 | .name = "pllb", | ||
107 | .parent = &main_clk, | ||
108 | .pmc_mask = 1 << 2, /* in PMC_SR */ | ||
109 | .mode = pllb_mode, | ||
110 | .id = 3, | ||
111 | .primary = 1, | ||
112 | .pll = 1, | ||
113 | }; | ||
114 | |||
115 | static void pmc_sys_mode(struct clk *clk, int is_on) | ||
116 | { | ||
117 | if (is_on) | ||
118 | at91_sys_write(AT91_PMC_SCER, clk->pmc_mask); | ||
119 | else | ||
120 | at91_sys_write(AT91_PMC_SCDR, clk->pmc_mask); | ||
121 | } | ||
122 | |||
123 | /* USB function clocks (PLLB must be 48 MHz) */ | ||
124 | static struct clk udpck = { | ||
125 | .name = "udpck", | ||
126 | .parent = &pllb, | ||
127 | .pmc_mask = AT91_PMC_UDP, | ||
128 | .mode = pmc_sys_mode, | ||
129 | }; | ||
130 | static struct clk uhpck = { | ||
131 | .name = "uhpck", | ||
132 | .parent = &pllb, | ||
133 | .pmc_mask = AT91_PMC_UHP, | ||
134 | .mode = pmc_sys_mode, | ||
135 | }; | ||
136 | |||
137 | #ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS | ||
138 | /* | ||
139 | * The four programmable clocks can be parented by any primary clock. | ||
140 | * You must configure pin multiplexing to bring these signals out. | ||
141 | */ | ||
142 | static struct clk pck0 = { | ||
143 | .name = "pck0", | ||
144 | .pmc_mask = AT91_PMC_PCK0, | ||
145 | .mode = pmc_sys_mode, | ||
146 | .programmable = 1, | ||
147 | .id = 0, | ||
148 | }; | ||
149 | static struct clk pck1 = { | ||
150 | .name = "pck1", | ||
151 | .pmc_mask = AT91_PMC_PCK1, | ||
152 | .mode = pmc_sys_mode, | ||
153 | .programmable = 1, | ||
154 | .id = 1, | ||
155 | }; | ||
156 | static struct clk pck2 = { | ||
157 | .name = "pck2", | ||
158 | .pmc_mask = AT91_PMC_PCK2, | ||
159 | .mode = pmc_sys_mode, | ||
160 | .programmable = 1, | ||
161 | .id = 2, | ||
162 | }; | ||
163 | static struct clk pck3 = { | ||
164 | .name = "pck3", | ||
165 | .pmc_mask = AT91_PMC_PCK3, | ||
166 | .mode = pmc_sys_mode, | ||
167 | .programmable = 1, | ||
168 | .id = 3, | ||
169 | }; | ||
170 | #endif /* CONFIG_AT91_PROGRAMMABLE_CLOCKS */ | ||
171 | |||
172 | |||
173 | /* | ||
174 | * The master clock is divided from the CPU clock (by 1-4). It's used for | ||
175 | * memory, interfaces to on-chip peripherals, the AIC, and sometimes more | ||
176 | * (e.g baud rate generation). It's sourced from one of the primary clocks. | ||
177 | */ | ||
178 | static struct clk mck = { | ||
179 | .name = "mck", | ||
180 | .pmc_mask = 1 << 3, /* in PMC_SR */ | ||
181 | .users = 1, /* (must be) always on */ | ||
182 | }; | ||
183 | |||
184 | static void pmc_periph_mode(struct clk *clk, int is_on) | ||
185 | { | ||
186 | if (is_on) | ||
187 | at91_sys_write(AT91_PMC_PCER, clk->pmc_mask); | ||
188 | else | ||
189 | at91_sys_write(AT91_PMC_PCDR, clk->pmc_mask); | ||
190 | } | ||
191 | |||
192 | static struct clk udc_clk = { | ||
193 | .name = "udc_clk", | ||
194 | .parent = &mck, | ||
195 | .pmc_mask = 1 << AT91_ID_UDP, | ||
196 | .mode = pmc_periph_mode, | ||
197 | }; | ||
198 | static struct clk ohci_clk = { | ||
199 | .name = "ohci_clk", | ||
200 | .parent = &mck, | ||
201 | .pmc_mask = 1 << AT91_ID_UHP, | ||
202 | .mode = pmc_periph_mode, | ||
203 | }; | ||
204 | |||
205 | static struct clk *const clock_list[] = { | ||
206 | /* four primary clocks -- MUST BE FIRST! */ | ||
207 | &clk32k, | ||
208 | &main_clk, | ||
209 | &plla, | ||
210 | &pllb, | ||
211 | |||
212 | /* PLLB children (USB) */ | ||
213 | &udpck, | ||
214 | &uhpck, | ||
215 | |||
216 | #ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS | ||
217 | /* programmable clocks */ | ||
218 | &pck0, | ||
219 | &pck1, | ||
220 | &pck2, | ||
221 | &pck3, | ||
222 | #endif /* CONFIG_AT91_PROGRAMMABLE_CLOCKS */ | ||
223 | |||
224 | /* MCK and peripherals */ | ||
225 | &mck, | ||
226 | // usart0..usart3 | ||
227 | // mmc | ||
228 | &udc_clk, | ||
229 | // i2c | ||
230 | // spi | ||
231 | // ssc0..ssc2 | ||
232 | // tc0..tc5 | ||
233 | &ohci_clk, | ||
234 | // ether | ||
235 | }; | ||
236 | |||
237 | |||
238 | /* clocks are all static for now; no refcounting necessary */ | ||
239 | struct clk *clk_get(struct device *dev, const char *id) | ||
240 | { | ||
241 | int i; | ||
242 | |||
243 | for (i = 0; i < ARRAY_SIZE(clock_list); i++) { | ||
244 | if (strcmp(id, clock_list[i]->name) == 0) | ||
245 | return clock_list[i]; | ||
246 | } | ||
247 | |||
248 | return ERR_PTR(-ENOENT); | ||
249 | } | ||
250 | EXPORT_SYMBOL(clk_get); | ||
251 | |||
252 | void clk_put(struct clk *clk) | ||
253 | { | ||
254 | } | ||
255 | EXPORT_SYMBOL(clk_put); | ||
256 | |||
257 | static void __clk_enable(struct clk *clk) | ||
258 | { | ||
259 | if (clk->parent) | ||
260 | __clk_enable(clk->parent); | ||
261 | if (clk->users++ == 0 && clk->mode) | ||
262 | clk->mode(clk, 1); | ||
263 | } | ||
264 | |||
265 | int clk_enable(struct clk *clk) | ||
266 | { | ||
267 | unsigned long flags; | ||
268 | |||
269 | spin_lock_irqsave(&clk_lock, flags); | ||
270 | __clk_enable(clk); | ||
271 | spin_unlock_irqrestore(&clk_lock, flags); | ||
272 | return 0; | ||
273 | } | ||
274 | EXPORT_SYMBOL(clk_enable); | ||
275 | |||
276 | static void __clk_disable(struct clk *clk) | ||
277 | { | ||
278 | BUG_ON(clk->users == 0); | ||
279 | if (--clk->users == 0 && clk->mode) | ||
280 | clk->mode(clk, 0); | ||
281 | if (clk->parent) | ||
282 | __clk_disable(clk->parent); | ||
283 | } | ||
284 | |||
285 | void clk_disable(struct clk *clk) | ||
286 | { | ||
287 | unsigned long flags; | ||
288 | |||
289 | spin_lock_irqsave(&clk_lock, flags); | ||
290 | __clk_disable(clk); | ||
291 | spin_unlock_irqrestore(&clk_lock, flags); | ||
292 | } | ||
293 | EXPORT_SYMBOL(clk_disable); | ||
294 | |||
295 | unsigned long clk_get_rate(struct clk *clk) | ||
296 | { | ||
297 | unsigned long flags; | ||
298 | unsigned long rate; | ||
299 | |||
300 | spin_lock_irqsave(&clk_lock, flags); | ||
301 | for (;;) { | ||
302 | rate = clk->rate_hz; | ||
303 | if (rate || !clk->parent) | ||
304 | break; | ||
305 | clk = clk->parent; | ||
306 | } | ||
307 | spin_unlock_irqrestore(&clk_lock, flags); | ||
308 | return rate; | ||
309 | } | ||
310 | EXPORT_SYMBOL(clk_get_rate); | ||
311 | |||
312 | /*------------------------------------------------------------------------*/ | ||
313 | |||
314 | #ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS | ||
315 | |||
316 | /* | ||
317 | * For now, only the programmable clocks support reparenting (MCK could | ||
318 | * do this too, with care) or rate changing (the PLLs could do this too, | ||
319 | * ditto MCK but that's more for cpufreq). Drivers may reparent to get | ||
320 | * a better rate match; we don't. | ||
321 | */ | ||
322 | |||
323 | long clk_round_rate(struct clk *clk, unsigned long rate) | ||
324 | { | ||
325 | unsigned long flags; | ||
326 | unsigned prescale; | ||
327 | unsigned long actual; | ||
328 | |||
329 | if (!clk->programmable) | ||
330 | return -EINVAL; | ||
331 | spin_lock_irqsave(&clk_lock, flags); | ||
332 | |||
333 | actual = clk->parent->rate_hz; | ||
334 | for (prescale = 0; prescale < 7; prescale++) { | ||
335 | if (actual && actual <= rate) | ||
336 | break; | ||
337 | actual >>= 1; | ||
338 | } | ||
339 | |||
340 | spin_unlock_irqrestore(&clk_lock, flags); | ||
341 | return (prescale < 7) ? actual : -ENOENT; | ||
342 | } | ||
343 | EXPORT_SYMBOL(clk_round_rate); | ||
344 | |||
345 | int clk_set_rate(struct clk *clk, unsigned long rate) | ||
346 | { | ||
347 | unsigned long flags; | ||
348 | unsigned prescale; | ||
349 | unsigned long actual; | ||
350 | |||
351 | if (!clk->programmable) | ||
352 | return -EINVAL; | ||
353 | if (clk->users) | ||
354 | return -EBUSY; | ||
355 | spin_lock_irqsave(&clk_lock, flags); | ||
356 | |||
357 | actual = clk->parent->rate_hz; | ||
358 | for (prescale = 0; prescale < 7; prescale++) { | ||
359 | if (actual && actual <= rate) { | ||
360 | u32 pckr; | ||
361 | |||
362 | pckr = at91_sys_read(AT91_PMC_PCKR(clk->id)); | ||
363 | pckr &= 0x03; | ||
364 | pckr |= prescale << 2; | ||
365 | at91_sys_write(AT91_PMC_PCKR(clk->id), pckr); | ||
366 | clk->rate_hz = actual; | ||
367 | break; | ||
368 | } | ||
369 | actual >>= 1; | ||
370 | } | ||
371 | |||
372 | spin_unlock_irqrestore(&clk_lock, flags); | ||
373 | return (prescale < 7) ? actual : -ENOENT; | ||
374 | } | ||
375 | EXPORT_SYMBOL(clk_set_rate); | ||
376 | |||
377 | struct clk *clk_get_parent(struct clk *clk) | ||
378 | { | ||
379 | return clk->parent; | ||
380 | } | ||
381 | EXPORT_SYMBOL(clk_get_parent); | ||
382 | |||
383 | int clk_set_parent(struct clk *clk, struct clk *parent) | ||
384 | { | ||
385 | unsigned long flags; | ||
386 | |||
387 | if (clk->users) | ||
388 | return -EBUSY; | ||
389 | if (!parent->primary || !clk->programmable) | ||
390 | return -EINVAL; | ||
391 | spin_lock_irqsave(&clk_lock, flags); | ||
392 | |||
393 | clk->rate_hz = parent->rate_hz; | ||
394 | clk->parent = parent; | ||
395 | at91_sys_write(AT91_PMC_PCKR(clk->id), parent->id); | ||
396 | |||
397 | spin_unlock_irqrestore(&clk_lock, flags); | ||
398 | return 0; | ||
399 | } | ||
400 | EXPORT_SYMBOL(clk_set_parent); | ||
401 | |||
402 | #endif /* CONFIG_AT91_PROGRAMMABLE_CLOCKS */ | ||
403 | |||
404 | /*------------------------------------------------------------------------*/ | ||
405 | |||
406 | #ifdef CONFIG_DEBUG_FS | ||
407 | |||
408 | static int at91_clk_show(struct seq_file *s, void *unused) | ||
409 | { | ||
410 | u32 scsr, pcsr, sr; | ||
411 | unsigned i; | ||
412 | |||
413 | seq_printf(s, "SCSR = %8x\n", scsr = at91_sys_read(AT91_PMC_SCSR)); | ||
414 | seq_printf(s, "PCSR = %8x\n", pcsr = at91_sys_read(AT91_PMC_PCSR)); | ||
415 | |||
416 | seq_printf(s, "MOR = %8x\n", at91_sys_read(AT91_CKGR_MOR)); | ||
417 | seq_printf(s, "MCFR = %8x\n", at91_sys_read(AT91_CKGR_MCFR)); | ||
418 | seq_printf(s, "PLLA = %8x\n", at91_sys_read(AT91_CKGR_PLLAR)); | ||
419 | seq_printf(s, "PLLB = %8x\n", at91_sys_read(AT91_CKGR_PLLBR)); | ||
420 | |||
421 | seq_printf(s, "MCKR = %8x\n", at91_sys_read(AT91_PMC_MCKR)); | ||
422 | for (i = 0; i < 4; i++) | ||
423 | seq_printf(s, "PCK%d = %8x\n", i, at91_sys_read(AT91_PMC_PCKR(i))); | ||
424 | seq_printf(s, "SR = %8x\n", sr = at91_sys_read(AT91_PMC_SR)); | ||
425 | |||
426 | seq_printf(s, "\n"); | ||
427 | |||
428 | for (i = 0; i < ARRAY_SIZE(clock_list); i++) { | ||
429 | char *state; | ||
430 | struct clk *clk = clock_list[i]; | ||
431 | |||
432 | if (clk->mode == pmc_sys_mode) | ||
433 | state = (scsr & clk->pmc_mask) ? "on" : "off"; | ||
434 | else if (clk->mode == pmc_periph_mode) | ||
435 | state = (pcsr & clk->pmc_mask) ? "on" : "off"; | ||
436 | else if (clk->pmc_mask) | ||
437 | state = (sr & clk->pmc_mask) ? "on" : "off"; | ||
438 | else if (clk == &clk32k || clk == &main_clk) | ||
439 | state = "on"; | ||
440 | else | ||
441 | state = ""; | ||
442 | |||
443 | seq_printf(s, "%-10s users=%d %-3s %9ld Hz %s\n", | ||
444 | clk->name, clk->users, state, clk_get_rate(clk), | ||
445 | clk->parent ? clk->parent->name : ""); | ||
446 | } | ||
447 | return 0; | ||
448 | } | ||
449 | |||
450 | static int at91_clk_open(struct inode *inode, struct file *file) | ||
451 | { | ||
452 | return single_open(file, at91_clk_show, NULL); | ||
453 | } | ||
454 | |||
455 | static struct file_operations at91_clk_operations = { | ||
456 | .open = at91_clk_open, | ||
457 | .read = seq_read, | ||
458 | .llseek = seq_lseek, | ||
459 | .release = single_release, | ||
460 | }; | ||
461 | |||
462 | static int __init at91_clk_debugfs_init(void) | ||
463 | { | ||
464 | /* /sys/kernel/debug/at91_clk */ | ||
465 | (void) debugfs_create_file("at91_clk", S_IFREG | S_IRUGO, NULL, NULL, &at91_clk_operations); | ||
466 | |||
467 | return 0; | ||
468 | } | ||
469 | postcore_initcall(at91_clk_debugfs_init); | ||
470 | |||
471 | #endif | ||
472 | |||
473 | /*------------------------------------------------------------------------*/ | ||
474 | |||
475 | static u32 __init at91_pll_rate(struct clk *pll, u32 freq, u32 reg) | ||
476 | { | ||
477 | unsigned mul, div; | ||
478 | |||
479 | div = reg & 0xff; | ||
480 | mul = (reg >> 16) & 0x7ff; | ||
481 | if (div && mul) { | ||
482 | freq /= div; | ||
483 | freq *= mul + 1; | ||
484 | } else | ||
485 | freq = 0; | ||
486 | if (pll == &pllb && (reg & (1 << 28))) | ||
487 | freq /= 2; | ||
488 | return freq; | ||
489 | } | ||
490 | |||
491 | static unsigned __init at91_pll_calc(unsigned main_freq, unsigned out_freq) | ||
492 | { | ||
493 | unsigned i, div = 0, mul = 0, diff = 1 << 30; | ||
494 | unsigned ret = (out_freq > 155000000) ? 0xbe00 : 0x3e00; | ||
495 | |||
496 | /* PLL output max 240 MHz (or 180 MHz per errata) */ | ||
497 | if (out_freq > 240000000) | ||
498 | goto fail; | ||
499 | |||
500 | for (i = 1; i < 256; i++) { | ||
501 | int diff1; | ||
502 | unsigned input, mul1; | ||
503 | |||
504 | /* | ||
505 | * PLL input between 1MHz and 32MHz per spec, but lower | ||
506 | * frequences seem necessary in some cases so allow 100K. | ||
507 | */ | ||
508 | input = main_freq / i; | ||
509 | if (input < 100000) | ||
510 | continue; | ||
511 | if (input > 32000000) | ||
512 | continue; | ||
513 | |||
514 | mul1 = out_freq / input; | ||
515 | if (mul1 > 2048) | ||
516 | continue; | ||
517 | if (mul1 < 2) | ||
518 | goto fail; | ||
519 | |||
520 | diff1 = out_freq - input * mul1; | ||
521 | if (diff1 < 0) | ||
522 | diff1 = -diff1; | ||
523 | if (diff > diff1) { | ||
524 | diff = diff1; | ||
525 | div = i; | ||
526 | mul = mul1; | ||
527 | if (diff == 0) | ||
528 | break; | ||
529 | } | ||
530 | } | ||
531 | if (i == 256 && diff > (out_freq >> 5)) | ||
532 | goto fail; | ||
533 | return ret | ((mul - 1) << 16) | div; | ||
534 | fail: | ||
535 | return 0; | ||
536 | } | ||
537 | |||
538 | int __init at91_clock_init(unsigned long main_clock) | ||
539 | { | ||
540 | unsigned tmp, freq, mckr; | ||
541 | |||
542 | spin_lock_init(&clk_lock); | ||
543 | |||
544 | /* | ||
545 | * When the bootloader initialized the main oscillator correctly, | ||
546 | * there's no problem using the cycle counter. But if it didn't, | ||
547 | * or when using oscillator bypass mode, we must be told the speed | ||
548 | * of the main clock. | ||
549 | */ | ||
550 | if (!main_clock) { | ||
551 | do { | ||
552 | tmp = at91_sys_read(AT91_CKGR_MCFR); | ||
553 | } while (!(tmp & 0x10000)); | ||
554 | main_clock = (tmp & 0xffff) * (AT91_SLOW_CLOCK / 16); | ||
555 | } | ||
556 | main_clk.rate_hz = main_clock; | ||
557 | |||
558 | /* report if PLLA is more than mildly overclocked */ | ||
559 | plla.rate_hz = at91_pll_rate(&plla, main_clock, at91_sys_read(AT91_CKGR_PLLAR)); | ||
560 | if (plla.rate_hz > 209000000) | ||
561 | pr_info("Clocks: PLLA overclocked, %ld MHz\n", plla.rate_hz / 1000000); | ||
562 | |||
563 | /* | ||
564 | * USB clock init: choose 48 MHz PLLB value, turn all clocks off, | ||
565 | * disable 48MHz clock during usb peripheral suspend. | ||
566 | * | ||
567 | * REVISIT: assumes MCK doesn't derive from PLLB! | ||
568 | */ | ||
569 | at91_pllb_usb_init = at91_pll_calc(main_clock, 48000000 * 2) | 0x10000000; | ||
570 | pllb.rate_hz = at91_pll_rate(&pllb, main_clock, at91_pllb_usb_init); | ||
571 | at91_sys_write(AT91_PMC_PCDR, (1 << AT91_ID_UHP) | (1 << AT91_ID_UDP)); | ||
572 | at91_sys_write(AT91_PMC_SCDR, AT91_PMC_UHP | AT91_PMC_UDP); | ||
573 | at91_sys_write(AT91_CKGR_PLLBR, 0); | ||
574 | at91_sys_write(AT91_PMC_SCER, AT91_PMC_MCKUDP); | ||
575 | |||
576 | /* | ||
577 | * MCK and CPU derive from one of those primary clocks. | ||
578 | * For now, assume this parentage won't change. | ||
579 | */ | ||
580 | mckr = at91_sys_read(AT91_PMC_MCKR); | ||
581 | mck.parent = clock_list[mckr & AT91_PMC_CSS]; | ||
582 | mck.parent->users++; | ||
583 | freq = mck.parent->rate_hz; | ||
584 | freq /= (1 << ((mckr >> 2) & 3)); /* prescale */ | ||
585 | mck.rate_hz = freq / (1 + ((mckr >> 8) & 3)); /* mdiv */ | ||
586 | |||
587 | printk("Clocks: CPU %u MHz, master %u MHz, main %u.%03u MHz\n", | ||
588 | freq / 1000000, (unsigned) mck.rate_hz / 1000000, | ||
589 | (unsigned) main_clock / 1000000, | ||
590 | ((unsigned) main_clock % 1000000) / 1000); | ||
591 | |||
592 | /* FIXME get rid of master_clock global */ | ||
593 | at91_master_clock = mck.rate_hz; | ||
594 | |||
595 | #ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS | ||
596 | /* establish PCK0..PCK3 parentage */ | ||
597 | for (tmp = 0; tmp < ARRAY_SIZE(clock_list); tmp++) { | ||
598 | struct clk *clk = clock_list[tmp], *parent; | ||
599 | u32 pckr; | ||
600 | |||
601 | if (!clk->programmable) | ||
602 | continue; | ||
603 | |||
604 | pckr = at91_sys_read(AT91_PMC_PCKR(clk->id)); | ||
605 | parent = clock_list[pckr & 3]; | ||
606 | clk->parent = parent; | ||
607 | clk->rate_hz = parent->rate_hz / (1 << ((pckr >> 2) & 3)); | ||
608 | } | ||
609 | #else | ||
610 | /* disable unused clocks */ | ||
611 | at91_sys_write(AT91_PMC_SCDR, AT91_PMC_PCK0 | AT91_PMC_PCK1 | AT91_PMC_PCK2 | AT91_PMC_PCK3); | ||
612 | #endif /* CONFIG_AT91_PROGRAMMABLE_CLOCKS */ | ||
613 | |||
614 | /* FIXME several unused clocks may still be active... provide | ||
615 | * a CONFIG option to turn off all unused clocks at some point | ||
616 | * before driver init starts. | ||
617 | */ | ||
618 | |||
619 | return 0; | ||
620 | } | ||
diff --git a/arch/arm/mach-at91rm9200/common.c b/arch/arm/mach-at91rm9200/common.c new file mode 100644 index 000000000000..3848fd2d5596 --- /dev/null +++ b/arch/arm/mach-at91rm9200/common.c | |||
@@ -0,0 +1,115 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-at91rm9200/common.c | ||
3 | * | ||
4 | * Copyright (C) 2005 SAN People | ||
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 | */ | ||
12 | |||
13 | #include <linux/config.h> | ||
14 | #include <linux/module.h> | ||
15 | |||
16 | #include <asm/mach/arch.h> | ||
17 | #include <asm/mach/map.h> | ||
18 | |||
19 | #include <asm/arch/hardware.h> | ||
20 | |||
21 | static struct map_desc at91rm9200_io_desc[] __initdata = { | ||
22 | { | ||
23 | .virtual = AT91_VA_BASE_SYS, | ||
24 | .pfn = __phys_to_pfn(AT91_BASE_SYS), | ||
25 | .length = SZ_4K, | ||
26 | .type = MT_DEVICE, | ||
27 | }, { | ||
28 | .virtual = AT91_VA_BASE_SPI, | ||
29 | .pfn = __phys_to_pfn(AT91_BASE_SPI), | ||
30 | .length = SZ_16K, | ||
31 | .type = MT_DEVICE, | ||
32 | }, { | ||
33 | .virtual = AT91_VA_BASE_SSC2, | ||
34 | .pfn = __phys_to_pfn(AT91_BASE_SSC2), | ||
35 | .length = SZ_16K, | ||
36 | .type = MT_DEVICE, | ||
37 | }, { | ||
38 | .virtual = AT91_VA_BASE_SSC1, | ||
39 | .pfn = __phys_to_pfn(AT91_BASE_SSC1), | ||
40 | .length = SZ_16K, | ||
41 | .type = MT_DEVICE, | ||
42 | }, { | ||
43 | .virtual = AT91_VA_BASE_SSC0, | ||
44 | .pfn = __phys_to_pfn(AT91_BASE_SSC0), | ||
45 | .length = SZ_16K, | ||
46 | .type = MT_DEVICE, | ||
47 | }, { | ||
48 | .virtual = AT91_VA_BASE_US3, | ||
49 | .pfn = __phys_to_pfn(AT91_BASE_US3), | ||
50 | .length = SZ_16K, | ||
51 | .type = MT_DEVICE, | ||
52 | }, { | ||
53 | .virtual = AT91_VA_BASE_US2, | ||
54 | .pfn = __phys_to_pfn(AT91_BASE_US2), | ||
55 | .length = SZ_16K, | ||
56 | .type = MT_DEVICE, | ||
57 | }, { | ||
58 | .virtual = AT91_VA_BASE_US1, | ||
59 | .pfn = __phys_to_pfn(AT91_BASE_US1), | ||
60 | .length = SZ_16K, | ||
61 | .type = MT_DEVICE, | ||
62 | }, { | ||
63 | .virtual = AT91_VA_BASE_US0, | ||
64 | .pfn = __phys_to_pfn(AT91_BASE_US0), | ||
65 | .length = SZ_16K, | ||
66 | .type = MT_DEVICE, | ||
67 | }, { | ||
68 | .virtual = AT91_VA_BASE_EMAC, | ||
69 | .pfn = __phys_to_pfn(AT91_BASE_EMAC), | ||
70 | .length = SZ_16K, | ||
71 | .type = MT_DEVICE, | ||
72 | }, { | ||
73 | .virtual = AT91_VA_BASE_TWI, | ||
74 | .pfn = __phys_to_pfn(AT91_BASE_TWI), | ||
75 | .length = SZ_16K, | ||
76 | .type = MT_DEVICE, | ||
77 | }, { | ||
78 | .virtual = AT91_VA_BASE_MCI, | ||
79 | .pfn = __phys_to_pfn(AT91_BASE_MCI), | ||
80 | .length = SZ_16K, | ||
81 | .type = MT_DEVICE, | ||
82 | }, { | ||
83 | .virtual = AT91_VA_BASE_UDP, | ||
84 | .pfn = __phys_to_pfn(AT91_BASE_UDP), | ||
85 | .length = SZ_16K, | ||
86 | .type = MT_DEVICE, | ||
87 | }, { | ||
88 | .virtual = AT91_VA_BASE_TCB1, | ||
89 | .pfn = __phys_to_pfn(AT91_BASE_TCB1), | ||
90 | .length = SZ_16K, | ||
91 | .type = MT_DEVICE, | ||
92 | }, { | ||
93 | .virtual = AT91_VA_BASE_TCB0, | ||
94 | .pfn = __phys_to_pfn(AT91_BASE_TCB0), | ||
95 | .length = SZ_16K, | ||
96 | .type = MT_DEVICE, | ||
97 | }, | ||
98 | }; | ||
99 | |||
100 | void __init at91rm9200_map_io(void) | ||
101 | { | ||
102 | iotable_init(at91rm9200_io_desc, ARRAY_SIZE(at91rm9200_io_desc)); | ||
103 | } | ||
104 | |||
105 | |||
106 | unsigned long at91_master_clock; | ||
107 | |||
108 | EXPORT_SYMBOL(at91_master_clock); | ||
109 | |||
110 | |||
111 | int at91_serial_map[AT91_NR_UART]; | ||
112 | int at91_console_port; | ||
113 | |||
114 | EXPORT_SYMBOL(at91_serial_map); | ||
115 | EXPORT_SYMBOL(at91_console_port); | ||
diff --git a/arch/arm/mach-at91rm9200/devices.c b/arch/arm/mach-at91rm9200/devices.c new file mode 100644 index 000000000000..8df3e5245651 --- /dev/null +++ b/arch/arm/mach-at91rm9200/devices.c | |||
@@ -0,0 +1,291 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-at91rm9200/devices.c | ||
3 | * | ||
4 | * Copyright (C) 2005 Thibaut VARENE <varenet@parisc-linux.org> | ||
5 | * Copyright (C) 2005 David Brownell | ||
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 | */ | ||
13 | #include <asm/mach/arch.h> | ||
14 | #include <asm/mach/map.h> | ||
15 | |||
16 | #include <linux/config.h> | ||
17 | #include <linux/platform_device.h> | ||
18 | |||
19 | #include <asm/arch/board.h> | ||
20 | #include <asm/arch/pio.h> | ||
21 | |||
22 | |||
23 | /* -------------------------------------------------------------------- | ||
24 | * USB Host | ||
25 | * -------------------------------------------------------------------- */ | ||
26 | |||
27 | #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE) | ||
28 | static u64 ohci_dmamask = 0xffffffffUL; | ||
29 | static struct at91_usbh_data usbh_data; | ||
30 | |||
31 | static struct resource at91rm9200_usbh_resource[] = { | ||
32 | [0] = { | ||
33 | .start = AT91_UHP_BASE, | ||
34 | .end = AT91_UHP_BASE + SZ_1M -1, | ||
35 | .flags = IORESOURCE_MEM, | ||
36 | }, | ||
37 | [1] = { | ||
38 | .start = AT91_ID_UHP, | ||
39 | .end = AT91_ID_UHP, | ||
40 | .flags = IORESOURCE_IRQ, | ||
41 | }, | ||
42 | }; | ||
43 | |||
44 | static struct platform_device at91rm9200_usbh_device = { | ||
45 | .name = "at91rm9200-ohci", | ||
46 | .id = -1, | ||
47 | .dev = { | ||
48 | .dma_mask = &ohci_dmamask, | ||
49 | .coherent_dma_mask = 0xffffffff, | ||
50 | .platform_data = &usbh_data, | ||
51 | }, | ||
52 | .resource = at91rm9200_usbh_resource, | ||
53 | .num_resources = ARRAY_SIZE(at91rm9200_usbh_resource), | ||
54 | }; | ||
55 | |||
56 | void __init at91_add_device_usbh(struct at91_usbh_data *data) | ||
57 | { | ||
58 | if (!data) | ||
59 | return; | ||
60 | |||
61 | usbh_data = *data; | ||
62 | platform_device_register(&at91rm9200_usbh_device); | ||
63 | } | ||
64 | #else | ||
65 | void __init at91_add_device_usbh(struct at91_usbh_data *data) {} | ||
66 | #endif | ||
67 | |||
68 | |||
69 | /* -------------------------------------------------------------------- | ||
70 | * USB Device (Gadget) | ||
71 | * -------------------------------------------------------------------- */ | ||
72 | |||
73 | #ifdef CONFIG_USB_GADGET_AT91 | ||
74 | static struct at91_udc_data udc_data; | ||
75 | |||
76 | static struct resource at91_udc_resources[] = { | ||
77 | { | ||
78 | .start = AT91_BASE_UDP, | ||
79 | .end = AT91_BASE_UDP + SZ_16K - 1, | ||
80 | .flags = IORESOURCE_MEM, | ||
81 | } | ||
82 | }; | ||
83 | |||
84 | static struct platform_device at91rm9200_udc_device = { | ||
85 | .name = "at91_udc", | ||
86 | .id = -1, | ||
87 | .dev = { | ||
88 | .platform_data = &udc_data, | ||
89 | }, | ||
90 | .resource = at91_udc_resources, | ||
91 | .num_resources = ARRAY_SIZE(at91_udc_resources), | ||
92 | }; | ||
93 | |||
94 | void __init at91_add_device_udc(struct at91_udc_data *data) | ||
95 | { | ||
96 | if (!data) | ||
97 | return; | ||
98 | |||
99 | if (data->vbus_pin) { | ||
100 | at91_set_gpio_input(data->vbus_pin, 0); | ||
101 | at91_set_deglitch(data->vbus_pin, 1); | ||
102 | } | ||
103 | if (data->pullup_pin) | ||
104 | at91_set_gpio_output(data->pullup_pin, 0); | ||
105 | |||
106 | udc_data = *data; | ||
107 | platform_device_register(&at91rm9200_udc_device); | ||
108 | } | ||
109 | #else | ||
110 | void __init at91_add_device_udc(struct at91_udc_data *data) {} | ||
111 | #endif | ||
112 | |||
113 | |||
114 | /* -------------------------------------------------------------------- | ||
115 | * Ethernet | ||
116 | * -------------------------------------------------------------------- */ | ||
117 | |||
118 | #if defined(CONFIG_ARM_AT91_ETHER) || defined(CONFIG_ARM_AT91_ETHER_MODULE) | ||
119 | static u64 eth_dmamask = 0xffffffffUL; | ||
120 | static struct at91_eth_data eth_data; | ||
121 | |||
122 | static struct platform_device at91rm9200_eth_device = { | ||
123 | .name = "at91_ether", | ||
124 | .id = -1, | ||
125 | .dev = { | ||
126 | .dma_mask = ð_dmamask, | ||
127 | .coherent_dma_mask = 0xffffffff, | ||
128 | .platform_data = ð_data, | ||
129 | }, | ||
130 | .num_resources = 0, | ||
131 | }; | ||
132 | |||
133 | void __init at91_add_device_eth(struct at91_eth_data *data) | ||
134 | { | ||
135 | if (!data) | ||
136 | return; | ||
137 | |||
138 | if (data->phy_irq_pin) { | ||
139 | at91_set_gpio_input(data->phy_irq_pin, 0); | ||
140 | at91_set_deglitch(data->phy_irq_pin, 1); | ||
141 | } | ||
142 | |||
143 | /* Pins used for MII and RMII */ | ||
144 | at91_set_A_periph(AT91_PIN_PA16, 0); /* EMDIO */ | ||
145 | at91_set_A_periph(AT91_PIN_PA15, 0); /* EMDC */ | ||
146 | at91_set_A_periph(AT91_PIN_PA14, 0); /* ERXER */ | ||
147 | at91_set_A_periph(AT91_PIN_PA13, 0); /* ERX1 */ | ||
148 | at91_set_A_periph(AT91_PIN_PA12, 0); /* ERX0 */ | ||
149 | at91_set_A_periph(AT91_PIN_PA11, 0); /* ECRS_ECRSDV */ | ||
150 | at91_set_A_periph(AT91_PIN_PA10, 0); /* ETX1 */ | ||
151 | at91_set_A_periph(AT91_PIN_PA9, 0); /* ETX0 */ | ||
152 | at91_set_A_periph(AT91_PIN_PA8, 0); /* ETXEN */ | ||
153 | at91_set_A_periph(AT91_PIN_PA7, 0); /* ETXCK_EREFCK */ | ||
154 | |||
155 | if (!data->is_rmii) { | ||
156 | at91_set_B_periph(AT91_PIN_PB19, 0); /* ERXCK */ | ||
157 | at91_set_B_periph(AT91_PIN_PB18, 0); /* ECOL */ | ||
158 | at91_set_B_periph(AT91_PIN_PB17, 0); /* ERXDV */ | ||
159 | at91_set_B_periph(AT91_PIN_PB16, 0); /* ERX3 */ | ||
160 | at91_set_B_periph(AT91_PIN_PB15, 0); /* ERX2 */ | ||
161 | at91_set_B_periph(AT91_PIN_PB14, 0); /* ETXER */ | ||
162 | at91_set_B_periph(AT91_PIN_PB13, 0); /* ETX3 */ | ||
163 | at91_set_B_periph(AT91_PIN_PB12, 0); /* ETX2 */ | ||
164 | } | ||
165 | |||
166 | eth_data = *data; | ||
167 | platform_device_register(&at91rm9200_eth_device); | ||
168 | } | ||
169 | #else | ||
170 | void __init at91_add_device_eth(struct at91_eth_data *data) {} | ||
171 | #endif | ||
172 | |||
173 | |||
174 | /* -------------------------------------------------------------------- | ||
175 | * Compact Flash / PCMCIA | ||
176 | * -------------------------------------------------------------------- */ | ||
177 | |||
178 | #if defined(CONFIG_AT91_CF) || defined(CONFIG_AT91_CF_MODULE) | ||
179 | static struct at91_cf_data cf_data; | ||
180 | |||
181 | static struct platform_device at91rm9200_cf_device = { | ||
182 | .name = "at91_cf", | ||
183 | .id = -1, | ||
184 | .dev = { | ||
185 | .platform_data = &cf_data, | ||
186 | }, | ||
187 | .num_resources = 0, | ||
188 | }; | ||
189 | |||
190 | void __init at91_add_device_cf(struct at91_cf_data *data) | ||
191 | { | ||
192 | if (!data) | ||
193 | return; | ||
194 | |||
195 | /* input/irq */ | ||
196 | if (data->irq_pin) { | ||
197 | at91_set_gpio_input(data->irq_pin, 1); | ||
198 | at91_set_deglitch(data->irq_pin, 1); | ||
199 | } | ||
200 | at91_set_gpio_input(data->det_pin, 1); | ||
201 | at91_set_deglitch(data->det_pin, 1); | ||
202 | |||
203 | /* outputs, initially off */ | ||
204 | if (data->vcc_pin) | ||
205 | at91_set_gpio_output(data->vcc_pin, 0); | ||
206 | at91_set_gpio_output(data->rst_pin, 0); | ||
207 | |||
208 | cf_data = *data; | ||
209 | platform_device_register(&at91rm9200_cf_device); | ||
210 | } | ||
211 | #else | ||
212 | void __init at91_add_device_cf(struct at91_cf_data *data) {} | ||
213 | #endif | ||
214 | |||
215 | |||
216 | /* -------------------------------------------------------------------- | ||
217 | * MMC / SD | ||
218 | * -------------------------------------------------------------------- */ | ||
219 | |||
220 | #if defined(CONFIG_MMC_AT91RM9200) || defined(CONFIG_MMC_AT91RM9200_MODULE) | ||
221 | static u64 mmc_dmamask = 0xffffffffUL; | ||
222 | static struct at91_mmc_data mmc_data; | ||
223 | |||
224 | static struct resource at91_mmc_resources[] = { | ||
225 | { | ||
226 | .start = AT91_BASE_MCI, | ||
227 | .end = AT91_BASE_MCI + SZ_16K - 1, | ||
228 | .flags = IORESOURCE_MEM, | ||
229 | } | ||
230 | }; | ||
231 | |||
232 | static struct platform_device at91rm9200_mmc_device = { | ||
233 | .name = "at91rm9200_mci", | ||
234 | .id = -1, | ||
235 | .dev = { | ||
236 | .dma_mask = &mmc_dmamask, | ||
237 | .coherent_dma_mask = 0xffffffff, | ||
238 | .platform_data = &mmc_data, | ||
239 | }, | ||
240 | .resource = at91_mmc_resources, | ||
241 | .num_resources = ARRAY_SIZE(at91_mmc_resources), | ||
242 | }; | ||
243 | |||
244 | void __init at91_add_device_mmc(struct at91_mmc_data *data) | ||
245 | { | ||
246 | if (!data) | ||
247 | return; | ||
248 | |||
249 | /* input/irq */ | ||
250 | if (data->det_pin) { | ||
251 | at91_set_gpio_input(data->det_pin, 1); | ||
252 | at91_set_deglitch(data->det_pin, 1); | ||
253 | } | ||
254 | if (data->wp_pin) | ||
255 | at91_set_gpio_input(data->wp_pin, 1); | ||
256 | |||
257 | /* CLK */ | ||
258 | at91_set_A_periph(AT91_PIN_PA27, 0); | ||
259 | |||
260 | if (data->is_b) { | ||
261 | /* CMD */ | ||
262 | at91_set_B_periph(AT91_PIN_PA8, 0); | ||
263 | |||
264 | /* DAT0, maybe DAT1..DAT3 */ | ||
265 | at91_set_B_periph(AT91_PIN_PA9, 0); | ||
266 | if (data->wire4) { | ||
267 | at91_set_B_periph(AT91_PIN_PA10, 0); | ||
268 | at91_set_B_periph(AT91_PIN_PA11, 0); | ||
269 | at91_set_B_periph(AT91_PIN_PA12, 0); | ||
270 | } | ||
271 | } else { | ||
272 | /* CMD */ | ||
273 | at91_set_A_periph(AT91_PIN_PA28, 0); | ||
274 | |||
275 | /* DAT0, maybe DAT1..DAT3 */ | ||
276 | at91_set_A_periph(AT91_PIN_PA29, 0); | ||
277 | if (data->wire4) { | ||
278 | at91_set_B_periph(AT91_PIN_PB3, 0); | ||
279 | at91_set_B_periph(AT91_PIN_PB4, 0); | ||
280 | at91_set_B_periph(AT91_PIN_PB5, 0); | ||
281 | } | ||
282 | } | ||
283 | |||
284 | mmc_data = *data; | ||
285 | platform_device_register(&at91rm9200_mmc_device); | ||
286 | } | ||
287 | #else | ||
288 | void __init at91_add_device_mmc(struct at91_mmc_data *data) {} | ||
289 | #endif | ||
290 | |||
291 | /* -------------------------------------------------------------------- */ | ||
diff --git a/arch/arm/mach-at91rm9200/generic.h b/arch/arm/mach-at91rm9200/generic.h new file mode 100644 index 000000000000..9bd541eba0a0 --- /dev/null +++ b/arch/arm/mach-at91rm9200/generic.h | |||
@@ -0,0 +1,18 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/mach-at91rm9200/generic.h | ||
3 | * | ||
4 | * Copyright (C) 2005 David Brownell | ||
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 version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | |||
11 | void at91_gpio_irq_setup(unsigned banks); | ||
12 | |||
13 | struct sys_timer; | ||
14 | extern struct sys_timer at91rm9200_timer; | ||
15 | |||
16 | extern void __init at91rm9200_map_io(void); | ||
17 | |||
18 | extern int __init at91_clock_init(unsigned long main_clock); | ||
diff --git a/arch/arm/mach-at91rm9200/gpio.c b/arch/arm/mach-at91rm9200/gpio.c new file mode 100644 index 000000000000..2fd2ef583e4d --- /dev/null +++ b/arch/arm/mach-at91rm9200/gpio.c | |||
@@ -0,0 +1,302 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/mach-at91rm9200/gpio.c | ||
3 | * | ||
4 | * Copyright (C) 2005 HP Labs | ||
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 | |||
12 | #include <linux/errno.h> | ||
13 | #include <linux/kernel.h> | ||
14 | #include <linux/list.h> | ||
15 | #include <linux/module.h> | ||
16 | |||
17 | #include <asm/io.h> | ||
18 | #include <asm/mach/irq.h> | ||
19 | #include <asm/arch/hardware.h> | ||
20 | #include <asm/arch/gpio.h> | ||
21 | |||
22 | static const u32 pio_controller_offset[4] = { | ||
23 | AT91_PIOA, | ||
24 | AT91_PIOB, | ||
25 | AT91_PIOC, | ||
26 | AT91_PIOD, | ||
27 | }; | ||
28 | |||
29 | static inline void __iomem *pin_to_controller(unsigned pin) | ||
30 | { | ||
31 | void __iomem *sys_base = (void __iomem *) AT91_VA_BASE_SYS; | ||
32 | |||
33 | pin -= PIN_BASE; | ||
34 | pin /= 32; | ||
35 | if (likely(pin < BGA_GPIO_BANKS)) | ||
36 | return sys_base + pio_controller_offset[pin]; | ||
37 | |||
38 | return NULL; | ||
39 | } | ||
40 | |||
41 | static inline unsigned pin_to_mask(unsigned pin) | ||
42 | { | ||
43 | pin -= PIN_BASE; | ||
44 | return 1 << (pin % 32); | ||
45 | } | ||
46 | |||
47 | |||
48 | /*--------------------------------------------------------------------------*/ | ||
49 | |||
50 | /* Not all hardware capabilities are exposed through these calls; they | ||
51 | * only encapsulate the most common features and modes. (So if you | ||
52 | * want to change signals in groups, do it directly.) | ||
53 | * | ||
54 | * Bootloaders will usually handle some of the pin multiplexing setup. | ||
55 | * The intent is certainly that by the time Linux is fully booted, all | ||
56 | * pins should have been fully initialized. These setup calls should | ||
57 | * only be used by board setup routines, or possibly in driver probe(). | ||
58 | * | ||
59 | * For bootloaders doing all that setup, these calls could be inlined | ||
60 | * as NOPs so Linux won't duplicate any setup code | ||
61 | */ | ||
62 | |||
63 | |||
64 | /* | ||
65 | * mux the pin to the "A" internal peripheral role. | ||
66 | */ | ||
67 | int __init_or_module at91_set_A_periph(unsigned pin, int use_pullup) | ||
68 | { | ||
69 | void __iomem *pio = pin_to_controller(pin); | ||
70 | unsigned mask = pin_to_mask(pin); | ||
71 | |||
72 | if (!pio) | ||
73 | return -EINVAL; | ||
74 | |||
75 | __raw_writel(mask, pio + PIO_IDR); | ||
76 | __raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR)); | ||
77 | __raw_writel(mask, pio + PIO_ASR); | ||
78 | __raw_writel(mask, pio + PIO_PDR); | ||
79 | return 0; | ||
80 | } | ||
81 | EXPORT_SYMBOL(at91_set_A_periph); | ||
82 | |||
83 | |||
84 | /* | ||
85 | * mux the pin to the "B" internal peripheral role. | ||
86 | */ | ||
87 | int __init_or_module at91_set_B_periph(unsigned pin, int use_pullup) | ||
88 | { | ||
89 | void __iomem *pio = pin_to_controller(pin); | ||
90 | unsigned mask = pin_to_mask(pin); | ||
91 | |||
92 | if (!pio) | ||
93 | return -EINVAL; | ||
94 | |||
95 | __raw_writel(mask, pio + PIO_IDR); | ||
96 | __raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR)); | ||
97 | __raw_writel(mask, pio + PIO_BSR); | ||
98 | __raw_writel(mask, pio + PIO_PDR); | ||
99 | return 0; | ||
100 | } | ||
101 | EXPORT_SYMBOL(at91_set_B_periph); | ||
102 | |||
103 | |||
104 | /* | ||
105 | * mux the pin to the gpio controller (instead of "A" or "B" peripheral), and | ||
106 | * configure it for an input. | ||
107 | */ | ||
108 | int __init_or_module at91_set_gpio_input(unsigned pin, int use_pullup) | ||
109 | { | ||
110 | void __iomem *pio = pin_to_controller(pin); | ||
111 | unsigned mask = pin_to_mask(pin); | ||
112 | |||
113 | if (!pio) | ||
114 | return -EINVAL; | ||
115 | |||
116 | __raw_writel(mask, pio + PIO_IDR); | ||
117 | __raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR)); | ||
118 | __raw_writel(mask, pio + PIO_ODR); | ||
119 | __raw_writel(mask, pio + PIO_PER); | ||
120 | return 0; | ||
121 | } | ||
122 | EXPORT_SYMBOL(at91_set_gpio_input); | ||
123 | |||
124 | |||
125 | /* | ||
126 | * mux the pin to the gpio controller (instead of "A" or "B" peripheral), | ||
127 | * and configure it for an output. | ||
128 | */ | ||
129 | int __init_or_module at91_set_gpio_output(unsigned pin, int value) | ||
130 | { | ||
131 | void __iomem *pio = pin_to_controller(pin); | ||
132 | unsigned mask = pin_to_mask(pin); | ||
133 | |||
134 | if (!pio) | ||
135 | return -EINVAL; | ||
136 | |||
137 | __raw_writel(mask, pio + PIO_IDR); | ||
138 | __raw_writel(mask, pio + PIO_PUDR); | ||
139 | __raw_writel(mask, pio + (value ? PIO_SODR : PIO_CODR)); | ||
140 | __raw_writel(mask, pio + PIO_OER); | ||
141 | __raw_writel(mask, pio + PIO_PER); | ||
142 | return 0; | ||
143 | } | ||
144 | EXPORT_SYMBOL(at91_set_gpio_output); | ||
145 | |||
146 | |||
147 | /* | ||
148 | * enable/disable the glitch filter; mostly used with IRQ handling. | ||
149 | */ | ||
150 | int __init_or_module at91_set_deglitch(unsigned pin, int is_on) | ||
151 | { | ||
152 | void __iomem *pio = pin_to_controller(pin); | ||
153 | unsigned mask = pin_to_mask(pin); | ||
154 | |||
155 | if (!pio) | ||
156 | return -EINVAL; | ||
157 | __raw_writel(mask, pio + (is_on ? PIO_IFER : PIO_IFDR)); | ||
158 | return 0; | ||
159 | } | ||
160 | EXPORT_SYMBOL(at91_set_deglitch); | ||
161 | |||
162 | /*--------------------------------------------------------------------------*/ | ||
163 | |||
164 | |||
165 | /* | ||
166 | * assuming the pin is muxed as a gpio output, set its value. | ||
167 | */ | ||
168 | int at91_set_gpio_value(unsigned pin, int value) | ||
169 | { | ||
170 | void __iomem *pio = pin_to_controller(pin); | ||
171 | unsigned mask = pin_to_mask(pin); | ||
172 | |||
173 | if (!pio) | ||
174 | return -EINVAL; | ||
175 | __raw_writel(mask, pio + (value ? PIO_SODR : PIO_CODR)); | ||
176 | return 0; | ||
177 | } | ||
178 | EXPORT_SYMBOL(at91_set_gpio_value); | ||
179 | |||
180 | |||
181 | /* | ||
182 | * read the pin's value (works even if it's not muxed as a gpio). | ||
183 | */ | ||
184 | int at91_get_gpio_value(unsigned pin) | ||
185 | { | ||
186 | void __iomem *pio = pin_to_controller(pin); | ||
187 | unsigned mask = pin_to_mask(pin); | ||
188 | u32 pdsr; | ||
189 | |||
190 | if (!pio) | ||
191 | return -EINVAL; | ||
192 | pdsr = __raw_readl(pio + PIO_PDSR); | ||
193 | return (pdsr & mask) != 0; | ||
194 | } | ||
195 | EXPORT_SYMBOL(at91_get_gpio_value); | ||
196 | |||
197 | /*--------------------------------------------------------------------------*/ | ||
198 | |||
199 | |||
200 | /* Several AIC controller irqs are dispatched through this GPIO handler. | ||
201 | * To use any AT91_PIN_* as an externally triggered IRQ, first call | ||
202 | * at91_set_gpio_input() then maybe enable its glitch filter. | ||
203 | * Then just request_irq() with the pin ID; it works like any ARM IRQ | ||
204 | * handler, though it always triggers on rising and falling edges. | ||
205 | * | ||
206 | * Alternatively, certain pins may be used directly as IRQ0..IRQ6 after | ||
207 | * configuring them with at91_set_a_periph() or at91_set_b_periph(). | ||
208 | * IRQ0..IRQ6 should be configurable, e.g. level vs edge triggering. | ||
209 | */ | ||
210 | |||
211 | static void gpio_irq_mask(unsigned pin) | ||
212 | { | ||
213 | void __iomem *pio = pin_to_controller(pin); | ||
214 | unsigned mask = pin_to_mask(pin); | ||
215 | |||
216 | if (pio) | ||
217 | __raw_writel(mask, pio + PIO_IDR); | ||
218 | } | ||
219 | |||
220 | static void gpio_irq_unmask(unsigned pin) | ||
221 | { | ||
222 | void __iomem *pio = pin_to_controller(pin); | ||
223 | unsigned mask = pin_to_mask(pin); | ||
224 | |||
225 | if (pio) | ||
226 | __raw_writel(mask, pio + PIO_IER); | ||
227 | } | ||
228 | |||
229 | static int gpio_irq_type(unsigned pin, unsigned type) | ||
230 | { | ||
231 | return (type == IRQT_BOTHEDGE) ? 0 : -EINVAL; | ||
232 | } | ||
233 | |||
234 | static struct irqchip gpio_irqchip = { | ||
235 | .mask = gpio_irq_mask, | ||
236 | .unmask = gpio_irq_unmask, | ||
237 | .set_type = gpio_irq_type, | ||
238 | }; | ||
239 | |||
240 | static void gpio_irq_handler(unsigned irq, struct irqdesc *desc, struct pt_regs *regs) | ||
241 | { | ||
242 | unsigned pin; | ||
243 | struct irqdesc *gpio; | ||
244 | void __iomem *pio; | ||
245 | u32 isr; | ||
246 | |||
247 | pio = (void __force __iomem *) desc->chipdata; | ||
248 | |||
249 | /* temporarily mask (level sensitive) parent IRQ */ | ||
250 | desc->chip->ack(irq); | ||
251 | for (;;) { | ||
252 | isr = __raw_readl(pio + PIO_ISR) & __raw_readl(pio + PIO_IMR); | ||
253 | if (!isr) | ||
254 | break; | ||
255 | |||
256 | pin = (unsigned) desc->data; | ||
257 | gpio = &irq_desc[pin]; | ||
258 | |||
259 | while (isr) { | ||
260 | if (isr & 1) | ||
261 | gpio->handle(pin, gpio, regs); | ||
262 | pin++; | ||
263 | gpio++; | ||
264 | isr >>= 1; | ||
265 | } | ||
266 | } | ||
267 | desc->chip->unmask(irq); | ||
268 | /* now it may re-trigger */ | ||
269 | } | ||
270 | |||
271 | /* call this from board-specific init_irq */ | ||
272 | void __init at91_gpio_irq_setup(unsigned banks) | ||
273 | { | ||
274 | unsigned pioc, pin, id; | ||
275 | |||
276 | if (banks > 4) | ||
277 | banks = 4; | ||
278 | for (pioc = 0, pin = PIN_BASE, id = AT91_ID_PIOA; | ||
279 | pioc < banks; | ||
280 | pioc++, id++) { | ||
281 | void __iomem *controller; | ||
282 | unsigned i; | ||
283 | |||
284 | controller = (void __iomem *) AT91_VA_BASE_SYS + pio_controller_offset[pioc]; | ||
285 | __raw_writel(~0, controller + PIO_IDR); | ||
286 | |||
287 | set_irq_data(id, (void *) pin); | ||
288 | set_irq_chipdata(id, (void __force *) controller); | ||
289 | |||
290 | for (i = 0; i < 32; i++, pin++) { | ||
291 | set_irq_chip(pin, &gpio_irqchip); | ||
292 | set_irq_handler(pin, do_simple_IRQ); | ||
293 | set_irq_flags(pin, IRQF_VALID); | ||
294 | } | ||
295 | |||
296 | set_irq_chained_handler(id, gpio_irq_handler); | ||
297 | |||
298 | /* enable the PIO peripheral clock */ | ||
299 | at91_sys_write(AT91_PMC_PCER, 1 << id); | ||
300 | } | ||
301 | pr_info("AT91: %d gpio irqs in %d banks\n", pin - PIN_BASE, banks); | ||
302 | } | ||
diff --git a/arch/arm/mach-at91rm9200/irq.c b/arch/arm/mach-at91rm9200/irq.c new file mode 100644 index 000000000000..cb62bc83a1dd --- /dev/null +++ b/arch/arm/mach-at91rm9200/irq.c | |||
@@ -0,0 +1,170 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/mach-at91rm9200/irq.c | ||
3 | * | ||
4 | * Copyright (C) 2004 SAN People | ||
5 | * Copyright (C) 2004 ATMEL | ||
6 | * Copyright (C) Rick Bronson | ||
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 | * You should have received a copy of the GNU General Public License | ||
19 | * along with this program; if not, write to the Free Software | ||
20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
21 | */ | ||
22 | |||
23 | #include <linux/config.h> | ||
24 | #include <linux/init.h> | ||
25 | #include <linux/module.h> | ||
26 | #include <linux/mm.h> | ||
27 | #include <linux/types.h> | ||
28 | |||
29 | #include <asm/hardware.h> | ||
30 | #include <asm/irq.h> | ||
31 | #include <asm/mach-types.h> | ||
32 | #include <asm/setup.h> | ||
33 | |||
34 | #include <asm/mach/arch.h> | ||
35 | #include <asm/mach/irq.h> | ||
36 | #include <asm/mach/map.h> | ||
37 | |||
38 | #include "generic.h" | ||
39 | |||
40 | /* | ||
41 | * The default interrupt priority levels (0 = lowest, 7 = highest). | ||
42 | */ | ||
43 | static unsigned int at91rm9200_default_irq_priority[NR_AIC_IRQS] __initdata = { | ||
44 | 7, /* Advanced Interrupt Controller */ | ||
45 | 7, /* System Peripheral */ | ||
46 | 0, /* Parallel IO Controller A */ | ||
47 | 0, /* Parallel IO Controller B */ | ||
48 | 0, /* Parallel IO Controller C */ | ||
49 | 0, /* Parallel IO Controller D */ | ||
50 | 6, /* USART 0 */ | ||
51 | 6, /* USART 1 */ | ||
52 | 6, /* USART 2 */ | ||
53 | 6, /* USART 3 */ | ||
54 | 0, /* Multimedia Card Interface */ | ||
55 | 4, /* USB Device Port */ | ||
56 | 0, /* Two-Wire Interface */ | ||
57 | 6, /* Serial Peripheral Interface */ | ||
58 | 5, /* Serial Synchronous Controller */ | ||
59 | 5, /* Serial Synchronous Controller */ | ||
60 | 5, /* Serial Synchronous Controller */ | ||
61 | 0, /* Timer Counter 0 */ | ||
62 | 0, /* Timer Counter 1 */ | ||
63 | 0, /* Timer Counter 2 */ | ||
64 | 0, /* Timer Counter 3 */ | ||
65 | 0, /* Timer Counter 4 */ | ||
66 | 0, /* Timer Counter 5 */ | ||
67 | 3, /* USB Host port */ | ||
68 | 3, /* Ethernet MAC */ | ||
69 | 0, /* Advanced Interrupt Controller */ | ||
70 | 0, /* Advanced Interrupt Controller */ | ||
71 | 0, /* Advanced Interrupt Controller */ | ||
72 | 0, /* Advanced Interrupt Controller */ | ||
73 | 0, /* Advanced Interrupt Controller */ | ||
74 | 0, /* Advanced Interrupt Controller */ | ||
75 | 0 /* Advanced Interrupt Controller */ | ||
76 | }; | ||
77 | |||
78 | |||
79 | static void at91rm9200_mask_irq(unsigned int irq) | ||
80 | { | ||
81 | /* Disable interrupt on AIC */ | ||
82 | at91_sys_write(AT91_AIC_IDCR, 1 << irq); | ||
83 | } | ||
84 | |||
85 | static void at91rm9200_unmask_irq(unsigned int irq) | ||
86 | { | ||
87 | /* Enable interrupt on AIC */ | ||
88 | at91_sys_write(AT91_AIC_IECR, 1 << irq); | ||
89 | } | ||
90 | |||
91 | static int at91rm9200_irq_type(unsigned irq, unsigned type) | ||
92 | { | ||
93 | unsigned int smr, srctype; | ||
94 | |||
95 | /* change triggering only for FIQ and external IRQ0..IRQ6 */ | ||
96 | if ((irq < AT91_ID_IRQ0) && (irq != AT91_ID_FIQ)) | ||
97 | return -EINVAL; | ||
98 | |||
99 | switch (type) { | ||
100 | case IRQT_HIGH: | ||
101 | srctype = AT91_AIC_SRCTYPE_HIGH; | ||
102 | break; | ||
103 | case IRQT_RISING: | ||
104 | srctype = AT91_AIC_SRCTYPE_RISING; | ||
105 | break; | ||
106 | case IRQT_LOW: | ||
107 | srctype = AT91_AIC_SRCTYPE_LOW; | ||
108 | break; | ||
109 | case IRQT_FALLING: | ||
110 | srctype = AT91_AIC_SRCTYPE_FALLING; | ||
111 | break; | ||
112 | default: | ||
113 | return -EINVAL; | ||
114 | } | ||
115 | |||
116 | smr = at91_sys_read(AT91_AIC_SMR(irq)) & ~AT91_AIC_SRCTYPE; | ||
117 | at91_sys_write(AT91_AIC_SMR(irq), smr | srctype); | ||
118 | return 0; | ||
119 | } | ||
120 | |||
121 | static struct irqchip at91rm9200_irq_chip = { | ||
122 | .ack = at91rm9200_mask_irq, | ||
123 | .mask = at91rm9200_mask_irq, | ||
124 | .unmask = at91rm9200_unmask_irq, | ||
125 | .set_type = at91rm9200_irq_type, | ||
126 | }; | ||
127 | |||
128 | /* | ||
129 | * Initialize the AIC interrupt controller. | ||
130 | */ | ||
131 | void __init at91rm9200_init_irq(unsigned int priority[NR_AIC_IRQS]) | ||
132 | { | ||
133 | unsigned int i; | ||
134 | |||
135 | /* No priority list specified for this board -> use defaults */ | ||
136 | if (priority == NULL) | ||
137 | priority = at91rm9200_default_irq_priority; | ||
138 | |||
139 | /* | ||
140 | * The IVR is used by macro get_irqnr_and_base to read and verify. | ||
141 | * The irq number is NR_AIC_IRQS when a spurious interrupt has occurred. | ||
142 | */ | ||
143 | for (i = 0; i < NR_AIC_IRQS; i++) { | ||
144 | /* Put irq number in Source Vector Register: */ | ||
145 | at91_sys_write(AT91_AIC_SVR(i), i); | ||
146 | /* Store the Source Mode Register as defined in table above */ | ||
147 | at91_sys_write(AT91_AIC_SMR(i), AT91_AIC_SRCTYPE_LOW | priority[i]); | ||
148 | |||
149 | set_irq_chip(i, &at91rm9200_irq_chip); | ||
150 | set_irq_handler(i, do_level_IRQ); | ||
151 | set_irq_flags(i, IRQF_VALID | IRQF_PROBE); | ||
152 | |||
153 | /* Perform 8 End Of Interrupt Command to make sure AIC will not Lock out nIRQ */ | ||
154 | if (i < 8) | ||
155 | at91_sys_write(AT91_AIC_EOICR, 0); | ||
156 | } | ||
157 | |||
158 | /* | ||
159 | * Spurious Interrupt ID in Spurious Vector Register is NR_AIC_IRQS | ||
160 | * When there is no current interrupt, the IRQ Vector Register reads the value stored in AIC_SPU | ||
161 | */ | ||
162 | at91_sys_write(AT91_AIC_SPU, NR_AIC_IRQS); | ||
163 | |||
164 | /* No debugging in AIC: Debug (Protect) Control Register */ | ||
165 | at91_sys_write(AT91_AIC_DCR, 0); | ||
166 | |||
167 | /* Disable and clear all interrupts initially */ | ||
168 | at91_sys_write(AT91_AIC_IDCR, 0xFFFFFFFF); | ||
169 | at91_sys_write(AT91_AIC_ICCR, 0xFFFFFFFF); | ||
170 | } | ||
diff --git a/arch/arm/mach-at91rm9200/time.c b/arch/arm/mach-at91rm9200/time.c new file mode 100644 index 000000000000..1b6dd2deeb22 --- /dev/null +++ b/arch/arm/mach-at91rm9200/time.c | |||
@@ -0,0 +1,127 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/mach-at91rm9200/time.c | ||
3 | * | ||
4 | * Copyright (C) 2003 SAN People | ||
5 | * Copyright (C) 2003 ATMEL | ||
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 | * You should have received a copy of the GNU General Public License | ||
18 | * along with this program; if not, write to the Free Software | ||
19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
20 | */ | ||
21 | |||
22 | #include <linux/config.h> | ||
23 | #include <linux/init.h> | ||
24 | #include <linux/interrupt.h> | ||
25 | #include <linux/kernel.h> | ||
26 | #include <linux/sched.h> | ||
27 | #include <linux/time.h> | ||
28 | |||
29 | #include <asm/hardware.h> | ||
30 | #include <asm/io.h> | ||
31 | #include <asm/irq.h> | ||
32 | #include <asm/mach/time.h> | ||
33 | |||
34 | /* | ||
35 | * The ST_CRTR is updated asynchronously to the master clock. It is therefore | ||
36 | * necessary to read it twice (with the same value) to ensure accuracy. | ||
37 | */ | ||
38 | static inline unsigned long read_CRTR(void) { | ||
39 | unsigned long x1, x2; | ||
40 | |||
41 | do { | ||
42 | x1 = at91_sys_read(AT91_ST_CRTR); | ||
43 | x2 = at91_sys_read(AT91_ST_CRTR); | ||
44 | } while (x1 != x2); | ||
45 | |||
46 | return x1; | ||
47 | } | ||
48 | |||
49 | /* | ||
50 | * Returns number of microseconds since last timer interrupt. Note that interrupts | ||
51 | * will have been disabled by do_gettimeofday() | ||
52 | * 'LATCH' is hwclock ticks (see CLOCK_TICK_RATE in timex.h) per jiffy. | ||
53 | * 'tick' is usecs per jiffy (linux/timex.h). | ||
54 | */ | ||
55 | static unsigned long at91rm9200_gettimeoffset(void) | ||
56 | { | ||
57 | unsigned long elapsed; | ||
58 | |||
59 | elapsed = (read_CRTR() - at91_sys_read(AT91_ST_RTAR)) & AT91_ST_ALMV; | ||
60 | |||
61 | return (unsigned long)(elapsed * (tick_nsec / 1000)) / LATCH; | ||
62 | } | ||
63 | |||
64 | /* | ||
65 | * IRQ handler for the timer. | ||
66 | */ | ||
67 | static irqreturn_t at91rm9200_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs) | ||
68 | { | ||
69 | unsigned long rtar; | ||
70 | |||
71 | if (at91_sys_read(AT91_ST_SR) & AT91_ST_PITS) { /* This is a shared interrupt */ | ||
72 | write_seqlock(&xtime_lock); | ||
73 | |||
74 | do { | ||
75 | timer_tick(regs); | ||
76 | rtar = (at91_sys_read(AT91_ST_RTAR) + LATCH) & AT91_ST_ALMV; | ||
77 | at91_sys_write(AT91_ST_RTAR, rtar); | ||
78 | } while (((read_CRTR() - at91_sys_read(AT91_ST_RTAR)) & AT91_ST_ALMV) >= LATCH); | ||
79 | |||
80 | write_sequnlock(&xtime_lock); | ||
81 | |||
82 | return IRQ_HANDLED; | ||
83 | } | ||
84 | else | ||
85 | return IRQ_NONE; /* not handled */ | ||
86 | } | ||
87 | |||
88 | static struct irqaction at91rm9200_timer_irq = { | ||
89 | .name = "at91_tick", | ||
90 | .flags = SA_SHIRQ | SA_INTERRUPT, | ||
91 | .handler = at91rm9200_timer_interrupt | ||
92 | }; | ||
93 | |||
94 | /* | ||
95 | * Set up timer interrupt. | ||
96 | */ | ||
97 | void __init at91rm9200_timer_init(void) | ||
98 | { | ||
99 | /* Disable all timer interrupts */ | ||
100 | at91_sys_write(AT91_ST_IDR, AT91_ST_PITS | AT91_ST_WDOVF | AT91_ST_RTTINC | AT91_ST_ALMS); | ||
101 | (void) at91_sys_read(AT91_ST_SR); /* Clear any pending interrupts */ | ||
102 | |||
103 | /* | ||
104 | * Make IRQs happen for the system timer. | ||
105 | */ | ||
106 | setup_irq(AT91_ID_SYS, &at91rm9200_timer_irq); | ||
107 | |||
108 | /* Set initial alarm to 0 */ | ||
109 | at91_sys_write(AT91_ST_RTAR, 0); | ||
110 | |||
111 | /* Real time counter incremented every 30.51758 microseconds */ | ||
112 | at91_sys_write(AT91_ST_RTMR, 1); | ||
113 | |||
114 | /* Set Period Interval timer */ | ||
115 | at91_sys_write(AT91_ST_PIMR, LATCH); | ||
116 | |||
117 | /* Change the kernel's 'tick' value to 10009 usec. (the default is 10000) */ | ||
118 | tick_usec = (LATCH * 1000000) / CLOCK_TICK_RATE; | ||
119 | |||
120 | /* Enable Period Interval Timer interrupt */ | ||
121 | at91_sys_write(AT91_ST_IER, AT91_ST_PITS); | ||
122 | } | ||
123 | |||
124 | struct sys_timer at91rm9200_timer = { | ||
125 | .init = at91rm9200_timer_init, | ||
126 | .offset = at91rm9200_gettimeoffset, | ||
127 | }; | ||
diff --git a/arch/arm/mach-epxa10db/Kconfig b/arch/arm/mach-epxa10db/Kconfig deleted file mode 100644 index 55d896dd4950..000000000000 --- a/arch/arm/mach-epxa10db/Kconfig +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | if ARCH_CAMELOT | ||
2 | |||
3 | menu "Epxa10db" | ||
4 | |||
5 | comment "PLD hotswap support" | ||
6 | |||
7 | config PLD | ||
8 | bool | ||
9 | default y | ||
10 | |||
11 | config PLD_HOTSWAP | ||
12 | bool "Support for PLD device hotplugging (experimental)" | ||
13 | depends on EXPERIMENTAL | ||
14 | help | ||
15 | This enables support for the dynamic loading and configuration of | ||
16 | compatible drivers when the contents of the PLD are changed. This | ||
17 | is still experimental and requires configuration tools which are | ||
18 | not yet generally available. Say N here. You must enable the kernel | ||
19 | module loader for this feature to work. | ||
20 | |||
21 | endmenu | ||
22 | |||
23 | endif | ||
diff --git a/arch/arm/mach-epxa10db/Makefile b/arch/arm/mach-epxa10db/Makefile deleted file mode 100644 index 24fbd7d3a3c1..000000000000 --- a/arch/arm/mach-epxa10db/Makefile +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | # | ||
2 | # Makefile for the linux kernel. | ||
3 | # | ||
4 | |||
5 | # Object file lists. | ||
6 | |||
7 | obj-y := arch.o irq.o mm.o time.o | ||
8 | obj-m := | ||
9 | obj-n := | ||
10 | obj- := | ||
11 | |||
diff --git a/arch/arm/mach-epxa10db/Makefile.boot b/arch/arm/mach-epxa10db/Makefile.boot deleted file mode 100644 index 28bec7d3fc88..000000000000 --- a/arch/arm/mach-epxa10db/Makefile.boot +++ /dev/null | |||
@@ -1,2 +0,0 @@ | |||
1 | zreladdr-y := 0x00008000 | ||
2 | |||
diff --git a/arch/arm/mach-epxa10db/arch.c b/arch/arm/mach-epxa10db/arch.c deleted file mode 100644 index 44c56571d183..000000000000 --- a/arch/arm/mach-epxa10db/arch.c +++ /dev/null | |||
@@ -1,74 +0,0 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/mach-epxa10db/arch.c | ||
3 | * | ||
4 | * Copyright (C) 2000 Deep Blue Solutions Ltd | ||
5 | * Copyright (C) 2001 Altera Corporation | ||
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 | * You should have received a copy of the GNU General Public License | ||
18 | * along with this program; if not, write to the Free Software | ||
19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
20 | */ | ||
21 | #include <linux/types.h> | ||
22 | #include <linux/init.h> | ||
23 | #include <linux/serial_8250.h> | ||
24 | |||
25 | #include <asm/hardware.h> | ||
26 | #include <asm/setup.h> | ||
27 | #include <asm/mach-types.h> | ||
28 | |||
29 | #include <asm/mach/arch.h> | ||
30 | |||
31 | static struct plat_serial8250_port serial_platform_data[] = { | ||
32 | { | ||
33 | .iobase = 0x3f8, | ||
34 | .irq = IRQ_UARTINT0, | ||
35 | #error FIXME | ||
36 | .uartclk = 0, | ||
37 | .regshift = 0, | ||
38 | .iotype = UPIO_PORT, | ||
39 | .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST, | ||
40 | }, | ||
41 | { | ||
42 | .iobase = 0x2f8, | ||
43 | .irq = IRQ_UARTINT1, | ||
44 | #error FIXME | ||
45 | .uartclk = 0, | ||
46 | .regshift = 0, | ||
47 | .iotype = UPIO_PORT, | ||
48 | .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST, | ||
49 | }, | ||
50 | { }, | ||
51 | }; | ||
52 | |||
53 | static struct platform_device serial_device = { | ||
54 | .name = "serial8250", | ||
55 | .id = PLAT8250_DEV_PLATFORM, | ||
56 | .dev = { | ||
57 | .platform_data = serial_platform_data, | ||
58 | }, | ||
59 | }; | ||
60 | |||
61 | extern void epxa10db_map_io(void); | ||
62 | extern void epxa10db_init_irq(void); | ||
63 | extern struct sys_timer epxa10db_timer; | ||
64 | |||
65 | MACHINE_START(CAMELOT, "Altera Epxa10db") | ||
66 | /* Maintainer: Altera Corporation */ | ||
67 | .phys_ram = 0x00000000, | ||
68 | .phys_io = 0x7fffc000, | ||
69 | .io_pg_offst = ((0xffffc000) >> 18) & 0xfffc, | ||
70 | .map_io = epxa10db_map_io, | ||
71 | .init_irq = epxa10db_init_irq, | ||
72 | .timer = &epxa10db_timer, | ||
73 | MACHINE_END | ||
74 | |||
diff --git a/arch/arm/mach-epxa10db/irq.c b/arch/arm/mach-epxa10db/irq.c deleted file mode 100644 index 9bf927e13309..000000000000 --- a/arch/arm/mach-epxa10db/irq.c +++ /dev/null | |||
@@ -1,82 +0,0 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/mach-epxa10db/irq.c | ||
3 | * | ||
4 | * Copyright (C) 2001 Altera Corporation | ||
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 | * You should have received a copy of the GNU General Public License | ||
17 | * along with this program; if not, write to the Free Software | ||
18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
19 | */ | ||
20 | #include <linux/init.h> | ||
21 | #include <linux/ioport.h> | ||
22 | #include <linux/stddef.h> | ||
23 | #include <linux/timer.h> | ||
24 | #include <linux/list.h> | ||
25 | #include <asm/io.h> | ||
26 | #include <asm/hardware.h> | ||
27 | #include <asm/irq.h> | ||
28 | #include <asm/mach/irq.h> | ||
29 | #include <asm/arch/platform.h> | ||
30 | #include <asm/arch/int_ctrl00.h> | ||
31 | |||
32 | |||
33 | static void epxa_mask_irq(unsigned int irq) | ||
34 | { | ||
35 | writel(1 << irq, INT_MC(IO_ADDRESS(EXC_INT_CTRL00_BASE))); | ||
36 | } | ||
37 | |||
38 | static void epxa_unmask_irq(unsigned int irq) | ||
39 | { | ||
40 | writel(1 << irq, INT_MS(IO_ADDRESS(EXC_INT_CTRL00_BASE))); | ||
41 | } | ||
42 | |||
43 | |||
44 | static struct irqchip epxa_irq_chip = { | ||
45 | .ack = epxa_mask_irq, | ||
46 | .mask = epxa_mask_irq, | ||
47 | .unmask = epxa_unmask_irq, | ||
48 | }; | ||
49 | |||
50 | static struct resource irq_resource = { | ||
51 | .name = "irq_handler", | ||
52 | .start = IO_ADDRESS(EXC_INT_CTRL00_BASE), | ||
53 | .end = IO_ADDRESS(INT_PRIORITY_FC(EXC_INT_CTRL00_BASE))+4, | ||
54 | }; | ||
55 | |||
56 | void __init epxa10db_init_irq(void) | ||
57 | { | ||
58 | unsigned int i; | ||
59 | |||
60 | request_resource(&iomem_resource, &irq_resource); | ||
61 | |||
62 | /* | ||
63 | * This bit sets up the interrupt controller using | ||
64 | * the 6 PLD interrupts mode (the default) each | ||
65 | * irqs is assigned a priority which is the same | ||
66 | * as its interrupt number. This scheme is used because | ||
67 | * its easy, but you may want to change it depending | ||
68 | * on the contents of your PLD | ||
69 | */ | ||
70 | |||
71 | writel(3,INT_MODE(IO_ADDRESS(EXC_INT_CTRL00_BASE))); | ||
72 | for (i = 0; i < NR_IRQS; i++){ | ||
73 | writel(i+1, INT_PRIORITY_P0(IO_ADDRESS(EXC_INT_CTRL00_BASE)) + (4*i)); | ||
74 | set_irq_chip(i,&epxa_irq_chip); | ||
75 | set_irq_handler(i,do_level_IRQ); | ||
76 | set_irq_flags(i, IRQF_VALID | IRQF_PROBE); | ||
77 | } | ||
78 | |||
79 | /* Disable all interrupts */ | ||
80 | writel(-1,INT_MC(IO_ADDRESS(EXC_INT_CTRL00_BASE))); | ||
81 | |||
82 | } | ||
diff --git a/arch/arm/mach-epxa10db/mm.c b/arch/arm/mach-epxa10db/mm.c deleted file mode 100644 index cfd0d2182d44..000000000000 --- a/arch/arm/mach-epxa10db/mm.c +++ /dev/null | |||
@@ -1,71 +0,0 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/mach-epxa10db/mm.c | ||
3 | * | ||
4 | * MM routines for Altera'a Epxa10db board | ||
5 | * | ||
6 | * Copyright (C) 2001 Altera Corporation | ||
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 | * You should have received a copy of the GNU General Public License | ||
19 | * along with this program; if not, write to the Free Software | ||
20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
21 | */ | ||
22 | #include <linux/kernel.h> | ||
23 | #include <linux/init.h> | ||
24 | |||
25 | #include <asm/hardware.h> | ||
26 | #include <asm/io.h> | ||
27 | #include <asm/sizes.h> | ||
28 | #include <asm/page.h> | ||
29 | |||
30 | #include <asm/mach/map.h> | ||
31 | |||
32 | /* Page table mapping for I/O region */ | ||
33 | |||
34 | static struct map_desc epxa10db_io_desc[] __initdata = { | ||
35 | { | ||
36 | .virtual = IO_ADDRESS(EXC_REGISTERS_BASE), | ||
37 | .pfn = __phys_to_pfn(EXC_REGISTERS_BASE), | ||
38 | .length = SZ_16K, | ||
39 | .type = MT_DEVICE | ||
40 | }, { | ||
41 | .virtual = IO_ADDRESS(EXC_PLD_BLOCK0_BASE), | ||
42 | .pfn = __phys_to_pfn(EXC_PLD_BLOCK0_BASE), | ||
43 | .length = SZ_16K, | ||
44 | .type = MT_DEVICE | ||
45 | }, { | ||
46 | .virtual = IO_ADDRESS(EXC_PLD_BLOCK1_BASE), | ||
47 | .pfn =__phys_to_pfn(EXC_PLD_BLOCK1_BASE), | ||
48 | .length = SZ_16K, | ||
49 | .type = MT_DEVICE | ||
50 | }, { | ||
51 | .virtual = IO_ADDRESS(EXC_PLD_BLOCK2_BASE), | ||
52 | .physical = __phys_to_pfn(EXC_PLD_BLOCK2_BASE), | ||
53 | .length = SZ_16K, | ||
54 | .type = MT_DEVICE | ||
55 | }, { | ||
56 | .virtual = IO_ADDRESS(EXC_PLD_BLOCK3_BASE), | ||
57 | .pfn = __phys_to_pfn(EXC_PLD_BLOCK3_BASE), | ||
58 | .length = SZ_16K, | ||
59 | .type = MT_DEVICE | ||
60 | }, { | ||
61 | .virtual = FLASH_VADDR(EXC_EBI_BLOCK0_BASE), | ||
62 | .pfn = __phys_to_pfn(EXC_EBI_BLOCK0_BASE), | ||
63 | .length = SZ_16M, | ||
64 | .type = MT_DEVICE | ||
65 | } | ||
66 | }; | ||
67 | |||
68 | void __init epxa10db_map_io(void) | ||
69 | { | ||
70 | iotable_init(epxa10db_io_desc, ARRAY_SIZE(epxa10db_io_desc)); | ||
71 | } | ||
diff --git a/arch/arm/mach-epxa10db/time.c b/arch/arm/mach-epxa10db/time.c deleted file mode 100644 index 4b1084dde8dd..000000000000 --- a/arch/arm/mach-epxa10db/time.c +++ /dev/null | |||
@@ -1,78 +0,0 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/mach-epxa10db/time.c | ||
3 | * | ||
4 | * Copyright (C) 2000 Deep Blue Solutions | ||
5 | * Copyright (C) 2001 Altera Corporation | ||
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 version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | ||
11 | #include <linux/kernel.h> | ||
12 | #include <linux/init.h> | ||
13 | #include <linux/interrupt.h> | ||
14 | #include <linux/sched.h> | ||
15 | |||
16 | #include <asm/hardware.h> | ||
17 | #include <asm/system.h> | ||
18 | #include <asm/leds.h> | ||
19 | |||
20 | #include <asm/mach/time.h> | ||
21 | |||
22 | #define TIMER00_TYPE (volatile unsigned int*) | ||
23 | #include <asm/arch/timer00.h> | ||
24 | |||
25 | static int epxa10db_set_rtc(void) | ||
26 | { | ||
27 | return 1; | ||
28 | } | ||
29 | |||
30 | static int epxa10db_rtc_init(void) | ||
31 | { | ||
32 | set_rtc = epxa10db_set_rtc; | ||
33 | |||
34 | return 0; | ||
35 | } | ||
36 | |||
37 | __initcall(epxa10db_rtc_init); | ||
38 | |||
39 | |||
40 | /* | ||
41 | * IRQ handler for the timer | ||
42 | */ | ||
43 | static irqreturn_t | ||
44 | epxa10db_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs) | ||
45 | { | ||
46 | write_seqlock(&xtime_lock); | ||
47 | |||
48 | // ...clear the interrupt | ||
49 | *TIMER0_CR(IO_ADDRESS(EXC_TIMER00_BASE))|=TIMER0_CR_CI_MSK; | ||
50 | |||
51 | timer_tick(regs); | ||
52 | write_sequnlock(&xtime_lock); | ||
53 | |||
54 | return IRQ_HANDLED; | ||
55 | } | ||
56 | |||
57 | static struct irqaction epxa10db_timer_irq = { | ||
58 | .name = "Excalibur Timer Tick", | ||
59 | .flags = SA_INTERRUPT | SA_TIMER, | ||
60 | .handler = epxa10db_timer_interrupt, | ||
61 | }; | ||
62 | |||
63 | /* | ||
64 | * Set up timer interrupt, and return the current time in seconds. | ||
65 | */ | ||
66 | static void __init epxa10db_timer_init(void) | ||
67 | { | ||
68 | /* Start the timer */ | ||
69 | *TIMER0_LIMIT(IO_ADDRESS(EXC_TIMER00_BASE))=(unsigned int)(EXC_AHB2_CLK_FREQUENCY/200); | ||
70 | *TIMER0_PRESCALE(IO_ADDRESS(EXC_TIMER00_BASE))=1; | ||
71 | *TIMER0_CR(IO_ADDRESS(EXC_TIMER00_BASE))=TIMER0_CR_IE_MSK | TIMER0_CR_S_MSK; | ||
72 | |||
73 | setup_irq(IRQ_TIMER0, &epxa10db_timer_irq); | ||
74 | } | ||
75 | |||
76 | struct sys_timer epxa10db_timer = { | ||
77 | .init = epxa10db_timer_init, | ||
78 | }; | ||
diff --git a/arch/arm/mach-s3c2410/clock.c b/arch/arm/mach-s3c2410/clock.c index 5830ae3ddd19..fc09ba92d66a 100644 --- a/arch/arm/mach-s3c2410/clock.c +++ b/arch/arm/mach-s3c2410/clock.c | |||
@@ -253,100 +253,101 @@ struct clk s3c24xx_uclk = { | |||
253 | /* clock definitions */ | 253 | /* clock definitions */ |
254 | 254 | ||
255 | static struct clk init_clocks[] = { | 255 | static struct clk init_clocks[] = { |
256 | { .name = "nand", | 256 | { |
257 | .id = -1, | 257 | .name = "nand", |
258 | .parent = &clk_h, | 258 | .id = -1, |
259 | .enable = s3c24xx_clkcon_enable, | 259 | .parent = &clk_h, |
260 | .ctrlbit = S3C2410_CLKCON_NAND | 260 | .enable = s3c24xx_clkcon_enable, |
261 | }, | 261 | .ctrlbit = S3C2410_CLKCON_NAND, |
262 | { .name = "lcd", | 262 | }, { |
263 | .id = -1, | 263 | .name = "lcd", |
264 | .parent = &clk_h, | 264 | .id = -1, |
265 | .enable = s3c24xx_clkcon_enable, | 265 | .parent = &clk_h, |
266 | .ctrlbit = S3C2410_CLKCON_LCDC | 266 | .enable = s3c24xx_clkcon_enable, |
267 | }, | 267 | .ctrlbit = S3C2410_CLKCON_LCDC, |
268 | { .name = "usb-host", | 268 | }, { |
269 | .id = -1, | 269 | .name = "usb-host", |
270 | .parent = &clk_h, | 270 | .id = -1, |
271 | .enable = s3c24xx_clkcon_enable, | 271 | .parent = &clk_h, |
272 | .ctrlbit = S3C2410_CLKCON_USBH | 272 | .enable = s3c24xx_clkcon_enable, |
273 | }, | 273 | .ctrlbit = S3C2410_CLKCON_USBH, |
274 | { .name = "usb-device", | 274 | }, { |
275 | .id = -1, | 275 | .name = "usb-device", |
276 | .parent = &clk_h, | 276 | .id = -1, |
277 | .enable = s3c24xx_clkcon_enable, | 277 | .parent = &clk_h, |
278 | .ctrlbit = S3C2410_CLKCON_USBD | 278 | .enable = s3c24xx_clkcon_enable, |
279 | }, | 279 | .ctrlbit = S3C2410_CLKCON_USBD, |
280 | { .name = "timers", | 280 | }, { |
281 | .id = -1, | 281 | .name = "timers", |
282 | .parent = &clk_p, | 282 | .id = -1, |
283 | .enable = s3c24xx_clkcon_enable, | 283 | .parent = &clk_p, |
284 | .ctrlbit = S3C2410_CLKCON_PWMT | 284 | .enable = s3c24xx_clkcon_enable, |
285 | }, | 285 | .ctrlbit = S3C2410_CLKCON_PWMT, |
286 | { .name = "sdi", | 286 | }, { |
287 | .id = -1, | 287 | .name = "sdi", |
288 | .parent = &clk_p, | 288 | .id = -1, |
289 | .enable = s3c24xx_clkcon_enable, | 289 | .parent = &clk_p, |
290 | .ctrlbit = S3C2410_CLKCON_SDI | 290 | .enable = s3c24xx_clkcon_enable, |
291 | }, | 291 | .ctrlbit = S3C2410_CLKCON_SDI, |
292 | { .name = "uart", | 292 | }, { |
293 | .id = 0, | 293 | .name = "uart", |
294 | .parent = &clk_p, | 294 | .id = 0, |
295 | .enable = s3c24xx_clkcon_enable, | 295 | .parent = &clk_p, |
296 | .ctrlbit = S3C2410_CLKCON_UART0 | 296 | .enable = s3c24xx_clkcon_enable, |
297 | }, | 297 | .ctrlbit = S3C2410_CLKCON_UART0, |
298 | { .name = "uart", | 298 | }, { |
299 | .id = 1, | 299 | .name = "uart", |
300 | .parent = &clk_p, | 300 | .id = 1, |
301 | .enable = s3c24xx_clkcon_enable, | 301 | .parent = &clk_p, |
302 | .ctrlbit = S3C2410_CLKCON_UART1 | 302 | .enable = s3c24xx_clkcon_enable, |
303 | }, | 303 | .ctrlbit = S3C2410_CLKCON_UART1, |
304 | { .name = "uart", | 304 | }, { |
305 | .id = 2, | 305 | .name = "uart", |
306 | .parent = &clk_p, | 306 | .id = 2, |
307 | .enable = s3c24xx_clkcon_enable, | 307 | .parent = &clk_p, |
308 | .ctrlbit = S3C2410_CLKCON_UART2 | 308 | .enable = s3c24xx_clkcon_enable, |
309 | }, | 309 | .ctrlbit = S3C2410_CLKCON_UART2, |
310 | { .name = "gpio", | 310 | }, { |
311 | .id = -1, | 311 | .name = "gpio", |
312 | .parent = &clk_p, | 312 | .id = -1, |
313 | .enable = s3c24xx_clkcon_enable, | 313 | .parent = &clk_p, |
314 | .ctrlbit = S3C2410_CLKCON_GPIO | 314 | .enable = s3c24xx_clkcon_enable, |
315 | }, | 315 | .ctrlbit = S3C2410_CLKCON_GPIO, |
316 | { .name = "rtc", | 316 | }, { |
317 | .id = -1, | 317 | .name = "rtc", |
318 | .parent = &clk_p, | 318 | .id = -1, |
319 | .enable = s3c24xx_clkcon_enable, | 319 | .parent = &clk_p, |
320 | .ctrlbit = S3C2410_CLKCON_RTC | 320 | .enable = s3c24xx_clkcon_enable, |
321 | }, | 321 | .ctrlbit = S3C2410_CLKCON_RTC, |
322 | { .name = "adc", | 322 | }, { |
323 | .id = -1, | 323 | .name = "adc", |
324 | .parent = &clk_p, | 324 | .id = -1, |
325 | .enable = s3c24xx_clkcon_enable, | 325 | .parent = &clk_p, |
326 | .ctrlbit = S3C2410_CLKCON_ADC | 326 | .enable = s3c24xx_clkcon_enable, |
327 | }, | 327 | .ctrlbit = S3C2410_CLKCON_ADC, |
328 | { .name = "i2c", | 328 | }, { |
329 | .id = -1, | 329 | .name = "i2c", |
330 | .parent = &clk_p, | 330 | .id = -1, |
331 | .enable = s3c24xx_clkcon_enable, | 331 | .parent = &clk_p, |
332 | .ctrlbit = S3C2410_CLKCON_IIC | 332 | .enable = s3c24xx_clkcon_enable, |
333 | }, | 333 | .ctrlbit = S3C2410_CLKCON_IIC, |
334 | { .name = "iis", | 334 | }, { |
335 | .id = -1, | 335 | .name = "iis", |
336 | .parent = &clk_p, | 336 | .id = -1, |
337 | .enable = s3c24xx_clkcon_enable, | 337 | .parent = &clk_p, |
338 | .ctrlbit = S3C2410_CLKCON_IIS | 338 | .enable = s3c24xx_clkcon_enable, |
339 | }, | 339 | .ctrlbit = S3C2410_CLKCON_IIS, |
340 | { .name = "spi", | 340 | }, { |
341 | .id = -1, | 341 | .name = "spi", |
342 | .parent = &clk_p, | 342 | .id = -1, |
343 | .enable = s3c24xx_clkcon_enable, | 343 | .parent = &clk_p, |
344 | .ctrlbit = S3C2410_CLKCON_SPI | 344 | .enable = s3c24xx_clkcon_enable, |
345 | }, | 345 | .ctrlbit = S3C2410_CLKCON_SPI, |
346 | { .name = "watchdog", | 346 | }, { |
347 | .id = -1, | 347 | .name = "watchdog", |
348 | .parent = &clk_p, | 348 | .id = -1, |
349 | .ctrlbit = 0 | 349 | .parent = &clk_p, |
350 | .ctrlbit = 0, | ||
350 | } | 351 | } |
351 | }; | 352 | }; |
352 | 353 | ||
@@ -390,16 +391,15 @@ int __init s3c24xx_setup_clocks(unsigned long xtal, | |||
390 | clk_p.rate = pclk; | 391 | clk_p.rate = pclk; |
391 | clk_f.rate = fclk; | 392 | clk_f.rate = fclk; |
392 | 393 | ||
393 | /* it looks like just setting the register here is not good | 394 | /* We must be careful disabling the clocks we are not intending to |
394 | * enough, and causes the odd hang at initial boot time, so | 395 | * be using at boot time, as subsytems such as the LCD which do |
395 | * do all of them indivdually. | 396 | * their own DMA requests to the bus can cause the system to lockup |
397 | * if they where in the middle of requesting bus access. | ||
396 | * | 398 | * |
397 | * I think disabling the LCD clock if the LCD is active is | 399 | * Disabling the LCD clock if the LCD is active is very dangerous, |
398 | * very dangerous, and therefore the bootloader should be | 400 | * and therefore the bootloader should be careful to not enable |
399 | * careful to not enable the LCD clock if it is not needed. | 401 | * the LCD clock if it is not needed. |
400 | * | 402 | */ |
401 | * and of course, this looks neater | ||
402 | */ | ||
403 | 403 | ||
404 | s3c24xx_clk_enable(S3C2410_CLKCON_NAND, 0); | 404 | s3c24xx_clk_enable(S3C2410_CLKCON_NAND, 0); |
405 | s3c24xx_clk_enable(S3C2410_CLKCON_USBH, 0); | 405 | s3c24xx_clk_enable(S3C2410_CLKCON_USBH, 0); |
diff --git a/arch/arm/mm/Kconfig b/arch/arm/mm/Kconfig index e84fdde6edf8..3b79d0e23455 100644 --- a/arch/arm/mm/Kconfig +++ b/arch/arm/mm/Kconfig | |||
@@ -62,8 +62,8 @@ config CPU_ARM720T | |||
62 | # ARM920T | 62 | # ARM920T |
63 | config CPU_ARM920T | 63 | config CPU_ARM920T |
64 | bool "Support ARM920T processor" if !ARCH_S3C2410 | 64 | bool "Support ARM920T processor" if !ARCH_S3C2410 |
65 | depends on ARCH_INTEGRATOR || ARCH_S3C2410 || ARCH_IMX || ARCH_AAEC2000 | 65 | depends on ARCH_INTEGRATOR || ARCH_S3C2410 || ARCH_IMX || ARCH_AAEC2000 || ARCH_AT91RM9200 |
66 | default y if ARCH_S3C2410 | 66 | default y if ARCH_S3C2410 || ARCH_AT91RM9200 |
67 | select CPU_32v4 | 67 | select CPU_32v4 |
68 | select CPU_ABRT_EV4T | 68 | select CPU_ABRT_EV4T |
69 | select CPU_CACHE_V4WT | 69 | select CPU_CACHE_V4WT |
@@ -83,8 +83,8 @@ config CPU_ARM920T | |||
83 | # ARM922T | 83 | # ARM922T |
84 | config CPU_ARM922T | 84 | config CPU_ARM922T |
85 | bool "Support ARM922T processor" if ARCH_INTEGRATOR | 85 | bool "Support ARM922T processor" if ARCH_INTEGRATOR |
86 | depends on ARCH_CAMELOT || ARCH_LH7A40X || ARCH_INTEGRATOR | 86 | depends on ARCH_LH7A40X || ARCH_INTEGRATOR |
87 | default y if ARCH_CAMELOT || ARCH_LH7A40X | 87 | default y if ARCH_LH7A40X |
88 | select CPU_32v4 | 88 | select CPU_32v4 |
89 | select CPU_ABRT_EV4T | 89 | select CPU_ABRT_EV4T |
90 | select CPU_CACHE_V4WT | 90 | select CPU_CACHE_V4WT |
diff --git a/arch/arm/mm/ioremap.c b/arch/arm/mm/ioremap.c index 10901398e4a2..de3ce1eec2ec 100644 --- a/arch/arm/mm/ioremap.c +++ b/arch/arm/mm/ioremap.c | |||
@@ -86,11 +86,12 @@ remap_area_pmd(pmd_t * pmd, unsigned long address, unsigned long size, | |||
86 | } | 86 | } |
87 | 87 | ||
88 | static int | 88 | static int |
89 | remap_area_pages(unsigned long start, unsigned long phys_addr, | 89 | remap_area_pages(unsigned long start, unsigned long pfn, |
90 | unsigned long size, unsigned long flags) | 90 | unsigned long size, unsigned long flags) |
91 | { | 91 | { |
92 | unsigned long address = start; | 92 | unsigned long address = start; |
93 | unsigned long end = start + size; | 93 | unsigned long end = start + size; |
94 | unsigned long phys_addr = __pfn_to_phys(pfn); | ||
94 | int err = 0; | 95 | int err = 0; |
95 | pgd_t * dir; | 96 | pgd_t * dir; |
96 | 97 | ||
@@ -130,36 +131,44 @@ remap_area_pages(unsigned long start, unsigned long phys_addr, | |||
130 | * mapping. See include/asm-arm/proc-armv/pgtable.h for more information. | 131 | * mapping. See include/asm-arm/proc-armv/pgtable.h for more information. |
131 | */ | 132 | */ |
132 | void __iomem * | 133 | void __iomem * |
134 | __ioremap_pfn(unsigned long pfn, unsigned long offset, size_t size, | ||
135 | unsigned long flags) | ||
136 | { | ||
137 | unsigned long addr; | ||
138 | struct vm_struct * area; | ||
139 | |||
140 | area = get_vm_area(size, VM_IOREMAP); | ||
141 | if (!area) | ||
142 | return NULL; | ||
143 | addr = (unsigned long)area->addr; | ||
144 | if (remap_area_pages(addr, pfn, size, flags)) { | ||
145 | vfree(addr); | ||
146 | return NULL; | ||
147 | } | ||
148 | return (void __iomem *) (offset + (char *)addr); | ||
149 | } | ||
150 | EXPORT_SYMBOL(__ioremap_pfn); | ||
151 | |||
152 | void __iomem * | ||
133 | __ioremap(unsigned long phys_addr, size_t size, unsigned long flags) | 153 | __ioremap(unsigned long phys_addr, size_t size, unsigned long flags) |
134 | { | 154 | { |
135 | void * addr; | 155 | unsigned long last_addr; |
136 | struct vm_struct * area; | 156 | unsigned long offset = phys_addr & ~PAGE_MASK; |
137 | unsigned long offset, last_addr; | 157 | unsigned long pfn = __phys_to_pfn(phys_addr); |
138 | 158 | ||
139 | /* Don't allow wraparound or zero size */ | 159 | /* |
160 | * Don't allow wraparound or zero size | ||
161 | */ | ||
140 | last_addr = phys_addr + size - 1; | 162 | last_addr = phys_addr + size - 1; |
141 | if (!size || last_addr < phys_addr) | 163 | if (!size || last_addr < phys_addr) |
142 | return NULL; | 164 | return NULL; |
143 | 165 | ||
144 | /* | 166 | /* |
145 | * Mappings have to be page-aligned | 167 | * Page align the mapping size |
146 | */ | 168 | */ |
147 | offset = phys_addr & ~PAGE_MASK; | ||
148 | phys_addr &= PAGE_MASK; | ||
149 | size = PAGE_ALIGN(last_addr + 1) - phys_addr; | 169 | size = PAGE_ALIGN(last_addr + 1) - phys_addr; |
150 | 170 | ||
151 | /* | 171 | return __ioremap_pfn(pfn, offset, size, flags); |
152 | * Ok, go for it.. | ||
153 | */ | ||
154 | area = get_vm_area(size, VM_IOREMAP); | ||
155 | if (!area) | ||
156 | return NULL; | ||
157 | addr = area->addr; | ||
158 | if (remap_area_pages((unsigned long) addr, phys_addr, size, flags)) { | ||
159 | vfree(addr); | ||
160 | return NULL; | ||
161 | } | ||
162 | return (void __iomem *) (offset + (char *)addr); | ||
163 | } | 172 | } |
164 | EXPORT_SYMBOL(__ioremap); | 173 | EXPORT_SYMBOL(__ioremap); |
165 | 174 | ||
diff --git a/arch/arm/tools/mach-types b/arch/arm/tools/mach-types index 465487470d0e..d0f9bb5e9023 100644 --- a/arch/arm/tools/mach-types +++ b/arch/arm/tools/mach-types | |||
@@ -12,7 +12,7 @@ | |||
12 | # | 12 | # |
13 | # http://www.arm.linux.org.uk/developer/machines/?action=new | 13 | # http://www.arm.linux.org.uk/developer/machines/?action=new |
14 | # | 14 | # |
15 | # Last update: Fri Nov 25 14:43:04 2005 | 15 | # Last update: Mon Jan 9 12:56:42 2006 |
16 | # | 16 | # |
17 | # machine_is_xxx CONFIG_xxxx MACH_TYPE_xxx number | 17 | # machine_is_xxx CONFIG_xxxx MACH_TYPE_xxx number |
18 | # | 18 | # |
@@ -910,3 +910,31 @@ mbus MACH_MBUS MBUS 896 | |||
910 | nadia2vb MACH_NADIA2VB NADIA2VB 897 | 910 | nadia2vb MACH_NADIA2VB NADIA2VB 897 |
911 | r1000 MACH_R1000 R1000 898 | 911 | r1000 MACH_R1000 R1000 898 |
912 | hw90250 MACH_HW90250 HW90250 899 | 912 | hw90250 MACH_HW90250 HW90250 899 |
913 | omap_2430sdp MACH_OMAP_2430SDP OMAP_2430SDP 900 | ||
914 | davinci_evm MACH_DAVINCI_EVM DAVINCI_EVM 901 | ||
915 | omap_tornado MACH_OMAP_TORNADO OMAP_TORNADO 902 | ||
916 | olocreek MACH_OLOCREEK OLOCREEK 903 | ||
917 | palmz72 MACH_PALMZ72 PALMZ72 904 | ||
918 | nxdb500 MACH_NXDB500 NXDB500 905 | ||
919 | apf9328 MACH_APF9328 APF9328 906 | ||
920 | omap_wipoq MACH_OMAP_WIPOQ OMAP_WIPOQ 907 | ||
921 | omap_twip MACH_OMAP_TWIP OMAP_TWIP 908 | ||
922 | xscale_treo650 MACH_XSCALE_PALMTREO650 XSCALE_PALMTREO650 909 | ||
923 | acumen MACH_ACUMEN ACUMEN 910 | ||
924 | xp100 MACH_XP100 XP100 911 | ||
925 | fs2410 MACH_FS2410 FS2410 912 | ||
926 | pxa270_cerf MACH_PXA270_CERF PXA270_CERF 913 | ||
927 | sq2ftlpalm MACH_SQ2FTLPALM SQ2FTLPALM 914 | ||
928 | bsemserver MACH_BSEMSERVER BSEMSERVER 915 | ||
929 | netclient MACH_NETCLIENT NETCLIENT 916 | ||
930 | xscale_palmtt5 MACH_XSCALE_PALMTT5 XSCALE_PALMTT5 917 | ||
931 | xscale_palmtc MACH_OMAP_PALMTC OMAP_PALMTC 918 | ||
932 | omap_apollon MACH_OMAP_APOLLON OMAP_APOLLON 919 | ||
933 | argonlvevb MACH_ARGONLVEVB ARGONLVEVB 920 | ||
934 | rea_2d MACH_REA_2D REA_2D 921 | ||
935 | eti3e524 MACH_TI3E524 TI3E524 922 | ||
936 | ateb9200 MACH_ATEB9200 ATEB9200 923 | ||
937 | auckland MACH_AUCKLAND AUCKLAND 924 | ||
938 | ak3220m MACH_AK3320M AK3320M 925 | ||
939 | duramax MACH_DURAMAX DURAMAX 926 | ||
940 | n35 MACH_N35 N35 927 | ||