blob: 1521826fc3c7caef9a62935a2bde21f0f6135378 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/m68k/mvme16x/config.c
3 *
4 * Copyright (C) 1995 Richard Hirst [richard@sleepie.demon.co.uk]
5 *
6 * Based on:
7 *
8 * linux/amiga/config.c
9 *
10 * Copyright (C) 1993 Hamish Macdonald
11 *
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
14 * for more details.
15 */
16
17#include <linux/types.h>
18#include <linux/kernel.h>
19#include <linux/mm.h>
Alexey Dobriyan813dcf72008-10-03 22:42:36 +040020#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/tty.h>
22#include <linux/console.h>
23#include <linux/linkage.h>
24#include <linux/init.h>
25#include <linux/major.h>
26#include <linux/genhd.h>
27#include <linux/rtc.h>
28#include <linux/interrupt.h>
Adrian Bunk612e4842008-02-04 22:30:27 -080029#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <asm/bootinfo.h>
32#include <asm/system.h>
33#include <asm/pgtable.h>
34#include <asm/setup.h>
35#include <asm/irq.h>
36#include <asm/traps.h>
37#include <asm/rtc.h>
38#include <asm/machdep.h>
39#include <asm/mvme16xhw.h>
40
41extern t_bdid mvme_bdid;
42
43static MK48T08ptr_t volatile rtc = (MK48T08ptr_t)MVME_RTC_BASE;
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045static void mvme16x_get_model(char *model);
David Howells40220c12006-10-09 12:19:47 +010046extern void mvme16x_sched_init(irq_handler_t handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047extern unsigned long mvme16x_gettimeoffset (void);
48extern int mvme16x_hwclk (int, struct rtc_time *);
49extern int mvme16x_set_clock_mmss (unsigned long);
50extern void mvme16x_reset (void);
51extern void mvme16x_waitbut(void);
52
53int bcd2int (unsigned char b);
54
55/* Save tick handler routine pointer, will point to do_timer() in
56 * kernel/sched.c, called via mvme16x_process_int() */
57
David Howells40220c12006-10-09 12:19:47 +010058static irq_handler_t tick_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60
61unsigned short mvme16x_config;
Adrian Bunk612e4842008-02-04 22:30:27 -080062EXPORT_SYMBOL(mvme16x_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64
65int mvme16x_parse_bootinfo(const struct bi_record *bi)
66{
67 if (bi->tag == BI_VME_TYPE || bi->tag == BI_VME_BRDINFO)
68 return 0;
69 else
70 return 1;
71}
72
73void mvme16x_reset(void)
74{
75 printk ("\r\n\nCalled mvme16x_reset\r\n"
76 "\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r");
77 /* The string of returns is to delay the reset until the whole
78 * message is output. Assert reset bit in GCSR */
79 *(volatile char *)0xfff40107 = 0x80;
80}
81
82static void mvme16x_get_model(char *model)
83{
84 p_bdid p = &mvme_bdid;
85 char suf[4];
86
87 suf[1] = p->brdsuffix[0];
88 suf[2] = p->brdsuffix[1];
89 suf[3] = '\0';
90 suf[0] = suf[1] ? '-' : '\0';
91
92 sprintf(model, "Motorola MVME%x%s", p->brdno, suf);
93}
94
95
Alexey Dobriyan813dcf72008-10-03 22:42:36 +040096static void mvme16x_get_hardware_list(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
98 p_bdid p = &mvme_bdid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 if (p->brdno == 0x0162 || p->brdno == 0x0172)
101 {
102 unsigned char rev = *(unsigned char *)MVME162_VERSION_REG;
103
Alexey Dobriyan813dcf72008-10-03 22:42:36 +0400104 seq_printf (m, "VMEchip2 %spresent\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 rev & MVME16x_CONFIG_NO_VMECHIP2 ? "NOT " : "");
Alexey Dobriyan813dcf72008-10-03 22:42:36 +0400106 seq_printf (m, "SCSI interface %spresent\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 rev & MVME16x_CONFIG_NO_SCSICHIP ? "NOT " : "");
Alexey Dobriyan813dcf72008-10-03 22:42:36 +0400108 seq_printf (m, "Ethernet i/f %spresent\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 rev & MVME16x_CONFIG_NO_ETHERNET ? "NOT " : "");
110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
Roman Zippel200a3d32006-06-25 05:47:06 -0700113/*
114 * This function is called during kernel startup to initialize
115 * the mvme16x IRQ handling routines. Should probably ensure
116 * that the base vectors for the VMEChip2 and PCCChip2 are valid.
117 */
118
Al Viro66a3f822007-07-20 04:33:28 +0100119static void __init mvme16x_init_IRQ (void)
Roman Zippel200a3d32006-06-25 05:47:06 -0700120{
121 m68k_setup_user_interrupt(VEC_USER, 192, NULL);
122}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124#define pcc2chip ((volatile u_char *)0xfff42000)
125#define PccSCCMICR 0x1d
126#define PccSCCTICR 0x1e
127#define PccSCCRICR 0x1f
128
129void __init config_mvme16x(void)
130{
131 p_bdid p = &mvme_bdid;
132 char id[40];
133
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 mach_get_model = mvme16x_get_model;
142 mach_get_hardware_list = mvme16x_get_hardware_list;
143
144 /* Report board revision */
145
146 if (strncmp("BDID", p->bdid, 4))
147 {
148 printk ("\n\nBug call .BRD_ID returned garbage - giving up\n\n");
149 while (1)
150 ;
151 }
152 /* Board type is only set by newer versions of vmelilo/tftplilo */
153 if (vme_brdtype == 0)
154 vme_brdtype = p->brdno;
155
156 mvme16x_get_model(id);
157 printk ("\nBRD_ID: %s BUG %x.%x %02x/%02x/%02x\n", id, p->rev>>4,
158 p->rev&0xf, p->yr, p->mth, p->day);
159 if (p->brdno == 0x0162 || p->brdno == 0x172)
160 {
161 unsigned char rev = *(unsigned char *)MVME162_VERSION_REG;
162
163 mvme16x_config = rev | MVME16x_CONFIG_GOT_SCCA;
164
165 printk ("MVME%x Hardware status:\n", p->brdno);
166 printk (" CPU Type 68%s040\n",
167 rev & MVME16x_CONFIG_GOT_FPU ? "" : "LC");
168 printk (" CPU clock %dMHz\n",
169 rev & MVME16x_CONFIG_SPEED_32 ? 32 : 25);
170 printk (" VMEchip2 %spresent\n",
171 rev & MVME16x_CONFIG_NO_VMECHIP2 ? "NOT " : "");
172 printk (" SCSI interface %spresent\n",
173 rev & MVME16x_CONFIG_NO_SCSICHIP ? "NOT " : "");
174 printk (" Ethernet interface %spresent\n",
175 rev & MVME16x_CONFIG_NO_ETHERNET ? "NOT " : "");
176 }
177 else
178 {
179 mvme16x_config = MVME16x_CONFIG_GOT_LP | MVME16x_CONFIG_GOT_CD2401;
180
181 /* Dont allow any interrupts from the CD2401 until the interrupt */
182 /* handlers are installed */
183
184 pcc2chip[PccSCCMICR] = 0x10;
185 pcc2chip[PccSCCTICR] = 0x10;
186 pcc2chip[PccSCCRICR] = 0x10;
187 }
188}
189
Al Viro2850bc22006-10-07 14:16:45 +0100190static irqreturn_t mvme16x_abort_int (int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 p_bdid p = &mvme_bdid;
193 unsigned long *new = (unsigned long *)vectors;
194 unsigned long *old = (unsigned long *)0xffe00000;
195 volatile unsigned char uc, *ucp;
196
197 if (p->brdno == 0x0162 || p->brdno == 0x172)
198 {
199 ucp = (volatile unsigned char *)0xfff42043;
200 uc = *ucp | 8;
201 *ucp = uc;
202 }
203 else
204 {
205 *(volatile unsigned long *)0xfff40074 = 0x40000000;
206 }
207 *(new+4) = *(old+4); /* Illegal instruction */
208 *(new+9) = *(old+9); /* Trace */
209 *(new+47) = *(old+47); /* Trap #15 */
210
211 if (p->brdno == 0x0162 || p->brdno == 0x172)
212 *(new+0x5e) = *(old+0x5e); /* ABORT switch */
213 else
214 *(new+0x6e) = *(old+0x6e); /* ABORT switch */
215 return IRQ_HANDLED;
216}
217
Al Viro2850bc22006-10-07 14:16:45 +0100218static irqreturn_t mvme16x_timer_int (int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
220 *(volatile unsigned char *)0xfff4201b |= 8;
Al Viro2850bc22006-10-07 14:16:45 +0100221 return tick_handler(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
David Howells40220c12006-10-09 12:19:47 +0100224void mvme16x_sched_init (irq_handler_t timer_routine)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 p_bdid p = &mvme_bdid;
227 int irq;
228
229 tick_handler = timer_routine;
230 /* Using PCCchip2 or MC2 chip tick timer 1 */
231 *(volatile unsigned long *)0xfff42008 = 0;
232 *(volatile unsigned long *)0xfff42004 = 10000; /* 10ms */
233 *(volatile unsigned char *)0xfff42017 |= 3;
234 *(volatile unsigned char *)0xfff4201b = 0x16;
235 if (request_irq(MVME16x_IRQ_TIMER, mvme16x_timer_int, 0,
236 "timer", mvme16x_timer_int))
237 panic ("Couldn't register timer int");
238
239 if (p->brdno == 0x0162 || p->brdno == 0x172)
240 irq = MVME162_IRQ_ABORT;
241 else
242 irq = MVME167_IRQ_ABORT;
243 if (request_irq(irq, mvme16x_abort_int, 0,
244 "abort", mvme16x_abort_int))
245 panic ("Couldn't register abort int");
246}
247
248
249/* This is always executed with interrupts disabled. */
250unsigned long mvme16x_gettimeoffset (void)
251{
252 return (*(volatile unsigned long *)0xfff42008);
253}
254
255int bcd2int (unsigned char b)
256{
257 return ((b>>4)*10 + (b&15));
258}
259
260int mvme16x_hwclk(int op, struct rtc_time *t)
261{
262#warning check me!
263 if (!op) {
264 rtc->ctrl = RTC_READ;
265 t->tm_year = bcd2int (rtc->bcd_year);
266 t->tm_mon = bcd2int (rtc->bcd_mth);
267 t->tm_mday = bcd2int (rtc->bcd_dom);
268 t->tm_hour = bcd2int (rtc->bcd_hr);
269 t->tm_min = bcd2int (rtc->bcd_min);
270 t->tm_sec = bcd2int (rtc->bcd_sec);
271 rtc->ctrl = 0;
272 }
273 return 0;
274}
275
276int mvme16x_set_clock_mmss (unsigned long nowtime)
277{
278 return 0;
279}
280