diff options
Diffstat (limited to 'arch/ppc/amiga')
-rw-r--r-- | arch/ppc/amiga/Makefile | 8 | ||||
-rw-r--r-- | arch/ppc/amiga/amiga_ksyms.c | 1 | ||||
-rw-r--r-- | arch/ppc/amiga/amiints.c | 322 | ||||
-rw-r--r-- | arch/ppc/amiga/amisound.c | 1 | ||||
-rw-r--r-- | arch/ppc/amiga/bootinfo.c | 78 | ||||
-rw-r--r-- | arch/ppc/amiga/chipram.c | 1 | ||||
-rw-r--r-- | arch/ppc/amiga/cia.c | 176 | ||||
-rw-r--r-- | arch/ppc/amiga/config.c | 953 | ||||
-rw-r--r-- | arch/ppc/amiga/ints.c | 158 | ||||
-rw-r--r-- | arch/ppc/amiga/pcmcia.c | 1 | ||||
-rw-r--r-- | arch/ppc/amiga/time.c | 57 |
11 files changed, 0 insertions, 1756 deletions
diff --git a/arch/ppc/amiga/Makefile b/arch/ppc/amiga/Makefile deleted file mode 100644 index 59fec0a3ac8e..000000000000 --- a/arch/ppc/amiga/Makefile +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | # | ||
2 | # Makefile for Linux arch/m68k/amiga source directory | ||
3 | # | ||
4 | |||
5 | obj-y := config.o amiints.o cia.o time.o bootinfo.o amisound.o \ | ||
6 | chipram.o amiga_ksyms.o | ||
7 | |||
8 | obj-$(CONFIG_AMIGA_PCMCIA) += pcmcia.o | ||
diff --git a/arch/ppc/amiga/amiga_ksyms.c b/arch/ppc/amiga/amiga_ksyms.c deleted file mode 100644 index ec74e5b7a1ce..000000000000 --- a/arch/ppc/amiga/amiga_ksyms.c +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include "../../m68k/amiga/amiga_ksyms.c" | ||
diff --git a/arch/ppc/amiga/amiints.c b/arch/ppc/amiga/amiints.c deleted file mode 100644 index 265fcd3c6ab2..000000000000 --- a/arch/ppc/amiga/amiints.c +++ /dev/null | |||
@@ -1,322 +0,0 @@ | |||
1 | /* | ||
2 | * Amiga Linux interrupt handling code | ||
3 | * | ||
4 | * This file is subject to the terms and conditions of the GNU General Public | ||
5 | * License. See the file COPYING in the main directory of this archive | ||
6 | * for more details. | ||
7 | * | ||
8 | * 11/07/96: rewritten interrupt handling, irq lists are exists now only for | ||
9 | * this sources where it makes sense (VERTB/PORTS/EXTER) and you must | ||
10 | * be careful that dev_id for this sources is unique since this the | ||
11 | * only possibility to distinguish between different handlers for | ||
12 | * free_irq. irq lists also have different irq flags: | ||
13 | * - IRQ_FLG_FAST: handler is inserted at top of list (after other | ||
14 | * fast handlers) | ||
15 | * - IRQ_FLG_SLOW: handler is inserted at bottom of list and before | ||
16 | * they're executed irq level is set to the previous | ||
17 | * one, but handlers don't need to be reentrant, if | ||
18 | * reentrance occurred, slow handlers will be just | ||
19 | * called again. | ||
20 | * The whole interrupt handling for CIAs is moved to cia.c | ||
21 | * /Roman Zippel | ||
22 | * | ||
23 | * 07/08/99: rewamp of the interrupt handling - we now have two types of | ||
24 | * interrupts, normal and fast handlers, fast handlers being | ||
25 | * marked with SA_INTERRUPT and runs with all other interrupts | ||
26 | * disabled. Normal interrupts disable their own source but | ||
27 | * run with all other interrupt sources enabled. | ||
28 | * PORTS and EXTER interrupts are always shared even if the | ||
29 | * drivers do not explicitly mark this when calling | ||
30 | * request_irq which they really should do. | ||
31 | * This is similar to the way interrupts are handled on all | ||
32 | * other architectures and makes a ton of sense besides | ||
33 | * having the advantage of making it easier to share | ||
34 | * drivers. | ||
35 | * /Jes | ||
36 | */ | ||
37 | |||
38 | #include <linux/types.h> | ||
39 | #include <linux/kernel.h> | ||
40 | #include <linux/sched.h> | ||
41 | #include <linux/interrupt.h> | ||
42 | #include <linux/irq.h> | ||
43 | #include <linux/kernel_stat.h> | ||
44 | #include <linux/init.h> | ||
45 | |||
46 | #include <asm/system.h> | ||
47 | #include <asm/irq.h> | ||
48 | #include <asm/traps.h> | ||
49 | #include <asm/amigahw.h> | ||
50 | #include <asm/amigaints.h> | ||
51 | #include <asm/amipcmcia.h> | ||
52 | |||
53 | #ifdef CONFIG_APUS | ||
54 | #include <asm/amigappc.h> | ||
55 | #endif | ||
56 | |||
57 | extern void cia_init_IRQ(struct ciabase *base); | ||
58 | |||
59 | unsigned short ami_intena_vals[AMI_STD_IRQS] = { | ||
60 | IF_VERTB, IF_COPER, IF_AUD0, IF_AUD1, IF_AUD2, IF_AUD3, IF_BLIT, | ||
61 | IF_DSKSYN, IF_DSKBLK, IF_RBF, IF_TBE, IF_SOFT, IF_PORTS, IF_EXTER | ||
62 | }; | ||
63 | static const unsigned char ami_servers[AMI_STD_IRQS] = { | ||
64 | 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1 | ||
65 | }; | ||
66 | |||
67 | static short ami_ablecount[AMI_IRQS]; | ||
68 | |||
69 | static void ami_badint(int irq, void *dev_id, struct pt_regs *fp) | ||
70 | { | ||
71 | /* num_spurious += 1;*/ | ||
72 | } | ||
73 | |||
74 | /* | ||
75 | * void amiga_init_IRQ(void) | ||
76 | * | ||
77 | * Parameters: None | ||
78 | * | ||
79 | * Returns: Nothing | ||
80 | * | ||
81 | * This function should be called during kernel startup to initialize | ||
82 | * the amiga IRQ handling routines. | ||
83 | */ | ||
84 | |||
85 | __init | ||
86 | void amiga_init_IRQ(void) | ||
87 | { | ||
88 | int i; | ||
89 | |||
90 | for (i = 0; i < AMI_IRQS; i++) | ||
91 | ami_ablecount[i] = 0; | ||
92 | |||
93 | /* turn off PCMCIA interrupts */ | ||
94 | if (AMIGAHW_PRESENT(PCMCIA)) | ||
95 | gayle.inten = GAYLE_IRQ_IDE; | ||
96 | |||
97 | /* turn off all interrupts... */ | ||
98 | amiga_custom.intena = 0x7fff; | ||
99 | amiga_custom.intreq = 0x7fff; | ||
100 | |||
101 | #ifdef CONFIG_APUS | ||
102 | /* Clear any inter-CPU interrupt requests. Circumvents bug in | ||
103 | Blizzard IPL emulation HW (or so it appears). */ | ||
104 | APUS_WRITE(APUS_INT_LVL, INTLVL_SETRESET | INTLVL_MASK); | ||
105 | |||
106 | /* Init IPL emulation. */ | ||
107 | APUS_WRITE(APUS_REG_INT, REGINT_INTMASTER | REGINT_ENABLEIPL); | ||
108 | APUS_WRITE(APUS_IPL_EMU, IPLEMU_DISABLEINT); | ||
109 | APUS_WRITE(APUS_IPL_EMU, IPLEMU_SETRESET | IPLEMU_IPLMASK); | ||
110 | #endif | ||
111 | /* ... and enable the master interrupt bit */ | ||
112 | amiga_custom.intena = IF_SETCLR | IF_INTEN; | ||
113 | |||
114 | cia_init_IRQ(&ciaa_base); | ||
115 | cia_init_IRQ(&ciab_base); | ||
116 | } | ||
117 | |||
118 | /* | ||
119 | * Enable/disable a particular machine specific interrupt source. | ||
120 | * Note that this may affect other interrupts in case of a shared interrupt. | ||
121 | * This function should only be called for a _very_ short time to change some | ||
122 | * internal data, that may not be changed by the interrupt at the same time. | ||
123 | * ami_(enable|disable)_irq calls may also be nested. | ||
124 | */ | ||
125 | |||
126 | void amiga_enable_irq(unsigned int irq) | ||
127 | { | ||
128 | if (irq >= AMI_IRQS) { | ||
129 | printk("%s: Unknown IRQ %d\n", __FUNCTION__, irq); | ||
130 | return; | ||
131 | } | ||
132 | |||
133 | ami_ablecount[irq]--; | ||
134 | if (ami_ablecount[irq]<0) | ||
135 | ami_ablecount[irq]=0; | ||
136 | else if (ami_ablecount[irq]) | ||
137 | return; | ||
138 | |||
139 | /* No action for auto-vector interrupts */ | ||
140 | if (irq >= IRQ_AMIGA_AUTO){ | ||
141 | printk("%s: Trying to enable auto-vector IRQ %i\n", | ||
142 | __FUNCTION__, irq - IRQ_AMIGA_AUTO); | ||
143 | return; | ||
144 | } | ||
145 | |||
146 | if (irq >= IRQ_AMIGA_CIAA) { | ||
147 | cia_set_irq(irq, 0); | ||
148 | cia_able_irq(irq, 1); | ||
149 | return; | ||
150 | } | ||
151 | |||
152 | /* enable the interrupt */ | ||
153 | amiga_custom.intena = IF_SETCLR | ami_intena_vals[irq]; | ||
154 | } | ||
155 | |||
156 | void amiga_disable_irq(unsigned int irq) | ||
157 | { | ||
158 | if (irq >= AMI_IRQS) { | ||
159 | printk("%s: Unknown IRQ %d\n", __FUNCTION__, irq); | ||
160 | return; | ||
161 | } | ||
162 | |||
163 | if (ami_ablecount[irq]++) | ||
164 | return; | ||
165 | |||
166 | /* No action for auto-vector interrupts */ | ||
167 | if (irq >= IRQ_AMIGA_AUTO) { | ||
168 | printk("%s: Trying to disable auto-vector IRQ %i\n", | ||
169 | __FUNCTION__, irq - IRQ_AMIGA_AUTO); | ||
170 | return; | ||
171 | } | ||
172 | |||
173 | if (irq >= IRQ_AMIGA_CIAA) { | ||
174 | cia_able_irq(irq, 0); | ||
175 | return; | ||
176 | } | ||
177 | |||
178 | /* disable the interrupt */ | ||
179 | amiga_custom.intena = ami_intena_vals[irq]; | ||
180 | } | ||
181 | |||
182 | inline void amiga_do_irq(int irq, struct pt_regs *fp) | ||
183 | { | ||
184 | irq_desc_t *desc = irq_desc + irq; | ||
185 | struct irqaction *action = desc->action; | ||
186 | |||
187 | kstat_cpu(0).irqs[irq]++; | ||
188 | action->handler(irq, action->dev_id, fp); | ||
189 | } | ||
190 | |||
191 | void amiga_do_irq_list(int irq, struct pt_regs *fp) | ||
192 | { | ||
193 | irq_desc_t *desc = irq_desc + irq; | ||
194 | struct irqaction *action; | ||
195 | |||
196 | kstat_cpu(0).irqs[irq]++; | ||
197 | |||
198 | amiga_custom.intreq = ami_intena_vals[irq]; | ||
199 | |||
200 | for (action = desc->action; action; action = action->next) | ||
201 | action->handler(irq, action->dev_id, fp); | ||
202 | } | ||
203 | |||
204 | /* | ||
205 | * The builtin Amiga hardware interrupt handlers. | ||
206 | */ | ||
207 | |||
208 | static void ami_int1(int irq, void *dev_id, struct pt_regs *fp) | ||
209 | { | ||
210 | unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar; | ||
211 | |||
212 | /* if serial transmit buffer empty, interrupt */ | ||
213 | if (ints & IF_TBE) { | ||
214 | amiga_custom.intreq = IF_TBE; | ||
215 | amiga_do_irq(IRQ_AMIGA_TBE, fp); | ||
216 | } | ||
217 | |||
218 | /* if floppy disk transfer complete, interrupt */ | ||
219 | if (ints & IF_DSKBLK) { | ||
220 | amiga_custom.intreq = IF_DSKBLK; | ||
221 | amiga_do_irq(IRQ_AMIGA_DSKBLK, fp); | ||
222 | } | ||
223 | |||
224 | /* if software interrupt set, interrupt */ | ||
225 | if (ints & IF_SOFT) { | ||
226 | amiga_custom.intreq = IF_SOFT; | ||
227 | amiga_do_irq(IRQ_AMIGA_SOFT, fp); | ||
228 | } | ||
229 | } | ||
230 | |||
231 | static void ami_int3(int irq, void *dev_id, struct pt_regs *fp) | ||
232 | { | ||
233 | unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar; | ||
234 | |||
235 | /* if a blitter interrupt */ | ||
236 | if (ints & IF_BLIT) { | ||
237 | amiga_custom.intreq = IF_BLIT; | ||
238 | amiga_do_irq(IRQ_AMIGA_BLIT, fp); | ||
239 | } | ||
240 | |||
241 | /* if a copper interrupt */ | ||
242 | if (ints & IF_COPER) { | ||
243 | amiga_custom.intreq = IF_COPER; | ||
244 | amiga_do_irq(IRQ_AMIGA_COPPER, fp); | ||
245 | } | ||
246 | |||
247 | /* if a vertical blank interrupt */ | ||
248 | if (ints & IF_VERTB) | ||
249 | amiga_do_irq_list(IRQ_AMIGA_VERTB, fp); | ||
250 | } | ||
251 | |||
252 | static void ami_int4(int irq, void *dev_id, struct pt_regs *fp) | ||
253 | { | ||
254 | unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar; | ||
255 | |||
256 | /* if audio 0 interrupt */ | ||
257 | if (ints & IF_AUD0) { | ||
258 | amiga_custom.intreq = IF_AUD0; | ||
259 | amiga_do_irq(IRQ_AMIGA_AUD0, fp); | ||
260 | } | ||
261 | |||
262 | /* if audio 1 interrupt */ | ||
263 | if (ints & IF_AUD1) { | ||
264 | amiga_custom.intreq = IF_AUD1; | ||
265 | amiga_do_irq(IRQ_AMIGA_AUD1, fp); | ||
266 | } | ||
267 | |||
268 | /* if audio 2 interrupt */ | ||
269 | if (ints & IF_AUD2) { | ||
270 | amiga_custom.intreq = IF_AUD2; | ||
271 | amiga_do_irq(IRQ_AMIGA_AUD2, fp); | ||
272 | } | ||
273 | |||
274 | /* if audio 3 interrupt */ | ||
275 | if (ints & IF_AUD3) { | ||
276 | amiga_custom.intreq = IF_AUD3; | ||
277 | amiga_do_irq(IRQ_AMIGA_AUD3, fp); | ||
278 | } | ||
279 | } | ||
280 | |||
281 | static void ami_int5(int irq, void *dev_id, struct pt_regs *fp) | ||
282 | { | ||
283 | unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar; | ||
284 | |||
285 | /* if serial receive buffer full interrupt */ | ||
286 | if (ints & IF_RBF) { | ||
287 | /* acknowledge of IF_RBF must be done by the serial interrupt */ | ||
288 | amiga_do_irq(IRQ_AMIGA_RBF, fp); | ||
289 | } | ||
290 | |||
291 | /* if a disk sync interrupt */ | ||
292 | if (ints & IF_DSKSYN) { | ||
293 | amiga_custom.intreq = IF_DSKSYN; | ||
294 | amiga_do_irq(IRQ_AMIGA_DSKSYN, fp); | ||
295 | } | ||
296 | } | ||
297 | |||
298 | static void ami_int7(int irq, void *dev_id, struct pt_regs *fp) | ||
299 | { | ||
300 | panic ("level 7 interrupt received\n"); | ||
301 | } | ||
302 | |||
303 | #ifdef CONFIG_APUS | ||
304 | /* The PPC irq handling links all handlers requested on the same vector | ||
305 | and executes them in a loop. Having ami_badint at the end of the chain | ||
306 | is a bad idea. */ | ||
307 | struct irqaction amiga_sys_irqaction[AUTO_IRQS] = { | ||
308 | { .handler = ami_badint, .name = "spurious int" }, | ||
309 | { .handler = ami_int1, .name = "int1 handler" }, | ||
310 | { 0, /* CIAA */ }, | ||
311 | { .handler = ami_int3, .name = "int3 handler" }, | ||
312 | { .handler = ami_int4, .name = "int4 handler" }, | ||
313 | { .handler = ami_int5, .name = "int5 handler" }, | ||
314 | { 0, /* CIAB */ }, | ||
315 | { .handler = ami_int7, .name = "int7 handler" }, | ||
316 | }; | ||
317 | #else | ||
318 | void (*amiga_default_handler[SYS_IRQS])(int, void *, struct pt_regs *) = { | ||
319 | ami_badint, ami_int1, ami_badint, ami_int3, | ||
320 | ami_int4, ami_int5, ami_badint, ami_int7 | ||
321 | }; | ||
322 | #endif | ||
diff --git a/arch/ppc/amiga/amisound.c b/arch/ppc/amiga/amisound.c deleted file mode 100644 index 2b86cbef79f6..000000000000 --- a/arch/ppc/amiga/amisound.c +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include "../../m68k/amiga/amisound.c" | ||
diff --git a/arch/ppc/amiga/bootinfo.c b/arch/ppc/amiga/bootinfo.c deleted file mode 100644 index efd869a3ed9b..000000000000 --- a/arch/ppc/amiga/bootinfo.c +++ /dev/null | |||
@@ -1,78 +0,0 @@ | |||
1 | /* | ||
2 | * Extracted from arch/m68k/kernel/setup.c. | ||
3 | * Should be properly generalized and put somewhere else. | ||
4 | * Jesper | ||
5 | */ | ||
6 | |||
7 | #include <linux/types.h> | ||
8 | #include <linux/kernel.h> | ||
9 | #include <linux/string.h> | ||
10 | #include <linux/init.h> | ||
11 | |||
12 | #include <asm/setup.h> | ||
13 | #include <asm/bootinfo.h> | ||
14 | |||
15 | extern char cmd_line[CL_SIZE]; | ||
16 | |||
17 | extern int num_memory; | ||
18 | extern int m68k_realnum_memory; | ||
19 | extern struct mem_info memory[NUM_MEMINFO]; | ||
20 | extern struct mem_info m68k_memory[NUM_MEMINFO]; | ||
21 | extern struct mem_info ramdisk; | ||
22 | |||
23 | extern int amiga_parse_bootinfo(const struct bi_record *); | ||
24 | extern int atari_parse_bootinfo(const struct bi_record *); | ||
25 | extern int mac_parse_bootinfo(const struct bi_record *); | ||
26 | |||
27 | void __init parse_bootinfo(const struct bi_record *record) | ||
28 | { | ||
29 | while (record->tag != BI_LAST) { | ||
30 | int unknown = 0; | ||
31 | const u_long *data = record->data; | ||
32 | switch (record->tag) { | ||
33 | case BI_MACHTYPE: | ||
34 | case BI_CPUTYPE: | ||
35 | case BI_FPUTYPE: | ||
36 | case BI_MMUTYPE: | ||
37 | /* Already set up by head.S */ | ||
38 | break; | ||
39 | |||
40 | case BI_MEMCHUNK: | ||
41 | if (num_memory < NUM_MEMINFO) { | ||
42 | memory[num_memory].addr = data[0]; | ||
43 | memory[num_memory].size = data[1]; | ||
44 | num_memory++; | ||
45 | |||
46 | /* FIXME: duplicate for m68k drivers. */ | ||
47 | m68k_memory[m68k_realnum_memory].addr = data[0]; | ||
48 | m68k_memory[m68k_realnum_memory].size = data[1]; | ||
49 | m68k_realnum_memory++; | ||
50 | } else | ||
51 | printk("parse_bootinfo: too many memory chunks\n"); | ||
52 | break; | ||
53 | |||
54 | case BI_RAMDISK: | ||
55 | ramdisk.addr = data[0]; | ||
56 | ramdisk.size = data[1]; | ||
57 | break; | ||
58 | |||
59 | case BI_COMMAND_LINE: | ||
60 | strlcpy(cmd_line, (const char *)data, sizeof(cmd_line)); | ||
61 | break; | ||
62 | |||
63 | default: | ||
64 | if (MACH_IS_AMIGA) | ||
65 | unknown = amiga_parse_bootinfo(record); | ||
66 | else if (MACH_IS_ATARI) | ||
67 | unknown = atari_parse_bootinfo(record); | ||
68 | else if (MACH_IS_MAC) | ||
69 | unknown = mac_parse_bootinfo(record); | ||
70 | else | ||
71 | unknown = 1; | ||
72 | } | ||
73 | if (unknown) | ||
74 | printk("parse_bootinfo: unknown tag 0x%04x ignored\n", | ||
75 | record->tag); | ||
76 | record = (struct bi_record *)((u_long)record+record->size); | ||
77 | } | ||
78 | } | ||
diff --git a/arch/ppc/amiga/chipram.c b/arch/ppc/amiga/chipram.c deleted file mode 100644 index e6ab3c6b223c..000000000000 --- a/arch/ppc/amiga/chipram.c +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include "../../m68k/amiga/chipram.c" | ||
diff --git a/arch/ppc/amiga/cia.c b/arch/ppc/amiga/cia.c deleted file mode 100644 index 9558f2f40e64..000000000000 --- a/arch/ppc/amiga/cia.c +++ /dev/null | |||
@@ -1,176 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (C) 1996 Roman Zippel | ||
3 | * | ||
4 | * The concept of some functions bases on the original Amiga OS function | ||
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 | |||
11 | #include <linux/types.h> | ||
12 | #include <linux/kernel.h> | ||
13 | #include <linux/sched.h> | ||
14 | #include <linux/interrupt.h> | ||
15 | #include <linux/irq.h> | ||
16 | #include <linux/kernel_stat.h> | ||
17 | #include <linux/init.h> | ||
18 | |||
19 | #include <asm/irq.h> | ||
20 | #include <asm/amigahw.h> | ||
21 | #include <asm/amigaints.h> | ||
22 | |||
23 | struct ciabase { | ||
24 | volatile struct CIA *cia; | ||
25 | u_char icr_mask, icr_data; | ||
26 | u_short int_mask; | ||
27 | int handler_irq, cia_irq, server_irq; | ||
28 | char *name; | ||
29 | } ciaa_base = { | ||
30 | &ciaa, 0, 0, IF_PORTS, | ||
31 | IRQ_AMIGA_AUTO_2, IRQ_AMIGA_CIAA, | ||
32 | IRQ_AMIGA_PORTS, | ||
33 | "CIAA handler" | ||
34 | }, ciab_base = { | ||
35 | &ciab, 0, 0, IF_EXTER, | ||
36 | IRQ_AMIGA_AUTO_6, IRQ_AMIGA_CIAB, | ||
37 | IRQ_AMIGA_EXTER, | ||
38 | "CIAB handler" | ||
39 | }; | ||
40 | |||
41 | #define CIA_SET_BASE_ADJUST_IRQ(base, irq) \ | ||
42 | do { \ | ||
43 | if (irq >= IRQ_AMIGA_CIAB) { \ | ||
44 | base = &ciab_base; \ | ||
45 | irq -= IRQ_AMIGA_CIAB; \ | ||
46 | } else { \ | ||
47 | base = &ciaa_base; \ | ||
48 | irq -= IRQ_AMIGA_CIAA; \ | ||
49 | } \ | ||
50 | } while (0) | ||
51 | |||
52 | /* | ||
53 | * Cause or clear CIA interrupts, return old interrupt status. | ||
54 | */ | ||
55 | |||
56 | static unsigned char cia_set_irq_private(struct ciabase *base, | ||
57 | unsigned char mask) | ||
58 | { | ||
59 | u_char old; | ||
60 | |||
61 | old = (base->icr_data |= base->cia->icr); | ||
62 | if (mask & CIA_ICR_SETCLR) | ||
63 | base->icr_data |= mask; | ||
64 | else | ||
65 | base->icr_data &= ~mask; | ||
66 | if (base->icr_data & base->icr_mask) | ||
67 | amiga_custom.intreq = IF_SETCLR | base->int_mask; | ||
68 | return old & base->icr_mask; | ||
69 | } | ||
70 | |||
71 | unsigned char cia_set_irq(unsigned int irq, int set) | ||
72 | { | ||
73 | struct ciabase *base; | ||
74 | unsigned char mask; | ||
75 | |||
76 | if (irq >= IRQ_AMIGA_CIAB) | ||
77 | mask = (1 << (irq - IRQ_AMIGA_CIAB)); | ||
78 | else | ||
79 | mask = (1 << (irq - IRQ_AMIGA_CIAA)); | ||
80 | mask |= (set) ? CIA_ICR_SETCLR : 0; | ||
81 | |||
82 | CIA_SET_BASE_ADJUST_IRQ(base, irq); | ||
83 | |||
84 | return cia_set_irq_private(base, mask); | ||
85 | } | ||
86 | |||
87 | unsigned char cia_get_irq_mask(unsigned int irq) | ||
88 | { | ||
89 | struct ciabase *base; | ||
90 | |||
91 | CIA_SET_BASE_ADJUST_IRQ(base, irq); | ||
92 | |||
93 | return base->cia->icr; | ||
94 | } | ||
95 | |||
96 | /* | ||
97 | * Enable or disable CIA interrupts, return old interrupt mask. | ||
98 | */ | ||
99 | |||
100 | static unsigned char cia_able_irq_private(struct ciabase *base, | ||
101 | unsigned char mask) | ||
102 | { | ||
103 | u_char old; | ||
104 | |||
105 | old = base->icr_mask; | ||
106 | base->icr_data |= base->cia->icr; | ||
107 | base->cia->icr = mask; | ||
108 | if (mask & CIA_ICR_SETCLR) | ||
109 | base->icr_mask |= mask; | ||
110 | else | ||
111 | base->icr_mask &= ~mask; | ||
112 | base->icr_mask &= CIA_ICR_ALL; | ||
113 | |||
114 | if (base->icr_data & base->icr_mask) | ||
115 | amiga_custom.intreq = IF_SETCLR | base->int_mask; | ||
116 | return old; | ||
117 | } | ||
118 | |||
119 | unsigned char cia_able_irq(unsigned int irq, int enable) | ||
120 | { | ||
121 | struct ciabase *base; | ||
122 | unsigned char mask; | ||
123 | |||
124 | if (irq >= IRQ_AMIGA_CIAB) | ||
125 | mask = (1 << (irq - IRQ_AMIGA_CIAB)); | ||
126 | else | ||
127 | mask = (1 << (irq - IRQ_AMIGA_CIAA)); | ||
128 | mask |= (enable) ? CIA_ICR_SETCLR : 0; | ||
129 | |||
130 | CIA_SET_BASE_ADJUST_IRQ(base, irq); | ||
131 | |||
132 | return cia_able_irq_private(base, mask); | ||
133 | } | ||
134 | |||
135 | static void cia_handler(int irq, void *dev_id, struct pt_regs *fp) | ||
136 | { | ||
137 | struct ciabase *base = (struct ciabase *)dev_id; | ||
138 | irq_desc_t *desc; | ||
139 | struct irqaction *action; | ||
140 | int i; | ||
141 | unsigned char ints; | ||
142 | |||
143 | irq = base->cia_irq; | ||
144 | desc = irq_desc + irq; | ||
145 | ints = cia_set_irq_private(base, CIA_ICR_ALL); | ||
146 | amiga_custom.intreq = base->int_mask; | ||
147 | for (i = 0; i < CIA_IRQS; i++, irq++) { | ||
148 | if (ints & 1) { | ||
149 | kstat_cpu(0).irqs[irq]++; | ||
150 | action = desc->action; | ||
151 | action->handler(irq, action->dev_id, fp); | ||
152 | } | ||
153 | ints >>= 1; | ||
154 | desc++; | ||
155 | } | ||
156 | amiga_do_irq_list(base->server_irq, fp); | ||
157 | } | ||
158 | |||
159 | void __init cia_init_IRQ(struct ciabase *base) | ||
160 | { | ||
161 | extern struct irqaction amiga_sys_irqaction[AUTO_IRQS]; | ||
162 | struct irqaction *action; | ||
163 | |||
164 | /* clear any pending interrupt and turn off all interrupts */ | ||
165 | cia_set_irq_private(base, CIA_ICR_ALL); | ||
166 | cia_able_irq_private(base, CIA_ICR_ALL); | ||
167 | |||
168 | /* install CIA handler */ | ||
169 | action = &amiga_sys_irqaction[base->handler_irq-IRQ_AMIGA_AUTO]; | ||
170 | action->handler = cia_handler; | ||
171 | action->dev_id = base; | ||
172 | action->name = base->name; | ||
173 | setup_irq(base->handler_irq, &amiga_sys_irqaction[base->handler_irq-IRQ_AMIGA_AUTO]); | ||
174 | |||
175 | amiga_custom.intena = IF_SETCLR | base->int_mask; | ||
176 | } | ||
diff --git a/arch/ppc/amiga/config.c b/arch/ppc/amiga/config.c deleted file mode 100644 index bc50ed11957d..000000000000 --- a/arch/ppc/amiga/config.c +++ /dev/null | |||
@@ -1,953 +0,0 @@ | |||
1 | #define m68k_debug_device debug_device | ||
2 | |||
3 | /* | ||
4 | * Copyright (C) 1993 Hamish Macdonald | ||
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 | |||
11 | /* | ||
12 | * Miscellaneous Amiga stuff | ||
13 | */ | ||
14 | |||
15 | #include <linux/types.h> | ||
16 | #include <linux/kernel.h> | ||
17 | #include <linux/mm.h> | ||
18 | #include <linux/kd.h> | ||
19 | #include <linux/tty.h> | ||
20 | #include <linux/console.h> | ||
21 | #include <linux/init.h> | ||
22 | #ifdef CONFIG_ZORRO | ||
23 | #include <linux/zorro.h> | ||
24 | #endif | ||
25 | |||
26 | #include <asm/bootinfo.h> | ||
27 | #include <asm/setup.h> | ||
28 | #include <asm/system.h> | ||
29 | #include <asm/pgtable.h> | ||
30 | #include <asm/amigahw.h> | ||
31 | #include <asm/amigaints.h> | ||
32 | #include <asm/irq.h> | ||
33 | #include <asm/machdep.h> | ||
34 | #include <asm/io.h> | ||
35 | |||
36 | unsigned long powerup_PCI_present; | ||
37 | unsigned long powerup_BPPCPLUS_present; | ||
38 | unsigned long amiga_model; | ||
39 | unsigned long amiga_eclock; | ||
40 | unsigned long amiga_masterclock; | ||
41 | unsigned long amiga_colorclock; | ||
42 | unsigned long amiga_chipset; | ||
43 | unsigned char amiga_vblank; | ||
44 | unsigned char amiga_psfreq; | ||
45 | struct amiga_hw_present amiga_hw_present; | ||
46 | |||
47 | static char s_a500[] __initdata = "A500"; | ||
48 | static char s_a500p[] __initdata = "A500+"; | ||
49 | static char s_a600[] __initdata = "A600"; | ||
50 | static char s_a1000[] __initdata = "A1000"; | ||
51 | static char s_a1200[] __initdata = "A1200"; | ||
52 | static char s_a2000[] __initdata = "A2000"; | ||
53 | static char s_a2500[] __initdata = "A2500"; | ||
54 | static char s_a3000[] __initdata = "A3000"; | ||
55 | static char s_a3000t[] __initdata = "A3000T"; | ||
56 | static char s_a3000p[] __initdata = "A3000+"; | ||
57 | static char s_a4000[] __initdata = "A4000"; | ||
58 | static char s_a4000t[] __initdata = "A4000T"; | ||
59 | static char s_cdtv[] __initdata = "CDTV"; | ||
60 | static char s_cd32[] __initdata = "CD32"; | ||
61 | static char s_draco[] __initdata = "Draco"; | ||
62 | static char *amiga_models[] __initdata = { | ||
63 | s_a500, s_a500p, s_a600, s_a1000, s_a1200, s_a2000, s_a2500, s_a3000, | ||
64 | s_a3000t, s_a3000p, s_a4000, s_a4000t, s_cdtv, s_cd32, s_draco, | ||
65 | }; | ||
66 | |||
67 | static char amiga_model_name[13] = "Amiga "; | ||
68 | |||
69 | extern char m68k_debug_device[]; | ||
70 | |||
71 | static void amiga_sched_init(irqreturn_t (*handler)(int, void *, struct pt_regs *)); | ||
72 | /* amiga specific irq functions */ | ||
73 | extern void amiga_init_IRQ (void); | ||
74 | extern void (*amiga_default_handler[]) (int, void *, struct pt_regs *); | ||
75 | extern int amiga_request_irq (unsigned int irq, | ||
76 | void (*handler)(int, void *, struct pt_regs *), | ||
77 | unsigned long flags, const char *devname, | ||
78 | void *dev_id); | ||
79 | extern void amiga_free_irq (unsigned int irq, void *dev_id); | ||
80 | extern void amiga_enable_irq (unsigned int); | ||
81 | extern void amiga_disable_irq (unsigned int); | ||
82 | static void amiga_get_model(char *model); | ||
83 | static int amiga_get_hardware_list(char *buffer); | ||
84 | /* amiga specific timer functions */ | ||
85 | static unsigned long amiga_gettimeoffset (void); | ||
86 | static void a3000_gettod (int *, int *, int *, int *, int *, int *); | ||
87 | static void a2000_gettod (int *, int *, int *, int *, int *, int *); | ||
88 | static int amiga_hwclk (int, struct hwclk_time *); | ||
89 | static int amiga_set_clock_mmss (unsigned long); | ||
90 | static void amiga_reset (void); | ||
91 | extern void amiga_init_sound(void); | ||
92 | static void amiga_savekmsg_init(void); | ||
93 | static void amiga_mem_console_write(struct console *co, const char *b, | ||
94 | unsigned int count); | ||
95 | void amiga_serial_console_write(struct console *co, const char *s, | ||
96 | unsigned int count); | ||
97 | static void amiga_debug_init(void); | ||
98 | #ifdef CONFIG_HEARTBEAT | ||
99 | static void amiga_heartbeat(int on); | ||
100 | #endif | ||
101 | |||
102 | static struct console amiga_console_driver = { | ||
103 | .name = "debug", | ||
104 | .flags = CON_PRINTBUFFER, | ||
105 | .index = -1, | ||
106 | }; | ||
107 | |||
108 | |||
109 | /* | ||
110 | * Motherboard Resources present in all Amiga models | ||
111 | */ | ||
112 | |||
113 | static struct { | ||
114 | struct resource _ciab, _ciaa, _custom, _kickstart; | ||
115 | } mb_resources = { | ||
116 | // { "Ranger Memory", 0x00c00000, 0x00c7ffff }, | ||
117 | ._ciab = { "CIA B", 0x00bfd000, 0x00bfdfff }, | ||
118 | ._ciaa = { "CIA A", 0x00bfe000, 0x00bfefff }, | ||
119 | ._custom = { "Custom I/O", 0x00dff000, 0x00dfffff }, | ||
120 | ._kickstart = { "Kickstart ROM", 0x00f80000, 0x00ffffff } | ||
121 | }; | ||
122 | |||
123 | static struct resource rtc_resource = { | ||
124 | NULL, 0x00dc0000, 0x00dcffff | ||
125 | }; | ||
126 | |||
127 | static struct resource ram_resource[NUM_MEMINFO]; | ||
128 | |||
129 | |||
130 | /* | ||
131 | * Parse an Amiga-specific record in the bootinfo | ||
132 | */ | ||
133 | |||
134 | int amiga_parse_bootinfo(const struct bi_record *record) | ||
135 | { | ||
136 | int unknown = 0; | ||
137 | const unsigned long *data = record->data; | ||
138 | |||
139 | switch (record->tag) { | ||
140 | case BI_AMIGA_MODEL: | ||
141 | { | ||
142 | unsigned long d = *data; | ||
143 | |||
144 | powerup_PCI_present = d & 0x100; | ||
145 | amiga_model = d & 0xff; | ||
146 | } | ||
147 | break; | ||
148 | |||
149 | case BI_AMIGA_ECLOCK: | ||
150 | amiga_eclock = *data; | ||
151 | break; | ||
152 | |||
153 | case BI_AMIGA_CHIPSET: | ||
154 | amiga_chipset = *data; | ||
155 | break; | ||
156 | |||
157 | case BI_AMIGA_CHIP_SIZE: | ||
158 | amiga_chip_size = *(const int *)data; | ||
159 | break; | ||
160 | |||
161 | case BI_AMIGA_VBLANK: | ||
162 | amiga_vblank = *(const unsigned char *)data; | ||
163 | break; | ||
164 | |||
165 | case BI_AMIGA_PSFREQ: | ||
166 | amiga_psfreq = *(const unsigned char *)data; | ||
167 | break; | ||
168 | |||
169 | case BI_AMIGA_AUTOCON: | ||
170 | #ifdef CONFIG_ZORRO | ||
171 | if (zorro_num_autocon < ZORRO_NUM_AUTO) { | ||
172 | const struct ConfigDev *cd = (struct ConfigDev *)data; | ||
173 | struct zorro_dev *dev = &zorro_autocon[zorro_num_autocon++]; | ||
174 | dev->rom = cd->cd_Rom; | ||
175 | dev->slotaddr = cd->cd_SlotAddr; | ||
176 | dev->slotsize = cd->cd_SlotSize; | ||
177 | dev->resource.start = (unsigned long)cd->cd_BoardAddr; | ||
178 | dev->resource.end = dev->resource.start+cd->cd_BoardSize-1; | ||
179 | } else | ||
180 | printk("amiga_parse_bootinfo: too many AutoConfig devices\n"); | ||
181 | #endif /* CONFIG_ZORRO */ | ||
182 | break; | ||
183 | |||
184 | case BI_AMIGA_SERPER: | ||
185 | /* serial port period: ignored here */ | ||
186 | break; | ||
187 | |||
188 | case BI_AMIGA_PUP_BRIDGE: | ||
189 | powerup_PCI_present = *(const unsigned short *)data; | ||
190 | break; | ||
191 | |||
192 | case BI_AMIGA_BPPC_SCSI: | ||
193 | powerup_BPPCPLUS_present = *(const unsigned short *)data; | ||
194 | break; | ||
195 | |||
196 | default: | ||
197 | unknown = 1; | ||
198 | } | ||
199 | return(unknown); | ||
200 | } | ||
201 | |||
202 | /* | ||
203 | * Identify builtin hardware | ||
204 | */ | ||
205 | |||
206 | static void __init amiga_identify(void) | ||
207 | { | ||
208 | /* Fill in some default values, if necessary */ | ||
209 | if (amiga_eclock == 0) | ||
210 | amiga_eclock = 709379; | ||
211 | |||
212 | memset(&amiga_hw_present, 0, sizeof(amiga_hw_present)); | ||
213 | |||
214 | printk("Amiga hardware found: "); | ||
215 | if (amiga_model >= AMI_500 && amiga_model <= AMI_DRACO) { | ||
216 | printk("[%s] ", amiga_models[amiga_model-AMI_500]); | ||
217 | strcat(amiga_model_name, amiga_models[amiga_model-AMI_500]); | ||
218 | } | ||
219 | |||
220 | switch(amiga_model) { | ||
221 | case AMI_UNKNOWN: | ||
222 | goto Generic; | ||
223 | |||
224 | case AMI_600: | ||
225 | case AMI_1200: | ||
226 | AMIGAHW_SET(A1200_IDE); | ||
227 | AMIGAHW_SET(PCMCIA); | ||
228 | case AMI_500: | ||
229 | case AMI_500PLUS: | ||
230 | case AMI_1000: | ||
231 | case AMI_2000: | ||
232 | case AMI_2500: | ||
233 | AMIGAHW_SET(A2000_CLK); /* Is this correct for all models? */ | ||
234 | goto Generic; | ||
235 | |||
236 | case AMI_3000: | ||
237 | case AMI_3000T: | ||
238 | AMIGAHW_SET(AMBER_FF); | ||
239 | AMIGAHW_SET(MAGIC_REKICK); | ||
240 | /* fall through */ | ||
241 | case AMI_3000PLUS: | ||
242 | AMIGAHW_SET(A3000_SCSI); | ||
243 | AMIGAHW_SET(A3000_CLK); | ||
244 | AMIGAHW_SET(ZORRO3); | ||
245 | goto Generic; | ||
246 | |||
247 | case AMI_4000T: | ||
248 | AMIGAHW_SET(A4000_SCSI); | ||
249 | /* fall through */ | ||
250 | case AMI_4000: | ||
251 | AMIGAHW_SET(A4000_IDE); | ||
252 | AMIGAHW_SET(A3000_CLK); | ||
253 | AMIGAHW_SET(ZORRO3); | ||
254 | goto Generic; | ||
255 | |||
256 | case AMI_CDTV: | ||
257 | case AMI_CD32: | ||
258 | AMIGAHW_SET(CD_ROM); | ||
259 | AMIGAHW_SET(A2000_CLK); /* Is this correct? */ | ||
260 | goto Generic; | ||
261 | |||
262 | Generic: | ||
263 | AMIGAHW_SET(AMI_VIDEO); | ||
264 | AMIGAHW_SET(AMI_BLITTER); | ||
265 | AMIGAHW_SET(AMI_AUDIO); | ||
266 | AMIGAHW_SET(AMI_FLOPPY); | ||
267 | AMIGAHW_SET(AMI_KEYBOARD); | ||
268 | AMIGAHW_SET(AMI_MOUSE); | ||
269 | AMIGAHW_SET(AMI_SERIAL); | ||
270 | AMIGAHW_SET(AMI_PARALLEL); | ||
271 | AMIGAHW_SET(CHIP_RAM); | ||
272 | AMIGAHW_SET(PAULA); | ||
273 | |||
274 | switch(amiga_chipset) { | ||
275 | case CS_OCS: | ||
276 | case CS_ECS: | ||
277 | case CS_AGA: | ||
278 | switch (amiga_custom.deniseid & 0xf) { | ||
279 | case 0x0c: | ||
280 | AMIGAHW_SET(DENISE_HR); | ||
281 | break; | ||
282 | case 0x08: | ||
283 | AMIGAHW_SET(LISA); | ||
284 | break; | ||
285 | } | ||
286 | break; | ||
287 | default: | ||
288 | AMIGAHW_SET(DENISE); | ||
289 | break; | ||
290 | } | ||
291 | switch ((amiga_custom.vposr>>8) & 0x7f) { | ||
292 | case 0x00: | ||
293 | AMIGAHW_SET(AGNUS_PAL); | ||
294 | break; | ||
295 | case 0x10: | ||
296 | AMIGAHW_SET(AGNUS_NTSC); | ||
297 | break; | ||
298 | case 0x20: | ||
299 | case 0x21: | ||
300 | AMIGAHW_SET(AGNUS_HR_PAL); | ||
301 | break; | ||
302 | case 0x30: | ||
303 | case 0x31: | ||
304 | AMIGAHW_SET(AGNUS_HR_NTSC); | ||
305 | break; | ||
306 | case 0x22: | ||
307 | case 0x23: | ||
308 | AMIGAHW_SET(ALICE_PAL); | ||
309 | break; | ||
310 | case 0x32: | ||
311 | case 0x33: | ||
312 | AMIGAHW_SET(ALICE_NTSC); | ||
313 | break; | ||
314 | } | ||
315 | AMIGAHW_SET(ZORRO); | ||
316 | break; | ||
317 | |||
318 | case AMI_DRACO: | ||
319 | panic("No support for Draco yet"); | ||
320 | |||
321 | default: | ||
322 | panic("Unknown Amiga Model"); | ||
323 | } | ||
324 | |||
325 | #define AMIGAHW_ANNOUNCE(name, str) \ | ||
326 | if (AMIGAHW_PRESENT(name)) \ | ||
327 | printk(str) | ||
328 | |||
329 | AMIGAHW_ANNOUNCE(AMI_VIDEO, "VIDEO "); | ||
330 | AMIGAHW_ANNOUNCE(AMI_BLITTER, "BLITTER "); | ||
331 | AMIGAHW_ANNOUNCE(AMBER_FF, "AMBER_FF "); | ||
332 | AMIGAHW_ANNOUNCE(AMI_AUDIO, "AUDIO "); | ||
333 | AMIGAHW_ANNOUNCE(AMI_FLOPPY, "FLOPPY "); | ||
334 | AMIGAHW_ANNOUNCE(A3000_SCSI, "A3000_SCSI "); | ||
335 | AMIGAHW_ANNOUNCE(A4000_SCSI, "A4000_SCSI "); | ||
336 | AMIGAHW_ANNOUNCE(A1200_IDE, "A1200_IDE "); | ||
337 | AMIGAHW_ANNOUNCE(A4000_IDE, "A4000_IDE "); | ||
338 | AMIGAHW_ANNOUNCE(CD_ROM, "CD_ROM "); | ||
339 | AMIGAHW_ANNOUNCE(AMI_KEYBOARD, "KEYBOARD "); | ||
340 | AMIGAHW_ANNOUNCE(AMI_MOUSE, "MOUSE "); | ||
341 | AMIGAHW_ANNOUNCE(AMI_SERIAL, "SERIAL "); | ||
342 | AMIGAHW_ANNOUNCE(AMI_PARALLEL, "PARALLEL "); | ||
343 | AMIGAHW_ANNOUNCE(A2000_CLK, "A2000_CLK "); | ||
344 | AMIGAHW_ANNOUNCE(A3000_CLK, "A3000_CLK "); | ||
345 | AMIGAHW_ANNOUNCE(CHIP_RAM, "CHIP_RAM "); | ||
346 | AMIGAHW_ANNOUNCE(PAULA, "PAULA "); | ||
347 | AMIGAHW_ANNOUNCE(DENISE, "DENISE "); | ||
348 | AMIGAHW_ANNOUNCE(DENISE_HR, "DENISE_HR "); | ||
349 | AMIGAHW_ANNOUNCE(LISA, "LISA "); | ||
350 | AMIGAHW_ANNOUNCE(AGNUS_PAL, "AGNUS_PAL "); | ||
351 | AMIGAHW_ANNOUNCE(AGNUS_NTSC, "AGNUS_NTSC "); | ||
352 | AMIGAHW_ANNOUNCE(AGNUS_HR_PAL, "AGNUS_HR_PAL "); | ||
353 | AMIGAHW_ANNOUNCE(AGNUS_HR_NTSC, "AGNUS_HR_NTSC "); | ||
354 | AMIGAHW_ANNOUNCE(ALICE_PAL, "ALICE_PAL "); | ||
355 | AMIGAHW_ANNOUNCE(ALICE_NTSC, "ALICE_NTSC "); | ||
356 | AMIGAHW_ANNOUNCE(MAGIC_REKICK, "MAGIC_REKICK "); | ||
357 | AMIGAHW_ANNOUNCE(PCMCIA, "PCMCIA "); | ||
358 | if (AMIGAHW_PRESENT(ZORRO)) | ||
359 | printk("ZORRO%s ", AMIGAHW_PRESENT(ZORRO3) ? "3" : ""); | ||
360 | printk("\n"); | ||
361 | |||
362 | #undef AMIGAHW_ANNOUNCE | ||
363 | } | ||
364 | |||
365 | /* | ||
366 | * Setup the Amiga configuration info | ||
367 | */ | ||
368 | |||
369 | void __init config_amiga(void) | ||
370 | { | ||
371 | int i; | ||
372 | |||
373 | amiga_debug_init(); | ||
374 | amiga_identify(); | ||
375 | |||
376 | /* Some APUS boxes may have PCI memory, but ... */ | ||
377 | iomem_resource.name = "Memory"; | ||
378 | for (i = 0; i < 4; i++) | ||
379 | request_resource(&iomem_resource, &((struct resource *)&mb_resources)[i]); | ||
380 | |||
381 | mach_sched_init = amiga_sched_init; | ||
382 | mach_init_IRQ = amiga_init_IRQ; | ||
383 | #ifndef CONFIG_APUS | ||
384 | mach_default_handler = &amiga_default_handler; | ||
385 | mach_request_irq = amiga_request_irq; | ||
386 | mach_free_irq = amiga_free_irq; | ||
387 | enable_irq = amiga_enable_irq; | ||
388 | disable_irq = amiga_disable_irq; | ||
389 | #endif | ||
390 | mach_get_model = amiga_get_model; | ||
391 | mach_get_hardware_list = amiga_get_hardware_list; | ||
392 | mach_gettimeoffset = amiga_gettimeoffset; | ||
393 | if (AMIGAHW_PRESENT(A3000_CLK)){ | ||
394 | mach_gettod = a3000_gettod; | ||
395 | rtc_resource.name = "A3000 RTC"; | ||
396 | request_resource(&iomem_resource, &rtc_resource); | ||
397 | } | ||
398 | else{ /* if (AMIGAHW_PRESENT(A2000_CLK)) */ | ||
399 | mach_gettod = a2000_gettod; | ||
400 | rtc_resource.name = "A2000 RTC"; | ||
401 | request_resource(&iomem_resource, &rtc_resource); | ||
402 | } | ||
403 | |||
404 | mach_max_dma_address = 0xffffffff; /* | ||
405 | * default MAX_DMA=0xffffffff | ||
406 | * on all machines. If we don't | ||
407 | * do so, the SCSI code will not | ||
408 | * be able to allocate any mem | ||
409 | * for transfers, unless we are | ||
410 | * dealing with a Z2 mem only | ||
411 | * system. /Jes | ||
412 | */ | ||
413 | |||
414 | mach_hwclk = amiga_hwclk; | ||
415 | mach_set_clock_mmss = amiga_set_clock_mmss; | ||
416 | mach_reset = amiga_reset; | ||
417 | #ifdef CONFIG_HEARTBEAT | ||
418 | mach_heartbeat = amiga_heartbeat; | ||
419 | #endif | ||
420 | |||
421 | /* Fill in the clock values (based on the 700 kHz E-Clock) */ | ||
422 | amiga_masterclock = 40*amiga_eclock; /* 28 MHz */ | ||
423 | amiga_colorclock = 5*amiga_eclock; /* 3.5 MHz */ | ||
424 | |||
425 | /* clear all DMA bits */ | ||
426 | amiga_custom.dmacon = DMAF_ALL; | ||
427 | /* ensure that the DMA master bit is set */ | ||
428 | amiga_custom.dmacon = DMAF_SETCLR | DMAF_MASTER; | ||
429 | |||
430 | /* request all RAM */ | ||
431 | for (i = 0; i < m68k_num_memory; i++) { | ||
432 | ram_resource[i].name = | ||
433 | (m68k_memory[i].addr >= 0x01000000) ? "32-bit Fast RAM" : | ||
434 | (m68k_memory[i].addr < 0x00c00000) ? "16-bit Fast RAM" : | ||
435 | "16-bit Slow RAM"; | ||
436 | ram_resource[i].start = m68k_memory[i].addr; | ||
437 | ram_resource[i].end = m68k_memory[i].addr+m68k_memory[i].size-1; | ||
438 | request_resource(&iomem_resource, &ram_resource[i]); | ||
439 | } | ||
440 | |||
441 | /* initialize chipram allocator */ | ||
442 | amiga_chip_init (); | ||
443 | |||
444 | /* debugging using chipram */ | ||
445 | if (!strcmp( m68k_debug_device, "mem" )){ | ||
446 | if (!AMIGAHW_PRESENT(CHIP_RAM)) | ||
447 | printk("Warning: no chipram present for debugging\n"); | ||
448 | else { | ||
449 | amiga_savekmsg_init(); | ||
450 | amiga_console_driver.write = amiga_mem_console_write; | ||
451 | register_console(&amiga_console_driver); | ||
452 | } | ||
453 | } | ||
454 | |||
455 | /* our beloved beeper */ | ||
456 | if (AMIGAHW_PRESENT(AMI_AUDIO)) | ||
457 | amiga_init_sound(); | ||
458 | |||
459 | /* | ||
460 | * if it is an A3000, set the magic bit that forces | ||
461 | * a hard rekick | ||
462 | */ | ||
463 | if (AMIGAHW_PRESENT(MAGIC_REKICK)) | ||
464 | *(unsigned char *)ZTWO_VADDR(0xde0002) |= 0x80; | ||
465 | } | ||
466 | |||
467 | static unsigned short jiffy_ticks; | ||
468 | |||
469 | static void __init amiga_sched_init(irqreturn_t (*timer_routine)(int, void *, | ||
470 | struct pt_regs *)) | ||
471 | { | ||
472 | static struct resource sched_res = { | ||
473 | "timer", 0x00bfd400, 0x00bfd5ff, | ||
474 | }; | ||
475 | jiffy_ticks = (amiga_eclock+HZ/2)/HZ; | ||
476 | |||
477 | if (request_resource(&mb_resources._ciab, &sched_res)) | ||
478 | printk("Cannot allocate ciab.ta{lo,hi}\n"); | ||
479 | ciab.cra &= 0xC0; /* turn off timer A, continuous mode, from Eclk */ | ||
480 | ciab.talo = jiffy_ticks % 256; | ||
481 | ciab.tahi = jiffy_ticks / 256; | ||
482 | |||
483 | /* install interrupt service routine for CIAB Timer A | ||
484 | * | ||
485 | * Please don't change this to use ciaa, as it interferes with the | ||
486 | * SCSI code. We'll have to take a look at this later | ||
487 | */ | ||
488 | request_irq(IRQ_AMIGA_CIAB_TA, timer_routine, 0, "timer", NULL); | ||
489 | /* start timer */ | ||
490 | ciab.cra |= 0x11; | ||
491 | } | ||
492 | |||
493 | #define TICK_SIZE 10000 | ||
494 | |||
495 | extern unsigned char cia_get_irq_mask(unsigned int irq); | ||
496 | |||
497 | /* This is always executed with interrupts disabled. */ | ||
498 | static unsigned long amiga_gettimeoffset (void) | ||
499 | { | ||
500 | unsigned short hi, lo, hi2; | ||
501 | unsigned long ticks, offset = 0; | ||
502 | |||
503 | /* read CIA B timer A current value */ | ||
504 | hi = ciab.tahi; | ||
505 | lo = ciab.talo; | ||
506 | hi2 = ciab.tahi; | ||
507 | |||
508 | if (hi != hi2) { | ||
509 | lo = ciab.talo; | ||
510 | hi = hi2; | ||
511 | } | ||
512 | |||
513 | ticks = hi << 8 | lo; | ||
514 | |||
515 | if (ticks > jiffy_ticks / 2) | ||
516 | /* check for pending interrupt */ | ||
517 | if (cia_get_irq_mask(IRQ_AMIGA_CIAB) & CIA_ICR_TA) | ||
518 | offset = 10000; | ||
519 | |||
520 | ticks = jiffy_ticks - ticks; | ||
521 | ticks = (10000 * ticks) / jiffy_ticks; | ||
522 | |||
523 | return ticks + offset; | ||
524 | } | ||
525 | |||
526 | static void a3000_gettod (int *yearp, int *monp, int *dayp, | ||
527 | int *hourp, int *minp, int *secp) | ||
528 | { | ||
529 | volatile struct tod3000 *tod = TOD_3000; | ||
530 | |||
531 | tod->cntrl1 = TOD3000_CNTRL1_HOLD; | ||
532 | |||
533 | *secp = tod->second1 * 10 + tod->second2; | ||
534 | *minp = tod->minute1 * 10 + tod->minute2; | ||
535 | *hourp = tod->hour1 * 10 + tod->hour2; | ||
536 | *dayp = tod->day1 * 10 + tod->day2; | ||
537 | *monp = tod->month1 * 10 + tod->month2; | ||
538 | *yearp = tod->year1 * 10 + tod->year2; | ||
539 | |||
540 | tod->cntrl1 = TOD3000_CNTRL1_FREE; | ||
541 | } | ||
542 | |||
543 | static void a2000_gettod (int *yearp, int *monp, int *dayp, | ||
544 | int *hourp, int *minp, int *secp) | ||
545 | { | ||
546 | volatile struct tod2000 *tod = TOD_2000; | ||
547 | |||
548 | tod->cntrl1 = TOD2000_CNTRL1_HOLD; | ||
549 | |||
550 | while (tod->cntrl1 & TOD2000_CNTRL1_BUSY) | ||
551 | ; | ||
552 | |||
553 | *secp = tod->second1 * 10 + tod->second2; | ||
554 | *minp = tod->minute1 * 10 + tod->minute2; | ||
555 | *hourp = (tod->hour1 & 3) * 10 + tod->hour2; | ||
556 | *dayp = tod->day1 * 10 + tod->day2; | ||
557 | *monp = tod->month1 * 10 + tod->month2; | ||
558 | *yearp = tod->year1 * 10 + tod->year2; | ||
559 | |||
560 | if (!(tod->cntrl3 & TOD2000_CNTRL3_24HMODE)){ | ||
561 | if (!(tod->hour1 & TOD2000_HOUR1_PM) && *hourp == 12) | ||
562 | *hourp = 0; | ||
563 | else if ((tod->hour1 & TOD2000_HOUR1_PM) && *hourp != 12) | ||
564 | *hourp += 12; | ||
565 | } | ||
566 | |||
567 | tod->cntrl1 &= ~TOD2000_CNTRL1_HOLD; | ||
568 | } | ||
569 | |||
570 | static int amiga_hwclk(int op, struct hwclk_time *t) | ||
571 | { | ||
572 | if (AMIGAHW_PRESENT(A3000_CLK)) { | ||
573 | volatile struct tod3000 *tod = TOD_3000; | ||
574 | |||
575 | tod->cntrl1 = TOD3000_CNTRL1_HOLD; | ||
576 | |||
577 | if (!op) { /* read */ | ||
578 | t->sec = tod->second1 * 10 + tod->second2; | ||
579 | t->min = tod->minute1 * 10 + tod->minute2; | ||
580 | t->hour = tod->hour1 * 10 + tod->hour2; | ||
581 | t->day = tod->day1 * 10 + tod->day2; | ||
582 | t->wday = tod->weekday; | ||
583 | t->mon = tod->month1 * 10 + tod->month2 - 1; | ||
584 | t->year = tod->year1 * 10 + tod->year2; | ||
585 | if (t->year <= 69) | ||
586 | t->year += 100; | ||
587 | } else { | ||
588 | tod->second1 = t->sec / 10; | ||
589 | tod->second2 = t->sec % 10; | ||
590 | tod->minute1 = t->min / 10; | ||
591 | tod->minute2 = t->min % 10; | ||
592 | tod->hour1 = t->hour / 10; | ||
593 | tod->hour2 = t->hour % 10; | ||
594 | tod->day1 = t->day / 10; | ||
595 | tod->day2 = t->day % 10; | ||
596 | if (t->wday != -1) | ||
597 | tod->weekday = t->wday; | ||
598 | tod->month1 = (t->mon + 1) / 10; | ||
599 | tod->month2 = (t->mon + 1) % 10; | ||
600 | if (t->year >= 100) | ||
601 | t->year -= 100; | ||
602 | tod->year1 = t->year / 10; | ||
603 | tod->year2 = t->year % 10; | ||
604 | } | ||
605 | |||
606 | tod->cntrl1 = TOD3000_CNTRL1_FREE; | ||
607 | } else /* if (AMIGAHW_PRESENT(A2000_CLK)) */ { | ||
608 | volatile struct tod2000 *tod = TOD_2000; | ||
609 | |||
610 | tod->cntrl1 = TOD2000_CNTRL1_HOLD; | ||
611 | |||
612 | while (tod->cntrl1 & TOD2000_CNTRL1_BUSY) | ||
613 | ; | ||
614 | |||
615 | if (!op) { /* read */ | ||
616 | t->sec = tod->second1 * 10 + tod->second2; | ||
617 | t->min = tod->minute1 * 10 + tod->minute2; | ||
618 | t->hour = (tod->hour1 & 3) * 10 + tod->hour2; | ||
619 | t->day = tod->day1 * 10 + tod->day2; | ||
620 | t->wday = tod->weekday; | ||
621 | t->mon = tod->month1 * 10 + tod->month2 - 1; | ||
622 | t->year = tod->year1 * 10 + tod->year2; | ||
623 | if (t->year <= 69) | ||
624 | t->year += 100; | ||
625 | |||
626 | if (!(tod->cntrl3 & TOD2000_CNTRL3_24HMODE)){ | ||
627 | if (!(tod->hour1 & TOD2000_HOUR1_PM) && t->hour == 12) | ||
628 | t->hour = 0; | ||
629 | else if ((tod->hour1 & TOD2000_HOUR1_PM) && t->hour != 12) | ||
630 | t->hour += 12; | ||
631 | } | ||
632 | } else { | ||
633 | tod->second1 = t->sec / 10; | ||
634 | tod->second2 = t->sec % 10; | ||
635 | tod->minute1 = t->min / 10; | ||
636 | tod->minute2 = t->min % 10; | ||
637 | if (tod->cntrl3 & TOD2000_CNTRL3_24HMODE) | ||
638 | tod->hour1 = t->hour / 10; | ||
639 | else if (t->hour >= 12) | ||
640 | tod->hour1 = TOD2000_HOUR1_PM + | ||
641 | (t->hour - 12) / 10; | ||
642 | else | ||
643 | tod->hour1 = t->hour / 10; | ||
644 | tod->hour2 = t->hour % 10; | ||
645 | tod->day1 = t->day / 10; | ||
646 | tod->day2 = t->day % 10; | ||
647 | if (t->wday != -1) | ||
648 | tod->weekday = t->wday; | ||
649 | tod->month1 = (t->mon + 1) / 10; | ||
650 | tod->month2 = (t->mon + 1) % 10; | ||
651 | if (t->year >= 100) | ||
652 | t->year -= 100; | ||
653 | tod->year1 = t->year / 10; | ||
654 | tod->year2 = t->year % 10; | ||
655 | } | ||
656 | |||
657 | tod->cntrl1 &= ~TOD2000_CNTRL1_HOLD; | ||
658 | } | ||
659 | |||
660 | return 0; | ||
661 | } | ||
662 | |||
663 | static int amiga_set_clock_mmss (unsigned long nowtime) | ||
664 | { | ||
665 | short real_seconds = nowtime % 60, real_minutes = (nowtime / 60) % 60; | ||
666 | |||
667 | if (AMIGAHW_PRESENT(A3000_CLK)) { | ||
668 | volatile struct tod3000 *tod = TOD_3000; | ||
669 | |||
670 | tod->cntrl1 = TOD3000_CNTRL1_HOLD; | ||
671 | |||
672 | tod->second1 = real_seconds / 10; | ||
673 | tod->second2 = real_seconds % 10; | ||
674 | tod->minute1 = real_minutes / 10; | ||
675 | tod->minute2 = real_minutes % 10; | ||
676 | |||
677 | tod->cntrl1 = TOD3000_CNTRL1_FREE; | ||
678 | } else /* if (AMIGAHW_PRESENT(A2000_CLK)) */ { | ||
679 | volatile struct tod2000 *tod = TOD_2000; | ||
680 | |||
681 | tod->cntrl1 = TOD2000_CNTRL1_HOLD; | ||
682 | |||
683 | while (tod->cntrl1 & TOD2000_CNTRL1_BUSY) | ||
684 | ; | ||
685 | |||
686 | tod->second1 = real_seconds / 10; | ||
687 | tod->second2 = real_seconds % 10; | ||
688 | tod->minute1 = real_minutes / 10; | ||
689 | tod->minute2 = real_minutes % 10; | ||
690 | |||
691 | tod->cntrl1 &= ~TOD2000_CNTRL1_HOLD; | ||
692 | } | ||
693 | |||
694 | return 0; | ||
695 | } | ||
696 | |||
697 | static NORET_TYPE void amiga_reset( void ) | ||
698 | ATTRIB_NORET; | ||
699 | |||
700 | static void amiga_reset (void) | ||
701 | { | ||
702 | for (;;); | ||
703 | } | ||
704 | |||
705 | |||
706 | /* | ||
707 | * Debugging | ||
708 | */ | ||
709 | |||
710 | #define SAVEKMSG_MAXMEM 128*1024 | ||
711 | |||
712 | #define SAVEKMSG_MAGIC1 0x53415645 /* 'SAVE' */ | ||
713 | #define SAVEKMSG_MAGIC2 0x4B4D5347 /* 'KMSG' */ | ||
714 | |||
715 | struct savekmsg { | ||
716 | unsigned long magic1; /* SAVEKMSG_MAGIC1 */ | ||
717 | unsigned long magic2; /* SAVEKMSG_MAGIC2 */ | ||
718 | unsigned long magicptr; /* address of magic1 */ | ||
719 | unsigned long size; | ||
720 | char data[0]; | ||
721 | }; | ||
722 | |||
723 | static struct savekmsg *savekmsg = NULL; | ||
724 | |||
725 | static void amiga_mem_console_write(struct console *co, const char *s, | ||
726 | unsigned int count) | ||
727 | { | ||
728 | if (savekmsg->size+count <= SAVEKMSG_MAXMEM-sizeof(struct savekmsg)) { | ||
729 | memcpy(savekmsg->data+savekmsg->size, s, count); | ||
730 | savekmsg->size += count; | ||
731 | } | ||
732 | } | ||
733 | |||
734 | static void amiga_savekmsg_init(void) | ||
735 | { | ||
736 | static struct resource debug_res = { "Debug" }; | ||
737 | |||
738 | savekmsg = amiga_chip_alloc_res(SAVEKMSG_MAXMEM, &debug_res); | ||
739 | savekmsg->magic1 = SAVEKMSG_MAGIC1; | ||
740 | savekmsg->magic2 = SAVEKMSG_MAGIC2; | ||
741 | savekmsg->magicptr = virt_to_phys(savekmsg); | ||
742 | savekmsg->size = 0; | ||
743 | } | ||
744 | |||
745 | static void amiga_serial_putc(char c) | ||
746 | { | ||
747 | amiga_custom.serdat = (unsigned char)c | 0x100; | ||
748 | mb(); | ||
749 | while (!(amiga_custom.serdatr & 0x2000)) | ||
750 | ; | ||
751 | } | ||
752 | |||
753 | void amiga_serial_console_write(struct console *co, const char *s, | ||
754 | unsigned int count) | ||
755 | { | ||
756 | #if 0 /* def CONFIG_KGDB */ | ||
757 | /* FIXME:APUS GDB doesn't seem to like O-packages before it is | ||
758 | properly connected with the target. */ | ||
759 | __gdb_output_string (s, count); | ||
760 | #else | ||
761 | while (count--) { | ||
762 | if (*s == '\n') | ||
763 | amiga_serial_putc('\r'); | ||
764 | amiga_serial_putc(*s++); | ||
765 | } | ||
766 | #endif | ||
767 | } | ||
768 | |||
769 | #ifdef CONFIG_SERIAL_CONSOLE | ||
770 | void amiga_serial_puts(const char *s) | ||
771 | { | ||
772 | amiga_serial_console_write(NULL, s, strlen(s)); | ||
773 | } | ||
774 | |||
775 | int amiga_serial_console_wait_key(struct console *co) | ||
776 | { | ||
777 | int ch; | ||
778 | |||
779 | while (!(amiga_custom.intreqr & IF_RBF)) | ||
780 | barrier(); | ||
781 | ch = amiga_custom.serdatr & 0xff; | ||
782 | /* clear the interrupt, so that another character can be read */ | ||
783 | amiga_custom.intreq = IF_RBF; | ||
784 | return ch; | ||
785 | } | ||
786 | |||
787 | void amiga_serial_gets(struct console *co, char *s, int len) | ||
788 | { | ||
789 | int ch, cnt = 0; | ||
790 | |||
791 | while (1) { | ||
792 | ch = amiga_serial_console_wait_key(co); | ||
793 | |||
794 | /* Check for backspace. */ | ||
795 | if (ch == 8 || ch == 127) { | ||
796 | if (cnt == 0) { | ||
797 | amiga_serial_putc('\007'); | ||
798 | continue; | ||
799 | } | ||
800 | cnt--; | ||
801 | amiga_serial_puts("\010 \010"); | ||
802 | continue; | ||
803 | } | ||
804 | |||
805 | /* Check for enter. */ | ||
806 | if (ch == 10 || ch == 13) | ||
807 | break; | ||
808 | |||
809 | /* See if line is too long. */ | ||
810 | if (cnt >= len + 1) { | ||
811 | amiga_serial_putc(7); | ||
812 | cnt--; | ||
813 | continue; | ||
814 | } | ||
815 | |||
816 | /* Store and echo character. */ | ||
817 | s[cnt++] = ch; | ||
818 | amiga_serial_putc(ch); | ||
819 | } | ||
820 | /* Print enter. */ | ||
821 | amiga_serial_puts("\r\n"); | ||
822 | s[cnt] = 0; | ||
823 | } | ||
824 | #endif | ||
825 | |||
826 | static void __init amiga_debug_init(void) | ||
827 | { | ||
828 | if (!strcmp( m68k_debug_device, "ser" )) { | ||
829 | /* no initialization required (?) */ | ||
830 | amiga_console_driver.write = amiga_serial_console_write; | ||
831 | register_console(&amiga_console_driver); | ||
832 | } | ||
833 | } | ||
834 | |||
835 | #ifdef CONFIG_HEARTBEAT | ||
836 | static void amiga_heartbeat(int on) | ||
837 | { | ||
838 | if (on) | ||
839 | ciaa.pra &= ~2; | ||
840 | else | ||
841 | ciaa.pra |= 2; | ||
842 | } | ||
843 | #endif | ||
844 | |||
845 | /* | ||
846 | * Amiga specific parts of /proc | ||
847 | */ | ||
848 | |||
849 | static void amiga_get_model(char *model) | ||
850 | { | ||
851 | strcpy(model, amiga_model_name); | ||
852 | } | ||
853 | |||
854 | |||
855 | static int amiga_get_hardware_list(char *buffer) | ||
856 | { | ||
857 | int len = 0; | ||
858 | |||
859 | if (AMIGAHW_PRESENT(CHIP_RAM)) | ||
860 | len += sprintf(buffer+len, "Chip RAM:\t%ldK\n", amiga_chip_size>>10); | ||
861 | len += sprintf(buffer+len, "PS Freq:\t%dHz\nEClock Freq:\t%ldHz\n", | ||
862 | amiga_psfreq, amiga_eclock); | ||
863 | if (AMIGAHW_PRESENT(AMI_VIDEO)) { | ||
864 | char *type; | ||
865 | switch(amiga_chipset) { | ||
866 | case CS_OCS: | ||
867 | type = "OCS"; | ||
868 | break; | ||
869 | case CS_ECS: | ||
870 | type = "ECS"; | ||
871 | break; | ||
872 | case CS_AGA: | ||
873 | type = "AGA"; | ||
874 | break; | ||
875 | default: | ||
876 | type = "Old or Unknown"; | ||
877 | break; | ||
878 | } | ||
879 | len += sprintf(buffer+len, "Graphics:\t%s\n", type); | ||
880 | } | ||
881 | |||
882 | #define AMIGAHW_ANNOUNCE(name, str) \ | ||
883 | if (AMIGAHW_PRESENT(name)) \ | ||
884 | len += sprintf (buffer+len, "\t%s\n", str) | ||
885 | |||
886 | len += sprintf (buffer + len, "Detected hardware:\n"); | ||
887 | |||
888 | AMIGAHW_ANNOUNCE(AMI_VIDEO, "Amiga Video"); | ||
889 | AMIGAHW_ANNOUNCE(AMI_BLITTER, "Blitter"); | ||
890 | AMIGAHW_ANNOUNCE(AMBER_FF, "Amber Flicker Fixer"); | ||
891 | AMIGAHW_ANNOUNCE(AMI_AUDIO, "Amiga Audio"); | ||
892 | AMIGAHW_ANNOUNCE(AMI_FLOPPY, "Floppy Controller"); | ||
893 | AMIGAHW_ANNOUNCE(A3000_SCSI, "SCSI Controller WD33C93 (A3000 style)"); | ||
894 | AMIGAHW_ANNOUNCE(A4000_SCSI, "SCSI Controller NCR53C710 (A4000T style)"); | ||
895 | AMIGAHW_ANNOUNCE(A1200_IDE, "IDE Interface (A1200 style)"); | ||
896 | AMIGAHW_ANNOUNCE(A4000_IDE, "IDE Interface (A4000 style)"); | ||
897 | AMIGAHW_ANNOUNCE(CD_ROM, "Internal CD ROM drive"); | ||
898 | AMIGAHW_ANNOUNCE(AMI_KEYBOARD, "Keyboard"); | ||
899 | AMIGAHW_ANNOUNCE(AMI_MOUSE, "Mouse Port"); | ||
900 | AMIGAHW_ANNOUNCE(AMI_SERIAL, "Serial Port"); | ||
901 | AMIGAHW_ANNOUNCE(AMI_PARALLEL, "Parallel Port"); | ||
902 | AMIGAHW_ANNOUNCE(A2000_CLK, "Hardware Clock (A2000 style)"); | ||
903 | AMIGAHW_ANNOUNCE(A3000_CLK, "Hardware Clock (A3000 style)"); | ||
904 | AMIGAHW_ANNOUNCE(CHIP_RAM, "Chip RAM"); | ||
905 | AMIGAHW_ANNOUNCE(PAULA, "Paula 8364"); | ||
906 | AMIGAHW_ANNOUNCE(DENISE, "Denise 8362"); | ||
907 | AMIGAHW_ANNOUNCE(DENISE_HR, "Denise 8373"); | ||
908 | AMIGAHW_ANNOUNCE(LISA, "Lisa 8375"); | ||
909 | AMIGAHW_ANNOUNCE(AGNUS_PAL, "Normal/Fat PAL Agnus 8367/8371"); | ||
910 | AMIGAHW_ANNOUNCE(AGNUS_NTSC, "Normal/Fat NTSC Agnus 8361/8370"); | ||
911 | AMIGAHW_ANNOUNCE(AGNUS_HR_PAL, "Fat Hires PAL Agnus 8372"); | ||
912 | AMIGAHW_ANNOUNCE(AGNUS_HR_NTSC, "Fat Hires NTSC Agnus 8372"); | ||
913 | AMIGAHW_ANNOUNCE(ALICE_PAL, "PAL Alice 8374"); | ||
914 | AMIGAHW_ANNOUNCE(ALICE_NTSC, "NTSC Alice 8374"); | ||
915 | AMIGAHW_ANNOUNCE(MAGIC_REKICK, "Magic Hard Rekick"); | ||
916 | AMIGAHW_ANNOUNCE(PCMCIA, "PCMCIA Slot"); | ||
917 | if (AMIGAHW_PRESENT(ZORRO)) | ||
918 | len += sprintf(buffer+len, "\tZorro II%s AutoConfig: %d Expansion " | ||
919 | "Device%s\n", | ||
920 | AMIGAHW_PRESENT(ZORRO3) ? "I" : "", | ||
921 | zorro_num_autocon, zorro_num_autocon == 1 ? "" : "s"); | ||
922 | |||
923 | #undef AMIGAHW_ANNOUNCE | ||
924 | |||
925 | return(len); | ||
926 | } | ||
927 | |||
928 | #ifdef CONFIG_APUS | ||
929 | int get_hardware_list(char *buffer) | ||
930 | { | ||
931 | extern int get_cpuinfo(char *buffer); | ||
932 | int len = 0; | ||
933 | char model[80]; | ||
934 | u_long mem; | ||
935 | int i; | ||
936 | |||
937 | if (mach_get_model) | ||
938 | mach_get_model(model); | ||
939 | else | ||
940 | strcpy(model, "Unknown PowerPC"); | ||
941 | |||
942 | len += sprintf(buffer+len, "Model:\t\t%s\n", model); | ||
943 | len += get_cpuinfo(buffer+len); | ||
944 | for (mem = 0, i = 0; i < m68k_realnum_memory; i++) | ||
945 | mem += m68k_memory[i].size; | ||
946 | len += sprintf(buffer+len, "System Memory:\t%ldK\n", mem>>10); | ||
947 | |||
948 | if (mach_get_hardware_list) | ||
949 | len += mach_get_hardware_list(buffer+len); | ||
950 | |||
951 | return(len); | ||
952 | } | ||
953 | #endif | ||
diff --git a/arch/ppc/amiga/ints.c b/arch/ppc/amiga/ints.c deleted file mode 100644 index 083a17462190..000000000000 --- a/arch/ppc/amiga/ints.c +++ /dev/null | |||
@@ -1,158 +0,0 @@ | |||
1 | /* | ||
2 | * Linux/m68k general interrupt handling code from arch/m68k/kernel/ints.c | ||
3 | * Needed to drive the m68k emulating IRQ hardware on the PowerUp boards. | ||
4 | */ | ||
5 | |||
6 | #include <linux/types.h> | ||
7 | #include <linux/sched.h> | ||
8 | #include <linux/kernel_stat.h> | ||
9 | #include <linux/errno.h> | ||
10 | #include <linux/init.h> | ||
11 | #include <linux/seq_file.h> | ||
12 | |||
13 | #include <asm/setup.h> | ||
14 | #include <asm/system.h> | ||
15 | #include <asm/irq.h> | ||
16 | #include <asm/traps.h> | ||
17 | #include <asm/page.h> | ||
18 | #include <asm/machdep.h> | ||
19 | |||
20 | /* table for system interrupt handlers */ | ||
21 | static irq_handler_t irq_list[SYS_IRQS]; | ||
22 | |||
23 | static const char *default_names[SYS_IRQS] = { | ||
24 | "spurious int", "int1 handler", "int2 handler", "int3 handler", | ||
25 | "int4 handler", "int5 handler", "int6 handler", "int7 handler" | ||
26 | }; | ||
27 | |||
28 | /* The number of spurious interrupts */ | ||
29 | volatile unsigned int num_spurious; | ||
30 | |||
31 | #define NUM_IRQ_NODES 100 | ||
32 | static irq_node_t nodes[NUM_IRQ_NODES]; | ||
33 | |||
34 | |||
35 | /* | ||
36 | * void init_IRQ(void) | ||
37 | * | ||
38 | * Parameters: None | ||
39 | * | ||
40 | * Returns: Nothing | ||
41 | * | ||
42 | * This function should be called during kernel startup to initialize | ||
43 | * the IRQ handling routines. | ||
44 | */ | ||
45 | |||
46 | __init | ||
47 | void m68k_init_IRQ(void) | ||
48 | { | ||
49 | int i; | ||
50 | |||
51 | for (i = 0; i < SYS_IRQS; i++) { | ||
52 | if (mach_default_handler) | ||
53 | irq_list[i].handler = (*mach_default_handler)[i]; | ||
54 | irq_list[i].flags = 0; | ||
55 | irq_list[i].dev_id = NULL; | ||
56 | irq_list[i].devname = default_names[i]; | ||
57 | } | ||
58 | |||
59 | for (i = 0; i < NUM_IRQ_NODES; i++) | ||
60 | nodes[i].handler = NULL; | ||
61 | |||
62 | mach_init_IRQ (); | ||
63 | } | ||
64 | |||
65 | irq_node_t *new_irq_node(void) | ||
66 | { | ||
67 | irq_node_t *node; | ||
68 | short i; | ||
69 | |||
70 | for (node = nodes, i = NUM_IRQ_NODES-1; i >= 0; node++, i--) | ||
71 | if (!node->handler) | ||
72 | return node; | ||
73 | |||
74 | printk ("new_irq_node: out of nodes\n"); | ||
75 | return NULL; | ||
76 | } | ||
77 | |||
78 | int sys_request_irq(unsigned int irq, | ||
79 | void (*handler)(int, void *, struct pt_regs *), | ||
80 | unsigned long flags, const char *devname, void *dev_id) | ||
81 | { | ||
82 | if (irq < IRQ1 || irq > IRQ7) { | ||
83 | printk("%s: Incorrect IRQ %d from %s\n", | ||
84 | __FUNCTION__, irq, devname); | ||
85 | return -ENXIO; | ||
86 | } | ||
87 | |||
88 | #if 0 | ||
89 | if (!(irq_list[irq].flags & IRQ_FLG_STD)) { | ||
90 | if (irq_list[irq].flags & IRQ_FLG_LOCK) { | ||
91 | printk("%s: IRQ %d from %s is not replaceable\n", | ||
92 | __FUNCTION__, irq, irq_list[irq].devname); | ||
93 | return -EBUSY; | ||
94 | } | ||
95 | if (!(flags & IRQ_FLG_REPLACE)) { | ||
96 | printk("%s: %s can't replace IRQ %d from %s\n", | ||
97 | __FUNCTION__, devname, irq, irq_list[irq].devname); | ||
98 | return -EBUSY; | ||
99 | } | ||
100 | } | ||
101 | #endif | ||
102 | |||
103 | irq_list[irq].handler = handler; | ||
104 | irq_list[irq].flags = flags; | ||
105 | irq_list[irq].dev_id = dev_id; | ||
106 | irq_list[irq].devname = devname; | ||
107 | return 0; | ||
108 | } | ||
109 | |||
110 | void sys_free_irq(unsigned int irq, void *dev_id) | ||
111 | { | ||
112 | if (irq < IRQ1 || irq > IRQ7) { | ||
113 | printk("%s: Incorrect IRQ %d\n", __FUNCTION__, irq); | ||
114 | return; | ||
115 | } | ||
116 | |||
117 | if (irq_list[irq].dev_id != dev_id) | ||
118 | printk("%s: Removing probably wrong IRQ %d from %s\n", | ||
119 | __FUNCTION__, irq, irq_list[irq].devname); | ||
120 | |||
121 | irq_list[irq].handler = (*mach_default_handler)[irq]; | ||
122 | irq_list[irq].flags = 0; | ||
123 | irq_list[irq].dev_id = NULL; | ||
124 | irq_list[irq].devname = default_names[irq]; | ||
125 | } | ||
126 | |||
127 | asmlinkage void process_int(unsigned long vec, struct pt_regs *fp) | ||
128 | { | ||
129 | if (vec >= VEC_INT1 && vec <= VEC_INT7 && !MACH_IS_BVME6000) { | ||
130 | vec -= VEC_SPUR; | ||
131 | kstat_cpu(0).irqs[vec]++; | ||
132 | irq_list[vec].handler(vec, irq_list[vec].dev_id, fp); | ||
133 | } else { | ||
134 | if (mach_process_int) | ||
135 | mach_process_int(vec, fp); | ||
136 | else | ||
137 | panic("Can't process interrupt vector %ld\n", vec); | ||
138 | return; | ||
139 | } | ||
140 | } | ||
141 | |||
142 | int m68k_get_irq_list(struct seq_file *p, void *v) | ||
143 | { | ||
144 | int i; | ||
145 | |||
146 | /* autovector interrupts */ | ||
147 | if (mach_default_handler) { | ||
148 | for (i = 0; i < SYS_IRQS; i++) { | ||
149 | seq_printf(p, "auto %2d: %10u ", i, | ||
150 | i ? kstat_cpu(0).irqs[i] : num_spurious); | ||
151 | seq_puts(p, " "); | ||
152 | seq_printf(p, "%s\n", irq_list[i].devname); | ||
153 | } | ||
154 | } | ||
155 | |||
156 | mach_get_irq_list(p, v); | ||
157 | return 0; | ||
158 | } | ||
diff --git a/arch/ppc/amiga/pcmcia.c b/arch/ppc/amiga/pcmcia.c deleted file mode 100644 index 5d29dc65093c..000000000000 --- a/arch/ppc/amiga/pcmcia.c +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include "../../m68k/amiga/pcmcia.c" | ||
diff --git a/arch/ppc/amiga/time.c b/arch/ppc/amiga/time.c deleted file mode 100644 index 8c880c0ca380..000000000000 --- a/arch/ppc/amiga/time.c +++ /dev/null | |||
@@ -1,57 +0,0 @@ | |||
1 | #include <linux/errno.h> | ||
2 | #include <linux/sched.h> | ||
3 | #include <linux/kernel.h> | ||
4 | #include <linux/param.h> | ||
5 | #include <linux/string.h> | ||
6 | #include <linux/mm.h> | ||
7 | |||
8 | #include <asm/machdep.h> | ||
9 | #include <asm/io.h> | ||
10 | |||
11 | #include <linux/timex.h> | ||
12 | |||
13 | unsigned long m68k_get_rtc_time(void) | ||
14 | { | ||
15 | unsigned int year, mon, day, hour, min, sec; | ||
16 | |||
17 | extern void arch_gettod(int *year, int *mon, int *day, int *hour, | ||
18 | int *min, int *sec); | ||
19 | |||
20 | arch_gettod (&year, &mon, &day, &hour, &min, &sec); | ||
21 | |||
22 | if ((year += 1900) < 1970) | ||
23 | year += 100; | ||
24 | |||
25 | return mktime(year, mon, day, hour, min, sec); | ||
26 | } | ||
27 | |||
28 | int m68k_set_rtc_time(unsigned long nowtime) | ||
29 | { | ||
30 | if (mach_set_clock_mmss) | ||
31 | return mach_set_clock_mmss (nowtime); | ||
32 | return -1; | ||
33 | } | ||
34 | |||
35 | void apus_heartbeat (void) | ||
36 | { | ||
37 | #ifdef CONFIG_HEARTBEAT | ||
38 | static unsigned cnt = 0, period = 0, dist = 0; | ||
39 | |||
40 | if (cnt == 0 || cnt == dist) | ||
41 | mach_heartbeat( 1 ); | ||
42 | else if (cnt == 7 || cnt == dist+7) | ||
43 | mach_heartbeat( 0 ); | ||
44 | |||
45 | if (++cnt > period) { | ||
46 | cnt = 0; | ||
47 | /* The hyperbolic function below modifies the heartbeat period | ||
48 | * length in dependency of the current (5min) load. It goes | ||
49 | * through the points f(0)=126, f(1)=86, f(5)=51, | ||
50 | * f(inf)->30. */ | ||
51 | period = ((672<<FSHIFT)/(5*avenrun[0]+(7<<FSHIFT))) + 30; | ||
52 | dist = period / 4; | ||
53 | } | ||
54 | #endif | ||
55 | /* should be made smarter */ | ||
56 | ppc_md.heartbeat_count = 1; | ||
57 | } | ||