diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/m68k/mvme147 |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'arch/m68k/mvme147')
-rw-r--r-- | arch/m68k/mvme147/147ints.c | 145 | ||||
-rw-r--r-- | arch/m68k/mvme147/Makefile | 5 | ||||
-rw-r--r-- | arch/m68k/mvme147/config.c | 229 |
3 files changed, 379 insertions, 0 deletions
diff --git a/arch/m68k/mvme147/147ints.c b/arch/m68k/mvme147/147ints.c new file mode 100644 index 000000000000..69a744ee35a3 --- /dev/null +++ b/arch/m68k/mvme147/147ints.c | |||
@@ -0,0 +1,145 @@ | |||
1 | /* | ||
2 | * arch/m68k/mvme147/147ints.c | ||
3 | * | ||
4 | * Copyright (C) 1997 Richard Hirst [richard@sleepie.demon.co.uk] | ||
5 | * | ||
6 | * based on amiints.c -- Amiga Linux interrupt handling code | ||
7 | * | ||
8 | * This file is subject to the terms and conditions of the GNU General Public | ||
9 | * License. See the file README.legal in the main directory of this archive | ||
10 | * for more details. | ||
11 | * | ||
12 | */ | ||
13 | |||
14 | #include <linux/types.h> | ||
15 | #include <linux/kernel.h> | ||
16 | #include <linux/errno.h> | ||
17 | #include <linux/seq_file.h> | ||
18 | |||
19 | #include <asm/ptrace.h> | ||
20 | #include <asm/system.h> | ||
21 | #include <asm/irq.h> | ||
22 | #include <asm/traps.h> | ||
23 | |||
24 | static irqreturn_t mvme147_defhand (int irq, void *dev_id, struct pt_regs *fp); | ||
25 | |||
26 | /* | ||
27 | * This should ideally be 4 elements only, for speed. | ||
28 | */ | ||
29 | |||
30 | static struct { | ||
31 | irqreturn_t (*handler)(int, void *, struct pt_regs *); | ||
32 | unsigned long flags; | ||
33 | void *dev_id; | ||
34 | const char *devname; | ||
35 | unsigned count; | ||
36 | } irq_tab[256]; | ||
37 | |||
38 | /* | ||
39 | * void mvme147_init_IRQ (void) | ||
40 | * | ||
41 | * Parameters: None | ||
42 | * | ||
43 | * Returns: Nothing | ||
44 | * | ||
45 | * This function is called during kernel startup to initialize | ||
46 | * the mvme147 IRQ handling routines. | ||
47 | */ | ||
48 | |||
49 | void mvme147_init_IRQ (void) | ||
50 | { | ||
51 | int i; | ||
52 | |||
53 | for (i = 0; i < 256; i++) { | ||
54 | irq_tab[i].handler = mvme147_defhand; | ||
55 | irq_tab[i].flags = IRQ_FLG_STD; | ||
56 | irq_tab[i].dev_id = NULL; | ||
57 | irq_tab[i].devname = NULL; | ||
58 | irq_tab[i].count = 0; | ||
59 | } | ||
60 | } | ||
61 | |||
62 | int mvme147_request_irq(unsigned int irq, | ||
63 | irqreturn_t (*handler)(int, void *, struct pt_regs *), | ||
64 | unsigned long flags, const char *devname, void *dev_id) | ||
65 | { | ||
66 | if (irq > 255) { | ||
67 | printk("%s: Incorrect IRQ %d from %s\n", __FUNCTION__, irq, devname); | ||
68 | return -ENXIO; | ||
69 | } | ||
70 | if (!(irq_tab[irq].flags & IRQ_FLG_STD)) { | ||
71 | if (irq_tab[irq].flags & IRQ_FLG_LOCK) { | ||
72 | printk("%s: IRQ %d from %s is not replaceable\n", | ||
73 | __FUNCTION__, irq, irq_tab[irq].devname); | ||
74 | return -EBUSY; | ||
75 | } | ||
76 | if (flags & IRQ_FLG_REPLACE) { | ||
77 | printk("%s: %s can't replace IRQ %d from %s\n", | ||
78 | __FUNCTION__, devname, irq, irq_tab[irq].devname); | ||
79 | return -EBUSY; | ||
80 | } | ||
81 | } | ||
82 | irq_tab[irq].handler = handler; | ||
83 | irq_tab[irq].flags = flags; | ||
84 | irq_tab[irq].dev_id = dev_id; | ||
85 | irq_tab[irq].devname = devname; | ||
86 | return 0; | ||
87 | } | ||
88 | |||
89 | void mvme147_free_irq(unsigned int irq, void *dev_id) | ||
90 | { | ||
91 | if (irq > 255) { | ||
92 | printk("%s: Incorrect IRQ %d\n", __FUNCTION__, irq); | ||
93 | return; | ||
94 | } | ||
95 | if (irq_tab[irq].dev_id != dev_id) | ||
96 | printk("%s: Removing probably wrong IRQ %d from %s\n", | ||
97 | __FUNCTION__, irq, irq_tab[irq].devname); | ||
98 | |||
99 | irq_tab[irq].handler = mvme147_defhand; | ||
100 | irq_tab[irq].flags = IRQ_FLG_STD; | ||
101 | irq_tab[irq].dev_id = NULL; | ||
102 | irq_tab[irq].devname = NULL; | ||
103 | } | ||
104 | |||
105 | irqreturn_t mvme147_process_int (unsigned long vec, struct pt_regs *fp) | ||
106 | { | ||
107 | if (vec > 255) { | ||
108 | printk ("mvme147_process_int: Illegal vector %ld\n", vec); | ||
109 | return IRQ_NONE; | ||
110 | } else { | ||
111 | irq_tab[vec].count++; | ||
112 | irq_tab[vec].handler(vec, irq_tab[vec].dev_id, fp); | ||
113 | return IRQ_HANDLED; | ||
114 | } | ||
115 | } | ||
116 | |||
117 | int show_mvme147_interrupts (struct seq_file *p, void *v) | ||
118 | { | ||
119 | int i; | ||
120 | |||
121 | for (i = 0; i < 256; i++) { | ||
122 | if (irq_tab[i].count) | ||
123 | seq_printf(p, "Vec 0x%02x: %8d %s\n", | ||
124 | i, irq_tab[i].count, | ||
125 | irq_tab[i].devname ? irq_tab[i].devname : "free"); | ||
126 | } | ||
127 | return 0; | ||
128 | } | ||
129 | |||
130 | |||
131 | static irqreturn_t mvme147_defhand (int irq, void *dev_id, struct pt_regs *fp) | ||
132 | { | ||
133 | printk ("Unknown interrupt 0x%02x\n", irq); | ||
134 | return IRQ_NONE; | ||
135 | } | ||
136 | |||
137 | void mvme147_enable_irq (unsigned int irq) | ||
138 | { | ||
139 | } | ||
140 | |||
141 | |||
142 | void mvme147_disable_irq (unsigned int irq) | ||
143 | { | ||
144 | } | ||
145 | |||
diff --git a/arch/m68k/mvme147/Makefile b/arch/m68k/mvme147/Makefile new file mode 100644 index 000000000000..f0153ed3efa5 --- /dev/null +++ b/arch/m68k/mvme147/Makefile | |||
@@ -0,0 +1,5 @@ | |||
1 | # | ||
2 | # Makefile for Linux arch/m68k/mvme147 source directory | ||
3 | # | ||
4 | |||
5 | obj-y := config.o 147ints.o | ||
diff --git a/arch/m68k/mvme147/config.c b/arch/m68k/mvme147/config.c new file mode 100644 index 000000000000..0fcf9720c2fe --- /dev/null +++ b/arch/m68k/mvme147/config.c | |||
@@ -0,0 +1,229 @@ | |||
1 | /* | ||
2 | * arch/m68k/mvme147/config.c | ||
3 | * | ||
4 | * Copyright (C) 1996 Dave Frascone [chaos@mindspring.com] | ||
5 | * Cloned from Richard Hirst [richard@sleepie.demon.co.uk] | ||
6 | * | ||
7 | * Based on: | ||
8 | * | ||
9 | * Copyright (C) 1993 Hamish Macdonald | ||
10 | * | ||
11 | * This file is subject to the terms and conditions of the GNU General Public | ||
12 | * License. See the file README.legal in the main directory of this archive | ||
13 | * for more details. | ||
14 | */ | ||
15 | |||
16 | #include <linux/types.h> | ||
17 | #include <linux/kernel.h> | ||
18 | #include <linux/mm.h> | ||
19 | #include <linux/tty.h> | ||
20 | #include <linux/console.h> | ||
21 | #include <linux/linkage.h> | ||
22 | #include <linux/init.h> | ||
23 | #include <linux/major.h> | ||
24 | #include <linux/genhd.h> | ||
25 | #include <linux/rtc.h> | ||
26 | #include <linux/interrupt.h> | ||
27 | |||
28 | #include <asm/bootinfo.h> | ||
29 | #include <asm/system.h> | ||
30 | #include <asm/pgtable.h> | ||
31 | #include <asm/setup.h> | ||
32 | #include <asm/irq.h> | ||
33 | #include <asm/traps.h> | ||
34 | #include <asm/rtc.h> | ||
35 | #include <asm/machdep.h> | ||
36 | #include <asm/mvme147hw.h> | ||
37 | |||
38 | |||
39 | extern irqreturn_t mvme147_process_int (int level, struct pt_regs *regs); | ||
40 | extern void mvme147_init_IRQ (void); | ||
41 | extern void mvme147_free_irq (unsigned int, void *); | ||
42 | extern int show_mvme147_interrupts (struct seq_file *, void *); | ||
43 | extern void mvme147_enable_irq (unsigned int); | ||
44 | extern void mvme147_disable_irq (unsigned int); | ||
45 | static void mvme147_get_model(char *model); | ||
46 | static int mvme147_get_hardware_list(char *buffer); | ||
47 | extern int mvme147_request_irq (unsigned int irq, irqreturn_t (*handler)(int, void *, struct pt_regs *), unsigned long flags, const char *devname, void *dev_id); | ||
48 | extern void mvme147_sched_init(irqreturn_t (*handler)(int, void *, struct pt_regs *)); | ||
49 | extern unsigned long mvme147_gettimeoffset (void); | ||
50 | extern int mvme147_hwclk (int, struct rtc_time *); | ||
51 | extern int mvme147_set_clock_mmss (unsigned long); | ||
52 | extern void mvme147_reset (void); | ||
53 | extern void mvme147_waitbut(void); | ||
54 | |||
55 | |||
56 | static int bcd2int (unsigned char b); | ||
57 | |||
58 | /* Save tick handler routine pointer, will point to do_timer() in | ||
59 | * kernel/sched.c, called via mvme147_process_int() */ | ||
60 | |||
61 | irqreturn_t (*tick_handler)(int, void *, struct pt_regs *); | ||
62 | |||
63 | |||
64 | int mvme147_parse_bootinfo(const struct bi_record *bi) | ||
65 | { | ||
66 | if (bi->tag == BI_VME_TYPE || bi->tag == BI_VME_BRDINFO) | ||
67 | return 0; | ||
68 | else | ||
69 | return 1; | ||
70 | } | ||
71 | |||
72 | void mvme147_reset(void) | ||
73 | { | ||
74 | printk ("\r\n\nCalled mvme147_reset\r\n"); | ||
75 | m147_pcc->watchdog = 0x0a; /* Clear timer */ | ||
76 | m147_pcc->watchdog = 0xa5; /* Enable watchdog - 100ms to reset */ | ||
77 | while (1) | ||
78 | ; | ||
79 | } | ||
80 | |||
81 | static void mvme147_get_model(char *model) | ||
82 | { | ||
83 | sprintf(model, "Motorola MVME147"); | ||
84 | } | ||
85 | |||
86 | |||
87 | static int mvme147_get_hardware_list(char *buffer) | ||
88 | { | ||
89 | *buffer = '\0'; | ||
90 | |||
91 | return 0; | ||
92 | } | ||
93 | |||
94 | |||
95 | void __init config_mvme147(void) | ||
96 | { | ||
97 | mach_max_dma_address = 0x01000000; | ||
98 | mach_sched_init = mvme147_sched_init; | ||
99 | mach_init_IRQ = mvme147_init_IRQ; | ||
100 | mach_gettimeoffset = mvme147_gettimeoffset; | ||
101 | mach_hwclk = mvme147_hwclk; | ||
102 | mach_set_clock_mmss = mvme147_set_clock_mmss; | ||
103 | mach_reset = mvme147_reset; | ||
104 | mach_free_irq = mvme147_free_irq; | ||
105 | mach_process_int = mvme147_process_int; | ||
106 | mach_get_irq_list = show_mvme147_interrupts; | ||
107 | mach_request_irq = mvme147_request_irq; | ||
108 | enable_irq = mvme147_enable_irq; | ||
109 | disable_irq = mvme147_disable_irq; | ||
110 | mach_get_model = mvme147_get_model; | ||
111 | mach_get_hardware_list = mvme147_get_hardware_list; | ||
112 | |||
113 | /* Board type is only set by newer versions of vmelilo/tftplilo */ | ||
114 | if (!vme_brdtype) | ||
115 | vme_brdtype = VME_TYPE_MVME147; | ||
116 | } | ||
117 | |||
118 | |||
119 | /* Using pcc tick timer 1 */ | ||
120 | |||
121 | static irqreturn_t mvme147_timer_int (int irq, void *dev_id, struct pt_regs *fp) | ||
122 | { | ||
123 | m147_pcc->t1_int_cntrl = PCC_TIMER_INT_CLR; | ||
124 | m147_pcc->t1_int_cntrl = PCC_INT_ENAB|PCC_LEVEL_TIMER1; | ||
125 | return tick_handler(irq, dev_id, fp); | ||
126 | } | ||
127 | |||
128 | |||
129 | void mvme147_sched_init (irqreturn_t (*timer_routine)(int, void *, struct pt_regs *)) | ||
130 | { | ||
131 | tick_handler = timer_routine; | ||
132 | request_irq (PCC_IRQ_TIMER1, mvme147_timer_int, | ||
133 | IRQ_FLG_REPLACE, "timer 1", NULL); | ||
134 | |||
135 | /* Init the clock with a value */ | ||
136 | /* our clock goes off every 6.25us */ | ||
137 | m147_pcc->t1_preload = PCC_TIMER_PRELOAD; | ||
138 | m147_pcc->t1_cntrl = 0x0; /* clear timer */ | ||
139 | m147_pcc->t1_cntrl = 0x3; /* start timer */ | ||
140 | m147_pcc->t1_int_cntrl = PCC_TIMER_INT_CLR; /* clear pending ints */ | ||
141 | m147_pcc->t1_int_cntrl = PCC_INT_ENAB|PCC_LEVEL_TIMER1; | ||
142 | } | ||
143 | |||
144 | /* This is always executed with interrupts disabled. */ | ||
145 | /* XXX There are race hazards in this code XXX */ | ||
146 | unsigned long mvme147_gettimeoffset (void) | ||
147 | { | ||
148 | volatile unsigned short *cp = (volatile unsigned short *)0xfffe1012; | ||
149 | unsigned short n; | ||
150 | |||
151 | n = *cp; | ||
152 | while (n != *cp) | ||
153 | n = *cp; | ||
154 | |||
155 | n -= PCC_TIMER_PRELOAD; | ||
156 | return (unsigned long)n * 25 / 4; | ||
157 | } | ||
158 | |||
159 | static int bcd2int (unsigned char b) | ||
160 | { | ||
161 | return ((b>>4)*10 + (b&15)); | ||
162 | } | ||
163 | |||
164 | int mvme147_hwclk(int op, struct rtc_time *t) | ||
165 | { | ||
166 | #warning check me! | ||
167 | if (!op) { | ||
168 | m147_rtc->ctrl = RTC_READ; | ||
169 | t->tm_year = bcd2int (m147_rtc->bcd_year); | ||
170 | t->tm_mon = bcd2int (m147_rtc->bcd_mth); | ||
171 | t->tm_mday = bcd2int (m147_rtc->bcd_dom); | ||
172 | t->tm_hour = bcd2int (m147_rtc->bcd_hr); | ||
173 | t->tm_min = bcd2int (m147_rtc->bcd_min); | ||
174 | t->tm_sec = bcd2int (m147_rtc->bcd_sec); | ||
175 | m147_rtc->ctrl = 0; | ||
176 | } | ||
177 | return 0; | ||
178 | } | ||
179 | |||
180 | int mvme147_set_clock_mmss (unsigned long nowtime) | ||
181 | { | ||
182 | return 0; | ||
183 | } | ||
184 | |||
185 | /*------------------- Serial console stuff ------------------------*/ | ||
186 | |||
187 | static void scc_delay (void) | ||
188 | { | ||
189 | int n; | ||
190 | volatile int trash; | ||
191 | |||
192 | for (n = 0; n < 20; n++) | ||
193 | trash = n; | ||
194 | } | ||
195 | |||
196 | static void scc_write (char ch) | ||
197 | { | ||
198 | volatile char *p = (volatile char *)M147_SCC_A_ADDR; | ||
199 | |||
200 | do { | ||
201 | scc_delay(); | ||
202 | } | ||
203 | while (!(*p & 4)); | ||
204 | scc_delay(); | ||
205 | *p = 8; | ||
206 | scc_delay(); | ||
207 | *p = ch; | ||
208 | } | ||
209 | |||
210 | |||
211 | void m147_scc_write (struct console *co, const char *str, unsigned count) | ||
212 | { | ||
213 | unsigned long flags; | ||
214 | |||
215 | local_irq_save(flags); | ||
216 | |||
217 | while (count--) | ||
218 | { | ||
219 | if (*str == '\n') | ||
220 | scc_write ('\r'); | ||
221 | scc_write (*str++); | ||
222 | } | ||
223 | local_irq_restore(flags); | ||
224 | } | ||
225 | |||
226 | void mvme147_init_console_port (struct console *co, int cflag) | ||
227 | { | ||
228 | co->write = m147_scc_write; | ||
229 | } | ||