Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This file is subject to the terms and conditions of the GNU General Public |
| 3 | * License. See the file "COPYING" in the main directory of this archive |
| 4 | * for more details. |
| 5 | * |
| 6 | * Copyright (C) 1992 Linus Torvalds |
Ralf Baechle | 89742e5 | 2007-10-18 13:51:15 +0100 | [diff] [blame] | 7 | * Copyright (C) 1994 - 2001, 2003, 07 Ralf Baechle |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | */ |
Ralf Baechle | 584d98b | 2007-10-11 23:46:09 +0100 | [diff] [blame] | 9 | #include <linux/clockchips.h> |
Ralf Baechle | 334955e | 2011-06-01 19:04:57 +0100 | [diff] [blame] | 10 | #include <linux/i8253.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/init.h> |
| 12 | #include <linux/interrupt.h> |
| 13 | #include <linux/kernel.h> |
Ralf Baechle | 631330f | 2009-06-19 14:05:26 +0100 | [diff] [blame] | 14 | #include <linux/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/spinlock.h> |
David Howells | ca4d3e67 | 2010-10-07 14:08:54 +0100 | [diff] [blame] | 16 | #include <linux/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
Thomas Bogendoerfer | ea202c6 | 2007-08-25 11:01:50 +0200 | [diff] [blame] | 18 | #include <asm/irq_cpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <asm/i8259.h> |
| 20 | #include <asm/io.h> |
| 21 | #include <asm/jazz.h> |
Thomas Bogendoerfer | ea202c6 | 2007-08-25 11:01:50 +0200 | [diff] [blame] | 22 | #include <asm/pgtable.h> |
Ralf Baechle | 3d18c98 | 2011-11-28 16:11:28 +0000 | [diff] [blame] | 23 | #include <asm/tlbmisc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
Ralf Baechle | 4a41abe5 | 2010-02-27 12:53:31 +0100 | [diff] [blame] | 25 | static DEFINE_RAW_SPINLOCK(r4030_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Thomas Gleixner | db00bed | 2011-03-23 21:08:52 +0000 | [diff] [blame] | 27 | static void enable_r4030_irq(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | { |
Thomas Gleixner | db00bed | 2011-03-23 21:08:52 +0000 | [diff] [blame] | 29 | unsigned int mask = 1 << (d->irq - JAZZ_IRQ_START); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | unsigned long flags; |
| 31 | |
Ralf Baechle | 4a41abe5 | 2010-02-27 12:53:31 +0100 | [diff] [blame] | 32 | raw_spin_lock_irqsave(&r4030_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | mask |= r4030_read_reg16(JAZZ_IO_IRQ_ENABLE); |
| 34 | r4030_write_reg16(JAZZ_IO_IRQ_ENABLE, mask); |
Ralf Baechle | 4a41abe5 | 2010-02-27 12:53:31 +0100 | [diff] [blame] | 35 | raw_spin_unlock_irqrestore(&r4030_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | } |
| 37 | |
Thomas Gleixner | db00bed | 2011-03-23 21:08:52 +0000 | [diff] [blame] | 38 | void disable_r4030_irq(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | { |
Thomas Gleixner | db00bed | 2011-03-23 21:08:52 +0000 | [diff] [blame] | 40 | unsigned int mask = ~(1 << (d->irq - JAZZ_IRQ_START)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | unsigned long flags; |
| 42 | |
Ralf Baechle | 4a41abe5 | 2010-02-27 12:53:31 +0100 | [diff] [blame] | 43 | raw_spin_lock_irqsave(&r4030_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | mask &= r4030_read_reg16(JAZZ_IO_IRQ_ENABLE); |
| 45 | r4030_write_reg16(JAZZ_IO_IRQ_ENABLE, mask); |
Ralf Baechle | 4a41abe5 | 2010-02-27 12:53:31 +0100 | [diff] [blame] | 46 | raw_spin_unlock_irqrestore(&r4030_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | } |
| 48 | |
Ralf Baechle | 94dee17 | 2006-07-02 14:41:42 +0100 | [diff] [blame] | 49 | static struct irq_chip r4030_irq_type = { |
Atsushi Nemoto | 70d21cd | 2007-01-15 00:07:25 +0900 | [diff] [blame] | 50 | .name = "R4030", |
Thomas Gleixner | db00bed | 2011-03-23 21:08:52 +0000 | [diff] [blame] | 51 | .irq_mask = disable_r4030_irq, |
| 52 | .irq_unmask = enable_r4030_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | }; |
| 54 | |
| 55 | void __init init_r4030_ints(void) |
| 56 | { |
| 57 | int i; |
| 58 | |
Thomas Bogendoerfer | ea202c6 | 2007-08-25 11:01:50 +0200 | [diff] [blame] | 59 | for (i = JAZZ_IRQ_START; i <= JAZZ_IRQ_END; i++) |
Thomas Gleixner | e4ec798 | 2011-03-27 15:19:28 +0200 | [diff] [blame] | 60 | irq_set_chip_and_handler(i, &r4030_irq_type, handle_level_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
| 62 | r4030_write_reg16(JAZZ_IO_IRQ_ENABLE, 0); |
| 63 | r4030_read_reg16(JAZZ_IO_IRQ_SOURCE); /* clear pending IRQs */ |
| 64 | r4030_read_reg32(JAZZ_R4030_INVAL_ADDR); /* clear error bits */ |
| 65 | } |
| 66 | |
| 67 | /* |
| 68 | * On systems with i8259-style interrupt controllers we assume for |
| 69 | * driver compatibility reasons interrupts 0 - 15 to be the i8259 |
| 70 | * interrupts even if the hardware uses a different interrupt numbering. |
| 71 | */ |
| 72 | void __init arch_init_irq(void) |
| 73 | { |
Thomas Bogendoerfer | ea202c6 | 2007-08-25 11:01:50 +0200 | [diff] [blame] | 74 | /* |
| 75 | * this is a hack to get back the still needed wired mapping |
| 76 | * killed by init_mm() |
| 77 | */ |
| 78 | |
| 79 | /* Map 0xe0000000 -> 0x0:800005C0, 0xe0010000 -> 0x1:30000580 */ |
| 80 | add_wired_entry(0x02000017, 0x03c00017, 0xe0000000, PM_64K); |
| 81 | /* Map 0xe2000000 -> 0x0:900005C0, 0xe3010000 -> 0x0:910005C0 */ |
| 82 | add_wired_entry(0x02400017, 0x02440017, 0xe2000000, PM_16M); |
| 83 | /* Map 0xe4000000 -> 0x0:600005C0, 0xe4100000 -> 400005C0 */ |
| 84 | add_wired_entry(0x01800017, 0x01000017, 0xe4000000, PM_4M); |
| 85 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | init_i8259_irqs(); /* Integrated i8259 */ |
Thomas Bogendoerfer | ea202c6 | 2007-08-25 11:01:50 +0200 | [diff] [blame] | 87 | mips_cpu_irq_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | init_r4030_ints(); |
| 89 | |
Thomas Bogendoerfer | ea202c6 | 2007-08-25 11:01:50 +0200 | [diff] [blame] | 90 | change_c0_status(ST0_IM, IE_IRQ2 | IE_IRQ1); |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 91 | } |
| 92 | |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 93 | asmlinkage void plat_irq_dispatch(void) |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 94 | { |
Thiemo Seufer | 119537c | 2007-03-19 00:13:37 +0000 | [diff] [blame] | 95 | unsigned int pending = read_c0_cause() & read_c0_status(); |
Thomas Bogendoerfer | ea202c6 | 2007-08-25 11:01:50 +0200 | [diff] [blame] | 96 | unsigned int irq; |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 97 | |
Thomas Bogendoerfer | ea202c6 | 2007-08-25 11:01:50 +0200 | [diff] [blame] | 98 | if (pending & IE_IRQ4) { |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 99 | r4030_read_reg32(JAZZ_TIMER_REGISTER); |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 100 | do_IRQ(JAZZ_TIMER_IRQ); |
Thomas Bogendoerfer | 3be51f7 | 2007-11-02 11:17:13 +0100 | [diff] [blame] | 101 | } else if (pending & IE_IRQ2) { |
| 102 | irq = *(volatile u8 *)JAZZ_EISA_IRQ_ACK; |
| 103 | do_IRQ(irq); |
| 104 | } else if (pending & IE_IRQ1) { |
Thomas Bogendoerfer | ea202c6 | 2007-08-25 11:01:50 +0200 | [diff] [blame] | 105 | irq = *(volatile u8 *)JAZZ_IO_IRQ_SOURCE >> 2; |
| 106 | if (likely(irq > 0)) |
| 107 | do_IRQ(irq + JAZZ_IRQ_START - 1); |
| 108 | else |
| 109 | panic("Unimplemented loc_no_irq handler"); |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 110 | } |
| 111 | } |
Ralf Baechle | 584d98b | 2007-10-11 23:46:09 +0100 | [diff] [blame] | 112 | |
Ralf Baechle | 584d98b | 2007-10-11 23:46:09 +0100 | [diff] [blame] | 113 | struct clock_event_device r4030_clockevent = { |
| 114 | .name = "r4030", |
| 115 | .features = CLOCK_EVT_FEAT_PERIODIC, |
Thomas Bogendoerfer | 3be51f7 | 2007-11-02 11:17:13 +0100 | [diff] [blame] | 116 | .rating = 300, |
Ralf Baechle | 584d98b | 2007-10-11 23:46:09 +0100 | [diff] [blame] | 117 | .irq = JAZZ_TIMER_IRQ, |
Ralf Baechle | 584d98b | 2007-10-11 23:46:09 +0100 | [diff] [blame] | 118 | }; |
| 119 | |
| 120 | static irqreturn_t r4030_timer_interrupt(int irq, void *dev_id) |
| 121 | { |
Thomas Bogendoerfer | 3be51f7 | 2007-11-02 11:17:13 +0100 | [diff] [blame] | 122 | struct clock_event_device *cd = dev_id; |
Ralf Baechle | 584d98b | 2007-10-11 23:46:09 +0100 | [diff] [blame] | 123 | |
Thomas Bogendoerfer | 3be51f7 | 2007-11-02 11:17:13 +0100 | [diff] [blame] | 124 | cd->event_handler(cd); |
Ralf Baechle | 584d98b | 2007-10-11 23:46:09 +0100 | [diff] [blame] | 125 | return IRQ_HANDLED; |
| 126 | } |
| 127 | |
| 128 | static struct irqaction r4030_timer_irqaction = { |
| 129 | .handler = r4030_timer_interrupt, |
Yong Zhang | 8b5690f | 2011-11-22 14:38:03 +0000 | [diff] [blame] | 130 | .flags = IRQF_TIMER, |
Thomas Bogendoerfer | 3be51f7 | 2007-11-02 11:17:13 +0100 | [diff] [blame] | 131 | .name = "R4030 timer", |
Ralf Baechle | 584d98b | 2007-10-11 23:46:09 +0100 | [diff] [blame] | 132 | }; |
| 133 | |
Ralf Baechle | 89742e5 | 2007-10-18 13:51:15 +0100 | [diff] [blame] | 134 | void __init plat_time_init(void) |
Ralf Baechle | 584d98b | 2007-10-11 23:46:09 +0100 | [diff] [blame] | 135 | { |
Thomas Bogendoerfer | 3be51f7 | 2007-11-02 11:17:13 +0100 | [diff] [blame] | 136 | struct clock_event_device *cd = &r4030_clockevent; |
| 137 | struct irqaction *action = &r4030_timer_irqaction; |
| 138 | unsigned int cpu = smp_processor_id(); |
Ralf Baechle | 584d98b | 2007-10-11 23:46:09 +0100 | [diff] [blame] | 139 | |
| 140 | BUG_ON(HZ != 100); |
| 141 | |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 142 | cd->cpumask = cpumask_of(cpu); |
Thomas Bogendoerfer | 3be51f7 | 2007-11-02 11:17:13 +0100 | [diff] [blame] | 143 | clockevents_register_device(cd); |
| 144 | action->dev_id = cd; |
| 145 | setup_irq(JAZZ_TIMER_IRQ, action); |
| 146 | |
Ralf Baechle | 584d98b | 2007-10-11 23:46:09 +0100 | [diff] [blame] | 147 | /* |
| 148 | * Set clock to 100Hz. |
| 149 | * |
| 150 | * The R4030 timer receives an input clock of 1kHz which is divieded by |
| 151 | * a programmable 4-bit divider. This makes it fairly inflexible. |
| 152 | */ |
| 153 | r4030_write_reg32(JAZZ_TIMER_INTERVAL, 9); |
Ralf Baechle | 89742e5 | 2007-10-18 13:51:15 +0100 | [diff] [blame] | 154 | setup_pit_timer(); |
Ralf Baechle | 584d98b | 2007-10-11 23:46:09 +0100 | [diff] [blame] | 155 | } |