Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/alpha/kernel/sys_rx164.c |
| 3 | * |
| 4 | * Copyright (C) 1995 David A Rusling |
| 5 | * Copyright (C) 1996 Jay A Estabrook |
| 6 | * Copyright (C) 1998, 1999 Richard Henderson |
| 7 | * |
| 8 | * Code supporting the RX164 (PCA56+POLARIS). |
| 9 | */ |
| 10 | |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/types.h> |
| 13 | #include <linux/mm.h> |
| 14 | #include <linux/sched.h> |
| 15 | #include <linux/pci.h> |
| 16 | #include <linux/init.h> |
| 17 | #include <linux/bitops.h> |
| 18 | |
| 19 | #include <asm/ptrace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <asm/dma.h> |
| 21 | #include <asm/irq.h> |
| 22 | #include <asm/mmu_context.h> |
| 23 | #include <asm/io.h> |
| 24 | #include <asm/pgtable.h> |
| 25 | #include <asm/core_polaris.h> |
| 26 | #include <asm/tlbflush.h> |
| 27 | |
| 28 | #include "proto.h" |
| 29 | #include "irq_impl.h" |
| 30 | #include "pci_impl.h" |
| 31 | #include "machvec_impl.h" |
| 32 | |
| 33 | |
| 34 | /* Note mask bit is true for ENABLED irqs. */ |
| 35 | static unsigned long cached_irq_mask; |
| 36 | |
| 37 | static inline void |
| 38 | rx164_update_irq_hw(unsigned long mask) |
| 39 | { |
| 40 | volatile unsigned int *irq_mask; |
| 41 | |
| 42 | irq_mask = (void *)(POLARIS_DENSE_CONFIG_BASE + 0x74); |
| 43 | *irq_mask = mask; |
| 44 | mb(); |
| 45 | *irq_mask; |
| 46 | } |
| 47 | |
| 48 | static inline void |
Thomas Gleixner | 2758a8a | 2011-02-06 14:32:49 +0000 | [diff] [blame] | 49 | rx164_enable_irq(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | { |
Thomas Gleixner | 2758a8a | 2011-02-06 14:32:49 +0000 | [diff] [blame] | 51 | rx164_update_irq_hw(cached_irq_mask |= 1UL << (d->irq - 16)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | static void |
Thomas Gleixner | 2758a8a | 2011-02-06 14:32:49 +0000 | [diff] [blame] | 55 | rx164_disable_irq(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | { |
Thomas Gleixner | 2758a8a | 2011-02-06 14:32:49 +0000 | [diff] [blame] | 57 | rx164_update_irq_hw(cached_irq_mask &= ~(1UL << (d->irq - 16))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | } |
| 59 | |
Thomas Gleixner | 44377f6 | 2009-06-16 15:33:25 -0700 | [diff] [blame] | 60 | static struct irq_chip rx164_irq_type = { |
Thomas Gleixner | 8ab1221 | 2009-11-30 22:51:31 -0500 | [diff] [blame] | 61 | .name = "RX164", |
Thomas Gleixner | 2758a8a | 2011-02-06 14:32:49 +0000 | [diff] [blame] | 62 | .irq_unmask = rx164_enable_irq, |
| 63 | .irq_mask = rx164_disable_irq, |
| 64 | .irq_mask_ack = rx164_disable_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | }; |
| 66 | |
| 67 | static void |
Al Viro | 7ca56053 | 2006-10-08 14:36:08 +0100 | [diff] [blame] | 68 | rx164_device_interrupt(unsigned long vector) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | { |
| 70 | unsigned long pld; |
| 71 | volatile unsigned int *dirr; |
| 72 | long i; |
| 73 | |
| 74 | /* Read the interrupt summary register. On Polaris, this is |
| 75 | the DIRR register in PCI config space (offset 0x84). */ |
| 76 | dirr = (void *)(POLARIS_DENSE_CONFIG_BASE + 0x84); |
| 77 | pld = *dirr; |
| 78 | |
| 79 | /* |
| 80 | * Now for every possible bit set, work through them and call |
| 81 | * the appropriate interrupt handler. |
| 82 | */ |
| 83 | while (pld) { |
| 84 | i = ffz(~pld); |
| 85 | pld &= pld - 1; /* clear least bit set */ |
| 86 | if (i == 20) { |
Al Viro | 3dbb8c6 | 2006-10-08 14:37:32 +0100 | [diff] [blame] | 87 | isa_no_iack_sc_device_interrupt(vector); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | } else { |
Al Viro | 3dbb8c6 | 2006-10-08 14:37:32 +0100 | [diff] [blame] | 89 | handle_irq(16+i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | } |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | static void __init |
| 95 | rx164_init_irq(void) |
| 96 | { |
| 97 | long i; |
| 98 | |
| 99 | rx164_update_irq_hw(0); |
| 100 | for (i = 16; i < 40; ++i) { |
Thomas Gleixner | a9eb076 | 2011-03-25 22:17:31 +0100 | [diff] [blame] | 101 | irq_set_chip_and_handler(i, &rx164_irq_type, handle_level_irq); |
Thomas Gleixner | 2758a8a | 2011-02-06 14:32:49 +0000 | [diff] [blame] | 102 | irq_set_status_flags(i, IRQ_LEVEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | init_i8259a_irqs(); |
| 106 | common_init_isa_dma(); |
| 107 | |
| 108 | setup_irq(16+20, &isa_cascade_irqaction); |
| 109 | } |
| 110 | |
| 111 | |
| 112 | /* |
| 113 | * The RX164 changed its interrupt routing between pass1 and pass2... |
| 114 | * |
| 115 | * PASS1: |
| 116 | * |
| 117 | * Slot IDSEL INTA INTB INTC INTD |
| 118 | * 0 6 5 10 15 20 |
| 119 | * 1 7 4 9 14 19 |
| 120 | * 2 5 3 8 13 18 |
| 121 | * 3 9 2 7 12 17 |
| 122 | * 4 10 1 6 11 16 |
| 123 | * |
| 124 | * PASS2: |
| 125 | * Slot IDSEL INTA INTB INTC INTD |
| 126 | * 0 5 1 7 12 17 |
| 127 | * 1 6 2 8 13 18 |
| 128 | * 2 8 3 9 14 19 |
| 129 | * 3 9 4 10 15 20 |
| 130 | * 4 10 5 11 16 6 |
| 131 | * |
| 132 | */ |
| 133 | |
| 134 | /* |
| 135 | * IdSel |
| 136 | * 5 32 bit PCI option slot 0 |
| 137 | * 6 64 bit PCI option slot 1 |
| 138 | * 7 PCI-ISA bridge |
| 139 | * 7 64 bit PCI option slot 2 |
| 140 | * 9 32 bit PCI option slot 3 |
| 141 | * 10 PCI-PCI bridge |
| 142 | * |
| 143 | */ |
| 144 | |
| 145 | static int __init |
Ralf Baechle | d534194 | 2011-06-10 15:30:21 +0100 | [diff] [blame] | 146 | rx164_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | { |
| 148 | #if 0 |
| 149 | static char irq_tab_pass1[6][5] __initdata = { |
| 150 | /*INT INTA INTB INTC INTD */ |
| 151 | { 16+3, 16+3, 16+8, 16+13, 16+18}, /* IdSel 5, slot 2 */ |
| 152 | { 16+5, 16+5, 16+10, 16+15, 16+20}, /* IdSel 6, slot 0 */ |
| 153 | { 16+4, 16+4, 16+9, 16+14, 16+19}, /* IdSel 7, slot 1 */ |
| 154 | { -1, -1, -1, -1, -1}, /* IdSel 8, PCI/ISA bridge */ |
| 155 | { 16+2, 16+2, 16+7, 16+12, 16+17}, /* IdSel 9, slot 3 */ |
| 156 | { 16+1, 16+1, 16+6, 16+11, 16+16}, /* IdSel 10, slot 4 */ |
| 157 | }; |
| 158 | #else |
| 159 | static char irq_tab[6][5] __initdata = { |
| 160 | /*INT INTA INTB INTC INTD */ |
| 161 | { 16+0, 16+0, 16+6, 16+11, 16+16}, /* IdSel 5, slot 0 */ |
| 162 | { 16+1, 16+1, 16+7, 16+12, 16+17}, /* IdSel 6, slot 1 */ |
| 163 | { -1, -1, -1, -1, -1}, /* IdSel 7, PCI/ISA bridge */ |
| 164 | { 16+2, 16+2, 16+8, 16+13, 16+18}, /* IdSel 8, slot 2 */ |
| 165 | { 16+3, 16+3, 16+9, 16+14, 16+19}, /* IdSel 9, slot 3 */ |
| 166 | { 16+4, 16+4, 16+10, 16+15, 16+5}, /* IdSel 10, PCI-PCI */ |
| 167 | }; |
| 168 | #endif |
| 169 | const long min_idsel = 5, max_idsel = 10, irqs_per_slot = 5; |
| 170 | |
| 171 | /* JRP - Need to figure out how to distinguish pass1 from pass2, |
| 172 | and use the correct table. */ |
| 173 | return COMMON_TABLE_LOOKUP; |
| 174 | } |
| 175 | |
| 176 | |
| 177 | /* |
| 178 | * The System Vector |
| 179 | */ |
| 180 | |
| 181 | struct alpha_machine_vector rx164_mv __initmv = { |
| 182 | .vector_name = "RX164", |
| 183 | DO_EV5_MMU, |
| 184 | DO_DEFAULT_RTC, |
| 185 | DO_POLARIS_IO, |
| 186 | .machine_check = polaris_machine_check, |
| 187 | .max_isa_dma_address = ALPHA_MAX_ISA_DMA_ADDRESS, |
| 188 | .min_io_address = DEFAULT_IO_BASE, |
| 189 | .min_mem_address = DEFAULT_MEM_BASE, |
| 190 | |
| 191 | .nr_irqs = 40, |
| 192 | .device_interrupt = rx164_device_interrupt, |
| 193 | |
| 194 | .init_arch = polaris_init_arch, |
| 195 | .init_irq = rx164_init_irq, |
| 196 | .init_rtc = common_init_rtc, |
| 197 | .init_pci = common_init_pci, |
| 198 | .kill_arch = NULL, |
| 199 | .pci_map_irq = rx164_map_irq, |
| 200 | .pci_swizzle = common_swizzle, |
| 201 | }; |
| 202 | ALIAS_MV(rx164) |