2 * arch/m68k/mvme16x/config.c
4 * Copyright (C) 1995 Richard Hirst [richard@sleepie.demon.co.uk]
10 * Copyright (C) 1993 Hamish Macdonald
12 * This file is subject to the terms and conditions of the GNU General Public
13 * License. See the file README.legal in the main directory of this archive
17 #include <linux/types.h>
18 #include <linux/kernel.h>
20 #include <linux/tty.h>
21 #include <linux/console.h>
22 #include <linux/linkage.h>
23 #include <linux/init.h>
24 #include <linux/major.h>
25 #include <linux/genhd.h>
26 #include <linux/rtc.h>
27 #include <linux/interrupt.h>
29 #include <asm/bootinfo.h>
30 #include <asm/system.h>
31 #include <asm/pgtable.h>
32 #include <asm/setup.h>
34 #include <asm/traps.h>
36 #include <asm/machdep.h>
37 #include <asm/mvme16xhw.h>
39 extern t_bdid mvme_bdid
;
41 static MK48T08ptr_t
volatile rtc
= (MK48T08ptr_t
)MVME_RTC_BASE
;
43 extern irqreturn_t
mvme16x_process_int (int level
, struct pt_regs
*regs
);
44 extern void mvme16x_init_IRQ (void);
45 extern void mvme16x_free_irq (unsigned int, void *);
46 extern int show_mvme16x_interrupts (struct seq_file
*, void *);
47 extern void mvme16x_enable_irq (unsigned int);
48 extern void mvme16x_disable_irq (unsigned int);
49 static void mvme16x_get_model(char *model
);
50 static int mvme16x_get_hardware_list(char *buffer
);
51 extern int mvme16x_request_irq(unsigned int irq
, irqreturn_t (*handler
)(int, void *, struct pt_regs
*), unsigned long flags
, const char *devname
, void *dev_id
);
52 extern void mvme16x_sched_init(irqreturn_t (*handler
)(int, void *, struct pt_regs
*));
53 extern unsigned long mvme16x_gettimeoffset (void);
54 extern int mvme16x_hwclk (int, struct rtc_time
*);
55 extern int mvme16x_set_clock_mmss (unsigned long);
56 extern void mvme16x_reset (void);
57 extern void mvme16x_waitbut(void);
59 int bcd2int (unsigned char b
);
61 /* Save tick handler routine pointer, will point to do_timer() in
62 * kernel/sched.c, called via mvme16x_process_int() */
64 static irqreturn_t (*tick_handler
)(int, void *, struct pt_regs
*);
67 unsigned short mvme16x_config
;
70 int mvme16x_parse_bootinfo(const struct bi_record
*bi
)
72 if (bi
->tag
== BI_VME_TYPE
|| bi
->tag
== BI_VME_BRDINFO
)
78 void mvme16x_reset(void)
80 printk ("\r\n\nCalled mvme16x_reset\r\n"
81 "\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r");
82 /* The string of returns is to delay the reset until the whole
83 * message is output. Assert reset bit in GCSR */
84 *(volatile char *)0xfff40107 = 0x80;
87 static void mvme16x_get_model(char *model
)
89 p_bdid p
= &mvme_bdid
;
92 suf
[1] = p
->brdsuffix
[0];
93 suf
[2] = p
->brdsuffix
[1];
95 suf
[0] = suf
[1] ? '-' : '\0';
97 sprintf(model
, "Motorola MVME%x%s", p
->brdno
, suf
);
101 static int mvme16x_get_hardware_list(char *buffer
)
103 p_bdid p
= &mvme_bdid
;
106 if (p
->brdno
== 0x0162 || p
->brdno
== 0x0172)
108 unsigned char rev
= *(unsigned char *)MVME162_VERSION_REG
;
110 len
+= sprintf (buffer
+len
, "VMEchip2 %spresent\n",
111 rev
& MVME16x_CONFIG_NO_VMECHIP2
? "NOT " : "");
112 len
+= sprintf (buffer
+len
, "SCSI interface %spresent\n",
113 rev
& MVME16x_CONFIG_NO_SCSICHIP
? "NOT " : "");
114 len
+= sprintf (buffer
+len
, "Ethernet i/f %spresent\n",
115 rev
& MVME16x_CONFIG_NO_ETHERNET
? "NOT " : "");
124 #define pcc2chip ((volatile u_char *)0xfff42000)
125 #define PccSCCMICR 0x1d
126 #define PccSCCTICR 0x1e
127 #define PccSCCRICR 0x1f
129 void __init
config_mvme16x(void)
131 p_bdid p
= &mvme_bdid
;
134 mach_max_dma_address
= 0xffffffff;
135 mach_sched_init
= mvme16x_sched_init
;
136 mach_init_IRQ
= mvme16x_init_IRQ
;
137 mach_gettimeoffset
= mvme16x_gettimeoffset
;
138 mach_hwclk
= mvme16x_hwclk
;
139 mach_set_clock_mmss
= mvme16x_set_clock_mmss
;
140 mach_reset
= mvme16x_reset
;
141 mach_free_irq
= mvme16x_free_irq
;
142 mach_process_int
= mvme16x_process_int
;
143 mach_get_irq_list
= show_mvme16x_interrupts
;
144 mach_request_irq
= mvme16x_request_irq
;
145 enable_irq
= mvme16x_enable_irq
;
146 disable_irq
= mvme16x_disable_irq
;
147 mach_get_model
= mvme16x_get_model
;
148 mach_get_hardware_list
= mvme16x_get_hardware_list
;
150 /* Report board revision */
152 if (strncmp("BDID", p
->bdid
, 4))
154 printk ("\n\nBug call .BRD_ID returned garbage - giving up\n\n");
158 /* Board type is only set by newer versions of vmelilo/tftplilo */
159 if (vme_brdtype
== 0)
160 vme_brdtype
= p
->brdno
;
162 mvme16x_get_model(id
);
163 printk ("\nBRD_ID: %s BUG %x.%x %02x/%02x/%02x\n", id
, p
->rev
>>4,
164 p
->rev
&0xf, p
->yr
, p
->mth
, p
->day
);
165 if (p
->brdno
== 0x0162 || p
->brdno
== 0x172)
167 unsigned char rev
= *(unsigned char *)MVME162_VERSION_REG
;
169 mvme16x_config
= rev
| MVME16x_CONFIG_GOT_SCCA
;
171 printk ("MVME%x Hardware status:\n", p
->brdno
);
172 printk (" CPU Type 68%s040\n",
173 rev
& MVME16x_CONFIG_GOT_FPU
? "" : "LC");
174 printk (" CPU clock %dMHz\n",
175 rev
& MVME16x_CONFIG_SPEED_32
? 32 : 25);
176 printk (" VMEchip2 %spresent\n",
177 rev
& MVME16x_CONFIG_NO_VMECHIP2
? "NOT " : "");
178 printk (" SCSI interface %spresent\n",
179 rev
& MVME16x_CONFIG_NO_SCSICHIP
? "NOT " : "");
180 printk (" Ethernet interface %spresent\n",
181 rev
& MVME16x_CONFIG_NO_ETHERNET
? "NOT " : "");
185 mvme16x_config
= MVME16x_CONFIG_GOT_LP
| MVME16x_CONFIG_GOT_CD2401
;
187 /* Dont allow any interrupts from the CD2401 until the interrupt */
188 /* handlers are installed */
190 pcc2chip
[PccSCCMICR
] = 0x10;
191 pcc2chip
[PccSCCTICR
] = 0x10;
192 pcc2chip
[PccSCCRICR
] = 0x10;
196 static irqreturn_t
mvme16x_abort_int (int irq
, void *dev_id
, struct pt_regs
*fp
)
198 p_bdid p
= &mvme_bdid
;
199 unsigned long *new = (unsigned long *)vectors
;
200 unsigned long *old
= (unsigned long *)0xffe00000;
201 volatile unsigned char uc
, *ucp
;
203 if (p
->brdno
== 0x0162 || p
->brdno
== 0x172)
205 ucp
= (volatile unsigned char *)0xfff42043;
211 *(volatile unsigned long *)0xfff40074 = 0x40000000;
213 *(new+4) = *(old
+4); /* Illegal instruction */
214 *(new+9) = *(old
+9); /* Trace */
215 *(new+47) = *(old
+47); /* Trap #15 */
217 if (p
->brdno
== 0x0162 || p
->brdno
== 0x172)
218 *(new+0x5e) = *(old
+0x5e); /* ABORT switch */
220 *(new+0x6e) = *(old
+0x6e); /* ABORT switch */
224 static irqreturn_t
mvme16x_timer_int (int irq
, void *dev_id
, struct pt_regs
*fp
)
226 *(volatile unsigned char *)0xfff4201b |= 8;
227 return tick_handler(irq
, dev_id
, fp
);
230 void mvme16x_sched_init (irqreturn_t (*timer_routine
)(int, void *, struct pt_regs
*))
232 p_bdid p
= &mvme_bdid
;
235 tick_handler
= timer_routine
;
236 /* Using PCCchip2 or MC2 chip tick timer 1 */
237 *(volatile unsigned long *)0xfff42008 = 0;
238 *(volatile unsigned long *)0xfff42004 = 10000; /* 10ms */
239 *(volatile unsigned char *)0xfff42017 |= 3;
240 *(volatile unsigned char *)0xfff4201b = 0x16;
241 if (request_irq(MVME16x_IRQ_TIMER
, mvme16x_timer_int
, 0,
242 "timer", mvme16x_timer_int
))
243 panic ("Couldn't register timer int");
245 if (p
->brdno
== 0x0162 || p
->brdno
== 0x172)
246 irq
= MVME162_IRQ_ABORT
;
248 irq
= MVME167_IRQ_ABORT
;
249 if (request_irq(irq
, mvme16x_abort_int
, 0,
250 "abort", mvme16x_abort_int
))
251 panic ("Couldn't register abort int");
255 /* This is always executed with interrupts disabled. */
256 unsigned long mvme16x_gettimeoffset (void)
258 return (*(volatile unsigned long *)0xfff42008);
261 int bcd2int (unsigned char b
)
263 return ((b
>>4)*10 + (b
&15));
266 int mvme16x_hwclk(int op
, struct rtc_time
*t
)
270 rtc
->ctrl
= RTC_READ
;
271 t
->tm_year
= bcd2int (rtc
->bcd_year
);
272 t
->tm_mon
= bcd2int (rtc
->bcd_mth
);
273 t
->tm_mday
= bcd2int (rtc
->bcd_dom
);
274 t
->tm_hour
= bcd2int (rtc
->bcd_hr
);
275 t
->tm_min
= bcd2int (rtc
->bcd_min
);
276 t
->tm_sec
= bcd2int (rtc
->bcd_sec
);
282 int mvme16x_set_clock_mmss (unsigned long nowtime
)