blob: e1e90c49a49624ccf2cc81f427723de0c89dd28f [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>
Finn Thainfc4c47b2018-12-01 11:53:10 +110020#include <linux/clocksource.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#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
29#include <asm/bootinfo.h>
Geert Uytterhoeven4c3c5222013-10-02 11:37:33 +020030#include <asm/bootinfo-vme.h>
Geert Uytterhoevenabe48102013-10-04 11:41:24 +020031#include <asm/byteorder.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/setup.h>
33#include <asm/irq.h>
34#include <asm/traps.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/machdep.h>
36#include <asm/mvme147hw.h>
37
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039static void mvme147_get_model(char *model);
Arnd Bergmannf9a01532020-09-24 17:29:17 +020040extern void mvme147_sched_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041extern int mvme147_hwclk (int, struct rtc_time *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042extern void mvme147_reset (void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44
45static int bcd2int (unsigned char b);
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Geert Uytterhoevena4df02a2013-06-25 21:15:24 +020048int __init mvme147_parse_bootinfo(const struct bi_record *bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
Geert Uytterhoevenabe48102013-10-04 11:41:24 +020050 uint16_t tag = be16_to_cpu(bi->tag);
51 if (tag == BI_VME_TYPE || tag == BI_VME_BRDINFO)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 return 0;
53 else
54 return 1;
55}
56
57void mvme147_reset(void)
58{
Geert Uytterhoeven0c29d752016-12-06 17:09:58 +010059 pr_info("\r\n\nCalled mvme147_reset\r\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 m147_pcc->watchdog = 0x0a; /* Clear timer */
61 m147_pcc->watchdog = 0xa5; /* Enable watchdog - 100ms to reset */
62 while (1)
63 ;
64}
65
66static void mvme147_get_model(char *model)
67{
68 sprintf(model, "Motorola MVME147");
69}
70
Roman Zippel200a3d32006-06-25 05:47:06 -070071/*
72 * This function is called during kernel startup to initialize
73 * the mvme147 IRQ handling routines.
74 */
75
Al Viro66a3f822007-07-20 04:33:28 +010076void __init mvme147_init_IRQ(void)
Roman Zippel200a3d32006-06-25 05:47:06 -070077{
Geert Uytterhoevenf30a6482011-09-11 11:54:50 +020078 m68k_setup_user_interrupt(VEC_USER, 192);
Roman Zippel200a3d32006-06-25 05:47:06 -070079}
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81void __init config_mvme147(void)
82{
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 mach_sched_init = mvme147_sched_init;
84 mach_init_IRQ = mvme147_init_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 mach_hwclk = mvme147_hwclk;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 mach_reset = mvme147_reset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 mach_get_model = mvme147_get_model;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89 /* Board type is only set by newer versions of vmelilo/tftplilo */
90 if (!vme_brdtype)
91 vme_brdtype = VME_TYPE_MVME147;
92}
93
Finn Thainfc4c47b2018-12-01 11:53:10 +110094static u64 mvme147_read_clk(struct clocksource *cs);
95
96static struct clocksource mvme147_clk = {
97 .name = "pcc",
98 .rating = 250,
99 .read = mvme147_read_clk,
100 .mask = CLOCKSOURCE_MASK(32),
101 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
102};
103
104static u32 clk_total;
105
106#define PCC_TIMER_CLOCK_FREQ 160000
107#define PCC_TIMER_CYCLES (PCC_TIMER_CLOCK_FREQ / HZ)
108#define PCC_TIMER_PRELOAD (0x10000 - PCC_TIMER_CYCLES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110/* Using pcc tick timer 1 */
111
Al Viro2850bc22006-10-07 14:16:45 +0100112static irqreturn_t mvme147_timer_int (int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Finn Thain1efdd4b2018-12-01 11:53:10 +1100114 unsigned long flags;
115
116 local_irq_save(flags);
Finn Thain43262172021-03-30 18:37:51 +1100117 m147_pcc->t1_cntrl = PCC_TIMER_CLR_OVF | PCC_TIMER_COC_EN |
118 PCC_TIMER_TIC_EN;
119 m147_pcc->t1_int_cntrl = PCC_INT_ENAB | PCC_TIMER_INT_CLR |
120 PCC_LEVEL_TIMER1;
Finn Thainfc4c47b2018-12-01 11:53:10 +1100121 clk_total += PCC_TIMER_CYCLES;
Arnd Bergmann42f1d572020-09-24 17:21:00 +0200122 legacy_timer_tick(1);
Finn Thain1efdd4b2018-12-01 11:53:10 +1100123 local_irq_restore(flags);
124
125 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
128
Arnd Bergmannf9a01532020-09-24 17:29:17 +0200129void mvme147_sched_init (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Finn Thainfc4c47b2018-12-01 11:53:10 +1100131 if (request_irq(PCC_IRQ_TIMER1, mvme147_timer_int, IRQF_TIMER,
Arnd Bergmann42f1d572020-09-24 17:21:00 +0200132 "timer 1", NULL))
Geert Uytterhoeven41904f82008-12-30 14:03:28 +0100133 pr_err("Couldn't register timer interrupt\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 /* Init the clock with a value */
Finn Thainfc4c47b2018-12-01 11:53:10 +1100136 /* The clock counter increments until 0xFFFF then reloads */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 m147_pcc->t1_preload = PCC_TIMER_PRELOAD;
Finn Thain43262172021-03-30 18:37:51 +1100138 m147_pcc->t1_cntrl = PCC_TIMER_CLR_OVF | PCC_TIMER_COC_EN |
139 PCC_TIMER_TIC_EN;
140 m147_pcc->t1_int_cntrl = PCC_INT_ENAB | PCC_TIMER_INT_CLR |
141 PCC_LEVEL_TIMER1;
Finn Thainfc4c47b2018-12-01 11:53:10 +1100142
143 clocksource_register_hz(&mvme147_clk, PCC_TIMER_CLOCK_FREQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
Finn Thainfc4c47b2018-12-01 11:53:10 +1100146static u64 mvme147_read_clk(struct clocksource *cs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Finn Thainfc4c47b2018-12-01 11:53:10 +1100148 unsigned long flags;
Finn Thain7529b902018-12-01 11:53:10 +1100149 u8 overflow, tmp;
150 u16 count;
Finn Thainfc4c47b2018-12-01 11:53:10 +1100151 u32 ticks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Finn Thainfc4c47b2018-12-01 11:53:10 +1100153 local_irq_save(flags);
Finn Thain7529b902018-12-01 11:53:10 +1100154 tmp = m147_pcc->t1_cntrl >> 4;
155 count = m147_pcc->t1_count;
156 overflow = m147_pcc->t1_cntrl >> 4;
157 if (overflow != tmp)
158 count = m147_pcc->t1_count;
159 count -= PCC_TIMER_PRELOAD;
160 ticks = count + overflow * PCC_TIMER_CYCLES;
161 ticks += clk_total;
Finn Thainfc4c47b2018-12-01 11:53:10 +1100162 local_irq_restore(flags);
163
164 return ticks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
167static int bcd2int (unsigned char b)
168{
169 return ((b>>4)*10 + (b&15));
170}
171
172int mvme147_hwclk(int op, struct rtc_time *t)
173{
174#warning check me!
175 if (!op) {
176 m147_rtc->ctrl = RTC_READ;
177 t->tm_year = bcd2int (m147_rtc->bcd_year);
Finn Thainb65769f2018-04-23 11:02:57 +1000178 t->tm_mon = bcd2int(m147_rtc->bcd_mth) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 t->tm_mday = bcd2int (m147_rtc->bcd_dom);
180 t->tm_hour = bcd2int (m147_rtc->bcd_hr);
181 t->tm_min = bcd2int (m147_rtc->bcd_min);
182 t->tm_sec = bcd2int (m147_rtc->bcd_sec);
183 m147_rtc->ctrl = 0;
Finn Thainb65769f2018-04-23 11:02:57 +1000184 if (t->tm_year < 70)
185 t->tm_year += 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187 return 0;
188}