Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * arch/m68k/atari/ataints.c -- Atari Linux interrupt handling code |
| 3 | * |
| 4 | * 5/2/94 Roman Hodek: |
| 5 | * Added support for TT interrupts; setup for TT SCU (may someone has |
| 6 | * twiddled there and we won't get the right interrupts :-() |
| 7 | * |
| 8 | * Major change: The device-independent code in m68k/ints.c didn't know |
| 9 | * about non-autovec ints yet. It hardcoded the number of possible ints to |
| 10 | * 7 (IRQ1...IRQ7). But the Atari has lots of non-autovec ints! I made the |
| 11 | * number of possible ints a constant defined in interrupt.h, which is |
| 12 | * 47 for the Atari. So we can call request_irq() for all Atari interrupts |
| 13 | * just the normal way. Additionally, all vectors >= 48 are initialized to |
| 14 | * call trap() instead of inthandler(). This must be changed here, too. |
| 15 | * |
| 16 | * 1995-07-16 Lars Brinkhoff <f93labr@dd.chalmers.se>: |
| 17 | * Corrected a bug in atari_add_isr() which rejected all SCC |
| 18 | * interrupt sources if there were no TT MFP! |
| 19 | * |
| 20 | * 12/13/95: New interface functions atari_level_triggered_int() and |
| 21 | * atari_register_vme_int() as support for level triggered VME interrupts. |
| 22 | * |
| 23 | * 02/12/96: (Roman) |
| 24 | * Total rewrite of Atari interrupt handling, for new scheme see comments |
| 25 | * below. |
| 26 | * |
| 27 | * 1996-09-03 lars brinkhoff <f93labr@dd.chalmers.se>: |
| 28 | * Added new function atari_unregister_vme_int(), and |
| 29 | * modified atari_register_vme_int() as well as IS_VALID_INTNO() |
| 30 | * to work with it. |
| 31 | * |
| 32 | * This file is subject to the terms and conditions of the GNU General Public |
| 33 | * License. See the file COPYING in the main directory of this archive |
| 34 | * for more details. |
| 35 | * |
| 36 | */ |
| 37 | |
| 38 | #include <linux/types.h> |
| 39 | #include <linux/kernel.h> |
| 40 | #include <linux/kernel_stat.h> |
| 41 | #include <linux/init.h> |
| 42 | #include <linux/seq_file.h> |
Adrian Bunk | a3b2004 | 2008-02-04 22:30:26 -0800 | [diff] [blame] | 43 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <asm/traps.h> |
| 46 | |
| 47 | #include <asm/atarihw.h> |
| 48 | #include <asm/atariints.h> |
| 49 | #include <asm/atari_stdma.h> |
| 50 | #include <asm/irq.h> |
| 51 | #include <asm/entry.h> |
| 52 | |
| 53 | |
| 54 | /* |
| 55 | * Atari interrupt handling scheme: |
| 56 | * -------------------------------- |
| 57 | * |
| 58 | * All interrupt source have an internal number (defined in |
| 59 | * <asm/atariints.h>): Autovector interrupts are 1..7, then follow ST-MFP, |
| 60 | * TT-MFP, SCC, and finally VME interrupts. Vector numbers for the latter can |
| 61 | * be allocated by atari_register_vme_int(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | */ |
| 63 | |
Roman Zippel | 7340856 | 2006-06-25 05:47:03 -0700 | [diff] [blame] | 64 | /* |
| 65 | * Bitmap for free interrupt vector numbers |
| 66 | * (new vectors starting from 0x70 can be allocated by |
| 67 | * atari_register_vme_int()) |
| 68 | */ |
| 69 | static int free_vme_vec_bitmap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
| 71 | /* GK: |
| 72 | * HBL IRQ handler for Falcon. Nobody needs it :-) |
| 73 | * ++andreas: raise ipl to disable further HBLANK interrupts. |
| 74 | */ |
| 75 | asmlinkage void falcon_hblhandler(void); |
| 76 | asm(".text\n" |
| 77 | __ALIGN_STR "\n\t" |
| 78 | "falcon_hblhandler:\n\t" |
| 79 | "orw #0x200,%sp@\n\t" /* set saved ipl to 2 */ |
| 80 | "rte"); |
| 81 | |
Roman Zippel | 7340856 | 2006-06-25 05:47:03 -0700 | [diff] [blame] | 82 | extern void atari_microwire_cmd(int cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
Geert Uytterhoeven | e8abf5e | 2011-04-17 22:53:04 +0200 | [diff] [blame] | 84 | static unsigned int atari_irq_startup(struct irq_data *data) |
Roman Zippel | 7340856 | 2006-06-25 05:47:03 -0700 | [diff] [blame] | 85 | { |
Geert Uytterhoeven | e8abf5e | 2011-04-17 22:53:04 +0200 | [diff] [blame] | 86 | unsigned int irq = data->irq; |
| 87 | |
| 88 | m68k_irq_startup(data); |
Roman Zippel | 7340856 | 2006-06-25 05:47:03 -0700 | [diff] [blame] | 89 | atari_turnon_irq(irq); |
| 90 | atari_enable_irq(irq); |
| 91 | return 0; |
| 92 | } |
| 93 | |
Geert Uytterhoeven | e8abf5e | 2011-04-17 22:53:04 +0200 | [diff] [blame] | 94 | static void atari_irq_shutdown(struct irq_data *data) |
Roman Zippel | 7340856 | 2006-06-25 05:47:03 -0700 | [diff] [blame] | 95 | { |
Geert Uytterhoeven | e8abf5e | 2011-04-17 22:53:04 +0200 | [diff] [blame] | 96 | unsigned int irq = data->irq; |
| 97 | |
Roman Zippel | 7340856 | 2006-06-25 05:47:03 -0700 | [diff] [blame] | 98 | atari_disable_irq(irq); |
| 99 | atari_turnoff_irq(irq); |
Geert Uytterhoeven | e8abf5e | 2011-04-17 22:53:04 +0200 | [diff] [blame] | 100 | m68k_irq_shutdown(data); |
Geert Uytterhoeven | 69961c3 | 2006-10-09 22:23:31 +0200 | [diff] [blame] | 101 | |
| 102 | if (irq == IRQ_AUTO_4) |
| 103 | vectors[VEC_INT4] = falcon_hblhandler; |
Roman Zippel | 7340856 | 2006-06-25 05:47:03 -0700 | [diff] [blame] | 104 | } |
| 105 | |
Geert Uytterhoeven | e8abf5e | 2011-04-17 22:53:04 +0200 | [diff] [blame] | 106 | static void atari_irq_enable(struct irq_data *data) |
| 107 | { |
| 108 | atari_enable_irq(data->irq); |
| 109 | } |
| 110 | |
| 111 | static void atari_irq_disable(struct irq_data *data) |
| 112 | { |
| 113 | atari_disable_irq(data->irq); |
| 114 | } |
| 115 | |
Geert Uytterhoeven | c288bf2 | 2011-04-13 22:31:28 +0200 | [diff] [blame] | 116 | static struct irq_chip atari_irq_chip = { |
Roman Zippel | 7340856 | 2006-06-25 05:47:03 -0700 | [diff] [blame] | 117 | .name = "atari", |
Geert Uytterhoeven | e8abf5e | 2011-04-17 22:53:04 +0200 | [diff] [blame] | 118 | .irq_startup = atari_irq_startup, |
| 119 | .irq_shutdown = atari_irq_shutdown, |
| 120 | .irq_enable = atari_irq_enable, |
| 121 | .irq_disable = atari_irq_disable, |
Roman Zippel | 7340856 | 2006-06-25 05:47:03 -0700 | [diff] [blame] | 122 | }; |
| 123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | /* |
Michael Schmitz | b1ae432 | 2013-04-06 13:26:37 +1300 | [diff] [blame] | 125 | * ST-MFP timer D chained interrupts - each driver gets its own timer |
| 126 | * interrupt instance. |
| 127 | */ |
| 128 | |
| 129 | struct mfptimerbase { |
| 130 | volatile struct MFP *mfp; |
| 131 | unsigned char mfp_mask, mfp_data; |
| 132 | unsigned short int_mask; |
| 133 | int handler_irq, mfptimer_irq, server_irq; |
| 134 | char *name; |
| 135 | } stmfp_base = { |
| 136 | .mfp = &st_mfp, |
| 137 | .int_mask = 0x0, |
| 138 | .handler_irq = IRQ_MFP_TIMD, |
| 139 | .mfptimer_irq = IRQ_MFP_TIMER1, |
| 140 | .name = "MFP Timer D" |
| 141 | }; |
| 142 | |
| 143 | static irqreturn_t mfptimer_handler(int irq, void *dev_id) |
| 144 | { |
| 145 | struct mfptimerbase *base = dev_id; |
| 146 | int mach_irq; |
| 147 | unsigned char ints; |
| 148 | |
| 149 | mach_irq = base->mfptimer_irq; |
| 150 | ints = base->int_mask; |
| 151 | for (; ints; mach_irq++, ints >>= 1) { |
| 152 | if (ints & 1) |
| 153 | generic_handle_irq(mach_irq); |
| 154 | } |
| 155 | return IRQ_HANDLED; |
| 156 | } |
| 157 | |
| 158 | |
| 159 | static void atari_mfptimer_enable(struct irq_data *data) |
| 160 | { |
| 161 | int mfp_num = data->irq - IRQ_MFP_TIMER1; |
| 162 | stmfp_base.int_mask |= 1 << mfp_num; |
| 163 | atari_enable_irq(IRQ_MFP_TIMD); |
| 164 | } |
| 165 | |
| 166 | static void atari_mfptimer_disable(struct irq_data *data) |
| 167 | { |
| 168 | int mfp_num = data->irq - IRQ_MFP_TIMER1; |
| 169 | stmfp_base.int_mask &= ~(1 << mfp_num); |
| 170 | if (!stmfp_base.int_mask) |
| 171 | atari_disable_irq(IRQ_MFP_TIMD); |
| 172 | } |
| 173 | |
| 174 | static struct irq_chip atari_mfptimer_chip = { |
| 175 | .name = "timer_d", |
| 176 | .irq_enable = atari_mfptimer_enable, |
| 177 | .irq_disable = atari_mfptimer_disable, |
| 178 | }; |
| 179 | |
| 180 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | * void atari_init_IRQ (void) |
| 182 | * |
| 183 | * Parameters: None |
| 184 | * |
| 185 | * Returns: Nothing |
| 186 | * |
| 187 | * This function should be called during kernel startup to initialize |
| 188 | * the atari IRQ handling routines. |
| 189 | */ |
| 190 | |
| 191 | void __init atari_init_IRQ(void) |
| 192 | { |
Geert Uytterhoeven | f30a648 | 2011-09-11 11:54:50 +0200 | [diff] [blame] | 193 | m68k_setup_user_interrupt(VEC_USER, NUM_ATARI_SOURCES - IRQ_USER); |
Geert Uytterhoeven | edb3472 | 2011-06-01 11:15:21 +0200 | [diff] [blame] | 194 | m68k_setup_irq_controller(&atari_irq_chip, handle_simple_irq, 1, |
| 195 | NUM_ATARI_SOURCES - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | |
| 197 | /* Initialize the MFP(s) */ |
| 198 | |
| 199 | #ifdef ATARI_USE_SOFTWARE_EOI |
Geert Uytterhoeven | 3d92e8f | 2009-02-22 09:38:47 +0100 | [diff] [blame] | 200 | st_mfp.vec_adr = 0x48; /* Software EOI-Mode */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | #else |
Geert Uytterhoeven | 3d92e8f | 2009-02-22 09:38:47 +0100 | [diff] [blame] | 202 | st_mfp.vec_adr = 0x40; /* Automatic EOI-Mode */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | #endif |
Geert Uytterhoeven | 3d92e8f | 2009-02-22 09:38:47 +0100 | [diff] [blame] | 204 | st_mfp.int_en_a = 0x00; /* turn off MFP-Ints */ |
| 205 | st_mfp.int_en_b = 0x00; |
| 206 | st_mfp.int_mk_a = 0xff; /* no Masking */ |
| 207 | st_mfp.int_mk_b = 0xff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
| 209 | if (ATARIHW_PRESENT(TT_MFP)) { |
| 210 | #ifdef ATARI_USE_SOFTWARE_EOI |
| 211 | tt_mfp.vec_adr = 0x58; /* Software EOI-Mode */ |
| 212 | #else |
| 213 | tt_mfp.vec_adr = 0x50; /* Automatic EOI-Mode */ |
| 214 | #endif |
| 215 | tt_mfp.int_en_a = 0x00; /* turn off MFP-Ints */ |
| 216 | tt_mfp.int_en_b = 0x00; |
| 217 | tt_mfp.int_mk_a = 0xff; /* no Masking */ |
| 218 | tt_mfp.int_mk_b = 0xff; |
| 219 | } |
| 220 | |
| 221 | if (ATARIHW_PRESENT(SCC) && !atari_SCC_reset_done) { |
Geert Uytterhoeven | de339e4 | 2011-01-16 20:47:47 +0100 | [diff] [blame] | 222 | atari_scc.cha_a_ctrl = 9; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | MFPDELAY(); |
Geert Uytterhoeven | de339e4 | 2011-01-16 20:47:47 +0100 | [diff] [blame] | 224 | atari_scc.cha_a_ctrl = (char) 0xc0; /* hardware reset */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | if (ATARIHW_PRESENT(SCU)) { |
| 228 | /* init the SCU if present */ |
| 229 | tt_scu.sys_mask = 0x10; /* enable VBL (for the cursor) and |
| 230 | * disable HSYNC interrupts (who |
| 231 | * needs them?) MFP and SCC are |
| 232 | * enabled in VME mask |
| 233 | */ |
| 234 | tt_scu.vme_mask = 0x60; /* enable MFP and SCC ints */ |
Roman Zippel | 7340856 | 2006-06-25 05:47:03 -0700 | [diff] [blame] | 235 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | /* If no SCU and no Hades, the HSYNC interrupt needs to be |
| 237 | * disabled this way. (Else _inthandler in kernel/sys_call.S |
| 238 | * gets overruns) |
| 239 | */ |
| 240 | |
Adrian Bunk | 29c8a24 | 2008-10-13 21:58:59 +0200 | [diff] [blame] | 241 | vectors[VEC_INT2] = falcon_hblhandler; |
| 242 | vectors[VEC_INT4] = falcon_hblhandler; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | if (ATARIHW_PRESENT(PCM_8BIT) && ATARIHW_PRESENT(MICROWIRE)) { |
| 246 | /* Initialize the LM1992 Sound Controller to enable |
| 247 | the PSG sound. This is misplaced here, it should |
| 248 | be in an atasound_init(), that doesn't exist yet. */ |
| 249 | atari_microwire_cmd(MW_LM1992_PSG_HIGH); |
| 250 | } |
| 251 | |
| 252 | stdma_init(); |
| 253 | |
| 254 | /* Initialize the PSG: all sounds off, both ports output */ |
| 255 | sound_ym.rd_data_reg_sel = 7; |
| 256 | sound_ym.wd_data = 0xff; |
Michael Schmitz | b1ae432 | 2013-04-06 13:26:37 +1300 | [diff] [blame] | 257 | |
| 258 | m68k_setup_irq_controller(&atari_mfptimer_chip, handle_simple_irq, |
| 259 | IRQ_MFP_TIMER1, 8); |
| 260 | |
| 261 | /* prepare timer D data for use as poll interrupt */ |
| 262 | /* set Timer D data Register - needs to be > 0 */ |
| 263 | st_mfp.tim_dt_d = 254; /* < 100 Hz */ |
| 264 | /* start timer D, div = 1:100 */ |
| 265 | st_mfp.tim_ct_cd = (st_mfp.tim_ct_cd & 0xf0) | 0x6; |
| 266 | |
| 267 | /* request timer D dispatch handler */ |
| 268 | if (request_irq(IRQ_MFP_TIMD, mfptimer_handler, IRQF_SHARED, |
| 269 | stmfp_base.name, &stmfp_base)) |
| 270 | pr_err("Couldn't register %s interrupt\n", stmfp_base.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | } |
| 272 | |
| 273 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | /* |
| 275 | * atari_register_vme_int() returns the number of a free interrupt vector for |
| 276 | * hardware with a programmable int vector (probably a VME board). |
| 277 | */ |
| 278 | |
Geert Uytterhoeven | 44883eb | 2011-08-18 20:01:51 +0200 | [diff] [blame] | 279 | unsigned int atari_register_vme_int(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | { |
| 281 | int i; |
| 282 | |
Roman Zippel | 7340856 | 2006-06-25 05:47:03 -0700 | [diff] [blame] | 283 | for (i = 0; i < 32; i++) |
| 284 | if ((free_vme_vec_bitmap & (1 << i)) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | break; |
| 286 | |
Roman Zippel | 7340856 | 2006-06-25 05:47:03 -0700 | [diff] [blame] | 287 | if (i == 16) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | return 0; |
| 289 | |
| 290 | free_vme_vec_bitmap |= 1 << i; |
Roman Zippel | 7340856 | 2006-06-25 05:47:03 -0700 | [diff] [blame] | 291 | return VME_SOURCE_BASE + i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | } |
Adrian Bunk | a3b2004 | 2008-02-04 22:30:26 -0800 | [diff] [blame] | 293 | EXPORT_SYMBOL(atari_register_vme_int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | |
| 295 | |
Geert Uytterhoeven | 44883eb | 2011-08-18 20:01:51 +0200 | [diff] [blame] | 296 | void atari_unregister_vme_int(unsigned int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | { |
Roman Zippel | 7340856 | 2006-06-25 05:47:03 -0700 | [diff] [blame] | 298 | if (irq >= VME_SOURCE_BASE && irq < VME_SOURCE_BASE + VME_MAX_SOURCES) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | irq -= VME_SOURCE_BASE; |
| 300 | free_vme_vec_bitmap &= ~(1 << irq); |
| 301 | } |
| 302 | } |
Adrian Bunk | a3b2004 | 2008-02-04 22:30:26 -0800 | [diff] [blame] | 303 | EXPORT_SYMBOL(atari_unregister_vme_int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | |
| 305 | |