psc.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*
  2. * Apple Peripheral System Controller (PSC)
  3. *
  4. * The PSC is used on the AV Macs to control IO functions not handled
  5. * by the VIAs (Ethernet, DSP, SCC).
  6. *
  7. * TO DO:
  8. *
  9. * Try to figure out what's going on in pIFR5 and pIFR6. There seem to be
  10. * persisant interrupt conditions in those registers and I have no idea what
  11. * they are. Granted it doesn't affect since we're not enabling any interrupts
  12. * on those levels at the moment, but it would be nice to know. I have a feeling
  13. * they aren't actually interrupt lines but data lines (to the DSP?)
  14. */
  15. #include <linux/types.h>
  16. #include <linux/kernel.h>
  17. #include <linux/mm.h>
  18. #include <linux/delay.h>
  19. #include <linux/init.h>
  20. #include <linux/irq.h>
  21. #include <asm/traps.h>
  22. #include <asm/macintosh.h>
  23. #include <asm/macints.h>
  24. #include <asm/mac_psc.h>
  25. #define DEBUG_PSC
  26. int psc_present;
  27. volatile __u8 *psc;
  28. /*
  29. * Debugging dump, used in various places to see what's going on.
  30. */
  31. static void psc_debug_dump(void)
  32. {
  33. int i;
  34. if (!psc_present) return;
  35. for (i = 0x30 ; i < 0x70 ; i += 0x10) {
  36. printk("PSC #%d: IFR = 0x%02X IER = 0x%02X\n",
  37. i >> 4,
  38. (int) psc_read_byte(pIFRbase + i),
  39. (int) psc_read_byte(pIERbase + i));
  40. }
  41. }
  42. /*
  43. * Try to kill all DMA channels on the PSC. Not sure how this his
  44. * supposed to work; this is code lifted from macmace.c and then
  45. * expanded to cover what I think are the other 7 channels.
  46. */
  47. static __init void psc_dma_die_die_die(void)
  48. {
  49. int i;
  50. printk("Killing all PSC DMA channels...");
  51. for (i = 0 ; i < 9 ; i++) {
  52. psc_write_word(PSC_CTL_BASE + (i << 4), 0x8800);
  53. psc_write_word(PSC_CTL_BASE + (i << 4), 0x1000);
  54. psc_write_word(PSC_CMD_BASE + (i << 5), 0x1100);
  55. psc_write_word(PSC_CMD_BASE + (i << 5) + 0x10, 0x1100);
  56. }
  57. printk("done!\n");
  58. }
  59. /*
  60. * Initialize the PSC. For now this just involves shutting down all
  61. * interrupt sources using the IERs.
  62. */
  63. void __init psc_init(void)
  64. {
  65. int i;
  66. if (macintosh_config->ident != MAC_MODEL_C660
  67. && macintosh_config->ident != MAC_MODEL_Q840)
  68. {
  69. psc = NULL;
  70. psc_present = 0;
  71. return;
  72. }
  73. /*
  74. * The PSC is always at the same spot, but using psc
  75. * keeps things consistent with the psc_xxxx functions.
  76. */
  77. psc = (void *) PSC_BASE;
  78. psc_present = 1;
  79. printk("PSC detected at %p\n", psc);
  80. psc_dma_die_die_die();
  81. #ifdef DEBUG_PSC
  82. psc_debug_dump();
  83. #endif
  84. /*
  85. * Mask and clear all possible interrupts
  86. */
  87. for (i = 0x30 ; i < 0x70 ; i += 0x10) {
  88. psc_write_byte(pIERbase + i, 0x0F);
  89. psc_write_byte(pIFRbase + i, 0x0F);
  90. }
  91. }
  92. /*
  93. * PSC interrupt handler. It's a lot like the VIA interrupt handler.
  94. */
  95. static void psc_irq(struct irq_desc *desc)
  96. {
  97. unsigned int offset = (unsigned int)irq_desc_get_handler_data(desc);
  98. unsigned int irq = irq_desc_get_irq(desc);
  99. int pIFR = pIFRbase + offset;
  100. int pIER = pIERbase + offset;
  101. int irq_num;
  102. unsigned char irq_bit, events;
  103. #ifdef DEBUG_IRQS
  104. printk("psc_irq: irq %u pIFR = 0x%02X pIER = 0x%02X\n",
  105. irq, (int) psc_read_byte(pIFR), (int) psc_read_byte(pIER));
  106. #endif
  107. events = psc_read_byte(pIFR) & psc_read_byte(pIER) & 0xF;
  108. if (!events)
  109. return;
  110. irq_num = irq << 3;
  111. irq_bit = 1;
  112. do {
  113. if (events & irq_bit) {
  114. psc_write_byte(pIFR, irq_bit);
  115. generic_handle_irq(irq_num);
  116. }
  117. irq_num++;
  118. irq_bit <<= 1;
  119. } while (events >= irq_bit);
  120. }
  121. /*
  122. * Register the PSC interrupt dispatchers for autovector interrupts 3-6.
  123. */
  124. void __init psc_register_interrupts(void)
  125. {
  126. irq_set_chained_handler_and_data(IRQ_AUTO_3, psc_irq, (void *)0x30);
  127. irq_set_chained_handler_and_data(IRQ_AUTO_4, psc_irq, (void *)0x40);
  128. irq_set_chained_handler_and_data(IRQ_AUTO_5, psc_irq, (void *)0x50);
  129. irq_set_chained_handler_and_data(IRQ_AUTO_6, psc_irq, (void *)0x60);
  130. }
  131. void psc_irq_enable(int irq) {
  132. int irq_src = IRQ_SRC(irq);
  133. int irq_idx = IRQ_IDX(irq);
  134. int pIER = pIERbase + (irq_src << 4);
  135. #ifdef DEBUG_IRQUSE
  136. printk("psc_irq_enable(%d)\n", irq);
  137. #endif
  138. psc_write_byte(pIER, (1 << irq_idx) | 0x80);
  139. }
  140. void psc_irq_disable(int irq) {
  141. int irq_src = IRQ_SRC(irq);
  142. int irq_idx = IRQ_IDX(irq);
  143. int pIER = pIERbase + (irq_src << 4);
  144. #ifdef DEBUG_IRQUSE
  145. printk("psc_irq_disable(%d)\n", irq);
  146. #endif
  147. psc_write_byte(pIER, 1 << irq_idx);
  148. }