1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17#include <linux/types.h>
18#include <linux/kernel.h>
19#include <linux/mm.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>
28#include <linux/bcd.h>
29
30#include <asm/bootinfo.h>
31#include <asm/bootinfo-vme.h>
32#include <asm/byteorder.h>
33#include <asm/pgtable.h>
34#include <asm/setup.h>
35#include <asm/irq.h>
36#include <asm/traps.h>
37#include <asm/machdep.h>
38#include <asm/bvme6000hw.h>
39
40static void bvme6000_get_model(char *model);
41extern void bvme6000_sched_init(irq_handler_t handler);
42extern u32 bvme6000_gettimeoffset(void);
43extern int bvme6000_hwclk (int, struct rtc_time *);
44extern int bvme6000_set_clock_mmss (unsigned long);
45extern void bvme6000_reset (void);
46void bvme6000_set_vectors (void);
47
48
49
50
51static irq_handler_t tick_handler;
52
53
54int __init bvme6000_parse_bootinfo(const struct bi_record *bi)
55{
56 if (be16_to_cpu(bi->tag) == BI_VME_TYPE)
57 return 0;
58 else
59 return 1;
60}
61
62void bvme6000_reset(void)
63{
64 volatile PitRegsPtr pit = (PitRegsPtr)BVME_PIT_BASE;
65
66 pr_info("\r\n\nCalled bvme6000_reset\r\n"
67 "\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r");
68
69
70
71
72 pit->pcddr |= 0x10;
73
74 while(1)
75 ;
76}
77
78static void bvme6000_get_model(char *model)
79{
80 sprintf(model, "BVME%d000", m68k_cputype == CPU_68060 ? 6 : 4);
81}
82
83
84
85
86
87static void __init bvme6000_init_IRQ(void)
88{
89 m68k_setup_user_interrupt(VEC_USER, 192);
90}
91
92void __init config_bvme6000(void)
93{
94 volatile PitRegsPtr pit = (PitRegsPtr)BVME_PIT_BASE;
95
96
97 if (!vme_brdtype) {
98 if (m68k_cputype == CPU_68060)
99 vme_brdtype = VME_TYPE_BVME6000;
100 else
101 vme_brdtype = VME_TYPE_BVME4000;
102 }
103#if 0
104
105
106
107
108 bvme6000_set_vectors();
109#endif
110
111 mach_max_dma_address = 0xffffffff;
112 mach_sched_init = bvme6000_sched_init;
113 mach_init_IRQ = bvme6000_init_IRQ;
114 arch_gettimeoffset = bvme6000_gettimeoffset;
115 mach_hwclk = bvme6000_hwclk;
116 mach_set_clock_mmss = bvme6000_set_clock_mmss;
117 mach_reset = bvme6000_reset;
118 mach_get_model = bvme6000_get_model;
119
120 pr_info("Board is %sconfigured as a System Controller\n",
121 *config_reg_ptr & BVME_CONFIG_SW1 ? "" : "not ");
122
123
124
125 pit->pgcr = 0x00;
126 pit->psrr = 0x18;
127 pit->pacr = 0x00;
128 pit->padr = 0x00;
129 pit->paddr = 0x00;
130 pit->pbcr = 0x80;
131 pit->pbdr = 0xbc | (*config_reg_ptr & BVME_CONFIG_SW1 ? 0 : 0x40);
132
133 pit->pbddr = 0xf3;
134 pit->pcdr = 0x01;
135 pit->pcddr = 0x03;
136
137
138
139 bvme_acr_addrctl = 0;
140}
141
142
143irqreturn_t bvme6000_abort_int (int irq, void *dev_id)
144{
145 unsigned long *new = (unsigned long *)vectors;
146 unsigned long *old = (unsigned long *)0xf8000000;
147
148
149 while (*(volatile unsigned char *)BVME_LOCAL_IRQ_STAT & BVME_ABORT_STATUS)
150 ;
151
152 *(new+4) = *(old+4);
153 *(new+9) = *(old+9);
154 *(new+47) = *(old+47);
155 *(new+0x1f) = *(old+0x1f);
156 return IRQ_HANDLED;
157}
158
159
160static irqreturn_t bvme6000_timer_int (int irq, void *dev_id)
161{
162 volatile RtcPtr_t rtc = (RtcPtr_t)BVME_RTC_BASE;
163 unsigned char msr = rtc->msr & 0xc0;
164
165 rtc->msr = msr | 0x20;
166
167 return tick_handler(irq, dev_id);
168}
169
170
171
172
173
174
175
176
177
178
179void bvme6000_sched_init (irq_handler_t timer_routine)
180{
181 volatile RtcPtr_t rtc = (RtcPtr_t)BVME_RTC_BASE;
182 unsigned char msr = rtc->msr & 0xc0;
183
184 rtc->msr = 0;
185
186 tick_handler = timer_routine;
187 if (request_irq(BVME_IRQ_RTC, bvme6000_timer_int, 0,
188 "timer", bvme6000_timer_int))
189 panic ("Couldn't register timer int");
190
191 rtc->t1cr_omr = 0x04;
192 rtc->t1msb = 39999 >> 8;
193 rtc->t1lsb = 39999 & 0xff;
194 rtc->irr_icr1 &= 0xef;
195 rtc->msr = 0x40;
196 rtc->pfr_icr0 = 0x80;
197 rtc->irr_icr1 = 0;
198 rtc->t1cr_omr = 0x0a;
199 rtc->t0cr_rtmr &= 0xdf;
200 rtc->msr = 0;
201 rtc->t1cr_omr = 0x05;
202
203 rtc->msr = msr;
204
205 if (request_irq(BVME_IRQ_ABORT, bvme6000_abort_int, 0,
206 "abort", bvme6000_abort_int))
207 panic ("Couldn't register abort int");
208}
209
210
211
212
213
214
215
216
217
218
219
220u32 bvme6000_gettimeoffset(void)
221{
222 volatile RtcPtr_t rtc = (RtcPtr_t)BVME_RTC_BASE;
223 volatile PitRegsPtr pit = (PitRegsPtr)BVME_PIT_BASE;
224 unsigned char msr = rtc->msr & 0xc0;
225 unsigned char t1int, t1op;
226 u32 v = 800000, ov;
227
228 rtc->msr = 0;
229
230 do {
231 ov = v;
232 t1int = rtc->msr & 0x20;
233 t1op = pit->pcdr & 0x04;
234 rtc->t1cr_omr |= 0x40;
235 v = rtc->t1msb << 8;
236 v |= rtc->t1lsb;
237 } while (t1int != (rtc->msr & 0x20) ||
238 t1op != (pit->pcdr & 0x04) ||
239 abs(ov-v) > 80 ||
240 v > 39960);
241
242 v = 39999 - v;
243 if (!t1op)
244 v += 40000;
245 v /= 8;
246 if (t1int)
247 v += 10000;
248 rtc->msr = msr;
249
250 return v * 1000;
251}
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268int bvme6000_hwclk(int op, struct rtc_time *t)
269{
270 volatile RtcPtr_t rtc = (RtcPtr_t)BVME_RTC_BASE;
271 unsigned char msr = rtc->msr & 0xc0;
272
273 rtc->msr = 0x40;
274
275 if (op)
276 {
277 rtc->t0cr_rtmr = t->tm_year%4;
278 rtc->bcd_tenms = 0;
279 rtc->bcd_sec = bin2bcd(t->tm_sec);
280 rtc->bcd_min = bin2bcd(t->tm_min);
281 rtc->bcd_hr = bin2bcd(t->tm_hour);
282 rtc->bcd_dom = bin2bcd(t->tm_mday);
283 rtc->bcd_mth = bin2bcd(t->tm_mon + 1);
284 rtc->bcd_year = bin2bcd(t->tm_year%100);
285 if (t->tm_wday >= 0)
286 rtc->bcd_dow = bin2bcd(t->tm_wday+1);
287 rtc->t0cr_rtmr = t->tm_year%4 | 0x08;
288 }
289 else
290 {
291 do {
292 t->tm_sec = bcd2bin(rtc->bcd_sec);
293 t->tm_min = bcd2bin(rtc->bcd_min);
294 t->tm_hour = bcd2bin(rtc->bcd_hr);
295 t->tm_mday = bcd2bin(rtc->bcd_dom);
296 t->tm_mon = bcd2bin(rtc->bcd_mth)-1;
297 t->tm_year = bcd2bin(rtc->bcd_year);
298 if (t->tm_year < 70)
299 t->tm_year += 100;
300 t->tm_wday = bcd2bin(rtc->bcd_dow)-1;
301 } while (t->tm_sec != bcd2bin(rtc->bcd_sec));
302 }
303
304 rtc->msr = msr;
305
306 return 0;
307}
308
309
310
311
312
313
314
315
316int bvme6000_set_clock_mmss (unsigned long nowtime)
317{
318 int retval = 0;
319 short real_seconds = nowtime % 60, real_minutes = (nowtime / 60) % 60;
320 unsigned char rtc_minutes, rtc_tenms;
321 volatile RtcPtr_t rtc = (RtcPtr_t)BVME_RTC_BASE;
322 unsigned char msr = rtc->msr & 0xc0;
323 unsigned long flags;
324 volatile int i;
325
326 rtc->msr = 0;
327 rtc_minutes = bcd2bin (rtc->bcd_min);
328
329 if ((rtc_minutes < real_minutes
330 ? real_minutes - rtc_minutes
331 : rtc_minutes - real_minutes) < 30)
332 {
333 local_irq_save(flags);
334 rtc_tenms = rtc->bcd_tenms;
335 while (rtc_tenms == rtc->bcd_tenms)
336 ;
337 for (i = 0; i < 1000; i++)
338 ;
339 rtc->bcd_min = bin2bcd(real_minutes);
340 rtc->bcd_sec = bin2bcd(real_seconds);
341 local_irq_restore(flags);
342 }
343 else
344 retval = -1;
345
346 rtc->msr = msr;
347
348 return retval;
349}
350
351