Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Thain | fc4c47b | 2018-12-01 11:53:10 +1100 | [diff] [blame] | 20 | #include <linux/clocksource.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
| 29 | #include <asm/bootinfo.h> |
Geert Uytterhoeven | 4c3c522 | 2013-10-02 11:37:33 +0200 | [diff] [blame] | 30 | #include <asm/bootinfo-vme.h> |
Geert Uytterhoeven | abe4810 | 2013-10-04 11:41:24 +0200 | [diff] [blame] | 31 | #include <asm/byteorder.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <asm/pgtable.h> |
| 33 | #include <asm/setup.h> |
| 34 | #include <asm/irq.h> |
| 35 | #include <asm/traps.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <asm/machdep.h> |
| 37 | #include <asm/mvme147hw.h> |
| 38 | |
| 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | static void mvme147_get_model(char *model); |
David Howells | 40220c1 | 2006-10-09 12:19:47 +0100 | [diff] [blame] | 41 | extern void mvme147_sched_init(irq_handler_t handler); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | extern int mvme147_hwclk (int, struct rtc_time *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | extern void mvme147_reset (void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
| 45 | |
| 46 | static int bcd2int (unsigned char b); |
| 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Geert Uytterhoeven | a4df02a | 2013-06-25 21:15:24 +0200 | [diff] [blame] | 49 | int __init mvme147_parse_bootinfo(const struct bi_record *bi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | { |
Geert Uytterhoeven | abe4810 | 2013-10-04 11:41:24 +0200 | [diff] [blame] | 51 | uint16_t tag = be16_to_cpu(bi->tag); |
| 52 | if (tag == BI_VME_TYPE || tag == BI_VME_BRDINFO) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | return 0; |
| 54 | else |
| 55 | return 1; |
| 56 | } |
| 57 | |
| 58 | void mvme147_reset(void) |
| 59 | { |
Geert Uytterhoeven | 0c29d75 | 2016-12-06 17:09:58 +0100 | [diff] [blame] | 60 | pr_info("\r\n\nCalled mvme147_reset\r\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | m147_pcc->watchdog = 0x0a; /* Clear timer */ |
| 62 | m147_pcc->watchdog = 0xa5; /* Enable watchdog - 100ms to reset */ |
| 63 | while (1) |
| 64 | ; |
| 65 | } |
| 66 | |
| 67 | static void mvme147_get_model(char *model) |
| 68 | { |
| 69 | sprintf(model, "Motorola MVME147"); |
| 70 | } |
| 71 | |
Roman Zippel | 200a3d3 | 2006-06-25 05:47:06 -0700 | [diff] [blame] | 72 | /* |
| 73 | * This function is called during kernel startup to initialize |
| 74 | * the mvme147 IRQ handling routines. |
| 75 | */ |
| 76 | |
Al Viro | 66a3f82 | 2007-07-20 04:33:28 +0100 | [diff] [blame] | 77 | void __init mvme147_init_IRQ(void) |
Roman Zippel | 200a3d3 | 2006-06-25 05:47:06 -0700 | [diff] [blame] | 78 | { |
Geert Uytterhoeven | f30a648 | 2011-09-11 11:54:50 +0200 | [diff] [blame] | 79 | m68k_setup_user_interrupt(VEC_USER, 192); |
Roman Zippel | 200a3d3 | 2006-06-25 05:47:06 -0700 | [diff] [blame] | 80 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
| 82 | void __init config_mvme147(void) |
| 83 | { |
| 84 | mach_max_dma_address = 0x01000000; |
| 85 | mach_sched_init = mvme147_sched_init; |
| 86 | mach_init_IRQ = mvme147_init_IRQ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | mach_hwclk = mvme147_hwclk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | mach_reset = mvme147_reset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | mach_get_model = mvme147_get_model; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
| 91 | /* Board type is only set by newer versions of vmelilo/tftplilo */ |
| 92 | if (!vme_brdtype) |
| 93 | vme_brdtype = VME_TYPE_MVME147; |
| 94 | } |
| 95 | |
Finn Thain | fc4c47b | 2018-12-01 11:53:10 +1100 | [diff] [blame] | 96 | static u64 mvme147_read_clk(struct clocksource *cs); |
| 97 | |
| 98 | static struct clocksource mvme147_clk = { |
| 99 | .name = "pcc", |
| 100 | .rating = 250, |
| 101 | .read = mvme147_read_clk, |
| 102 | .mask = CLOCKSOURCE_MASK(32), |
| 103 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
| 104 | }; |
| 105 | |
| 106 | static u32 clk_total; |
| 107 | |
| 108 | #define PCC_TIMER_CLOCK_FREQ 160000 |
| 109 | #define PCC_TIMER_CYCLES (PCC_TIMER_CLOCK_FREQ / HZ) |
| 110 | #define PCC_TIMER_PRELOAD (0x10000 - PCC_TIMER_CYCLES) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | /* Using pcc tick timer 1 */ |
| 113 | |
Al Viro | 2850bc2 | 2006-10-07 14:16:45 +0100 | [diff] [blame] | 114 | static irqreturn_t mvme147_timer_int (int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | { |
Finn Thain | 1efdd4b | 2018-12-01 11:53:10 +1100 | [diff] [blame] | 116 | irq_handler_t timer_routine = dev_id; |
| 117 | unsigned long flags; |
| 118 | |
| 119 | local_irq_save(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | m147_pcc->t1_int_cntrl = PCC_TIMER_INT_CLR; |
Finn Thain | 7529b90 | 2018-12-01 11:53:10 +1100 | [diff] [blame^] | 121 | m147_pcc->t1_cntrl = PCC_TIMER_CLR_OVF; |
Finn Thain | fc4c47b | 2018-12-01 11:53:10 +1100 | [diff] [blame] | 122 | clk_total += PCC_TIMER_CYCLES; |
Finn Thain | 1efdd4b | 2018-12-01 11:53:10 +1100 | [diff] [blame] | 123 | timer_routine(0, NULL); |
| 124 | local_irq_restore(flags); |
| 125 | |
| 126 | return IRQ_HANDLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | |
David Howells | 40220c1 | 2006-10-09 12:19:47 +0100 | [diff] [blame] | 130 | void mvme147_sched_init (irq_handler_t timer_routine) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | { |
Finn Thain | fc4c47b | 2018-12-01 11:53:10 +1100 | [diff] [blame] | 132 | if (request_irq(PCC_IRQ_TIMER1, mvme147_timer_int, IRQF_TIMER, |
| 133 | "timer 1", timer_routine)) |
Geert Uytterhoeven | 41904f8 | 2008-12-30 14:03:28 +0100 | [diff] [blame] | 134 | pr_err("Couldn't register timer interrupt\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
| 136 | /* Init the clock with a value */ |
Finn Thain | fc4c47b | 2018-12-01 11:53:10 +1100 | [diff] [blame] | 137 | /* The clock counter increments until 0xFFFF then reloads */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | m147_pcc->t1_preload = PCC_TIMER_PRELOAD; |
| 139 | m147_pcc->t1_cntrl = 0x0; /* clear timer */ |
| 140 | m147_pcc->t1_cntrl = 0x3; /* start timer */ |
| 141 | m147_pcc->t1_int_cntrl = PCC_TIMER_INT_CLR; /* clear pending ints */ |
| 142 | m147_pcc->t1_int_cntrl = PCC_INT_ENAB|PCC_LEVEL_TIMER1; |
Finn Thain | fc4c47b | 2018-12-01 11:53:10 +1100 | [diff] [blame] | 143 | |
| 144 | clocksource_register_hz(&mvme147_clk, PCC_TIMER_CLOCK_FREQ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | } |
| 146 | |
Finn Thain | fc4c47b | 2018-12-01 11:53:10 +1100 | [diff] [blame] | 147 | static u64 mvme147_read_clk(struct clocksource *cs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | { |
Finn Thain | fc4c47b | 2018-12-01 11:53:10 +1100 | [diff] [blame] | 149 | unsigned long flags; |
Finn Thain | 7529b90 | 2018-12-01 11:53:10 +1100 | [diff] [blame^] | 150 | u8 overflow, tmp; |
| 151 | u16 count; |
Finn Thain | fc4c47b | 2018-12-01 11:53:10 +1100 | [diff] [blame] | 152 | u32 ticks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | |
Finn Thain | fc4c47b | 2018-12-01 11:53:10 +1100 | [diff] [blame] | 154 | local_irq_save(flags); |
Finn Thain | 7529b90 | 2018-12-01 11:53:10 +1100 | [diff] [blame^] | 155 | tmp = m147_pcc->t1_cntrl >> 4; |
| 156 | count = m147_pcc->t1_count; |
| 157 | overflow = m147_pcc->t1_cntrl >> 4; |
| 158 | if (overflow != tmp) |
| 159 | count = m147_pcc->t1_count; |
| 160 | count -= PCC_TIMER_PRELOAD; |
| 161 | ticks = count + overflow * PCC_TIMER_CYCLES; |
| 162 | ticks += clk_total; |
Finn Thain | fc4c47b | 2018-12-01 11:53:10 +1100 | [diff] [blame] | 163 | local_irq_restore(flags); |
| 164 | |
| 165 | return ticks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | static int bcd2int (unsigned char b) |
| 169 | { |
| 170 | return ((b>>4)*10 + (b&15)); |
| 171 | } |
| 172 | |
| 173 | int mvme147_hwclk(int op, struct rtc_time *t) |
| 174 | { |
| 175 | #warning check me! |
| 176 | if (!op) { |
| 177 | m147_rtc->ctrl = RTC_READ; |
| 178 | t->tm_year = bcd2int (m147_rtc->bcd_year); |
Finn Thain | b65769f | 2018-04-23 11:02:57 +1000 | [diff] [blame] | 179 | t->tm_mon = bcd2int(m147_rtc->bcd_mth) - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | t->tm_mday = bcd2int (m147_rtc->bcd_dom); |
| 181 | t->tm_hour = bcd2int (m147_rtc->bcd_hr); |
| 182 | t->tm_min = bcd2int (m147_rtc->bcd_min); |
| 183 | t->tm_sec = bcd2int (m147_rtc->bcd_sec); |
| 184 | m147_rtc->ctrl = 0; |
Finn Thain | b65769f | 2018-04-23 11:02:57 +1000 | [diff] [blame] | 185 | if (t->tm_year < 70) |
| 186 | t->tm_year += 100; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | } |
| 188 | return 0; |
| 189 | } |