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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * OSS handling
  3.  * Written by Joshua M. Thompson (funaho@jurai.org)
  4.  *
  5.  *
  6.  * This chip is used in the IIfx in place of VIA #2. It acts like a fancy
  7.  * VIA chip with prorammable interrupt levels.
  8.  *
  9.  * 990502 (jmt) - Major rewrite for new interrupt architecture as well as some
  10.  *   recent insights into OSS operational details.
  11.  * 990610 (jmt) - Now taking fulll advantage of the OSS. Interrupts are mapped
  12.  *   to mostly match the A/UX interrupt scheme supported on the
  13.  *   VIA side. Also added support for enabling the ISM irq again
  14.  *   since we now have a functional IOP manager.
  15.  */
  16. #include <linux/types.h>
  17. #include <linux/kernel.h>
  18. #include <linux/mm.h>
  19. #include <linux/delay.h>
  20. #include <linux/init.h>
  21. #include <asm/bootinfo.h> 
  22. #include <asm/machw.h> 
  23. #include <asm/macintosh.h> 
  24. #include <asm/macints.h>
  25. #include <asm/mac_via.h>
  26. #include <asm/mac_oss.h>
  27. int oss_present;
  28. volatile struct mac_oss *oss;
  29. void oss_irq(int, void *, struct pt_regs *);
  30. void oss_nubus_irq(int, void *, struct pt_regs *);
  31. extern void via1_irq(int, void *, struct pt_regs *);
  32. extern void mac_scc_dispatch(int, void *, struct pt_regs *);
  33. /*
  34.  * Initialize the OSS
  35.  *
  36.  * The OSS "detection" code is actually in via_init() which is always called
  37.  * before us. Thus we can count on oss_present being valid on entry.
  38.  */
  39. void __init oss_init(void)
  40. {
  41. int i;
  42. if (!oss_present) return;
  43. oss = (struct mac_oss *) OSS_BASE;
  44. /* Disable all interrupts. Unlike a VIA it looks like we    */
  45. /* do this by setting the source's interrupt level to zero. */
  46. for (i = 0; i <= OSS_NUM_SOURCES; i++) {
  47. oss->irq_level[i] = OSS_IRQLEV_DISABLED;
  48. }
  49. /* If we disable VIA1 here, we never really handle it... */
  50. oss->irq_level[OSS_VIA1] = OSS_IRQLEV_VIA1;
  51. }
  52. /*
  53.  * Register the OSS and NuBus interrupt dispatchers.
  54.  */
  55. void __init oss_register_interrupts(void)
  56. {
  57. sys_request_irq(OSS_IRQLEV_SCSI, oss_irq, IRQ_FLG_LOCK,
  58. "scsi", (void *) oss);
  59. sys_request_irq(OSS_IRQLEV_IOPSCC, mac_scc_dispatch, IRQ_FLG_LOCK,
  60. "scc", mac_scc_dispatch);
  61. sys_request_irq(OSS_IRQLEV_NUBUS, oss_nubus_irq, IRQ_FLG_LOCK,
  62. "nubus", (void *) oss);
  63. sys_request_irq(OSS_IRQLEV_SOUND, oss_irq, IRQ_FLG_LOCK,
  64. "sound", (void *) oss);
  65. sys_request_irq(OSS_IRQLEV_VIA1, via1_irq, IRQ_FLG_LOCK,
  66. "via1", (void *) via1);
  67. }
  68. /*
  69.  * Initialize OSS for Nubus access
  70.  */
  71. void __init oss_nubus_init(void)
  72. {
  73. }
  74. /*
  75.  * Handle miscellaneous OSS interrupts. Right now that's just sound
  76.  * and SCSI; everything else is routed to its own autovector IRQ.
  77.  */
  78.  
  79. void oss_irq(int irq, void *dev_id, struct pt_regs *regs)
  80. {
  81. int events;
  82. events = oss->irq_pending & (OSS_IP_SOUND|OSS_IP_SCSI);
  83. if (!events) return;
  84. #ifdef DEBUG_IRQS
  85. if ((console_loglevel == 10) && !(events & OSS_IP_SCSI)) {
  86. printk("oss_irq: irq %d events = 0x%04Xn", irq,
  87. (int) oss->irq_pending);
  88. }
  89. #endif
  90. /* FIXME: how do you clear a pending IRQ?    */
  91. if (events & OSS_IP_SOUND) {
  92. /* FIXME: call sound handler */
  93. oss->irq_pending &= ~OSS_IP_SOUND;
  94. } else if (events & OSS_IP_SCSI) {
  95. oss->irq_level[OSS_SCSI] = OSS_IRQLEV_DISABLED;
  96. mac_do_irq_list(IRQ_MAC_SCSI, regs);
  97. oss->irq_pending &= ~OSS_IP_SCSI;
  98. oss->irq_level[OSS_SCSI] = OSS_IRQLEV_SCSI;
  99. } else {
  100. /* FIXME: error check here? */
  101. }
  102. }
  103. /*
  104.  * Nubus IRQ handler, OSS style
  105.  *
  106.  * Unlike the VIA/RBV this is on its own autovector interrupt level.
  107.  */
  108. void oss_nubus_irq(int irq, void *dev_id, struct pt_regs *regs)
  109. {
  110. int events, irq_bit, i;
  111. events = oss->irq_pending & OSS_IP_NUBUS;
  112. if (!events) return;
  113. #ifdef DEBUG_NUBUS_INT
  114. if (console_loglevel > 7) {
  115. printk("oss_nubus_irq: events = 0x%04Xn", events);
  116. }
  117. #endif
  118. /* There are only six slots on the OSS, not seven */
  119. for (i = 0, irq_bit = 1 ; i < 6 ; i++, irq_bit <<= 1) {
  120. if (events & irq_bit) {
  121. oss->irq_level[i] = OSS_IRQLEV_DISABLED;
  122. mac_do_irq_list(NUBUS_SOURCE_BASE + i, regs);
  123. oss->irq_pending &= ~irq_bit;
  124. oss->irq_level[i] = OSS_IRQLEV_NUBUS;
  125. }
  126. }
  127. }
  128. /*
  129.  * Enable an OSS interrupt
  130.  *
  131.  * It looks messy but it's rather straightforward. The switch() statement
  132.  * just maps the machspec interrupt numbers to the right OSS interrupt
  133.  * source (if the OSS handles that interrupt) and then sets the interrupt
  134.  * level for that source to nonzero, thus enabling the interrupt.
  135.  */
  136. void oss_irq_enable(int irq) {
  137. #ifdef DEBUG_IRQUSE
  138. printk("oss_irq_enable(%d)n", irq);
  139. #endif
  140. switch(irq) {
  141. case IRQ_SCC:
  142. case IRQ_SCCA:
  143. case IRQ_SCCB:
  144. oss->irq_level[OSS_IOPSCC] = OSS_IRQLEV_IOPSCC;
  145. break;
  146. case IRQ_MAC_ADB:
  147. oss->irq_level[OSS_IOPISM] = OSS_IRQLEV_IOPISM;
  148. break;
  149. case IRQ_MAC_SCSI:
  150. oss->irq_level[OSS_SCSI] = OSS_IRQLEV_SCSI;
  151. break;
  152. case IRQ_NUBUS_9:
  153. case IRQ_NUBUS_A:
  154. case IRQ_NUBUS_B:
  155. case IRQ_NUBUS_C:
  156. case IRQ_NUBUS_D:
  157. case IRQ_NUBUS_E:
  158. irq -= NUBUS_SOURCE_BASE;
  159. oss->irq_level[irq] = OSS_IRQLEV_NUBUS;
  160. break;
  161. #ifdef DEBUG_IRQUSE
  162. default:
  163. printk("%s unknown irq %dn",__FUNCTION__, irq);
  164. break;
  165. #endif
  166. }
  167. }
  168. /*
  169.  * Disable an OSS interrupt
  170.  *
  171.  * Same as above except we set the source's interrupt level to zero,
  172.  * to disable the interrupt.
  173.  */
  174. void oss_irq_disable(int irq) {
  175. #ifdef DEBUG_IRQUSE
  176. printk("oss_irq_disable(%d)n", irq);
  177. #endif
  178. switch(irq) {
  179. case IRQ_SCC:
  180. case IRQ_SCCA:
  181. case IRQ_SCCB:
  182. oss->irq_level[OSS_IOPSCC] = OSS_IRQLEV_DISABLED;
  183. break;
  184. case IRQ_MAC_ADB:
  185. oss->irq_level[OSS_IOPISM] = OSS_IRQLEV_DISABLED;
  186. break;
  187. case IRQ_MAC_SCSI:
  188. oss->irq_level[OSS_SCSI] = OSS_IRQLEV_DISABLED;
  189. break;
  190. case IRQ_NUBUS_9:
  191. case IRQ_NUBUS_A:
  192. case IRQ_NUBUS_B:
  193. case IRQ_NUBUS_C:
  194. case IRQ_NUBUS_D:
  195. case IRQ_NUBUS_E:
  196. irq -= NUBUS_SOURCE_BASE;
  197. oss->irq_level[irq] = OSS_IRQLEV_DISABLED;
  198. break;
  199. #ifdef DEBUG_IRQUSE
  200. default:
  201. printk("%s unknown irq %dn", __FUNCTION__, irq);
  202. break;
  203. #endif
  204. }
  205. }
  206. /*
  207.  * Clear an OSS interrupt
  208.  *
  209.  * Not sure if this works or not but it's the only method I could
  210.  * think of based on the contents of the mac_oss structure.
  211.  */
  212. void oss_irq_clear(int irq) {
  213. /* FIXME: how to do this on OSS? */
  214. switch(irq) {
  215. case IRQ_SCC:
  216. case IRQ_SCCA:
  217. case IRQ_SCCB:
  218. oss->irq_pending &= ~OSS_IP_IOPSCC;
  219. break;
  220. case IRQ_MAC_ADB:
  221. oss->irq_pending &= ~OSS_IP_IOPISM;
  222. break;
  223. case IRQ_MAC_SCSI:
  224. oss->irq_pending &= ~OSS_IP_SCSI;
  225. break;
  226. case IRQ_NUBUS_9:
  227. case IRQ_NUBUS_A:
  228. case IRQ_NUBUS_B:
  229. case IRQ_NUBUS_C:
  230. case IRQ_NUBUS_D:
  231. case IRQ_NUBUS_E:
  232. irq -= NUBUS_SOURCE_BASE;
  233. oss->irq_pending &= ~(1 << irq);
  234. break;
  235. }
  236. }
  237. /*
  238.  * Check to see if a specific OSS interrupt is pending
  239.  */
  240. int oss_irq_pending(int irq)
  241. {
  242. switch(irq) {
  243. case IRQ_SCC:
  244. case IRQ_SCCA:
  245. case IRQ_SCCB:
  246. return oss->irq_pending & OSS_IP_IOPSCC;
  247. break;
  248. case IRQ_MAC_ADB:
  249. return oss->irq_pending & OSS_IP_IOPISM;
  250. break;
  251. case IRQ_MAC_SCSI:
  252. return oss->irq_pending & OSS_IP_SCSI;
  253. break;
  254. case IRQ_NUBUS_9:
  255. case IRQ_NUBUS_A:
  256. case IRQ_NUBUS_B:
  257. case IRQ_NUBUS_C:
  258. case IRQ_NUBUS_D:
  259. case IRQ_NUBUS_E:
  260. irq -= NUBUS_SOURCE_BASE;
  261. return oss->irq_pending & (1 << irq);
  262. break;
  263. }
  264. return 0;
  265. }