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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Macintosh interrupts
  3.  *
  4.  * General design:
  5.  * In contrary to the Amiga and Atari platforms, the Mac hardware seems to 
  6.  * exclusively use the autovector interrupts (the 'generic level0-level7' 
  7.  * interrupts with exception vectors 0x19-0x1f). The following interrupt levels
  8.  * are used:
  9.  * 1 - VIA1
  10.  *   - slot 0: one second interrupt (CA2)
  11.  *   - slot 1: VBlank (CA1)
  12.  *   - slot 2: ADB data ready (SR full)
  13.  *   - slot 3: ADB data  (CB2)
  14.  *   - slot 4: ADB clock (CB1)
  15.  *   - slot 5: timer 2
  16.  *   - slot 6: timer 1
  17.  *   - slot 7: status of IRQ; signals 'any enabled int.'
  18.  *
  19.  * 2 - VIA2 or RBV
  20.  *   - slot 0: SCSI DRQ (CA2)
  21.  *   - slot 1: NUBUS IRQ (CA1) need to read port A to find which
  22.  *   - slot 2: /EXP IRQ (only on IIci)
  23.  *   - slot 3: SCSI IRQ (CB2)
  24.  *   - slot 4: ASC IRQ (CB1)
  25.  *   - slot 5: timer 2 (not on IIci)
  26.  *   - slot 6: timer 1 (not on IIci)
  27.  *   - slot 7: status of IRQ; signals 'any enabled int.'
  28.  *
  29.  * 2 - OSS (IIfx only?)
  30.  *   - slot 0: SCSI interrupt
  31.  *   - slot 1: Sound interrupt
  32.  *
  33.  * Levels 3-6 vary by machine type. For VIA or RBV Macintohes:
  34.  *
  35.  * 3 - unused (?)
  36.  *
  37.  * 4 - SCC (slot number determined by reading RR3 on the SSC itself)
  38.  *   - slot 1: SCC channel A
  39.  *   - slot 2: SCC channel B
  40.  *
  41.  * 5 - unused (?)
  42.  *   [serial errors or special conditions seem to raise level 6
  43.  *   interrupts on some models (LC4xx?)]
  44.  *
  45.  * 6 - off switch (?)
  46.  *
  47.  * For OSS Macintoshes (IIfx only at this point):
  48.  *
  49.  * 3 - Nubus interrupt
  50.  *   - slot 0: Slot $9
  51.  *   - slot 1: Slot $A
  52.  *   - slot 2: Slot $B
  53.  *   - slot 3: Slot $C
  54.  *   - slot 4: Slot $D
  55.  *   - slot 5: Slot $E
  56.  *
  57.  * 4 - SCC IOP
  58.  *   - slot 1: SCC channel A
  59.  *   - slot 2: SCC channel B
  60.  *
  61.  * 5 - ISM IOP (ADB?)
  62.  *
  63.  * 6 - unused
  64.  *
  65.  * For PSC Macintoshes (660AV, 840AV):
  66.  *
  67.  * 3 - PSC level 3
  68.  *   - slot 0: MACE
  69.  *
  70.  * 4 - PSC level 4
  71.  *   - slot 1: SCC channel A interrupt
  72.  *   - slot 2: SCC channel B interrupt
  73.  *   - slot 3: MACE DMA
  74.  *
  75.  * 5 - PSC level 5
  76.  *
  77.  * 6 - PSC level 6
  78.  *
  79.  * Finally we have good 'ole level 7, the non-maskable interrupt:
  80.  *
  81.  * 7 - NMI (programmer's switch on the back of some Macs)
  82.  *   Also RAM parity error on models which support it (IIc, IIfx?)
  83.  *
  84.  * The current interrupt logic looks something like this:
  85.  *
  86.  * - We install dispatchers for the autovector interrupts (1-7). These
  87.  *   dispatchers are responsible for querying the hardware (the
  88.  *   VIA/RBV/OSS/PSC chips) to determine the actual interrupt source. Using
  89.  *   this information a machspec interrupt number is generated by placing the
  90.  *   index of the interrupt hardware into the low three bits and the original
  91.  *   autovector interrupt number in the upper 5 bits. The handlers for the
  92.  *   resulting machspec interrupt are then called.
  93.  *
  94.  * - Nubus is a special case because its interrupts are hidden behind two
  95.  *   layers of hardware. Nubus interrupts come in as index 1 on VIA #2,
  96.  *   which translates to IRQ number 17. In this spot we install _another_
  97.  *   dispatcher. This dispatcher finds the interrupting slot number (9-F) and
  98.  *   then forms a new machspec interrupt number as above with the slot number
  99.  *   minus 9 in the low three bits and the pseudo-level 7 in the upper five
  100.  *   bits.  The handlers for this new machspec interrupt number are then
  101.  *   called. This puts Nubus interrupts into the range 56-62.
  102.  *
  103.  * - The Baboon interrupts (used on some PowerBooks) are an even more special
  104.  *   case. They're hidden behind the Nubus slot $C interrupt thus adding a
  105.  *   third layer of indirection. Why oh why did the Apple engineers do that?
  106.  *
  107.  * - We support "fast" and "slow" handlers, just like the Amiga port. The
  108.  *   fast handlers are called first and with all interrupts disabled. They
  109.  *   are expected to execute quickly (hence the name). The slow handlers are
  110.  *   called last with interrupts enabled and the interrupt level restored.
  111.  *   They must therefore be reentrant.
  112.  *
  113.  *   TODO:
  114.  *
  115.  */
  116. #include <linux/types.h>
  117. #include <linux/kernel.h>
  118. #include <linux/sched.h>
  119. #include <linux/kernel_stat.h>
  120. #include <linux/interrupt.h> /* for intr_count */
  121. #include <linux/delay.h>
  122. #include <asm/system.h>
  123. #include <asm/irq.h>
  124. #include <asm/traps.h>
  125. #include <asm/bootinfo.h>
  126. #include <asm/machw.h>
  127. #include <asm/macintosh.h>
  128. #include <asm/mac_via.h>
  129. #include <asm/mac_psc.h>
  130. #include <asm/hwtest.h>
  131. #include <asm/macints.h>
  132. #define DEBUG_SPURIOUS
  133. #define SHUTUP_SONIC
  134. /*
  135.  * The mac_irq_list array is an array of linked lists of irq_node_t nodes.
  136.  * Each node contains one handler to be called whenever the interrupt
  137.  * occurs, with fast handlers listed before slow handlers.
  138.  */
  139. irq_node_t *mac_irq_list[NUM_MAC_SOURCES];
  140. /* SCC interrupt mask */
  141. static int scc_mask;
  142. /*
  143.  * VIA/RBV hooks
  144.  */
  145. extern void via_init(void);
  146. extern void via_register_interrupts(void);
  147. extern void via_irq_enable(int);
  148. extern void via_irq_disable(int);
  149. extern void via_irq_clear(int);
  150. extern int  via_irq_pending(int);
  151. /*
  152.  * OSS hooks
  153.  */
  154. extern int oss_present;
  155. extern void oss_init(void);
  156. extern void oss_register_interrupts(void);
  157. extern void oss_irq_enable(int);
  158. extern void oss_irq_disable(int);
  159. extern void oss_irq_clear(int);
  160. extern int  oss_irq_pending(int);
  161. /*
  162.  * PSC hooks
  163.  */
  164. extern int psc_present;
  165. extern void psc_init(void);
  166. extern void psc_register_interrupts(void);
  167. extern void psc_irq_enable(int);
  168. extern void psc_irq_disable(int);
  169. extern void psc_irq_clear(int);
  170. extern int  psc_irq_pending(int);
  171. /*
  172.  * IOP hooks
  173.  */
  174. extern void iop_register_interrupts(void);
  175. /*
  176.  * Baboon hooks
  177.  */
  178. extern int baboon_present;
  179. extern void baboon_init(void);
  180. extern void baboon_register_interrupts(void);
  181. extern void baboon_irq_enable(int);
  182. extern void baboon_irq_disable(int);
  183. extern void baboon_irq_clear(int);
  184. extern int  baboon_irq_pending(int);
  185. /*
  186.  * SCC interrupt routines
  187.  */
  188. static void scc_irq_enable(int);
  189. static void scc_irq_disable(int);
  190. /*
  191.  * console_loglevel determines NMI handler function
  192.  */
  193. extern void mac_bang(int, void *, struct pt_regs *);
  194. void mac_nmi_handler(int, void *, struct pt_regs *);
  195. void mac_debug_handler(int, void *, struct pt_regs *);
  196. /* #define DEBUG_MACINTS */
  197. void mac_init_IRQ(void)
  198. {
  199.         int i;
  200. #ifdef DEBUG_MACINTS
  201. printk("mac_init_IRQ(): Setting things up...n");
  202. #endif
  203. /* Initialize the IRQ handler lists. Initially each list is empty, */
  204. for (i = 0; i < NUM_MAC_SOURCES; i++) {
  205. mac_irq_list[i] = NULL;
  206. }
  207. scc_mask = 0;
  208. /* Make sure the SONIC interrupt is cleared or things get ugly */
  209. #ifdef SHUTUP_SONIC
  210. printk("Killing onboard sonic... ");
  211. /* This address should hopefully be mapped already */
  212. if (hwreg_present((void*)(0x50f0a000))) {
  213. *(long *)(0x50f0a014) = 0x7fffL;
  214. *(long *)(0x50f0a010) = 0L;
  215. }
  216. printk("Done.n");
  217. #endif /* SHUTUP_SONIC */
  218. /* 
  219.  * Now register the handlers for the master IRQ handlers
  220.  * at levels 1-7. Most of the work is done elsewhere.
  221.  */
  222. if (oss_present) {
  223. oss_register_interrupts();
  224. } else {
  225. via_register_interrupts();
  226. }
  227. if (psc_present) psc_register_interrupts();
  228. if (baboon_present) baboon_register_interrupts();
  229. iop_register_interrupts();
  230. sys_request_irq(7, mac_nmi_handler, IRQ_FLG_LOCK, "NMI", mac_nmi_handler);
  231. #ifdef DEBUG_MACINTS
  232. printk("mac_init_IRQ(): Done!n");
  233. #endif
  234. }
  235. /*
  236.  * Routines to work with irq_node_t's on linked lists lifted from
  237.  * the Amiga code written by Roman Zippel.
  238.  */
  239. static inline void mac_insert_irq(irq_node_t **list, irq_node_t *node)
  240. {
  241. unsigned long cpu_flags;
  242. irq_node_t *cur;
  243. if (!node->dev_id)
  244. printk("%s: Warning: dev_id of %s is zeron",
  245.        __FUNCTION__, node->devname);
  246. save_flags(cpu_flags);
  247. cli();
  248. cur = *list;
  249. if (node->flags & IRQ_FLG_FAST) {
  250. node->flags &= ~IRQ_FLG_SLOW;
  251. while (cur && cur->flags & IRQ_FLG_FAST) {
  252. list = &cur->next;
  253. cur = cur->next;
  254. }
  255. } else if (node->flags & IRQ_FLG_SLOW) {
  256. while (cur) {
  257. list = &cur->next;
  258. cur = cur->next;
  259. }
  260. } else {
  261. while (cur && !(cur->flags & IRQ_FLG_SLOW)) {
  262. list = &cur->next;
  263. cur = cur->next;
  264. }
  265. }
  266. node->next = cur;
  267. *list = node;
  268. restore_flags(cpu_flags);
  269. }
  270. static inline void mac_delete_irq(irq_node_t **list, void *dev_id)
  271. {
  272. unsigned long cpu_flags;
  273. irq_node_t *node;
  274. save_flags(cpu_flags);
  275. cli();
  276. for (node = *list; node; list = &node->next, node = *list) {
  277. if (node->dev_id == dev_id) {
  278. *list = node->next;
  279. /* Mark it as free. */
  280. node->handler = NULL;
  281. restore_flags(cpu_flags);
  282. return;
  283. }
  284. }
  285. restore_flags(cpu_flags);
  286. printk ("%s: tried to remove invalid irqn", __FUNCTION__);
  287. }
  288. /*
  289.  * Call all the handlers for a given interrupt. Fast handlers are called
  290.  * first followed by slow handlers.
  291.  *
  292.  * This code taken from the original Amiga code written by Roman Zippel.
  293.  */
  294. void mac_do_irq_list(int irq, struct pt_regs *fp)
  295. {
  296. irq_node_t *node, *slow_nodes;
  297. unsigned long cpu_flags;
  298. kstat.irqs[0][irq]++;
  299. #ifdef DEBUG_SPURIOUS
  300. if (!mac_irq_list[irq] && (console_loglevel > 7)) {
  301. printk("mac_do_irq_list: spurious interrupt %d!n", irq);
  302. return;
  303. }
  304. #endif
  305. /* serve first fast and normal handlers */
  306. for (node = mac_irq_list[irq];
  307.      node && (!(node->flags & IRQ_FLG_SLOW));
  308.      node = node->next)
  309. node->handler(irq, node->dev_id, fp);
  310. if (!node) return;
  311. save_flags(cpu_flags);
  312. restore_flags((cpu_flags & ~0x0700) | (fp->sr & 0x0700));
  313. /* if slow handlers exists, serve them now */
  314. slow_nodes = node;
  315. for (; node; node = node->next) {
  316. node->handler(irq, node->dev_id, fp);
  317. }
  318. }
  319. /*
  320.  *  mac_enable_irq - enable an interrupt source
  321.  * mac_disable_irq - disable an interrupt source
  322.  *   mac_clear_irq - clears a pending interrupt
  323.  * mac_pending_irq - Returns the pending status of an IRQ (nonzero = pending)
  324.  *
  325.  * These routines are just dispatchers to the VIA/OSS/PSC routines.
  326.  */
  327. void mac_enable_irq (unsigned int irq)
  328. {
  329. int irq_src = IRQ_SRC(irq);
  330. switch(irq_src) {
  331. case 1: via_irq_enable(irq);
  332. break;
  333. case 2:
  334. case 7: if (oss_present) {
  335. oss_irq_enable(irq);
  336. } else {
  337. via_irq_enable(irq);
  338. }
  339. break;
  340. case 3:
  341. case 4:
  342. case 5:
  343. case 6: if (psc_present) {
  344. psc_irq_enable(irq);
  345. } else if (oss_present) {
  346. oss_irq_enable(irq);
  347. } else if (irq_src == 4) {
  348. scc_irq_enable(irq);
  349. }
  350. break;
  351. case 8: if (baboon_present) {
  352. baboon_irq_enable(irq);
  353. }
  354. break;
  355. }
  356. }
  357. void mac_disable_irq (unsigned int irq)
  358. {
  359. int irq_src = IRQ_SRC(irq);
  360. switch(irq_src) {
  361. case 1: via_irq_disable(irq);
  362. break;
  363. case 2:
  364. case 7: if (oss_present) {
  365. oss_irq_disable(irq);
  366. } else {
  367. via_irq_disable(irq);
  368. }
  369. break;
  370. case 3:
  371. case 4:
  372. case 5:
  373. case 6: if (psc_present) {
  374. psc_irq_disable(irq);
  375. } else if (oss_present) {
  376. oss_irq_disable(irq);
  377. } else if (irq_src == 4) {
  378. scc_irq_disable(irq);
  379. }
  380. break;
  381. case 8: if (baboon_present) {
  382. baboon_irq_disable(irq);
  383. }
  384. break;
  385. }
  386. }
  387. void mac_clear_irq( unsigned int irq )
  388. {
  389. switch(IRQ_SRC(irq)) {
  390. case 1: via_irq_clear(irq);
  391. break;
  392. case 2:
  393. case 7: if (oss_present) {
  394. oss_irq_clear(irq);
  395. } else {
  396. via_irq_clear(irq);
  397. }
  398. break;
  399. case 3:
  400. case 4:
  401. case 5:
  402. case 6: if (psc_present) {
  403. psc_irq_clear(irq);
  404. } else if (oss_present) {
  405. oss_irq_clear(irq);
  406. }
  407. break;
  408. case 8: if (baboon_present) {
  409. baboon_irq_clear(irq);
  410. }
  411. break;
  412. }
  413. }
  414. int mac_irq_pending( unsigned int irq )
  415. {
  416. switch(IRQ_SRC(irq)) {
  417. case 1: return via_irq_pending(irq);
  418. case 2:
  419. case 7: if (oss_present) {
  420. return oss_irq_pending(irq);
  421. } else {
  422. return via_irq_pending(irq);
  423. }
  424. case 3:
  425. case 4:
  426. case 5:
  427. case 6: if (psc_present) {
  428. return psc_irq_pending(irq);
  429. } else if (oss_present) {
  430. return oss_irq_pending(irq);
  431. }
  432. }
  433. return 0;
  434. }
  435. /*
  436.  * Add an interrupt service routine to an interrupt source.
  437.  * Returns 0 on success.
  438.  *
  439.  * FIXME: You can register interrupts on nonexistant source (ie PSC4 on a
  440.  *        non-PSC machine). We should return -EINVAL in those cases.
  441.  */
  442.  
  443. int mac_request_irq(unsigned int irq,
  444.     void (*handler)(int, void *, struct pt_regs *),
  445.     unsigned long flags, const char *devname, void *dev_id)
  446. {
  447. irq_node_t *node;
  448. #ifdef DEBUG_MACINTS
  449. printk ("%s: irq %d requested for %sn", __FUNCTION__, irq, devname);
  450. #endif
  451. if (irq < VIA1_SOURCE_BASE) {
  452. return sys_request_irq(irq, handler, flags, devname, dev_id);
  453. }
  454. if (irq >= NUM_MAC_SOURCES) {
  455. printk ("%s: unknown irq %d requested by %sn",
  456.         __FUNCTION__, irq, devname);
  457. }
  458. /* Get a node and stick it onto the right list */
  459. if (!(node = new_irq_node())) return -ENOMEM;
  460. node->handler = handler;
  461. node->flags = flags;
  462. node->dev_id = dev_id;
  463. node->devname = devname;
  464. node->next = NULL;
  465. mac_insert_irq(&mac_irq_list[irq], node);
  466. /* Now enable the IRQ source */
  467. mac_enable_irq(irq);
  468. return 0;
  469. }
  470.                             
  471. /*
  472.  * Removes an interrupt service routine from an interrupt source.
  473.  */
  474. void mac_free_irq(unsigned int irq, void *dev_id)
  475. {
  476. #ifdef DEBUG_MACINTS
  477. printk ("%s: irq %d freed by %pn", __FUNCTION__, irq, dev_id);
  478. #endif
  479. if (irq < VIA1_SOURCE_BASE) {
  480. return sys_free_irq(irq, dev_id);
  481. }
  482. if (irq >= NUM_MAC_SOURCES) {
  483. printk ("%s: unknown irq %d freedn",
  484.         __FUNCTION__, irq);
  485. return;
  486. }
  487. mac_delete_irq(&mac_irq_list[irq], dev_id);
  488. /* If the list for this interrupt is */
  489. /* empty then disable the source.    */
  490. if (!mac_irq_list[irq]) {
  491. mac_disable_irq(irq);
  492. }
  493. }
  494. /*
  495.  * Generate a pretty listing for /proc/interrupts
  496.  *
  497.  * By the time we're called the autovector interrupt list has already been
  498.  * generated, so we just need to do the machspec interrupts.
  499.  *
  500.  * 990506 (jmt) - rewritten to handle chained machspec interrupt handlers.
  501.  *                Also removed display of num_spurious it is already
  502.  *   displayed for us as autovector irq 0.
  503.  */
  504. int mac_get_irq_list (char *buf)
  505. {
  506. int i, len = 0;
  507. irq_node_t *node;
  508. char *base;
  509. /* Don't do Nubus interrupts in this loop; we do them separately  */
  510. /* below so that we can print slot numbers instead of IRQ numbers */
  511. for (i = VIA1_SOURCE_BASE ; i < NUM_MAC_SOURCES ; ++i) {
  512. /* Nonexistant interrupt or nothing registered; skip it. */
  513. if ((node = mac_irq_list[i]) == NULL) continue;
  514. if (node->flags & IRQ_FLG_STD) continue;
  515. base = "";
  516. switch(IRQ_SRC(i)) {
  517. case 1: base = "via1";
  518. break;
  519. case 2: if (oss_present) {
  520. base = "oss";
  521. } else {
  522. base = "via2";
  523. }
  524. break;
  525. case 3:
  526. case 4:
  527. case 5:
  528. case 6: if (psc_present) {
  529. base = "psc";
  530. } else if (oss_present) {
  531. base = "oss";
  532. } else {
  533. if (IRQ_SRC(i) == 4) base = "scc";
  534. }
  535. break;
  536. case 7: base = "nbus";
  537. break;
  538. case 8: base = "bbn";
  539. break;
  540. }
  541. len += sprintf(buf+len, "%4s %2d: %10u ",
  542. base, i, kstat.irqs[0][i]);
  543. do {
  544. if (node->flags & IRQ_FLG_FAST) {
  545. len += sprintf(buf+len, "F ");
  546. } else if (node->flags & IRQ_FLG_SLOW) {
  547. len += sprintf(buf+len, "S ");
  548. } else {
  549. len += sprintf(buf+len, "  ");
  550. }
  551. len += sprintf(buf+len, "%sn", node->devname);
  552. if ((node = node->next)) {
  553. len += sprintf(buf+len, "                    ");
  554. }
  555. } while(node);
  556. }
  557. return len;
  558. }
  559. void mac_default_handler(int irq, void *dev_id, struct pt_regs *regs)
  560. {
  561. #ifdef DEBUG_SPURIOUS
  562. printk("Unexpected IRQ %d on device %pn", irq, dev_id);
  563. #endif
  564. }
  565. static int num_debug[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
  566. void mac_debug_handler(int irq, void *dev_id, struct pt_regs *regs)
  567. {
  568. if (num_debug[irq] < 10) {
  569. printk("DEBUG: Unexpected IRQ %dn", irq);
  570. num_debug[irq]++;
  571. }
  572. }
  573. static int in_nmi = 0;
  574. static volatile int nmi_hold = 0;
  575. void mac_nmi_handler(int irq, void *dev_id, struct pt_regs *fp)
  576. {
  577. int i;
  578. /* 
  579.  * generate debug output on NMI switch if 'debug' kernel option given
  580.  * (only works with Penguin!)
  581.  */
  582. in_nmi++;
  583. for (i=0; i<100; i++)
  584. udelay(1000);
  585. if (in_nmi == 1) {
  586. nmi_hold = 1;
  587. printk("... pausing, press NMI to resume ...");
  588. } else {
  589. printk(" ok!n");
  590. nmi_hold = 0;
  591. }
  592. barrier();
  593. while (nmi_hold == 1)
  594. udelay(1000);
  595. if ( console_loglevel >= 8 ) {
  596. #if 0
  597. show_state();
  598. printk("PC: %08lxnSR: %04x  SP: %pn", fp->pc, fp->sr, fp);
  599. printk("d0: %08lx    d1: %08lx    d2: %08lx    d3: %08lxn",
  600.        fp->d0, fp->d1, fp->d2, fp->d3);
  601. printk("d4: %08lx    d5: %08lx    a0: %08lx    a1: %08lxn",
  602.        fp->d4, fp->d5, fp->a0, fp->a1);
  603. if (STACK_MAGIC != *(unsigned long *)current->kernel_stack_page)
  604. printk("Corrupted stack pagen");
  605. printk("Process %s (pid: %d, stackpage=%08lx)n",
  606. current->comm, current->pid, current->kernel_stack_page);
  607. if (intr_count == 1)
  608. dump_stack((struct frame *)fp);
  609. #else
  610. /* printk("NMI "); */
  611. #endif
  612. }
  613. in_nmi--;
  614. }
  615. /*
  616.  * Simple routines for masking and unmasking
  617.  * SCC interrupts in cases where this can't be
  618.  * done in hardware (only the PSC can do that.)
  619.  */
  620. static void scc_irq_enable(int irq) {
  621. int irq_idx     = IRQ_IDX(irq);
  622. scc_mask |= (1 << irq_idx);
  623. }
  624. static void scc_irq_disable(int irq) {
  625. int irq_idx     = IRQ_IDX(irq);
  626. scc_mask &= ~(1 << irq_idx);
  627. }
  628. /*
  629.  * SCC master interrupt handler. We have to do a bit of magic here
  630.  * to figure out what channel gave us the interrupt; putting this
  631.  * here is cleaner than hacking it into drivers/char/macserial.c.
  632.  */
  633. void mac_scc_dispatch(int irq, void *dev_id, struct pt_regs *regs)
  634. {
  635. volatile unsigned char *scc = (unsigned char *) mac_bi_data.sccbase + 2;
  636. unsigned char reg;
  637. unsigned long cpu_flags;
  638. /* Read RR3 from the chip. Always do this on channel A */
  639. /* This must be an atomic operation so disable irqs.   */
  640. save_flags(cpu_flags); cli();
  641. *scc = 3;
  642. reg = *scc;
  643. restore_flags(cpu_flags);
  644. /* Now dispatch. Bits 0-2 are for channel B and */
  645. /* bits 3-5 are for channel A. We can safely    */
  646. /* ignore the remaining bits here.              */
  647. /*                                              */
  648. /* Note that we're ignoring scc_mask for now.   */
  649. /* If we actually mask the ints then we tend to */
  650. /* get hammered by very persistant SCC irqs,    */
  651. /* and since they're autovector interrupts they */
  652. /* pretty much kill the system.                 */
  653. if (reg & 0x38) mac_do_irq_list(IRQ_SCCA, regs);
  654. if (reg & 0x07) mac_do_irq_list(IRQ_SCCB, regs);
  655. }