blob: 1bb3ce6634d36630d4ad82e34e91cc45de83da97 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Geert Uytterhoeven4c3c5222013-10-02 11:37:33 +020029#include <asm/bootinfo-vme.h>
Geert Uytterhoevenabe48102013-10-04 11:41:24 +020030#include <asm/byteorder.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/pgtable.h>
32#include <asm/setup.h>
33#include <asm/irq.h>
34#include <asm/traps.h>
35#include <asm/rtc.h>
36#include <asm/machdep.h>
37#include <asm/mvme147hw.h>
38
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040static void mvme147_get_model(char *model);
David Howells40220c12006-10-09 12:19:47 +010041extern void mvme147_sched_init(irq_handler_t handler);
Stephen Warrenc8d5ba12012-11-08 11:34:55 -070042extern u32 mvme147_gettimeoffset(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043extern int mvme147_hwclk (int, struct rtc_time *);
44extern int mvme147_set_clock_mmss (unsigned long);
45extern void mvme147_reset (void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47
48static int bcd2int (unsigned char b);
49
Torben Hohne53f2762011-01-27 16:00:06 +010050/* Save tick handler routine pointer, will point to xtime_update() in
51 * kernel/time/timekeeping.c, called via mvme147_process_int() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
David Howells40220c12006-10-09 12:19:47 +010053irq_handler_t tick_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55
Geert Uytterhoevena4df02a2013-06-25 21:15:24 +020056int __init mvme147_parse_bootinfo(const struct bi_record *bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
Geert Uytterhoevenabe48102013-10-04 11:41:24 +020058 uint16_t tag = be16_to_cpu(bi->tag);
59 if (tag == BI_VME_TYPE || tag == BI_VME_BRDINFO)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 return 0;
61 else
62 return 1;
63}
64
65void mvme147_reset(void)
66{
67 printk ("\r\n\nCalled mvme147_reset\r\n");
68 m147_pcc->watchdog = 0x0a; /* Clear timer */
69 m147_pcc->watchdog = 0xa5; /* Enable watchdog - 100ms to reset */
70 while (1)
71 ;
72}
73
74static void mvme147_get_model(char *model)
75{
76 sprintf(model, "Motorola MVME147");
77}
78
Roman Zippel200a3d32006-06-25 05:47:06 -070079/*
80 * This function is called during kernel startup to initialize
81 * the mvme147 IRQ handling routines.
82 */
83
Al Viro66a3f822007-07-20 04:33:28 +010084void __init mvme147_init_IRQ(void)
Roman Zippel200a3d32006-06-25 05:47:06 -070085{
Geert Uytterhoevenf30a6482011-09-11 11:54:50 +020086 m68k_setup_user_interrupt(VEC_USER, 192);
Roman Zippel200a3d32006-06-25 05:47:06 -070087}
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89void __init config_mvme147(void)
90{
91 mach_max_dma_address = 0x01000000;
92 mach_sched_init = mvme147_sched_init;
93 mach_init_IRQ = mvme147_init_IRQ;
Stephen Warrenc8d5ba12012-11-08 11:34:55 -070094 arch_gettimeoffset = mvme147_gettimeoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 mach_hwclk = mvme147_hwclk;
96 mach_set_clock_mmss = mvme147_set_clock_mmss;
97 mach_reset = mvme147_reset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 mach_get_model = mvme147_get_model;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 /* Board type is only set by newer versions of vmelilo/tftplilo */
101 if (!vme_brdtype)
102 vme_brdtype = VME_TYPE_MVME147;
103}
104
105
106/* Using pcc tick timer 1 */
107
Al Viro2850bc22006-10-07 14:16:45 +0100108static irqreturn_t mvme147_timer_int (int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
110 m147_pcc->t1_int_cntrl = PCC_TIMER_INT_CLR;
111 m147_pcc->t1_int_cntrl = PCC_INT_ENAB|PCC_LEVEL_TIMER1;
Al Viro2850bc22006-10-07 14:16:45 +0100112 return tick_handler(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
115
David Howells40220c12006-10-09 12:19:47 +0100116void mvme147_sched_init (irq_handler_t timer_routine)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
118 tick_handler = timer_routine;
Geert Uytterhoeven5a239452011-07-13 22:33:13 +0200119 if (request_irq(PCC_IRQ_TIMER1, mvme147_timer_int, 0, "timer 1", NULL))
Geert Uytterhoeven41904f82008-12-30 14:03:28 +0100120 pr_err("Couldn't register timer interrupt\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 /* Init the clock with a value */
123 /* our clock goes off every 6.25us */
124 m147_pcc->t1_preload = PCC_TIMER_PRELOAD;
125 m147_pcc->t1_cntrl = 0x0; /* clear timer */
126 m147_pcc->t1_cntrl = 0x3; /* start timer */
127 m147_pcc->t1_int_cntrl = PCC_TIMER_INT_CLR; /* clear pending ints */
128 m147_pcc->t1_int_cntrl = PCC_INT_ENAB|PCC_LEVEL_TIMER1;
129}
130
131/* This is always executed with interrupts disabled. */
132/* XXX There are race hazards in this code XXX */
Stephen Warrenc8d5ba12012-11-08 11:34:55 -0700133u32 mvme147_gettimeoffset(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
135 volatile unsigned short *cp = (volatile unsigned short *)0xfffe1012;
136 unsigned short n;
137
138 n = *cp;
139 while (n != *cp)
140 n = *cp;
141
142 n -= PCC_TIMER_PRELOAD;
Stephen Warrenc8d5ba12012-11-08 11:34:55 -0700143 return ((unsigned long)n * 25 / 4) * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146static int bcd2int (unsigned char b)
147{
148 return ((b>>4)*10 + (b&15));
149}
150
151int mvme147_hwclk(int op, struct rtc_time *t)
152{
153#warning check me!
154 if (!op) {
155 m147_rtc->ctrl = RTC_READ;
156 t->tm_year = bcd2int (m147_rtc->bcd_year);
157 t->tm_mon = bcd2int (m147_rtc->bcd_mth);
158 t->tm_mday = bcd2int (m147_rtc->bcd_dom);
159 t->tm_hour = bcd2int (m147_rtc->bcd_hr);
160 t->tm_min = bcd2int (m147_rtc->bcd_min);
161 t->tm_sec = bcd2int (m147_rtc->bcd_sec);
162 m147_rtc->ctrl = 0;
163 }
164 return 0;
165}
166
167int mvme147_set_clock_mmss (unsigned long nowtime)
168{
169 return 0;
170}
171
172/*------------------- Serial console stuff ------------------------*/
173
174static void scc_delay (void)
175{
176 int n;
177 volatile int trash;
178
179 for (n = 0; n < 20; n++)
180 trash = n;
181}
182
183static void scc_write (char ch)
184{
185 volatile char *p = (volatile char *)M147_SCC_A_ADDR;
186
187 do {
188 scc_delay();
189 }
190 while (!(*p & 4));
191 scc_delay();
192 *p = 8;
193 scc_delay();
194 *p = ch;
195}
196
197
198void m147_scc_write (struct console *co, const char *str, unsigned count)
199{
200 unsigned long flags;
201
202 local_irq_save(flags);
203
204 while (count--)
205 {
206 if (*str == '\n')
207 scc_write ('\r');
208 scc_write (*str++);
209 }
210 local_irq_restore(flags);
211}
212
213void mvme147_init_console_port (struct console *co, int cflag)
214{
215 co->write = m147_scc_write;
216}