ataints.c 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  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. #include <linux/types.h>
  38. #include <linux/kernel.h>
  39. #include <linux/kernel_stat.h>
  40. #include <linux/init.h>
  41. #include <linux/seq_file.h>
  42. #include <linux/module.h>
  43. #include <asm/system.h>
  44. #include <asm/traps.h>
  45. #include <asm/atarihw.h>
  46. #include <asm/atariints.h>
  47. #include <asm/atari_stdma.h>
  48. #include <asm/irq.h>
  49. #include <asm/entry.h>
  50. /*
  51. * Atari interrupt handling scheme:
  52. * --------------------------------
  53. *
  54. * All interrupt source have an internal number (defined in
  55. * <asm/atariints.h>): Autovector interrupts are 1..7, then follow ST-MFP,
  56. * TT-MFP, SCC, and finally VME interrupts. Vector numbers for the latter can
  57. * be allocated by atari_register_vme_int().
  58. */
  59. /*
  60. * Bitmap for free interrupt vector numbers
  61. * (new vectors starting from 0x70 can be allocated by
  62. * atari_register_vme_int())
  63. */
  64. static int free_vme_vec_bitmap;
  65. /* GK:
  66. * HBL IRQ handler for Falcon. Nobody needs it :-)
  67. * ++andreas: raise ipl to disable further HBLANK interrupts.
  68. */
  69. asmlinkage void falcon_hblhandler(void);
  70. asm(".text\n"
  71. __ALIGN_STR "\n\t"
  72. "falcon_hblhandler:\n\t"
  73. "orw #0x200,%sp@\n\t" /* set saved ipl to 2 */
  74. "rte");
  75. extern void atari_microwire_cmd(int cmd);
  76. extern int atari_SCC_reset_done;
  77. static unsigned int atari_irq_startup(struct irq_data *data)
  78. {
  79. unsigned int irq = data->irq;
  80. m68k_irq_startup(data);
  81. atari_turnon_irq(irq);
  82. atari_enable_irq(irq);
  83. return 0;
  84. }
  85. static void atari_irq_shutdown(struct irq_data *data)
  86. {
  87. unsigned int irq = data->irq;
  88. atari_disable_irq(irq);
  89. atari_turnoff_irq(irq);
  90. m68k_irq_shutdown(data);
  91. if (irq == IRQ_AUTO_4)
  92. vectors[VEC_INT4] = falcon_hblhandler;
  93. }
  94. static void atari_irq_enable(struct irq_data *data)
  95. {
  96. atari_enable_irq(data->irq);
  97. }
  98. static void atari_irq_disable(struct irq_data *data)
  99. {
  100. atari_disable_irq(data->irq);
  101. }
  102. static struct irq_chip atari_irq_chip = {
  103. .name = "atari",
  104. .irq_startup = atari_irq_startup,
  105. .irq_shutdown = atari_irq_shutdown,
  106. .irq_enable = atari_irq_enable,
  107. .irq_disable = atari_irq_disable,
  108. };
  109. /*
  110. * void atari_init_IRQ (void)
  111. *
  112. * Parameters: None
  113. *
  114. * Returns: Nothing
  115. *
  116. * This function should be called during kernel startup to initialize
  117. * the atari IRQ handling routines.
  118. */
  119. void __init atari_init_IRQ(void)
  120. {
  121. m68k_setup_user_interrupt(VEC_USER, NUM_ATARI_SOURCES - IRQ_USER);
  122. m68k_setup_irq_controller(&atari_irq_chip, handle_simple_irq, 1,
  123. NUM_ATARI_SOURCES - 1);
  124. /* Initialize the MFP(s) */
  125. #ifdef ATARI_USE_SOFTWARE_EOI
  126. st_mfp.vec_adr = 0x48; /* Software EOI-Mode */
  127. #else
  128. st_mfp.vec_adr = 0x40; /* Automatic EOI-Mode */
  129. #endif
  130. st_mfp.int_en_a = 0x00; /* turn off MFP-Ints */
  131. st_mfp.int_en_b = 0x00;
  132. st_mfp.int_mk_a = 0xff; /* no Masking */
  133. st_mfp.int_mk_b = 0xff;
  134. if (ATARIHW_PRESENT(TT_MFP)) {
  135. #ifdef ATARI_USE_SOFTWARE_EOI
  136. tt_mfp.vec_adr = 0x58; /* Software EOI-Mode */
  137. #else
  138. tt_mfp.vec_adr = 0x50; /* Automatic EOI-Mode */
  139. #endif
  140. tt_mfp.int_en_a = 0x00; /* turn off MFP-Ints */
  141. tt_mfp.int_en_b = 0x00;
  142. tt_mfp.int_mk_a = 0xff; /* no Masking */
  143. tt_mfp.int_mk_b = 0xff;
  144. }
  145. if (ATARIHW_PRESENT(SCC) && !atari_SCC_reset_done) {
  146. atari_scc.cha_a_ctrl = 9;
  147. MFPDELAY();
  148. atari_scc.cha_a_ctrl = (char) 0xc0; /* hardware reset */
  149. }
  150. if (ATARIHW_PRESENT(SCU)) {
  151. /* init the SCU if present */
  152. tt_scu.sys_mask = 0x10; /* enable VBL (for the cursor) and
  153. * disable HSYNC interrupts (who
  154. * needs them?) MFP and SCC are
  155. * enabled in VME mask
  156. */
  157. tt_scu.vme_mask = 0x60; /* enable MFP and SCC ints */
  158. } else {
  159. /* If no SCU and no Hades, the HSYNC interrupt needs to be
  160. * disabled this way. (Else _inthandler in kernel/sys_call.S
  161. * gets overruns)
  162. */
  163. vectors[VEC_INT2] = falcon_hblhandler;
  164. vectors[VEC_INT4] = falcon_hblhandler;
  165. }
  166. if (ATARIHW_PRESENT(PCM_8BIT) && ATARIHW_PRESENT(MICROWIRE)) {
  167. /* Initialize the LM1992 Sound Controller to enable
  168. the PSG sound. This is misplaced here, it should
  169. be in an atasound_init(), that doesn't exist yet. */
  170. atari_microwire_cmd(MW_LM1992_PSG_HIGH);
  171. }
  172. stdma_init();
  173. /* Initialize the PSG: all sounds off, both ports output */
  174. sound_ym.rd_data_reg_sel = 7;
  175. sound_ym.wd_data = 0xff;
  176. }
  177. /*
  178. * atari_register_vme_int() returns the number of a free interrupt vector for
  179. * hardware with a programmable int vector (probably a VME board).
  180. */
  181. unsigned long atari_register_vme_int(void)
  182. {
  183. int i;
  184. for (i = 0; i < 32; i++)
  185. if ((free_vme_vec_bitmap & (1 << i)) == 0)
  186. break;
  187. if (i == 16)
  188. return 0;
  189. free_vme_vec_bitmap |= 1 << i;
  190. return VME_SOURCE_BASE + i;
  191. }
  192. EXPORT_SYMBOL(atari_register_vme_int);
  193. void atari_unregister_vme_int(unsigned long irq)
  194. {
  195. if (irq >= VME_SOURCE_BASE && irq < VME_SOURCE_BASE + VME_MAX_SOURCES) {
  196. irq -= VME_SOURCE_BASE;
  197. free_vme_vec_bitmap &= ~(1 << irq);
  198. }
  199. }
  200. EXPORT_SYMBOL(atari_unregister_vme_int);