blob: adea549d240e9eb555200c7ec7db49582373e2b7 [file] [log] [blame]
xjb04a4022021-11-25 15:01:52 +08001/*
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/bootinfo-vme.h>
30#include <asm/byteorder.h>
31#include <asm/pgtable.h>
32#include <asm/setup.h>
33#include <asm/irq.h>
34#include <asm/traps.h>
35#include <asm/machdep.h>
36#include <asm/mvme147hw.h>
37
38
39static void mvme147_get_model(char *model);
40extern void mvme147_sched_init(irq_handler_t handler);
41extern u32 mvme147_gettimeoffset(void);
42extern int mvme147_hwclk (int, struct rtc_time *);
43extern void mvme147_reset (void);
44
45
46static int bcd2int (unsigned char b);
47
48/* Save tick handler routine pointer, will point to xtime_update() in
49 * kernel/time/timekeeping.c, called via mvme147_process_int() */
50
51irq_handler_t tick_handler;
52
53
54int __init mvme147_parse_bootinfo(const struct bi_record *bi)
55{
56 uint16_t tag = be16_to_cpu(bi->tag);
57 if (tag == BI_VME_TYPE || tag == BI_VME_BRDINFO)
58 return 0;
59 else
60 return 1;
61}
62
63void mvme147_reset(void)
64{
65 pr_info("\r\n\nCalled mvme147_reset\r\n");
66 m147_pcc->watchdog = 0x0a; /* Clear timer */
67 m147_pcc->watchdog = 0xa5; /* Enable watchdog - 100ms to reset */
68 while (1)
69 ;
70}
71
72static void mvme147_get_model(char *model)
73{
74 sprintf(model, "Motorola MVME147");
75}
76
77/*
78 * This function is called during kernel startup to initialize
79 * the mvme147 IRQ handling routines.
80 */
81
82void __init mvme147_init_IRQ(void)
83{
84 m68k_setup_user_interrupt(VEC_USER, 192);
85}
86
87void __init config_mvme147(void)
88{
89 mach_max_dma_address = 0x01000000;
90 mach_sched_init = mvme147_sched_init;
91 mach_init_IRQ = mvme147_init_IRQ;
92 arch_gettimeoffset = mvme147_gettimeoffset;
93 mach_hwclk = mvme147_hwclk;
94 mach_reset = mvme147_reset;
95 mach_get_model = mvme147_get_model;
96
97 /* Board type is only set by newer versions of vmelilo/tftplilo */
98 if (!vme_brdtype)
99 vme_brdtype = VME_TYPE_MVME147;
100}
101
102
103/* Using pcc tick timer 1 */
104
105static irqreturn_t mvme147_timer_int (int irq, void *dev_id)
106{
107 m147_pcc->t1_int_cntrl = PCC_TIMER_INT_CLR;
108 m147_pcc->t1_int_cntrl = PCC_INT_ENAB|PCC_LEVEL_TIMER1;
109 return tick_handler(irq, dev_id);
110}
111
112
113void mvme147_sched_init (irq_handler_t timer_routine)
114{
115 tick_handler = timer_routine;
116 if (request_irq(PCC_IRQ_TIMER1, mvme147_timer_int, 0, "timer 1", NULL))
117 pr_err("Couldn't register timer interrupt\n");
118
119 /* Init the clock with a value */
120 /* our clock goes off every 6.25us */
121 m147_pcc->t1_preload = PCC_TIMER_PRELOAD;
122 m147_pcc->t1_cntrl = 0x0; /* clear timer */
123 m147_pcc->t1_cntrl = 0x3; /* start timer */
124 m147_pcc->t1_int_cntrl = PCC_TIMER_INT_CLR; /* clear pending ints */
125 m147_pcc->t1_int_cntrl = PCC_INT_ENAB|PCC_LEVEL_TIMER1;
126}
127
128/* This is always executed with interrupts disabled. */
129/* XXX There are race hazards in this code XXX */
130u32 mvme147_gettimeoffset(void)
131{
132 volatile unsigned short *cp = (volatile unsigned short *)0xfffe1012;
133 unsigned short n;
134
135 n = *cp;
136 while (n != *cp)
137 n = *cp;
138
139 n -= PCC_TIMER_PRELOAD;
140 return ((unsigned long)n * 25 / 4) * 1000;
141}
142
143static int bcd2int (unsigned char b)
144{
145 return ((b>>4)*10 + (b&15));
146}
147
148int mvme147_hwclk(int op, struct rtc_time *t)
149{
150#warning check me!
151 if (!op) {
152 m147_rtc->ctrl = RTC_READ;
153 t->tm_year = bcd2int (m147_rtc->bcd_year);
154 t->tm_mon = bcd2int(m147_rtc->bcd_mth) - 1;
155 t->tm_mday = bcd2int (m147_rtc->bcd_dom);
156 t->tm_hour = bcd2int (m147_rtc->bcd_hr);
157 t->tm_min = bcd2int (m147_rtc->bcd_min);
158 t->tm_sec = bcd2int (m147_rtc->bcd_sec);
159 m147_rtc->ctrl = 0;
160 if (t->tm_year < 70)
161 t->tm_year += 100;
162 }
163 return 0;
164}