psc.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  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 <asm/traps.h>
  21. #include <asm/bootinfo.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. void psc_irq(int, void *, struct pt_regs *);
  29. /*
  30.  * Debugging dump, used in various places to see what's going on.
  31.  */
  32. void psc_debug_dump(void)
  33. {
  34. int i;
  35. if (!psc_present) return;
  36. for (i = 0x30 ; i < 0x70 ; i += 0x10) {
  37. printk("PSC #%d:  IFR = 0x%02X IER = 0x%02Xn",
  38. i >> 4,
  39. (int) psc_read_byte(pIFRbase + i),
  40. (int) psc_read_byte(pIERbase + i));
  41. }
  42. }
  43. /*
  44.  * Try to kill all DMA channels on the PSC. Not sure how this his
  45.  * supposed to work; this is code lifted from macmace.c and then
  46.  * expanded to cover what I think are the other 7 channels.
  47.  */
  48. void psc_dma_die_die_die(void)
  49. {
  50. int i;
  51. printk("Killing all PSC DMA channels...");
  52. for (i = 0 ; i < 9 ; i++) {
  53. psc_write_word(PSC_CTL_BASE + (i << 4), 0x8800);
  54. psc_write_word(PSC_CTL_BASE + (i << 4), 0x1000);
  55. psc_write_word(PSC_CMD_BASE + (i << 5), 0x1100);
  56. psc_write_word(PSC_CMD_BASE + (i << 5) + 0x10, 0x1100);
  57. }
  58. printk("done!n");
  59. }
  60. /*
  61.  * Initialize the PSC. For now this just involves shutting down all
  62.  * interrupt sources using the IERs.
  63.  */
  64. void __init psc_init(void)
  65. {
  66. int i;
  67. if (macintosh_config->ident != MAC_MODEL_C660
  68.  && macintosh_config->ident != MAC_MODEL_Q840)
  69. {
  70. psc = NULL;
  71. psc_present = 0;
  72. return;
  73. }
  74. /*
  75.  * The PSC is always at the same spot, but using psc
  76.  * keeps things consisant with the psc_xxxx functions.
  77.  */
  78. psc = (void *) PSC_BASE;
  79. psc_present = 1;
  80. printk("PSC detected at %pn", psc);
  81. psc_dma_die_die_die();
  82. #ifdef DEBUG_PSC
  83. psc_debug_dump();
  84. #endif
  85. /*
  86.  * Mask and clear all possible interrupts
  87.  */
  88. for (i = 0x30 ; i < 0x70 ; i += 0x10) {
  89. psc_write_byte(pIERbase + i, 0x0F);
  90. psc_write_byte(pIFRbase + i, 0x0F);
  91. }
  92. }
  93. /*
  94.  * Register the PSC interrupt dispatchers for autovector interrupts 3-6.
  95.  */
  96. void __init psc_register_interrupts(void)
  97. {
  98. sys_request_irq(3, psc_irq, IRQ_FLG_LOCK, "psc3",
  99. (void *) 0x30);
  100. sys_request_irq(4, psc_irq, IRQ_FLG_LOCK, "psc4",
  101. (void *) 0x40);
  102. sys_request_irq(5, psc_irq, IRQ_FLG_LOCK, "psc5",
  103. (void *) 0x50);
  104. sys_request_irq(6, psc_irq, IRQ_FLG_LOCK, "psc6",
  105. (void *) 0x60);
  106. }
  107. /*
  108.  * PSC interrupt handler. It's a lot like the VIA interrupt handler.
  109.  */
  110. void psc_irq(int irq, void *dev_id, struct pt_regs *regs)
  111. {
  112. int pIFR = pIFRbase + ((int) dev_id);
  113. int pIER = pIERbase + ((int) dev_id);
  114. int base_irq;
  115. int irq_bit,i;
  116. unsigned char events;
  117. base_irq = irq << 3;
  118. #ifdef DEBUG_IRQS
  119. printk("psc_irq: irq %d pIFR = 0x%02X pIER = 0x%02Xn",
  120. irq, (int) psc_read_byte(pIFR), (int) psc_read_byte(pIER));
  121. #endif
  122. events = psc_read_byte(pIFR) & psc_read_byte(pIER) & 0xF;
  123. if (!events) return;
  124. for (i = 0, irq_bit = 1 ; i < 4 ; i++, irq_bit <<= 1) {
  125.         if (events & irq_bit) {
  126. psc_write_byte(pIER, irq_bit);
  127. mac_do_irq_list(base_irq + i, regs);
  128. psc_write_byte(pIFR, irq_bit);
  129. psc_write_byte(pIER, irq_bit | 0x80);
  130. }
  131. }
  132. }
  133. void psc_irq_enable(int irq) {
  134. int irq_src = IRQ_SRC(irq);
  135. int irq_idx = IRQ_IDX(irq);
  136. int pIER = pIERbase + (irq_src << 4);
  137. #ifdef DEBUG_IRQUSE
  138. printk("psc_irq_enable(%d)n", irq);
  139. #endif
  140. psc_write_byte(pIER, (1 << irq_idx) | 0x80);
  141. }
  142. void psc_irq_disable(int irq) {
  143. int irq_src = IRQ_SRC(irq);
  144. int irq_idx = IRQ_IDX(irq);
  145. int pIER = pIERbase + (irq_src << 4);
  146. #ifdef DEBUG_IRQUSE
  147. printk("psc_irq_disable(%d)n", irq);
  148. #endif
  149. psc_write_byte(pIER, 1 << irq_idx);
  150. }
  151. void psc_irq_clear(int irq) {
  152. int irq_src = IRQ_SRC(irq);
  153. int irq_idx = IRQ_IDX(irq);
  154. int pIFR = pIERbase + (irq_src << 4);
  155. psc_write_byte(pIFR, 1 << irq_idx);
  156. }
  157. int psc_irq_pending(int irq)
  158. {
  159. int irq_src = IRQ_SRC(irq);
  160. int irq_idx = IRQ_IDX(irq);
  161. int pIFR = pIERbase + (irq_src << 4);
  162. return psc_read_byte(pIFR) & (1 << irq_idx);
  163. }