diff options
Diffstat (limited to 'arch/sh/kernel/cpu')
42 files changed, 6236 insertions, 374 deletions
diff --git a/arch/sh/kernel/cpu/Makefile b/arch/sh/kernel/cpu/Makefile index d055a3ea6b4b..f471d242774e 100644 --- a/arch/sh/kernel/cpu/Makefile +++ b/arch/sh/kernel/cpu/Makefile | |||
@@ -6,8 +6,14 @@ obj-$(CONFIG_CPU_SH2) = sh2/ | |||
6 | obj-$(CONFIG_CPU_SH2A) = sh2a/ | 6 | obj-$(CONFIG_CPU_SH2A) = sh2a/ |
7 | obj-$(CONFIG_CPU_SH3) = sh3/ | 7 | obj-$(CONFIG_CPU_SH3) = sh3/ |
8 | obj-$(CONFIG_CPU_SH4) = sh4/ | 8 | obj-$(CONFIG_CPU_SH4) = sh4/ |
9 | obj-$(CONFIG_CPU_SH5) = sh5/ | ||
10 | |||
11 | # Special cases for family ancestry. | ||
12 | |||
9 | obj-$(CONFIG_CPU_SH4A) += sh4a/ | 13 | obj-$(CONFIG_CPU_SH4A) += sh4a/ |
10 | 14 | ||
15 | # Common interfaces. | ||
16 | |||
11 | obj-$(CONFIG_UBC_WAKEUP) += ubc.o | 17 | obj-$(CONFIG_UBC_WAKEUP) += ubc.o |
12 | obj-$(CONFIG_SH_ADC) += adc.o | 18 | obj-$(CONFIG_SH_ADC) += adc.o |
13 | 19 | ||
diff --git a/arch/sh/kernel/cpu/init.c b/arch/sh/kernel/cpu/init.c index c217c4bf0085..80a31329ead9 100644 --- a/arch/sh/kernel/cpu/init.c +++ b/arch/sh/kernel/cpu/init.c | |||
@@ -13,6 +13,7 @@ | |||
13 | #include <linux/init.h> | 13 | #include <linux/init.h> |
14 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
15 | #include <linux/mm.h> | 15 | #include <linux/mm.h> |
16 | #include <linux/log2.h> | ||
16 | #include <asm/mmu_context.h> | 17 | #include <asm/mmu_context.h> |
17 | #include <asm/processor.h> | 18 | #include <asm/processor.h> |
18 | #include <asm/uaccess.h> | 19 | #include <asm/uaccess.h> |
@@ -20,9 +21,12 @@ | |||
20 | #include <asm/system.h> | 21 | #include <asm/system.h> |
21 | #include <asm/cacheflush.h> | 22 | #include <asm/cacheflush.h> |
22 | #include <asm/cache.h> | 23 | #include <asm/cache.h> |
24 | #include <asm/elf.h> | ||
23 | #include <asm/io.h> | 25 | #include <asm/io.h> |
24 | #include <asm/ubc.h> | ||
25 | #include <asm/smp.h> | 26 | #include <asm/smp.h> |
27 | #ifdef CONFIG_SUPERH32 | ||
28 | #include <asm/ubc.h> | ||
29 | #endif | ||
26 | 30 | ||
27 | /* | 31 | /* |
28 | * Generic wrapper for command line arguments to disable on-chip | 32 | * Generic wrapper for command line arguments to disable on-chip |
@@ -61,25 +65,12 @@ static void __init speculative_execution_init(void) | |||
61 | /* | 65 | /* |
62 | * Generic first-level cache init | 66 | * Generic first-level cache init |
63 | */ | 67 | */ |
64 | static void __init cache_init(void) | 68 | #ifdef CONFIG_SUPERH32 |
69 | static void __uses_jump_to_uncached cache_init(void) | ||
65 | { | 70 | { |
66 | unsigned long ccr, flags; | 71 | unsigned long ccr, flags; |
67 | 72 | ||
68 | /* First setup the rest of the I-cache info */ | 73 | jump_to_uncached(); |
69 | current_cpu_data.icache.entry_mask = current_cpu_data.icache.way_incr - | ||
70 | current_cpu_data.icache.linesz; | ||
71 | |||
72 | current_cpu_data.icache.way_size = current_cpu_data.icache.sets * | ||
73 | current_cpu_data.icache.linesz; | ||
74 | |||
75 | /* And the D-cache too */ | ||
76 | current_cpu_data.dcache.entry_mask = current_cpu_data.dcache.way_incr - | ||
77 | current_cpu_data.dcache.linesz; | ||
78 | |||
79 | current_cpu_data.dcache.way_size = current_cpu_data.dcache.sets * | ||
80 | current_cpu_data.dcache.linesz; | ||
81 | |||
82 | jump_to_P2(); | ||
83 | ccr = ctrl_inl(CCR); | 74 | ccr = ctrl_inl(CCR); |
84 | 75 | ||
85 | /* | 76 | /* |
@@ -156,7 +147,31 @@ static void __init cache_init(void) | |||
156 | #endif | 147 | #endif |
157 | 148 | ||
158 | ctrl_outl(flags, CCR); | 149 | ctrl_outl(flags, CCR); |
159 | back_to_P1(); | 150 | back_to_cached(); |
151 | } | ||
152 | #else | ||
153 | #define cache_init() do { } while (0) | ||
154 | #endif | ||
155 | |||
156 | #define CSHAPE(totalsize, linesize, assoc) \ | ||
157 | ((totalsize & ~0xff) | (linesize << 4) | assoc) | ||
158 | |||
159 | #define CACHE_DESC_SHAPE(desc) \ | ||
160 | CSHAPE((desc).way_size * (desc).ways, ilog2((desc).linesz), (desc).ways) | ||
161 | |||
162 | static void detect_cache_shape(void) | ||
163 | { | ||
164 | l1d_cache_shape = CACHE_DESC_SHAPE(current_cpu_data.dcache); | ||
165 | |||
166 | if (current_cpu_data.dcache.flags & SH_CACHE_COMBINED) | ||
167 | l1i_cache_shape = l1d_cache_shape; | ||
168 | else | ||
169 | l1i_cache_shape = CACHE_DESC_SHAPE(current_cpu_data.icache); | ||
170 | |||
171 | if (current_cpu_data.flags & CPU_HAS_L2_CACHE) | ||
172 | l2_cache_shape = CACHE_DESC_SHAPE(current_cpu_data.scache); | ||
173 | else | ||
174 | l2_cache_shape = -1; /* No S-cache */ | ||
160 | } | 175 | } |
161 | 176 | ||
162 | #ifdef CONFIG_SH_DSP | 177 | #ifdef CONFIG_SH_DSP |
@@ -228,14 +243,32 @@ asmlinkage void __cpuinit sh_cpu_init(void) | |||
228 | if (current_cpu_data.type == CPU_SH_NONE) | 243 | if (current_cpu_data.type == CPU_SH_NONE) |
229 | panic("Unknown CPU"); | 244 | panic("Unknown CPU"); |
230 | 245 | ||
246 | /* First setup the rest of the I-cache info */ | ||
247 | current_cpu_data.icache.entry_mask = current_cpu_data.icache.way_incr - | ||
248 | current_cpu_data.icache.linesz; | ||
249 | |||
250 | current_cpu_data.icache.way_size = current_cpu_data.icache.sets * | ||
251 | current_cpu_data.icache.linesz; | ||
252 | |||
253 | /* And the D-cache too */ | ||
254 | current_cpu_data.dcache.entry_mask = current_cpu_data.dcache.way_incr - | ||
255 | current_cpu_data.dcache.linesz; | ||
256 | |||
257 | current_cpu_data.dcache.way_size = current_cpu_data.dcache.sets * | ||
258 | current_cpu_data.dcache.linesz; | ||
259 | |||
231 | /* Init the cache */ | 260 | /* Init the cache */ |
232 | cache_init(); | 261 | cache_init(); |
233 | 262 | ||
234 | if (raw_smp_processor_id() == 0) | 263 | if (raw_smp_processor_id() == 0) { |
235 | shm_align_mask = max_t(unsigned long, | 264 | shm_align_mask = max_t(unsigned long, |
236 | current_cpu_data.dcache.way_size - 1, | 265 | current_cpu_data.dcache.way_size - 1, |
237 | PAGE_SIZE - 1); | 266 | PAGE_SIZE - 1); |
238 | 267 | ||
268 | /* Boot CPU sets the cache shape */ | ||
269 | detect_cache_shape(); | ||
270 | } | ||
271 | |||
239 | /* Disable the FPU */ | 272 | /* Disable the FPU */ |
240 | if (fpu_disabled) { | 273 | if (fpu_disabled) { |
241 | printk("FPU Disabled\n"); | 274 | printk("FPU Disabled\n"); |
@@ -273,7 +306,10 @@ asmlinkage void __cpuinit sh_cpu_init(void) | |||
273 | * like PTRACE_SINGLESTEP or doing hardware watchpoints in GDB. So .. | 306 | * like PTRACE_SINGLESTEP or doing hardware watchpoints in GDB. So .. |
274 | * we wake it up and hope that all is well. | 307 | * we wake it up and hope that all is well. |
275 | */ | 308 | */ |
309 | #ifdef CONFIG_SUPERH32 | ||
276 | if (raw_smp_processor_id() == 0) | 310 | if (raw_smp_processor_id() == 0) |
277 | ubc_wakeup(); | 311 | ubc_wakeup(); |
312 | #endif | ||
313 | |||
278 | speculative_execution_init(); | 314 | speculative_execution_init(); |
279 | } | 315 | } |
diff --git a/arch/sh/kernel/cpu/irq/Makefile b/arch/sh/kernel/cpu/irq/Makefile index 8da8e178f09c..cc1836e47a5d 100644 --- a/arch/sh/kernel/cpu/irq/Makefile +++ b/arch/sh/kernel/cpu/irq/Makefile | |||
@@ -1,7 +1,9 @@ | |||
1 | # | 1 | # |
2 | # Makefile for the Linux/SuperH CPU-specifc IRQ handlers. | 2 | # Makefile for the Linux/SuperH CPU-specifc IRQ handlers. |
3 | # | 3 | # |
4 | obj-y += imask.o intc.o | 4 | obj-y += intc.o |
5 | 5 | ||
6 | obj-$(CONFIG_SUPERH32) += imask.o | ||
7 | obj-$(CONFIG_CPU_SH5) += intc-sh5.o | ||
6 | obj-$(CONFIG_CPU_HAS_IPR_IRQ) += ipr.o | 8 | obj-$(CONFIG_CPU_HAS_IPR_IRQ) += ipr.o |
7 | obj-$(CONFIG_CPU_HAS_MASKREG_IRQ) += maskreg.o | 9 | obj-$(CONFIG_CPU_HAS_MASKREG_IRQ) += maskreg.o |
diff --git a/arch/sh/kernel/cpu/irq/intc-sh5.c b/arch/sh/kernel/cpu/irq/intc-sh5.c new file mode 100644 index 000000000000..43ee7a9a4f0b --- /dev/null +++ b/arch/sh/kernel/cpu/irq/intc-sh5.c | |||
@@ -0,0 +1,257 @@ | |||
1 | /* | ||
2 | * arch/sh/kernel/cpu/irq/intc-sh5.c | ||
3 | * | ||
4 | * Interrupt Controller support for SH5 INTC. | ||
5 | * | ||
6 | * Copyright (C) 2000, 2001 Paolo Alberelli | ||
7 | * Copyright (C) 2003 Paul Mundt | ||
8 | * | ||
9 | * Per-interrupt selective. IRLM=0 (Fixed priority) is not | ||
10 | * supported being useless without a cascaded interrupt | ||
11 | * controller. | ||
12 | * | ||
13 | * This file is subject to the terms and conditions of the GNU General Public | ||
14 | * License. See the file "COPYING" in the main directory of this archive | ||
15 | * for more details. | ||
16 | */ | ||
17 | #include <linux/init.h> | ||
18 | #include <linux/interrupt.h> | ||
19 | #include <linux/irq.h> | ||
20 | #include <linux/io.h> | ||
21 | #include <linux/kernel.h> | ||
22 | #include <linux/bitops.h> | ||
23 | #include <asm/cpu/irq.h> | ||
24 | #include <asm/page.h> | ||
25 | |||
26 | /* | ||
27 | * Maybe the generic Peripheral block could move to a more | ||
28 | * generic include file. INTC Block will be defined here | ||
29 | * and only here to make INTC self-contained in a single | ||
30 | * file. | ||
31 | */ | ||
32 | #define INTC_BLOCK_OFFSET 0x01000000 | ||
33 | |||
34 | /* Base */ | ||
35 | #define INTC_BASE PHYS_PERIPHERAL_BLOCK + \ | ||
36 | INTC_BLOCK_OFFSET | ||
37 | |||
38 | /* Address */ | ||
39 | #define INTC_ICR_SET (intc_virt + 0x0) | ||
40 | #define INTC_ICR_CLEAR (intc_virt + 0x8) | ||
41 | #define INTC_INTPRI_0 (intc_virt + 0x10) | ||
42 | #define INTC_INTSRC_0 (intc_virt + 0x50) | ||
43 | #define INTC_INTSRC_1 (intc_virt + 0x58) | ||
44 | #define INTC_INTREQ_0 (intc_virt + 0x60) | ||
45 | #define INTC_INTREQ_1 (intc_virt + 0x68) | ||
46 | #define INTC_INTENB_0 (intc_virt + 0x70) | ||
47 | #define INTC_INTENB_1 (intc_virt + 0x78) | ||
48 | #define INTC_INTDSB_0 (intc_virt + 0x80) | ||
49 | #define INTC_INTDSB_1 (intc_virt + 0x88) | ||
50 | |||
51 | #define INTC_ICR_IRLM 0x1 | ||
52 | #define INTC_INTPRI_PREGS 8 /* 8 Priority Registers */ | ||
53 | #define INTC_INTPRI_PPREG 8 /* 8 Priorities per Register */ | ||
54 | |||
55 | |||
56 | /* | ||
57 | * Mapper between the vector ordinal and the IRQ number | ||
58 | * passed to kernel/device drivers. | ||
59 | */ | ||
60 | int intc_evt_to_irq[(0xE20/0x20)+1] = { | ||
61 | -1, -1, -1, -1, -1, -1, -1, -1, /* 0x000 - 0x0E0 */ | ||
62 | -1, -1, -1, -1, -1, -1, -1, -1, /* 0x100 - 0x1E0 */ | ||
63 | 0, 0, 0, 0, 0, 1, 0, 0, /* 0x200 - 0x2E0 */ | ||
64 | 2, 0, 0, 3, 0, 0, 0, -1, /* 0x300 - 0x3E0 */ | ||
65 | 32, 33, 34, 35, 36, 37, 38, -1, /* 0x400 - 0x4E0 */ | ||
66 | -1, -1, -1, 63, -1, -1, -1, -1, /* 0x500 - 0x5E0 */ | ||
67 | -1, -1, 18, 19, 20, 21, 22, -1, /* 0x600 - 0x6E0 */ | ||
68 | 39, 40, 41, 42, -1, -1, -1, -1, /* 0x700 - 0x7E0 */ | ||
69 | 4, 5, 6, 7, -1, -1, -1, -1, /* 0x800 - 0x8E0 */ | ||
70 | -1, -1, -1, -1, -1, -1, -1, -1, /* 0x900 - 0x9E0 */ | ||
71 | 12, 13, 14, 15, 16, 17, -1, -1, /* 0xA00 - 0xAE0 */ | ||
72 | -1, -1, -1, -1, -1, -1, -1, -1, /* 0xB00 - 0xBE0 */ | ||
73 | -1, -1, -1, -1, -1, -1, -1, -1, /* 0xC00 - 0xCE0 */ | ||
74 | -1, -1, -1, -1, -1, -1, -1, -1, /* 0xD00 - 0xDE0 */ | ||
75 | -1, -1 /* 0xE00 - 0xE20 */ | ||
76 | }; | ||
77 | |||
78 | /* | ||
79 | * Opposite mapper. | ||
80 | */ | ||
81 | static int IRQ_to_vectorN[NR_INTC_IRQS] = { | ||
82 | 0x12, 0x15, 0x18, 0x1B, 0x40, 0x41, 0x42, 0x43, /* 0- 7 */ | ||
83 | -1, -1, -1, -1, 0x50, 0x51, 0x52, 0x53, /* 8-15 */ | ||
84 | 0x54, 0x55, 0x32, 0x33, 0x34, 0x35, 0x36, -1, /* 16-23 */ | ||
85 | -1, -1, -1, -1, -1, -1, -1, -1, /* 24-31 */ | ||
86 | 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x38, /* 32-39 */ | ||
87 | 0x39, 0x3A, 0x3B, -1, -1, -1, -1, -1, /* 40-47 */ | ||
88 | -1, -1, -1, -1, -1, -1, -1, -1, /* 48-55 */ | ||
89 | -1, -1, -1, -1, -1, -1, -1, 0x2B, /* 56-63 */ | ||
90 | |||
91 | }; | ||
92 | |||
93 | static unsigned long intc_virt; | ||
94 | |||
95 | static unsigned int startup_intc_irq(unsigned int irq); | ||
96 | static void shutdown_intc_irq(unsigned int irq); | ||
97 | static void enable_intc_irq(unsigned int irq); | ||
98 | static void disable_intc_irq(unsigned int irq); | ||
99 | static void mask_and_ack_intc(unsigned int); | ||
100 | static void end_intc_irq(unsigned int irq); | ||
101 | |||
102 | static struct hw_interrupt_type intc_irq_type = { | ||
103 | .typename = "INTC", | ||
104 | .startup = startup_intc_irq, | ||
105 | .shutdown = shutdown_intc_irq, | ||
106 | .enable = enable_intc_irq, | ||
107 | .disable = disable_intc_irq, | ||
108 | .ack = mask_and_ack_intc, | ||
109 | .end = end_intc_irq | ||
110 | }; | ||
111 | |||
112 | static int irlm; /* IRL mode */ | ||
113 | |||
114 | static unsigned int startup_intc_irq(unsigned int irq) | ||
115 | { | ||
116 | enable_intc_irq(irq); | ||
117 | return 0; /* never anything pending */ | ||
118 | } | ||
119 | |||
120 | static void shutdown_intc_irq(unsigned int irq) | ||
121 | { | ||
122 | disable_intc_irq(irq); | ||
123 | } | ||
124 | |||
125 | static void enable_intc_irq(unsigned int irq) | ||
126 | { | ||
127 | unsigned long reg; | ||
128 | unsigned long bitmask; | ||
129 | |||
130 | if ((irq <= IRQ_IRL3) && (irlm == NO_PRIORITY)) | ||
131 | printk("Trying to use straight IRL0-3 with an encoding platform.\n"); | ||
132 | |||
133 | if (irq < 32) { | ||
134 | reg = INTC_INTENB_0; | ||
135 | bitmask = 1 << irq; | ||
136 | } else { | ||
137 | reg = INTC_INTENB_1; | ||
138 | bitmask = 1 << (irq - 32); | ||
139 | } | ||
140 | |||
141 | ctrl_outl(bitmask, reg); | ||
142 | } | ||
143 | |||
144 | static void disable_intc_irq(unsigned int irq) | ||
145 | { | ||
146 | unsigned long reg; | ||
147 | unsigned long bitmask; | ||
148 | |||
149 | if (irq < 32) { | ||
150 | reg = INTC_INTDSB_0; | ||
151 | bitmask = 1 << irq; | ||
152 | } else { | ||
153 | reg = INTC_INTDSB_1; | ||
154 | bitmask = 1 << (irq - 32); | ||
155 | } | ||
156 | |||
157 | ctrl_outl(bitmask, reg); | ||
158 | } | ||
159 | |||
160 | static void mask_and_ack_intc(unsigned int irq) | ||
161 | { | ||
162 | disable_intc_irq(irq); | ||
163 | } | ||
164 | |||
165 | static void end_intc_irq(unsigned int irq) | ||
166 | { | ||
167 | enable_intc_irq(irq); | ||
168 | } | ||
169 | |||
170 | /* For future use, if we ever support IRLM=0) */ | ||
171 | void make_intc_irq(unsigned int irq) | ||
172 | { | ||
173 | disable_irq_nosync(irq); | ||
174 | irq_desc[irq].chip = &intc_irq_type; | ||
175 | disable_intc_irq(irq); | ||
176 | } | ||
177 | |||
178 | #if defined(CONFIG_PROC_FS) && defined(CONFIG_SYSCTL) | ||
179 | int intc_irq_describe(char* p, int irq) | ||
180 | { | ||
181 | if (irq < NR_INTC_IRQS) | ||
182 | return sprintf(p, "(0x%3x)", IRQ_to_vectorN[irq]*0x20); | ||
183 | else | ||
184 | return 0; | ||
185 | } | ||
186 | #endif | ||
187 | |||
188 | void __init plat_irq_setup(void) | ||
189 | { | ||
190 | unsigned long long __dummy0, __dummy1=~0x00000000100000f0; | ||
191 | unsigned long reg; | ||
192 | unsigned long data; | ||
193 | int i; | ||
194 | |||
195 | intc_virt = onchip_remap(INTC_BASE, 1024, "INTC"); | ||
196 | if (!intc_virt) { | ||
197 | panic("Unable to remap INTC\n"); | ||
198 | } | ||
199 | |||
200 | |||
201 | /* Set default: per-line enable/disable, priority driven ack/eoi */ | ||
202 | for (i = 0; i < NR_INTC_IRQS; i++) { | ||
203 | if (platform_int_priority[i] != NO_PRIORITY) { | ||
204 | irq_desc[i].chip = &intc_irq_type; | ||
205 | } | ||
206 | } | ||
207 | |||
208 | |||
209 | /* Disable all interrupts and set all priorities to 0 to avoid trouble */ | ||
210 | ctrl_outl(-1, INTC_INTDSB_0); | ||
211 | ctrl_outl(-1, INTC_INTDSB_1); | ||
212 | |||
213 | for (reg = INTC_INTPRI_0, i = 0; i < INTC_INTPRI_PREGS; i++, reg += 8) | ||
214 | ctrl_outl( NO_PRIORITY, reg); | ||
215 | |||
216 | |||
217 | /* Set IRLM */ | ||
218 | /* If all the priorities are set to 'no priority', then | ||
219 | * assume we are using encoded mode. | ||
220 | */ | ||
221 | irlm = platform_int_priority[IRQ_IRL0] + platform_int_priority[IRQ_IRL1] + \ | ||
222 | platform_int_priority[IRQ_IRL2] + platform_int_priority[IRQ_IRL3]; | ||
223 | |||
224 | if (irlm == NO_PRIORITY) { | ||
225 | /* IRLM = 0 */ | ||
226 | reg = INTC_ICR_CLEAR; | ||
227 | i = IRQ_INTA; | ||
228 | printk("Trying to use encoded IRL0-3. IRLs unsupported.\n"); | ||
229 | } else { | ||
230 | /* IRLM = 1 */ | ||
231 | reg = INTC_ICR_SET; | ||
232 | i = IRQ_IRL0; | ||
233 | } | ||
234 | ctrl_outl(INTC_ICR_IRLM, reg); | ||
235 | |||
236 | /* Set interrupt priorities according to platform description */ | ||
237 | for (data = 0, reg = INTC_INTPRI_0; i < NR_INTC_IRQS; i++) { | ||
238 | data |= platform_int_priority[i] << ((i % INTC_INTPRI_PPREG) * 4); | ||
239 | if ((i % INTC_INTPRI_PPREG) == (INTC_INTPRI_PPREG - 1)) { | ||
240 | /* Upon the 7th, set Priority Register */ | ||
241 | ctrl_outl(data, reg); | ||
242 | data = 0; | ||
243 | reg += 8; | ||
244 | } | ||
245 | } | ||
246 | |||
247 | /* | ||
248 | * And now let interrupts come in. | ||
249 | * sti() is not enough, we need to | ||
250 | * lower priority, too. | ||
251 | */ | ||
252 | __asm__ __volatile__("getcon " __SR ", %0\n\t" | ||
253 | "and %0, %1, %0\n\t" | ||
254 | "putcon %0, " __SR "\n\t" | ||
255 | : "=&r" (__dummy0) | ||
256 | : "r" (__dummy1)); | ||
257 | } | ||
diff --git a/arch/sh/kernel/cpu/irq/intc.c b/arch/sh/kernel/cpu/irq/intc.c index 6ac018c15e03..84806b2027f8 100644 --- a/arch/sh/kernel/cpu/irq/intc.c +++ b/arch/sh/kernel/cpu/irq/intc.c | |||
@@ -335,31 +335,6 @@ static intc_enum __init intc_grp_id(struct intc_desc *desc, | |||
335 | return 0; | 335 | return 0; |
336 | } | 336 | } |
337 | 337 | ||
338 | static unsigned int __init intc_prio_value(struct intc_desc *desc, | ||
339 | intc_enum enum_id, int do_grps) | ||
340 | { | ||
341 | struct intc_prio *p = desc->priorities; | ||
342 | unsigned int i; | ||
343 | |||
344 | for (i = 0; p && enum_id && i < desc->nr_priorities; i++) { | ||
345 | p = desc->priorities + i; | ||
346 | |||
347 | if (p->enum_id != enum_id) | ||
348 | continue; | ||
349 | |||
350 | return p->priority; | ||
351 | } | ||
352 | |||
353 | if (do_grps) | ||
354 | return intc_prio_value(desc, intc_grp_id(desc, enum_id), 0); | ||
355 | |||
356 | /* default to the lowest priority possible if no priority is set | ||
357 | * - this needs to be at least 2 for 5-bit priorities on 7780 | ||
358 | */ | ||
359 | |||
360 | return 2; | ||
361 | } | ||
362 | |||
363 | static unsigned int __init intc_mask_data(struct intc_desc *desc, | 338 | static unsigned int __init intc_mask_data(struct intc_desc *desc, |
364 | struct intc_desc_int *d, | 339 | struct intc_desc_int *d, |
365 | intc_enum enum_id, int do_grps) | 340 | intc_enum enum_id, int do_grps) |
@@ -518,8 +493,10 @@ static void __init intc_register_irq(struct intc_desc *desc, | |||
518 | handle_level_irq, "level"); | 493 | handle_level_irq, "level"); |
519 | set_irq_chip_data(irq, (void *)data[primary]); | 494 | set_irq_chip_data(irq, (void *)data[primary]); |
520 | 495 | ||
521 | /* record the desired priority level */ | 496 | /* set priority level |
522 | intc_prio_level[irq] = intc_prio_value(desc, enum_id, 1); | 497 | * - this needs to be at least 2 for 5-bit priorities on 7780 |
498 | */ | ||
499 | intc_prio_level[irq] = 2; | ||
523 | 500 | ||
524 | /* enable secondary masking method if present */ | 501 | /* enable secondary masking method if present */ |
525 | if (data[!primary]) | 502 | if (data[!primary]) |
diff --git a/arch/sh/kernel/cpu/sh2/entry.S b/arch/sh/kernel/cpu/sh2/entry.S index ee8f1fe84b08..7a26569e7956 100644 --- a/arch/sh/kernel/cpu/sh2/entry.S +++ b/arch/sh/kernel/cpu/sh2/entry.S | |||
@@ -149,6 +149,14 @@ ENTRY(exception_handler) | |||
149 | mov #32,r8 | 149 | mov #32,r8 |
150 | cmp/hs r8,r9 | 150 | cmp/hs r8,r9 |
151 | bt trap_entry ! 64 > vec >= 32 is trap | 151 | bt trap_entry ! 64 > vec >= 32 is trap |
152 | |||
153 | #if defined(CONFIG_SH_FPU) | ||
154 | mov #13,r8 | ||
155 | cmp/eq r8,r9 | ||
156 | bt 10f ! fpu | ||
157 | nop | ||
158 | #endif | ||
159 | |||
152 | mov.l 4f,r8 | 160 | mov.l 4f,r8 |
153 | mov r9,r4 | 161 | mov r9,r4 |
154 | shll2 r9 | 162 | shll2 r9 |
@@ -158,6 +166,10 @@ ENTRY(exception_handler) | |||
158 | cmp/eq r9,r8 | 166 | cmp/eq r9,r8 |
159 | bf 3f | 167 | bf 3f |
160 | mov.l 8f,r8 ! unhandled exception | 168 | mov.l 8f,r8 ! unhandled exception |
169 | #if defined(CONFIG_SH_FPU) | ||
170 | 10: | ||
171 | mov.l 9f, r8 ! unhandled exception | ||
172 | #endif | ||
161 | 3: | 173 | 3: |
162 | mov.l 5f,r10 | 174 | mov.l 5f,r10 |
163 | jmp @r8 | 175 | jmp @r8 |
@@ -177,7 +189,10 @@ interrupt_entry: | |||
177 | 6: .long ret_from_irq | 189 | 6: .long ret_from_irq |
178 | 7: .long do_IRQ | 190 | 7: .long do_IRQ |
179 | 8: .long do_exception_error | 191 | 8: .long do_exception_error |
180 | 192 | #ifdef CONFIG_SH_FPU | |
193 | 9: .long fpu_error_trap_handler | ||
194 | #endif | ||
195 | |||
181 | trap_entry: | 196 | trap_entry: |
182 | mov #0x30,r8 | 197 | mov #0x30,r8 |
183 | cmp/ge r8,r9 ! vector 0x20-0x2f is systemcall | 198 | cmp/ge r8,r9 ! vector 0x20-0x2f is systemcall |
@@ -250,7 +265,7 @@ ENTRY(sh_bios_handler) | |||
250 | 1: .long gdb_vbr_vector | 265 | 1: .long gdb_vbr_vector |
251 | #endif /* CONFIG_SH_STANDARD_BIOS */ | 266 | #endif /* CONFIG_SH_STANDARD_BIOS */ |
252 | 267 | ||
253 | ENTRY(address_error_handler) | 268 | ENTRY(address_error_trap_handler) |
254 | mov r15,r4 ! regs | 269 | mov r15,r4 ! regs |
255 | add #4,r4 | 270 | add #4,r4 |
256 | mov #OFF_PC,r0 | 271 | mov #OFF_PC,r0 |
diff --git a/arch/sh/kernel/cpu/sh2/setup-sh7619.c b/arch/sh/kernel/cpu/sh2/setup-sh7619.c index ec6adc3f306f..b230eb278cef 100644 --- a/arch/sh/kernel/cpu/sh2/setup-sh7619.c +++ b/arch/sh/kernel/cpu/sh2/setup-sh7619.c | |||
@@ -65,7 +65,7 @@ static struct intc_prio_reg prio_registers[] __initdata = { | |||
65 | }; | 65 | }; |
66 | 66 | ||
67 | static DECLARE_INTC_DESC(intc_desc, "sh7619", vectors, groups, | 67 | static DECLARE_INTC_DESC(intc_desc, "sh7619", vectors, groups, |
68 | NULL, NULL, prio_registers, NULL); | 68 | NULL, prio_registers, NULL); |
69 | 69 | ||
70 | static struct plat_sci_port sci_platform_data[] = { | 70 | static struct plat_sci_port sci_platform_data[] = { |
71 | { | 71 | { |
diff --git a/arch/sh/kernel/cpu/sh2a/Makefile b/arch/sh/kernel/cpu/sh2a/Makefile index 965fa2572b23..b279cdc3a233 100644 --- a/arch/sh/kernel/cpu/sh2a/Makefile +++ b/arch/sh/kernel/cpu/sh2a/Makefile | |||
@@ -6,4 +6,8 @@ obj-y := common.o probe.o opcode_helper.o | |||
6 | 6 | ||
7 | common-y += $(addprefix ../sh2/, ex.o entry.o) | 7 | common-y += $(addprefix ../sh2/, ex.o entry.o) |
8 | 8 | ||
9 | obj-$(CONFIG_SH_FPU) += fpu.o | ||
10 | |||
9 | obj-$(CONFIG_CPU_SUBTYPE_SH7206) += setup-sh7206.o clock-sh7206.o | 11 | obj-$(CONFIG_CPU_SUBTYPE_SH7206) += setup-sh7206.o clock-sh7206.o |
12 | obj-$(CONFIG_CPU_SUBTYPE_SH7203) += setup-sh7203.o clock-sh7203.o | ||
13 | obj-$(CONFIG_CPU_SUBTYPE_SH7263) += setup-sh7203.o clock-sh7203.o | ||
diff --git a/arch/sh/kernel/cpu/sh2a/clock-sh7203.c b/arch/sh/kernel/cpu/sh2a/clock-sh7203.c new file mode 100644 index 000000000000..3feb95a4fcbc --- /dev/null +++ b/arch/sh/kernel/cpu/sh2a/clock-sh7203.c | |||
@@ -0,0 +1,89 @@ | |||
1 | /* | ||
2 | * arch/sh/kernel/cpu/sh2a/clock-sh7203.c | ||
3 | * | ||
4 | * SH7203 support for the clock framework | ||
5 | * | ||
6 | * Copyright (C) 2007 Kieran Bingham (MPC-Data Ltd) | ||
7 | * | ||
8 | * Based on clock-sh7263.c | ||
9 | * Copyright (C) 2006 Yoshinori Sato | ||
10 | * | ||
11 | * Based on clock-sh4.c | ||
12 | * Copyright (C) 2005 Paul Mundt | ||
13 | * | ||
14 | * This file is subject to the terms and conditions of the GNU General Public | ||
15 | * License. See the file "COPYING" in the main directory of this archive | ||
16 | * for more details. | ||
17 | */ | ||
18 | #include <linux/init.h> | ||
19 | #include <linux/kernel.h> | ||
20 | #include <asm/clock.h> | ||
21 | #include <asm/freq.h> | ||
22 | #include <asm/io.h> | ||
23 | |||
24 | const static int pll1rate[]={8,12,16,0}; | ||
25 | const static int pfc_divisors[]={1,2,3,4,6,8,12}; | ||
26 | #define ifc_divisors pfc_divisors | ||
27 | |||
28 | #if (CONFIG_SH_CLK_MD == 0) | ||
29 | #define PLL2 (1) | ||
30 | #elif (CONFIG_SH_CLK_MD == 1) | ||
31 | #define PLL2 (2) | ||
32 | #elif (CONFIG_SH_CLK_MD == 2) | ||
33 | #define PLL2 (4) | ||
34 | #elif (CONFIG_SH_CLK_MD == 3) | ||
35 | #define PLL2 (4) | ||
36 | #else | ||
37 | #error "Illegal Clock Mode!" | ||
38 | #endif | ||
39 | |||
40 | static void master_clk_init(struct clk *clk) | ||
41 | { | ||
42 | clk->rate *= pll1rate[(ctrl_inw(FREQCR) >> 8) & 0x0003] * PLL2 ; | ||
43 | } | ||
44 | |||
45 | static struct clk_ops sh7203_master_clk_ops = { | ||
46 | .init = master_clk_init, | ||
47 | }; | ||
48 | |||
49 | static void module_clk_recalc(struct clk *clk) | ||
50 | { | ||
51 | int idx = (ctrl_inw(FREQCR) & 0x0007); | ||
52 | clk->rate = clk->parent->rate / pfc_divisors[idx]; | ||
53 | } | ||
54 | |||
55 | static struct clk_ops sh7203_module_clk_ops = { | ||
56 | .recalc = module_clk_recalc, | ||
57 | }; | ||
58 | |||
59 | static void bus_clk_recalc(struct clk *clk) | ||
60 | { | ||
61 | int idx = (ctrl_inw(FREQCR) & 0x0007); | ||
62 | clk->rate = clk->parent->rate / pfc_divisors[idx-2]; | ||
63 | } | ||
64 | |||
65 | static struct clk_ops sh7203_bus_clk_ops = { | ||
66 | .recalc = bus_clk_recalc, | ||
67 | }; | ||
68 | |||
69 | static void cpu_clk_recalc(struct clk *clk) | ||
70 | { | ||
71 | clk->rate = clk->parent->rate; | ||
72 | } | ||
73 | |||
74 | static struct clk_ops sh7203_cpu_clk_ops = { | ||
75 | .recalc = cpu_clk_recalc, | ||
76 | }; | ||
77 | |||
78 | static struct clk_ops *sh7203_clk_ops[] = { | ||
79 | &sh7203_master_clk_ops, | ||
80 | &sh7203_module_clk_ops, | ||
81 | &sh7203_bus_clk_ops, | ||
82 | &sh7203_cpu_clk_ops, | ||
83 | }; | ||
84 | |||
85 | void __init arch_init_clk_ops(struct clk_ops **ops, int idx) | ||
86 | { | ||
87 | if (idx < ARRAY_SIZE(sh7203_clk_ops)) | ||
88 | *ops = sh7203_clk_ops[idx]; | ||
89 | } | ||
diff --git a/arch/sh/kernel/cpu/sh2a/fpu.c b/arch/sh/kernel/cpu/sh2a/fpu.c new file mode 100644 index 000000000000..ff99562456fb --- /dev/null +++ b/arch/sh/kernel/cpu/sh2a/fpu.c | |||
@@ -0,0 +1,633 @@ | |||
1 | /* | ||
2 | * Save/restore floating point context for signal handlers. | ||
3 | * | ||
4 | * Copyright (C) 1999, 2000 Kaz Kojima & Niibe Yutaka | ||
5 | * | ||
6 | * This file is subject to the terms and conditions of the GNU General Public | ||
7 | * License. See the file "COPYING" in the main directory of this archive | ||
8 | * for more details. | ||
9 | * | ||
10 | * FIXME! These routines can be optimized in big endian case. | ||
11 | */ | ||
12 | #include <linux/sched.h> | ||
13 | #include <linux/signal.h> | ||
14 | #include <asm/processor.h> | ||
15 | #include <asm/io.h> | ||
16 | |||
17 | /* The PR (precision) bit in the FP Status Register must be clear when | ||
18 | * an frchg instruction is executed, otherwise the instruction is undefined. | ||
19 | * Executing frchg with PR set causes a trap on some SH4 implementations. | ||
20 | */ | ||
21 | |||
22 | #define FPSCR_RCHG 0x00000000 | ||
23 | |||
24 | |||
25 | /* | ||
26 | * Save FPU registers onto task structure. | ||
27 | * Assume called with FPU enabled (SR.FD=0). | ||
28 | */ | ||
29 | void | ||
30 | save_fpu(struct task_struct *tsk, struct pt_regs *regs) | ||
31 | { | ||
32 | unsigned long dummy; | ||
33 | |||
34 | clear_tsk_thread_flag(tsk, TIF_USEDFPU); | ||
35 | enable_fpu(); | ||
36 | asm volatile("sts.l fpul, @-%0\n\t" | ||
37 | "sts.l fpscr, @-%0\n\t" | ||
38 | "fmov.s fr15, @-%0\n\t" | ||
39 | "fmov.s fr14, @-%0\n\t" | ||
40 | "fmov.s fr13, @-%0\n\t" | ||
41 | "fmov.s fr12, @-%0\n\t" | ||
42 | "fmov.s fr11, @-%0\n\t" | ||
43 | "fmov.s fr10, @-%0\n\t" | ||
44 | "fmov.s fr9, @-%0\n\t" | ||
45 | "fmov.s fr8, @-%0\n\t" | ||
46 | "fmov.s fr7, @-%0\n\t" | ||
47 | "fmov.s fr6, @-%0\n\t" | ||
48 | "fmov.s fr5, @-%0\n\t" | ||
49 | "fmov.s fr4, @-%0\n\t" | ||
50 | "fmov.s fr3, @-%0\n\t" | ||
51 | "fmov.s fr2, @-%0\n\t" | ||
52 | "fmov.s fr1, @-%0\n\t" | ||
53 | "fmov.s fr0, @-%0\n\t" | ||
54 | "lds %3, fpscr\n\t" | ||
55 | : "=r" (dummy) | ||
56 | : "0" ((char *)(&tsk->thread.fpu.hard.status)), | ||
57 | "r" (FPSCR_RCHG), | ||
58 | "r" (FPSCR_INIT) | ||
59 | : "memory"); | ||
60 | |||
61 | disable_fpu(); | ||
62 | release_fpu(regs); | ||
63 | } | ||
64 | |||
65 | static void | ||
66 | restore_fpu(struct task_struct *tsk) | ||
67 | { | ||
68 | unsigned long dummy; | ||
69 | |||
70 | enable_fpu(); | ||
71 | asm volatile("fmov.s @%0+, fr0\n\t" | ||
72 | "fmov.s @%0+, fr1\n\t" | ||
73 | "fmov.s @%0+, fr2\n\t" | ||
74 | "fmov.s @%0+, fr3\n\t" | ||
75 | "fmov.s @%0+, fr4\n\t" | ||
76 | "fmov.s @%0+, fr5\n\t" | ||
77 | "fmov.s @%0+, fr6\n\t" | ||
78 | "fmov.s @%0+, fr7\n\t" | ||
79 | "fmov.s @%0+, fr8\n\t" | ||
80 | "fmov.s @%0+, fr9\n\t" | ||
81 | "fmov.s @%0+, fr10\n\t" | ||
82 | "fmov.s @%0+, fr11\n\t" | ||
83 | "fmov.s @%0+, fr12\n\t" | ||
84 | "fmov.s @%0+, fr13\n\t" | ||
85 | "fmov.s @%0+, fr14\n\t" | ||
86 | "fmov.s @%0+, fr15\n\t" | ||
87 | "lds.l @%0+, fpscr\n\t" | ||
88 | "lds.l @%0+, fpul\n\t" | ||
89 | : "=r" (dummy) | ||
90 | : "0" (&tsk->thread.fpu), "r" (FPSCR_RCHG) | ||
91 | : "memory"); | ||
92 | disable_fpu(); | ||
93 | } | ||
94 | |||
95 | /* | ||
96 | * Load the FPU with signalling NANS. This bit pattern we're using | ||
97 | * has the property that no matter wether considered as single or as | ||
98 | * double precission represents signaling NANS. | ||
99 | */ | ||
100 | |||
101 | static void | ||
102 | fpu_init(void) | ||
103 | { | ||
104 | enable_fpu(); | ||
105 | asm volatile("lds %0, fpul\n\t" | ||
106 | "fsts fpul, fr0\n\t" | ||
107 | "fsts fpul, fr1\n\t" | ||
108 | "fsts fpul, fr2\n\t" | ||
109 | "fsts fpul, fr3\n\t" | ||
110 | "fsts fpul, fr4\n\t" | ||
111 | "fsts fpul, fr5\n\t" | ||
112 | "fsts fpul, fr6\n\t" | ||
113 | "fsts fpul, fr7\n\t" | ||
114 | "fsts fpul, fr8\n\t" | ||
115 | "fsts fpul, fr9\n\t" | ||
116 | "fsts fpul, fr10\n\t" | ||
117 | "fsts fpul, fr11\n\t" | ||
118 | "fsts fpul, fr12\n\t" | ||
119 | "fsts fpul, fr13\n\t" | ||
120 | "fsts fpul, fr14\n\t" | ||
121 | "fsts fpul, fr15\n\t" | ||
122 | "lds %2, fpscr\n\t" | ||
123 | : /* no output */ | ||
124 | : "r" (0), "r" (FPSCR_RCHG), "r" (FPSCR_INIT)); | ||
125 | disable_fpu(); | ||
126 | } | ||
127 | |||
128 | /* | ||
129 | * Emulate arithmetic ops on denormalized number for some FPU insns. | ||
130 | */ | ||
131 | |||
132 | /* denormalized float * float */ | ||
133 | static int denormal_mulf(int hx, int hy) | ||
134 | { | ||
135 | unsigned int ix, iy; | ||
136 | unsigned long long m, n; | ||
137 | int exp, w; | ||
138 | |||
139 | ix = hx & 0x7fffffff; | ||
140 | iy = hy & 0x7fffffff; | ||
141 | if (iy < 0x00800000 || ix == 0) | ||
142 | return ((hx ^ hy) & 0x80000000); | ||
143 | |||
144 | exp = (iy & 0x7f800000) >> 23; | ||
145 | ix &= 0x007fffff; | ||
146 | iy = (iy & 0x007fffff) | 0x00800000; | ||
147 | m = (unsigned long long)ix * iy; | ||
148 | n = m; | ||
149 | w = -1; | ||
150 | while (n) { n >>= 1; w++; } | ||
151 | |||
152 | /* FIXME: use guard bits */ | ||
153 | exp += w - 126 - 46; | ||
154 | if (exp > 0) | ||
155 | ix = ((int) (m >> (w - 23)) & 0x007fffff) | (exp << 23); | ||
156 | else if (exp + 22 >= 0) | ||
157 | ix = (int) (m >> (w - 22 - exp)) & 0x007fffff; | ||
158 | else | ||
159 | ix = 0; | ||
160 | |||
161 | ix |= (hx ^ hy) & 0x80000000; | ||
162 | return ix; | ||
163 | } | ||
164 | |||
165 | /* denormalized double * double */ | ||
166 | static void mult64(unsigned long long x, unsigned long long y, | ||
167 | unsigned long long *highp, unsigned long long *lowp) | ||
168 | { | ||
169 | unsigned long long sub0, sub1, sub2, sub3; | ||
170 | unsigned long long high, low; | ||
171 | |||
172 | sub0 = (x >> 32) * (unsigned long) (y >> 32); | ||
173 | sub1 = (x & 0xffffffffLL) * (unsigned long) (y >> 32); | ||
174 | sub2 = (x >> 32) * (unsigned long) (y & 0xffffffffLL); | ||
175 | sub3 = (x & 0xffffffffLL) * (unsigned long) (y & 0xffffffffLL); | ||
176 | low = sub3; | ||
177 | high = 0LL; | ||
178 | sub3 += (sub1 << 32); | ||
179 | if (low > sub3) | ||
180 | high++; | ||
181 | low = sub3; | ||
182 | sub3 += (sub2 << 32); | ||
183 | if (low > sub3) | ||
184 | high++; | ||
185 | low = sub3; | ||
186 | high += (sub1 >> 32) + (sub2 >> 32); | ||
187 | high += sub0; | ||
188 | *lowp = low; | ||
189 | *highp = high; | ||
190 | } | ||
191 | |||
192 | static inline long long rshift64(unsigned long long mh, | ||
193 | unsigned long long ml, int n) | ||
194 | { | ||
195 | if (n >= 64) | ||
196 | return mh >> (n - 64); | ||
197 | return (mh << (64 - n)) | (ml >> n); | ||
198 | } | ||
199 | |||
200 | static long long denormal_muld(long long hx, long long hy) | ||
201 | { | ||
202 | unsigned long long ix, iy; | ||
203 | unsigned long long mh, ml, nh, nl; | ||
204 | int exp, w; | ||
205 | |||
206 | ix = hx & 0x7fffffffffffffffLL; | ||
207 | iy = hy & 0x7fffffffffffffffLL; | ||
208 | if (iy < 0x0010000000000000LL || ix == 0) | ||
209 | return ((hx ^ hy) & 0x8000000000000000LL); | ||
210 | |||
211 | exp = (iy & 0x7ff0000000000000LL) >> 52; | ||
212 | ix &= 0x000fffffffffffffLL; | ||
213 | iy = (iy & 0x000fffffffffffffLL) | 0x0010000000000000LL; | ||
214 | mult64(ix, iy, &mh, &ml); | ||
215 | nh = mh; | ||
216 | nl = ml; | ||
217 | w = -1; | ||
218 | if (nh) { | ||
219 | while (nh) { nh >>= 1; w++;} | ||
220 | w += 64; | ||
221 | } else | ||
222 | while (nl) { nl >>= 1; w++;} | ||
223 | |||
224 | /* FIXME: use guard bits */ | ||
225 | exp += w - 1022 - 52 * 2; | ||
226 | if (exp > 0) | ||
227 | ix = (rshift64(mh, ml, w - 52) & 0x000fffffffffffffLL) | ||
228 | | ((long long)exp << 52); | ||
229 | else if (exp + 51 >= 0) | ||
230 | ix = rshift64(mh, ml, w - 51 - exp) & 0x000fffffffffffffLL; | ||
231 | else | ||
232 | ix = 0; | ||
233 | |||
234 | ix |= (hx ^ hy) & 0x8000000000000000LL; | ||
235 | return ix; | ||
236 | } | ||
237 | |||
238 | /* ix - iy where iy: denormal and ix, iy >= 0 */ | ||
239 | static int denormal_subf1(unsigned int ix, unsigned int iy) | ||
240 | { | ||
241 | int frac; | ||
242 | int exp; | ||
243 | |||
244 | if (ix < 0x00800000) | ||
245 | return ix - iy; | ||
246 | |||
247 | exp = (ix & 0x7f800000) >> 23; | ||
248 | if (exp - 1 > 31) | ||
249 | return ix; | ||
250 | iy >>= exp - 1; | ||
251 | if (iy == 0) | ||
252 | return ix; | ||
253 | |||
254 | frac = (ix & 0x007fffff) | 0x00800000; | ||
255 | frac -= iy; | ||
256 | while (frac < 0x00800000) { | ||
257 | if (--exp == 0) | ||
258 | return frac; | ||
259 | frac <<= 1; | ||
260 | } | ||
261 | |||
262 | return (exp << 23) | (frac & 0x007fffff); | ||
263 | } | ||
264 | |||
265 | /* ix + iy where iy: denormal and ix, iy >= 0 */ | ||
266 | static int denormal_addf1(unsigned int ix, unsigned int iy) | ||
267 | { | ||
268 | int frac; | ||
269 | int exp; | ||
270 | |||
271 | if (ix < 0x00800000) | ||
272 | return ix + iy; | ||
273 | |||
274 | exp = (ix & 0x7f800000) >> 23; | ||
275 | if (exp - 1 > 31) | ||
276 | return ix; | ||
277 | iy >>= exp - 1; | ||
278 | if (iy == 0) | ||
279 | return ix; | ||
280 | |||
281 | frac = (ix & 0x007fffff) | 0x00800000; | ||
282 | frac += iy; | ||
283 | if (frac >= 0x01000000) { | ||
284 | frac >>= 1; | ||
285 | ++exp; | ||
286 | } | ||
287 | |||
288 | return (exp << 23) | (frac & 0x007fffff); | ||
289 | } | ||
290 | |||
291 | static int denormal_addf(int hx, int hy) | ||
292 | { | ||
293 | unsigned int ix, iy; | ||
294 | int sign; | ||
295 | |||
296 | if ((hx ^ hy) & 0x80000000) { | ||
297 | sign = hx & 0x80000000; | ||
298 | ix = hx & 0x7fffffff; | ||
299 | iy = hy & 0x7fffffff; | ||
300 | if (iy < 0x00800000) { | ||
301 | ix = denormal_subf1(ix, iy); | ||
302 | if (ix < 0) { | ||
303 | ix = -ix; | ||
304 | sign ^= 0x80000000; | ||
305 | } | ||
306 | } else { | ||
307 | ix = denormal_subf1(iy, ix); | ||
308 | sign ^= 0x80000000; | ||
309 | } | ||
310 | } else { | ||
311 | sign = hx & 0x80000000; | ||
312 | ix = hx & 0x7fffffff; | ||
313 | iy = hy & 0x7fffffff; | ||
314 | if (iy < 0x00800000) | ||
315 | ix = denormal_addf1(ix, iy); | ||
316 | else | ||
317 | ix = denormal_addf1(iy, ix); | ||
318 | } | ||
319 | |||
320 | return sign | ix; | ||
321 | } | ||
322 | |||
323 | /* ix - iy where iy: denormal and ix, iy >= 0 */ | ||
324 | static long long denormal_subd1(unsigned long long ix, unsigned long long iy) | ||
325 | { | ||
326 | long long frac; | ||
327 | int exp; | ||
328 | |||
329 | if (ix < 0x0010000000000000LL) | ||
330 | return ix - iy; | ||
331 | |||
332 | exp = (ix & 0x7ff0000000000000LL) >> 52; | ||
333 | if (exp - 1 > 63) | ||
334 | return ix; | ||
335 | iy >>= exp - 1; | ||
336 | if (iy == 0) | ||
337 | return ix; | ||
338 | |||
339 | frac = (ix & 0x000fffffffffffffLL) | 0x0010000000000000LL; | ||
340 | frac -= iy; | ||
341 | while (frac < 0x0010000000000000LL) { | ||
342 | if (--exp == 0) | ||
343 | return frac; | ||
344 | frac <<= 1; | ||
345 | } | ||
346 | |||
347 | return ((long long)exp << 52) | (frac & 0x000fffffffffffffLL); | ||
348 | } | ||
349 | |||
350 | /* ix + iy where iy: denormal and ix, iy >= 0 */ | ||
351 | static long long denormal_addd1(unsigned long long ix, unsigned long long iy) | ||
352 | { | ||
353 | long long frac; | ||
354 | long long exp; | ||
355 | |||
356 | if (ix < 0x0010000000000000LL) | ||
357 | return ix + iy; | ||
358 | |||
359 | exp = (ix & 0x7ff0000000000000LL) >> 52; | ||
360 | if (exp - 1 > 63) | ||
361 | return ix; | ||
362 | iy >>= exp - 1; | ||
363 | if (iy == 0) | ||
364 | return ix; | ||
365 | |||
366 | frac = (ix & 0x000fffffffffffffLL) | 0x0010000000000000LL; | ||
367 | frac += iy; | ||
368 | if (frac >= 0x0020000000000000LL) { | ||
369 | frac >>= 1; | ||
370 | ++exp; | ||
371 | } | ||
372 | |||
373 | return (exp << 52) | (frac & 0x000fffffffffffffLL); | ||
374 | } | ||
375 | |||
376 | static long long denormal_addd(long long hx, long long hy) | ||
377 | { | ||
378 | unsigned long long ix, iy; | ||
379 | long long sign; | ||
380 | |||
381 | if ((hx ^ hy) & 0x8000000000000000LL) { | ||
382 | sign = hx & 0x8000000000000000LL; | ||
383 | ix = hx & 0x7fffffffffffffffLL; | ||
384 | iy = hy & 0x7fffffffffffffffLL; | ||
385 | if (iy < 0x0010000000000000LL) { | ||
386 | ix = denormal_subd1(ix, iy); | ||
387 | if (ix < 0) { | ||
388 | ix = -ix; | ||
389 | sign ^= 0x8000000000000000LL; | ||
390 | } | ||
391 | } else { | ||
392 | ix = denormal_subd1(iy, ix); | ||
393 | sign ^= 0x8000000000000000LL; | ||
394 | } | ||
395 | } else { | ||
396 | sign = hx & 0x8000000000000000LL; | ||
397 | ix = hx & 0x7fffffffffffffffLL; | ||
398 | iy = hy & 0x7fffffffffffffffLL; | ||
399 | if (iy < 0x0010000000000000LL) | ||
400 | ix = denormal_addd1(ix, iy); | ||
401 | else | ||
402 | ix = denormal_addd1(iy, ix); | ||
403 | } | ||
404 | |||
405 | return sign | ix; | ||
406 | } | ||
407 | |||
408 | /** | ||
409 | * denormal_to_double - Given denormalized float number, | ||
410 | * store double float | ||
411 | * | ||
412 | * @fpu: Pointer to sh_fpu_hard structure | ||
413 | * @n: Index to FP register | ||
414 | */ | ||
415 | static void | ||
416 | denormal_to_double (struct sh_fpu_hard_struct *fpu, int n) | ||
417 | { | ||
418 | unsigned long du, dl; | ||
419 | unsigned long x = fpu->fpul; | ||
420 | int exp = 1023 - 126; | ||
421 | |||
422 | if (x != 0 && (x & 0x7f800000) == 0) { | ||
423 | du = (x & 0x80000000); | ||
424 | while ((x & 0x00800000) == 0) { | ||
425 | x <<= 1; | ||
426 | exp--; | ||
427 | } | ||
428 | x &= 0x007fffff; | ||
429 | du |= (exp << 20) | (x >> 3); | ||
430 | dl = x << 29; | ||
431 | |||
432 | fpu->fp_regs[n] = du; | ||
433 | fpu->fp_regs[n+1] = dl; | ||
434 | } | ||
435 | } | ||
436 | |||
437 | /** | ||
438 | * ieee_fpe_handler - Handle denormalized number exception | ||
439 | * | ||
440 | * @regs: Pointer to register structure | ||
441 | * | ||
442 | * Returns 1 when it's handled (should not cause exception). | ||
443 | */ | ||
444 | static int | ||
445 | ieee_fpe_handler (struct pt_regs *regs) | ||
446 | { | ||
447 | unsigned short insn = *(unsigned short *) regs->pc; | ||
448 | unsigned short finsn; | ||
449 | unsigned long nextpc; | ||
450 | int nib[4] = { | ||
451 | (insn >> 12) & 0xf, | ||
452 | (insn >> 8) & 0xf, | ||
453 | (insn >> 4) & 0xf, | ||
454 | insn & 0xf}; | ||
455 | |||
456 | if (nib[0] == 0xb || | ||
457 | (nib[0] == 0x4 && nib[2] == 0x0 && nib[3] == 0xb)) /* bsr & jsr */ | ||
458 | regs->pr = regs->pc + 4; | ||
459 | if (nib[0] == 0xa || nib[0] == 0xb) { /* bra & bsr */ | ||
460 | nextpc = regs->pc + 4 + ((short) ((insn & 0xfff) << 4) >> 3); | ||
461 | finsn = *(unsigned short *) (regs->pc + 2); | ||
462 | } else if (nib[0] == 0x8 && nib[1] == 0xd) { /* bt/s */ | ||
463 | if (regs->sr & 1) | ||
464 | nextpc = regs->pc + 4 + ((char) (insn & 0xff) << 1); | ||
465 | else | ||
466 | nextpc = regs->pc + 4; | ||
467 | finsn = *(unsigned short *) (regs->pc + 2); | ||
468 | } else if (nib[0] == 0x8 && nib[1] == 0xf) { /* bf/s */ | ||
469 | if (regs->sr & 1) | ||
470 | nextpc = regs->pc + 4; | ||
471 | else | ||
472 | nextpc = regs->pc + 4 + ((char) (insn & 0xff) << 1); | ||
473 | finsn = *(unsigned short *) (regs->pc + 2); | ||
474 | } else if (nib[0] == 0x4 && nib[3] == 0xb && | ||
475 | (nib[2] == 0x0 || nib[2] == 0x2)) { /* jmp & jsr */ | ||
476 | nextpc = regs->regs[nib[1]]; | ||
477 | finsn = *(unsigned short *) (regs->pc + 2); | ||
478 | } else if (nib[0] == 0x0 && nib[3] == 0x3 && | ||
479 | (nib[2] == 0x0 || nib[2] == 0x2)) { /* braf & bsrf */ | ||
480 | nextpc = regs->pc + 4 + regs->regs[nib[1]]; | ||
481 | finsn = *(unsigned short *) (regs->pc + 2); | ||
482 | } else if (insn == 0x000b) { /* rts */ | ||
483 | nextpc = regs->pr; | ||
484 | finsn = *(unsigned short *) (regs->pc + 2); | ||
485 | } else { | ||
486 | nextpc = regs->pc + 2; | ||
487 | finsn = insn; | ||
488 | } | ||
489 | |||
490 | #define FPSCR_FPU_ERROR (1 << 17) | ||
491 | |||
492 | if ((finsn & 0xf1ff) == 0xf0ad) { /* fcnvsd */ | ||
493 | struct task_struct *tsk = current; | ||
494 | |||
495 | if ((tsk->thread.fpu.hard.fpscr & FPSCR_FPU_ERROR)) { | ||
496 | /* FPU error */ | ||
497 | denormal_to_double (&tsk->thread.fpu.hard, | ||
498 | (finsn >> 8) & 0xf); | ||
499 | } else | ||
500 | return 0; | ||
501 | |||
502 | regs->pc = nextpc; | ||
503 | return 1; | ||
504 | } else if ((finsn & 0xf00f) == 0xf002) { /* fmul */ | ||
505 | struct task_struct *tsk = current; | ||
506 | int fpscr; | ||
507 | int n, m, prec; | ||
508 | unsigned int hx, hy; | ||
509 | |||
510 | n = (finsn >> 8) & 0xf; | ||
511 | m = (finsn >> 4) & 0xf; | ||
512 | hx = tsk->thread.fpu.hard.fp_regs[n]; | ||
513 | hy = tsk->thread.fpu.hard.fp_regs[m]; | ||
514 | fpscr = tsk->thread.fpu.hard.fpscr; | ||
515 | prec = fpscr & (1 << 19); | ||
516 | |||
517 | if ((fpscr & FPSCR_FPU_ERROR) | ||
518 | && (prec && ((hx & 0x7fffffff) < 0x00100000 | ||
519 | || (hy & 0x7fffffff) < 0x00100000))) { | ||
520 | long long llx, lly; | ||
521 | |||
522 | /* FPU error because of denormal */ | ||
523 | llx = ((long long) hx << 32) | ||
524 | | tsk->thread.fpu.hard.fp_regs[n+1]; | ||
525 | lly = ((long long) hy << 32) | ||
526 | | tsk->thread.fpu.hard.fp_regs[m+1]; | ||
527 | if ((hx & 0x7fffffff) >= 0x00100000) | ||
528 | llx = denormal_muld(lly, llx); | ||
529 | else | ||
530 | llx = denormal_muld(llx, lly); | ||
531 | tsk->thread.fpu.hard.fp_regs[n] = llx >> 32; | ||
532 | tsk->thread.fpu.hard.fp_regs[n+1] = llx & 0xffffffff; | ||
533 | } else if ((fpscr & FPSCR_FPU_ERROR) | ||
534 | && (!prec && ((hx & 0x7fffffff) < 0x00800000 | ||
535 | || (hy & 0x7fffffff) < 0x00800000))) { | ||
536 | /* FPU error because of denormal */ | ||
537 | if ((hx & 0x7fffffff) >= 0x00800000) | ||
538 | hx = denormal_mulf(hy, hx); | ||
539 | else | ||
540 | hx = denormal_mulf(hx, hy); | ||
541 | tsk->thread.fpu.hard.fp_regs[n] = hx; | ||
542 | } else | ||
543 | return 0; | ||
544 | |||
545 | regs->pc = nextpc; | ||
546 | return 1; | ||
547 | } else if ((finsn & 0xf00e) == 0xf000) { /* fadd, fsub */ | ||
548 | struct task_struct *tsk = current; | ||
549 | int fpscr; | ||
550 | int n, m, prec; | ||
551 | unsigned int hx, hy; | ||
552 | |||
553 | n = (finsn >> 8) & 0xf; | ||
554 | m = (finsn >> 4) & 0xf; | ||
555 | hx = tsk->thread.fpu.hard.fp_regs[n]; | ||
556 | hy = tsk->thread.fpu.hard.fp_regs[m]; | ||
557 | fpscr = tsk->thread.fpu.hard.fpscr; | ||
558 | prec = fpscr & (1 << 19); | ||
559 | |||
560 | if ((fpscr & FPSCR_FPU_ERROR) | ||
561 | && (prec && ((hx & 0x7fffffff) < 0x00100000 | ||
562 | || (hy & 0x7fffffff) < 0x00100000))) { | ||
563 | long long llx, lly; | ||
564 | |||
565 | /* FPU error because of denormal */ | ||
566 | llx = ((long long) hx << 32) | ||
567 | | tsk->thread.fpu.hard.fp_regs[n+1]; | ||
568 | lly = ((long long) hy << 32) | ||
569 | | tsk->thread.fpu.hard.fp_regs[m+1]; | ||
570 | if ((finsn & 0xf00f) == 0xf000) | ||
571 | llx = denormal_addd(llx, lly); | ||
572 | else | ||
573 | llx = denormal_addd(llx, lly ^ (1LL << 63)); | ||
574 | tsk->thread.fpu.hard.fp_regs[n] = llx >> 32; | ||
575 | tsk->thread.fpu.hard.fp_regs[n+1] = llx & 0xffffffff; | ||
576 | } else if ((fpscr & FPSCR_FPU_ERROR) | ||
577 | && (!prec && ((hx & 0x7fffffff) < 0x00800000 | ||
578 | || (hy & 0x7fffffff) < 0x00800000))) { | ||
579 | /* FPU error because of denormal */ | ||
580 | if ((finsn & 0xf00f) == 0xf000) | ||
581 | hx = denormal_addf(hx, hy); | ||
582 | else | ||
583 | hx = denormal_addf(hx, hy ^ 0x80000000); | ||
584 | tsk->thread.fpu.hard.fp_regs[n] = hx; | ||
585 | } else | ||
586 | return 0; | ||
587 | |||
588 | regs->pc = nextpc; | ||
589 | return 1; | ||
590 | } | ||
591 | |||
592 | return 0; | ||
593 | } | ||
594 | |||
595 | BUILD_TRAP_HANDLER(fpu_error) | ||
596 | { | ||
597 | struct task_struct *tsk = current; | ||
598 | TRAP_HANDLER_DECL; | ||
599 | |||
600 | save_fpu(tsk, regs); | ||
601 | if (ieee_fpe_handler(regs)) { | ||
602 | tsk->thread.fpu.hard.fpscr &= | ||
603 | ~(FPSCR_CAUSE_MASK | FPSCR_FLAG_MASK); | ||
604 | grab_fpu(regs); | ||
605 | restore_fpu(tsk); | ||
606 | set_tsk_thread_flag(tsk, TIF_USEDFPU); | ||
607 | return; | ||
608 | } | ||
609 | |||
610 | force_sig(SIGFPE, tsk); | ||
611 | } | ||
612 | |||
613 | BUILD_TRAP_HANDLER(fpu_state_restore) | ||
614 | { | ||
615 | struct task_struct *tsk = current; | ||
616 | TRAP_HANDLER_DECL; | ||
617 | |||
618 | grab_fpu(regs); | ||
619 | if (!user_mode(regs)) { | ||
620 | printk(KERN_ERR "BUG: FPU is used in kernel mode.\n"); | ||
621 | return; | ||
622 | } | ||
623 | |||
624 | if (used_math()) { | ||
625 | /* Using the FPU again. */ | ||
626 | restore_fpu(tsk); | ||
627 | } else { | ||
628 | /* First time FPU user. */ | ||
629 | fpu_init(); | ||
630 | set_used_math(); | ||
631 | } | ||
632 | set_tsk_thread_flag(tsk, TIF_USEDFPU); | ||
633 | } | ||
diff --git a/arch/sh/kernel/cpu/sh2a/probe.c b/arch/sh/kernel/cpu/sh2a/probe.c index 6d02465704b9..6910e2664468 100644 --- a/arch/sh/kernel/cpu/sh2a/probe.c +++ b/arch/sh/kernel/cpu/sh2a/probe.c | |||
@@ -3,25 +3,36 @@ | |||
3 | * | 3 | * |
4 | * CPU Subtype Probing for SH-2A. | 4 | * CPU Subtype Probing for SH-2A. |
5 | * | 5 | * |
6 | * Copyright (C) 2004, 2005 Paul Mundt | 6 | * Copyright (C) 2004 - 2007 Paul Mundt |
7 | * | 7 | * |
8 | * This file is subject to the terms and conditions of the GNU General Public | 8 | * This file is subject to the terms and conditions of the GNU General Public |
9 | * License. See the file "COPYING" in the main directory of this archive | 9 | * License. See the file "COPYING" in the main directory of this archive |
10 | * for more details. | 10 | * for more details. |
11 | */ | 11 | */ |
12 | |||
13 | #include <linux/init.h> | 12 | #include <linux/init.h> |
14 | #include <asm/processor.h> | 13 | #include <asm/processor.h> |
15 | #include <asm/cache.h> | 14 | #include <asm/cache.h> |
16 | 15 | ||
17 | int __init detect_cpu_and_cache_system(void) | 16 | int __init detect_cpu_and_cache_system(void) |
18 | { | 17 | { |
19 | /* Just SH7206 for now .. */ | 18 | /* All SH-2A CPUs have support for 16 and 32-bit opcodes.. */ |
20 | boot_cpu_data.type = CPU_SH7206; | ||
21 | boot_cpu_data.flags |= CPU_HAS_OP32; | 19 | boot_cpu_data.flags |= CPU_HAS_OP32; |
22 | 20 | ||
21 | #if defined(CONFIG_CPU_SUBTYPE_SH7203) | ||
22 | boot_cpu_data.type = CPU_SH7203; | ||
23 | /* SH7203 has an FPU.. */ | ||
24 | boot_cpu_data.flags |= CPU_HAS_FPU; | ||
25 | #elif defined(CONFIG_CPU_SUBTYPE_SH7263) | ||
26 | boot_cpu_data.type = CPU_SH7263; | ||
27 | boot_cpu_data.flags |= CPU_HAS_FPU; | ||
28 | #elif defined(CONFIG_CPU_SUBTYPE_SH7206) | ||
29 | boot_cpu_data.type = CPU_SH7206; | ||
30 | /* While SH7206 has a DSP.. */ | ||
31 | boot_cpu_data.flags |= CPU_HAS_DSP; | ||
32 | #endif | ||
33 | |||
23 | boot_cpu_data.dcache.ways = 4; | 34 | boot_cpu_data.dcache.ways = 4; |
24 | boot_cpu_data.dcache.way_incr = (1 << 11); | 35 | boot_cpu_data.dcache.way_incr = (1 << 11); |
25 | boot_cpu_data.dcache.sets = 128; | 36 | boot_cpu_data.dcache.sets = 128; |
26 | boot_cpu_data.dcache.entry_shift = 4; | 37 | boot_cpu_data.dcache.entry_shift = 4; |
27 | boot_cpu_data.dcache.linesz = L1_CACHE_BYTES; | 38 | boot_cpu_data.dcache.linesz = L1_CACHE_BYTES; |
@@ -37,4 +48,3 @@ int __init detect_cpu_and_cache_system(void) | |||
37 | 48 | ||
38 | return 0; | 49 | return 0; |
39 | } | 50 | } |
40 | |||
diff --git a/arch/sh/kernel/cpu/sh2a/setup-sh7203.c b/arch/sh/kernel/cpu/sh2a/setup-sh7203.c new file mode 100644 index 000000000000..db6ef5cecde1 --- /dev/null +++ b/arch/sh/kernel/cpu/sh2a/setup-sh7203.c | |||
@@ -0,0 +1,319 @@ | |||
1 | /* | ||
2 | * SH7203 and SH7263 Setup | ||
3 | * | ||
4 | * Copyright (C) 2007 Paul Mundt | ||
5 | * | ||
6 | * This file is subject to the terms and conditions of the GNU General Public | ||
7 | * License. See the file "COPYING" in the main directory of this archive | ||
8 | * for more details. | ||
9 | */ | ||
10 | #include <linux/platform_device.h> | ||
11 | #include <linux/init.h> | ||
12 | #include <linux/serial.h> | ||
13 | #include <asm/sci.h> | ||
14 | |||
15 | enum { | ||
16 | UNUSED = 0, | ||
17 | |||
18 | /* interrupt sources */ | ||
19 | IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7, | ||
20 | PINT0, PINT1, PINT2, PINT3, PINT4, PINT5, PINT6, PINT7, | ||
21 | DMAC0_DEI, DMAC0_HEI, DMAC1_DEI, DMAC1_HEI, | ||
22 | DMAC2_DEI, DMAC2_HEI, DMAC3_DEI, DMAC3_HEI, | ||
23 | DMAC4_DEI, DMAC4_HEI, DMAC5_DEI, DMAC5_HEI, | ||
24 | DMAC6_DEI, DMAC6_HEI, DMAC7_DEI, DMAC7_HEI, | ||
25 | USB, LCDC, CMT0, CMT1, BSC, WDT, | ||
26 | MTU2_TGI0A, MTU2_TGI0B, MTU2_TGI0C, MTU2_TGI0D, | ||
27 | MTU2_TCI0V, MTU2_TGI0E, MTU2_TGI0F, | ||
28 | MTU2_TGI1A, MTU2_TGI1B, MTU2_TCI1V, MTU2_TCI1U, | ||
29 | MTU2_TGI2A, MTU2_TGI2B, MTU2_TCI2V, MTU2_TCI2U, | ||
30 | MTU2_TGI3A, MTU2_TGI3B, MTU2_TGI3C, MTU2_TGI3D, MTU2_TCI3V, | ||
31 | MTU2_TGI4A, MTU2_TGI4B, MTU2_TGI4C, MTU2_TGI4D, MTU2_TCI4V, | ||
32 | ADC_ADI, | ||
33 | IIC30_STPI, IIC30_NAKI, IIC30_RXI, IIC30_TXI, IIC30_TEI, | ||
34 | IIC31_STPI, IIC31_NAKI, IIC31_RXI, IIC31_TXI, IIC31_TEI, | ||
35 | IIC32_STPI, IIC32_NAKI, IIC32_RXI, IIC32_TXI, IIC32_TEI, | ||
36 | IIC33_STPI, IIC33_NAKI, IIC33_RXI, IIC33_TXI, IIC33_TEI, | ||
37 | SCIF0_BRI, SCIF0_ERI, SCIF0_RXI, SCIF0_TXI, | ||
38 | SCIF1_BRI, SCIF1_ERI, SCIF1_RXI, SCIF1_TXI, | ||
39 | SCIF2_BRI, SCIF2_ERI, SCIF2_RXI, SCIF2_TXI, | ||
40 | SCIF3_BRI, SCIF3_ERI, SCIF3_RXI, SCIF3_TXI, | ||
41 | SSU0_SSERI, SSU0_SSRXI, SSU0_SSTXI, | ||
42 | SSU1_SSERI, SSU1_SSRXI, SSU1_SSTXI, | ||
43 | SSI0_SSII, SSI1_SSII, SSI2_SSII, SSI3_SSII, | ||
44 | |||
45 | /* ROM-DEC, SDHI, SRC, and IEB are SH7263 specific */ | ||
46 | ROMDEC_ISY, ROMDEC_IERR, ROMDEC_IARG, ROMDEC_ISEC, ROMDEC_IBUF, | ||
47 | ROMDEC_IREADY, | ||
48 | |||
49 | FLCTL_FLSTEI, FLCTL_FLTENDI, FLCTL_FLTREQ0I, FLCTL_FLTREQ1I, | ||
50 | |||
51 | SDHI3, SDHI0, SDHI1, | ||
52 | |||
53 | RTC_ARM, RTC_PRD, RTC_CUP, | ||
54 | RCAN0_ERS, RCAN0_OVR, RCAN0_RM0, RCAN0_RM1, RCAN0_SLE, | ||
55 | RCAN1_ERS, RCAN1_OVR, RCAN1_RM0, RCAN1_RM1, RCAN1_SLE, | ||
56 | |||
57 | SRC_OVF, SRC_ODFI, SRC_IDEI, IEBI, | ||
58 | |||
59 | /* interrupt groups */ | ||
60 | PINT, DMAC0, DMAC1, DMAC2, DMAC3, DMAC4, DMAC5, DMAC6, DMAC7, | ||
61 | MTU0_ABCD, MTU0_VEF, MTU1_AB, MTU1_VU, MTU2_AB, MTU2_VU, | ||
62 | MTU3_ABCD, MTU4_ABCD, | ||
63 | IIC30, IIC31, IIC32, IIC33, SCIF0, SCIF1, SCIF2, SCIF3, | ||
64 | SSU0, SSU1, ROMDEC, SDHI, FLCTL, RTC, RCAN0, RCAN1, SRC | ||
65 | }; | ||
66 | |||
67 | static struct intc_vect vectors[] __initdata = { | ||
68 | INTC_IRQ(IRQ0, 64), INTC_IRQ(IRQ1, 65), | ||
69 | INTC_IRQ(IRQ2, 66), INTC_IRQ(IRQ3, 67), | ||
70 | INTC_IRQ(IRQ4, 68), INTC_IRQ(IRQ5, 69), | ||
71 | INTC_IRQ(IRQ6, 70), INTC_IRQ(IRQ7, 71), | ||
72 | INTC_IRQ(PINT0, 80), INTC_IRQ(PINT1, 81), | ||
73 | INTC_IRQ(PINT2, 82), INTC_IRQ(PINT3, 83), | ||
74 | INTC_IRQ(PINT4, 84), INTC_IRQ(PINT5, 85), | ||
75 | INTC_IRQ(PINT6, 86), INTC_IRQ(PINT7, 87), | ||
76 | INTC_IRQ(DMAC0_DEI, 108), INTC_IRQ(DMAC0_HEI, 109), | ||
77 | INTC_IRQ(DMAC1_DEI, 112), INTC_IRQ(DMAC1_HEI, 113), | ||
78 | INTC_IRQ(DMAC2_DEI, 116), INTC_IRQ(DMAC2_HEI, 117), | ||
79 | INTC_IRQ(DMAC3_DEI, 120), INTC_IRQ(DMAC3_HEI, 121), | ||
80 | INTC_IRQ(DMAC4_DEI, 124), INTC_IRQ(DMAC4_HEI, 125), | ||
81 | INTC_IRQ(DMAC5_DEI, 128), INTC_IRQ(DMAC5_HEI, 129), | ||
82 | INTC_IRQ(DMAC6_DEI, 132), INTC_IRQ(DMAC6_HEI, 133), | ||
83 | INTC_IRQ(DMAC7_DEI, 136), INTC_IRQ(DMAC7_HEI, 137), | ||
84 | INTC_IRQ(USB, 140), INTC_IRQ(LCDC, 141), | ||
85 | INTC_IRQ(CMT0, 142), INTC_IRQ(CMT1, 143), | ||
86 | INTC_IRQ(BSC, 144), INTC_IRQ(WDT, 145), | ||
87 | INTC_IRQ(MTU2_TGI0A, 146), INTC_IRQ(MTU2_TGI0B, 147), | ||
88 | INTC_IRQ(MTU2_TGI0C, 148), INTC_IRQ(MTU2_TGI0D, 149), | ||
89 | INTC_IRQ(MTU2_TCI0V, 150), | ||
90 | INTC_IRQ(MTU2_TGI0E, 151), INTC_IRQ(MTU2_TGI0F, 152), | ||
91 | INTC_IRQ(MTU2_TGI1A, 153), INTC_IRQ(MTU2_TGI1B, 154), | ||
92 | INTC_IRQ(MTU2_TCI1V, 155), INTC_IRQ(MTU2_TCI1U, 156), | ||
93 | INTC_IRQ(MTU2_TGI2A, 157), INTC_IRQ(MTU2_TGI2B, 158), | ||
94 | INTC_IRQ(MTU2_TCI2V, 159), INTC_IRQ(MTU2_TCI2U, 160), | ||
95 | INTC_IRQ(MTU2_TGI3A, 161), INTC_IRQ(MTU2_TGI3B, 162), | ||
96 | INTC_IRQ(MTU2_TGI3C, 163), INTC_IRQ(MTU2_TGI3D, 164), | ||
97 | INTC_IRQ(MTU2_TCI3V, 165), | ||
98 | INTC_IRQ(MTU2_TGI4A, 166), INTC_IRQ(MTU2_TGI4B, 167), | ||
99 | INTC_IRQ(MTU2_TGI4C, 168), INTC_IRQ(MTU2_TGI4D, 169), | ||
100 | INTC_IRQ(MTU2_TCI4V, 170), | ||
101 | INTC_IRQ(ADC_ADI, 171), | ||
102 | INTC_IRQ(IIC30_STPI, 172), INTC_IRQ(IIC30_NAKI, 173), | ||
103 | INTC_IRQ(IIC30_RXI, 174), INTC_IRQ(IIC30_TXI, 175), | ||
104 | INTC_IRQ(IIC30_TEI, 176), | ||
105 | INTC_IRQ(IIC31_STPI, 177), INTC_IRQ(IIC31_NAKI, 178), | ||
106 | INTC_IRQ(IIC31_RXI, 179), INTC_IRQ(IIC31_TXI, 180), | ||
107 | INTC_IRQ(IIC31_TEI, 181), | ||
108 | INTC_IRQ(IIC32_STPI, 182), INTC_IRQ(IIC32_NAKI, 183), | ||
109 | INTC_IRQ(IIC32_RXI, 184), INTC_IRQ(IIC32_TXI, 185), | ||
110 | INTC_IRQ(IIC32_TEI, 186), | ||
111 | INTC_IRQ(IIC33_STPI, 187), INTC_IRQ(IIC33_NAKI, 188), | ||
112 | INTC_IRQ(IIC33_RXI, 189), INTC_IRQ(IIC33_TXI, 190), | ||
113 | INTC_IRQ(IIC33_TEI, 191), | ||
114 | INTC_IRQ(SCIF0_BRI, 192), INTC_IRQ(SCIF0_ERI, 193), | ||
115 | INTC_IRQ(SCIF0_RXI, 194), INTC_IRQ(SCIF0_TXI, 195), | ||
116 | INTC_IRQ(SCIF1_BRI, 196), INTC_IRQ(SCIF1_ERI, 197), | ||
117 | INTC_IRQ(SCIF1_RXI, 198), INTC_IRQ(SCIF1_TXI, 199), | ||
118 | INTC_IRQ(SCIF2_BRI, 200), INTC_IRQ(SCIF2_ERI, 201), | ||
119 | INTC_IRQ(SCIF2_RXI, 202), INTC_IRQ(SCIF2_TXI, 203), | ||
120 | INTC_IRQ(SCIF3_BRI, 204), INTC_IRQ(SCIF3_ERI, 205), | ||
121 | INTC_IRQ(SCIF3_RXI, 206), INTC_IRQ(SCIF3_TXI, 207), | ||
122 | INTC_IRQ(SSU0_SSERI, 208), INTC_IRQ(SSU0_SSRXI, 209), | ||
123 | INTC_IRQ(SSU0_SSTXI, 210), | ||
124 | INTC_IRQ(SSU1_SSERI, 211), INTC_IRQ(SSU1_SSRXI, 212), | ||
125 | INTC_IRQ(SSU1_SSTXI, 213), | ||
126 | INTC_IRQ(SSI0_SSII, 214), INTC_IRQ(SSI1_SSII, 215), | ||
127 | INTC_IRQ(SSI2_SSII, 216), INTC_IRQ(SSI3_SSII, 217), | ||
128 | INTC_IRQ(FLCTL_FLSTEI, 224), INTC_IRQ(FLCTL_FLTENDI, 225), | ||
129 | INTC_IRQ(FLCTL_FLTREQ0I, 226), INTC_IRQ(FLCTL_FLTREQ1I, 227), | ||
130 | INTC_IRQ(RTC_ARM, 231), INTC_IRQ(RTC_PRD, 232), | ||
131 | INTC_IRQ(RTC_CUP, 233), | ||
132 | INTC_IRQ(RCAN0_ERS, 234), INTC_IRQ(RCAN0_OVR, 235), | ||
133 | INTC_IRQ(RCAN0_RM0, 236), INTC_IRQ(RCAN0_RM1, 237), | ||
134 | INTC_IRQ(RCAN0_SLE, 238), | ||
135 | INTC_IRQ(RCAN1_ERS, 239), INTC_IRQ(RCAN1_OVR, 240), | ||
136 | INTC_IRQ(RCAN1_RM0, 241), INTC_IRQ(RCAN1_RM1, 242), | ||
137 | INTC_IRQ(RCAN1_SLE, 243), | ||
138 | |||
139 | /* SH7263-specific trash */ | ||
140 | #ifdef CONFIG_CPU_SUBTYPE_SH7263 | ||
141 | INTC_IRQ(ROMDEC_ISY, 218), INTC_IRQ(ROMDEC_IERR, 219), | ||
142 | INTC_IRQ(ROMDEC_IARG, 220), INTC_IRQ(ROMDEC_ISEC, 221), | ||
143 | INTC_IRQ(ROMDEC_IBUF, 222), INTC_IRQ(ROMDEC_IREADY, 223), | ||
144 | |||
145 | INTC_IRQ(SDHI3, 228), INTC_IRQ(SDHI0, 229), INTC_IRQ(SDHI1, 230), | ||
146 | |||
147 | INTC_IRQ(SRC_OVF, 244), INTC_IRQ(SRC_ODFI, 245), | ||
148 | INTC_IRQ(SRC_IDEI, 246), | ||
149 | |||
150 | INTC_IRQ(IEBI, 247), | ||
151 | #endif | ||
152 | }; | ||
153 | |||
154 | static struct intc_group groups[] __initdata = { | ||
155 | INTC_GROUP(PINT, PINT0, PINT1, PINT2, PINT3, | ||
156 | PINT4, PINT5, PINT6, PINT7), | ||
157 | INTC_GROUP(DMAC0, DMAC0_DEI, DMAC0_HEI), | ||
158 | INTC_GROUP(DMAC1, DMAC1_DEI, DMAC1_HEI), | ||
159 | INTC_GROUP(DMAC2, DMAC2_DEI, DMAC2_HEI), | ||
160 | INTC_GROUP(DMAC3, DMAC3_DEI, DMAC3_HEI), | ||
161 | INTC_GROUP(DMAC4, DMAC4_DEI, DMAC4_HEI), | ||
162 | INTC_GROUP(DMAC5, DMAC5_DEI, DMAC5_HEI), | ||
163 | INTC_GROUP(DMAC6, DMAC6_DEI, DMAC6_HEI), | ||
164 | INTC_GROUP(DMAC7, DMAC7_DEI, DMAC7_HEI), | ||
165 | INTC_GROUP(MTU0_ABCD, MTU2_TGI0A, MTU2_TGI0B, MTU2_TGI0C, MTU2_TGI0D), | ||
166 | INTC_GROUP(MTU0_VEF, MTU2_TCI0V, MTU2_TGI0E, MTU2_TGI0F), | ||
167 | INTC_GROUP(MTU1_AB, MTU2_TGI1A, MTU2_TGI1B), | ||
168 | INTC_GROUP(MTU1_VU, MTU2_TCI1V, MTU2_TCI1U), | ||
169 | INTC_GROUP(MTU2_AB, MTU2_TGI2A, MTU2_TGI2B), | ||
170 | INTC_GROUP(MTU2_VU, MTU2_TCI2V, MTU2_TCI2U), | ||
171 | INTC_GROUP(MTU3_ABCD, MTU2_TGI3A, MTU2_TGI3B, MTU2_TGI3C, MTU2_TGI3D), | ||
172 | INTC_GROUP(MTU4_ABCD, MTU2_TGI4A, MTU2_TGI4B, MTU2_TGI4C, MTU2_TGI4D), | ||
173 | INTC_GROUP(IIC30, IIC30_STPI, IIC30_NAKI, IIC30_RXI, IIC30_TXI, | ||
174 | IIC30_TEI), | ||
175 | INTC_GROUP(IIC31, IIC31_STPI, IIC31_NAKI, IIC31_RXI, IIC31_TXI, | ||
176 | IIC31_TEI), | ||
177 | INTC_GROUP(IIC32, IIC32_STPI, IIC32_NAKI, IIC32_RXI, IIC32_TXI, | ||
178 | IIC32_TEI), | ||
179 | INTC_GROUP(IIC33, IIC33_STPI, IIC33_NAKI, IIC33_RXI, IIC33_TXI, | ||
180 | IIC33_TEI), | ||
181 | INTC_GROUP(SCIF0, SCIF0_BRI, SCIF0_ERI, SCIF0_RXI, SCIF0_TXI), | ||
182 | INTC_GROUP(SCIF1, SCIF1_BRI, SCIF1_ERI, SCIF1_RXI, SCIF1_TXI), | ||
183 | INTC_GROUP(SCIF2, SCIF2_BRI, SCIF2_ERI, SCIF2_RXI, SCIF2_TXI), | ||
184 | INTC_GROUP(SCIF3, SCIF3_BRI, SCIF3_ERI, SCIF3_RXI, SCIF3_TXI), | ||
185 | INTC_GROUP(SSU0, SSU0_SSERI, SSU0_SSRXI, SSU0_SSTXI), | ||
186 | INTC_GROUP(SSU1, SSU1_SSERI, SSU1_SSRXI, SSU1_SSTXI), | ||
187 | INTC_GROUP(FLCTL, FLCTL_FLSTEI, FLCTL_FLTENDI, FLCTL_FLTREQ0I, | ||
188 | FLCTL_FLTREQ1I), | ||
189 | INTC_GROUP(RTC, RTC_ARM, RTC_PRD, RTC_CUP), | ||
190 | INTC_GROUP(RCAN0, RCAN0_ERS, RCAN0_OVR, RCAN0_RM0, RCAN0_RM1, | ||
191 | RCAN0_SLE), | ||
192 | INTC_GROUP(RCAN1, RCAN1_ERS, RCAN1_OVR, RCAN1_RM0, RCAN1_RM1, | ||
193 | RCAN1_SLE), | ||
194 | |||
195 | #ifdef CONFIG_CPU_SUBTYPE_SH7263 | ||
196 | INTC_GROUP(ROMDEC, ROMDEC_ISY, ROMDEC_IERR, ROMDEC_IARG, | ||
197 | ROMDEC_ISEC, ROMDEC_IBUF, ROMDEC_IREADY), | ||
198 | INTC_GROUP(SDHI, SDHI3, SDHI0, SDHI1), | ||
199 | INTC_GROUP(SRC, SRC_OVF, SRC_ODFI, SRC_IDEI), | ||
200 | #endif | ||
201 | }; | ||
202 | |||
203 | static struct intc_prio_reg prio_registers[] __initdata = { | ||
204 | { 0xfffe0818, 0, 16, 4, /* IPR01 */ { IRQ0, IRQ1, IRQ2, IRQ3 } }, | ||
205 | { 0xfffe081a, 0, 16, 4, /* IPR02 */ { IRQ4, IRQ5, IRQ6, IRQ7 } }, | ||
206 | { 0xfffe0820, 0, 16, 4, /* IPR05 */ { PINT, 0, 0, 0 } }, | ||
207 | { 0xfffe0c00, 0, 16, 4, /* IPR06 */ { DMAC0, DMAC1, DMAC2, DMAC3 } }, | ||
208 | { 0xfffe0c02, 0, 16, 4, /* IPR07 */ { DMAC4, DMAC5, DMAC6, DMAC7 } }, | ||
209 | { 0xfffe0c04, 0, 16, 4, /* IPR08 */ { USB, LCDC, CMT0, CMT1 } }, | ||
210 | { 0xfffe0c06, 0, 16, 4, /* IPR09 */ { BSC, WDT, MTU0_ABCD, MTU0_VEF } }, | ||
211 | { 0xfffe0c08, 0, 16, 4, /* IPR10 */ { MTU1_AB, MTU1_VU, MTU2_AB, | ||
212 | MTU2_VU } }, | ||
213 | { 0xfffe0c0a, 0, 16, 4, /* IPR11 */ { MTU3_ABCD, MTU2_TCI3V, MTU4_ABCD, | ||
214 | MTU2_TCI4V } }, | ||
215 | { 0xfffe0c0c, 0, 16, 4, /* IPR12 */ { ADC_ADI, IIC30, IIC31, IIC32 } }, | ||
216 | { 0xfffe0c0e, 0, 16, 4, /* IPR13 */ { IIC33, SCIF0, SCIF1, SCIF2 } }, | ||
217 | { 0xfffe0c10, 0, 16, 4, /* IPR14 */ { SCIF3, SSU0, SSU1, SSI0_SSII } }, | ||
218 | #ifdef CONFIG_CPU_SUBTYPE_SH7203 | ||
219 | { 0xfffe0c12, 0, 16, 4, /* IPR15 */ { SSI1_SSII, SSI2_SSII, | ||
220 | SSI3_SSII, 0 } }, | ||
221 | { 0xfffe0c14, 0, 16, 4, /* IPR16 */ { FLCTL, 0, RTC, RCAN0 } }, | ||
222 | { 0xfffe0c16, 0, 16, 4, /* IPR17 */ { RCAN1, 0, 0, 0 } }, | ||
223 | #else | ||
224 | { 0xfffe0c12, 0, 16, 4, /* IPR15 */ { SSI1_SSII, SSI2_SSII, | ||
225 | SSI3_SSII, ROMDEC } }, | ||
226 | { 0xfffe0c14, 0, 16, 4, /* IPR16 */ { FLCTL, SDHI, RTC, RCAN0 } }, | ||
227 | { 0xfffe0c16, 0, 16, 4, /* IPR17 */ { RCAN1, SRC, IEBI, 0 } }, | ||
228 | #endif | ||
229 | }; | ||
230 | |||
231 | static struct intc_mask_reg mask_registers[] __initdata = { | ||
232 | { 0xfffe0808, 0, 16, /* PINTER */ | ||
233 | { 0, 0, 0, 0, 0, 0, 0, 0, | ||
234 | PINT7, PINT6, PINT5, PINT4, PINT3, PINT2, PINT1, PINT0 } }, | ||
235 | }; | ||
236 | |||
237 | static DECLARE_INTC_DESC(intc_desc, "sh7203", vectors, groups, | ||
238 | mask_registers, prio_registers, NULL); | ||
239 | |||
240 | static struct plat_sci_port sci_platform_data[] = { | ||
241 | { | ||
242 | .mapbase = 0xfffe8000, | ||
243 | .flags = UPF_BOOT_AUTOCONF, | ||
244 | .type = PORT_SCIF, | ||
245 | .irqs = { 193, 194, 195, 192 }, | ||
246 | }, { | ||
247 | .mapbase = 0xfffe8800, | ||
248 | .flags = UPF_BOOT_AUTOCONF, | ||
249 | .type = PORT_SCIF, | ||
250 | .irqs = { 197, 198, 199, 196 }, | ||
251 | }, { | ||
252 | .mapbase = 0xfffe9000, | ||
253 | .flags = UPF_BOOT_AUTOCONF, | ||
254 | .type = PORT_SCIF, | ||
255 | .irqs = { 201, 202, 203, 200 }, | ||
256 | }, { | ||
257 | .mapbase = 0xfffe9800, | ||
258 | .flags = UPF_BOOT_AUTOCONF, | ||
259 | .type = PORT_SCIF, | ||
260 | .irqs = { 205, 206, 207, 204 }, | ||
261 | }, { | ||
262 | .flags = 0, | ||
263 | } | ||
264 | }; | ||
265 | |||
266 | static struct platform_device sci_device = { | ||
267 | .name = "sh-sci", | ||
268 | .id = -1, | ||
269 | .dev = { | ||
270 | .platform_data = sci_platform_data, | ||
271 | }, | ||
272 | }; | ||
273 | |||
274 | static struct resource rtc_resources[] = { | ||
275 | [0] = { | ||
276 | .start = 0xffff2000, | ||
277 | .end = 0xffff2000 + 0x58 - 1, | ||
278 | .flags = IORESOURCE_IO, | ||
279 | }, | ||
280 | [1] = { | ||
281 | /* Period IRQ */ | ||
282 | .start = 232, | ||
283 | .flags = IORESOURCE_IRQ, | ||
284 | }, | ||
285 | [2] = { | ||
286 | /* Carry IRQ */ | ||
287 | .start = 233, | ||
288 | .flags = IORESOURCE_IRQ, | ||
289 | }, | ||
290 | [3] = { | ||
291 | /* Alarm IRQ */ | ||
292 | .start = 231, | ||
293 | .flags = IORESOURCE_IRQ, | ||
294 | }, | ||
295 | }; | ||
296 | |||
297 | static struct platform_device rtc_device = { | ||
298 | .name = "sh-rtc", | ||
299 | .id = -1, | ||
300 | .num_resources = ARRAY_SIZE(rtc_resources), | ||
301 | .resource = rtc_resources, | ||
302 | }; | ||
303 | |||
304 | static struct platform_device *sh7203_devices[] __initdata = { | ||
305 | &sci_device, | ||
306 | &rtc_device, | ||
307 | }; | ||
308 | |||
309 | static int __init sh7203_devices_setup(void) | ||
310 | { | ||
311 | return platform_add_devices(sh7203_devices, | ||
312 | ARRAY_SIZE(sh7203_devices)); | ||
313 | } | ||
314 | __initcall(sh7203_devices_setup); | ||
315 | |||
316 | void __init plat_irq_setup(void) | ||
317 | { | ||
318 | register_intc_controller(&intc_desc); | ||
319 | } | ||
diff --git a/arch/sh/kernel/cpu/sh2a/setup-sh7206.c b/arch/sh/kernel/cpu/sh2a/setup-sh7206.c index bd745aa87222..a564425b905f 100644 --- a/arch/sh/kernel/cpu/sh2a/setup-sh7206.c +++ b/arch/sh/kernel/cpu/sh2a/setup-sh7206.c | |||
@@ -167,7 +167,7 @@ static struct intc_mask_reg mask_registers[] __initdata = { | |||
167 | }; | 167 | }; |
168 | 168 | ||
169 | static DECLARE_INTC_DESC(intc_desc, "sh7206", vectors, groups, | 169 | static DECLARE_INTC_DESC(intc_desc, "sh7206", vectors, groups, |
170 | NULL, mask_registers, prio_registers, NULL); | 170 | mask_registers, prio_registers, NULL); |
171 | 171 | ||
172 | static struct plat_sci_port sci_platform_data[] = { | 172 | static struct plat_sci_port sci_platform_data[] = { |
173 | { | 173 | { |
diff --git a/arch/sh/kernel/cpu/sh3/Makefile b/arch/sh/kernel/cpu/sh3/Makefile index 646eb6933614..3ae4d9111f19 100644 --- a/arch/sh/kernel/cpu/sh3/Makefile +++ b/arch/sh/kernel/cpu/sh3/Makefile | |||
@@ -13,6 +13,7 @@ obj-$(CONFIG_CPU_SUBTYPE_SH7709) += setup-sh770x.o | |||
13 | obj-$(CONFIG_CPU_SUBTYPE_SH7710) += setup-sh7710.o | 13 | obj-$(CONFIG_CPU_SUBTYPE_SH7710) += setup-sh7710.o |
14 | obj-$(CONFIG_CPU_SUBTYPE_SH7712) += setup-sh7710.o | 14 | obj-$(CONFIG_CPU_SUBTYPE_SH7712) += setup-sh7710.o |
15 | obj-$(CONFIG_CPU_SUBTYPE_SH7720) += setup-sh7720.o | 15 | obj-$(CONFIG_CPU_SUBTYPE_SH7720) += setup-sh7720.o |
16 | obj-$(CONFIG_CPU_SUBTYPE_SH7721) += setup-sh7720.o | ||
16 | 17 | ||
17 | # Primary on-chip clocks (common) | 18 | # Primary on-chip clocks (common) |
18 | clock-$(CONFIG_CPU_SH3) := clock-sh3.o | 19 | clock-$(CONFIG_CPU_SH3) := clock-sh3.o |
@@ -21,5 +22,6 @@ clock-$(CONFIG_CPU_SUBTYPE_SH7706) := clock-sh7706.o | |||
21 | clock-$(CONFIG_CPU_SUBTYPE_SH7709) := clock-sh7709.o | 22 | clock-$(CONFIG_CPU_SUBTYPE_SH7709) := clock-sh7709.o |
22 | clock-$(CONFIG_CPU_SUBTYPE_SH7710) := clock-sh7710.o | 23 | clock-$(CONFIG_CPU_SUBTYPE_SH7710) := clock-sh7710.o |
23 | clock-$(CONFIG_CPU_SUBTYPE_SH7720) := clock-sh7710.o | 24 | clock-$(CONFIG_CPU_SUBTYPE_SH7720) := clock-sh7710.o |
25 | clock-$(CONFIG_CPU_SUBTYPE_SH7712) := clock-sh7712.o | ||
24 | 26 | ||
25 | obj-y += $(clock-y) | 27 | obj-y += $(clock-y) |
diff --git a/arch/sh/kernel/cpu/sh3/clock-sh7712.c b/arch/sh/kernel/cpu/sh3/clock-sh7712.c new file mode 100644 index 000000000000..54f54df51ef0 --- /dev/null +++ b/arch/sh/kernel/cpu/sh3/clock-sh7712.c | |||
@@ -0,0 +1,71 @@ | |||
1 | /* | ||
2 | * arch/sh/kernel/cpu/sh3/clock-sh7712.c | ||
3 | * | ||
4 | * SH7712 support for the clock framework | ||
5 | * | ||
6 | * Copyright (C) 2007 Andrew Murray <amurray@mpc-data.co.uk> | ||
7 | * | ||
8 | * Based on arch/sh/kernel/cpu/sh3/clock-sh3.c | ||
9 | * Copyright (C) 2005 Paul Mundt | ||
10 | * | ||
11 | * This file is subject to the terms and conditions of the GNU General Public | ||
12 | * License. See the file "COPYING" in the main directory of this archive | ||
13 | * for more details. | ||
14 | */ | ||
15 | #include <linux/init.h> | ||
16 | #include <linux/kernel.h> | ||
17 | #include <asm/clock.h> | ||
18 | #include <asm/freq.h> | ||
19 | #include <asm/io.h> | ||
20 | |||
21 | static int multipliers[] = { 1, 2, 3 }; | ||
22 | static int divisors[] = { 1, 2, 3, 4, 6 }; | ||
23 | |||
24 | static void master_clk_init(struct clk *clk) | ||
25 | { | ||
26 | int frqcr = ctrl_inw(FRQCR); | ||
27 | int idx = (frqcr & 0x0300) >> 8; | ||
28 | |||
29 | clk->rate *= multipliers[idx]; | ||
30 | } | ||
31 | |||
32 | static struct clk_ops sh7712_master_clk_ops = { | ||
33 | .init = master_clk_init, | ||
34 | }; | ||
35 | |||
36 | static void module_clk_recalc(struct clk *clk) | ||
37 | { | ||
38 | int frqcr = ctrl_inw(FRQCR); | ||
39 | int idx = frqcr & 0x0007; | ||
40 | |||
41 | clk->rate = clk->parent->rate / divisors[idx]; | ||
42 | } | ||
43 | |||
44 | static struct clk_ops sh7712_module_clk_ops = { | ||
45 | .recalc = module_clk_recalc, | ||
46 | }; | ||
47 | |||
48 | static void cpu_clk_recalc(struct clk *clk) | ||
49 | { | ||
50 | int frqcr = ctrl_inw(FRQCR); | ||
51 | int idx = (frqcr & 0x0030) >> 4; | ||
52 | |||
53 | clk->rate = clk->parent->rate / divisors[idx]; | ||
54 | } | ||
55 | |||
56 | static struct clk_ops sh7712_cpu_clk_ops = { | ||
57 | .recalc = cpu_clk_recalc, | ||
58 | }; | ||
59 | |||
60 | static struct clk_ops *sh7712_clk_ops[] = { | ||
61 | &sh7712_master_clk_ops, | ||
62 | &sh7712_module_clk_ops, | ||
63 | &sh7712_cpu_clk_ops, | ||
64 | }; | ||
65 | |||
66 | void __init arch_init_clk_ops(struct clk_ops **ops, int idx) | ||
67 | { | ||
68 | if (idx < ARRAY_SIZE(sh7712_clk_ops)) | ||
69 | *ops = sh7712_clk_ops[idx]; | ||
70 | } | ||
71 | |||
diff --git a/arch/sh/kernel/cpu/sh3/entry.S b/arch/sh/kernel/cpu/sh3/entry.S index 0d12a124055c..4004073f98cd 100644 --- a/arch/sh/kernel/cpu/sh3/entry.S +++ b/arch/sh/kernel/cpu/sh3/entry.S | |||
@@ -13,8 +13,9 @@ | |||
13 | #include <linux/linkage.h> | 13 | #include <linux/linkage.h> |
14 | #include <asm/asm-offsets.h> | 14 | #include <asm/asm-offsets.h> |
15 | #include <asm/thread_info.h> | 15 | #include <asm/thread_info.h> |
16 | #include <asm/cpu/mmu_context.h> | ||
17 | #include <asm/unistd.h> | 16 | #include <asm/unistd.h> |
17 | #include <asm/cpu/mmu_context.h> | ||
18 | #include <asm/page.h> | ||
18 | 19 | ||
19 | ! NOTE: | 20 | ! NOTE: |
20 | ! GNU as (as of 2.9.1) changes bf/s into bt/s and bra, when the address | 21 | ! GNU as (as of 2.9.1) changes bf/s into bt/s and bra, when the address |
@@ -409,6 +410,27 @@ ENTRY(handle_exception) | |||
409 | ! Using k0, k1 for scratch registers (r0_bank1, r1_bank), | 410 | ! Using k0, k1 for scratch registers (r0_bank1, r1_bank), |
410 | ! save all registers onto stack. | 411 | ! save all registers onto stack. |
411 | ! | 412 | ! |
413 | |||
414 | #ifdef CONFIG_GUSA | ||
415 | ! Check for roll back gRB (User and Kernel) | ||
416 | mov r15, k0 | ||
417 | shll k0 | ||
418 | bf/s 1f | ||
419 | shll k0 | ||
420 | bf/s 1f | ||
421 | stc spc, k1 | ||
422 | stc r0_bank, k0 | ||
423 | cmp/hs k0, k1 ! test k1 (saved PC) >= k0 (saved r0) | ||
424 | bt/s 2f | ||
425 | stc r1_bank, k1 | ||
426 | |||
427 | add #-2, k0 | ||
428 | add r15, k0 | ||
429 | ldc k0, spc ! PC = saved r0 + r15 - 2 | ||
430 | 2: mov k1, r15 ! SP = r1 | ||
431 | 1: | ||
432 | #endif | ||
433 | |||
412 | stc ssr, k0 ! Is it from kernel space? | 434 | stc ssr, k0 ! Is it from kernel space? |
413 | shll k0 ! Check MD bit (bit30) by shifting it into... | 435 | shll k0 ! Check MD bit (bit30) by shifting it into... |
414 | shll k0 ! ...the T bit | 436 | shll k0 ! ...the T bit |
diff --git a/arch/sh/kernel/cpu/sh3/ex.S b/arch/sh/kernel/cpu/sh3/ex.S index b6abf38d3a8d..11b6d9c6edae 100644 --- a/arch/sh/kernel/cpu/sh3/ex.S +++ b/arch/sh/kernel/cpu/sh3/ex.S | |||
@@ -36,7 +36,7 @@ ENTRY(exception_handling_table) | |||
36 | .long exception_error ! address error store /* 100 */ | 36 | .long exception_error ! address error store /* 100 */ |
37 | #endif | 37 | #endif |
38 | #if defined(CONFIG_SH_FPU) | 38 | #if defined(CONFIG_SH_FPU) |
39 | .long do_fpu_error /* 120 */ | 39 | .long fpu_error_trap_handler /* 120 */ |
40 | #else | 40 | #else |
41 | .long exception_error /* 120 */ | 41 | .long exception_error /* 120 */ |
42 | #endif | 42 | #endif |
diff --git a/arch/sh/kernel/cpu/sh3/probe.c b/arch/sh/kernel/cpu/sh3/probe.c index bf579e061e09..fcc80bb7bee7 100644 --- a/arch/sh/kernel/cpu/sh3/probe.c +++ b/arch/sh/kernel/cpu/sh3/probe.c | |||
@@ -16,11 +16,11 @@ | |||
16 | #include <asm/cache.h> | 16 | #include <asm/cache.h> |
17 | #include <asm/io.h> | 17 | #include <asm/io.h> |
18 | 18 | ||
19 | int __init detect_cpu_and_cache_system(void) | 19 | int __uses_jump_to_uncached detect_cpu_and_cache_system(void) |
20 | { | 20 | { |
21 | unsigned long addr0, addr1, data0, data1, data2, data3; | 21 | unsigned long addr0, addr1, data0, data1, data2, data3; |
22 | 22 | ||
23 | jump_to_P2(); | 23 | jump_to_uncached(); |
24 | /* | 24 | /* |
25 | * Check if the entry shadows or not. | 25 | * Check if the entry shadows or not. |
26 | * When shadowed, it's 128-entry system. | 26 | * When shadowed, it's 128-entry system. |
@@ -48,7 +48,7 @@ int __init detect_cpu_and_cache_system(void) | |||
48 | ctrl_outl(data0&~SH_CACHE_VALID, addr0); | 48 | ctrl_outl(data0&~SH_CACHE_VALID, addr0); |
49 | ctrl_outl(data2&~SH_CACHE_VALID, addr1); | 49 | ctrl_outl(data2&~SH_CACHE_VALID, addr1); |
50 | 50 | ||
51 | back_to_P1(); | 51 | back_to_cached(); |
52 | 52 | ||
53 | boot_cpu_data.dcache.ways = 4; | 53 | boot_cpu_data.dcache.ways = 4; |
54 | boot_cpu_data.dcache.entry_shift = 4; | 54 | boot_cpu_data.dcache.entry_shift = 4; |
@@ -84,6 +84,9 @@ int __init detect_cpu_and_cache_system(void) | |||
84 | #if defined(CONFIG_CPU_SUBTYPE_SH7720) | 84 | #if defined(CONFIG_CPU_SUBTYPE_SH7720) |
85 | boot_cpu_data.type = CPU_SH7720; | 85 | boot_cpu_data.type = CPU_SH7720; |
86 | #endif | 86 | #endif |
87 | #if defined(CONFIG_CPU_SUBTYPE_SH7721) | ||
88 | boot_cpu_data.type = CPU_SH7721; | ||
89 | #endif | ||
87 | #if defined(CONFIG_CPU_SUBTYPE_SH7705) | 90 | #if defined(CONFIG_CPU_SUBTYPE_SH7705) |
88 | boot_cpu_data.type = CPU_SH7705; | 91 | boot_cpu_data.type = CPU_SH7705; |
89 | 92 | ||
diff --git a/arch/sh/kernel/cpu/sh3/setup-sh7705.c b/arch/sh/kernel/cpu/sh3/setup-sh7705.c index f6c65f2659e9..dd0a20a685f7 100644 --- a/arch/sh/kernel/cpu/sh3/setup-sh7705.c +++ b/arch/sh/kernel/cpu/sh3/setup-sh7705.c | |||
@@ -66,12 +66,6 @@ static struct intc_group groups[] __initdata = { | |||
66 | INTC_GROUP(SCIF2, SCIF2_ERI, SCIF2_RXI, SCIF2_TXI), | 66 | INTC_GROUP(SCIF2, SCIF2_ERI, SCIF2_RXI, SCIF2_TXI), |
67 | }; | 67 | }; |
68 | 68 | ||
69 | static struct intc_prio priorities[] __initdata = { | ||
70 | INTC_PRIO(DMAC, 7), | ||
71 | INTC_PRIO(SCIF2, 3), | ||
72 | INTC_PRIO(SCIF0, 3), | ||
73 | }; | ||
74 | |||
75 | static struct intc_prio_reg prio_registers[] __initdata = { | 69 | static struct intc_prio_reg prio_registers[] __initdata = { |
76 | { 0xfffffee2, 0, 16, 4, /* IPRA */ { TMU0, TMU1, TMU2, RTC } }, | 70 | { 0xfffffee2, 0, 16, 4, /* IPRA */ { TMU0, TMU1, TMU2, RTC } }, |
77 | { 0xfffffee4, 0, 16, 4, /* IPRB */ { WDT, REF_RCMI, 0, 0 } }, | 71 | { 0xfffffee4, 0, 16, 4, /* IPRB */ { WDT, REF_RCMI, 0, 0 } }, |
@@ -85,7 +79,7 @@ static struct intc_prio_reg prio_registers[] __initdata = { | |||
85 | }; | 79 | }; |
86 | 80 | ||
87 | static DECLARE_INTC_DESC(intc_desc, "sh7705", vectors, groups, | 81 | static DECLARE_INTC_DESC(intc_desc, "sh7705", vectors, groups, |
88 | priorities, NULL, prio_registers, NULL); | 82 | NULL, prio_registers, NULL); |
89 | 83 | ||
90 | static struct intc_vect vectors_irq[] __initdata = { | 84 | static struct intc_vect vectors_irq[] __initdata = { |
91 | INTC_VECT(IRQ0, 0x600), INTC_VECT(IRQ1, 0x620), | 85 | INTC_VECT(IRQ0, 0x600), INTC_VECT(IRQ1, 0x620), |
@@ -93,7 +87,7 @@ static struct intc_vect vectors_irq[] __initdata = { | |||
93 | }; | 87 | }; |
94 | 88 | ||
95 | static DECLARE_INTC_DESC(intc_desc_irq, "sh7705-irq", vectors_irq, NULL, | 89 | static DECLARE_INTC_DESC(intc_desc_irq, "sh7705-irq", vectors_irq, NULL, |
96 | priorities, NULL, prio_registers, NULL); | 90 | NULL, prio_registers, NULL); |
97 | 91 | ||
98 | static struct plat_sci_port sci_platform_data[] = { | 92 | static struct plat_sci_port sci_platform_data[] = { |
99 | { | 93 | { |
diff --git a/arch/sh/kernel/cpu/sh3/setup-sh770x.c b/arch/sh/kernel/cpu/sh3/setup-sh770x.c index 60b04b1f9453..969804bb523b 100644 --- a/arch/sh/kernel/cpu/sh3/setup-sh770x.c +++ b/arch/sh/kernel/cpu/sh3/setup-sh770x.c | |||
@@ -81,13 +81,6 @@ static struct intc_group groups[] __initdata = { | |||
81 | INTC_GROUP(SCIF2, SCIF2_ERI, SCIF2_RXI, SCIF2_BRI, SCIF2_TXI), | 81 | INTC_GROUP(SCIF2, SCIF2_ERI, SCIF2_RXI, SCIF2_BRI, SCIF2_TXI), |
82 | }; | 82 | }; |
83 | 83 | ||
84 | static struct intc_prio priorities[] __initdata = { | ||
85 | INTC_PRIO(DMAC, 7), | ||
86 | INTC_PRIO(SCI, 3), | ||
87 | INTC_PRIO(SCIF2, 3), | ||
88 | INTC_PRIO(SCIF0, 3), | ||
89 | }; | ||
90 | |||
91 | static struct intc_prio_reg prio_registers[] __initdata = { | 84 | static struct intc_prio_reg prio_registers[] __initdata = { |
92 | { 0xfffffee2, 0, 16, 4, /* IPRA */ { TMU0, TMU1, TMU2, RTC } }, | 85 | { 0xfffffee2, 0, 16, 4, /* IPRA */ { TMU0, TMU1, TMU2, RTC } }, |
93 | { 0xfffffee4, 0, 16, 4, /* IPRB */ { WDT, REF, SCI, 0 } }, | 86 | { 0xfffffee4, 0, 16, 4, /* IPRB */ { WDT, REF, SCI, 0 } }, |
@@ -109,7 +102,7 @@ static struct intc_prio_reg prio_registers[] __initdata = { | |||
109 | }; | 102 | }; |
110 | 103 | ||
111 | static DECLARE_INTC_DESC(intc_desc, "sh770x", vectors, groups, | 104 | static DECLARE_INTC_DESC(intc_desc, "sh770x", vectors, groups, |
112 | priorities, NULL, prio_registers, NULL); | 105 | NULL, prio_registers, NULL); |
113 | 106 | ||
114 | #if defined(CONFIG_CPU_SUBTYPE_SH7706) || \ | 107 | #if defined(CONFIG_CPU_SUBTYPE_SH7706) || \ |
115 | defined(CONFIG_CPU_SUBTYPE_SH7707) || \ | 108 | defined(CONFIG_CPU_SUBTYPE_SH7707) || \ |
@@ -120,7 +113,7 @@ static struct intc_vect vectors_irq[] __initdata = { | |||
120 | }; | 113 | }; |
121 | 114 | ||
122 | static DECLARE_INTC_DESC(intc_desc_irq, "sh770x-irq", vectors_irq, NULL, | 115 | static DECLARE_INTC_DESC(intc_desc_irq, "sh770x-irq", vectors_irq, NULL, |
123 | priorities, NULL, prio_registers, NULL); | 116 | NULL, prio_registers, NULL); |
124 | #endif | 117 | #endif |
125 | 118 | ||
126 | static struct resource rtc_resources[] = { | 119 | static struct resource rtc_resources[] = { |
diff --git a/arch/sh/kernel/cpu/sh3/setup-sh7710.c b/arch/sh/kernel/cpu/sh3/setup-sh7710.c index 84e5629fa841..0cc0e2bf135d 100644 --- a/arch/sh/kernel/cpu/sh3/setup-sh7710.c +++ b/arch/sh/kernel/cpu/sh3/setup-sh7710.c | |||
@@ -73,18 +73,6 @@ static struct intc_group groups[] __initdata = { | |||
73 | INTC_GROUP(SIOF1, SIOF1_ERI, SIOF1_TXI, SIOF1_RXI, SIOF1_CCI), | 73 | INTC_GROUP(SIOF1, SIOF1_ERI, SIOF1_TXI, SIOF1_RXI, SIOF1_CCI), |
74 | }; | 74 | }; |
75 | 75 | ||
76 | static struct intc_prio priorities[] __initdata = { | ||
77 | INTC_PRIO(DMAC1, 7), | ||
78 | INTC_PRIO(DMAC2, 7), | ||
79 | INTC_PRIO(SCIF0, 3), | ||
80 | INTC_PRIO(SCIF1, 3), | ||
81 | INTC_PRIO(SIOF0, 3), | ||
82 | INTC_PRIO(SIOF1, 3), | ||
83 | INTC_PRIO(EDMAC0, 5), | ||
84 | INTC_PRIO(EDMAC1, 5), | ||
85 | INTC_PRIO(EDMAC2, 5), | ||
86 | }; | ||
87 | |||
88 | static struct intc_prio_reg prio_registers[] __initdata = { | 76 | static struct intc_prio_reg prio_registers[] __initdata = { |
89 | { 0xfffffee2, 0, 16, 4, /* IPRA */ { TMU0, TMU1, TMU2, RTC } }, | 77 | { 0xfffffee2, 0, 16, 4, /* IPRA */ { TMU0, TMU1, TMU2, RTC } }, |
90 | { 0xfffffee4, 0, 16, 4, /* IPRB */ { WDT, REF, 0, 0 } }, | 78 | { 0xfffffee4, 0, 16, 4, /* IPRB */ { WDT, REF, 0, 0 } }, |
@@ -101,7 +89,7 @@ static struct intc_prio_reg prio_registers[] __initdata = { | |||
101 | }; | 89 | }; |
102 | 90 | ||
103 | static DECLARE_INTC_DESC(intc_desc, "sh7710", vectors, groups, | 91 | static DECLARE_INTC_DESC(intc_desc, "sh7710", vectors, groups, |
104 | priorities, NULL, prio_registers, NULL); | 92 | NULL, prio_registers, NULL); |
105 | 93 | ||
106 | static struct intc_vect vectors_irq[] __initdata = { | 94 | static struct intc_vect vectors_irq[] __initdata = { |
107 | INTC_VECT(IRQ0, 0x600), INTC_VECT(IRQ1, 0x620), | 95 | INTC_VECT(IRQ0, 0x600), INTC_VECT(IRQ1, 0x620), |
@@ -109,7 +97,7 @@ static struct intc_vect vectors_irq[] __initdata = { | |||
109 | }; | 97 | }; |
110 | 98 | ||
111 | static DECLARE_INTC_DESC(intc_desc_irq, "sh7710-irq", vectors_irq, NULL, | 99 | static DECLARE_INTC_DESC(intc_desc_irq, "sh7710-irq", vectors_irq, NULL, |
112 | priorities, NULL, prio_registers, NULL); | 100 | NULL, prio_registers, NULL); |
113 | 101 | ||
114 | static struct resource rtc_resources[] = { | 102 | static struct resource rtc_resources[] = { |
115 | [0] = { | 103 | [0] = { |
diff --git a/arch/sh/kernel/cpu/sh3/setup-sh7720.c b/arch/sh/kernel/cpu/sh3/setup-sh7720.c index a0929b8a95ae..3855ea4c21c8 100644 --- a/arch/sh/kernel/cpu/sh3/setup-sh7720.c +++ b/arch/sh/kernel/cpu/sh3/setup-sh7720.c | |||
@@ -85,9 +85,62 @@ static struct platform_device sci_device = { | |||
85 | }, | 85 | }, |
86 | }; | 86 | }; |
87 | 87 | ||
88 | static struct resource usb_ohci_resources[] = { | ||
89 | [0] = { | ||
90 | .start = 0xA4428000, | ||
91 | .end = 0xA44280FF, | ||
92 | .flags = IORESOURCE_MEM, | ||
93 | }, | ||
94 | [1] = { | ||
95 | .start = 67, | ||
96 | .end = 67, | ||
97 | .flags = IORESOURCE_IRQ, | ||
98 | }, | ||
99 | }; | ||
100 | |||
101 | static u64 usb_ohci_dma_mask = 0xffffffffUL; | ||
102 | static struct platform_device usb_ohci_device = { | ||
103 | .name = "sh_ohci", | ||
104 | .id = -1, | ||
105 | .dev = { | ||
106 | .dma_mask = &usb_ohci_dma_mask, | ||
107 | .coherent_dma_mask = 0xffffffff, | ||
108 | }, | ||
109 | .num_resources = ARRAY_SIZE(usb_ohci_resources), | ||
110 | .resource = usb_ohci_resources, | ||
111 | }; | ||
112 | |||
113 | static struct resource usbf_resources[] = { | ||
114 | [0] = { | ||
115 | .name = "sh_udc", | ||
116 | .start = 0xA4420000, | ||
117 | .end = 0xA44200FF, | ||
118 | .flags = IORESOURCE_MEM, | ||
119 | }, | ||
120 | [1] = { | ||
121 | .name = "sh_udc", | ||
122 | .start = 65, | ||
123 | .end = 65, | ||
124 | .flags = IORESOURCE_IRQ, | ||
125 | }, | ||
126 | }; | ||
127 | |||
128 | static struct platform_device usbf_device = { | ||
129 | .name = "sh_udc", | ||
130 | .id = -1, | ||
131 | .dev = { | ||
132 | .dma_mask = NULL, | ||
133 | .coherent_dma_mask = 0xffffffff, | ||
134 | }, | ||
135 | .num_resources = ARRAY_SIZE(usbf_resources), | ||
136 | .resource = usbf_resources, | ||
137 | }; | ||
138 | |||
88 | static struct platform_device *sh7720_devices[] __initdata = { | 139 | static struct platform_device *sh7720_devices[] __initdata = { |
89 | &rtc_device, | 140 | &rtc_device, |
90 | &sci_device, | 141 | &sci_device, |
142 | &usb_ohci_device, | ||
143 | &usbf_device, | ||
91 | }; | 144 | }; |
92 | 145 | ||
93 | static int __init sh7720_devices_setup(void) | 146 | static int __init sh7720_devices_setup(void) |
@@ -127,8 +180,11 @@ static struct intc_vect vectors[] __initdata = { | |||
127 | INTC_VECT(USBF_SPD, 0x6e0), INTC_VECT(DMAC1_DEI0, 0x800), | 180 | INTC_VECT(USBF_SPD, 0x6e0), INTC_VECT(DMAC1_DEI0, 0x800), |
128 | INTC_VECT(DMAC1_DEI1, 0x820), INTC_VECT(DMAC1_DEI2, 0x840), | 181 | INTC_VECT(DMAC1_DEI1, 0x820), INTC_VECT(DMAC1_DEI2, 0x840), |
129 | INTC_VECT(DMAC1_DEI3, 0x860), INTC_VECT(LCDC, 0x900), | 182 | INTC_VECT(DMAC1_DEI3, 0x860), INTC_VECT(LCDC, 0x900), |
130 | INTC_VECT(SSL, 0x980), INTC_VECT(USBFI0, 0xa20), | 183 | #if defined(CONFIG_CPU_SUBTYPE_SH7720) |
131 | INTC_VECT(USBFI1, 0xa40), INTC_VECT(USBHI, 0xa60), | 184 | INTC_VECT(SSL, 0x980), |
185 | #endif | ||
186 | INTC_VECT(USBFI0, 0xa20), INTC_VECT(USBFI1, 0xa40), | ||
187 | INTC_VECT(USBHI, 0xa60), | ||
132 | INTC_VECT(DMAC2_DEI4, 0xb80), INTC_VECT(DMAC2_DEI5, 0xba0), | 188 | INTC_VECT(DMAC2_DEI4, 0xb80), INTC_VECT(DMAC2_DEI5, 0xba0), |
133 | INTC_VECT(ADC, 0xbe0), INTC_VECT(SCIF0, 0xc00), | 189 | INTC_VECT(ADC, 0xbe0), INTC_VECT(SCIF0, 0xc00), |
134 | INTC_VECT(SCIF1, 0xc20), INTC_VECT(PINT07, 0xc80), | 190 | INTC_VECT(SCIF1, 0xc20), INTC_VECT(PINT07, 0xc80), |
@@ -153,22 +209,16 @@ static struct intc_group groups[] __initdata = { | |||
153 | INTC_GROUP(MMC, MMCI0, MMCI1, MMCI2, MMCI3), | 209 | INTC_GROUP(MMC, MMCI0, MMCI1, MMCI2, MMCI3), |
154 | }; | 210 | }; |
155 | 211 | ||
156 | static struct intc_prio priorities[] __initdata = { | ||
157 | INTC_PRIO(SCIF0, 2), | ||
158 | INTC_PRIO(SCIF1, 2), | ||
159 | INTC_PRIO(DMAC1, 1), | ||
160 | INTC_PRIO(DMAC2, 1), | ||
161 | INTC_PRIO(RTC, 2), | ||
162 | INTC_PRIO(TMU, 2), | ||
163 | INTC_PRIO(TPU, 2), | ||
164 | }; | ||
165 | |||
166 | static struct intc_prio_reg prio_registers[] __initdata = { | 212 | static struct intc_prio_reg prio_registers[] __initdata = { |
167 | { 0xA414FEE2UL, 0, 16, 4, /* IPRA */ { TMU0, TMU1, TMU2, RTC } }, | 213 | { 0xA414FEE2UL, 0, 16, 4, /* IPRA */ { TMU0, TMU1, TMU2, RTC } }, |
168 | { 0xA414FEE4UL, 0, 16, 4, /* IPRB */ { WDT, REF_RCMI, SIM, 0 } }, | 214 | { 0xA414FEE4UL, 0, 16, 4, /* IPRB */ { WDT, REF_RCMI, SIM, 0 } }, |
169 | { 0xA4140016UL, 0, 16, 4, /* IPRC */ { IRQ3, IRQ2, IRQ1, IRQ0 } }, | 215 | { 0xA4140016UL, 0, 16, 4, /* IPRC */ { IRQ3, IRQ2, IRQ1, IRQ0 } }, |
170 | { 0xA4140018UL, 0, 16, 4, /* IPRD */ { USBF_SPD, TMU_SUNI, IRQ5, IRQ4 } }, | 216 | { 0xA4140018UL, 0, 16, 4, /* IPRD */ { USBF_SPD, TMU_SUNI, IRQ5, IRQ4 } }, |
217 | #if defined(CONFIG_CPU_SUBTYPE_SH7720) | ||
171 | { 0xA414001AUL, 0, 16, 4, /* IPRE */ { DMAC1, 0, LCDC, SSL } }, | 218 | { 0xA414001AUL, 0, 16, 4, /* IPRE */ { DMAC1, 0, LCDC, SSL } }, |
219 | #else | ||
220 | { 0xA414001AUL, 0, 16, 4, /* IPRE */ { DMAC1, 0, LCDC, 0 } }, | ||
221 | #endif | ||
172 | { 0xA4080000UL, 0, 16, 4, /* IPRF */ { ADC, DMAC2, USBFI, CMT } }, | 222 | { 0xA4080000UL, 0, 16, 4, /* IPRF */ { ADC, DMAC2, USBFI, CMT } }, |
173 | { 0xA4080002UL, 0, 16, 4, /* IPRG */ { SCIF0, SCIF1, 0, 0 } }, | 223 | { 0xA4080002UL, 0, 16, 4, /* IPRG */ { SCIF0, SCIF1, 0, 0 } }, |
174 | { 0xA4080004UL, 0, 16, 4, /* IPRH */ { PINT07, PINT815, TPU, IIC } }, | 224 | { 0xA4080004UL, 0, 16, 4, /* IPRH */ { PINT07, PINT815, TPU, IIC } }, |
@@ -177,7 +227,7 @@ static struct intc_prio_reg prio_registers[] __initdata = { | |||
177 | }; | 227 | }; |
178 | 228 | ||
179 | static DECLARE_INTC_DESC(intc_desc, "sh7720", vectors, groups, | 229 | static DECLARE_INTC_DESC(intc_desc, "sh7720", vectors, groups, |
180 | priorities, NULL, prio_registers, NULL); | 230 | NULL, prio_registers, NULL); |
181 | 231 | ||
182 | static struct intc_sense_reg sense_registers[] __initdata = { | 232 | static struct intc_sense_reg sense_registers[] __initdata = { |
183 | { INTC_ICR1, 16, 2, { 0, 0, IRQ5, IRQ4, IRQ3, IRQ2, IRQ1, IRQ0 } }, | 233 | { INTC_ICR1, 16, 2, { 0, 0, IRQ5, IRQ4, IRQ3, IRQ2, IRQ1, IRQ0 } }, |
@@ -190,7 +240,7 @@ static struct intc_vect vectors_irq[] __initdata = { | |||
190 | }; | 240 | }; |
191 | 241 | ||
192 | static DECLARE_INTC_DESC(intc_irq_desc, "sh7720-irq", vectors_irq, | 242 | static DECLARE_INTC_DESC(intc_irq_desc, "sh7720-irq", vectors_irq, |
193 | NULL, priorities, NULL, prio_registers, sense_registers); | 243 | NULL, NULL, prio_registers, sense_registers); |
194 | 244 | ||
195 | void __init plat_irq_setup_pins(int mode) | 245 | void __init plat_irq_setup_pins(int mode) |
196 | { | 246 | { |
diff --git a/arch/sh/kernel/cpu/sh4/Makefile b/arch/sh/kernel/cpu/sh4/Makefile index dadd6bffc128..d608557c7a3f 100644 --- a/arch/sh/kernel/cpu/sh4/Makefile +++ b/arch/sh/kernel/cpu/sh4/Makefile | |||
@@ -5,7 +5,7 @@ | |||
5 | obj-y := probe.o common.o | 5 | obj-y := probe.o common.o |
6 | common-y += $(addprefix ../sh3/, entry.o ex.o) | 6 | common-y += $(addprefix ../sh3/, entry.o ex.o) |
7 | 7 | ||
8 | obj-$(CONFIG_SH_FPU) += fpu.o | 8 | obj-$(CONFIG_SH_FPU) += fpu.o softfloat.o |
9 | obj-$(CONFIG_SH_STORE_QUEUES) += sq.o | 9 | obj-$(CONFIG_SH_STORE_QUEUES) += sq.o |
10 | 10 | ||
11 | # CPU subtype setup | 11 | # CPU subtype setup |
diff --git a/arch/sh/kernel/cpu/sh4/fpu.c b/arch/sh/kernel/cpu/sh4/fpu.c index c5a4fc77fa06..817f9939cda6 100644 --- a/arch/sh/kernel/cpu/sh4/fpu.c +++ b/arch/sh/kernel/cpu/sh4/fpu.c | |||
@@ -1,7 +1,4 @@ | |||
1 | /* $Id: fpu.c,v 1.4 2004/01/13 05:52:11 kkojima Exp $ | 1 | /* |
2 | * | ||
3 | * linux/arch/sh/kernel/fpu.c | ||
4 | * | ||
5 | * Save/restore floating point context for signal handlers. | 2 | * Save/restore floating point context for signal handlers. |
6 | * | 3 | * |
7 | * This file is subject to the terms and conditions of the GNU General Public | 4 | * This file is subject to the terms and conditions of the GNU General Public |
@@ -9,15 +6,16 @@ | |||
9 | * for more details. | 6 | * for more details. |
10 | * | 7 | * |
11 | * Copyright (C) 1999, 2000 Kaz Kojima & Niibe Yutaka | 8 | * Copyright (C) 1999, 2000 Kaz Kojima & Niibe Yutaka |
9 | * Copyright (C) 2006 ST Microelectronics Ltd. (denorm support) | ||
12 | * | 10 | * |
13 | * FIXME! These routines can be optimized in big endian case. | 11 | * FIXME! These routines have not been tested for big endian case. |
14 | */ | 12 | */ |
15 | |||
16 | #include <linux/sched.h> | 13 | #include <linux/sched.h> |
17 | #include <linux/signal.h> | 14 | #include <linux/signal.h> |
15 | #include <linux/io.h> | ||
16 | #include <asm/cpu/fpu.h> | ||
18 | #include <asm/processor.h> | 17 | #include <asm/processor.h> |
19 | #include <asm/system.h> | 18 | #include <asm/system.h> |
20 | #include <asm/io.h> | ||
21 | 19 | ||
22 | /* The PR (precision) bit in the FP Status Register must be clear when | 20 | /* The PR (precision) bit in the FP Status Register must be clear when |
23 | * an frchg instruction is executed, otherwise the instruction is undefined. | 21 | * an frchg instruction is executed, otherwise the instruction is undefined. |
@@ -25,177 +23,184 @@ | |||
25 | */ | 23 | */ |
26 | 24 | ||
27 | #define FPSCR_RCHG 0x00000000 | 25 | #define FPSCR_RCHG 0x00000000 |
26 | extern unsigned long long float64_div(unsigned long long a, | ||
27 | unsigned long long b); | ||
28 | extern unsigned long int float32_div(unsigned long int a, unsigned long int b); | ||
29 | extern unsigned long long float64_mul(unsigned long long a, | ||
30 | unsigned long long b); | ||
31 | extern unsigned long int float32_mul(unsigned long int a, unsigned long int b); | ||
32 | extern unsigned long long float64_add(unsigned long long a, | ||
33 | unsigned long long b); | ||
34 | extern unsigned long int float32_add(unsigned long int a, unsigned long int b); | ||
35 | extern unsigned long long float64_sub(unsigned long long a, | ||
36 | unsigned long long b); | ||
37 | extern unsigned long int float32_sub(unsigned long int a, unsigned long int b); | ||
28 | 38 | ||
39 | static unsigned int fpu_exception_flags; | ||
29 | 40 | ||
30 | /* | 41 | /* |
31 | * Save FPU registers onto task structure. | 42 | * Save FPU registers onto task structure. |
32 | * Assume called with FPU enabled (SR.FD=0). | 43 | * Assume called with FPU enabled (SR.FD=0). |
33 | */ | 44 | */ |
34 | void | 45 | void save_fpu(struct task_struct *tsk, struct pt_regs *regs) |
35 | save_fpu(struct task_struct *tsk, struct pt_regs *regs) | ||
36 | { | 46 | { |
37 | unsigned long dummy; | 47 | unsigned long dummy; |
38 | 48 | ||
39 | clear_tsk_thread_flag(tsk, TIF_USEDFPU); | 49 | clear_tsk_thread_flag(tsk, TIF_USEDFPU); |
40 | enable_fpu(); | 50 | enable_fpu(); |
41 | asm volatile("sts.l fpul, @-%0\n\t" | 51 | asm volatile ("sts.l fpul, @-%0\n\t" |
42 | "sts.l fpscr, @-%0\n\t" | 52 | "sts.l fpscr, @-%0\n\t" |
43 | "lds %2, fpscr\n\t" | 53 | "lds %2, fpscr\n\t" |
44 | "frchg\n\t" | 54 | "frchg\n\t" |
45 | "fmov.s fr15, @-%0\n\t" | 55 | "fmov.s fr15, @-%0\n\t" |
46 | "fmov.s fr14, @-%0\n\t" | 56 | "fmov.s fr14, @-%0\n\t" |
47 | "fmov.s fr13, @-%0\n\t" | 57 | "fmov.s fr13, @-%0\n\t" |
48 | "fmov.s fr12, @-%0\n\t" | 58 | "fmov.s fr12, @-%0\n\t" |
49 | "fmov.s fr11, @-%0\n\t" | 59 | "fmov.s fr11, @-%0\n\t" |
50 | "fmov.s fr10, @-%0\n\t" | 60 | "fmov.s fr10, @-%0\n\t" |
51 | "fmov.s fr9, @-%0\n\t" | 61 | "fmov.s fr9, @-%0\n\t" |
52 | "fmov.s fr8, @-%0\n\t" | 62 | "fmov.s fr8, @-%0\n\t" |
53 | "fmov.s fr7, @-%0\n\t" | 63 | "fmov.s fr7, @-%0\n\t" |
54 | "fmov.s fr6, @-%0\n\t" | 64 | "fmov.s fr6, @-%0\n\t" |
55 | "fmov.s fr5, @-%0\n\t" | 65 | "fmov.s fr5, @-%0\n\t" |
56 | "fmov.s fr4, @-%0\n\t" | 66 | "fmov.s fr4, @-%0\n\t" |
57 | "fmov.s fr3, @-%0\n\t" | 67 | "fmov.s fr3, @-%0\n\t" |
58 | "fmov.s fr2, @-%0\n\t" | 68 | "fmov.s fr2, @-%0\n\t" |
59 | "fmov.s fr1, @-%0\n\t" | 69 | "fmov.s fr1, @-%0\n\t" |
60 | "fmov.s fr0, @-%0\n\t" | 70 | "fmov.s fr0, @-%0\n\t" |
61 | "frchg\n\t" | 71 | "frchg\n\t" |
62 | "fmov.s fr15, @-%0\n\t" | 72 | "fmov.s fr15, @-%0\n\t" |
63 | "fmov.s fr14, @-%0\n\t" | 73 | "fmov.s fr14, @-%0\n\t" |
64 | "fmov.s fr13, @-%0\n\t" | 74 | "fmov.s fr13, @-%0\n\t" |
65 | "fmov.s fr12, @-%0\n\t" | 75 | "fmov.s fr12, @-%0\n\t" |
66 | "fmov.s fr11, @-%0\n\t" | 76 | "fmov.s fr11, @-%0\n\t" |
67 | "fmov.s fr10, @-%0\n\t" | 77 | "fmov.s fr10, @-%0\n\t" |
68 | "fmov.s fr9, @-%0\n\t" | 78 | "fmov.s fr9, @-%0\n\t" |
69 | "fmov.s fr8, @-%0\n\t" | 79 | "fmov.s fr8, @-%0\n\t" |
70 | "fmov.s fr7, @-%0\n\t" | 80 | "fmov.s fr7, @-%0\n\t" |
71 | "fmov.s fr6, @-%0\n\t" | 81 | "fmov.s fr6, @-%0\n\t" |
72 | "fmov.s fr5, @-%0\n\t" | 82 | "fmov.s fr5, @-%0\n\t" |
73 | "fmov.s fr4, @-%0\n\t" | 83 | "fmov.s fr4, @-%0\n\t" |
74 | "fmov.s fr3, @-%0\n\t" | 84 | "fmov.s fr3, @-%0\n\t" |
75 | "fmov.s fr2, @-%0\n\t" | 85 | "fmov.s fr2, @-%0\n\t" |
76 | "fmov.s fr1, @-%0\n\t" | 86 | "fmov.s fr1, @-%0\n\t" |
77 | "fmov.s fr0, @-%0\n\t" | 87 | "fmov.s fr0, @-%0\n\t" |
78 | "lds %3, fpscr\n\t" | 88 | "lds %3, fpscr\n\t":"=r" (dummy) |
79 | : "=r" (dummy) | 89 | :"0"((char *)(&tsk->thread.fpu.hard.status)), |
80 | : "0" ((char *)(&tsk->thread.fpu.hard.status)), | 90 | "r"(FPSCR_RCHG), "r"(FPSCR_INIT) |
81 | "r" (FPSCR_RCHG), | 91 | :"memory"); |
82 | "r" (FPSCR_INIT) | 92 | |
83 | : "memory"); | 93 | disable_fpu(); |
84 | 94 | release_fpu(regs); | |
85 | disable_fpu(); | ||
86 | release_fpu(regs); | ||
87 | } | 95 | } |
88 | 96 | ||
89 | static void | 97 | static void restore_fpu(struct task_struct *tsk) |
90 | restore_fpu(struct task_struct *tsk) | ||
91 | { | 98 | { |
92 | unsigned long dummy; | 99 | unsigned long dummy; |
93 | 100 | ||
94 | enable_fpu(); | 101 | enable_fpu(); |
95 | asm volatile("lds %2, fpscr\n\t" | 102 | asm volatile ("lds %2, fpscr\n\t" |
96 | "fmov.s @%0+, fr0\n\t" | 103 | "fmov.s @%0+, fr0\n\t" |
97 | "fmov.s @%0+, fr1\n\t" | 104 | "fmov.s @%0+, fr1\n\t" |
98 | "fmov.s @%0+, fr2\n\t" | 105 | "fmov.s @%0+, fr2\n\t" |
99 | "fmov.s @%0+, fr3\n\t" | 106 | "fmov.s @%0+, fr3\n\t" |
100 | "fmov.s @%0+, fr4\n\t" | 107 | "fmov.s @%0+, fr4\n\t" |
101 | "fmov.s @%0+, fr5\n\t" | 108 | "fmov.s @%0+, fr5\n\t" |
102 | "fmov.s @%0+, fr6\n\t" | 109 | "fmov.s @%0+, fr6\n\t" |
103 | "fmov.s @%0+, fr7\n\t" | 110 | "fmov.s @%0+, fr7\n\t" |
104 | "fmov.s @%0+, fr8\n\t" | 111 | "fmov.s @%0+, fr8\n\t" |
105 | "fmov.s @%0+, fr9\n\t" | 112 | "fmov.s @%0+, fr9\n\t" |
106 | "fmov.s @%0+, fr10\n\t" | 113 | "fmov.s @%0+, fr10\n\t" |
107 | "fmov.s @%0+, fr11\n\t" | 114 | "fmov.s @%0+, fr11\n\t" |
108 | "fmov.s @%0+, fr12\n\t" | 115 | "fmov.s @%0+, fr12\n\t" |
109 | "fmov.s @%0+, fr13\n\t" | 116 | "fmov.s @%0+, fr13\n\t" |
110 | "fmov.s @%0+, fr14\n\t" | 117 | "fmov.s @%0+, fr14\n\t" |
111 | "fmov.s @%0+, fr15\n\t" | 118 | "fmov.s @%0+, fr15\n\t" |
112 | "frchg\n\t" | 119 | "frchg\n\t" |
113 | "fmov.s @%0+, fr0\n\t" | 120 | "fmov.s @%0+, fr0\n\t" |
114 | "fmov.s @%0+, fr1\n\t" | 121 | "fmov.s @%0+, fr1\n\t" |
115 | "fmov.s @%0+, fr2\n\t" | 122 | "fmov.s @%0+, fr2\n\t" |
116 | "fmov.s @%0+, fr3\n\t" | 123 | "fmov.s @%0+, fr3\n\t" |
117 | "fmov.s @%0+, fr4\n\t" | 124 | "fmov.s @%0+, fr4\n\t" |
118 | "fmov.s @%0+, fr5\n\t" | 125 | "fmov.s @%0+, fr5\n\t" |
119 | "fmov.s @%0+, fr6\n\t" | 126 | "fmov.s @%0+, fr6\n\t" |
120 | "fmov.s @%0+, fr7\n\t" | 127 | "fmov.s @%0+, fr7\n\t" |
121 | "fmov.s @%0+, fr8\n\t" | 128 | "fmov.s @%0+, fr8\n\t" |
122 | "fmov.s @%0+, fr9\n\t" | 129 | "fmov.s @%0+, fr9\n\t" |
123 | "fmov.s @%0+, fr10\n\t" | 130 | "fmov.s @%0+, fr10\n\t" |
124 | "fmov.s @%0+, fr11\n\t" | 131 | "fmov.s @%0+, fr11\n\t" |
125 | "fmov.s @%0+, fr12\n\t" | 132 | "fmov.s @%0+, fr12\n\t" |
126 | "fmov.s @%0+, fr13\n\t" | 133 | "fmov.s @%0+, fr13\n\t" |
127 | "fmov.s @%0+, fr14\n\t" | 134 | "fmov.s @%0+, fr14\n\t" |
128 | "fmov.s @%0+, fr15\n\t" | 135 | "fmov.s @%0+, fr15\n\t" |
129 | "frchg\n\t" | 136 | "frchg\n\t" |
130 | "lds.l @%0+, fpscr\n\t" | 137 | "lds.l @%0+, fpscr\n\t" |
131 | "lds.l @%0+, fpul\n\t" | 138 | "lds.l @%0+, fpul\n\t" |
132 | : "=r" (dummy) | 139 | :"=r" (dummy) |
133 | : "0" (&tsk->thread.fpu), "r" (FPSCR_RCHG) | 140 | :"0"(&tsk->thread.fpu), "r"(FPSCR_RCHG) |
134 | : "memory"); | 141 | :"memory"); |
135 | disable_fpu(); | 142 | disable_fpu(); |
136 | } | 143 | } |
137 | 144 | ||
138 | /* | 145 | /* |
139 | * Load the FPU with signalling NANS. This bit pattern we're using | 146 | * Load the FPU with signalling NANS. This bit pattern we're using |
140 | * has the property that no matter wether considered as single or as | 147 | * has the property that no matter wether considered as single or as |
141 | * double precision represents signaling NANS. | 148 | * double precision represents signaling NANS. |
142 | */ | 149 | */ |
143 | 150 | ||
144 | static void | 151 | static void fpu_init(void) |
145 | fpu_init(void) | ||
146 | { | 152 | { |
147 | enable_fpu(); | 153 | enable_fpu(); |
148 | asm volatile("lds %0, fpul\n\t" | 154 | asm volatile ( "lds %0, fpul\n\t" |
149 | "lds %1, fpscr\n\t" | 155 | "lds %1, fpscr\n\t" |
150 | "fsts fpul, fr0\n\t" | 156 | "fsts fpul, fr0\n\t" |
151 | "fsts fpul, fr1\n\t" | 157 | "fsts fpul, fr1\n\t" |
152 | "fsts fpul, fr2\n\t" | 158 | "fsts fpul, fr2\n\t" |
153 | "fsts fpul, fr3\n\t" | 159 | "fsts fpul, fr3\n\t" |
154 | "fsts fpul, fr4\n\t" | 160 | "fsts fpul, fr4\n\t" |
155 | "fsts fpul, fr5\n\t" | 161 | "fsts fpul, fr5\n\t" |
156 | "fsts fpul, fr6\n\t" | 162 | "fsts fpul, fr6\n\t" |
157 | "fsts fpul, fr7\n\t" | 163 | "fsts fpul, fr7\n\t" |
158 | "fsts fpul, fr8\n\t" | 164 | "fsts fpul, fr8\n\t" |
159 | "fsts fpul, fr9\n\t" | 165 | "fsts fpul, fr9\n\t" |
160 | "fsts fpul, fr10\n\t" | 166 | "fsts fpul, fr10\n\t" |
161 | "fsts fpul, fr11\n\t" | 167 | "fsts fpul, fr11\n\t" |
162 | "fsts fpul, fr12\n\t" | 168 | "fsts fpul, fr12\n\t" |
163 | "fsts fpul, fr13\n\t" | 169 | "fsts fpul, fr13\n\t" |
164 | "fsts fpul, fr14\n\t" | 170 | "fsts fpul, fr14\n\t" |
165 | "fsts fpul, fr15\n\t" | 171 | "fsts fpul, fr15\n\t" |
166 | "frchg\n\t" | 172 | "frchg\n\t" |
167 | "fsts fpul, fr0\n\t" | 173 | "fsts fpul, fr0\n\t" |
168 | "fsts fpul, fr1\n\t" | 174 | "fsts fpul, fr1\n\t" |
169 | "fsts fpul, fr2\n\t" | 175 | "fsts fpul, fr2\n\t" |
170 | "fsts fpul, fr3\n\t" | 176 | "fsts fpul, fr3\n\t" |
171 | "fsts fpul, fr4\n\t" | 177 | "fsts fpul, fr4\n\t" |
172 | "fsts fpul, fr5\n\t" | 178 | "fsts fpul, fr5\n\t" |
173 | "fsts fpul, fr6\n\t" | 179 | "fsts fpul, fr6\n\t" |
174 | "fsts fpul, fr7\n\t" | 180 | "fsts fpul, fr7\n\t" |
175 | "fsts fpul, fr8\n\t" | 181 | "fsts fpul, fr8\n\t" |
176 | "fsts fpul, fr9\n\t" | 182 | "fsts fpul, fr9\n\t" |
177 | "fsts fpul, fr10\n\t" | 183 | "fsts fpul, fr10\n\t" |
178 | "fsts fpul, fr11\n\t" | 184 | "fsts fpul, fr11\n\t" |
179 | "fsts fpul, fr12\n\t" | 185 | "fsts fpul, fr12\n\t" |
180 | "fsts fpul, fr13\n\t" | 186 | "fsts fpul, fr13\n\t" |
181 | "fsts fpul, fr14\n\t" | 187 | "fsts fpul, fr14\n\t" |
182 | "fsts fpul, fr15\n\t" | 188 | "fsts fpul, fr15\n\t" |
183 | "frchg\n\t" | 189 | "frchg\n\t" |
184 | "lds %2, fpscr\n\t" | 190 | "lds %2, fpscr\n\t" |
185 | : /* no output */ | 191 | : /* no output */ |
186 | : "r" (0), "r" (FPSCR_RCHG), "r" (FPSCR_INIT)); | 192 | :"r" (0), "r"(FPSCR_RCHG), "r"(FPSCR_INIT)); |
187 | disable_fpu(); | 193 | disable_fpu(); |
188 | } | 194 | } |
189 | 195 | ||
190 | /** | 196 | /** |
191 | * denormal_to_double - Given denormalized float number, | 197 | * denormal_to_double - Given denormalized float number, |
192 | * store double float | 198 | * store double float |
193 | * | 199 | * |
194 | * @fpu: Pointer to sh_fpu_hard structure | 200 | * @fpu: Pointer to sh_fpu_hard structure |
195 | * @n: Index to FP register | 201 | * @n: Index to FP register |
196 | */ | 202 | */ |
197 | static void | 203 | static void denormal_to_double(struct sh_fpu_hard_struct *fpu, int n) |
198 | denormal_to_double (struct sh_fpu_hard_struct *fpu, int n) | ||
199 | { | 204 | { |
200 | unsigned long du, dl; | 205 | unsigned long du, dl; |
201 | unsigned long x = fpu->fpul; | 206 | unsigned long x = fpu->fpul; |
@@ -212,7 +217,7 @@ denormal_to_double (struct sh_fpu_hard_struct *fpu, int n) | |||
212 | dl = x << 29; | 217 | dl = x << 29; |
213 | 218 | ||
214 | fpu->fp_regs[n] = du; | 219 | fpu->fp_regs[n] = du; |
215 | fpu->fp_regs[n+1] = dl; | 220 | fpu->fp_regs[n + 1] = dl; |
216 | } | 221 | } |
217 | } | 222 | } |
218 | 223 | ||
@@ -223,68 +228,191 @@ denormal_to_double (struct sh_fpu_hard_struct *fpu, int n) | |||
223 | * | 228 | * |
224 | * Returns 1 when it's handled (should not cause exception). | 229 | * Returns 1 when it's handled (should not cause exception). |
225 | */ | 230 | */ |
226 | static int | 231 | static int ieee_fpe_handler(struct pt_regs *regs) |
227 | ieee_fpe_handler (struct pt_regs *regs) | ||
228 | { | 232 | { |
229 | unsigned short insn = *(unsigned short *) regs->pc; | 233 | unsigned short insn = *(unsigned short *)regs->pc; |
230 | unsigned short finsn; | 234 | unsigned short finsn; |
231 | unsigned long nextpc; | 235 | unsigned long nextpc; |
232 | int nib[4] = { | 236 | int nib[4] = { |
233 | (insn >> 12) & 0xf, | 237 | (insn >> 12) & 0xf, |
234 | (insn >> 8) & 0xf, | 238 | (insn >> 8) & 0xf, |
235 | (insn >> 4) & 0xf, | 239 | (insn >> 4) & 0xf, |
236 | insn & 0xf}; | 240 | insn & 0xf |
237 | 241 | }; | |
238 | if (nib[0] == 0xb || | 242 | |
239 | (nib[0] == 0x4 && nib[2] == 0x0 && nib[3] == 0xb)) /* bsr & jsr */ | 243 | if (nib[0] == 0xb || (nib[0] == 0x4 && nib[2] == 0x0 && nib[3] == 0xb)) |
240 | regs->pr = regs->pc + 4; | 244 | regs->pr = regs->pc + 4; /* bsr & jsr */ |
241 | 245 | ||
242 | if (nib[0] == 0xa || nib[0] == 0xb) { /* bra & bsr */ | 246 | if (nib[0] == 0xa || nib[0] == 0xb) { |
243 | nextpc = regs->pc + 4 + ((short) ((insn & 0xfff) << 4) >> 3); | 247 | /* bra & bsr */ |
244 | finsn = *(unsigned short *) (regs->pc + 2); | 248 | nextpc = regs->pc + 4 + ((short)((insn & 0xfff) << 4) >> 3); |
245 | } else if (nib[0] == 0x8 && nib[1] == 0xd) { /* bt/s */ | 249 | finsn = *(unsigned short *)(regs->pc + 2); |
250 | } else if (nib[0] == 0x8 && nib[1] == 0xd) { | ||
251 | /* bt/s */ | ||
246 | if (regs->sr & 1) | 252 | if (regs->sr & 1) |
247 | nextpc = regs->pc + 4 + ((char) (insn & 0xff) << 1); | 253 | nextpc = regs->pc + 4 + ((char)(insn & 0xff) << 1); |
248 | else | 254 | else |
249 | nextpc = regs->pc + 4; | 255 | nextpc = regs->pc + 4; |
250 | finsn = *(unsigned short *) (regs->pc + 2); | 256 | finsn = *(unsigned short *)(regs->pc + 2); |
251 | } else if (nib[0] == 0x8 && nib[1] == 0xf) { /* bf/s */ | 257 | } else if (nib[0] == 0x8 && nib[1] == 0xf) { |
258 | /* bf/s */ | ||
252 | if (regs->sr & 1) | 259 | if (regs->sr & 1) |
253 | nextpc = regs->pc + 4; | 260 | nextpc = regs->pc + 4; |
254 | else | 261 | else |
255 | nextpc = regs->pc + 4 + ((char) (insn & 0xff) << 1); | 262 | nextpc = regs->pc + 4 + ((char)(insn & 0xff) << 1); |
256 | finsn = *(unsigned short *) (regs->pc + 2); | 263 | finsn = *(unsigned short *)(regs->pc + 2); |
257 | } else if (nib[0] == 0x4 && nib[3] == 0xb && | 264 | } else if (nib[0] == 0x4 && nib[3] == 0xb && |
258 | (nib[2] == 0x0 || nib[2] == 0x2)) { /* jmp & jsr */ | 265 | (nib[2] == 0x0 || nib[2] == 0x2)) { |
266 | /* jmp & jsr */ | ||
259 | nextpc = regs->regs[nib[1]]; | 267 | nextpc = regs->regs[nib[1]]; |
260 | finsn = *(unsigned short *) (regs->pc + 2); | 268 | finsn = *(unsigned short *)(regs->pc + 2); |
261 | } else if (nib[0] == 0x0 && nib[3] == 0x3 && | 269 | } else if (nib[0] == 0x0 && nib[3] == 0x3 && |
262 | (nib[2] == 0x0 || nib[2] == 0x2)) { /* braf & bsrf */ | 270 | (nib[2] == 0x0 || nib[2] == 0x2)) { |
271 | /* braf & bsrf */ | ||
263 | nextpc = regs->pc + 4 + regs->regs[nib[1]]; | 272 | nextpc = regs->pc + 4 + regs->regs[nib[1]]; |
264 | finsn = *(unsigned short *) (regs->pc + 2); | 273 | finsn = *(unsigned short *)(regs->pc + 2); |
265 | } else if (insn == 0x000b) { /* rts */ | 274 | } else if (insn == 0x000b) { |
275 | /* rts */ | ||
266 | nextpc = regs->pr; | 276 | nextpc = regs->pr; |
267 | finsn = *(unsigned short *) (regs->pc + 2); | 277 | finsn = *(unsigned short *)(regs->pc + 2); |
268 | } else { | 278 | } else { |
269 | nextpc = regs->pc + instruction_size(insn); | 279 | nextpc = regs->pc + instruction_size(insn); |
270 | finsn = insn; | 280 | finsn = insn; |
271 | } | 281 | } |
272 | 282 | ||
273 | if ((finsn & 0xf1ff) == 0xf0ad) { /* fcnvsd */ | 283 | if ((finsn & 0xf1ff) == 0xf0ad) { |
284 | /* fcnvsd */ | ||
274 | struct task_struct *tsk = current; | 285 | struct task_struct *tsk = current; |
275 | 286 | ||
276 | save_fpu(tsk, regs); | 287 | save_fpu(tsk, regs); |
277 | if ((tsk->thread.fpu.hard.fpscr & (1 << 17))) { | 288 | if ((tsk->thread.fpu.hard.fpscr & FPSCR_CAUSE_ERROR)) |
278 | /* FPU error */ | 289 | /* FPU error */ |
279 | denormal_to_double (&tsk->thread.fpu.hard, | 290 | denormal_to_double(&tsk->thread.fpu.hard, |
280 | (finsn >> 8) & 0xf); | 291 | (finsn >> 8) & 0xf); |
281 | tsk->thread.fpu.hard.fpscr &= | 292 | else |
282 | ~(FPSCR_CAUSE_MASK | FPSCR_FLAG_MASK); | 293 | return 0; |
283 | grab_fpu(regs); | 294 | |
284 | restore_fpu(tsk); | 295 | regs->pc = nextpc; |
285 | set_tsk_thread_flag(tsk, TIF_USEDFPU); | 296 | return 1; |
297 | } else if ((finsn & 0xf00f) == 0xf002) { | ||
298 | /* fmul */ | ||
299 | struct task_struct *tsk = current; | ||
300 | int fpscr; | ||
301 | int n, m, prec; | ||
302 | unsigned int hx, hy; | ||
303 | |||
304 | n = (finsn >> 8) & 0xf; | ||
305 | m = (finsn >> 4) & 0xf; | ||
306 | hx = tsk->thread.fpu.hard.fp_regs[n]; | ||
307 | hy = tsk->thread.fpu.hard.fp_regs[m]; | ||
308 | fpscr = tsk->thread.fpu.hard.fpscr; | ||
309 | prec = fpscr & FPSCR_DBL_PRECISION; | ||
310 | |||
311 | if ((fpscr & FPSCR_CAUSE_ERROR) | ||
312 | && (prec && ((hx & 0x7fffffff) < 0x00100000 | ||
313 | || (hy & 0x7fffffff) < 0x00100000))) { | ||
314 | long long llx, lly; | ||
315 | |||
316 | /* FPU error because of denormal (doubles) */ | ||
317 | llx = ((long long)hx << 32) | ||
318 | | tsk->thread.fpu.hard.fp_regs[n + 1]; | ||
319 | lly = ((long long)hy << 32) | ||
320 | | tsk->thread.fpu.hard.fp_regs[m + 1]; | ||
321 | llx = float64_mul(llx, lly); | ||
322 | tsk->thread.fpu.hard.fp_regs[n] = llx >> 32; | ||
323 | tsk->thread.fpu.hard.fp_regs[n + 1] = llx & 0xffffffff; | ||
324 | } else if ((fpscr & FPSCR_CAUSE_ERROR) | ||
325 | && (!prec && ((hx & 0x7fffffff) < 0x00800000 | ||
326 | || (hy & 0x7fffffff) < 0x00800000))) { | ||
327 | /* FPU error because of denormal (floats) */ | ||
328 | hx = float32_mul(hx, hy); | ||
329 | tsk->thread.fpu.hard.fp_regs[n] = hx; | ||
330 | } else | ||
331 | return 0; | ||
332 | |||
333 | regs->pc = nextpc; | ||
334 | return 1; | ||
335 | } else if ((finsn & 0xf00e) == 0xf000) { | ||
336 | /* fadd, fsub */ | ||
337 | struct task_struct *tsk = current; | ||
338 | int fpscr; | ||
339 | int n, m, prec; | ||
340 | unsigned int hx, hy; | ||
341 | |||
342 | n = (finsn >> 8) & 0xf; | ||
343 | m = (finsn >> 4) & 0xf; | ||
344 | hx = tsk->thread.fpu.hard.fp_regs[n]; | ||
345 | hy = tsk->thread.fpu.hard.fp_regs[m]; | ||
346 | fpscr = tsk->thread.fpu.hard.fpscr; | ||
347 | prec = fpscr & FPSCR_DBL_PRECISION; | ||
348 | |||
349 | if ((fpscr & FPSCR_CAUSE_ERROR) | ||
350 | && (prec && ((hx & 0x7fffffff) < 0x00100000 | ||
351 | || (hy & 0x7fffffff) < 0x00100000))) { | ||
352 | long long llx, lly; | ||
353 | |||
354 | /* FPU error because of denormal (doubles) */ | ||
355 | llx = ((long long)hx << 32) | ||
356 | | tsk->thread.fpu.hard.fp_regs[n + 1]; | ||
357 | lly = ((long long)hy << 32) | ||
358 | | tsk->thread.fpu.hard.fp_regs[m + 1]; | ||
359 | if ((finsn & 0xf00f) == 0xf000) | ||
360 | llx = float64_add(llx, lly); | ||
361 | else | ||
362 | llx = float64_sub(llx, lly); | ||
363 | tsk->thread.fpu.hard.fp_regs[n] = llx >> 32; | ||
364 | tsk->thread.fpu.hard.fp_regs[n + 1] = llx & 0xffffffff; | ||
365 | } else if ((fpscr & FPSCR_CAUSE_ERROR) | ||
366 | && (!prec && ((hx & 0x7fffffff) < 0x00800000 | ||
367 | || (hy & 0x7fffffff) < 0x00800000))) { | ||
368 | /* FPU error because of denormal (floats) */ | ||
369 | if ((finsn & 0xf00f) == 0xf000) | ||
370 | hx = float32_add(hx, hy); | ||
371 | else | ||
372 | hx = float32_sub(hx, hy); | ||
373 | tsk->thread.fpu.hard.fp_regs[n] = hx; | ||
374 | } else | ||
375 | return 0; | ||
376 | |||
377 | regs->pc = nextpc; | ||
378 | return 1; | ||
379 | } else if ((finsn & 0xf003) == 0xf003) { | ||
380 | /* fdiv */ | ||
381 | struct task_struct *tsk = current; | ||
382 | int fpscr; | ||
383 | int n, m, prec; | ||
384 | unsigned int hx, hy; | ||
385 | |||
386 | n = (finsn >> 8) & 0xf; | ||
387 | m = (finsn >> 4) & 0xf; | ||
388 | hx = tsk->thread.fpu.hard.fp_regs[n]; | ||
389 | hy = tsk->thread.fpu.hard.fp_regs[m]; | ||
390 | fpscr = tsk->thread.fpu.hard.fpscr; | ||
391 | prec = fpscr & FPSCR_DBL_PRECISION; | ||
392 | |||
393 | if ((fpscr & FPSCR_CAUSE_ERROR) | ||
394 | && (prec && ((hx & 0x7fffffff) < 0x00100000 | ||
395 | || (hy & 0x7fffffff) < 0x00100000))) { | ||
396 | long long llx, lly; | ||
397 | |||
398 | /* FPU error because of denormal (doubles) */ | ||
399 | llx = ((long long)hx << 32) | ||
400 | | tsk->thread.fpu.hard.fp_regs[n + 1]; | ||
401 | lly = ((long long)hy << 32) | ||
402 | | tsk->thread.fpu.hard.fp_regs[m + 1]; | ||
403 | |||
404 | llx = float64_div(llx, lly); | ||
405 | |||
406 | tsk->thread.fpu.hard.fp_regs[n] = llx >> 32; | ||
407 | tsk->thread.fpu.hard.fp_regs[n + 1] = llx & 0xffffffff; | ||
408 | } else if ((fpscr & FPSCR_CAUSE_ERROR) | ||
409 | && (!prec && ((hx & 0x7fffffff) < 0x00800000 | ||
410 | || (hy & 0x7fffffff) < 0x00800000))) { | ||
411 | /* FPU error because of denormal (floats) */ | ||
412 | hx = float32_div(hx, hy); | ||
413 | tsk->thread.fpu.hard.fp_regs[n] = hx; | ||
286 | } else | 414 | } else |
287 | force_sig(SIGFPE, tsk); | 415 | return 0; |
288 | 416 | ||
289 | regs->pc = nextpc; | 417 | regs->pc = nextpc; |
290 | return 1; | 418 | return 1; |
@@ -293,27 +421,48 @@ ieee_fpe_handler (struct pt_regs *regs) | |||
293 | return 0; | 421 | return 0; |
294 | } | 422 | } |
295 | 423 | ||
296 | asmlinkage void | 424 | void float_raise(unsigned int flags) |
297 | do_fpu_error(unsigned long r4, unsigned long r5, unsigned long r6, | 425 | { |
298 | unsigned long r7, struct pt_regs __regs) | 426 | fpu_exception_flags |= flags; |
427 | } | ||
428 | |||
429 | int float_rounding_mode(void) | ||
299 | { | 430 | { |
300 | struct pt_regs *regs = RELOC_HIDE(&__regs, 0); | ||
301 | struct task_struct *tsk = current; | 431 | struct task_struct *tsk = current; |
432 | int roundingMode = FPSCR_ROUNDING_MODE(tsk->thread.fpu.hard.fpscr); | ||
433 | return roundingMode; | ||
434 | } | ||
302 | 435 | ||
303 | if (ieee_fpe_handler(regs)) | 436 | BUILD_TRAP_HANDLER(fpu_error) |
304 | return; | 437 | { |
438 | struct task_struct *tsk = current; | ||
439 | TRAP_HANDLER_DECL; | ||
305 | 440 | ||
306 | regs->pc += 2; | ||
307 | save_fpu(tsk, regs); | 441 | save_fpu(tsk, regs); |
442 | fpu_exception_flags = 0; | ||
443 | if (ieee_fpe_handler(regs)) { | ||
444 | tsk->thread.fpu.hard.fpscr &= | ||
445 | ~(FPSCR_CAUSE_MASK | FPSCR_FLAG_MASK); | ||
446 | tsk->thread.fpu.hard.fpscr |= fpu_exception_flags; | ||
447 | /* Set the FPSCR flag as well as cause bits - simply | ||
448 | * replicate the cause */ | ||
449 | tsk->thread.fpu.hard.fpscr |= (fpu_exception_flags >> 10); | ||
450 | grab_fpu(regs); | ||
451 | restore_fpu(tsk); | ||
452 | set_tsk_thread_flag(tsk, TIF_USEDFPU); | ||
453 | if ((((tsk->thread.fpu.hard.fpscr & FPSCR_ENABLE_MASK) >> 7) & | ||
454 | (fpu_exception_flags >> 2)) == 0) { | ||
455 | return; | ||
456 | } | ||
457 | } | ||
458 | |||
308 | force_sig(SIGFPE, tsk); | 459 | force_sig(SIGFPE, tsk); |
309 | } | 460 | } |
310 | 461 | ||
311 | asmlinkage void | 462 | BUILD_TRAP_HANDLER(fpu_state_restore) |
312 | do_fpu_state_restore(unsigned long r4, unsigned long r5, unsigned long r6, | ||
313 | unsigned long r7, struct pt_regs __regs) | ||
314 | { | 463 | { |
315 | struct pt_regs *regs = RELOC_HIDE(&__regs, 0); | ||
316 | struct task_struct *tsk = current; | 464 | struct task_struct *tsk = current; |
465 | TRAP_HANDLER_DECL; | ||
317 | 466 | ||
318 | grab_fpu(regs); | 467 | grab_fpu(regs); |
319 | if (!user_mode(regs)) { | 468 | if (!user_mode(regs)) { |
@@ -324,7 +473,7 @@ do_fpu_state_restore(unsigned long r4, unsigned long r5, unsigned long r6, | |||
324 | if (used_math()) { | 473 | if (used_math()) { |
325 | /* Using the FPU again. */ | 474 | /* Using the FPU again. */ |
326 | restore_fpu(tsk); | 475 | restore_fpu(tsk); |
327 | } else { | 476 | } else { |
328 | /* First time FPU user. */ | 477 | /* First time FPU user. */ |
329 | fpu_init(); | 478 | fpu_init(); |
330 | set_used_math(); | 479 | set_used_math(); |
diff --git a/arch/sh/kernel/cpu/sh4/probe.c b/arch/sh/kernel/cpu/sh4/probe.c index bc9c28a69bf1..f2b9238cda04 100644 --- a/arch/sh/kernel/cpu/sh4/probe.c +++ b/arch/sh/kernel/cpu/sh4/probe.c | |||
@@ -98,6 +98,8 @@ int __init detect_cpu_and_cache_system(void) | |||
98 | case 0x200A: | 98 | case 0x200A: |
99 | if (prr == 0x61) | 99 | if (prr == 0x61) |
100 | boot_cpu_data.type = CPU_SH7781; | 100 | boot_cpu_data.type = CPU_SH7781; |
101 | else if (prr == 0xa1) | ||
102 | boot_cpu_data.type = CPU_SH7763; | ||
101 | else | 103 | else |
102 | boot_cpu_data.type = CPU_SH7780; | 104 | boot_cpu_data.type = CPU_SH7780; |
103 | 105 | ||
diff --git a/arch/sh/kernel/cpu/sh4/setup-sh7750.c b/arch/sh/kernel/cpu/sh4/setup-sh7750.c index 523f68a9ce0e..ae3603aca615 100644 --- a/arch/sh/kernel/cpu/sh4/setup-sh7750.c +++ b/arch/sh/kernel/cpu/sh4/setup-sh7750.c | |||
@@ -126,12 +126,6 @@ static struct intc_group groups[] __initdata = { | |||
126 | INTC_GROUP(REF, REF_RCMI, REF_ROVI), | 126 | INTC_GROUP(REF, REF_RCMI, REF_ROVI), |
127 | }; | 127 | }; |
128 | 128 | ||
129 | static struct intc_prio priorities[] __initdata = { | ||
130 | INTC_PRIO(SCIF, 3), | ||
131 | INTC_PRIO(SCI1, 3), | ||
132 | INTC_PRIO(DMAC, 7), | ||
133 | }; | ||
134 | |||
135 | static struct intc_prio_reg prio_registers[] __initdata = { | 129 | static struct intc_prio_reg prio_registers[] __initdata = { |
136 | { 0xffd00004, 0, 16, 4, /* IPRA */ { TMU0, TMU1, TMU2, RTC } }, | 130 | { 0xffd00004, 0, 16, 4, /* IPRA */ { TMU0, TMU1, TMU2, RTC } }, |
137 | { 0xffd00008, 0, 16, 4, /* IPRB */ { WDT, REF, SCI1, 0 } }, | 131 | { 0xffd00008, 0, 16, 4, /* IPRB */ { WDT, REF, SCI1, 0 } }, |
@@ -143,7 +137,7 @@ static struct intc_prio_reg prio_registers[] __initdata = { | |||
143 | }; | 137 | }; |
144 | 138 | ||
145 | static DECLARE_INTC_DESC(intc_desc, "sh7750", vectors, groups, | 139 | static DECLARE_INTC_DESC(intc_desc, "sh7750", vectors, groups, |
146 | priorities, NULL, prio_registers, NULL); | 140 | NULL, prio_registers, NULL); |
147 | 141 | ||
148 | /* SH7750, SH7750S, SH7751 and SH7091 all have 4-channel DMA controllers */ | 142 | /* SH7750, SH7750S, SH7751 and SH7091 all have 4-channel DMA controllers */ |
149 | #if defined(CONFIG_CPU_SUBTYPE_SH7750) || \ | 143 | #if defined(CONFIG_CPU_SUBTYPE_SH7750) || \ |
@@ -163,7 +157,7 @@ static struct intc_group groups_dma4[] __initdata = { | |||
163 | 157 | ||
164 | static DECLARE_INTC_DESC(intc_desc_dma4, "sh7750_dma4", | 158 | static DECLARE_INTC_DESC(intc_desc_dma4, "sh7750_dma4", |
165 | vectors_dma4, groups_dma4, | 159 | vectors_dma4, groups_dma4, |
166 | priorities, NULL, prio_registers, NULL); | 160 | NULL, prio_registers, NULL); |
167 | #endif | 161 | #endif |
168 | 162 | ||
169 | /* SH7750R and SH7751R both have 8-channel DMA controllers */ | 163 | /* SH7750R and SH7751R both have 8-channel DMA controllers */ |
@@ -184,7 +178,7 @@ static struct intc_group groups_dma8[] __initdata = { | |||
184 | 178 | ||
185 | static DECLARE_INTC_DESC(intc_desc_dma8, "sh7750_dma8", | 179 | static DECLARE_INTC_DESC(intc_desc_dma8, "sh7750_dma8", |
186 | vectors_dma8, groups_dma8, | 180 | vectors_dma8, groups_dma8, |
187 | priorities, NULL, prio_registers, NULL); | 181 | NULL, prio_registers, NULL); |
188 | #endif | 182 | #endif |
189 | 183 | ||
190 | /* SH7750R, SH7751 and SH7751R all have two extra timer channels */ | 184 | /* SH7750R, SH7751 and SH7751R all have two extra timer channels */ |
@@ -205,7 +199,7 @@ static struct intc_mask_reg mask_registers[] __initdata = { | |||
205 | }; | 199 | }; |
206 | 200 | ||
207 | static DECLARE_INTC_DESC(intc_desc_tmu34, "sh7750_tmu34", | 201 | static DECLARE_INTC_DESC(intc_desc_tmu34, "sh7750_tmu34", |
208 | vectors_tmu34, NULL, priorities, | 202 | vectors_tmu34, NULL, |
209 | mask_registers, prio_registers, NULL); | 203 | mask_registers, prio_registers, NULL); |
210 | #endif | 204 | #endif |
211 | 205 | ||
@@ -216,7 +210,7 @@ static struct intc_vect vectors_irlm[] __initdata = { | |||
216 | }; | 210 | }; |
217 | 211 | ||
218 | static DECLARE_INTC_DESC(intc_desc_irlm, "sh7750_irlm", vectors_irlm, NULL, | 212 | static DECLARE_INTC_DESC(intc_desc_irlm, "sh7750_irlm", vectors_irlm, NULL, |
219 | priorities, NULL, prio_registers, NULL); | 213 | NULL, prio_registers, NULL); |
220 | 214 | ||
221 | /* SH7751 and SH7751R both have PCI */ | 215 | /* SH7751 and SH7751R both have PCI */ |
222 | #if defined(CONFIG_CPU_SUBTYPE_SH7751) || defined(CONFIG_CPU_SUBTYPE_SH7751R) | 216 | #if defined(CONFIG_CPU_SUBTYPE_SH7751) || defined(CONFIG_CPU_SUBTYPE_SH7751R) |
@@ -233,7 +227,7 @@ static struct intc_group groups_pci[] __initdata = { | |||
233 | }; | 227 | }; |
234 | 228 | ||
235 | static DECLARE_INTC_DESC(intc_desc_pci, "sh7750_pci", vectors_pci, groups_pci, | 229 | static DECLARE_INTC_DESC(intc_desc_pci, "sh7750_pci", vectors_pci, groups_pci, |
236 | priorities, mask_registers, prio_registers, NULL); | 230 | mask_registers, prio_registers, NULL); |
237 | #endif | 231 | #endif |
238 | 232 | ||
239 | #if defined(CONFIG_CPU_SUBTYPE_SH7750) || \ | 233 | #if defined(CONFIG_CPU_SUBTYPE_SH7750) || \ |
diff --git a/arch/sh/kernel/cpu/sh4/setup-sh7760.c b/arch/sh/kernel/cpu/sh4/setup-sh7760.c index 7a898cb1d940..85f81579b97e 100644 --- a/arch/sh/kernel/cpu/sh4/setup-sh7760.c +++ b/arch/sh/kernel/cpu/sh4/setup-sh7760.c | |||
@@ -92,15 +92,6 @@ static struct intc_group groups[] __initdata = { | |||
92 | INTC_GROUP(REF, REF_RCMI, REF_ROVI), | 92 | INTC_GROUP(REF, REF_RCMI, REF_ROVI), |
93 | }; | 93 | }; |
94 | 94 | ||
95 | static struct intc_prio priorities[] __initdata = { | ||
96 | INTC_PRIO(SCIF0, 3), | ||
97 | INTC_PRIO(SCIF1, 3), | ||
98 | INTC_PRIO(SCIF2, 3), | ||
99 | INTC_PRIO(SIM, 3), | ||
100 | INTC_PRIO(DMAC, 7), | ||
101 | INTC_PRIO(DMABRG, 13), | ||
102 | }; | ||
103 | |||
104 | static struct intc_mask_reg mask_registers[] __initdata = { | 95 | static struct intc_mask_reg mask_registers[] __initdata = { |
105 | { 0xfe080040, 0xfe080060, 32, /* INTMSK00 / INTMSKCLR00 */ | 96 | { 0xfe080040, 0xfe080060, 32, /* INTMSK00 / INTMSKCLR00 */ |
106 | { IRQ4, IRQ5, IRQ6, IRQ7, 0, 0, HCAN20, HCAN21, | 97 | { IRQ4, IRQ5, IRQ6, IRQ7, 0, 0, HCAN20, HCAN21, |
@@ -132,7 +123,7 @@ static struct intc_prio_reg prio_registers[] __initdata = { | |||
132 | }; | 123 | }; |
133 | 124 | ||
134 | static DECLARE_INTC_DESC(intc_desc, "sh7760", vectors, groups, | 125 | static DECLARE_INTC_DESC(intc_desc, "sh7760", vectors, groups, |
135 | priorities, mask_registers, prio_registers, NULL); | 126 | mask_registers, prio_registers, NULL); |
136 | 127 | ||
137 | static struct intc_vect vectors_irq[] __initdata = { | 128 | static struct intc_vect vectors_irq[] __initdata = { |
138 | INTC_VECT(IRL0, 0x240), INTC_VECT(IRL1, 0x2a0), | 129 | INTC_VECT(IRL0, 0x240), INTC_VECT(IRL1, 0x2a0), |
@@ -140,7 +131,7 @@ static struct intc_vect vectors_irq[] __initdata = { | |||
140 | }; | 131 | }; |
141 | 132 | ||
142 | static DECLARE_INTC_DESC(intc_desc_irq, "sh7760-irq", vectors_irq, groups, | 133 | static DECLARE_INTC_DESC(intc_desc_irq, "sh7760-irq", vectors_irq, groups, |
143 | priorities, mask_registers, prio_registers, NULL); | 134 | mask_registers, prio_registers, NULL); |
144 | 135 | ||
145 | static struct plat_sci_port sci_platform_data[] = { | 136 | static struct plat_sci_port sci_platform_data[] = { |
146 | { | 137 | { |
diff --git a/arch/sh/kernel/cpu/sh4/softfloat.c b/arch/sh/kernel/cpu/sh4/softfloat.c new file mode 100644 index 000000000000..7b2d337ee412 --- /dev/null +++ b/arch/sh/kernel/cpu/sh4/softfloat.c | |||
@@ -0,0 +1,892 @@ | |||
1 | /* | ||
2 | * Floating point emulation support for subnormalised numbers on SH4 | ||
3 | * architecture This file is derived from the SoftFloat IEC/IEEE | ||
4 | * Floating-point Arithmetic Package, Release 2 the original license of | ||
5 | * which is reproduced below. | ||
6 | * | ||
7 | * ======================================================================== | ||
8 | * | ||
9 | * This C source file is part of the SoftFloat IEC/IEEE Floating-point | ||
10 | * Arithmetic Package, Release 2. | ||
11 | * | ||
12 | * Written by John R. Hauser. This work was made possible in part by the | ||
13 | * International Computer Science Institute, located at Suite 600, 1947 Center | ||
14 | * Street, Berkeley, California 94704. Funding was partially provided by the | ||
15 | * National Science Foundation under grant MIP-9311980. The original version | ||
16 | * of this code was written as part of a project to build a fixed-point vector | ||
17 | * processor in collaboration with the University of California at Berkeley, | ||
18 | * overseen by Profs. Nelson Morgan and John Wawrzynek. More information | ||
19 | * is available through the web page `http://HTTP.CS.Berkeley.EDU/~jhauser/ | ||
20 | * arithmetic/softfloat.html'. | ||
21 | * | ||
22 | * THIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE. Although reasonable effort | ||
23 | * has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT | ||
24 | * TIMES RESULT IN INCORRECT BEHAVIOR. USE OF THIS SOFTWARE IS RESTRICTED TO | ||
25 | * PERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY | ||
26 | * AND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE. | ||
27 | * | ||
28 | * Derivative works are acceptable, even for commercial purposes, so long as | ||
29 | * (1) they include prominent notice that the work is derivative, and (2) they | ||
30 | * include prominent notice akin to these three paragraphs for those parts of | ||
31 | * this code that are retained. | ||
32 | * | ||
33 | * ======================================================================== | ||
34 | * | ||
35 | * SH4 modifications by Ismail Dhaoui <ismail.dhaoui@st.com> | ||
36 | * and Kamel Khelifi <kamel.khelifi@st.com> | ||
37 | */ | ||
38 | #include <linux/kernel.h> | ||
39 | #include <asm/cpu/fpu.h> | ||
40 | |||
41 | #define LIT64( a ) a##LL | ||
42 | |||
43 | typedef char flag; | ||
44 | typedef unsigned char uint8; | ||
45 | typedef signed char int8; | ||
46 | typedef int uint16; | ||
47 | typedef int int16; | ||
48 | typedef unsigned int uint32; | ||
49 | typedef signed int int32; | ||
50 | |||
51 | typedef unsigned long long int bits64; | ||
52 | typedef signed long long int sbits64; | ||
53 | |||
54 | typedef unsigned char bits8; | ||
55 | typedef signed char sbits8; | ||
56 | typedef unsigned short int bits16; | ||
57 | typedef signed short int sbits16; | ||
58 | typedef unsigned int bits32; | ||
59 | typedef signed int sbits32; | ||
60 | |||
61 | typedef unsigned long long int uint64; | ||
62 | typedef signed long long int int64; | ||
63 | |||
64 | typedef unsigned long int float32; | ||
65 | typedef unsigned long long float64; | ||
66 | |||
67 | extern void float_raise(unsigned int flags); /* in fpu.c */ | ||
68 | extern int float_rounding_mode(void); /* in fpu.c */ | ||
69 | |||
70 | inline bits64 extractFloat64Frac(float64 a); | ||
71 | inline flag extractFloat64Sign(float64 a); | ||
72 | inline int16 extractFloat64Exp(float64 a); | ||
73 | inline int16 extractFloat32Exp(float32 a); | ||
74 | inline flag extractFloat32Sign(float32 a); | ||
75 | inline bits32 extractFloat32Frac(float32 a); | ||
76 | inline float64 packFloat64(flag zSign, int16 zExp, bits64 zSig); | ||
77 | inline void shift64RightJamming(bits64 a, int16 count, bits64 * zPtr); | ||
78 | inline float32 packFloat32(flag zSign, int16 zExp, bits32 zSig); | ||
79 | inline void shift32RightJamming(bits32 a, int16 count, bits32 * zPtr); | ||
80 | float64 float64_sub(float64 a, float64 b); | ||
81 | float32 float32_sub(float32 a, float32 b); | ||
82 | float32 float32_add(float32 a, float32 b); | ||
83 | float64 float64_add(float64 a, float64 b); | ||
84 | float64 float64_div(float64 a, float64 b); | ||
85 | float32 float32_div(float32 a, float32 b); | ||
86 | float32 float32_mul(float32 a, float32 b); | ||
87 | float64 float64_mul(float64 a, float64 b); | ||
88 | inline void add128(bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 * z0Ptr, | ||
89 | bits64 * z1Ptr); | ||
90 | inline void sub128(bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 * z0Ptr, | ||
91 | bits64 * z1Ptr); | ||
92 | inline void mul64To128(bits64 a, bits64 b, bits64 * z0Ptr, bits64 * z1Ptr); | ||
93 | |||
94 | static int8 countLeadingZeros32(bits32 a); | ||
95 | static int8 countLeadingZeros64(bits64 a); | ||
96 | static float64 normalizeRoundAndPackFloat64(flag zSign, int16 zExp, | ||
97 | bits64 zSig); | ||
98 | static float64 subFloat64Sigs(float64 a, float64 b, flag zSign); | ||
99 | static float64 addFloat64Sigs(float64 a, float64 b, flag zSign); | ||
100 | static float32 roundAndPackFloat32(flag zSign, int16 zExp, bits32 zSig); | ||
101 | static float32 normalizeRoundAndPackFloat32(flag zSign, int16 zExp, | ||
102 | bits32 zSig); | ||
103 | static float64 roundAndPackFloat64(flag zSign, int16 zExp, bits64 zSig); | ||
104 | static float32 subFloat32Sigs(float32 a, float32 b, flag zSign); | ||
105 | static float32 addFloat32Sigs(float32 a, float32 b, flag zSign); | ||
106 | static void normalizeFloat64Subnormal(bits64 aSig, int16 * zExpPtr, | ||
107 | bits64 * zSigPtr); | ||
108 | static bits64 estimateDiv128To64(bits64 a0, bits64 a1, bits64 b); | ||
109 | static void normalizeFloat32Subnormal(bits32 aSig, int16 * zExpPtr, | ||
110 | bits32 * zSigPtr); | ||
111 | |||
112 | inline bits64 extractFloat64Frac(float64 a) | ||
113 | { | ||
114 | return a & LIT64(0x000FFFFFFFFFFFFF); | ||
115 | } | ||
116 | |||
117 | inline flag extractFloat64Sign(float64 a) | ||
118 | { | ||
119 | return a >> 63; | ||
120 | } | ||
121 | |||
122 | inline int16 extractFloat64Exp(float64 a) | ||
123 | { | ||
124 | return (a >> 52) & 0x7FF; | ||
125 | } | ||
126 | |||
127 | inline int16 extractFloat32Exp(float32 a) | ||
128 | { | ||
129 | return (a >> 23) & 0xFF; | ||
130 | } | ||
131 | |||
132 | inline flag extractFloat32Sign(float32 a) | ||
133 | { | ||
134 | return a >> 31; | ||
135 | } | ||
136 | |||
137 | inline bits32 extractFloat32Frac(float32 a) | ||
138 | { | ||
139 | return a & 0x007FFFFF; | ||
140 | } | ||
141 | |||
142 | inline float64 packFloat64(flag zSign, int16 zExp, bits64 zSig) | ||
143 | { | ||
144 | return (((bits64) zSign) << 63) + (((bits64) zExp) << 52) + zSig; | ||
145 | } | ||
146 | |||
147 | inline void shift64RightJamming(bits64 a, int16 count, bits64 * zPtr) | ||
148 | { | ||
149 | bits64 z; | ||
150 | |||
151 | if (count == 0) { | ||
152 | z = a; | ||
153 | } else if (count < 64) { | ||
154 | z = (a >> count) | ((a << ((-count) & 63)) != 0); | ||
155 | } else { | ||
156 | z = (a != 0); | ||
157 | } | ||
158 | *zPtr = z; | ||
159 | } | ||
160 | |||
161 | static int8 countLeadingZeros32(bits32 a) | ||
162 | { | ||
163 | static const int8 countLeadingZerosHigh[] = { | ||
164 | 8, 7, 6, 6, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4, 4, 4, | ||
165 | 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, | ||
166 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | ||
167 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | ||
168 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | ||
169 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | ||
170 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | ||
171 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | ||
172 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | ||
173 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | ||
174 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | ||
175 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | ||
176 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | ||
177 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | ||
178 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | ||
179 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 | ||
180 | }; | ||
181 | int8 shiftCount; | ||
182 | |||
183 | shiftCount = 0; | ||
184 | if (a < 0x10000) { | ||
185 | shiftCount += 16; | ||
186 | a <<= 16; | ||
187 | } | ||
188 | if (a < 0x1000000) { | ||
189 | shiftCount += 8; | ||
190 | a <<= 8; | ||
191 | } | ||
192 | shiftCount += countLeadingZerosHigh[a >> 24]; | ||
193 | return shiftCount; | ||
194 | |||
195 | } | ||
196 | |||
197 | static int8 countLeadingZeros64(bits64 a) | ||
198 | { | ||
199 | int8 shiftCount; | ||
200 | |||
201 | shiftCount = 0; | ||
202 | if (a < ((bits64) 1) << 32) { | ||
203 | shiftCount += 32; | ||
204 | } else { | ||
205 | a >>= 32; | ||
206 | } | ||
207 | shiftCount += countLeadingZeros32(a); | ||
208 | return shiftCount; | ||
209 | |||
210 | } | ||
211 | |||
212 | static float64 normalizeRoundAndPackFloat64(flag zSign, int16 zExp, bits64 zSig) | ||
213 | { | ||
214 | int8 shiftCount; | ||
215 | |||
216 | shiftCount = countLeadingZeros64(zSig) - 1; | ||
217 | return roundAndPackFloat64(zSign, zExp - shiftCount, | ||
218 | zSig << shiftCount); | ||
219 | |||
220 | } | ||
221 | |||
222 | static float64 subFloat64Sigs(float64 a, float64 b, flag zSign) | ||
223 | { | ||
224 | int16 aExp, bExp, zExp; | ||
225 | bits64 aSig, bSig, zSig; | ||
226 | int16 expDiff; | ||
227 | |||
228 | aSig = extractFloat64Frac(a); | ||
229 | aExp = extractFloat64Exp(a); | ||
230 | bSig = extractFloat64Frac(b); | ||
231 | bExp = extractFloat64Exp(b); | ||
232 | expDiff = aExp - bExp; | ||
233 | aSig <<= 10; | ||
234 | bSig <<= 10; | ||
235 | if (0 < expDiff) | ||
236 | goto aExpBigger; | ||
237 | if (expDiff < 0) | ||
238 | goto bExpBigger; | ||
239 | if (aExp == 0) { | ||
240 | aExp = 1; | ||
241 | bExp = 1; | ||
242 | } | ||
243 | if (bSig < aSig) | ||
244 | goto aBigger; | ||
245 | if (aSig < bSig) | ||
246 | goto bBigger; | ||
247 | return packFloat64(float_rounding_mode() == FPSCR_RM_ZERO, 0, 0); | ||
248 | bExpBigger: | ||
249 | if (bExp == 0x7FF) { | ||
250 | return packFloat64(zSign ^ 1, 0x7FF, 0); | ||
251 | } | ||
252 | if (aExp == 0) { | ||
253 | ++expDiff; | ||
254 | } else { | ||
255 | aSig |= LIT64(0x4000000000000000); | ||
256 | } | ||
257 | shift64RightJamming(aSig, -expDiff, &aSig); | ||
258 | bSig |= LIT64(0x4000000000000000); | ||
259 | bBigger: | ||
260 | zSig = bSig - aSig; | ||
261 | zExp = bExp; | ||
262 | zSign ^= 1; | ||
263 | goto normalizeRoundAndPack; | ||
264 | aExpBigger: | ||
265 | if (aExp == 0x7FF) { | ||
266 | return a; | ||
267 | } | ||
268 | if (bExp == 0) { | ||
269 | --expDiff; | ||
270 | } else { | ||
271 | bSig |= LIT64(0x4000000000000000); | ||
272 | } | ||
273 | shift64RightJamming(bSig, expDiff, &bSig); | ||
274 | aSig |= LIT64(0x4000000000000000); | ||
275 | aBigger: | ||
276 | zSig = aSig - bSig; | ||
277 | zExp = aExp; | ||
278 | normalizeRoundAndPack: | ||
279 | --zExp; | ||
280 | return normalizeRoundAndPackFloat64(zSign, zExp, zSig); | ||
281 | |||
282 | } | ||
283 | static float64 addFloat64Sigs(float64 a, float64 b, flag zSign) | ||
284 | { | ||
285 | int16 aExp, bExp, zExp; | ||
286 | bits64 aSig, bSig, zSig; | ||
287 | int16 expDiff; | ||
288 | |||
289 | aSig = extractFloat64Frac(a); | ||
290 | aExp = extractFloat64Exp(a); | ||
291 | bSig = extractFloat64Frac(b); | ||
292 | bExp = extractFloat64Exp(b); | ||
293 | expDiff = aExp - bExp; | ||
294 | aSig <<= 9; | ||
295 | bSig <<= 9; | ||
296 | if (0 < expDiff) { | ||
297 | if (aExp == 0x7FF) { | ||
298 | return a; | ||
299 | } | ||
300 | if (bExp == 0) { | ||
301 | --expDiff; | ||
302 | } else { | ||
303 | bSig |= LIT64(0x2000000000000000); | ||
304 | } | ||
305 | shift64RightJamming(bSig, expDiff, &bSig); | ||
306 | zExp = aExp; | ||
307 | } else if (expDiff < 0) { | ||
308 | if (bExp == 0x7FF) { | ||
309 | return packFloat64(zSign, 0x7FF, 0); | ||
310 | } | ||
311 | if (aExp == 0) { | ||
312 | ++expDiff; | ||
313 | } else { | ||
314 | aSig |= LIT64(0x2000000000000000); | ||
315 | } | ||
316 | shift64RightJamming(aSig, -expDiff, &aSig); | ||
317 | zExp = bExp; | ||
318 | } else { | ||
319 | if (aExp == 0x7FF) { | ||
320 | return a; | ||
321 | } | ||
322 | if (aExp == 0) | ||
323 | return packFloat64(zSign, 0, (aSig + bSig) >> 9); | ||
324 | zSig = LIT64(0x4000000000000000) + aSig + bSig; | ||
325 | zExp = aExp; | ||
326 | goto roundAndPack; | ||
327 | } | ||
328 | aSig |= LIT64(0x2000000000000000); | ||
329 | zSig = (aSig + bSig) << 1; | ||
330 | --zExp; | ||
331 | if ((sbits64) zSig < 0) { | ||
332 | zSig = aSig + bSig; | ||
333 | ++zExp; | ||
334 | } | ||
335 | roundAndPack: | ||
336 | return roundAndPackFloat64(zSign, zExp, zSig); | ||
337 | |||
338 | } | ||
339 | |||
340 | inline float32 packFloat32(flag zSign, int16 zExp, bits32 zSig) | ||
341 | { | ||
342 | return (((bits32) zSign) << 31) + (((bits32) zExp) << 23) + zSig; | ||
343 | } | ||
344 | |||
345 | inline void shift32RightJamming(bits32 a, int16 count, bits32 * zPtr) | ||
346 | { | ||
347 | bits32 z; | ||
348 | if (count == 0) { | ||
349 | z = a; | ||
350 | } else if (count < 32) { | ||
351 | z = (a >> count) | ((a << ((-count) & 31)) != 0); | ||
352 | } else { | ||
353 | z = (a != 0); | ||
354 | } | ||
355 | *zPtr = z; | ||
356 | } | ||
357 | |||
358 | static float32 roundAndPackFloat32(flag zSign, int16 zExp, bits32 zSig) | ||
359 | { | ||
360 | flag roundNearestEven; | ||
361 | int8 roundIncrement, roundBits; | ||
362 | flag isTiny; | ||
363 | |||
364 | /* SH4 has only 2 rounding modes - round to nearest and round to zero */ | ||
365 | roundNearestEven = (float_rounding_mode() == FPSCR_RM_NEAREST); | ||
366 | roundIncrement = 0x40; | ||
367 | if (!roundNearestEven) { | ||
368 | roundIncrement = 0; | ||
369 | } | ||
370 | roundBits = zSig & 0x7F; | ||
371 | if (0xFD <= (bits16) zExp) { | ||
372 | if ((0xFD < zExp) | ||
373 | || ((zExp == 0xFD) | ||
374 | && ((sbits32) (zSig + roundIncrement) < 0)) | ||
375 | ) { | ||
376 | float_raise(FPSCR_CAUSE_OVERFLOW | FPSCR_CAUSE_INEXACT); | ||
377 | return packFloat32(zSign, 0xFF, | ||
378 | 0) - (roundIncrement == 0); | ||
379 | } | ||
380 | if (zExp < 0) { | ||
381 | isTiny = (zExp < -1) | ||
382 | || (zSig + roundIncrement < 0x80000000); | ||
383 | shift32RightJamming(zSig, -zExp, &zSig); | ||
384 | zExp = 0; | ||
385 | roundBits = zSig & 0x7F; | ||
386 | if (isTiny && roundBits) | ||
387 | float_raise(FPSCR_CAUSE_UNDERFLOW); | ||
388 | } | ||
389 | } | ||
390 | if (roundBits) | ||
391 | float_raise(FPSCR_CAUSE_INEXACT); | ||
392 | zSig = (zSig + roundIncrement) >> 7; | ||
393 | zSig &= ~(((roundBits ^ 0x40) == 0) & roundNearestEven); | ||
394 | if (zSig == 0) | ||
395 | zExp = 0; | ||
396 | return packFloat32(zSign, zExp, zSig); | ||
397 | |||
398 | } | ||
399 | |||
400 | static float32 normalizeRoundAndPackFloat32(flag zSign, int16 zExp, bits32 zSig) | ||
401 | { | ||
402 | int8 shiftCount; | ||
403 | |||
404 | shiftCount = countLeadingZeros32(zSig) - 1; | ||
405 | return roundAndPackFloat32(zSign, zExp - shiftCount, | ||
406 | zSig << shiftCount); | ||
407 | } | ||
408 | |||
409 | static float64 roundAndPackFloat64(flag zSign, int16 zExp, bits64 zSig) | ||
410 | { | ||
411 | flag roundNearestEven; | ||
412 | int16 roundIncrement, roundBits; | ||
413 | flag isTiny; | ||
414 | |||
415 | /* SH4 has only 2 rounding modes - round to nearest and round to zero */ | ||
416 | roundNearestEven = (float_rounding_mode() == FPSCR_RM_NEAREST); | ||
417 | roundIncrement = 0x200; | ||
418 | if (!roundNearestEven) { | ||
419 | roundIncrement = 0; | ||
420 | } | ||
421 | roundBits = zSig & 0x3FF; | ||
422 | if (0x7FD <= (bits16) zExp) { | ||
423 | if ((0x7FD < zExp) | ||
424 | || ((zExp == 0x7FD) | ||
425 | && ((sbits64) (zSig + roundIncrement) < 0)) | ||
426 | ) { | ||
427 | float_raise(FPSCR_CAUSE_OVERFLOW | FPSCR_CAUSE_INEXACT); | ||
428 | return packFloat64(zSign, 0x7FF, | ||
429 | 0) - (roundIncrement == 0); | ||
430 | } | ||
431 | if (zExp < 0) { | ||
432 | isTiny = (zExp < -1) | ||
433 | || (zSig + roundIncrement < | ||
434 | LIT64(0x8000000000000000)); | ||
435 | shift64RightJamming(zSig, -zExp, &zSig); | ||
436 | zExp = 0; | ||
437 | roundBits = zSig & 0x3FF; | ||
438 | if (isTiny && roundBits) | ||
439 | float_raise(FPSCR_CAUSE_UNDERFLOW); | ||
440 | } | ||
441 | } | ||
442 | if (roundBits) | ||
443 | float_raise(FPSCR_CAUSE_INEXACT); | ||
444 | zSig = (zSig + roundIncrement) >> 10; | ||
445 | zSig &= ~(((roundBits ^ 0x200) == 0) & roundNearestEven); | ||
446 | if (zSig == 0) | ||
447 | zExp = 0; | ||
448 | return packFloat64(zSign, zExp, zSig); | ||
449 | |||
450 | } | ||
451 | |||
452 | static float32 subFloat32Sigs(float32 a, float32 b, flag zSign) | ||
453 | { | ||
454 | int16 aExp, bExp, zExp; | ||
455 | bits32 aSig, bSig, zSig; | ||
456 | int16 expDiff; | ||
457 | |||
458 | aSig = extractFloat32Frac(a); | ||
459 | aExp = extractFloat32Exp(a); | ||
460 | bSig = extractFloat32Frac(b); | ||
461 | bExp = extractFloat32Exp(b); | ||
462 | expDiff = aExp - bExp; | ||
463 | aSig <<= 7; | ||
464 | bSig <<= 7; | ||
465 | if (0 < expDiff) | ||
466 | goto aExpBigger; | ||
467 | if (expDiff < 0) | ||
468 | goto bExpBigger; | ||
469 | if (aExp == 0) { | ||
470 | aExp = 1; | ||
471 | bExp = 1; | ||
472 | } | ||
473 | if (bSig < aSig) | ||
474 | goto aBigger; | ||
475 | if (aSig < bSig) | ||
476 | goto bBigger; | ||
477 | return packFloat32(float_rounding_mode() == FPSCR_RM_ZERO, 0, 0); | ||
478 | bExpBigger: | ||
479 | if (bExp == 0xFF) { | ||
480 | return packFloat32(zSign ^ 1, 0xFF, 0); | ||
481 | } | ||
482 | if (aExp == 0) { | ||
483 | ++expDiff; | ||
484 | } else { | ||
485 | aSig |= 0x40000000; | ||
486 | } | ||
487 | shift32RightJamming(aSig, -expDiff, &aSig); | ||
488 | bSig |= 0x40000000; | ||
489 | bBigger: | ||
490 | zSig = bSig - aSig; | ||
491 | zExp = bExp; | ||
492 | zSign ^= 1; | ||
493 | goto normalizeRoundAndPack; | ||
494 | aExpBigger: | ||
495 | if (aExp == 0xFF) { | ||
496 | return a; | ||
497 | } | ||
498 | if (bExp == 0) { | ||
499 | --expDiff; | ||
500 | } else { | ||
501 | bSig |= 0x40000000; | ||
502 | } | ||
503 | shift32RightJamming(bSig, expDiff, &bSig); | ||
504 | aSig |= 0x40000000; | ||
505 | aBigger: | ||
506 | zSig = aSig - bSig; | ||
507 | zExp = aExp; | ||
508 | normalizeRoundAndPack: | ||
509 | --zExp; | ||
510 | return normalizeRoundAndPackFloat32(zSign, zExp, zSig); | ||
511 | |||
512 | } | ||
513 | |||
514 | static float32 addFloat32Sigs(float32 a, float32 b, flag zSign) | ||
515 | { | ||
516 | int16 aExp, bExp, zExp; | ||
517 | bits32 aSig, bSig, zSig; | ||
518 | int16 expDiff; | ||
519 | |||
520 | aSig = extractFloat32Frac(a); | ||
521 | aExp = extractFloat32Exp(a); | ||
522 | bSig = extractFloat32Frac(b); | ||
523 | bExp = extractFloat32Exp(b); | ||
524 | expDiff = aExp - bExp; | ||
525 | aSig <<= 6; | ||
526 | bSig <<= 6; | ||
527 | if (0 < expDiff) { | ||
528 | if (aExp == 0xFF) { | ||
529 | return a; | ||
530 | } | ||
531 | if (bExp == 0) { | ||
532 | --expDiff; | ||
533 | } else { | ||
534 | bSig |= 0x20000000; | ||
535 | } | ||
536 | shift32RightJamming(bSig, expDiff, &bSig); | ||
537 | zExp = aExp; | ||
538 | } else if (expDiff < 0) { | ||
539 | if (bExp == 0xFF) { | ||
540 | return packFloat32(zSign, 0xFF, 0); | ||
541 | } | ||
542 | if (aExp == 0) { | ||
543 | ++expDiff; | ||
544 | } else { | ||
545 | aSig |= 0x20000000; | ||
546 | } | ||
547 | shift32RightJamming(aSig, -expDiff, &aSig); | ||
548 | zExp = bExp; | ||
549 | } else { | ||
550 | if (aExp == 0xFF) { | ||
551 | return a; | ||
552 | } | ||
553 | if (aExp == 0) | ||
554 | return packFloat32(zSign, 0, (aSig + bSig) >> 6); | ||
555 | zSig = 0x40000000 + aSig + bSig; | ||
556 | zExp = aExp; | ||
557 | goto roundAndPack; | ||
558 | } | ||
559 | aSig |= 0x20000000; | ||
560 | zSig = (aSig + bSig) << 1; | ||
561 | --zExp; | ||
562 | if ((sbits32) zSig < 0) { | ||
563 | zSig = aSig + bSig; | ||
564 | ++zExp; | ||
565 | } | ||
566 | roundAndPack: | ||
567 | return roundAndPackFloat32(zSign, zExp, zSig); | ||
568 | |||
569 | } | ||
570 | |||
571 | float64 float64_sub(float64 a, float64 b) | ||
572 | { | ||
573 | flag aSign, bSign; | ||
574 | |||
575 | aSign = extractFloat64Sign(a); | ||
576 | bSign = extractFloat64Sign(b); | ||
577 | if (aSign == bSign) { | ||
578 | return subFloat64Sigs(a, b, aSign); | ||
579 | } else { | ||
580 | return addFloat64Sigs(a, b, aSign); | ||
581 | } | ||
582 | |||
583 | } | ||
584 | |||
585 | float32 float32_sub(float32 a, float32 b) | ||
586 | { | ||
587 | flag aSign, bSign; | ||
588 | |||
589 | aSign = extractFloat32Sign(a); | ||
590 | bSign = extractFloat32Sign(b); | ||
591 | if (aSign == bSign) { | ||
592 | return subFloat32Sigs(a, b, aSign); | ||
593 | } else { | ||
594 | return addFloat32Sigs(a, b, aSign); | ||
595 | } | ||
596 | |||
597 | } | ||
598 | |||
599 | float32 float32_add(float32 a, float32 b) | ||
600 | { | ||
601 | flag aSign, bSign; | ||
602 | |||
603 | aSign = extractFloat32Sign(a); | ||
604 | bSign = extractFloat32Sign(b); | ||
605 | if (aSign == bSign) { | ||
606 | return addFloat32Sigs(a, b, aSign); | ||
607 | } else { | ||
608 | return subFloat32Sigs(a, b, aSign); | ||
609 | } | ||
610 | |||
611 | } | ||
612 | |||
613 | float64 float64_add(float64 a, float64 b) | ||
614 | { | ||
615 | flag aSign, bSign; | ||
616 | |||
617 | aSign = extractFloat64Sign(a); | ||
618 | bSign = extractFloat64Sign(b); | ||
619 | if (aSign == bSign) { | ||
620 | return addFloat64Sigs(a, b, aSign); | ||
621 | } else { | ||
622 | return subFloat64Sigs(a, b, aSign); | ||
623 | } | ||
624 | } | ||
625 | |||
626 | static void | ||
627 | normalizeFloat64Subnormal(bits64 aSig, int16 * zExpPtr, bits64 * zSigPtr) | ||
628 | { | ||
629 | int8 shiftCount; | ||
630 | |||
631 | shiftCount = countLeadingZeros64(aSig) - 11; | ||
632 | *zSigPtr = aSig << shiftCount; | ||
633 | *zExpPtr = 1 - shiftCount; | ||
634 | } | ||
635 | |||
636 | inline void add128(bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 * z0Ptr, | ||
637 | bits64 * z1Ptr) | ||
638 | { | ||
639 | bits64 z1; | ||
640 | |||
641 | z1 = a1 + b1; | ||
642 | *z1Ptr = z1; | ||
643 | *z0Ptr = a0 + b0 + (z1 < a1); | ||
644 | } | ||
645 | |||
646 | inline void | ||
647 | sub128(bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 * z0Ptr, | ||
648 | bits64 * z1Ptr) | ||
649 | { | ||
650 | *z1Ptr = a1 - b1; | ||
651 | *z0Ptr = a0 - b0 - (a1 < b1); | ||
652 | } | ||
653 | |||
654 | static bits64 estimateDiv128To64(bits64 a0, bits64 a1, bits64 b) | ||
655 | { | ||
656 | bits64 b0, b1; | ||
657 | bits64 rem0, rem1, term0, term1; | ||
658 | bits64 z; | ||
659 | if (b <= a0) | ||
660 | return LIT64(0xFFFFFFFFFFFFFFFF); | ||
661 | b0 = b >> 32; | ||
662 | z = (b0 << 32 <= a0) ? LIT64(0xFFFFFFFF00000000) : (a0 / b0) << 32; | ||
663 | mul64To128(b, z, &term0, &term1); | ||
664 | sub128(a0, a1, term0, term1, &rem0, &rem1); | ||
665 | while (((sbits64) rem0) < 0) { | ||
666 | z -= LIT64(0x100000000); | ||
667 | b1 = b << 32; | ||
668 | add128(rem0, rem1, b0, b1, &rem0, &rem1); | ||
669 | } | ||
670 | rem0 = (rem0 << 32) | (rem1 >> 32); | ||
671 | z |= (b0 << 32 <= rem0) ? 0xFFFFFFFF : rem0 / b0; | ||
672 | return z; | ||
673 | } | ||
674 | |||
675 | inline void mul64To128(bits64 a, bits64 b, bits64 * z0Ptr, bits64 * z1Ptr) | ||
676 | { | ||
677 | bits32 aHigh, aLow, bHigh, bLow; | ||
678 | bits64 z0, zMiddleA, zMiddleB, z1; | ||
679 | |||
680 | aLow = a; | ||
681 | aHigh = a >> 32; | ||
682 | bLow = b; | ||
683 | bHigh = b >> 32; | ||
684 | z1 = ((bits64) aLow) * bLow; | ||
685 | zMiddleA = ((bits64) aLow) * bHigh; | ||
686 | zMiddleB = ((bits64) aHigh) * bLow; | ||
687 | z0 = ((bits64) aHigh) * bHigh; | ||
688 | zMiddleA += zMiddleB; | ||
689 | z0 += (((bits64) (zMiddleA < zMiddleB)) << 32) + (zMiddleA >> 32); | ||
690 | zMiddleA <<= 32; | ||
691 | z1 += zMiddleA; | ||
692 | z0 += (z1 < zMiddleA); | ||
693 | *z1Ptr = z1; | ||
694 | *z0Ptr = z0; | ||
695 | |||
696 | } | ||
697 | |||
698 | static void normalizeFloat32Subnormal(bits32 aSig, int16 * zExpPtr, | ||
699 | bits32 * zSigPtr) | ||
700 | { | ||
701 | int8 shiftCount; | ||
702 | |||
703 | shiftCount = countLeadingZeros32(aSig) - 8; | ||
704 | *zSigPtr = aSig << shiftCount; | ||
705 | *zExpPtr = 1 - shiftCount; | ||
706 | |||
707 | } | ||
708 | |||
709 | float64 float64_div(float64 a, float64 b) | ||
710 | { | ||
711 | flag aSign, bSign, zSign; | ||
712 | int16 aExp, bExp, zExp; | ||
713 | bits64 aSig, bSig, zSig; | ||
714 | bits64 rem0, rem1; | ||
715 | bits64 term0, term1; | ||
716 | |||
717 | aSig = extractFloat64Frac(a); | ||
718 | aExp = extractFloat64Exp(a); | ||
719 | aSign = extractFloat64Sign(a); | ||
720 | bSig = extractFloat64Frac(b); | ||
721 | bExp = extractFloat64Exp(b); | ||
722 | bSign = extractFloat64Sign(b); | ||
723 | zSign = aSign ^ bSign; | ||
724 | if (aExp == 0x7FF) { | ||
725 | if (bExp == 0x7FF) { | ||
726 | } | ||
727 | return packFloat64(zSign, 0x7FF, 0); | ||
728 | } | ||
729 | if (bExp == 0x7FF) { | ||
730 | return packFloat64(zSign, 0, 0); | ||
731 | } | ||
732 | if (bExp == 0) { | ||
733 | if (bSig == 0) { | ||
734 | if ((aExp | aSig) == 0) { | ||
735 | float_raise(FPSCR_CAUSE_INVALID); | ||
736 | } | ||
737 | return packFloat64(zSign, 0x7FF, 0); | ||
738 | } | ||
739 | normalizeFloat64Subnormal(bSig, &bExp, &bSig); | ||
740 | } | ||
741 | if (aExp == 0) { | ||
742 | if (aSig == 0) | ||
743 | return packFloat64(zSign, 0, 0); | ||
744 | normalizeFloat64Subnormal(aSig, &aExp, &aSig); | ||
745 | } | ||
746 | zExp = aExp - bExp + 0x3FD; | ||
747 | aSig = (aSig | LIT64(0x0010000000000000)) << 10; | ||
748 | bSig = (bSig | LIT64(0x0010000000000000)) << 11; | ||
749 | if (bSig <= (aSig + aSig)) { | ||
750 | aSig >>= 1; | ||
751 | ++zExp; | ||
752 | } | ||
753 | zSig = estimateDiv128To64(aSig, 0, bSig); | ||
754 | if ((zSig & 0x1FF) <= 2) { | ||
755 | mul64To128(bSig, zSig, &term0, &term1); | ||
756 | sub128(aSig, 0, term0, term1, &rem0, &rem1); | ||
757 | while ((sbits64) rem0 < 0) { | ||
758 | --zSig; | ||
759 | add128(rem0, rem1, 0, bSig, &rem0, &rem1); | ||
760 | } | ||
761 | zSig |= (rem1 != 0); | ||
762 | } | ||
763 | return roundAndPackFloat64(zSign, zExp, zSig); | ||
764 | |||
765 | } | ||
766 | |||
767 | float32 float32_div(float32 a, float32 b) | ||
768 | { | ||
769 | flag aSign, bSign, zSign; | ||
770 | int16 aExp, bExp, zExp; | ||
771 | bits32 aSig, bSig, zSig; | ||
772 | |||
773 | aSig = extractFloat32Frac(a); | ||
774 | aExp = extractFloat32Exp(a); | ||
775 | aSign = extractFloat32Sign(a); | ||
776 | bSig = extractFloat32Frac(b); | ||
777 | bExp = extractFloat32Exp(b); | ||
778 | bSign = extractFloat32Sign(b); | ||
779 | zSign = aSign ^ bSign; | ||
780 | if (aExp == 0xFF) { | ||
781 | if (bExp == 0xFF) { | ||
782 | } | ||
783 | return packFloat32(zSign, 0xFF, 0); | ||
784 | } | ||
785 | if (bExp == 0xFF) { | ||
786 | return packFloat32(zSign, 0, 0); | ||
787 | } | ||
788 | if (bExp == 0) { | ||
789 | if (bSig == 0) { | ||
790 | return packFloat32(zSign, 0xFF, 0); | ||
791 | } | ||
792 | normalizeFloat32Subnormal(bSig, &bExp, &bSig); | ||
793 | } | ||
794 | if (aExp == 0) { | ||
795 | if (aSig == 0) | ||
796 | return packFloat32(zSign, 0, 0); | ||
797 | normalizeFloat32Subnormal(aSig, &aExp, &aSig); | ||
798 | } | ||
799 | zExp = aExp - bExp + 0x7D; | ||
800 | aSig = (aSig | 0x00800000) << 7; | ||
801 | bSig = (bSig | 0x00800000) << 8; | ||
802 | if (bSig <= (aSig + aSig)) { | ||
803 | aSig >>= 1; | ||
804 | ++zExp; | ||
805 | } | ||
806 | zSig = (((bits64) aSig) << 32) / bSig; | ||
807 | if ((zSig & 0x3F) == 0) { | ||
808 | zSig |= (((bits64) bSig) * zSig != ((bits64) aSig) << 32); | ||
809 | } | ||
810 | return roundAndPackFloat32(zSign, zExp, zSig); | ||
811 | |||
812 | } | ||
813 | |||
814 | float32 float32_mul(float32 a, float32 b) | ||
815 | { | ||
816 | char aSign, bSign, zSign; | ||
817 | int aExp, bExp, zExp; | ||
818 | unsigned int aSig, bSig; | ||
819 | unsigned long long zSig64; | ||
820 | unsigned int zSig; | ||
821 | |||
822 | aSig = extractFloat32Frac(a); | ||
823 | aExp = extractFloat32Exp(a); | ||
824 | aSign = extractFloat32Sign(a); | ||
825 | bSig = extractFloat32Frac(b); | ||
826 | bExp = extractFloat32Exp(b); | ||
827 | bSign = extractFloat32Sign(b); | ||
828 | zSign = aSign ^ bSign; | ||
829 | if (aExp == 0) { | ||
830 | if (aSig == 0) | ||
831 | return packFloat32(zSign, 0, 0); | ||
832 | normalizeFloat32Subnormal(aSig, &aExp, &aSig); | ||
833 | } | ||
834 | if (bExp == 0) { | ||
835 | if (bSig == 0) | ||
836 | return packFloat32(zSign, 0, 0); | ||
837 | normalizeFloat32Subnormal(bSig, &bExp, &bSig); | ||
838 | } | ||
839 | if ((bExp == 0xff && bSig == 0) || (aExp == 0xff && aSig == 0)) | ||
840 | return roundAndPackFloat32(zSign, 0xff, 0); | ||
841 | |||
842 | zExp = aExp + bExp - 0x7F; | ||
843 | aSig = (aSig | 0x00800000) << 7; | ||
844 | bSig = (bSig | 0x00800000) << 8; | ||
845 | shift64RightJamming(((unsigned long long)aSig) * bSig, 32, &zSig64); | ||
846 | zSig = zSig64; | ||
847 | if (0 <= (signed int)(zSig << 1)) { | ||
848 | zSig <<= 1; | ||
849 | --zExp; | ||
850 | } | ||
851 | return roundAndPackFloat32(zSign, zExp, zSig); | ||
852 | |||
853 | } | ||
854 | |||
855 | float64 float64_mul(float64 a, float64 b) | ||
856 | { | ||
857 | char aSign, bSign, zSign; | ||
858 | int aExp, bExp, zExp; | ||
859 | unsigned long long int aSig, bSig, zSig0, zSig1; | ||
860 | |||
861 | aSig = extractFloat64Frac(a); | ||
862 | aExp = extractFloat64Exp(a); | ||
863 | aSign = extractFloat64Sign(a); | ||
864 | bSig = extractFloat64Frac(b); | ||
865 | bExp = extractFloat64Exp(b); | ||
866 | bSign = extractFloat64Sign(b); | ||
867 | zSign = aSign ^ bSign; | ||
868 | |||
869 | if (aExp == 0) { | ||
870 | if (aSig == 0) | ||
871 | return packFloat64(zSign, 0, 0); | ||
872 | normalizeFloat64Subnormal(aSig, &aExp, &aSig); | ||
873 | } | ||
874 | if (bExp == 0) { | ||
875 | if (bSig == 0) | ||
876 | return packFloat64(zSign, 0, 0); | ||
877 | normalizeFloat64Subnormal(bSig, &bExp, &bSig); | ||
878 | } | ||
879 | if ((aExp == 0x7ff && aSig == 0) || (bExp == 0x7ff && bSig == 0)) | ||
880 | return roundAndPackFloat64(zSign, 0x7ff, 0); | ||
881 | |||
882 | zExp = aExp + bExp - 0x3FF; | ||
883 | aSig = (aSig | 0x0010000000000000LL) << 10; | ||
884 | bSig = (bSig | 0x0010000000000000LL) << 11; | ||
885 | mul64To128(aSig, bSig, &zSig0, &zSig1); | ||
886 | zSig0 |= (zSig1 != 0); | ||
887 | if (0 <= (signed long long int)(zSig0 << 1)) { | ||
888 | zSig0 <<= 1; | ||
889 | --zExp; | ||
890 | } | ||
891 | return roundAndPackFloat64(zSign, zExp, zSig0); | ||
892 | } | ||
diff --git a/arch/sh/kernel/cpu/sh4/sq.c b/arch/sh/kernel/cpu/sh4/sq.c index b22a78c807e6..3008c00eea6b 100644 --- a/arch/sh/kernel/cpu/sh4/sq.c +++ b/arch/sh/kernel/cpu/sh4/sq.c | |||
@@ -341,17 +341,18 @@ static int __devinit sq_sysdev_add(struct sys_device *sysdev) | |||
341 | { | 341 | { |
342 | unsigned int cpu = sysdev->id; | 342 | unsigned int cpu = sysdev->id; |
343 | struct kobject *kobj; | 343 | struct kobject *kobj; |
344 | int error; | ||
344 | 345 | ||
345 | sq_kobject[cpu] = kzalloc(sizeof(struct kobject), GFP_KERNEL); | 346 | sq_kobject[cpu] = kzalloc(sizeof(struct kobject), GFP_KERNEL); |
346 | if (unlikely(!sq_kobject[cpu])) | 347 | if (unlikely(!sq_kobject[cpu])) |
347 | return -ENOMEM; | 348 | return -ENOMEM; |
348 | 349 | ||
349 | kobj = sq_kobject[cpu]; | 350 | kobj = sq_kobject[cpu]; |
350 | kobj->parent = &sysdev->kobj; | 351 | error = kobject_init_and_add(kobj, &ktype_percpu_entry, &sysdev->kobj, |
351 | kobject_set_name(kobj, "%s", "sq"); | 352 | "%s", "sq"); |
352 | kobj->ktype = &ktype_percpu_entry; | 353 | if (!error) |
353 | 354 | kobject_uevent(kobj, KOBJ_ADD); | |
354 | return kobject_register(kobj); | 355 | return error; |
355 | } | 356 | } |
356 | 357 | ||
357 | static int __devexit sq_sysdev_remove(struct sys_device *sysdev) | 358 | static int __devexit sq_sysdev_remove(struct sys_device *sysdev) |
@@ -359,7 +360,7 @@ static int __devexit sq_sysdev_remove(struct sys_device *sysdev) | |||
359 | unsigned int cpu = sysdev->id; | 360 | unsigned int cpu = sysdev->id; |
360 | struct kobject *kobj = sq_kobject[cpu]; | 361 | struct kobject *kobj = sq_kobject[cpu]; |
361 | 362 | ||
362 | kobject_unregister(kobj); | 363 | kobject_put(kobj); |
363 | return 0; | 364 | return 0; |
364 | } | 365 | } |
365 | 366 | ||
diff --git a/arch/sh/kernel/cpu/sh4a/Makefile b/arch/sh/kernel/cpu/sh4a/Makefile index 24539873943a..08ac6387bf17 100644 --- a/arch/sh/kernel/cpu/sh4a/Makefile +++ b/arch/sh/kernel/cpu/sh4a/Makefile | |||
@@ -3,6 +3,7 @@ | |||
3 | # | 3 | # |
4 | 4 | ||
5 | # CPU subtype setup | 5 | # CPU subtype setup |
6 | obj-$(CONFIG_CPU_SUBTYPE_SH7763) += setup-sh7763.o | ||
6 | obj-$(CONFIG_CPU_SUBTYPE_SH7770) += setup-sh7770.o | 7 | obj-$(CONFIG_CPU_SUBTYPE_SH7770) += setup-sh7770.o |
7 | obj-$(CONFIG_CPU_SUBTYPE_SH7780) += setup-sh7780.o | 8 | obj-$(CONFIG_CPU_SUBTYPE_SH7780) += setup-sh7780.o |
8 | obj-$(CONFIG_CPU_SUBTYPE_SH7785) += setup-sh7785.o | 9 | obj-$(CONFIG_CPU_SUBTYPE_SH7785) += setup-sh7785.o |
@@ -14,6 +15,7 @@ obj-$(CONFIG_CPU_SUBTYPE_SHX3) += setup-shx3.o | |||
14 | smp-$(CONFIG_CPU_SUBTYPE_SHX3) := smp-shx3.o | 15 | smp-$(CONFIG_CPU_SUBTYPE_SHX3) := smp-shx3.o |
15 | 16 | ||
16 | # Primary on-chip clocks (common) | 17 | # Primary on-chip clocks (common) |
18 | clock-$(CONFIG_CPU_SUBTYPE_SH7763) := clock-sh7763.o | ||
17 | clock-$(CONFIG_CPU_SUBTYPE_SH7770) := clock-sh7770.o | 19 | clock-$(CONFIG_CPU_SUBTYPE_SH7770) := clock-sh7770.o |
18 | clock-$(CONFIG_CPU_SUBTYPE_SH7780) := clock-sh7780.o | 20 | clock-$(CONFIG_CPU_SUBTYPE_SH7780) := clock-sh7780.o |
19 | clock-$(CONFIG_CPU_SUBTYPE_SH7785) := clock-sh7785.o | 21 | clock-$(CONFIG_CPU_SUBTYPE_SH7785) := clock-sh7785.o |
diff --git a/arch/sh/kernel/cpu/sh4a/clock-sh7763.c b/arch/sh/kernel/cpu/sh4a/clock-sh7763.c new file mode 100644 index 000000000000..45889d412c80 --- /dev/null +++ b/arch/sh/kernel/cpu/sh4a/clock-sh7763.c | |||
@@ -0,0 +1,126 @@ | |||
1 | /* | ||
2 | * arch/sh/kernel/cpu/sh4a/clock-sh7763.c | ||
3 | * | ||
4 | * SH7763 support for the clock framework | ||
5 | * | ||
6 | * Copyright (C) 2005 Paul Mundt | ||
7 | * Copyright (C) 2007 Yoshihiro Shimoda | ||
8 | * | ||
9 | * This file is subject to the terms and conditions of the GNU General Public | ||
10 | * License. See the file "COPYING" in the main directory of this archive | ||
11 | * for more details. | ||
12 | */ | ||
13 | #include <linux/init.h> | ||
14 | #include <linux/kernel.h> | ||
15 | #include <asm/clock.h> | ||
16 | #include <asm/freq.h> | ||
17 | #include <asm/io.h> | ||
18 | |||
19 | static int bfc_divisors[] = { 1, 1, 1, 8, 1, 1, 1, 1 }; | ||
20 | static int p0fc_divisors[] = { 1, 1, 1, 8, 1, 1, 1, 1 }; | ||
21 | static int p1fc_divisors[] = { 1, 1, 1, 16, 1, 1, 1, 1 }; | ||
22 | static int cfc_divisors[] = { 1, 1, 4, 1, 1, 1, 1, 1 }; | ||
23 | |||
24 | static void master_clk_init(struct clk *clk) | ||
25 | { | ||
26 | clk->rate *= p0fc_divisors[(ctrl_inl(FRQCR) >> 4) & 0x07]; | ||
27 | } | ||
28 | |||
29 | static struct clk_ops sh7763_master_clk_ops = { | ||
30 | .init = master_clk_init, | ||
31 | }; | ||
32 | |||
33 | static void module_clk_recalc(struct clk *clk) | ||
34 | { | ||
35 | int idx = ((ctrl_inl(FRQCR) >> 4) & 0x07); | ||
36 | clk->rate = clk->parent->rate / p0fc_divisors[idx]; | ||
37 | } | ||
38 | |||
39 | static struct clk_ops sh7763_module_clk_ops = { | ||
40 | .recalc = module_clk_recalc, | ||
41 | }; | ||
42 | |||
43 | static void bus_clk_recalc(struct clk *clk) | ||
44 | { | ||
45 | int idx = ((ctrl_inl(FRQCR) >> 16) & 0x07); | ||
46 | clk->rate = clk->parent->rate / bfc_divisors[idx]; | ||
47 | } | ||
48 | |||
49 | static struct clk_ops sh7763_bus_clk_ops = { | ||
50 | .recalc = bus_clk_recalc, | ||
51 | }; | ||
52 | |||
53 | static void cpu_clk_recalc(struct clk *clk) | ||
54 | { | ||
55 | clk->rate = clk->parent->rate; | ||
56 | } | ||
57 | |||
58 | static struct clk_ops sh7763_cpu_clk_ops = { | ||
59 | .recalc = cpu_clk_recalc, | ||
60 | }; | ||
61 | |||
62 | static struct clk_ops *sh7763_clk_ops[] = { | ||
63 | &sh7763_master_clk_ops, | ||
64 | &sh7763_module_clk_ops, | ||
65 | &sh7763_bus_clk_ops, | ||
66 | &sh7763_cpu_clk_ops, | ||
67 | }; | ||
68 | |||
69 | void __init arch_init_clk_ops(struct clk_ops **ops, int idx) | ||
70 | { | ||
71 | if (idx < ARRAY_SIZE(sh7763_clk_ops)) | ||
72 | *ops = sh7763_clk_ops[idx]; | ||
73 | } | ||
74 | |||
75 | static void shyway_clk_recalc(struct clk *clk) | ||
76 | { | ||
77 | int idx = ((ctrl_inl(FRQCR) >> 20) & 0x07); | ||
78 | clk->rate = clk->parent->rate / cfc_divisors[idx]; | ||
79 | } | ||
80 | |||
81 | static struct clk_ops sh7763_shyway_clk_ops = { | ||
82 | .recalc = shyway_clk_recalc, | ||
83 | }; | ||
84 | |||
85 | static struct clk sh7763_shyway_clk = { | ||
86 | .name = "shyway_clk", | ||
87 | .flags = CLK_ALWAYS_ENABLED, | ||
88 | .ops = &sh7763_shyway_clk_ops, | ||
89 | }; | ||
90 | |||
91 | /* | ||
92 | * Additional SH7763-specific on-chip clocks that aren't already part of the | ||
93 | * clock framework | ||
94 | */ | ||
95 | static struct clk *sh7763_onchip_clocks[] = { | ||
96 | &sh7763_shyway_clk, | ||
97 | }; | ||
98 | |||
99 | static int __init sh7763_clk_init(void) | ||
100 | { | ||
101 | struct clk *clk = clk_get(NULL, "master_clk"); | ||
102 | int i; | ||
103 | |||
104 | for (i = 0; i < ARRAY_SIZE(sh7763_onchip_clocks); i++) { | ||
105 | struct clk *clkp = sh7763_onchip_clocks[i]; | ||
106 | |||
107 | clkp->parent = clk; | ||
108 | clk_register(clkp); | ||
109 | clk_enable(clkp); | ||
110 | } | ||
111 | |||
112 | /* | ||
113 | * Now that we have the rest of the clocks registered, we need to | ||
114 | * force the parent clock to propagate so that these clocks will | ||
115 | * automatically figure out their rate. We cheat by handing the | ||
116 | * parent clock its current rate and forcing child propagation. | ||
117 | */ | ||
118 | clk_set_rate(clk, clk_get_rate(clk)); | ||
119 | |||
120 | clk_put(clk); | ||
121 | |||
122 | return 0; | ||
123 | } | ||
124 | |||
125 | arch_initcall(sh7763_clk_init); | ||
126 | |||
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7722.c b/arch/sh/kernel/cpu/sh4a/setup-sh7722.c index b9c6547c4a90..73c778d40d13 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7722.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7722.c | |||
@@ -157,14 +157,6 @@ static struct intc_group groups[] __initdata = { | |||
157 | INTC_GROUP(SDHI, SDHI0, SDHI1, SDHI2, SDHI3), | 157 | INTC_GROUP(SDHI, SDHI0, SDHI1, SDHI2, SDHI3), |
158 | }; | 158 | }; |
159 | 159 | ||
160 | static struct intc_prio priorities[] __initdata = { | ||
161 | INTC_PRIO(SCIF0, 3), | ||
162 | INTC_PRIO(SCIF1, 3), | ||
163 | INTC_PRIO(SCIF2, 3), | ||
164 | INTC_PRIO(TMU0, 2), | ||
165 | INTC_PRIO(TMU1, 2), | ||
166 | }; | ||
167 | |||
168 | static struct intc_mask_reg mask_registers[] __initdata = { | 160 | static struct intc_mask_reg mask_registers[] __initdata = { |
169 | { 0xa4080080, 0xa40800c0, 8, /* IMR0 / IMCR0 */ | 161 | { 0xa4080080, 0xa40800c0, 8, /* IMR0 / IMCR0 */ |
170 | { } }, | 162 | { } }, |
@@ -217,7 +209,7 @@ static struct intc_sense_reg sense_registers[] __initdata = { | |||
217 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, | 209 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, |
218 | }; | 210 | }; |
219 | 211 | ||
220 | static DECLARE_INTC_DESC(intc_desc, "sh7722", vectors, groups, priorities, | 212 | static DECLARE_INTC_DESC(intc_desc, "sh7722", vectors, groups, |
221 | mask_registers, prio_registers, sense_registers); | 213 | mask_registers, prio_registers, sense_registers); |
222 | 214 | ||
223 | void __init plat_irq_setup(void) | 215 | void __init plat_irq_setup(void) |
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7763.c b/arch/sh/kernel/cpu/sh4a/setup-sh7763.c new file mode 100644 index 000000000000..eabd5386812d --- /dev/null +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7763.c | |||
@@ -0,0 +1,390 @@ | |||
1 | /* | ||
2 | * SH7763 Setup | ||
3 | * | ||
4 | * Copyright (C) 2006 Paul Mundt | ||
5 | * Copyright (C) 2007 Yoshihiro Shimoda | ||
6 | * | ||
7 | * This file is subject to the terms and conditions of the GNU General Public | ||
8 | * License. See the file "COPYING" in the main directory of this archive | ||
9 | * for more details. | ||
10 | */ | ||
11 | #include <linux/platform_device.h> | ||
12 | #include <linux/init.h> | ||
13 | #include <linux/serial.h> | ||
14 | #include <linux/io.h> | ||
15 | #include <asm/sci.h> | ||
16 | |||
17 | static struct resource rtc_resources[] = { | ||
18 | [0] = { | ||
19 | .start = 0xffe80000, | ||
20 | .end = 0xffe80000 + 0x58 - 1, | ||
21 | .flags = IORESOURCE_IO, | ||
22 | }, | ||
23 | [1] = { | ||
24 | /* Period IRQ */ | ||
25 | .start = 21, | ||
26 | .flags = IORESOURCE_IRQ, | ||
27 | }, | ||
28 | [2] = { | ||
29 | /* Carry IRQ */ | ||
30 | .start = 22, | ||
31 | .flags = IORESOURCE_IRQ, | ||
32 | }, | ||
33 | [3] = { | ||
34 | /* Alarm IRQ */ | ||
35 | .start = 20, | ||
36 | .flags = IORESOURCE_IRQ, | ||
37 | }, | ||
38 | }; | ||
39 | |||
40 | static struct platform_device rtc_device = { | ||
41 | .name = "sh-rtc", | ||
42 | .id = -1, | ||
43 | .num_resources = ARRAY_SIZE(rtc_resources), | ||
44 | .resource = rtc_resources, | ||
45 | }; | ||
46 | |||
47 | static struct plat_sci_port sci_platform_data[] = { | ||
48 | { | ||
49 | .mapbase = 0xffe00000, | ||
50 | .flags = UPF_BOOT_AUTOCONF, | ||
51 | .type = PORT_SCIF, | ||
52 | .irqs = { 40, 41, 43, 42 }, | ||
53 | }, { | ||
54 | .mapbase = 0xffe08000, | ||
55 | .flags = UPF_BOOT_AUTOCONF, | ||
56 | .type = PORT_SCIF, | ||
57 | .irqs = { 76, 77, 79, 78 }, | ||
58 | }, { | ||
59 | .flags = 0, | ||
60 | } | ||
61 | }; | ||
62 | |||
63 | static struct platform_device sci_device = { | ||
64 | .name = "sh-sci", | ||
65 | .id = -1, | ||
66 | .dev = { | ||
67 | .platform_data = sci_platform_data, | ||
68 | }, | ||
69 | }; | ||
70 | |||
71 | static struct resource usb_ohci_resources[] = { | ||
72 | [0] = { | ||
73 | .start = 0xffec8000, | ||
74 | .end = 0xffec80ff, | ||
75 | .flags = IORESOURCE_MEM, | ||
76 | }, | ||
77 | [1] = { | ||
78 | .start = 83, | ||
79 | .end = 83, | ||
80 | .flags = IORESOURCE_IRQ, | ||
81 | }, | ||
82 | }; | ||
83 | |||
84 | static u64 usb_ohci_dma_mask = 0xffffffffUL; | ||
85 | static struct platform_device usb_ohci_device = { | ||
86 | .name = "sh_ohci", | ||
87 | .id = -1, | ||
88 | .dev = { | ||
89 | .dma_mask = &usb_ohci_dma_mask, | ||
90 | .coherent_dma_mask = 0xffffffff, | ||
91 | }, | ||
92 | .num_resources = ARRAY_SIZE(usb_ohci_resources), | ||
93 | .resource = usb_ohci_resources, | ||
94 | }; | ||
95 | |||
96 | static struct resource usbf_resources[] = { | ||
97 | [0] = { | ||
98 | .start = 0xffec0000, | ||
99 | .end = 0xffec00ff, | ||
100 | .flags = IORESOURCE_MEM, | ||
101 | }, | ||
102 | [1] = { | ||
103 | .start = 84, | ||
104 | .end = 84, | ||
105 | .flags = IORESOURCE_IRQ, | ||
106 | }, | ||
107 | }; | ||
108 | |||
109 | static struct platform_device usbf_device = { | ||
110 | .name = "sh_udc", | ||
111 | .id = -1, | ||
112 | .dev = { | ||
113 | .dma_mask = NULL, | ||
114 | .coherent_dma_mask = 0xffffffff, | ||
115 | }, | ||
116 | .num_resources = ARRAY_SIZE(usbf_resources), | ||
117 | .resource = usbf_resources, | ||
118 | }; | ||
119 | |||
120 | static struct platform_device *sh7763_devices[] __initdata = { | ||
121 | &rtc_device, | ||
122 | &sci_device, | ||
123 | &usb_ohci_device, | ||
124 | &usbf_device, | ||
125 | }; | ||
126 | |||
127 | static int __init sh7763_devices_setup(void) | ||
128 | { | ||
129 | return platform_add_devices(sh7763_devices, | ||
130 | ARRAY_SIZE(sh7763_devices)); | ||
131 | } | ||
132 | __initcall(sh7763_devices_setup); | ||
133 | |||
134 | enum { | ||
135 | UNUSED = 0, | ||
136 | |||
137 | /* interrupt sources */ | ||
138 | |||
139 | IRL_LLLL, IRL_LLLH, IRL_LLHL, IRL_LLHH, | ||
140 | IRL_LHLL, IRL_LHLH, IRL_LHHL, IRL_LHHH, | ||
141 | IRL_HLLL, IRL_HLLH, IRL_HLHL, IRL_HLHH, | ||
142 | IRL_HHLL, IRL_HHLH, IRL_HHHL, | ||
143 | |||
144 | IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7, | ||
145 | RTC_ATI, RTC_PRI, RTC_CUI, | ||
146 | WDT, TMU0, TMU1, TMU2, TMU2_TICPI, | ||
147 | HUDI, LCDC, | ||
148 | DMAC0_DMINT0, DMAC0_DMINT1, DMAC0_DMINT2, DMAC0_DMINT3, DMAC0_DMAE, | ||
149 | SCIF0_ERI, SCIF0_RXI, SCIF0_BRI, SCIF0_TXI, | ||
150 | DMAC0_DMINT4, DMAC0_DMINT5, | ||
151 | IIC0, IIC1, | ||
152 | CMT, | ||
153 | GEINT0, GEINT1, GEINT2, | ||
154 | HAC, | ||
155 | PCISERR, PCIINTA, PCIINTB, PCIINTC, PCIINTD, | ||
156 | PCIERR, PCIPWD3, PCIPWD2, PCIPWD1, PCIPWD0, | ||
157 | STIF0, STIF1, | ||
158 | SCIF1_ERI, SCIF1_RXI, SCIF1_BRI, SCIF1_TXI, | ||
159 | SIOF0, SIOF1, SIOF2, | ||
160 | USBH, USBFI0, USBFI1, | ||
161 | TPU, PCC, | ||
162 | MMCIF_FSTAT, MMCIF_TRAN, MMCIF_ERR, MMCIF_FRDY, | ||
163 | SIM_ERI, SIM_RXI, SIM_TXI, SIM_TEND, | ||
164 | TMU3, TMU4, TMU5, ADC, SSI0, SSI1, SSI2, SSI3, | ||
165 | SCIF2_ERI, SCIF2_RXI, SCIF2_BRI, SCIF2_TXI, | ||
166 | GPIO_CH0, GPIO_CH1, GPIO_CH2, GPIO_CH3, | ||
167 | |||
168 | /* interrupt groups */ | ||
169 | |||
170 | TMU012, TMU345, RTC, DMAC, SCIF0, GETHER, PCIC5, | ||
171 | SCIF1, USBF, MMCIF, SIM, SCIF2, GPIO, | ||
172 | }; | ||
173 | |||
174 | static struct intc_vect vectors[] __initdata = { | ||
175 | INTC_VECT(RTC_ATI, 0x480), INTC_VECT(RTC_PRI, 0x4a0), | ||
176 | INTC_VECT(RTC_CUI, 0x4c0), | ||
177 | INTC_VECT(WDT, 0x560), INTC_VECT(TMU0, 0x580), | ||
178 | INTC_VECT(TMU1, 0x5a0), INTC_VECT(TMU2, 0x5c0), | ||
179 | INTC_VECT(TMU2_TICPI, 0x5e0), INTC_VECT(HUDI, 0x600), | ||
180 | INTC_VECT(LCDC, 0x620), | ||
181 | INTC_VECT(DMAC0_DMINT0, 0x640), INTC_VECT(DMAC0_DMINT1, 0x660), | ||
182 | INTC_VECT(DMAC0_DMINT2, 0x680), INTC_VECT(DMAC0_DMINT3, 0x6a0), | ||
183 | INTC_VECT(DMAC0_DMAE, 0x6c0), | ||
184 | INTC_VECT(SCIF0_ERI, 0x700), INTC_VECT(SCIF0_RXI, 0x720), | ||
185 | INTC_VECT(SCIF0_BRI, 0x740), INTC_VECT(SCIF0_TXI, 0x760), | ||
186 | INTC_VECT(DMAC0_DMINT4, 0x780), INTC_VECT(DMAC0_DMINT5, 0x7a0), | ||
187 | INTC_VECT(IIC0, 0x8A0), INTC_VECT(IIC1, 0x8C0), | ||
188 | INTC_VECT(CMT, 0x900), INTC_VECT(GEINT0, 0x920), | ||
189 | INTC_VECT(GEINT1, 0x940), INTC_VECT(GEINT2, 0x960), | ||
190 | INTC_VECT(HAC, 0x980), | ||
191 | INTC_VECT(PCISERR, 0xa00), INTC_VECT(PCIINTA, 0xa20), | ||
192 | INTC_VECT(PCIINTB, 0xa40), INTC_VECT(PCIINTC, 0xa60), | ||
193 | INTC_VECT(PCIINTD, 0xa80), INTC_VECT(PCIERR, 0xaa0), | ||
194 | INTC_VECT(PCIPWD3, 0xac0), INTC_VECT(PCIPWD2, 0xae0), | ||
195 | INTC_VECT(PCIPWD1, 0xb00), INTC_VECT(PCIPWD0, 0xb20), | ||
196 | INTC_VECT(STIF0, 0xb40), INTC_VECT(STIF1, 0xb60), | ||
197 | INTC_VECT(SCIF1_ERI, 0xb80), INTC_VECT(SCIF1_RXI, 0xba0), | ||
198 | INTC_VECT(SCIF1_BRI, 0xbc0), INTC_VECT(SCIF1_TXI, 0xbe0), | ||
199 | INTC_VECT(SIOF0, 0xc00), INTC_VECT(SIOF1, 0xc20), | ||
200 | INTC_VECT(USBH, 0xc60), INTC_VECT(USBFI0, 0xc80), | ||
201 | INTC_VECT(USBFI1, 0xca0), | ||
202 | INTC_VECT(TPU, 0xcc0), INTC_VECT(PCC, 0xce0), | ||
203 | INTC_VECT(MMCIF_FSTAT, 0xd00), INTC_VECT(MMCIF_TRAN, 0xd20), | ||
204 | INTC_VECT(MMCIF_ERR, 0xd40), INTC_VECT(MMCIF_FRDY, 0xd60), | ||
205 | INTC_VECT(SIM_ERI, 0xd80), INTC_VECT(SIM_RXI, 0xda0), | ||
206 | INTC_VECT(SIM_TXI, 0xdc0), INTC_VECT(SIM_TEND, 0xde0), | ||
207 | INTC_VECT(TMU3, 0xe00), INTC_VECT(TMU4, 0xe20), | ||
208 | INTC_VECT(TMU5, 0xe40), INTC_VECT(ADC, 0xe60), | ||
209 | INTC_VECT(SSI0, 0xe80), INTC_VECT(SSI1, 0xea0), | ||
210 | INTC_VECT(SSI2, 0xec0), INTC_VECT(SSI3, 0xee0), | ||
211 | INTC_VECT(SCIF1_ERI, 0xf00), INTC_VECT(SCIF1_RXI, 0xf20), | ||
212 | INTC_VECT(SCIF1_BRI, 0xf40), INTC_VECT(SCIF1_TXI, 0xf60), | ||
213 | INTC_VECT(GPIO_CH0, 0xf80), INTC_VECT(GPIO_CH1, 0xfa0), | ||
214 | INTC_VECT(GPIO_CH2, 0xfc0), INTC_VECT(GPIO_CH3, 0xfe0), | ||
215 | }; | ||
216 | |||
217 | static struct intc_group groups[] __initdata = { | ||
218 | INTC_GROUP(TMU012, TMU0, TMU1, TMU2, TMU2_TICPI), | ||
219 | INTC_GROUP(TMU345, TMU3, TMU4, TMU5), | ||
220 | INTC_GROUP(RTC, RTC_ATI, RTC_PRI, RTC_CUI), | ||
221 | INTC_GROUP(DMAC, DMAC0_DMINT0, DMAC0_DMINT1, DMAC0_DMINT2, | ||
222 | DMAC0_DMINT3, DMAC0_DMINT4, DMAC0_DMINT5, DMAC0_DMAE), | ||
223 | INTC_GROUP(SCIF0, SCIF0_ERI, SCIF0_RXI, SCIF0_BRI, SCIF0_TXI), | ||
224 | INTC_GROUP(GETHER, GEINT0, GEINT1, GEINT2), | ||
225 | INTC_GROUP(PCIC5, PCIERR, PCIPWD3, PCIPWD2, PCIPWD1, PCIPWD0), | ||
226 | INTC_GROUP(SCIF1, SCIF1_ERI, SCIF1_RXI, SCIF1_BRI, SCIF1_TXI), | ||
227 | INTC_GROUP(USBF, USBFI0, USBFI1), | ||
228 | INTC_GROUP(MMCIF, MMCIF_FSTAT, MMCIF_TRAN, MMCIF_ERR, MMCIF_FRDY), | ||
229 | INTC_GROUP(SIM, SIM_ERI, SIM_RXI, SIM_TXI, SIM_TEND), | ||
230 | INTC_GROUP(SCIF2, SCIF2_ERI, SCIF2_RXI, SCIF2_BRI, SCIF2_TXI), | ||
231 | INTC_GROUP(GPIO, GPIO_CH0, GPIO_CH1, GPIO_CH2, GPIO_CH3), | ||
232 | }; | ||
233 | |||
234 | static struct intc_prio priorities[] __initdata = { | ||
235 | INTC_PRIO(SCIF0, 3), | ||
236 | INTC_PRIO(SCIF1, 3), | ||
237 | INTC_PRIO(SCIF2, 3), | ||
238 | }; | ||
239 | |||
240 | static struct intc_mask_reg mask_registers[] __initdata = { | ||
241 | { 0xffd40038, 0xffd4003c, 32, /* INT2MSKR / INT2MSKCR */ | ||
242 | { 0, 0, 0, 0, 0, 0, GPIO, 0, | ||
243 | SSI0, MMCIF, 0, SIOF0, PCIC5, PCIINTD, PCIINTC, PCIINTB, | ||
244 | PCIINTA, PCISERR, HAC, CMT, 0, 0, 0, DMAC, | ||
245 | HUDI, 0, WDT, SCIF1, SCIF0, RTC, TMU345, TMU012 } }, | ||
246 | { 0xffd400d0, 0xffd400d4, 32, /* INT2MSKR1 / INT2MSKCR1 */ | ||
247 | { 0, 0, 0, 0, 0, 0, SCIF2, USBF, | ||
248 | 0, 0, STIF1, STIF0, 0, 0, USBH, GETHER, | ||
249 | PCC, 0, 0, ADC, TPU, SIM, SIOF2, SIOF1, | ||
250 | LCDC, 0, IIC1, IIC0, SSI3, SSI2, SSI1, 0 } }, | ||
251 | }; | ||
252 | |||
253 | static struct intc_prio_reg prio_registers[] __initdata = { | ||
254 | { 0xffd40000, 0, 32, 8, /* INT2PRI0 */ { TMU0, TMU1, | ||
255 | TMU2, TMU2_TICPI } }, | ||
256 | { 0xffd40004, 0, 32, 8, /* INT2PRI1 */ { TMU3, TMU4, TMU5, RTC } }, | ||
257 | { 0xffd40008, 0, 32, 8, /* INT2PRI2 */ { SCIF0, SCIF1, WDT } }, | ||
258 | { 0xffd4000c, 0, 32, 8, /* INT2PRI3 */ { HUDI, DMAC, ADC } }, | ||
259 | { 0xffd40010, 0, 32, 8, /* INT2PRI4 */ { CMT, HAC, | ||
260 | PCISERR, PCIINTA } }, | ||
261 | { 0xffd40014, 0, 32, 8, /* INT2PRI5 */ { PCIINTB, PCIINTC, | ||
262 | PCIINTD, PCIC5 } }, | ||
263 | { 0xffd40018, 0, 32, 8, /* INT2PRI6 */ { SIOF0, USBF, MMCIF, SSI0 } }, | ||
264 | { 0xffd4001c, 0, 32, 8, /* INT2PRI7 */ { SCIF2, GPIO } }, | ||
265 | { 0xffd400a0, 0, 32, 8, /* INT2PRI8 */ { SSI3, SSI2, SSI1, 0 } }, | ||
266 | { 0xffd400a4, 0, 32, 8, /* INT2PRI9 */ { LCDC, 0, IIC1, IIC0 } }, | ||
267 | { 0xffd400a8, 0, 32, 8, /* INT2PRI10 */ { TPU, SIM, SIOF2, SIOF1 } }, | ||
268 | { 0xffd400ac, 0, 32, 8, /* INT2PRI11 */ { PCC } }, | ||
269 | { 0xffd400b0, 0, 32, 8, /* INT2PRI12 */ { 0, 0, USBH, GETHER } }, | ||
270 | { 0xffd400b4, 0, 32, 8, /* INT2PRI13 */ { 0, 0, STIF1, STIF0 } }, | ||
271 | }; | ||
272 | |||
273 | static DECLARE_INTC_DESC(intc_desc, "sh7763", vectors, groups, priorities, | ||
274 | mask_registers, prio_registers, NULL); | ||
275 | |||
276 | /* Support for external interrupt pins in IRQ mode */ | ||
277 | |||
278 | static struct intc_vect irq_vectors[] __initdata = { | ||
279 | INTC_VECT(IRQ0, 0x240), INTC_VECT(IRQ1, 0x280), | ||
280 | INTC_VECT(IRQ2, 0x2c0), INTC_VECT(IRQ3, 0x300), | ||
281 | INTC_VECT(IRQ4, 0x340), INTC_VECT(IRQ5, 0x380), | ||
282 | INTC_VECT(IRQ6, 0x3c0), INTC_VECT(IRQ7, 0x200), | ||
283 | }; | ||
284 | |||
285 | static struct intc_mask_reg irq_mask_registers[] __initdata = { | ||
286 | { 0xffd00044, 0xffd00064, 32, /* INTMSK0 / INTMSKCLR0 */ | ||
287 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, | ||
288 | }; | ||
289 | |||
290 | static struct intc_prio_reg irq_prio_registers[] __initdata = { | ||
291 | { 0xffd00010, 0, 32, 4, /* INTPRI */ { IRQ0, IRQ1, IRQ2, IRQ3, | ||
292 | IRQ4, IRQ5, IRQ6, IRQ7 } }, | ||
293 | }; | ||
294 | |||
295 | static struct intc_sense_reg irq_sense_registers[] __initdata = { | ||
296 | { 0xffd0001c, 32, 2, /* ICR1 */ { IRQ0, IRQ1, IRQ2, IRQ3, | ||
297 | IRQ4, IRQ5, IRQ6, IRQ7 } }, | ||
298 | }; | ||
299 | |||
300 | static DECLARE_INTC_DESC(intc_irq_desc, "sh7763-irq", irq_vectors, | ||
301 | NULL, NULL, irq_mask_registers, irq_prio_registers, | ||
302 | irq_sense_registers); | ||
303 | |||
304 | /* External interrupt pins in IRL mode */ | ||
305 | |||
306 | static struct intc_vect irl_vectors[] __initdata = { | ||
307 | INTC_VECT(IRL_LLLL, 0x200), INTC_VECT(IRL_LLLH, 0x220), | ||
308 | INTC_VECT(IRL_LLHL, 0x240), INTC_VECT(IRL_LLHH, 0x260), | ||
309 | INTC_VECT(IRL_LHLL, 0x280), INTC_VECT(IRL_LHLH, 0x2a0), | ||
310 | INTC_VECT(IRL_LHHL, 0x2c0), INTC_VECT(IRL_LHHH, 0x2e0), | ||
311 | INTC_VECT(IRL_HLLL, 0x300), INTC_VECT(IRL_HLLH, 0x320), | ||
312 | INTC_VECT(IRL_HLHL, 0x340), INTC_VECT(IRL_HLHH, 0x360), | ||
313 | INTC_VECT(IRL_HHLL, 0x380), INTC_VECT(IRL_HHLH, 0x3a0), | ||
314 | INTC_VECT(IRL_HHHL, 0x3c0), | ||
315 | }; | ||
316 | |||
317 | static struct intc_mask_reg irl3210_mask_registers[] __initdata = { | ||
318 | { 0xffd40080, 0xffd40084, 32, /* INTMSK2 / INTMSKCLR2 */ | ||
319 | { IRL_LLLL, IRL_LLLH, IRL_LLHL, IRL_LLHH, | ||
320 | IRL_LHLL, IRL_LHLH, IRL_LHHL, IRL_LHHH, | ||
321 | IRL_HLLL, IRL_HLLH, IRL_HLHL, IRL_HLHH, | ||
322 | IRL_HHLL, IRL_HHLH, IRL_HHHL, } }, | ||
323 | }; | ||
324 | |||
325 | static struct intc_mask_reg irl7654_mask_registers[] __initdata = { | ||
326 | { 0xffd40080, 0xffd40084, 32, /* INTMSK2 / INTMSKCLR2 */ | ||
327 | { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | ||
328 | IRL_LLLL, IRL_LLLH, IRL_LLHL, IRL_LLHH, | ||
329 | IRL_LHLL, IRL_LHLH, IRL_LHHL, IRL_LHHH, | ||
330 | IRL_HLLL, IRL_HLLH, IRL_HLHL, IRL_HLHH, | ||
331 | IRL_HHLL, IRL_HHLH, IRL_HHHL, } }, | ||
332 | }; | ||
333 | |||
334 | static DECLARE_INTC_DESC(intc_irl7654_desc, "sh7763-irl7654", irl_vectors, | ||
335 | NULL, NULL, irl7654_mask_registers, NULL, NULL); | ||
336 | |||
337 | static DECLARE_INTC_DESC(intc_irl3210_desc, "sh7763-irl3210", irl_vectors, | ||
338 | NULL, NULL, irl3210_mask_registers, NULL, NULL); | ||
339 | |||
340 | #define INTC_ICR0 0xffd00000 | ||
341 | #define INTC_INTMSK0 0xffd00044 | ||
342 | #define INTC_INTMSK1 0xffd00048 | ||
343 | #define INTC_INTMSK2 0xffd40080 | ||
344 | #define INTC_INTMSKCLR1 0xffd00068 | ||
345 | #define INTC_INTMSKCLR2 0xffd40084 | ||
346 | |||
347 | void __init plat_irq_setup(void) | ||
348 | { | ||
349 | /* disable IRQ7-0 */ | ||
350 | ctrl_outl(0xff000000, INTC_INTMSK0); | ||
351 | |||
352 | /* disable IRL3-0 + IRL7-4 */ | ||
353 | ctrl_outl(0xc0000000, INTC_INTMSK1); | ||
354 | ctrl_outl(0xfffefffe, INTC_INTMSK2); | ||
355 | |||
356 | register_intc_controller(&intc_desc); | ||
357 | } | ||
358 | |||
359 | void __init plat_irq_setup_pins(int mode) | ||
360 | { | ||
361 | switch (mode) { | ||
362 | case IRQ_MODE_IRQ: | ||
363 | /* select IRQ mode for IRL3-0 + IRL7-4 */ | ||
364 | ctrl_outl(ctrl_inl(INTC_ICR0) | 0x00c00000, INTC_ICR0); | ||
365 | register_intc_controller(&intc_irq_desc); | ||
366 | break; | ||
367 | case IRQ_MODE_IRL7654: | ||
368 | /* enable IRL7-4 but don't provide any masking */ | ||
369 | ctrl_outl(0x40000000, INTC_INTMSKCLR1); | ||
370 | ctrl_outl(0x0000fffe, INTC_INTMSKCLR2); | ||
371 | break; | ||
372 | case IRQ_MODE_IRL3210: | ||
373 | /* enable IRL0-3 but don't provide any masking */ | ||
374 | ctrl_outl(0x80000000, INTC_INTMSKCLR1); | ||
375 | ctrl_outl(0xfffe0000, INTC_INTMSKCLR2); | ||
376 | break; | ||
377 | case IRQ_MODE_IRL7654_MASK: | ||
378 | /* enable IRL7-4 and mask using cpu intc controller */ | ||
379 | ctrl_outl(0x40000000, INTC_INTMSKCLR1); | ||
380 | register_intc_controller(&intc_irl7654_desc); | ||
381 | break; | ||
382 | case IRQ_MODE_IRL3210_MASK: | ||
383 | /* enable IRL0-3 and mask using cpu intc controller */ | ||
384 | ctrl_outl(0x80000000, INTC_INTMSKCLR1); | ||
385 | register_intc_controller(&intc_irl3210_desc); | ||
386 | break; | ||
387 | default: | ||
388 | BUG(); | ||
389 | } | ||
390 | } | ||
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7780.c b/arch/sh/kernel/cpu/sh4a/setup-sh7780.c index e8fd33ff0605..293004b526ff 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7780.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7780.c | |||
@@ -168,11 +168,6 @@ static struct intc_group groups[] __initdata = { | |||
168 | INTC_GROUP(GPIO, GPIOI0, GPIOI1, GPIOI2, GPIOI3), | 168 | INTC_GROUP(GPIO, GPIOI0, GPIOI1, GPIOI2, GPIOI3), |
169 | }; | 169 | }; |
170 | 170 | ||
171 | static struct intc_prio priorities[] __initdata = { | ||
172 | INTC_PRIO(SCIF0, 3), | ||
173 | INTC_PRIO(SCIF1, 3), | ||
174 | }; | ||
175 | |||
176 | static struct intc_mask_reg mask_registers[] __initdata = { | 171 | static struct intc_mask_reg mask_registers[] __initdata = { |
177 | { 0xffd40038, 0xffd4003c, 32, /* INT2MSKR / INT2MSKCR */ | 172 | { 0xffd40038, 0xffd4003c, 32, /* INT2MSKR / INT2MSKCR */ |
178 | { 0, 0, 0, 0, 0, 0, GPIO, FLCTL, | 173 | { 0, 0, 0, 0, 0, 0, GPIO, FLCTL, |
@@ -195,7 +190,7 @@ static struct intc_prio_reg prio_registers[] __initdata = { | |||
195 | { 0xffd4001c, 0, 32, 8, /* INT2PRI7 */ { FLCTL, GPIO } }, | 190 | { 0xffd4001c, 0, 32, 8, /* INT2PRI7 */ { FLCTL, GPIO } }, |
196 | }; | 191 | }; |
197 | 192 | ||
198 | static DECLARE_INTC_DESC(intc_desc, "sh7780", vectors, groups, priorities, | 193 | static DECLARE_INTC_DESC(intc_desc, "sh7780", vectors, groups, |
199 | mask_registers, prio_registers, NULL); | 194 | mask_registers, prio_registers, NULL); |
200 | 195 | ||
201 | /* Support for external interrupt pins in IRQ mode */ | 196 | /* Support for external interrupt pins in IRQ mode */ |
@@ -223,7 +218,7 @@ static struct intc_sense_reg irq_sense_registers[] __initdata = { | |||
223 | }; | 218 | }; |
224 | 219 | ||
225 | static DECLARE_INTC_DESC(intc_irq_desc, "sh7780-irq", irq_vectors, | 220 | static DECLARE_INTC_DESC(intc_irq_desc, "sh7780-irq", irq_vectors, |
226 | NULL, NULL, irq_mask_registers, irq_prio_registers, | 221 | NULL, irq_mask_registers, irq_prio_registers, |
227 | irq_sense_registers); | 222 | irq_sense_registers); |
228 | 223 | ||
229 | /* External interrupt pins in IRL mode */ | 224 | /* External interrupt pins in IRL mode */ |
@@ -257,10 +252,10 @@ static struct intc_mask_reg irl7654_mask_registers[] __initdata = { | |||
257 | }; | 252 | }; |
258 | 253 | ||
259 | static DECLARE_INTC_DESC(intc_irl7654_desc, "sh7780-irl7654", irl_vectors, | 254 | static DECLARE_INTC_DESC(intc_irl7654_desc, "sh7780-irl7654", irl_vectors, |
260 | NULL, NULL, irl7654_mask_registers, NULL, NULL); | 255 | NULL, irl7654_mask_registers, NULL, NULL); |
261 | 256 | ||
262 | static DECLARE_INTC_DESC(intc_irl3210_desc, "sh7780-irl3210", irl_vectors, | 257 | static DECLARE_INTC_DESC(intc_irl3210_desc, "sh7780-irl3210", irl_vectors, |
263 | NULL, NULL, irl3210_mask_registers, NULL, NULL); | 258 | NULL, irl3210_mask_registers, NULL, NULL); |
264 | 259 | ||
265 | #define INTC_ICR0 0xffd00000 | 260 | #define INTC_ICR0 0xffd00000 |
266 | #define INTC_INTMSK0 0xffd00044 | 261 | #define INTC_INTMSK0 0xffd00044 |
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7785.c b/arch/sh/kernel/cpu/sh4a/setup-sh7785.c index 39b215d6cee5..74b60e96cdf4 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7785.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7785.c | |||
@@ -178,15 +178,6 @@ static struct intc_group groups[] __initdata = { | |||
178 | INTC_GROUP(GPIO, GPIOI0, GPIOI1, GPIOI2, GPIOI3), | 178 | INTC_GROUP(GPIO, GPIOI0, GPIOI1, GPIOI2, GPIOI3), |
179 | }; | 179 | }; |
180 | 180 | ||
181 | static struct intc_prio priorities[] __initdata = { | ||
182 | INTC_PRIO(SCIF0, 3), | ||
183 | INTC_PRIO(SCIF1, 3), | ||
184 | INTC_PRIO(SCIF2, 3), | ||
185 | INTC_PRIO(SCIF3, 3), | ||
186 | INTC_PRIO(SCIF4, 3), | ||
187 | INTC_PRIO(SCIF5, 3), | ||
188 | }; | ||
189 | |||
190 | static struct intc_mask_reg mask_registers[] __initdata = { | 181 | static struct intc_mask_reg mask_registers[] __initdata = { |
191 | { 0xffd00044, 0xffd00064, 32, /* INTMSK0 / INTMSKCLR0 */ | 182 | { 0xffd00044, 0xffd00064, 32, /* INTMSK0 / INTMSKCLR0 */ |
192 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, | 183 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, |
@@ -227,7 +218,7 @@ static struct intc_prio_reg prio_registers[] __initdata = { | |||
227 | { 0xffd40024, 0, 32, 8, /* INT2PRI9 */ { DU, GDTA, } }, | 218 | { 0xffd40024, 0, 32, 8, /* INT2PRI9 */ { DU, GDTA, } }, |
228 | }; | 219 | }; |
229 | 220 | ||
230 | static DECLARE_INTC_DESC(intc_desc, "sh7785", vectors, groups, priorities, | 221 | static DECLARE_INTC_DESC(intc_desc, "sh7785", vectors, groups, |
231 | mask_registers, prio_registers, NULL); | 222 | mask_registers, prio_registers, NULL); |
232 | 223 | ||
233 | /* Support for external interrupt pins in IRQ mode */ | 224 | /* Support for external interrupt pins in IRQ mode */ |
@@ -248,11 +239,11 @@ static struct intc_sense_reg sense_registers[] __initdata = { | |||
248 | }; | 239 | }; |
249 | 240 | ||
250 | static DECLARE_INTC_DESC(intc_desc_irq0123, "sh7785-irq0123", vectors_irq0123, | 241 | static DECLARE_INTC_DESC(intc_desc_irq0123, "sh7785-irq0123", vectors_irq0123, |
251 | NULL, NULL, mask_registers, prio_registers, | 242 | NULL, mask_registers, prio_registers, |
252 | sense_registers); | 243 | sense_registers); |
253 | 244 | ||
254 | static DECLARE_INTC_DESC(intc_desc_irq4567, "sh7785-irq4567", vectors_irq4567, | 245 | static DECLARE_INTC_DESC(intc_desc_irq4567, "sh7785-irq4567", vectors_irq4567, |
255 | NULL, NULL, mask_registers, prio_registers, | 246 | NULL, mask_registers, prio_registers, |
256 | sense_registers); | 247 | sense_registers); |
257 | 248 | ||
258 | /* External interrupt pins in IRL mode */ | 249 | /* External interrupt pins in IRL mode */ |
@@ -280,10 +271,10 @@ static struct intc_vect vectors_irl4567[] __initdata = { | |||
280 | }; | 271 | }; |
281 | 272 | ||
282 | static DECLARE_INTC_DESC(intc_desc_irl0123, "sh7785-irl0123", vectors_irl0123, | 273 | static DECLARE_INTC_DESC(intc_desc_irl0123, "sh7785-irl0123", vectors_irl0123, |
283 | NULL, NULL, mask_registers, NULL, NULL); | 274 | NULL, mask_registers, NULL, NULL); |
284 | 275 | ||
285 | static DECLARE_INTC_DESC(intc_desc_irl4567, "sh7785-irl4567", vectors_irl4567, | 276 | static DECLARE_INTC_DESC(intc_desc_irl4567, "sh7785-irl4567", vectors_irl4567, |
286 | NULL, NULL, mask_registers, NULL, NULL); | 277 | NULL, mask_registers, NULL, NULL); |
287 | 278 | ||
288 | #define INTC_ICR0 0xffd00000 | 279 | #define INTC_ICR0 0xffd00000 |
289 | #define INTC_INTMSK0 0xffd00044 | 280 | #define INTC_INTMSK0 0xffd00044 |
diff --git a/arch/sh/kernel/cpu/sh4a/setup-shx3.c b/arch/sh/kernel/cpu/sh4a/setup-shx3.c index c6cdd7e3b049..4dc958b6b314 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-shx3.c +++ b/arch/sh/kernel/cpu/sh4a/setup-shx3.c | |||
@@ -165,13 +165,6 @@ static struct intc_group groups[] __initdata = { | |||
165 | INTC_GROUP(DTU3, DTU3_TEND, DTU3_AE, DTU3_TMISS), | 165 | INTC_GROUP(DTU3, DTU3_TEND, DTU3_AE, DTU3_TMISS), |
166 | }; | 166 | }; |
167 | 167 | ||
168 | static struct intc_prio priorities[] __initdata = { | ||
169 | INTC_PRIO(SCIF0, 3), | ||
170 | INTC_PRIO(SCIF1, 3), | ||
171 | INTC_PRIO(SCIF2, 3), | ||
172 | INTC_PRIO(SCIF3, 3), | ||
173 | }; | ||
174 | |||
175 | static struct intc_mask_reg mask_registers[] __initdata = { | 168 | static struct intc_mask_reg mask_registers[] __initdata = { |
176 | { 0xfe410030, 0xfe410050, 32, /* CnINTMSK0 / CnINTMSKCLR0 */ | 169 | { 0xfe410030, 0xfe410050, 32, /* CnINTMSK0 / CnINTMSKCLR0 */ |
177 | { IRQ0, IRQ1, IRQ2, IRQ3 } }, | 170 | { IRQ0, IRQ1, IRQ2, IRQ3 } }, |
@@ -218,7 +211,7 @@ static struct intc_prio_reg prio_registers[] __initdata = { | |||
218 | INTICI3, INTICI2, INTICI1, INTICI0 }, INTC_SMP(4, 4) }, | 211 | INTICI3, INTICI2, INTICI1, INTICI0 }, INTC_SMP(4, 4) }, |
219 | }; | 212 | }; |
220 | 213 | ||
221 | static DECLARE_INTC_DESC(intc_desc, "shx3", vectors, groups, priorities, | 214 | static DECLARE_INTC_DESC(intc_desc, "shx3", vectors, groups, |
222 | mask_registers, prio_registers, NULL); | 215 | mask_registers, prio_registers, NULL); |
223 | 216 | ||
224 | /* Support for external interrupt pins in IRQ mode */ | 217 | /* Support for external interrupt pins in IRQ mode */ |
@@ -232,8 +225,7 @@ static struct intc_sense_reg sense_registers[] __initdata = { | |||
232 | }; | 225 | }; |
233 | 226 | ||
234 | static DECLARE_INTC_DESC(intc_desc_irq, "shx3-irq", vectors_irq, groups, | 227 | static DECLARE_INTC_DESC(intc_desc_irq, "shx3-irq", vectors_irq, groups, |
235 | priorities, mask_registers, prio_registers, | 228 | mask_registers, prio_registers, sense_registers); |
236 | sense_registers); | ||
237 | 229 | ||
238 | /* External interrupt pins in IRL mode */ | 230 | /* External interrupt pins in IRL mode */ |
239 | static struct intc_vect vectors_irl[] __initdata = { | 231 | static struct intc_vect vectors_irl[] __initdata = { |
@@ -248,7 +240,7 @@ static struct intc_vect vectors_irl[] __initdata = { | |||
248 | }; | 240 | }; |
249 | 241 | ||
250 | static DECLARE_INTC_DESC(intc_desc_irl, "shx3-irl", vectors_irl, groups, | 242 | static DECLARE_INTC_DESC(intc_desc_irl, "shx3-irl", vectors_irl, groups, |
251 | priorities, mask_registers, prio_registers, NULL); | 243 | mask_registers, prio_registers, NULL); |
252 | 244 | ||
253 | void __init plat_irq_setup_pins(int mode) | 245 | void __init plat_irq_setup_pins(int mode) |
254 | { | 246 | { |
diff --git a/arch/sh/kernel/cpu/sh5/Makefile b/arch/sh/kernel/cpu/sh5/Makefile new file mode 100644 index 000000000000..8646363e9ded --- /dev/null +++ b/arch/sh/kernel/cpu/sh5/Makefile | |||
@@ -0,0 +1,7 @@ | |||
1 | # | ||
2 | # Makefile for the Linux/SuperH SH-5 backends. | ||
3 | # | ||
4 | obj-y := entry.o probe.o switchto.o | ||
5 | |||
6 | obj-$(CONFIG_SH_FPU) += fpu.o | ||
7 | obj-$(CONFIG_KALLSYMS) += unwind.o | ||
diff --git a/arch/sh/kernel/cpu/sh5/entry.S b/arch/sh/kernel/cpu/sh5/entry.S new file mode 100644 index 000000000000..ba8750176d91 --- /dev/null +++ b/arch/sh/kernel/cpu/sh5/entry.S | |||
@@ -0,0 +1,2101 @@ | |||
1 | /* | ||
2 | * arch/sh/kernel/cpu/sh5/entry.S | ||
3 | * | ||
4 | * Copyright (C) 2000, 2001 Paolo Alberelli | ||
5 | * Copyright (C) 2004 - 2007 Paul Mundt | ||
6 | * Copyright (C) 2003, 2004 Richard Curnow | ||
7 | * | ||
8 | * This file is subject to the terms and conditions of the GNU General Public | ||
9 | * License. See the file "COPYING" in the main directory of this archive | ||
10 | * for more details. | ||
11 | */ | ||
12 | #include <linux/errno.h> | ||
13 | #include <linux/sys.h> | ||
14 | #include <asm/cpu/registers.h> | ||
15 | #include <asm/processor.h> | ||
16 | #include <asm/unistd.h> | ||
17 | #include <asm/thread_info.h> | ||
18 | #include <asm/asm-offsets.h> | ||
19 | |||
20 | /* | ||
21 | * SR fields. | ||
22 | */ | ||
23 | #define SR_ASID_MASK 0x00ff0000 | ||
24 | #define SR_FD_MASK 0x00008000 | ||
25 | #define SR_SS 0x08000000 | ||
26 | #define SR_BL 0x10000000 | ||
27 | #define SR_MD 0x40000000 | ||
28 | |||
29 | /* | ||
30 | * Event code. | ||
31 | */ | ||
32 | #define EVENT_INTERRUPT 0 | ||
33 | #define EVENT_FAULT_TLB 1 | ||
34 | #define EVENT_FAULT_NOT_TLB 2 | ||
35 | #define EVENT_DEBUG 3 | ||
36 | |||
37 | /* EXPEVT values */ | ||
38 | #define RESET_CAUSE 0x20 | ||
39 | #define DEBUGSS_CAUSE 0x980 | ||
40 | |||
41 | /* | ||
42 | * Frame layout. Quad index. | ||
43 | */ | ||
44 | #define FRAME_T(x) FRAME_TBASE+(x*8) | ||
45 | #define FRAME_R(x) FRAME_RBASE+(x*8) | ||
46 | #define FRAME_S(x) FRAME_SBASE+(x*8) | ||
47 | #define FSPC 0 | ||
48 | #define FSSR 1 | ||
49 | #define FSYSCALL_ID 2 | ||
50 | |||
51 | /* Arrange the save frame to be a multiple of 32 bytes long */ | ||
52 | #define FRAME_SBASE 0 | ||
53 | #define FRAME_RBASE (FRAME_SBASE+(3*8)) /* SYSCALL_ID - SSR - SPC */ | ||
54 | #define FRAME_TBASE (FRAME_RBASE+(63*8)) /* r0 - r62 */ | ||
55 | #define FRAME_PBASE (FRAME_TBASE+(8*8)) /* tr0 -tr7 */ | ||
56 | #define FRAME_SIZE (FRAME_PBASE+(2*8)) /* pad0-pad1 */ | ||
57 | |||
58 | #define FP_FRAME_SIZE FP_FRAME_BASE+(33*8) /* dr0 - dr31 + fpscr */ | ||
59 | #define FP_FRAME_BASE 0 | ||
60 | |||
61 | #define SAVED_R2 0*8 | ||
62 | #define SAVED_R3 1*8 | ||
63 | #define SAVED_R4 2*8 | ||
64 | #define SAVED_R5 3*8 | ||
65 | #define SAVED_R18 4*8 | ||
66 | #define SAVED_R6 5*8 | ||
67 | #define SAVED_TR0 6*8 | ||
68 | |||
69 | /* These are the registers saved in the TLB path that aren't saved in the first | ||
70 | level of the normal one. */ | ||
71 | #define TLB_SAVED_R25 7*8 | ||
72 | #define TLB_SAVED_TR1 8*8 | ||
73 | #define TLB_SAVED_TR2 9*8 | ||
74 | #define TLB_SAVED_TR3 10*8 | ||
75 | #define TLB_SAVED_TR4 11*8 | ||
76 | /* Save R0/R1 : PT-migrating compiler currently dishounours -ffixed-r0 and -ffixed-r1 causing | ||
77 | breakage otherwise. */ | ||
78 | #define TLB_SAVED_R0 12*8 | ||
79 | #define TLB_SAVED_R1 13*8 | ||
80 | |||
81 | #define CLI() \ | ||
82 | getcon SR, r6; \ | ||
83 | ori r6, 0xf0, r6; \ | ||
84 | putcon r6, SR; | ||
85 | |||
86 | #define STI() \ | ||
87 | getcon SR, r6; \ | ||
88 | andi r6, ~0xf0, r6; \ | ||
89 | putcon r6, SR; | ||
90 | |||
91 | #ifdef CONFIG_PREEMPT | ||
92 | # define preempt_stop() CLI() | ||
93 | #else | ||
94 | # define preempt_stop() | ||
95 | # define resume_kernel restore_all | ||
96 | #endif | ||
97 | |||
98 | .section .data, "aw" | ||
99 | |||
100 | #define FAST_TLBMISS_STACK_CACHELINES 4 | ||
101 | #define FAST_TLBMISS_STACK_QUADWORDS (4*FAST_TLBMISS_STACK_CACHELINES) | ||
102 | |||
103 | /* Register back-up area for all exceptions */ | ||
104 | .balign 32 | ||
105 | /* Allow for 16 quadwords to be pushed by fast tlbmiss handling | ||
106 | * register saves etc. */ | ||
107 | .fill FAST_TLBMISS_STACK_QUADWORDS, 8, 0x0 | ||
108 | /* This is 32 byte aligned by construction */ | ||
109 | /* Register back-up area for all exceptions */ | ||
110 | reg_save_area: | ||
111 | .quad 0 | ||
112 | .quad 0 | ||
113 | .quad 0 | ||
114 | .quad 0 | ||
115 | |||
116 | .quad 0 | ||
117 | .quad 0 | ||
118 | .quad 0 | ||
119 | .quad 0 | ||
120 | |||
121 | .quad 0 | ||
122 | .quad 0 | ||
123 | .quad 0 | ||
124 | .quad 0 | ||
125 | |||
126 | .quad 0 | ||
127 | .quad 0 | ||
128 | |||
129 | /* Save area for RESVEC exceptions. We cannot use reg_save_area because of | ||
130 | * reentrancy. Note this area may be accessed via physical address. | ||
131 | * Align so this fits a whole single cache line, for ease of purging. | ||
132 | */ | ||
133 | .balign 32,0,32 | ||
134 | resvec_save_area: | ||
135 | .quad 0 | ||
136 | .quad 0 | ||
137 | .quad 0 | ||
138 | .quad 0 | ||
139 | .quad 0 | ||
140 | .balign 32,0,32 | ||
141 | |||
142 | /* Jump table of 3rd level handlers */ | ||
143 | trap_jtable: | ||
144 | .long do_exception_error /* 0x000 */ | ||
145 | .long do_exception_error /* 0x020 */ | ||
146 | .long tlb_miss_load /* 0x040 */ | ||
147 | .long tlb_miss_store /* 0x060 */ | ||
148 | ! ARTIFICIAL pseudo-EXPEVT setting | ||
149 | .long do_debug_interrupt /* 0x080 */ | ||
150 | .long tlb_miss_load /* 0x0A0 */ | ||
151 | .long tlb_miss_store /* 0x0C0 */ | ||
152 | .long do_address_error_load /* 0x0E0 */ | ||
153 | .long do_address_error_store /* 0x100 */ | ||
154 | #ifdef CONFIG_SH_FPU | ||
155 | .long do_fpu_error /* 0x120 */ | ||
156 | #else | ||
157 | .long do_exception_error /* 0x120 */ | ||
158 | #endif | ||
159 | .long do_exception_error /* 0x140 */ | ||
160 | .long system_call /* 0x160 */ | ||
161 | .long do_reserved_inst /* 0x180 */ | ||
162 | .long do_illegal_slot_inst /* 0x1A0 */ | ||
163 | .long do_exception_error /* 0x1C0 - NMI */ | ||
164 | .long do_exception_error /* 0x1E0 */ | ||
165 | .rept 15 | ||
166 | .long do_IRQ /* 0x200 - 0x3C0 */ | ||
167 | .endr | ||
168 | .long do_exception_error /* 0x3E0 */ | ||
169 | .rept 32 | ||
170 | .long do_IRQ /* 0x400 - 0x7E0 */ | ||
171 | .endr | ||
172 | .long fpu_error_or_IRQA /* 0x800 */ | ||
173 | .long fpu_error_or_IRQB /* 0x820 */ | ||
174 | .long do_IRQ /* 0x840 */ | ||
175 | .long do_IRQ /* 0x860 */ | ||
176 | .rept 6 | ||
177 | .long do_exception_error /* 0x880 - 0x920 */ | ||
178 | .endr | ||
179 | .long do_software_break_point /* 0x940 */ | ||
180 | .long do_exception_error /* 0x960 */ | ||
181 | .long do_single_step /* 0x980 */ | ||
182 | |||
183 | .rept 3 | ||
184 | .long do_exception_error /* 0x9A0 - 0x9E0 */ | ||
185 | .endr | ||
186 | .long do_IRQ /* 0xA00 */ | ||
187 | .long do_IRQ /* 0xA20 */ | ||
188 | .long itlb_miss_or_IRQ /* 0xA40 */ | ||
189 | .long do_IRQ /* 0xA60 */ | ||
190 | .long do_IRQ /* 0xA80 */ | ||
191 | .long itlb_miss_or_IRQ /* 0xAA0 */ | ||
192 | .long do_exception_error /* 0xAC0 */ | ||
193 | .long do_address_error_exec /* 0xAE0 */ | ||
194 | .rept 8 | ||
195 | .long do_exception_error /* 0xB00 - 0xBE0 */ | ||
196 | .endr | ||
197 | .rept 18 | ||
198 | .long do_IRQ /* 0xC00 - 0xE20 */ | ||
199 | .endr | ||
200 | |||
201 | .section .text64, "ax" | ||
202 | |||
203 | /* | ||
204 | * --- Exception/Interrupt/Event Handling Section | ||
205 | */ | ||
206 | |||
207 | /* | ||
208 | * VBR and RESVEC blocks. | ||
209 | * | ||
210 | * First level handler for VBR-based exceptions. | ||
211 | * | ||
212 | * To avoid waste of space, align to the maximum text block size. | ||
213 | * This is assumed to be at most 128 bytes or 32 instructions. | ||
214 | * DO NOT EXCEED 32 instructions on the first level handlers ! | ||
215 | * | ||
216 | * Also note that RESVEC is contained within the VBR block | ||
217 | * where the room left (1KB - TEXT_SIZE) allows placing | ||
218 | * the RESVEC block (at most 512B + TEXT_SIZE). | ||
219 | * | ||
220 | * So first (and only) level handler for RESVEC-based exceptions. | ||
221 | * | ||
222 | * Where the fault/interrupt is handled (not_a_tlb_miss, tlb_miss | ||
223 | * and interrupt) we are a lot tight with register space until | ||
224 | * saving onto the stack frame, which is done in handle_exception(). | ||
225 | * | ||
226 | */ | ||
227 | |||
228 | #define TEXT_SIZE 128 | ||
229 | #define BLOCK_SIZE 1664 /* Dynamic check, 13*128 */ | ||
230 | |||
231 | .balign TEXT_SIZE | ||
232 | LVBR_block: | ||
233 | .space 256, 0 /* Power-on class handler, */ | ||
234 | /* not required here */ | ||
235 | not_a_tlb_miss: | ||
236 | synco /* TAKum03020 (but probably a good idea anyway.) */ | ||
237 | /* Save original stack pointer into KCR1 */ | ||
238 | putcon SP, KCR1 | ||
239 | |||
240 | /* Save other original registers into reg_save_area */ | ||
241 | movi reg_save_area, SP | ||
242 | st.q SP, SAVED_R2, r2 | ||
243 | st.q SP, SAVED_R3, r3 | ||
244 | st.q SP, SAVED_R4, r4 | ||
245 | st.q SP, SAVED_R5, r5 | ||
246 | st.q SP, SAVED_R6, r6 | ||
247 | st.q SP, SAVED_R18, r18 | ||
248 | gettr tr0, r3 | ||
249 | st.q SP, SAVED_TR0, r3 | ||
250 | |||
251 | /* Set args for Non-debug, Not a TLB miss class handler */ | ||
252 | getcon EXPEVT, r2 | ||
253 | movi ret_from_exception, r3 | ||
254 | ori r3, 1, r3 | ||
255 | movi EVENT_FAULT_NOT_TLB, r4 | ||
256 | or SP, ZERO, r5 | ||
257 | getcon KCR1, SP | ||
258 | pta handle_exception, tr0 | ||
259 | blink tr0, ZERO | ||
260 | |||
261 | .balign 256 | ||
262 | ! VBR+0x200 | ||
263 | nop | ||
264 | .balign 256 | ||
265 | ! VBR+0x300 | ||
266 | nop | ||
267 | .balign 256 | ||
268 | /* | ||
269 | * Instead of the natural .balign 1024 place RESVEC here | ||
270 | * respecting the final 1KB alignment. | ||
271 | */ | ||
272 | .balign TEXT_SIZE | ||
273 | /* | ||
274 | * Instead of '.space 1024-TEXT_SIZE' place the RESVEC | ||
275 | * block making sure the final alignment is correct. | ||
276 | */ | ||
277 | tlb_miss: | ||
278 | synco /* TAKum03020 (but probably a good idea anyway.) */ | ||
279 | putcon SP, KCR1 | ||
280 | movi reg_save_area, SP | ||
281 | /* SP is guaranteed 32-byte aligned. */ | ||
282 | st.q SP, TLB_SAVED_R0 , r0 | ||
283 | st.q SP, TLB_SAVED_R1 , r1 | ||
284 | st.q SP, SAVED_R2 , r2 | ||
285 | st.q SP, SAVED_R3 , r3 | ||
286 | st.q SP, SAVED_R4 , r4 | ||
287 | st.q SP, SAVED_R5 , r5 | ||
288 | st.q SP, SAVED_R6 , r6 | ||
289 | st.q SP, SAVED_R18, r18 | ||
290 | |||
291 | /* Save R25 for safety; as/ld may want to use it to achieve the call to | ||
292 | * the code in mm/tlbmiss.c */ | ||
293 | st.q SP, TLB_SAVED_R25, r25 | ||
294 | gettr tr0, r2 | ||
295 | gettr tr1, r3 | ||
296 | gettr tr2, r4 | ||
297 | gettr tr3, r5 | ||
298 | gettr tr4, r18 | ||
299 | st.q SP, SAVED_TR0 , r2 | ||
300 | st.q SP, TLB_SAVED_TR1 , r3 | ||
301 | st.q SP, TLB_SAVED_TR2 , r4 | ||
302 | st.q SP, TLB_SAVED_TR3 , r5 | ||
303 | st.q SP, TLB_SAVED_TR4 , r18 | ||
304 | |||
305 | pt do_fast_page_fault, tr0 | ||
306 | getcon SSR, r2 | ||
307 | getcon EXPEVT, r3 | ||
308 | getcon TEA, r4 | ||
309 | shlri r2, 30, r2 | ||
310 | andi r2, 1, r2 /* r2 = SSR.MD */ | ||
311 | blink tr0, LINK | ||
312 | |||
313 | pt fixup_to_invoke_general_handler, tr1 | ||
314 | |||
315 | /* If the fast path handler fixed the fault, just drop through quickly | ||
316 | to the restore code right away to return to the excepting context. | ||
317 | */ | ||
318 | beqi/u r2, 0, tr1 | ||
319 | |||
320 | fast_tlb_miss_restore: | ||
321 | ld.q SP, SAVED_TR0, r2 | ||
322 | ld.q SP, TLB_SAVED_TR1, r3 | ||
323 | ld.q SP, TLB_SAVED_TR2, r4 | ||
324 | |||
325 | ld.q SP, TLB_SAVED_TR3, r5 | ||
326 | ld.q SP, TLB_SAVED_TR4, r18 | ||
327 | |||
328 | ptabs r2, tr0 | ||
329 | ptabs r3, tr1 | ||
330 | ptabs r4, tr2 | ||
331 | ptabs r5, tr3 | ||
332 | ptabs r18, tr4 | ||
333 | |||
334 | ld.q SP, TLB_SAVED_R0, r0 | ||
335 | ld.q SP, TLB_SAVED_R1, r1 | ||
336 | ld.q SP, SAVED_R2, r2 | ||
337 | ld.q SP, SAVED_R3, r3 | ||
338 | ld.q SP, SAVED_R4, r4 | ||
339 | ld.q SP, SAVED_R5, r5 | ||
340 | ld.q SP, SAVED_R6, r6 | ||
341 | ld.q SP, SAVED_R18, r18 | ||
342 | ld.q SP, TLB_SAVED_R25, r25 | ||
343 | |||
344 | getcon KCR1, SP | ||
345 | rte | ||
346 | nop /* for safety, in case the code is run on sh5-101 cut1.x */ | ||
347 | |||
348 | fixup_to_invoke_general_handler: | ||
349 | |||
350 | /* OK, new method. Restore stuff that's not expected to get saved into | ||
351 | the 'first-level' reg save area, then just fall through to setting | ||
352 | up the registers and calling the second-level handler. */ | ||
353 | |||
354 | /* 2nd level expects r2,3,4,5,6,18,tr0 to be saved. So we must restore | ||
355 | r25,tr1-4 and save r6 to get into the right state. */ | ||
356 | |||
357 | ld.q SP, TLB_SAVED_TR1, r3 | ||
358 | ld.q SP, TLB_SAVED_TR2, r4 | ||
359 | ld.q SP, TLB_SAVED_TR3, r5 | ||
360 | ld.q SP, TLB_SAVED_TR4, r18 | ||
361 | ld.q SP, TLB_SAVED_R25, r25 | ||
362 | |||
363 | ld.q SP, TLB_SAVED_R0, r0 | ||
364 | ld.q SP, TLB_SAVED_R1, r1 | ||
365 | |||
366 | ptabs/u r3, tr1 | ||
367 | ptabs/u r4, tr2 | ||
368 | ptabs/u r5, tr3 | ||
369 | ptabs/u r18, tr4 | ||
370 | |||
371 | /* Set args for Non-debug, TLB miss class handler */ | ||
372 | getcon EXPEVT, r2 | ||
373 | movi ret_from_exception, r3 | ||
374 | ori r3, 1, r3 | ||
375 | movi EVENT_FAULT_TLB, r4 | ||
376 | or SP, ZERO, r5 | ||
377 | getcon KCR1, SP | ||
378 | pta handle_exception, tr0 | ||
379 | blink tr0, ZERO | ||
380 | |||
381 | /* NB TAKE GREAT CARE HERE TO ENSURE THAT THE INTERRUPT CODE | ||
382 | DOES END UP AT VBR+0x600 */ | ||
383 | nop | ||
384 | nop | ||
385 | nop | ||
386 | nop | ||
387 | nop | ||
388 | nop | ||
389 | |||
390 | .balign 256 | ||
391 | /* VBR + 0x600 */ | ||
392 | |||
393 | interrupt: | ||
394 | synco /* TAKum03020 (but probably a good idea anyway.) */ | ||
395 | /* Save original stack pointer into KCR1 */ | ||
396 | putcon SP, KCR1 | ||
397 | |||
398 | /* Save other original registers into reg_save_area */ | ||
399 | movi reg_save_area, SP | ||
400 | st.q SP, SAVED_R2, r2 | ||
401 | st.q SP, SAVED_R3, r3 | ||
402 | st.q SP, SAVED_R4, r4 | ||
403 | st.q SP, SAVED_R5, r5 | ||
404 | st.q SP, SAVED_R6, r6 | ||
405 | st.q SP, SAVED_R18, r18 | ||
406 | gettr tr0, r3 | ||
407 | st.q SP, SAVED_TR0, r3 | ||
408 | |||
409 | /* Set args for interrupt class handler */ | ||
410 | getcon INTEVT, r2 | ||
411 | movi ret_from_irq, r3 | ||
412 | ori r3, 1, r3 | ||
413 | movi EVENT_INTERRUPT, r4 | ||
414 | or SP, ZERO, r5 | ||
415 | getcon KCR1, SP | ||
416 | pta handle_exception, tr0 | ||
417 | blink tr0, ZERO | ||
418 | .balign TEXT_SIZE /* let's waste the bare minimum */ | ||
419 | |||
420 | LVBR_block_end: /* Marker. Used for total checking */ | ||
421 | |||
422 | .balign 256 | ||
423 | LRESVEC_block: | ||
424 | /* Panic handler. Called with MMU off. Possible causes/actions: | ||
425 | * - Reset: Jump to program start. | ||
426 | * - Single Step: Turn off Single Step & return. | ||
427 | * - Others: Call panic handler, passing PC as arg. | ||
428 | * (this may need to be extended...) | ||
429 | */ | ||
430 | reset_or_panic: | ||
431 | synco /* TAKum03020 (but probably a good idea anyway.) */ | ||
432 | putcon SP, DCR | ||
433 | /* First save r0-1 and tr0, as we need to use these */ | ||
434 | movi resvec_save_area-CONFIG_PAGE_OFFSET, SP | ||
435 | st.q SP, 0, r0 | ||
436 | st.q SP, 8, r1 | ||
437 | gettr tr0, r0 | ||
438 | st.q SP, 32, r0 | ||
439 | |||
440 | /* Check cause */ | ||
441 | getcon EXPEVT, r0 | ||
442 | movi RESET_CAUSE, r1 | ||
443 | sub r1, r0, r1 /* r1=0 if reset */ | ||
444 | movi _stext-CONFIG_PAGE_OFFSET, r0 | ||
445 | ori r0, 1, r0 | ||
446 | ptabs r0, tr0 | ||
447 | beqi r1, 0, tr0 /* Jump to start address if reset */ | ||
448 | |||
449 | getcon EXPEVT, r0 | ||
450 | movi DEBUGSS_CAUSE, r1 | ||
451 | sub r1, r0, r1 /* r1=0 if single step */ | ||
452 | pta single_step_panic, tr0 | ||
453 | beqi r1, 0, tr0 /* jump if single step */ | ||
454 | |||
455 | /* Now jump to where we save the registers. */ | ||
456 | movi panic_stash_regs-CONFIG_PAGE_OFFSET, r1 | ||
457 | ptabs r1, tr0 | ||
458 | blink tr0, r63 | ||
459 | |||
460 | single_step_panic: | ||
461 | /* We are in a handler with Single Step set. We need to resume the | ||
462 | * handler, by turning on MMU & turning off Single Step. */ | ||
463 | getcon SSR, r0 | ||
464 | movi SR_MMU, r1 | ||
465 | or r0, r1, r0 | ||
466 | movi ~SR_SS, r1 | ||
467 | and r0, r1, r0 | ||
468 | putcon r0, SSR | ||
469 | /* Restore EXPEVT, as the rte won't do this */ | ||
470 | getcon PEXPEVT, r0 | ||
471 | putcon r0, EXPEVT | ||
472 | /* Restore regs */ | ||
473 | ld.q SP, 32, r0 | ||
474 | ptabs r0, tr0 | ||
475 | ld.q SP, 0, r0 | ||
476 | ld.q SP, 8, r1 | ||
477 | getcon DCR, SP | ||
478 | synco | ||
479 | rte | ||
480 | |||
481 | |||
482 | .balign 256 | ||
483 | debug_exception: | ||
484 | synco /* TAKum03020 (but probably a good idea anyway.) */ | ||
485 | /* | ||
486 | * Single step/software_break_point first level handler. | ||
487 | * Called with MMU off, so the first thing we do is enable it | ||
488 | * by doing an rte with appropriate SSR. | ||
489 | */ | ||
490 | putcon SP, DCR | ||
491 | /* Save SSR & SPC, together with R0 & R1, as we need to use 2 regs. */ | ||
492 | movi resvec_save_area-CONFIG_PAGE_OFFSET, SP | ||
493 | |||
494 | /* With the MMU off, we are bypassing the cache, so purge any | ||
495 | * data that will be made stale by the following stores. | ||
496 | */ | ||
497 | ocbp SP, 0 | ||
498 | synco | ||
499 | |||
500 | st.q SP, 0, r0 | ||
501 | st.q SP, 8, r1 | ||
502 | getcon SPC, r0 | ||
503 | st.q SP, 16, r0 | ||
504 | getcon SSR, r0 | ||
505 | st.q SP, 24, r0 | ||
506 | |||
507 | /* Enable MMU, block exceptions, set priv mode, disable single step */ | ||
508 | movi SR_MMU | SR_BL | SR_MD, r1 | ||
509 | or r0, r1, r0 | ||
510 | movi ~SR_SS, r1 | ||
511 | and r0, r1, r0 | ||
512 | putcon r0, SSR | ||
513 | /* Force control to debug_exception_2 when rte is executed */ | ||
514 | movi debug_exeception_2, r0 | ||
515 | ori r0, 1, r0 /* force SHmedia, just in case */ | ||
516 | putcon r0, SPC | ||
517 | getcon DCR, SP | ||
518 | synco | ||
519 | rte | ||
520 | debug_exeception_2: | ||
521 | /* Restore saved regs */ | ||
522 | putcon SP, KCR1 | ||
523 | movi resvec_save_area, SP | ||
524 | ld.q SP, 24, r0 | ||
525 | putcon r0, SSR | ||
526 | ld.q SP, 16, r0 | ||
527 | putcon r0, SPC | ||
528 | ld.q SP, 0, r0 | ||
529 | ld.q SP, 8, r1 | ||
530 | |||
531 | /* Save other original registers into reg_save_area */ | ||
532 | movi reg_save_area, SP | ||
533 | st.q SP, SAVED_R2, r2 | ||
534 | st.q SP, SAVED_R3, r3 | ||
535 | st.q SP, SAVED_R4, r4 | ||
536 | st.q SP, SAVED_R5, r5 | ||
537 | st.q SP, SAVED_R6, r6 | ||
538 | st.q SP, SAVED_R18, r18 | ||
539 | gettr tr0, r3 | ||
540 | st.q SP, SAVED_TR0, r3 | ||
541 | |||
542 | /* Set args for debug class handler */ | ||
543 | getcon EXPEVT, r2 | ||
544 | movi ret_from_exception, r3 | ||
545 | ori r3, 1, r3 | ||
546 | movi EVENT_DEBUG, r4 | ||
547 | or SP, ZERO, r5 | ||
548 | getcon KCR1, SP | ||
549 | pta handle_exception, tr0 | ||
550 | blink tr0, ZERO | ||
551 | |||
552 | .balign 256 | ||
553 | debug_interrupt: | ||
554 | /* !!! WE COME HERE IN REAL MODE !!! */ | ||
555 | /* Hook-up debug interrupt to allow various debugging options to be | ||
556 | * hooked into its handler. */ | ||
557 | /* Save original stack pointer into KCR1 */ | ||
558 | synco | ||
559 | putcon SP, KCR1 | ||
560 | movi resvec_save_area-CONFIG_PAGE_OFFSET, SP | ||
561 | ocbp SP, 0 | ||
562 | ocbp SP, 32 | ||
563 | synco | ||
564 | |||
565 | /* Save other original registers into reg_save_area thru real addresses */ | ||
566 | st.q SP, SAVED_R2, r2 | ||
567 | st.q SP, SAVED_R3, r3 | ||
568 | st.q SP, SAVED_R4, r4 | ||
569 | st.q SP, SAVED_R5, r5 | ||
570 | st.q SP, SAVED_R6, r6 | ||
571 | st.q SP, SAVED_R18, r18 | ||
572 | gettr tr0, r3 | ||
573 | st.q SP, SAVED_TR0, r3 | ||
574 | |||
575 | /* move (spc,ssr)->(pspc,pssr). The rte will shift | ||
576 | them back again, so that they look like the originals | ||
577 | as far as the real handler code is concerned. */ | ||
578 | getcon spc, r6 | ||
579 | putcon r6, pspc | ||
580 | getcon ssr, r6 | ||
581 | putcon r6, pssr | ||
582 | |||
583 | ! construct useful SR for handle_exception | ||
584 | movi 3, r6 | ||
585 | shlli r6, 30, r6 | ||
586 | getcon sr, r18 | ||
587 | or r18, r6, r6 | ||
588 | putcon r6, ssr | ||
589 | |||
590 | ! SSR is now the current SR with the MD and MMU bits set | ||
591 | ! i.e. the rte will switch back to priv mode and put | ||
592 | ! the mmu back on | ||
593 | |||
594 | ! construct spc | ||
595 | movi handle_exception, r18 | ||
596 | ori r18, 1, r18 ! for safety (do we need this?) | ||
597 | putcon r18, spc | ||
598 | |||
599 | /* Set args for Non-debug, Not a TLB miss class handler */ | ||
600 | |||
601 | ! EXPEVT==0x80 is unused, so 'steal' this value to put the | ||
602 | ! debug interrupt handler in the vectoring table | ||
603 | movi 0x80, r2 | ||
604 | movi ret_from_exception, r3 | ||
605 | ori r3, 1, r3 | ||
606 | movi EVENT_FAULT_NOT_TLB, r4 | ||
607 | |||
608 | or SP, ZERO, r5 | ||
609 | movi CONFIG_PAGE_OFFSET, r6 | ||
610 | add r6, r5, r5 | ||
611 | getcon KCR1, SP | ||
612 | |||
613 | synco ! for safety | ||
614 | rte ! -> handle_exception, switch back to priv mode again | ||
615 | |||
616 | LRESVEC_block_end: /* Marker. Unused. */ | ||
617 | |||
618 | .balign TEXT_SIZE | ||
619 | |||
620 | /* | ||
621 | * Second level handler for VBR-based exceptions. Pre-handler. | ||
622 | * In common to all stack-frame sensitive handlers. | ||
623 | * | ||
624 | * Inputs: | ||
625 | * (KCR0) Current [current task union] | ||
626 | * (KCR1) Original SP | ||
627 | * (r2) INTEVT/EXPEVT | ||
628 | * (r3) appropriate return address | ||
629 | * (r4) Event (0 = interrupt, 1 = TLB miss fault, 2 = Not TLB miss fault, 3=debug) | ||
630 | * (r5) Pointer to reg_save_area | ||
631 | * (SP) Original SP | ||
632 | * | ||
633 | * Available registers: | ||
634 | * (r6) | ||
635 | * (r18) | ||
636 | * (tr0) | ||
637 | * | ||
638 | */ | ||
639 | handle_exception: | ||
640 | /* Common 2nd level handler. */ | ||
641 | |||
642 | /* First thing we need an appropriate stack pointer */ | ||
643 | getcon SSR, r6 | ||
644 | shlri r6, 30, r6 | ||
645 | andi r6, 1, r6 | ||
646 | pta stack_ok, tr0 | ||
647 | bne r6, ZERO, tr0 /* Original stack pointer is fine */ | ||
648 | |||
649 | /* Set stack pointer for user fault */ | ||
650 | getcon KCR0, SP | ||
651 | movi THREAD_SIZE, r6 /* Point to the end */ | ||
652 | add SP, r6, SP | ||
653 | |||
654 | stack_ok: | ||
655 | |||
656 | /* DEBUG : check for underflow/overflow of the kernel stack */ | ||
657 | pta no_underflow, tr0 | ||
658 | getcon KCR0, r6 | ||
659 | movi 1024, r18 | ||
660 | add r6, r18, r6 | ||
661 | bge SP, r6, tr0 ! ? below 1k from bottom of stack : danger zone | ||
662 | |||
663 | /* Just panic to cause a crash. */ | ||
664 | bad_sp: | ||
665 | ld.b r63, 0, r6 | ||
666 | nop | ||
667 | |||
668 | no_underflow: | ||
669 | pta bad_sp, tr0 | ||
670 | getcon kcr0, r6 | ||
671 | movi THREAD_SIZE, r18 | ||
672 | add r18, r6, r6 | ||
673 | bgt SP, r6, tr0 ! sp above the stack | ||
674 | |||
675 | /* Make some room for the BASIC frame. */ | ||
676 | movi -(FRAME_SIZE), r6 | ||
677 | add SP, r6, SP | ||
678 | |||
679 | /* Could do this with no stalling if we had another spare register, but the | ||
680 | code below will be OK. */ | ||
681 | ld.q r5, SAVED_R2, r6 | ||
682 | ld.q r5, SAVED_R3, r18 | ||
683 | st.q SP, FRAME_R(2), r6 | ||
684 | ld.q r5, SAVED_R4, r6 | ||
685 | st.q SP, FRAME_R(3), r18 | ||
686 | ld.q r5, SAVED_R5, r18 | ||
687 | st.q SP, FRAME_R(4), r6 | ||
688 | ld.q r5, SAVED_R6, r6 | ||
689 | st.q SP, FRAME_R(5), r18 | ||
690 | ld.q r5, SAVED_R18, r18 | ||
691 | st.q SP, FRAME_R(6), r6 | ||
692 | ld.q r5, SAVED_TR0, r6 | ||
693 | st.q SP, FRAME_R(18), r18 | ||
694 | st.q SP, FRAME_T(0), r6 | ||
695 | |||
696 | /* Keep old SP around */ | ||
697 | getcon KCR1, r6 | ||
698 | |||
699 | /* Save the rest of the general purpose registers */ | ||
700 | st.q SP, FRAME_R(0), r0 | ||
701 | st.q SP, FRAME_R(1), r1 | ||
702 | st.q SP, FRAME_R(7), r7 | ||
703 | st.q SP, FRAME_R(8), r8 | ||
704 | st.q SP, FRAME_R(9), r9 | ||
705 | st.q SP, FRAME_R(10), r10 | ||
706 | st.q SP, FRAME_R(11), r11 | ||
707 | st.q SP, FRAME_R(12), r12 | ||
708 | st.q SP, FRAME_R(13), r13 | ||
709 | st.q SP, FRAME_R(14), r14 | ||
710 | |||
711 | /* SP is somewhere else */ | ||
712 | st.q SP, FRAME_R(15), r6 | ||
713 | |||
714 | st.q SP, FRAME_R(16), r16 | ||
715 | st.q SP, FRAME_R(17), r17 | ||
716 | /* r18 is saved earlier. */ | ||
717 | st.q SP, FRAME_R(19), r19 | ||
718 | st.q SP, FRAME_R(20), r20 | ||
719 | st.q SP, FRAME_R(21), r21 | ||
720 | st.q SP, FRAME_R(22), r22 | ||
721 | st.q SP, FRAME_R(23), r23 | ||
722 | st.q SP, FRAME_R(24), r24 | ||
723 | st.q SP, FRAME_R(25), r25 | ||
724 | st.q SP, FRAME_R(26), r26 | ||
725 | st.q SP, FRAME_R(27), r27 | ||
726 | st.q SP, FRAME_R(28), r28 | ||
727 | st.q SP, FRAME_R(29), r29 | ||
728 | st.q SP, FRAME_R(30), r30 | ||
729 | st.q SP, FRAME_R(31), r31 | ||
730 | st.q SP, FRAME_R(32), r32 | ||
731 | st.q SP, FRAME_R(33), r33 | ||
732 | st.q SP, FRAME_R(34), r34 | ||
733 | st.q SP, FRAME_R(35), r35 | ||
734 | st.q SP, FRAME_R(36), r36 | ||
735 | st.q SP, FRAME_R(37), r37 | ||
736 | st.q SP, FRAME_R(38), r38 | ||
737 | st.q SP, FRAME_R(39), r39 | ||
738 | st.q SP, FRAME_R(40), r40 | ||
739 | st.q SP, FRAME_R(41), r41 | ||
740 | st.q SP, FRAME_R(42), r42 | ||
741 | st.q SP, FRAME_R(43), r43 | ||
742 | st.q SP, FRAME_R(44), r44 | ||
743 | st.q SP, FRAME_R(45), r45 | ||
744 | st.q SP, FRAME_R(46), r46 | ||
745 | st.q SP, FRAME_R(47), r47 | ||
746 | st.q SP, FRAME_R(48), r48 | ||
747 | st.q SP, FRAME_R(49), r49 | ||
748 | st.q SP, FRAME_R(50), r50 | ||
749 | st.q SP, FRAME_R(51), r51 | ||
750 | st.q SP, FRAME_R(52), r52 | ||
751 | st.q SP, FRAME_R(53), r53 | ||
752 | st.q SP, FRAME_R(54), r54 | ||
753 | st.q SP, FRAME_R(55), r55 | ||
754 | st.q SP, FRAME_R(56), r56 | ||
755 | st.q SP, FRAME_R(57), r57 | ||
756 | st.q SP, FRAME_R(58), r58 | ||
757 | st.q SP, FRAME_R(59), r59 | ||
758 | st.q SP, FRAME_R(60), r60 | ||
759 | st.q SP, FRAME_R(61), r61 | ||
760 | st.q SP, FRAME_R(62), r62 | ||
761 | |||
762 | /* | ||
763 | * Save the S* registers. | ||
764 | */ | ||
765 | getcon SSR, r61 | ||
766 | st.q SP, FRAME_S(FSSR), r61 | ||
767 | getcon SPC, r62 | ||
768 | st.q SP, FRAME_S(FSPC), r62 | ||
769 | movi -1, r62 /* Reset syscall_nr */ | ||
770 | st.q SP, FRAME_S(FSYSCALL_ID), r62 | ||
771 | |||
772 | /* Save the rest of the target registers */ | ||
773 | gettr tr1, r6 | ||
774 | st.q SP, FRAME_T(1), r6 | ||
775 | gettr tr2, r6 | ||
776 | st.q SP, FRAME_T(2), r6 | ||
777 | gettr tr3, r6 | ||
778 | st.q SP, FRAME_T(3), r6 | ||
779 | gettr tr4, r6 | ||
780 | st.q SP, FRAME_T(4), r6 | ||
781 | gettr tr5, r6 | ||
782 | st.q SP, FRAME_T(5), r6 | ||
783 | gettr tr6, r6 | ||
784 | st.q SP, FRAME_T(6), r6 | ||
785 | gettr tr7, r6 | ||
786 | st.q SP, FRAME_T(7), r6 | ||
787 | |||
788 | ! setup FP so that unwinder can wind back through nested kernel mode | ||
789 | ! exceptions | ||
790 | add SP, ZERO, r14 | ||
791 | |||
792 | #ifdef CONFIG_POOR_MANS_STRACE | ||
793 | /* We've pushed all the registers now, so only r2-r4 hold anything | ||
794 | * useful. Move them into callee save registers */ | ||
795 | or r2, ZERO, r28 | ||
796 | or r3, ZERO, r29 | ||
797 | or r4, ZERO, r30 | ||
798 | |||
799 | /* Preserve r2 as the event code */ | ||
800 | movi evt_debug, r3 | ||
801 | ori r3, 1, r3 | ||
802 | ptabs r3, tr0 | ||
803 | |||
804 | or SP, ZERO, r6 | ||
805 | getcon TRA, r5 | ||
806 | blink tr0, LINK | ||
807 | |||
808 | or r28, ZERO, r2 | ||
809 | or r29, ZERO, r3 | ||
810 | or r30, ZERO, r4 | ||
811 | #endif | ||
812 | |||
813 | /* For syscall and debug race condition, get TRA now */ | ||
814 | getcon TRA, r5 | ||
815 | |||
816 | /* We are in a safe position to turn SR.BL off, but set IMASK=0xf | ||
817 | * Also set FD, to catch FPU usage in the kernel. | ||
818 | * | ||
819 | * benedict.gaster@superh.com 29/07/2002 | ||
820 | * | ||
821 | * On all SH5-101 revisions it is unsafe to raise the IMASK and at the | ||
822 | * same time change BL from 1->0, as any pending interrupt of a level | ||
823 | * higher than he previous value of IMASK will leak through and be | ||
824 | * taken unexpectedly. | ||
825 | * | ||
826 | * To avoid this we raise the IMASK and then issue another PUTCON to | ||
827 | * enable interrupts. | ||
828 | */ | ||
829 | getcon SR, r6 | ||
830 | movi SR_IMASK | SR_FD, r7 | ||
831 | or r6, r7, r6 | ||
832 | putcon r6, SR | ||
833 | movi SR_UNBLOCK_EXC, r7 | ||
834 | and r6, r7, r6 | ||
835 | putcon r6, SR | ||
836 | |||
837 | |||
838 | /* Now call the appropriate 3rd level handler */ | ||
839 | or r3, ZERO, LINK | ||
840 | movi trap_jtable, r3 | ||
841 | shlri r2, 3, r2 | ||
842 | ldx.l r2, r3, r3 | ||
843 | shlri r2, 2, r2 | ||
844 | ptabs r3, tr0 | ||
845 | or SP, ZERO, r3 | ||
846 | blink tr0, ZERO | ||
847 | |||
848 | /* | ||
849 | * Second level handler for VBR-based exceptions. Post-handlers. | ||
850 | * | ||
851 | * Post-handlers for interrupts (ret_from_irq), exceptions | ||
852 | * (ret_from_exception) and common reentrance doors (restore_all | ||
853 | * to get back to the original context, ret_from_syscall loop to | ||
854 | * check kernel exiting). | ||
855 | * | ||
856 | * ret_with_reschedule and work_notifysig are an inner lables of | ||
857 | * the ret_from_syscall loop. | ||
858 | * | ||
859 | * In common to all stack-frame sensitive handlers. | ||
860 | * | ||
861 | * Inputs: | ||
862 | * (SP) struct pt_regs *, original register's frame pointer (basic) | ||
863 | * | ||
864 | */ | ||
865 | .global ret_from_irq | ||
866 | ret_from_irq: | ||
867 | #ifdef CONFIG_POOR_MANS_STRACE | ||
868 | pta evt_debug_ret_from_irq, tr0 | ||
869 | ori SP, 0, r2 | ||
870 | blink tr0, LINK | ||
871 | #endif | ||
872 | ld.q SP, FRAME_S(FSSR), r6 | ||
873 | shlri r6, 30, r6 | ||
874 | andi r6, 1, r6 | ||
875 | pta resume_kernel, tr0 | ||
876 | bne r6, ZERO, tr0 /* no further checks */ | ||
877 | STI() | ||
878 | pta ret_with_reschedule, tr0 | ||
879 | blink tr0, ZERO /* Do not check softirqs */ | ||
880 | |||
881 | .global ret_from_exception | ||
882 | ret_from_exception: | ||
883 | preempt_stop() | ||
884 | |||
885 | #ifdef CONFIG_POOR_MANS_STRACE | ||
886 | pta evt_debug_ret_from_exc, tr0 | ||
887 | ori SP, 0, r2 | ||
888 | blink tr0, LINK | ||
889 | #endif | ||
890 | |||
891 | ld.q SP, FRAME_S(FSSR), r6 | ||
892 | shlri r6, 30, r6 | ||
893 | andi r6, 1, r6 | ||
894 | pta resume_kernel, tr0 | ||
895 | bne r6, ZERO, tr0 /* no further checks */ | ||
896 | |||
897 | /* Check softirqs */ | ||
898 | |||
899 | #ifdef CONFIG_PREEMPT | ||
900 | pta ret_from_syscall, tr0 | ||
901 | blink tr0, ZERO | ||
902 | |||
903 | resume_kernel: | ||
904 | pta restore_all, tr0 | ||
905 | |||
906 | getcon KCR0, r6 | ||
907 | ld.l r6, TI_PRE_COUNT, r7 | ||
908 | beq/u r7, ZERO, tr0 | ||
909 | |||
910 | need_resched: | ||
911 | ld.l r6, TI_FLAGS, r7 | ||
912 | movi (1 << TIF_NEED_RESCHED), r8 | ||
913 | and r8, r7, r8 | ||
914 | bne r8, ZERO, tr0 | ||
915 | |||
916 | getcon SR, r7 | ||
917 | andi r7, 0xf0, r7 | ||
918 | bne r7, ZERO, tr0 | ||
919 | |||
920 | movi ((PREEMPT_ACTIVE >> 16) & 65535), r8 | ||
921 | shori (PREEMPT_ACTIVE & 65535), r8 | ||
922 | st.l r6, TI_PRE_COUNT, r8 | ||
923 | |||
924 | STI() | ||
925 | movi schedule, r7 | ||
926 | ori r7, 1, r7 | ||
927 | ptabs r7, tr1 | ||
928 | blink tr1, LINK | ||
929 | |||
930 | st.l r6, TI_PRE_COUNT, ZERO | ||
931 | CLI() | ||
932 | |||
933 | pta need_resched, tr1 | ||
934 | blink tr1, ZERO | ||
935 | #endif | ||
936 | |||
937 | .global ret_from_syscall | ||
938 | ret_from_syscall: | ||
939 | |||
940 | ret_with_reschedule: | ||
941 | getcon KCR0, r6 ! r6 contains current_thread_info | ||
942 | ld.l r6, TI_FLAGS, r7 ! r7 contains current_thread_info->flags | ||
943 | |||
944 | movi _TIF_NEED_RESCHED, r8 | ||
945 | and r8, r7, r8 | ||
946 | pta work_resched, tr0 | ||
947 | bne r8, ZERO, tr0 | ||
948 | |||
949 | pta restore_all, tr1 | ||
950 | |||
951 | movi (_TIF_SIGPENDING | _TIF_RESTORE_SIGMASK), r8 | ||
952 | and r8, r7, r8 | ||
953 | pta work_notifysig, tr0 | ||
954 | bne r8, ZERO, tr0 | ||
955 | |||
956 | blink tr1, ZERO | ||
957 | |||
958 | work_resched: | ||
959 | pta ret_from_syscall, tr0 | ||
960 | gettr tr0, LINK | ||
961 | movi schedule, r6 | ||
962 | ptabs r6, tr0 | ||
963 | blink tr0, ZERO /* Call schedule(), return on top */ | ||
964 | |||
965 | work_notifysig: | ||
966 | gettr tr1, LINK | ||
967 | |||
968 | movi do_signal, r6 | ||
969 | ptabs r6, tr0 | ||
970 | or SP, ZERO, r2 | ||
971 | or ZERO, ZERO, r3 | ||
972 | blink tr0, LINK /* Call do_signal(regs, 0), return here */ | ||
973 | |||
974 | restore_all: | ||
975 | /* Do prefetches */ | ||
976 | |||
977 | ld.q SP, FRAME_T(0), r6 | ||
978 | ld.q SP, FRAME_T(1), r7 | ||
979 | ld.q SP, FRAME_T(2), r8 | ||
980 | ld.q SP, FRAME_T(3), r9 | ||
981 | ptabs r6, tr0 | ||
982 | ptabs r7, tr1 | ||
983 | ptabs r8, tr2 | ||
984 | ptabs r9, tr3 | ||
985 | ld.q SP, FRAME_T(4), r6 | ||
986 | ld.q SP, FRAME_T(5), r7 | ||
987 | ld.q SP, FRAME_T(6), r8 | ||
988 | ld.q SP, FRAME_T(7), r9 | ||
989 | ptabs r6, tr4 | ||
990 | ptabs r7, tr5 | ||
991 | ptabs r8, tr6 | ||
992 | ptabs r9, tr7 | ||
993 | |||
994 | ld.q SP, FRAME_R(0), r0 | ||
995 | ld.q SP, FRAME_R(1), r1 | ||
996 | ld.q SP, FRAME_R(2), r2 | ||
997 | ld.q SP, FRAME_R(3), r3 | ||
998 | ld.q SP, FRAME_R(4), r4 | ||
999 | ld.q SP, FRAME_R(5), r5 | ||
1000 | ld.q SP, FRAME_R(6), r6 | ||
1001 | ld.q SP, FRAME_R(7), r7 | ||
1002 | ld.q SP, FRAME_R(8), r8 | ||
1003 | ld.q SP, FRAME_R(9), r9 | ||
1004 | ld.q SP, FRAME_R(10), r10 | ||
1005 | ld.q SP, FRAME_R(11), r11 | ||
1006 | ld.q SP, FRAME_R(12), r12 | ||
1007 | ld.q SP, FRAME_R(13), r13 | ||
1008 | ld.q SP, FRAME_R(14), r14 | ||
1009 | |||
1010 | ld.q SP, FRAME_R(16), r16 | ||
1011 | ld.q SP, FRAME_R(17), r17 | ||
1012 | ld.q SP, FRAME_R(18), r18 | ||
1013 | ld.q SP, FRAME_R(19), r19 | ||
1014 | ld.q SP, FRAME_R(20), r20 | ||
1015 | ld.q SP, FRAME_R(21), r21 | ||
1016 | ld.q SP, FRAME_R(22), r22 | ||
1017 | ld.q SP, FRAME_R(23), r23 | ||
1018 | ld.q SP, FRAME_R(24), r24 | ||
1019 | ld.q SP, FRAME_R(25), r25 | ||
1020 | ld.q SP, FRAME_R(26), r26 | ||
1021 | ld.q SP, FRAME_R(27), r27 | ||
1022 | ld.q SP, FRAME_R(28), r28 | ||
1023 | ld.q SP, FRAME_R(29), r29 | ||
1024 | ld.q SP, FRAME_R(30), r30 | ||
1025 | ld.q SP, FRAME_R(31), r31 | ||
1026 | ld.q SP, FRAME_R(32), r32 | ||
1027 | ld.q SP, FRAME_R(33), r33 | ||
1028 | ld.q SP, FRAME_R(34), r34 | ||
1029 | ld.q SP, FRAME_R(35), r35 | ||
1030 | ld.q SP, FRAME_R(36), r36 | ||
1031 | ld.q SP, FRAME_R(37), r37 | ||
1032 | ld.q SP, FRAME_R(38), r38 | ||
1033 | ld.q SP, FRAME_R(39), r39 | ||
1034 | ld.q SP, FRAME_R(40), r40 | ||
1035 | ld.q SP, FRAME_R(41), r41 | ||
1036 | ld.q SP, FRAME_R(42), r42 | ||
1037 | ld.q SP, FRAME_R(43), r43 | ||
1038 | ld.q SP, FRAME_R(44), r44 | ||
1039 | ld.q SP, FRAME_R(45), r45 | ||
1040 | ld.q SP, FRAME_R(46), r46 | ||
1041 | ld.q SP, FRAME_R(47), r47 | ||
1042 | ld.q SP, FRAME_R(48), r48 | ||
1043 | ld.q SP, FRAME_R(49), r49 | ||
1044 | ld.q SP, FRAME_R(50), r50 | ||
1045 | ld.q SP, FRAME_R(51), r51 | ||
1046 | ld.q SP, FRAME_R(52), r52 | ||
1047 | ld.q SP, FRAME_R(53), r53 | ||
1048 | ld.q SP, FRAME_R(54), r54 | ||
1049 | ld.q SP, FRAME_R(55), r55 | ||
1050 | ld.q SP, FRAME_R(56), r56 | ||
1051 | ld.q SP, FRAME_R(57), r57 | ||
1052 | ld.q SP, FRAME_R(58), r58 | ||
1053 | |||
1054 | getcon SR, r59 | ||
1055 | movi SR_BLOCK_EXC, r60 | ||
1056 | or r59, r60, r59 | ||
1057 | putcon r59, SR /* SR.BL = 1, keep nesting out */ | ||
1058 | ld.q SP, FRAME_S(FSSR), r61 | ||
1059 | ld.q SP, FRAME_S(FSPC), r62 | ||
1060 | movi SR_ASID_MASK, r60 | ||
1061 | and r59, r60, r59 | ||
1062 | andc r61, r60, r61 /* Clear out older ASID */ | ||
1063 | or r59, r61, r61 /* Retain current ASID */ | ||
1064 | putcon r61, SSR | ||
1065 | putcon r62, SPC | ||
1066 | |||
1067 | /* Ignore FSYSCALL_ID */ | ||
1068 | |||
1069 | ld.q SP, FRAME_R(59), r59 | ||
1070 | ld.q SP, FRAME_R(60), r60 | ||
1071 | ld.q SP, FRAME_R(61), r61 | ||
1072 | ld.q SP, FRAME_R(62), r62 | ||
1073 | |||
1074 | /* Last touch */ | ||
1075 | ld.q SP, FRAME_R(15), SP | ||
1076 | rte | ||
1077 | nop | ||
1078 | |||
1079 | /* | ||
1080 | * Third level handlers for VBR-based exceptions. Adapting args to | ||
1081 | * and/or deflecting to fourth level handlers. | ||
1082 | * | ||
1083 | * Fourth level handlers interface. | ||
1084 | * Most are C-coded handlers directly pointed by the trap_jtable. | ||
1085 | * (Third = Fourth level) | ||
1086 | * Inputs: | ||
1087 | * (r2) fault/interrupt code, entry number (e.g. NMI = 14, | ||
1088 | * IRL0-3 (0000) = 16, RTLBMISS = 2, SYSCALL = 11, etc ...) | ||
1089 | * (r3) struct pt_regs *, original register's frame pointer | ||
1090 | * (r4) Event (0 = interrupt, 1 = TLB miss fault, 2 = Not TLB miss fault) | ||
1091 | * (r5) TRA control register (for syscall/debug benefit only) | ||
1092 | * (LINK) return address | ||
1093 | * (SP) = r3 | ||
1094 | * | ||
1095 | * Kernel TLB fault handlers will get a slightly different interface. | ||
1096 | * (r2) struct pt_regs *, original register's frame pointer | ||
1097 | * (r3) writeaccess, whether it's a store fault as opposed to load fault | ||
1098 | * (r4) execaccess, whether it's a ITLB fault as opposed to DTLB fault | ||
1099 | * (r5) Effective Address of fault | ||
1100 | * (LINK) return address | ||
1101 | * (SP) = r2 | ||
1102 | * | ||
1103 | * fpu_error_or_IRQ? is a helper to deflect to the right cause. | ||
1104 | * | ||
1105 | */ | ||
1106 | tlb_miss_load: | ||
1107 | or SP, ZERO, r2 | ||
1108 | or ZERO, ZERO, r3 /* Read */ | ||
1109 | or ZERO, ZERO, r4 /* Data */ | ||
1110 | getcon TEA, r5 | ||
1111 | pta call_do_page_fault, tr0 | ||
1112 | beq ZERO, ZERO, tr0 | ||
1113 | |||
1114 | tlb_miss_store: | ||
1115 | or SP, ZERO, r2 | ||
1116 | movi 1, r3 /* Write */ | ||
1117 | or ZERO, ZERO, r4 /* Data */ | ||
1118 | getcon TEA, r5 | ||
1119 | pta call_do_page_fault, tr0 | ||
1120 | beq ZERO, ZERO, tr0 | ||
1121 | |||
1122 | itlb_miss_or_IRQ: | ||
1123 | pta its_IRQ, tr0 | ||
1124 | beqi/u r4, EVENT_INTERRUPT, tr0 | ||
1125 | or SP, ZERO, r2 | ||
1126 | or ZERO, ZERO, r3 /* Read */ | ||
1127 | movi 1, r4 /* Text */ | ||
1128 | getcon TEA, r5 | ||
1129 | /* Fall through */ | ||
1130 | |||
1131 | call_do_page_fault: | ||
1132 | movi do_page_fault, r6 | ||
1133 | ptabs r6, tr0 | ||
1134 | blink tr0, ZERO | ||
1135 | |||
1136 | fpu_error_or_IRQA: | ||
1137 | pta its_IRQ, tr0 | ||
1138 | beqi/l r4, EVENT_INTERRUPT, tr0 | ||
1139 | #ifdef CONFIG_SH_FPU | ||
1140 | movi do_fpu_state_restore, r6 | ||
1141 | #else | ||
1142 | movi do_exception_error, r6 | ||
1143 | #endif | ||
1144 | ptabs r6, tr0 | ||
1145 | blink tr0, ZERO | ||
1146 | |||
1147 | fpu_error_or_IRQB: | ||
1148 | pta its_IRQ, tr0 | ||
1149 | beqi/l r4, EVENT_INTERRUPT, tr0 | ||
1150 | #ifdef CONFIG_SH_FPU | ||
1151 | movi do_fpu_state_restore, r6 | ||
1152 | #else | ||
1153 | movi do_exception_error, r6 | ||
1154 | #endif | ||
1155 | ptabs r6, tr0 | ||
1156 | blink tr0, ZERO | ||
1157 | |||
1158 | its_IRQ: | ||
1159 | movi do_IRQ, r6 | ||
1160 | ptabs r6, tr0 | ||
1161 | blink tr0, ZERO | ||
1162 | |||
1163 | /* | ||
1164 | * system_call/unknown_trap third level handler: | ||
1165 | * | ||
1166 | * Inputs: | ||
1167 | * (r2) fault/interrupt code, entry number (TRAP = 11) | ||
1168 | * (r3) struct pt_regs *, original register's frame pointer | ||
1169 | * (r4) Not used. Event (0=interrupt, 1=TLB miss fault, 2=Not TLB miss fault) | ||
1170 | * (r5) TRA Control Reg (0x00xyzzzz: x=1 SYSCALL, y = #args, z=nr) | ||
1171 | * (SP) = r3 | ||
1172 | * (LINK) return address: ret_from_exception | ||
1173 | * (*r3) Syscall parms: SC#, arg0, arg1, ..., arg5 in order (Saved r2/r7) | ||
1174 | * | ||
1175 | * Outputs: | ||
1176 | * (*r3) Syscall reply (Saved r2) | ||
1177 | * (LINK) In case of syscall only it can be scrapped. | ||
1178 | * Common second level post handler will be ret_from_syscall. | ||
1179 | * Common (non-trace) exit point to that is syscall_ret (saving | ||
1180 | * result to r2). Common bad exit point is syscall_bad (returning | ||
1181 | * ENOSYS then saved to r2). | ||
1182 | * | ||
1183 | */ | ||
1184 | |||
1185 | unknown_trap: | ||
1186 | /* Unknown Trap or User Trace */ | ||
1187 | movi do_unknown_trapa, r6 | ||
1188 | ptabs r6, tr0 | ||
1189 | ld.q r3, FRAME_R(9), r2 /* r2 = #arg << 16 | syscall # */ | ||
1190 | andi r2, 0x1ff, r2 /* r2 = syscall # */ | ||
1191 | blink tr0, LINK | ||
1192 | |||
1193 | pta syscall_ret, tr0 | ||
1194 | blink tr0, ZERO | ||
1195 | |||
1196 | /* New syscall implementation*/ | ||
1197 | system_call: | ||
1198 | pta unknown_trap, tr0 | ||
1199 | or r5, ZERO, r4 /* TRA (=r5) -> r4 */ | ||
1200 | shlri r4, 20, r4 | ||
1201 | bnei r4, 1, tr0 /* unknown_trap if not 0x1yzzzz */ | ||
1202 | |||
1203 | /* It's a system call */ | ||
1204 | st.q r3, FRAME_S(FSYSCALL_ID), r5 /* ID (0x1yzzzz) -> stack */ | ||
1205 | andi r5, 0x1ff, r5 /* syscall # -> r5 */ | ||
1206 | |||
1207 | STI() | ||
1208 | |||
1209 | pta syscall_allowed, tr0 | ||
1210 | movi NR_syscalls - 1, r4 /* Last valid */ | ||
1211 | bgeu/l r4, r5, tr0 | ||
1212 | |||
1213 | syscall_bad: | ||
1214 | /* Return ENOSYS ! */ | ||
1215 | movi -(ENOSYS), r2 /* Fall-through */ | ||
1216 | |||
1217 | .global syscall_ret | ||
1218 | syscall_ret: | ||
1219 | st.q SP, FRAME_R(9), r2 /* Expecting SP back to BASIC frame */ | ||
1220 | |||
1221 | #ifdef CONFIG_POOR_MANS_STRACE | ||
1222 | /* nothing useful in registers at this point */ | ||
1223 | |||
1224 | movi evt_debug2, r5 | ||
1225 | ori r5, 1, r5 | ||
1226 | ptabs r5, tr0 | ||
1227 | ld.q SP, FRAME_R(9), r2 | ||
1228 | or SP, ZERO, r3 | ||
1229 | blink tr0, LINK | ||
1230 | #endif | ||
1231 | |||
1232 | ld.q SP, FRAME_S(FSPC), r2 | ||
1233 | addi r2, 4, r2 /* Move PC, being pre-execution event */ | ||
1234 | st.q SP, FRAME_S(FSPC), r2 | ||
1235 | pta ret_from_syscall, tr0 | ||
1236 | blink tr0, ZERO | ||
1237 | |||
1238 | |||
1239 | /* A different return path for ret_from_fork, because we now need | ||
1240 | * to call schedule_tail with the later kernels. Because prev is | ||
1241 | * loaded into r2 by switch_to() means we can just call it straight away | ||
1242 | */ | ||
1243 | |||
1244 | .global ret_from_fork | ||
1245 | ret_from_fork: | ||
1246 | |||
1247 | movi schedule_tail,r5 | ||
1248 | ori r5, 1, r5 | ||
1249 | ptabs r5, tr0 | ||
1250 | blink tr0, LINK | ||
1251 | |||
1252 | #ifdef CONFIG_POOR_MANS_STRACE | ||
1253 | /* nothing useful in registers at this point */ | ||
1254 | |||
1255 | movi evt_debug2, r5 | ||
1256 | ori r5, 1, r5 | ||
1257 | ptabs r5, tr0 | ||
1258 | ld.q SP, FRAME_R(9), r2 | ||
1259 | or SP, ZERO, r3 | ||
1260 | blink tr0, LINK | ||
1261 | #endif | ||
1262 | |||
1263 | ld.q SP, FRAME_S(FSPC), r2 | ||
1264 | addi r2, 4, r2 /* Move PC, being pre-execution event */ | ||
1265 | st.q SP, FRAME_S(FSPC), r2 | ||
1266 | pta ret_from_syscall, tr0 | ||
1267 | blink tr0, ZERO | ||
1268 | |||
1269 | |||
1270 | |||
1271 | syscall_allowed: | ||
1272 | /* Use LINK to deflect the exit point, default is syscall_ret */ | ||
1273 | pta syscall_ret, tr0 | ||
1274 | gettr tr0, LINK | ||
1275 | pta syscall_notrace, tr0 | ||
1276 | |||
1277 | getcon KCR0, r2 | ||
1278 | ld.l r2, TI_FLAGS, r4 | ||
1279 | movi (_TIF_SYSCALL_TRACE | _TIF_SINGLESTEP | _TIF_SYSCALL_AUDIT), r6 | ||
1280 | and r6, r4, r6 | ||
1281 | beq/l r6, ZERO, tr0 | ||
1282 | |||
1283 | /* Trace it by calling syscall_trace before and after */ | ||
1284 | movi syscall_trace, r4 | ||
1285 | or SP, ZERO, r2 | ||
1286 | or ZERO, ZERO, r3 | ||
1287 | ptabs r4, tr0 | ||
1288 | blink tr0, LINK | ||
1289 | |||
1290 | /* Reload syscall number as r5 is trashed by syscall_trace */ | ||
1291 | ld.q SP, FRAME_S(FSYSCALL_ID), r5 | ||
1292 | andi r5, 0x1ff, r5 | ||
1293 | |||
1294 | pta syscall_ret_trace, tr0 | ||
1295 | gettr tr0, LINK | ||
1296 | |||
1297 | syscall_notrace: | ||
1298 | /* Now point to the appropriate 4th level syscall handler */ | ||
1299 | movi sys_call_table, r4 | ||
1300 | shlli r5, 2, r5 | ||
1301 | ldx.l r4, r5, r5 | ||
1302 | ptabs r5, tr0 | ||
1303 | |||
1304 | /* Prepare original args */ | ||
1305 | ld.q SP, FRAME_R(2), r2 | ||
1306 | ld.q SP, FRAME_R(3), r3 | ||
1307 | ld.q SP, FRAME_R(4), r4 | ||
1308 | ld.q SP, FRAME_R(5), r5 | ||
1309 | ld.q SP, FRAME_R(6), r6 | ||
1310 | ld.q SP, FRAME_R(7), r7 | ||
1311 | |||
1312 | /* And now the trick for those syscalls requiring regs * ! */ | ||
1313 | or SP, ZERO, r8 | ||
1314 | |||
1315 | /* Call it */ | ||
1316 | blink tr0, ZERO /* LINK is already properly set */ | ||
1317 | |||
1318 | syscall_ret_trace: | ||
1319 | /* We get back here only if under trace */ | ||
1320 | st.q SP, FRAME_R(9), r2 /* Save return value */ | ||
1321 | |||
1322 | movi syscall_trace, LINK | ||
1323 | or SP, ZERO, r2 | ||
1324 | movi 1, r3 | ||
1325 | ptabs LINK, tr0 | ||
1326 | blink tr0, LINK | ||
1327 | |||
1328 | /* This needs to be done after any syscall tracing */ | ||
1329 | ld.q SP, FRAME_S(FSPC), r2 | ||
1330 | addi r2, 4, r2 /* Move PC, being pre-execution event */ | ||
1331 | st.q SP, FRAME_S(FSPC), r2 | ||
1332 | |||
1333 | pta ret_from_syscall, tr0 | ||
1334 | blink tr0, ZERO /* Resume normal return sequence */ | ||
1335 | |||
1336 | /* | ||
1337 | * --- Switch to running under a particular ASID and return the previous ASID value | ||
1338 | * --- The caller is assumed to have done a cli before calling this. | ||
1339 | * | ||
1340 | * Input r2 : new ASID | ||
1341 | * Output r2 : old ASID | ||
1342 | */ | ||
1343 | |||
1344 | .global switch_and_save_asid | ||
1345 | switch_and_save_asid: | ||
1346 | getcon sr, r0 | ||
1347 | movi 255, r4 | ||
1348 | shlli r4, 16, r4 /* r4 = mask to select ASID */ | ||
1349 | and r0, r4, r3 /* r3 = shifted old ASID */ | ||
1350 | andi r2, 255, r2 /* mask down new ASID */ | ||
1351 | shlli r2, 16, r2 /* align new ASID against SR.ASID */ | ||
1352 | andc r0, r4, r0 /* efface old ASID from SR */ | ||
1353 | or r0, r2, r0 /* insert the new ASID */ | ||
1354 | putcon r0, ssr | ||
1355 | movi 1f, r0 | ||
1356 | putcon r0, spc | ||
1357 | rte | ||
1358 | nop | ||
1359 | 1: | ||
1360 | ptabs LINK, tr0 | ||
1361 | shlri r3, 16, r2 /* r2 = old ASID */ | ||
1362 | blink tr0, r63 | ||
1363 | |||
1364 | .global route_to_panic_handler | ||
1365 | route_to_panic_handler: | ||
1366 | /* Switch to real mode, goto panic_handler, don't return. Useful for | ||
1367 | last-chance debugging, e.g. if no output wants to go to the console. | ||
1368 | */ | ||
1369 | |||
1370 | movi panic_handler - CONFIG_PAGE_OFFSET, r1 | ||
1371 | ptabs r1, tr0 | ||
1372 | pta 1f, tr1 | ||
1373 | gettr tr1, r0 | ||
1374 | putcon r0, spc | ||
1375 | getcon sr, r0 | ||
1376 | movi 1, r1 | ||
1377 | shlli r1, 31, r1 | ||
1378 | andc r0, r1, r0 | ||
1379 | putcon r0, ssr | ||
1380 | rte | ||
1381 | nop | ||
1382 | 1: /* Now in real mode */ | ||
1383 | blink tr0, r63 | ||
1384 | nop | ||
1385 | |||
1386 | .global peek_real_address_q | ||
1387 | peek_real_address_q: | ||
1388 | /* Two args: | ||
1389 | r2 : real mode address to peek | ||
1390 | r2(out) : result quadword | ||
1391 | |||
1392 | This is provided as a cheapskate way of manipulating device | ||
1393 | registers for debugging (to avoid the need to onchip_remap the debug | ||
1394 | module, and to avoid the need to onchip_remap the watchpoint | ||
1395 | controller in a way that identity maps sufficient bits to avoid the | ||
1396 | SH5-101 cut2 silicon defect). | ||
1397 | |||
1398 | This code is not performance critical | ||
1399 | */ | ||
1400 | |||
1401 | add.l r2, r63, r2 /* sign extend address */ | ||
1402 | getcon sr, r0 /* r0 = saved original SR */ | ||
1403 | movi 1, r1 | ||
1404 | shlli r1, 28, r1 | ||
1405 | or r0, r1, r1 /* r0 with block bit set */ | ||
1406 | putcon r1, sr /* now in critical section */ | ||
1407 | movi 1, r36 | ||
1408 | shlli r36, 31, r36 | ||
1409 | andc r1, r36, r1 /* turn sr.mmu off in real mode section */ | ||
1410 | |||
1411 | putcon r1, ssr | ||
1412 | movi .peek0 - CONFIG_PAGE_OFFSET, r36 /* real mode target address */ | ||
1413 | movi 1f, r37 /* virtual mode return addr */ | ||
1414 | putcon r36, spc | ||
1415 | |||
1416 | synco | ||
1417 | rte | ||
1418 | nop | ||
1419 | |||
1420 | .peek0: /* come here in real mode, don't touch caches!! | ||
1421 | still in critical section (sr.bl==1) */ | ||
1422 | putcon r0, ssr | ||
1423 | putcon r37, spc | ||
1424 | /* Here's the actual peek. If the address is bad, all bets are now off | ||
1425 | * what will happen (handlers invoked in real-mode = bad news) */ | ||
1426 | ld.q r2, 0, r2 | ||
1427 | synco | ||
1428 | rte /* Back to virtual mode */ | ||
1429 | nop | ||
1430 | |||
1431 | 1: | ||
1432 | ptabs LINK, tr0 | ||
1433 | blink tr0, r63 | ||
1434 | |||
1435 | .global poke_real_address_q | ||
1436 | poke_real_address_q: | ||
1437 | /* Two args: | ||
1438 | r2 : real mode address to poke | ||
1439 | r3 : quadword value to write. | ||
1440 | |||
1441 | This is provided as a cheapskate way of manipulating device | ||
1442 | registers for debugging (to avoid the need to onchip_remap the debug | ||
1443 | module, and to avoid the need to onchip_remap the watchpoint | ||
1444 | controller in a way that identity maps sufficient bits to avoid the | ||
1445 | SH5-101 cut2 silicon defect). | ||
1446 | |||
1447 | This code is not performance critical | ||
1448 | */ | ||
1449 | |||
1450 | add.l r2, r63, r2 /* sign extend address */ | ||
1451 | getcon sr, r0 /* r0 = saved original SR */ | ||
1452 | movi 1, r1 | ||
1453 | shlli r1, 28, r1 | ||
1454 | or r0, r1, r1 /* r0 with block bit set */ | ||
1455 | putcon r1, sr /* now in critical section */ | ||
1456 | movi 1, r36 | ||
1457 | shlli r36, 31, r36 | ||
1458 | andc r1, r36, r1 /* turn sr.mmu off in real mode section */ | ||
1459 | |||
1460 | putcon r1, ssr | ||
1461 | movi .poke0-CONFIG_PAGE_OFFSET, r36 /* real mode target address */ | ||
1462 | movi 1f, r37 /* virtual mode return addr */ | ||
1463 | putcon r36, spc | ||
1464 | |||
1465 | synco | ||
1466 | rte | ||
1467 | nop | ||
1468 | |||
1469 | .poke0: /* come here in real mode, don't touch caches!! | ||
1470 | still in critical section (sr.bl==1) */ | ||
1471 | putcon r0, ssr | ||
1472 | putcon r37, spc | ||
1473 | /* Here's the actual poke. If the address is bad, all bets are now off | ||
1474 | * what will happen (handlers invoked in real-mode = bad news) */ | ||
1475 | st.q r2, 0, r3 | ||
1476 | synco | ||
1477 | rte /* Back to virtual mode */ | ||
1478 | nop | ||
1479 | |||
1480 | 1: | ||
1481 | ptabs LINK, tr0 | ||
1482 | blink tr0, r63 | ||
1483 | |||
1484 | /* | ||
1485 | * --- User Access Handling Section | ||
1486 | */ | ||
1487 | |||
1488 | /* | ||
1489 | * User Access support. It all moved to non inlined Assembler | ||
1490 | * functions in here. | ||
1491 | * | ||
1492 | * __kernel_size_t __copy_user(void *__to, const void *__from, | ||
1493 | * __kernel_size_t __n) | ||
1494 | * | ||
1495 | * Inputs: | ||
1496 | * (r2) target address | ||
1497 | * (r3) source address | ||
1498 | * (r4) size in bytes | ||
1499 | * | ||
1500 | * Ouputs: | ||
1501 | * (*r2) target data | ||
1502 | * (r2) non-copied bytes | ||
1503 | * | ||
1504 | * If a fault occurs on the user pointer, bail out early and return the | ||
1505 | * number of bytes not copied in r2. | ||
1506 | * Strategy : for large blocks, call a real memcpy function which can | ||
1507 | * move >1 byte at a time using unaligned ld/st instructions, and can | ||
1508 | * manipulate the cache using prefetch + alloco to improve the speed | ||
1509 | * further. If a fault occurs in that function, just revert to the | ||
1510 | * byte-by-byte approach used for small blocks; this is rare so the | ||
1511 | * performance hit for that case does not matter. | ||
1512 | * | ||
1513 | * For small blocks it's not worth the overhead of setting up and calling | ||
1514 | * the memcpy routine; do the copy a byte at a time. | ||
1515 | * | ||
1516 | */ | ||
1517 | .global __copy_user | ||
1518 | __copy_user: | ||
1519 | pta __copy_user_byte_by_byte, tr1 | ||
1520 | movi 16, r0 ! this value is a best guess, should tune it by benchmarking | ||
1521 | bge/u r0, r4, tr1 | ||
1522 | pta copy_user_memcpy, tr0 | ||
1523 | addi SP, -32, SP | ||
1524 | /* Save arguments in case we have to fix-up unhandled page fault */ | ||
1525 | st.q SP, 0, r2 | ||
1526 | st.q SP, 8, r3 | ||
1527 | st.q SP, 16, r4 | ||
1528 | st.q SP, 24, r35 ! r35 is callee-save | ||
1529 | /* Save LINK in a register to reduce RTS time later (otherwise | ||
1530 | ld SP,*,LINK;ptabs LINK;trn;blink trn,r63 becomes a critical path) */ | ||
1531 | ori LINK, 0, r35 | ||
1532 | blink tr0, LINK | ||
1533 | |||
1534 | /* Copy completed normally if we get back here */ | ||
1535 | ptabs r35, tr0 | ||
1536 | ld.q SP, 24, r35 | ||
1537 | /* don't restore r2-r4, pointless */ | ||
1538 | /* set result=r2 to zero as the copy must have succeeded. */ | ||
1539 | or r63, r63, r2 | ||
1540 | addi SP, 32, SP | ||
1541 | blink tr0, r63 ! RTS | ||
1542 | |||
1543 | .global __copy_user_fixup | ||
1544 | __copy_user_fixup: | ||
1545 | /* Restore stack frame */ | ||
1546 | ori r35, 0, LINK | ||
1547 | ld.q SP, 24, r35 | ||
1548 | ld.q SP, 16, r4 | ||
1549 | ld.q SP, 8, r3 | ||
1550 | ld.q SP, 0, r2 | ||
1551 | addi SP, 32, SP | ||
1552 | /* Fall through to original code, in the 'same' state we entered with */ | ||
1553 | |||
1554 | /* The slow byte-by-byte method is used if the fast copy traps due to a bad | ||
1555 | user address. In that rare case, the speed drop can be tolerated. */ | ||
1556 | __copy_user_byte_by_byte: | ||
1557 | pta ___copy_user_exit, tr1 | ||
1558 | pta ___copy_user1, tr0 | ||
1559 | beq/u r4, r63, tr1 /* early exit for zero length copy */ | ||
1560 | sub r2, r3, r0 | ||
1561 | addi r0, -1, r0 | ||
1562 | |||
1563 | ___copy_user1: | ||
1564 | ld.b r3, 0, r5 /* Fault address 1 */ | ||
1565 | |||
1566 | /* Could rewrite this to use just 1 add, but the second comes 'free' | ||
1567 | due to load latency */ | ||
1568 | addi r3, 1, r3 | ||
1569 | addi r4, -1, r4 /* No real fixup required */ | ||
1570 | ___copy_user2: | ||
1571 | stx.b r3, r0, r5 /* Fault address 2 */ | ||
1572 | bne r4, ZERO, tr0 | ||
1573 | |||
1574 | ___copy_user_exit: | ||
1575 | or r4, ZERO, r2 | ||
1576 | ptabs LINK, tr0 | ||
1577 | blink tr0, ZERO | ||
1578 | |||
1579 | /* | ||
1580 | * __kernel_size_t __clear_user(void *addr, __kernel_size_t size) | ||
1581 | * | ||
1582 | * Inputs: | ||
1583 | * (r2) target address | ||
1584 | * (r3) size in bytes | ||
1585 | * | ||
1586 | * Ouputs: | ||
1587 | * (*r2) zero-ed target data | ||
1588 | * (r2) non-zero-ed bytes | ||
1589 | */ | ||
1590 | .global __clear_user | ||
1591 | __clear_user: | ||
1592 | pta ___clear_user_exit, tr1 | ||
1593 | pta ___clear_user1, tr0 | ||
1594 | beq/u r3, r63, tr1 | ||
1595 | |||
1596 | ___clear_user1: | ||
1597 | st.b r2, 0, ZERO /* Fault address */ | ||
1598 | addi r2, 1, r2 | ||
1599 | addi r3, -1, r3 /* No real fixup required */ | ||
1600 | bne r3, ZERO, tr0 | ||
1601 | |||
1602 | ___clear_user_exit: | ||
1603 | or r3, ZERO, r2 | ||
1604 | ptabs LINK, tr0 | ||
1605 | blink tr0, ZERO | ||
1606 | |||
1607 | |||
1608 | /* | ||
1609 | * int __strncpy_from_user(unsigned long __dest, unsigned long __src, | ||
1610 | * int __count) | ||
1611 | * | ||
1612 | * Inputs: | ||
1613 | * (r2) target address | ||
1614 | * (r3) source address | ||
1615 | * (r4) maximum size in bytes | ||
1616 | * | ||
1617 | * Ouputs: | ||
1618 | * (*r2) copied data | ||
1619 | * (r2) -EFAULT (in case of faulting) | ||
1620 | * copied data (otherwise) | ||
1621 | */ | ||
1622 | .global __strncpy_from_user | ||
1623 | __strncpy_from_user: | ||
1624 | pta ___strncpy_from_user1, tr0 | ||
1625 | pta ___strncpy_from_user_done, tr1 | ||
1626 | or r4, ZERO, r5 /* r5 = original count */ | ||
1627 | beq/u r4, r63, tr1 /* early exit if r4==0 */ | ||
1628 | movi -(EFAULT), r6 /* r6 = reply, no real fixup */ | ||
1629 | or ZERO, ZERO, r7 /* r7 = data, clear top byte of data */ | ||
1630 | |||
1631 | ___strncpy_from_user1: | ||
1632 | ld.b r3, 0, r7 /* Fault address: only in reading */ | ||
1633 | st.b r2, 0, r7 | ||
1634 | addi r2, 1, r2 | ||
1635 | addi r3, 1, r3 | ||
1636 | beq/u ZERO, r7, tr1 | ||
1637 | addi r4, -1, r4 /* return real number of copied bytes */ | ||
1638 | bne/l ZERO, r4, tr0 | ||
1639 | |||
1640 | ___strncpy_from_user_done: | ||
1641 | sub r5, r4, r6 /* If done, return copied */ | ||
1642 | |||
1643 | ___strncpy_from_user_exit: | ||
1644 | or r6, ZERO, r2 | ||
1645 | ptabs LINK, tr0 | ||
1646 | blink tr0, ZERO | ||
1647 | |||
1648 | /* | ||
1649 | * extern long __strnlen_user(const char *__s, long __n) | ||
1650 | * | ||
1651 | * Inputs: | ||
1652 | * (r2) source address | ||
1653 | * (r3) source size in bytes | ||
1654 | * | ||
1655 | * Ouputs: | ||
1656 | * (r2) -EFAULT (in case of faulting) | ||
1657 | * string length (otherwise) | ||
1658 | */ | ||
1659 | .global __strnlen_user | ||
1660 | __strnlen_user: | ||
1661 | pta ___strnlen_user_set_reply, tr0 | ||
1662 | pta ___strnlen_user1, tr1 | ||
1663 | or ZERO, ZERO, r5 /* r5 = counter */ | ||
1664 | movi -(EFAULT), r6 /* r6 = reply, no real fixup */ | ||
1665 | or ZERO, ZERO, r7 /* r7 = data, clear top byte of data */ | ||
1666 | beq r3, ZERO, tr0 | ||
1667 | |||
1668 | ___strnlen_user1: | ||
1669 | ldx.b r2, r5, r7 /* Fault address: only in reading */ | ||
1670 | addi r3, -1, r3 /* No real fixup */ | ||
1671 | addi r5, 1, r5 | ||
1672 | beq r3, ZERO, tr0 | ||
1673 | bne r7, ZERO, tr1 | ||
1674 | ! The line below used to be active. This meant led to a junk byte lying between each pair | ||
1675 | ! of entries in the argv & envp structures in memory. Whilst the program saw the right data | ||
1676 | ! via the argv and envp arguments to main, it meant the 'flat' representation visible through | ||
1677 | ! /proc/$pid/cmdline was corrupt, causing trouble with ps, for example. | ||
1678 | ! addi r5, 1, r5 /* Include '\0' */ | ||
1679 | |||
1680 | ___strnlen_user_set_reply: | ||
1681 | or r5, ZERO, r6 /* If done, return counter */ | ||
1682 | |||
1683 | ___strnlen_user_exit: | ||
1684 | or r6, ZERO, r2 | ||
1685 | ptabs LINK, tr0 | ||
1686 | blink tr0, ZERO | ||
1687 | |||
1688 | /* | ||
1689 | * extern long __get_user_asm_?(void *val, long addr) | ||
1690 | * | ||
1691 | * Inputs: | ||
1692 | * (r2) dest address | ||
1693 | * (r3) source address (in User Space) | ||
1694 | * | ||
1695 | * Ouputs: | ||
1696 | * (r2) -EFAULT (faulting) | ||
1697 | * 0 (not faulting) | ||
1698 | */ | ||
1699 | .global __get_user_asm_b | ||
1700 | __get_user_asm_b: | ||
1701 | or r2, ZERO, r4 | ||
1702 | movi -(EFAULT), r2 /* r2 = reply, no real fixup */ | ||
1703 | |||
1704 | ___get_user_asm_b1: | ||
1705 | ld.b r3, 0, r5 /* r5 = data */ | ||
1706 | st.b r4, 0, r5 | ||
1707 | or ZERO, ZERO, r2 | ||
1708 | |||
1709 | ___get_user_asm_b_exit: | ||
1710 | ptabs LINK, tr0 | ||
1711 | blink tr0, ZERO | ||
1712 | |||
1713 | |||
1714 | .global __get_user_asm_w | ||
1715 | __get_user_asm_w: | ||
1716 | or r2, ZERO, r4 | ||
1717 | movi -(EFAULT), r2 /* r2 = reply, no real fixup */ | ||
1718 | |||
1719 | ___get_user_asm_w1: | ||
1720 | ld.w r3, 0, r5 /* r5 = data */ | ||
1721 | st.w r4, 0, r5 | ||
1722 | or ZERO, ZERO, r2 | ||
1723 | |||
1724 | ___get_user_asm_w_exit: | ||
1725 | ptabs LINK, tr0 | ||
1726 | blink tr0, ZERO | ||
1727 | |||
1728 | |||
1729 | .global __get_user_asm_l | ||
1730 | __get_user_asm_l: | ||
1731 | or r2, ZERO, r4 | ||
1732 | movi -(EFAULT), r2 /* r2 = reply, no real fixup */ | ||
1733 | |||
1734 | ___get_user_asm_l1: | ||
1735 | ld.l r3, 0, r5 /* r5 = data */ | ||
1736 | st.l r4, 0, r5 | ||
1737 | or ZERO, ZERO, r2 | ||
1738 | |||
1739 | ___get_user_asm_l_exit: | ||
1740 | ptabs LINK, tr0 | ||
1741 | blink tr0, ZERO | ||
1742 | |||
1743 | |||
1744 | .global __get_user_asm_q | ||
1745 | __get_user_asm_q: | ||
1746 | or r2, ZERO, r4 | ||
1747 | movi -(EFAULT), r2 /* r2 = reply, no real fixup */ | ||
1748 | |||
1749 | ___get_user_asm_q1: | ||
1750 | ld.q r3, 0, r5 /* r5 = data */ | ||
1751 | st.q r4, 0, r5 | ||
1752 | or ZERO, ZERO, r2 | ||
1753 | |||
1754 | ___get_user_asm_q_exit: | ||
1755 | ptabs LINK, tr0 | ||
1756 | blink tr0, ZERO | ||
1757 | |||
1758 | /* | ||
1759 | * extern long __put_user_asm_?(void *pval, long addr) | ||
1760 | * | ||
1761 | * Inputs: | ||
1762 | * (r2) kernel pointer to value | ||
1763 | * (r3) dest address (in User Space) | ||
1764 | * | ||
1765 | * Ouputs: | ||
1766 | * (r2) -EFAULT (faulting) | ||
1767 | * 0 (not faulting) | ||
1768 | */ | ||
1769 | .global __put_user_asm_b | ||
1770 | __put_user_asm_b: | ||
1771 | ld.b r2, 0, r4 /* r4 = data */ | ||
1772 | movi -(EFAULT), r2 /* r2 = reply, no real fixup */ | ||
1773 | |||
1774 | ___put_user_asm_b1: | ||
1775 | st.b r3, 0, r4 | ||
1776 | or ZERO, ZERO, r2 | ||
1777 | |||
1778 | ___put_user_asm_b_exit: | ||
1779 | ptabs LINK, tr0 | ||
1780 | blink tr0, ZERO | ||
1781 | |||
1782 | |||
1783 | .global __put_user_asm_w | ||
1784 | __put_user_asm_w: | ||
1785 | ld.w r2, 0, r4 /* r4 = data */ | ||
1786 | movi -(EFAULT), r2 /* r2 = reply, no real fixup */ | ||
1787 | |||
1788 | ___put_user_asm_w1: | ||
1789 | st.w r3, 0, r4 | ||
1790 | or ZERO, ZERO, r2 | ||
1791 | |||
1792 | ___put_user_asm_w_exit: | ||
1793 | ptabs LINK, tr0 | ||
1794 | blink tr0, ZERO | ||
1795 | |||
1796 | |||
1797 | .global __put_user_asm_l | ||
1798 | __put_user_asm_l: | ||
1799 | ld.l r2, 0, r4 /* r4 = data */ | ||
1800 | movi -(EFAULT), r2 /* r2 = reply, no real fixup */ | ||
1801 | |||
1802 | ___put_user_asm_l1: | ||
1803 | st.l r3, 0, r4 | ||
1804 | or ZERO, ZERO, r2 | ||
1805 | |||
1806 | ___put_user_asm_l_exit: | ||
1807 | ptabs LINK, tr0 | ||
1808 | blink tr0, ZERO | ||
1809 | |||
1810 | |||
1811 | .global __put_user_asm_q | ||
1812 | __put_user_asm_q: | ||
1813 | ld.q r2, 0, r4 /* r4 = data */ | ||
1814 | movi -(EFAULT), r2 /* r2 = reply, no real fixup */ | ||
1815 | |||
1816 | ___put_user_asm_q1: | ||
1817 | st.q r3, 0, r4 | ||
1818 | or ZERO, ZERO, r2 | ||
1819 | |||
1820 | ___put_user_asm_q_exit: | ||
1821 | ptabs LINK, tr0 | ||
1822 | blink tr0, ZERO | ||
1823 | |||
1824 | panic_stash_regs: | ||
1825 | /* The idea is : when we get an unhandled panic, we dump the registers | ||
1826 | to a known memory location, the just sit in a tight loop. | ||
1827 | This allows the human to look at the memory region through the GDB | ||
1828 | session (assuming the debug module's SHwy initiator isn't locked up | ||
1829 | or anything), to hopefully analyze the cause of the panic. */ | ||
1830 | |||
1831 | /* On entry, former r15 (SP) is in DCR | ||
1832 | former r0 is at resvec_saved_area + 0 | ||
1833 | former r1 is at resvec_saved_area + 8 | ||
1834 | former tr0 is at resvec_saved_area + 32 | ||
1835 | DCR is the only register whose value is lost altogether. | ||
1836 | */ | ||
1837 | |||
1838 | movi 0xffffffff80000000, r0 ! phy of dump area | ||
1839 | ld.q SP, 0x000, r1 ! former r0 | ||
1840 | st.q r0, 0x000, r1 | ||
1841 | ld.q SP, 0x008, r1 ! former r1 | ||
1842 | st.q r0, 0x008, r1 | ||
1843 | st.q r0, 0x010, r2 | ||
1844 | st.q r0, 0x018, r3 | ||
1845 | st.q r0, 0x020, r4 | ||
1846 | st.q r0, 0x028, r5 | ||
1847 | st.q r0, 0x030, r6 | ||
1848 | st.q r0, 0x038, r7 | ||
1849 | st.q r0, 0x040, r8 | ||
1850 | st.q r0, 0x048, r9 | ||
1851 | st.q r0, 0x050, r10 | ||
1852 | st.q r0, 0x058, r11 | ||
1853 | st.q r0, 0x060, r12 | ||
1854 | st.q r0, 0x068, r13 | ||
1855 | st.q r0, 0x070, r14 | ||
1856 | getcon dcr, r14 | ||
1857 | st.q r0, 0x078, r14 | ||
1858 | st.q r0, 0x080, r16 | ||
1859 | st.q r0, 0x088, r17 | ||
1860 | st.q r0, 0x090, r18 | ||
1861 | st.q r0, 0x098, r19 | ||
1862 | st.q r0, 0x0a0, r20 | ||
1863 | st.q r0, 0x0a8, r21 | ||
1864 | st.q r0, 0x0b0, r22 | ||
1865 | st.q r0, 0x0b8, r23 | ||
1866 | st.q r0, 0x0c0, r24 | ||
1867 | st.q r0, 0x0c8, r25 | ||
1868 | st.q r0, 0x0d0, r26 | ||
1869 | st.q r0, 0x0d8, r27 | ||
1870 | st.q r0, 0x0e0, r28 | ||
1871 | st.q r0, 0x0e8, r29 | ||
1872 | st.q r0, 0x0f0, r30 | ||
1873 | st.q r0, 0x0f8, r31 | ||
1874 | st.q r0, 0x100, r32 | ||
1875 | st.q r0, 0x108, r33 | ||
1876 | st.q r0, 0x110, r34 | ||
1877 | st.q r0, 0x118, r35 | ||
1878 | st.q r0, 0x120, r36 | ||
1879 | st.q r0, 0x128, r37 | ||
1880 | st.q r0, 0x130, r38 | ||
1881 | st.q r0, 0x138, r39 | ||
1882 | st.q r0, 0x140, r40 | ||
1883 | st.q r0, 0x148, r41 | ||
1884 | st.q r0, 0x150, r42 | ||
1885 | st.q r0, 0x158, r43 | ||
1886 | st.q r0, 0x160, r44 | ||
1887 | st.q r0, 0x168, r45 | ||
1888 | st.q r0, 0x170, r46 | ||
1889 | st.q r0, 0x178, r47 | ||
1890 | st.q r0, 0x180, r48 | ||
1891 | st.q r0, 0x188, r49 | ||
1892 | st.q r0, 0x190, r50 | ||
1893 | st.q r0, 0x198, r51 | ||
1894 | st.q r0, 0x1a0, r52 | ||
1895 | st.q r0, 0x1a8, r53 | ||
1896 | st.q r0, 0x1b0, r54 | ||
1897 | st.q r0, 0x1b8, r55 | ||
1898 | st.q r0, 0x1c0, r56 | ||
1899 | st.q r0, 0x1c8, r57 | ||
1900 | st.q r0, 0x1d0, r58 | ||
1901 | st.q r0, 0x1d8, r59 | ||
1902 | st.q r0, 0x1e0, r60 | ||
1903 | st.q r0, 0x1e8, r61 | ||
1904 | st.q r0, 0x1f0, r62 | ||
1905 | st.q r0, 0x1f8, r63 ! bogus, but for consistency's sake... | ||
1906 | |||
1907 | ld.q SP, 0x020, r1 ! former tr0 | ||
1908 | st.q r0, 0x200, r1 | ||
1909 | gettr tr1, r1 | ||
1910 | st.q r0, 0x208, r1 | ||
1911 | gettr tr2, r1 | ||
1912 | st.q r0, 0x210, r1 | ||
1913 | gettr tr3, r1 | ||
1914 | st.q r0, 0x218, r1 | ||
1915 | gettr tr4, r1 | ||
1916 | st.q r0, 0x220, r1 | ||
1917 | gettr tr5, r1 | ||
1918 | st.q r0, 0x228, r1 | ||
1919 | gettr tr6, r1 | ||
1920 | st.q r0, 0x230, r1 | ||
1921 | gettr tr7, r1 | ||
1922 | st.q r0, 0x238, r1 | ||
1923 | |||
1924 | getcon sr, r1 | ||
1925 | getcon ssr, r2 | ||
1926 | getcon pssr, r3 | ||
1927 | getcon spc, r4 | ||
1928 | getcon pspc, r5 | ||
1929 | getcon intevt, r6 | ||
1930 | getcon expevt, r7 | ||
1931 | getcon pexpevt, r8 | ||
1932 | getcon tra, r9 | ||
1933 | getcon tea, r10 | ||
1934 | getcon kcr0, r11 | ||
1935 | getcon kcr1, r12 | ||
1936 | getcon vbr, r13 | ||
1937 | getcon resvec, r14 | ||
1938 | |||
1939 | st.q r0, 0x240, r1 | ||
1940 | st.q r0, 0x248, r2 | ||
1941 | st.q r0, 0x250, r3 | ||
1942 | st.q r0, 0x258, r4 | ||
1943 | st.q r0, 0x260, r5 | ||
1944 | st.q r0, 0x268, r6 | ||
1945 | st.q r0, 0x270, r7 | ||
1946 | st.q r0, 0x278, r8 | ||
1947 | st.q r0, 0x280, r9 | ||
1948 | st.q r0, 0x288, r10 | ||
1949 | st.q r0, 0x290, r11 | ||
1950 | st.q r0, 0x298, r12 | ||
1951 | st.q r0, 0x2a0, r13 | ||
1952 | st.q r0, 0x2a8, r14 | ||
1953 | |||
1954 | getcon SPC,r2 | ||
1955 | getcon SSR,r3 | ||
1956 | getcon EXPEVT,r4 | ||
1957 | /* Prepare to jump to C - physical address */ | ||
1958 | movi panic_handler-CONFIG_PAGE_OFFSET, r1 | ||
1959 | ori r1, 1, r1 | ||
1960 | ptabs r1, tr0 | ||
1961 | getcon DCR, SP | ||
1962 | blink tr0, ZERO | ||
1963 | nop | ||
1964 | nop | ||
1965 | nop | ||
1966 | nop | ||
1967 | |||
1968 | |||
1969 | |||
1970 | |||
1971 | /* | ||
1972 | * --- Signal Handling Section | ||
1973 | */ | ||
1974 | |||
1975 | /* | ||
1976 | * extern long long _sa_default_rt_restorer | ||
1977 | * extern long long _sa_default_restorer | ||
1978 | * | ||
1979 | * or, better, | ||
1980 | * | ||
1981 | * extern void _sa_default_rt_restorer(void) | ||
1982 | * extern void _sa_default_restorer(void) | ||
1983 | * | ||
1984 | * Code prototypes to do a sys_rt_sigreturn() or sys_sysreturn() | ||
1985 | * from user space. Copied into user space by signal management. | ||
1986 | * Both must be quad aligned and 2 quad long (4 instructions). | ||
1987 | * | ||
1988 | */ | ||
1989 | .balign 8 | ||
1990 | .global sa_default_rt_restorer | ||
1991 | sa_default_rt_restorer: | ||
1992 | movi 0x10, r9 | ||
1993 | shori __NR_rt_sigreturn, r9 | ||
1994 | trapa r9 | ||
1995 | nop | ||
1996 | |||
1997 | .balign 8 | ||
1998 | .global sa_default_restorer | ||
1999 | sa_default_restorer: | ||
2000 | movi 0x10, r9 | ||
2001 | shori __NR_sigreturn, r9 | ||
2002 | trapa r9 | ||
2003 | nop | ||
2004 | |||
2005 | /* | ||
2006 | * --- __ex_table Section | ||
2007 | */ | ||
2008 | |||
2009 | /* | ||
2010 | * User Access Exception Table. | ||
2011 | */ | ||
2012 | .section __ex_table, "a" | ||
2013 | |||
2014 | .global asm_uaccess_start /* Just a marker */ | ||
2015 | asm_uaccess_start: | ||
2016 | |||
2017 | .long ___copy_user1, ___copy_user_exit | ||
2018 | .long ___copy_user2, ___copy_user_exit | ||
2019 | .long ___clear_user1, ___clear_user_exit | ||
2020 | .long ___strncpy_from_user1, ___strncpy_from_user_exit | ||
2021 | .long ___strnlen_user1, ___strnlen_user_exit | ||
2022 | .long ___get_user_asm_b1, ___get_user_asm_b_exit | ||
2023 | .long ___get_user_asm_w1, ___get_user_asm_w_exit | ||
2024 | .long ___get_user_asm_l1, ___get_user_asm_l_exit | ||
2025 | .long ___get_user_asm_q1, ___get_user_asm_q_exit | ||
2026 | .long ___put_user_asm_b1, ___put_user_asm_b_exit | ||
2027 | .long ___put_user_asm_w1, ___put_user_asm_w_exit | ||
2028 | .long ___put_user_asm_l1, ___put_user_asm_l_exit | ||
2029 | .long ___put_user_asm_q1, ___put_user_asm_q_exit | ||
2030 | |||
2031 | .global asm_uaccess_end /* Just a marker */ | ||
2032 | asm_uaccess_end: | ||
2033 | |||
2034 | |||
2035 | |||
2036 | |||
2037 | /* | ||
2038 | * --- .text.init Section | ||
2039 | */ | ||
2040 | |||
2041 | .section .text.init, "ax" | ||
2042 | |||
2043 | /* | ||
2044 | * void trap_init (void) | ||
2045 | * | ||
2046 | */ | ||
2047 | .global trap_init | ||
2048 | trap_init: | ||
2049 | addi SP, -24, SP /* Room to save r28/r29/r30 */ | ||
2050 | st.q SP, 0, r28 | ||
2051 | st.q SP, 8, r29 | ||
2052 | st.q SP, 16, r30 | ||
2053 | |||
2054 | /* Set VBR and RESVEC */ | ||
2055 | movi LVBR_block, r19 | ||
2056 | andi r19, -4, r19 /* reset MMUOFF + reserved */ | ||
2057 | /* For RESVEC exceptions we force the MMU off, which means we need the | ||
2058 | physical address. */ | ||
2059 | movi LRESVEC_block-CONFIG_PAGE_OFFSET, r20 | ||
2060 | andi r20, -4, r20 /* reset reserved */ | ||
2061 | ori r20, 1, r20 /* set MMUOFF */ | ||
2062 | putcon r19, VBR | ||
2063 | putcon r20, RESVEC | ||
2064 | |||
2065 | /* Sanity check */ | ||
2066 | movi LVBR_block_end, r21 | ||
2067 | andi r21, -4, r21 | ||
2068 | movi BLOCK_SIZE, r29 /* r29 = expected size */ | ||
2069 | or r19, ZERO, r30 | ||
2070 | add r19, r29, r19 | ||
2071 | |||
2072 | /* | ||
2073 | * Ugly, but better loop forever now than crash afterwards. | ||
2074 | * We should print a message, but if we touch LVBR or | ||
2075 | * LRESVEC blocks we should not be surprised if we get stuck | ||
2076 | * in trap_init(). | ||
2077 | */ | ||
2078 | pta trap_init_loop, tr1 | ||
2079 | gettr tr1, r28 /* r28 = trap_init_loop */ | ||
2080 | sub r21, r30, r30 /* r30 = actual size */ | ||
2081 | |||
2082 | /* | ||
2083 | * VBR/RESVEC handlers overlap by being bigger than | ||
2084 | * allowed. Very bad. Just loop forever. | ||
2085 | * (r28) panic/loop address | ||
2086 | * (r29) expected size | ||
2087 | * (r30) actual size | ||
2088 | */ | ||
2089 | trap_init_loop: | ||
2090 | bne r19, r21, tr1 | ||
2091 | |||
2092 | /* Now that exception vectors are set up reset SR.BL */ | ||
2093 | getcon SR, r22 | ||
2094 | movi SR_UNBLOCK_EXC, r23 | ||
2095 | and r22, r23, r22 | ||
2096 | putcon r22, SR | ||
2097 | |||
2098 | addi SP, 24, SP | ||
2099 | ptabs LINK, tr0 | ||
2100 | blink tr0, ZERO | ||
2101 | |||
diff --git a/arch/sh/kernel/cpu/sh5/fpu.c b/arch/sh/kernel/cpu/sh5/fpu.c new file mode 100644 index 000000000000..30b76a94abf2 --- /dev/null +++ b/arch/sh/kernel/cpu/sh5/fpu.c | |||
@@ -0,0 +1,166 @@ | |||
1 | /* | ||
2 | * arch/sh/kernel/cpu/sh5/fpu.c | ||
3 | * | ||
4 | * Copyright (C) 2001 Manuela Cirronis, Paolo Alberelli | ||
5 | * Copyright (C) 2002 STMicroelectronics Limited | ||
6 | * Author : Stuart Menefy | ||
7 | * | ||
8 | * Started from SH4 version: | ||
9 | * Copyright (C) 1999, 2000 Kaz Kojima & Niibe Yutaka | ||
10 | * | ||
11 | * This file is subject to the terms and conditions of the GNU General Public | ||
12 | * License. See the file "COPYING" in the main directory of this archive | ||
13 | * for more details. | ||
14 | */ | ||
15 | #include <linux/sched.h> | ||
16 | #include <linux/signal.h> | ||
17 | #include <asm/processor.h> | ||
18 | #include <asm/user.h> | ||
19 | #include <asm/io.h> | ||
20 | |||
21 | /* | ||
22 | * Initially load the FPU with signalling NANS. This bit pattern | ||
23 | * has the property that no matter whether considered as single or as | ||
24 | * double precision, it still represents a signalling NAN. | ||
25 | */ | ||
26 | #define sNAN64 0xFFFFFFFFFFFFFFFFULL | ||
27 | #define sNAN32 0xFFFFFFFFUL | ||
28 | |||
29 | static union sh_fpu_union init_fpuregs = { | ||
30 | .hard = { | ||
31 | .fp_regs = { [0 ... 63] = sNAN32 }, | ||
32 | .fpscr = FPSCR_INIT | ||
33 | } | ||
34 | }; | ||
35 | |||
36 | void save_fpu(struct task_struct *tsk, struct pt_regs *regs) | ||
37 | { | ||
38 | asm volatile("fst.p %0, (0*8), fp0\n\t" | ||
39 | "fst.p %0, (1*8), fp2\n\t" | ||
40 | "fst.p %0, (2*8), fp4\n\t" | ||
41 | "fst.p %0, (3*8), fp6\n\t" | ||
42 | "fst.p %0, (4*8), fp8\n\t" | ||
43 | "fst.p %0, (5*8), fp10\n\t" | ||
44 | "fst.p %0, (6*8), fp12\n\t" | ||
45 | "fst.p %0, (7*8), fp14\n\t" | ||
46 | "fst.p %0, (8*8), fp16\n\t" | ||
47 | "fst.p %0, (9*8), fp18\n\t" | ||
48 | "fst.p %0, (10*8), fp20\n\t" | ||
49 | "fst.p %0, (11*8), fp22\n\t" | ||
50 | "fst.p %0, (12*8), fp24\n\t" | ||
51 | "fst.p %0, (13*8), fp26\n\t" | ||
52 | "fst.p %0, (14*8), fp28\n\t" | ||
53 | "fst.p %0, (15*8), fp30\n\t" | ||
54 | "fst.p %0, (16*8), fp32\n\t" | ||
55 | "fst.p %0, (17*8), fp34\n\t" | ||
56 | "fst.p %0, (18*8), fp36\n\t" | ||
57 | "fst.p %0, (19*8), fp38\n\t" | ||
58 | "fst.p %0, (20*8), fp40\n\t" | ||
59 | "fst.p %0, (21*8), fp42\n\t" | ||
60 | "fst.p %0, (22*8), fp44\n\t" | ||
61 | "fst.p %0, (23*8), fp46\n\t" | ||
62 | "fst.p %0, (24*8), fp48\n\t" | ||
63 | "fst.p %0, (25*8), fp50\n\t" | ||
64 | "fst.p %0, (26*8), fp52\n\t" | ||
65 | "fst.p %0, (27*8), fp54\n\t" | ||
66 | "fst.p %0, (28*8), fp56\n\t" | ||
67 | "fst.p %0, (29*8), fp58\n\t" | ||
68 | "fst.p %0, (30*8), fp60\n\t" | ||
69 | "fst.p %0, (31*8), fp62\n\t" | ||
70 | |||
71 | "fgetscr fr63\n\t" | ||
72 | "fst.s %0, (32*8), fr63\n\t" | ||
73 | : /* no output */ | ||
74 | : "r" (&tsk->thread.fpu.hard) | ||
75 | : "memory"); | ||
76 | } | ||
77 | |||
78 | static inline void | ||
79 | fpload(struct sh_fpu_hard_struct *fpregs) | ||
80 | { | ||
81 | asm volatile("fld.p %0, (0*8), fp0\n\t" | ||
82 | "fld.p %0, (1*8), fp2\n\t" | ||
83 | "fld.p %0, (2*8), fp4\n\t" | ||
84 | "fld.p %0, (3*8), fp6\n\t" | ||
85 | "fld.p %0, (4*8), fp8\n\t" | ||
86 | "fld.p %0, (5*8), fp10\n\t" | ||
87 | "fld.p %0, (6*8), fp12\n\t" | ||
88 | "fld.p %0, (7*8), fp14\n\t" | ||
89 | "fld.p %0, (8*8), fp16\n\t" | ||
90 | "fld.p %0, (9*8), fp18\n\t" | ||
91 | "fld.p %0, (10*8), fp20\n\t" | ||
92 | "fld.p %0, (11*8), fp22\n\t" | ||
93 | "fld.p %0, (12*8), fp24\n\t" | ||
94 | "fld.p %0, (13*8), fp26\n\t" | ||
95 | "fld.p %0, (14*8), fp28\n\t" | ||
96 | "fld.p %0, (15*8), fp30\n\t" | ||
97 | "fld.p %0, (16*8), fp32\n\t" | ||
98 | "fld.p %0, (17*8), fp34\n\t" | ||
99 | "fld.p %0, (18*8), fp36\n\t" | ||
100 | "fld.p %0, (19*8), fp38\n\t" | ||
101 | "fld.p %0, (20*8), fp40\n\t" | ||
102 | "fld.p %0, (21*8), fp42\n\t" | ||
103 | "fld.p %0, (22*8), fp44\n\t" | ||
104 | "fld.p %0, (23*8), fp46\n\t" | ||
105 | "fld.p %0, (24*8), fp48\n\t" | ||
106 | "fld.p %0, (25*8), fp50\n\t" | ||
107 | "fld.p %0, (26*8), fp52\n\t" | ||
108 | "fld.p %0, (27*8), fp54\n\t" | ||
109 | "fld.p %0, (28*8), fp56\n\t" | ||
110 | "fld.p %0, (29*8), fp58\n\t" | ||
111 | "fld.p %0, (30*8), fp60\n\t" | ||
112 | |||
113 | "fld.s %0, (32*8), fr63\n\t" | ||
114 | "fputscr fr63\n\t" | ||
115 | |||
116 | "fld.p %0, (31*8), fp62\n\t" | ||
117 | : /* no output */ | ||
118 | : "r" (fpregs) ); | ||
119 | } | ||
120 | |||
121 | void fpinit(struct sh_fpu_hard_struct *fpregs) | ||
122 | { | ||
123 | *fpregs = init_fpuregs.hard; | ||
124 | } | ||
125 | |||
126 | asmlinkage void | ||
127 | do_fpu_error(unsigned long ex, struct pt_regs *regs) | ||
128 | { | ||
129 | struct task_struct *tsk = current; | ||
130 | |||
131 | regs->pc += 4; | ||
132 | |||
133 | tsk->thread.trap_no = 11; | ||
134 | tsk->thread.error_code = 0; | ||
135 | force_sig(SIGFPE, tsk); | ||
136 | } | ||
137 | |||
138 | |||
139 | asmlinkage void | ||
140 | do_fpu_state_restore(unsigned long ex, struct pt_regs *regs) | ||
141 | { | ||
142 | void die(const char *str, struct pt_regs *regs, long err); | ||
143 | |||
144 | if (! user_mode(regs)) | ||
145 | die("FPU used in kernel", regs, ex); | ||
146 | |||
147 | regs->sr &= ~SR_FD; | ||
148 | |||
149 | if (last_task_used_math == current) | ||
150 | return; | ||
151 | |||
152 | enable_fpu(); | ||
153 | if (last_task_used_math != NULL) | ||
154 | /* Other processes fpu state, save away */ | ||
155 | save_fpu(last_task_used_math, regs); | ||
156 | |||
157 | last_task_used_math = current; | ||
158 | if (used_math()) { | ||
159 | fpload(¤t->thread.fpu.hard); | ||
160 | } else { | ||
161 | /* First time FPU user. */ | ||
162 | fpload(&init_fpuregs.hard); | ||
163 | set_used_math(); | ||
164 | } | ||
165 | disable_fpu(); | ||
166 | } | ||
diff --git a/arch/sh/kernel/cpu/sh5/probe.c b/arch/sh/kernel/cpu/sh5/probe.c new file mode 100644 index 000000000000..15d167fd0ae7 --- /dev/null +++ b/arch/sh/kernel/cpu/sh5/probe.c | |||
@@ -0,0 +1,76 @@ | |||
1 | /* | ||
2 | * arch/sh/kernel/cpu/sh5/probe.c | ||
3 | * | ||
4 | * CPU Subtype Probing for SH-5. | ||
5 | * | ||
6 | * Copyright (C) 2000, 2001 Paolo Alberelli | ||
7 | * Copyright (C) 2003 - 2007 Paul Mundt | ||
8 | * | ||
9 | * This file is subject to the terms and conditions of the GNU General Public | ||
10 | * License. See the file "COPYING" in the main directory of this archive | ||
11 | * for more details. | ||
12 | */ | ||
13 | #include <linux/init.h> | ||
14 | #include <linux/io.h> | ||
15 | #include <linux/string.h> | ||
16 | #include <asm/processor.h> | ||
17 | #include <asm/cache.h> | ||
18 | |||
19 | int __init detect_cpu_and_cache_system(void) | ||
20 | { | ||
21 | unsigned long long cir; | ||
22 | |||
23 | /* Do peeks in real mode to avoid having to set up a mapping for the | ||
24 | WPC registers. On SH5-101 cut2, such a mapping would be exposed to | ||
25 | an address translation erratum which would make it hard to set up | ||
26 | correctly. */ | ||
27 | cir = peek_real_address_q(0x0d000008); | ||
28 | if ((cir & 0xffff) == 0x5103) { | ||
29 | boot_cpu_data.type = CPU_SH5_103; | ||
30 | } else if (((cir >> 32) & 0xffff) == 0x51e2) { | ||
31 | /* CPU.VCR aliased at CIR address on SH5-101 */ | ||
32 | boot_cpu_data.type = CPU_SH5_101; | ||
33 | } else { | ||
34 | boot_cpu_data.type = CPU_SH_NONE; | ||
35 | } | ||
36 | |||
37 | /* | ||
38 | * First, setup some sane values for the I-cache. | ||
39 | */ | ||
40 | boot_cpu_data.icache.ways = 4; | ||
41 | boot_cpu_data.icache.sets = 256; | ||
42 | boot_cpu_data.icache.linesz = L1_CACHE_BYTES; | ||
43 | |||
44 | #if 0 | ||
45 | /* | ||
46 | * FIXME: This can probably be cleaned up a bit as well.. for example, | ||
47 | * do we really need the way shift _and_ the way_step_shift ?? Judging | ||
48 | * by the existing code, I would guess no.. is there any valid reason | ||
49 | * why we need to be tracking this around? | ||
50 | */ | ||
51 | boot_cpu_data.icache.way_shift = 13; | ||
52 | boot_cpu_data.icache.entry_shift = 5; | ||
53 | boot_cpu_data.icache.set_shift = 4; | ||
54 | boot_cpu_data.icache.way_step_shift = 16; | ||
55 | boot_cpu_data.icache.asid_shift = 2; | ||
56 | |||
57 | /* | ||
58 | * way offset = cache size / associativity, so just don't factor in | ||
59 | * associativity in the first place.. | ||
60 | */ | ||
61 | boot_cpu_data.icache.way_ofs = boot_cpu_data.icache.sets * | ||
62 | boot_cpu_data.icache.linesz; | ||
63 | |||
64 | boot_cpu_data.icache.asid_mask = 0x3fc; | ||
65 | boot_cpu_data.icache.idx_mask = 0x1fe0; | ||
66 | boot_cpu_data.icache.epn_mask = 0xffffe000; | ||
67 | #endif | ||
68 | |||
69 | boot_cpu_data.icache.flags = 0; | ||
70 | |||
71 | /* A trivial starting point.. */ | ||
72 | memcpy(&boot_cpu_data.dcache, | ||
73 | &boot_cpu_data.icache, sizeof(struct cache_info)); | ||
74 | |||
75 | return 0; | ||
76 | } | ||
diff --git a/arch/sh/kernel/cpu/sh5/switchto.S b/arch/sh/kernel/cpu/sh5/switchto.S new file mode 100644 index 000000000000..45c351b0f1ba --- /dev/null +++ b/arch/sh/kernel/cpu/sh5/switchto.S | |||
@@ -0,0 +1,198 @@ | |||
1 | /* | ||
2 | * arch/sh/kernel/cpu/sh5/switchto.S | ||
3 | * | ||
4 | * sh64 context switch | ||
5 | * | ||
6 | * Copyright (C) 2004 Richard Curnow | ||
7 | * | ||
8 | * This file is subject to the terms and conditions of the GNU General Public | ||
9 | * License. See the file "COPYING" in the main directory of this archive | ||
10 | * for more details. | ||
11 | */ | ||
12 | |||
13 | .section .text..SHmedia32,"ax" | ||
14 | .little | ||
15 | |||
16 | .balign 32 | ||
17 | |||
18 | .type sh64_switch_to,@function | ||
19 | .global sh64_switch_to | ||
20 | .global __sh64_switch_to_end | ||
21 | sh64_switch_to: | ||
22 | |||
23 | /* Incoming args | ||
24 | r2 - prev | ||
25 | r3 - &prev->thread | ||
26 | r4 - next | ||
27 | r5 - &next->thread | ||
28 | |||
29 | Outgoing results | ||
30 | r2 - last (=prev) : this just stays in r2 throughout | ||
31 | |||
32 | Want to create a full (struct pt_regs) on the stack to allow backtracing | ||
33 | functions to work. However, we only need to populate the callee-save | ||
34 | register slots in this structure; since we're a function our ancestors must | ||
35 | have themselves preserved all caller saved state in the stack. This saves | ||
36 | some wasted effort since we won't need to look at the values. | ||
37 | |||
38 | In particular, all caller-save registers are immediately available for | ||
39 | scratch use. | ||
40 | |||
41 | */ | ||
42 | |||
43 | #define FRAME_SIZE (76*8 + 8) | ||
44 | |||
45 | movi FRAME_SIZE, r0 | ||
46 | sub.l r15, r0, r15 | ||
47 | ! Do normal-style register save to support backtrace | ||
48 | |||
49 | st.l r15, 0, r18 ! save link reg | ||
50 | st.l r15, 4, r14 ! save fp | ||
51 | add.l r15, r63, r14 ! setup frame pointer | ||
52 | |||
53 | ! hopefully this looks normal to the backtrace now. | ||
54 | |||
55 | addi.l r15, 8, r1 ! base of pt_regs | ||
56 | addi.l r1, 24, r0 ! base of pt_regs.regs | ||
57 | addi.l r0, (63*8), r8 ! base of pt_regs.trregs | ||
58 | |||
59 | /* Note : to be fixed? | ||
60 | struct pt_regs is really designed for holding the state on entry | ||
61 | to an exception, i.e. pc,sr,regs etc. However, for the context | ||
62 | switch state, some of this is not required. But the unwinder takes | ||
63 | struct pt_regs * as an arg so we have to build this structure | ||
64 | to allow unwinding switched tasks in show_state() */ | ||
65 | |||
66 | st.q r0, ( 9*8), r9 | ||
67 | st.q r0, (10*8), r10 | ||
68 | st.q r0, (11*8), r11 | ||
69 | st.q r0, (12*8), r12 | ||
70 | st.q r0, (13*8), r13 | ||
71 | st.q r0, (14*8), r14 ! for unwind, want to look as though we took a trap at | ||
72 | ! the point where the process is left in suspended animation, i.e. current | ||
73 | ! fp here, not the saved one. | ||
74 | st.q r0, (16*8), r16 | ||
75 | |||
76 | st.q r0, (24*8), r24 | ||
77 | st.q r0, (25*8), r25 | ||
78 | st.q r0, (26*8), r26 | ||
79 | st.q r0, (27*8), r27 | ||
80 | st.q r0, (28*8), r28 | ||
81 | st.q r0, (29*8), r29 | ||
82 | st.q r0, (30*8), r30 | ||
83 | st.q r0, (31*8), r31 | ||
84 | st.q r0, (32*8), r32 | ||
85 | st.q r0, (33*8), r33 | ||
86 | st.q r0, (34*8), r34 | ||
87 | st.q r0, (35*8), r35 | ||
88 | |||
89 | st.q r0, (44*8), r44 | ||
90 | st.q r0, (45*8), r45 | ||
91 | st.q r0, (46*8), r46 | ||
92 | st.q r0, (47*8), r47 | ||
93 | st.q r0, (48*8), r48 | ||
94 | st.q r0, (49*8), r49 | ||
95 | st.q r0, (50*8), r50 | ||
96 | st.q r0, (51*8), r51 | ||
97 | st.q r0, (52*8), r52 | ||
98 | st.q r0, (53*8), r53 | ||
99 | st.q r0, (54*8), r54 | ||
100 | st.q r0, (55*8), r55 | ||
101 | st.q r0, (56*8), r56 | ||
102 | st.q r0, (57*8), r57 | ||
103 | st.q r0, (58*8), r58 | ||
104 | st.q r0, (59*8), r59 | ||
105 | |||
106 | ! do this early as pta->gettr has no pipeline forwarding (=> 5 cycle latency) | ||
107 | ! Use a local label to avoid creating a symbol that will confuse the ! | ||
108 | ! backtrace | ||
109 | pta .Lsave_pc, tr0 | ||
110 | |||
111 | gettr tr5, r45 | ||
112 | gettr tr6, r46 | ||
113 | gettr tr7, r47 | ||
114 | st.q r8, (5*8), r45 | ||
115 | st.q r8, (6*8), r46 | ||
116 | st.q r8, (7*8), r47 | ||
117 | |||
118 | ! Now switch context | ||
119 | gettr tr0, r9 | ||
120 | st.l r3, 0, r15 ! prev->thread.sp | ||
121 | st.l r3, 8, r1 ! prev->thread.kregs | ||
122 | st.l r3, 4, r9 ! prev->thread.pc | ||
123 | st.q r1, 0, r9 ! save prev->thread.pc into pt_regs->pc | ||
124 | |||
125 | ! Load PC for next task (init value or save_pc later) | ||
126 | ld.l r5, 4, r18 ! next->thread.pc | ||
127 | ! Switch stacks | ||
128 | ld.l r5, 0, r15 ! next->thread.sp | ||
129 | ptabs r18, tr0 | ||
130 | |||
131 | ! Update current | ||
132 | ld.l r4, 4, r9 ! next->thread_info (2nd element of next task_struct) | ||
133 | putcon r9, kcr0 ! current = next->thread_info | ||
134 | |||
135 | ! go to save_pc for a reschedule, or the initial thread.pc for a new process | ||
136 | blink tr0, r63 | ||
137 | |||
138 | ! Restore (when we come back to a previously saved task) | ||
139 | .Lsave_pc: | ||
140 | addi.l r15, 32, r0 ! r0 = next's regs | ||
141 | addi.l r0, (63*8), r8 ! r8 = next's tr_regs | ||
142 | |||
143 | ld.q r8, (5*8), r45 | ||
144 | ld.q r8, (6*8), r46 | ||
145 | ld.q r8, (7*8), r47 | ||
146 | ptabs r45, tr5 | ||
147 | ptabs r46, tr6 | ||
148 | ptabs r47, tr7 | ||
149 | |||
150 | ld.q r0, ( 9*8), r9 | ||
151 | ld.q r0, (10*8), r10 | ||
152 | ld.q r0, (11*8), r11 | ||
153 | ld.q r0, (12*8), r12 | ||
154 | ld.q r0, (13*8), r13 | ||
155 | ld.q r0, (14*8), r14 | ||
156 | ld.q r0, (16*8), r16 | ||
157 | |||
158 | ld.q r0, (24*8), r24 | ||
159 | ld.q r0, (25*8), r25 | ||
160 | ld.q r0, (26*8), r26 | ||
161 | ld.q r0, (27*8), r27 | ||
162 | ld.q r0, (28*8), r28 | ||
163 | ld.q r0, (29*8), r29 | ||
164 | ld.q r0, (30*8), r30 | ||
165 | ld.q r0, (31*8), r31 | ||
166 | ld.q r0, (32*8), r32 | ||
167 | ld.q r0, (33*8), r33 | ||
168 | ld.q r0, (34*8), r34 | ||
169 | ld.q r0, (35*8), r35 | ||
170 | |||
171 | ld.q r0, (44*8), r44 | ||
172 | ld.q r0, (45*8), r45 | ||
173 | ld.q r0, (46*8), r46 | ||
174 | ld.q r0, (47*8), r47 | ||
175 | ld.q r0, (48*8), r48 | ||
176 | ld.q r0, (49*8), r49 | ||
177 | ld.q r0, (50*8), r50 | ||
178 | ld.q r0, (51*8), r51 | ||
179 | ld.q r0, (52*8), r52 | ||
180 | ld.q r0, (53*8), r53 | ||
181 | ld.q r0, (54*8), r54 | ||
182 | ld.q r0, (55*8), r55 | ||
183 | ld.q r0, (56*8), r56 | ||
184 | ld.q r0, (57*8), r57 | ||
185 | ld.q r0, (58*8), r58 | ||
186 | ld.q r0, (59*8), r59 | ||
187 | |||
188 | ! epilogue | ||
189 | ld.l r15, 0, r18 | ||
190 | ld.l r15, 4, r14 | ||
191 | ptabs r18, tr0 | ||
192 | movi FRAME_SIZE, r0 | ||
193 | add r15, r0, r15 | ||
194 | blink tr0, r63 | ||
195 | __sh64_switch_to_end: | ||
196 | .LFE1: | ||
197 | .size sh64_switch_to,.LFE1-sh64_switch_to | ||
198 | |||
diff --git a/arch/sh/kernel/cpu/sh5/unwind.c b/arch/sh/kernel/cpu/sh5/unwind.c new file mode 100644 index 000000000000..119c20afd4e5 --- /dev/null +++ b/arch/sh/kernel/cpu/sh5/unwind.c | |||
@@ -0,0 +1,326 @@ | |||
1 | /* | ||
2 | * arch/sh/kernel/cpu/sh5/unwind.c | ||
3 | * | ||
4 | * Copyright (C) 2004 Paul Mundt | ||
5 | * Copyright (C) 2004 Richard Curnow | ||
6 | * | ||
7 | * This file is subject to the terms and conditions of the GNU General Public | ||
8 | * License. See the file "COPYING" in the main directory of this archive | ||
9 | * for more details. | ||
10 | */ | ||
11 | #include <linux/kallsyms.h> | ||
12 | #include <linux/kernel.h> | ||
13 | #include <linux/types.h> | ||
14 | #include <linux/errno.h> | ||
15 | #include <asm/page.h> | ||
16 | #include <asm/ptrace.h> | ||
17 | #include <asm/processor.h> | ||
18 | #include <asm/io.h> | ||
19 | |||
20 | static u8 regcache[63]; | ||
21 | |||
22 | /* | ||
23 | * Finding the previous stack frame isn't horribly straightforward as it is | ||
24 | * on some other platforms. In the sh64 case, we don't have "linked" stack | ||
25 | * frames, so we need to do a bit of work to determine the previous frame, | ||
26 | * and in turn, the previous r14/r18 pair. | ||
27 | * | ||
28 | * There are generally a few cases which determine where we can find out | ||
29 | * the r14/r18 values. In the general case, this can be determined by poking | ||
30 | * around the prologue of the symbol PC is in (note that we absolutely must | ||
31 | * have frame pointer support as well as the kernel symbol table mapped, | ||
32 | * otherwise we can't even get this far). | ||
33 | * | ||
34 | * In other cases, such as the interrupt/exception path, we can poke around | ||
35 | * the sp/fp. | ||
36 | * | ||
37 | * Notably, this entire approach is somewhat error prone, and in the event | ||
38 | * that the previous frame cannot be determined, that's all we can do. | ||
39 | * Either way, this still leaves us with a more correct backtrace then what | ||
40 | * we would be able to come up with by walking the stack (which is garbage | ||
41 | * for anything beyond the first frame). | ||
42 | * -- PFM. | ||
43 | */ | ||
44 | static int lookup_prev_stack_frame(unsigned long fp, unsigned long pc, | ||
45 | unsigned long *pprev_fp, unsigned long *pprev_pc, | ||
46 | struct pt_regs *regs) | ||
47 | { | ||
48 | const char *sym; | ||
49 | char namebuf[128]; | ||
50 | unsigned long offset; | ||
51 | unsigned long prologue = 0; | ||
52 | unsigned long fp_displacement = 0; | ||
53 | unsigned long fp_prev = 0; | ||
54 | unsigned long offset_r14 = 0, offset_r18 = 0; | ||
55 | int i, found_prologue_end = 0; | ||
56 | |||
57 | sym = kallsyms_lookup(pc, NULL, &offset, NULL, namebuf); | ||
58 | if (!sym) | ||
59 | return -EINVAL; | ||
60 | |||
61 | prologue = pc - offset; | ||
62 | if (!prologue) | ||
63 | return -EINVAL; | ||
64 | |||
65 | /* Validate fp, to avoid risk of dereferencing a bad pointer later. | ||
66 | Assume 128Mb since that's the amount of RAM on a Cayman. Modify | ||
67 | when there is an SH-5 board with more. */ | ||
68 | if ((fp < (unsigned long) phys_to_virt(__MEMORY_START)) || | ||
69 | (fp >= (unsigned long)(phys_to_virt(__MEMORY_START)) + 128*1024*1024) || | ||
70 | ((fp & 7) != 0)) { | ||
71 | return -EINVAL; | ||
72 | } | ||
73 | |||
74 | /* | ||
75 | * Depth to walk, depth is completely arbitrary. | ||
76 | */ | ||
77 | for (i = 0; i < 100; i++, prologue += sizeof(unsigned long)) { | ||
78 | unsigned long op; | ||
79 | u8 major, minor; | ||
80 | u8 src, dest, disp; | ||
81 | |||
82 | op = *(unsigned long *)prologue; | ||
83 | |||
84 | major = (op >> 26) & 0x3f; | ||
85 | src = (op >> 20) & 0x3f; | ||
86 | minor = (op >> 16) & 0xf; | ||
87 | disp = (op >> 10) & 0x3f; | ||
88 | dest = (op >> 4) & 0x3f; | ||
89 | |||
90 | /* | ||
91 | * Stack frame creation happens in a number of ways.. in the | ||
92 | * general case when the stack frame is less than 511 bytes, | ||
93 | * it's generally created by an addi or addi.l: | ||
94 | * | ||
95 | * addi/addi.l r15, -FRAME_SIZE, r15 | ||
96 | * | ||
97 | * in the event that the frame size is bigger than this, it's | ||
98 | * typically created using a movi/sub pair as follows: | ||
99 | * | ||
100 | * movi FRAME_SIZE, rX | ||
101 | * sub r15, rX, r15 | ||
102 | */ | ||
103 | |||
104 | switch (major) { | ||
105 | case (0x00 >> 2): | ||
106 | switch (minor) { | ||
107 | case 0x8: /* add.l */ | ||
108 | case 0x9: /* add */ | ||
109 | /* Look for r15, r63, r14 */ | ||
110 | if (src == 15 && disp == 63 && dest == 14) | ||
111 | found_prologue_end = 1; | ||
112 | |||
113 | break; | ||
114 | case 0xa: /* sub.l */ | ||
115 | case 0xb: /* sub */ | ||
116 | if (src != 15 || dest != 15) | ||
117 | continue; | ||
118 | |||
119 | fp_displacement -= regcache[disp]; | ||
120 | fp_prev = fp - fp_displacement; | ||
121 | break; | ||
122 | } | ||
123 | break; | ||
124 | case (0xa8 >> 2): /* st.l */ | ||
125 | if (src != 15) | ||
126 | continue; | ||
127 | |||
128 | switch (dest) { | ||
129 | case 14: | ||
130 | if (offset_r14 || fp_displacement == 0) | ||
131 | continue; | ||
132 | |||
133 | offset_r14 = (u64)(((((s64)op >> 10) & 0x3ff) << 54) >> 54); | ||
134 | offset_r14 *= sizeof(unsigned long); | ||
135 | offset_r14 += fp_displacement; | ||
136 | break; | ||
137 | case 18: | ||
138 | if (offset_r18 || fp_displacement == 0) | ||
139 | continue; | ||
140 | |||
141 | offset_r18 = (u64)(((((s64)op >> 10) & 0x3ff) << 54) >> 54); | ||
142 | offset_r18 *= sizeof(unsigned long); | ||
143 | offset_r18 += fp_displacement; | ||
144 | break; | ||
145 | } | ||
146 | |||
147 | break; | ||
148 | case (0xcc >> 2): /* movi */ | ||
149 | if (dest >= 63) { | ||
150 | printk(KERN_NOTICE "%s: Invalid dest reg %d " | ||
151 | "specified in movi handler. Failed " | ||
152 | "opcode was 0x%lx: ", __FUNCTION__, | ||
153 | dest, op); | ||
154 | |||
155 | continue; | ||
156 | } | ||
157 | |||
158 | /* Sign extend */ | ||
159 | regcache[dest] = | ||
160 | ((((s64)(u64)op >> 10) & 0xffff) << 54) >> 54; | ||
161 | break; | ||
162 | case (0xd0 >> 2): /* addi */ | ||
163 | case (0xd4 >> 2): /* addi.l */ | ||
164 | /* Look for r15, -FRAME_SIZE, r15 */ | ||
165 | if (src != 15 || dest != 15) | ||
166 | continue; | ||
167 | |||
168 | /* Sign extended frame size.. */ | ||
169 | fp_displacement += | ||
170 | (u64)(((((s64)op >> 10) & 0x3ff) << 54) >> 54); | ||
171 | fp_prev = fp - fp_displacement; | ||
172 | break; | ||
173 | } | ||
174 | |||
175 | if (found_prologue_end && offset_r14 && (offset_r18 || *pprev_pc) && fp_prev) | ||
176 | break; | ||
177 | } | ||
178 | |||
179 | if (offset_r14 == 0 || fp_prev == 0) { | ||
180 | if (!offset_r14) | ||
181 | pr_debug("Unable to find r14 offset\n"); | ||
182 | if (!fp_prev) | ||
183 | pr_debug("Unable to find previous fp\n"); | ||
184 | |||
185 | return -EINVAL; | ||
186 | } | ||
187 | |||
188 | /* For innermost leaf function, there might not be a offset_r18 */ | ||
189 | if (!*pprev_pc && (offset_r18 == 0)) | ||
190 | return -EINVAL; | ||
191 | |||
192 | *pprev_fp = *(unsigned long *)(fp_prev + offset_r14); | ||
193 | |||
194 | if (offset_r18) | ||
195 | *pprev_pc = *(unsigned long *)(fp_prev + offset_r18); | ||
196 | |||
197 | *pprev_pc &= ~1; | ||
198 | |||
199 | return 0; | ||
200 | } | ||
201 | |||
202 | /* Don't put this on the stack since we'll want to call sh64_unwind | ||
203 | * when we're close to underflowing the stack anyway. */ | ||
204 | static struct pt_regs here_regs; | ||
205 | |||
206 | extern const char syscall_ret; | ||
207 | extern const char ret_from_syscall; | ||
208 | extern const char ret_from_exception; | ||
209 | extern const char ret_from_irq; | ||
210 | |||
211 | static void sh64_unwind_inner(struct pt_regs *regs); | ||
212 | |||
213 | static void unwind_nested (unsigned long pc, unsigned long fp) | ||
214 | { | ||
215 | if ((fp >= __MEMORY_START) && | ||
216 | ((fp & 7) == 0)) { | ||
217 | sh64_unwind_inner((struct pt_regs *) fp); | ||
218 | } | ||
219 | } | ||
220 | |||
221 | static void sh64_unwind_inner(struct pt_regs *regs) | ||
222 | { | ||
223 | unsigned long pc, fp; | ||
224 | int ofs = 0; | ||
225 | int first_pass; | ||
226 | |||
227 | pc = regs->pc & ~1; | ||
228 | fp = regs->regs[14]; | ||
229 | |||
230 | first_pass = 1; | ||
231 | for (;;) { | ||
232 | int cond; | ||
233 | unsigned long next_fp, next_pc; | ||
234 | |||
235 | if (pc == ((unsigned long) &syscall_ret & ~1)) { | ||
236 | printk("SYSCALL\n"); | ||
237 | unwind_nested(pc,fp); | ||
238 | return; | ||
239 | } | ||
240 | |||
241 | if (pc == ((unsigned long) &ret_from_syscall & ~1)) { | ||
242 | printk("SYSCALL (PREEMPTED)\n"); | ||
243 | unwind_nested(pc,fp); | ||
244 | return; | ||
245 | } | ||
246 | |||
247 | /* In this case, the PC is discovered by lookup_prev_stack_frame but | ||
248 | it has 4 taken off it to look like the 'caller' */ | ||
249 | if (pc == ((unsigned long) &ret_from_exception & ~1)) { | ||
250 | printk("EXCEPTION\n"); | ||
251 | unwind_nested(pc,fp); | ||
252 | return; | ||
253 | } | ||
254 | |||
255 | if (pc == ((unsigned long) &ret_from_irq & ~1)) { | ||
256 | printk("IRQ\n"); | ||
257 | unwind_nested(pc,fp); | ||
258 | return; | ||
259 | } | ||
260 | |||
261 | cond = ((pc >= __MEMORY_START) && (fp >= __MEMORY_START) && | ||
262 | ((pc & 3) == 0) && ((fp & 7) == 0)); | ||
263 | |||
264 | pc -= ofs; | ||
265 | |||
266 | printk("[<%08lx>] ", pc); | ||
267 | print_symbol("%s\n", pc); | ||
268 | |||
269 | if (first_pass) { | ||
270 | /* If the innermost frame is a leaf function, it's | ||
271 | * possible that r18 is never saved out to the stack. | ||
272 | */ | ||
273 | next_pc = regs->regs[18]; | ||
274 | } else { | ||
275 | next_pc = 0; | ||
276 | } | ||
277 | |||
278 | if (lookup_prev_stack_frame(fp, pc, &next_fp, &next_pc, regs) == 0) { | ||
279 | ofs = sizeof(unsigned long); | ||
280 | pc = next_pc & ~1; | ||
281 | fp = next_fp; | ||
282 | } else { | ||
283 | printk("Unable to lookup previous stack frame\n"); | ||
284 | break; | ||
285 | } | ||
286 | first_pass = 0; | ||
287 | } | ||
288 | |||
289 | printk("\n"); | ||
290 | |||
291 | } | ||
292 | |||
293 | void sh64_unwind(struct pt_regs *regs) | ||
294 | { | ||
295 | if (!regs) { | ||
296 | /* | ||
297 | * Fetch current regs if we have no other saved state to back | ||
298 | * trace from. | ||
299 | */ | ||
300 | regs = &here_regs; | ||
301 | |||
302 | __asm__ __volatile__ ("ori r14, 0, %0" : "=r" (regs->regs[14])); | ||
303 | __asm__ __volatile__ ("ori r15, 0, %0" : "=r" (regs->regs[15])); | ||
304 | __asm__ __volatile__ ("ori r18, 0, %0" : "=r" (regs->regs[18])); | ||
305 | |||
306 | __asm__ __volatile__ ("gettr tr0, %0" : "=r" (regs->tregs[0])); | ||
307 | __asm__ __volatile__ ("gettr tr1, %0" : "=r" (regs->tregs[1])); | ||
308 | __asm__ __volatile__ ("gettr tr2, %0" : "=r" (regs->tregs[2])); | ||
309 | __asm__ __volatile__ ("gettr tr3, %0" : "=r" (regs->tregs[3])); | ||
310 | __asm__ __volatile__ ("gettr tr4, %0" : "=r" (regs->tregs[4])); | ||
311 | __asm__ __volatile__ ("gettr tr5, %0" : "=r" (regs->tregs[5])); | ||
312 | __asm__ __volatile__ ("gettr tr6, %0" : "=r" (regs->tregs[6])); | ||
313 | __asm__ __volatile__ ("gettr tr7, %0" : "=r" (regs->tregs[7])); | ||
314 | |||
315 | __asm__ __volatile__ ( | ||
316 | "pta 0f, tr0\n\t" | ||
317 | "blink tr0, %0\n\t" | ||
318 | "0: nop" | ||
319 | : "=r" (regs->pc) | ||
320 | ); | ||
321 | } | ||
322 | |||
323 | printk("\nCall Trace:\n"); | ||
324 | sh64_unwind_inner(regs); | ||
325 | } | ||
326 | |||