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

Linux/Unix编程

开发平台:

Unix_Linux

  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/ptrace.h>
  40. #include <linux/kernel_stat.h>
  41. #include <linux/init.h>
  42. #include <asm/system.h>
  43. #include <asm/traps.h>
  44. #include <asm/atarihw.h>
  45. #include <asm/atariints.h>
  46. #include <asm/atari_stdma.h>
  47. #include <asm/irq.h>
  48. #include <asm/entry.h>
  49. /*
  50.  * Atari interrupt handling scheme:
  51.  * --------------------------------
  52.  * 
  53.  * All interrupt source have an internal number (defined in
  54.  * <asm/atariints.h>): Autovector interrupts are 1..7, then follow ST-MFP,
  55.  * TT-MFP, SCC, and finally VME interrupts. Vector numbers for the latter can
  56.  * be allocated by atari_register_vme_int().
  57.  *
  58.  * Each interrupt can be of three types:
  59.  * 
  60.  *  - SLOW: The handler runs with all interrupts enabled, except the one it
  61.  *    was called by (to avoid reentering). This should be the usual method.
  62.  *    But it is currently possible only for MFP ints, since only the MFP
  63.  *    offers an easy way to mask interrupts.
  64.  *
  65.  *  - FAST: The handler runs with all interrupts disabled. This should be used
  66.  *    only for really fast handlers, that just do actions immediately
  67.  *    necessary, and let the rest do a bottom half or task queue.
  68.  *
  69.  *  - PRIORITIZED: The handler can be interrupted by higher-level ints
  70.  *    (greater IPL, no MFP priorities!). This is the method of choice for ints
  71.  *    which should be slow, but are not from a MFP.
  72.  *
  73.  * The feature of more than one handler for one int source is still there, but
  74.  * only applicable if all handers are of the same type. To not slow down
  75.  * processing of ints with only one handler by the chaining feature, the list
  76.  * calling function atari_call_irq_list() is only plugged in at the time the
  77.  * second handler is registered.
  78.  *
  79.  * Implementation notes: For fast-as-possible int handling, there are separate
  80.  * entry points for each type (slow/fast/prio). The assembler handler calls
  81.  * the irq directly in the usual case, no C wrapper is involved. In case of
  82.  * multiple handlers, atari_call_irq_list() is registered as handler and calls
  83.  * in turn the real irq's. To ease access from assembler level to the irq
  84.  * function pointer and accompanying data, these two are stored in a separate
  85.  * array, irq_handler[]. The rest of data (type, name) are put into a second
  86.  * array, irq_param, that is accessed from C only. For each slow interrupt (32
  87.  * in all) there are separate handler functions, which makes it possible to
  88.  * hard-code the MFP register address and value, are necessary to mask the
  89.  * int. If there'd be only one generic function, lots of calculations would be
  90.  * needed to determine MFP register and int mask from the vector number :-(
  91.  *
  92.  * Furthermore, slow ints may not lower the IPL below its previous value
  93.  * (before the int happened). This is needed so that an int of class PRIO, on
  94.  * that this int may be stacked, cannot be reentered. This feature is
  95.  * implemented as follows: If the stack frame format is 1 (throwaway), the int
  96.  * is not stacked, and the IPL is anded with 0xfbff, resulting in a new level
  97.  * 2, which still blocks the HSYNC, but no interrupts of interest. If the
  98.  * frame format is 0, the int is nested, and the old IPL value can be found in
  99.  * the sr copy in the frame.
  100.  */
  101. #define NUM_INT_SOURCES (8 + NUM_ATARI_SOURCES)
  102. typedef void (*asm_irq_handler)(void);
  103. struct irqhandler {
  104. void (*handler)(int, void *, struct pt_regs *);
  105. void *dev_id;
  106. };
  107. struct irqparam {
  108. unsigned long flags;
  109. const char *devname;
  110. };
  111. /*
  112.  * Array with irq's and their parameter data. This array is accessed from low
  113.  * level assembler code, so an element size of 8 allows usage of index scaling
  114.  * addressing mode.
  115.  */
  116. static struct irqhandler irq_handler[NUM_INT_SOURCES];
  117. /*
  118.  * This array hold the rest of parameters of int handlers: type
  119.  * (slow,fast,prio) and the name of the handler. These values are only
  120.  * accessed from C
  121.  */
  122. static struct irqparam irq_param[NUM_INT_SOURCES];
  123. /*
  124.  * Bitmap for free interrupt vector numbers
  125.  * (new vectors starting from 0x70 can be allocated by
  126.  * atari_register_vme_int())
  127.  */
  128. static int free_vme_vec_bitmap = 0;
  129. /* check for valid int number (complex, sigh...) */
  130. #define IS_VALID_INTNO(n)
  131. ((n) > 0 &&
  132.  /* autovec and ST-MFP ok anyway */
  133.  (((n) < TTMFP_SOURCE_BASE) ||
  134.   /* TT-MFP ok if present */
  135.   ((n) >= TTMFP_SOURCE_BASE && (n) < SCC_SOURCE_BASE &&
  136.    ATARIHW_PRESENT(TT_MFP)) ||
  137.   /* SCC ok if present and number even */
  138.   ((n) >= SCC_SOURCE_BASE && (n) < VME_SOURCE_BASE &&
  139.    !((n) & 1) && ATARIHW_PRESENT(SCC)) ||
  140.   /* greater numbers ok if they are registered VME vectors */
  141.   ((n) >= VME_SOURCE_BASE && (n) < VME_SOURCE_BASE + VME_MAX_SOURCES && 
  142.   free_vme_vec_bitmap & (1 << ((n) - VME_SOURCE_BASE)))))
  143. /*
  144.  * Here start the assembler entry points for interrupts
  145.  */
  146. #define IRQ_NAME(nr) atari_slow_irq_##nr##_handler(void)
  147. #define BUILD_SLOW_IRQ(n)    
  148. asmlinkage void IRQ_NAME(n);    
  149. /* Dummy function to allow asm with operands.  */    
  150. void atari_slow_irq_##n##_dummy (void) {    
  151. __asm__ (__ALIGN_STR "n"    
  152. SYMBOL_NAME_STR(atari_slow_irq_) #n "_handler:t"    
  153. " addql #1,%5n" /* local_irq_count++ */    
  154. SAVE_ALL_INT "n"    
  155. GET_CURRENT(%%d0) "n"    
  156. " andb #~(1<<(%c3&7)),%a4:wn" /* mask this interrupt */    
  157. /* get old IPL from stack frame */    
  158. " bfextu %%sp@(%c2){#5,#3},%%d0n"    
  159. " movew %%sr,%%d1n"    
  160. " bfins %%d0,%%d1{#21,#3}n"    
  161. " movew %%d1,%%srn" /* set IPL = previous value */    
  162. " addql #1,%a0n"    
  163. " lea %a1,%%a0n"    
  164. " pea  %%sp@n" /* push addr of frame */    
  165. " movel %%a0@(4),%%sp@-n" /* push handler data */    
  166. " pea  (%c3+8)n" /* push int number */    
  167. " movel %%a0@,%%a0n"    
  168. " jbsr %%a0@n" /* call the handler */    
  169. " addql #8,%%spn"    
  170. " addql #4,%%spn"    
  171. " orw #0x0600,%%srn"    
  172. " andw #0xfeff,%%srn" /* set IPL = 6 again */    
  173. " orb  #(1<<(%c3&7)),%a4:wn" /* now unmask the int again */    
  174. " jbra "SYMBOL_NAME_STR(ret_from_interrupt)"n"    
  175.  : : "i" (&kstat.irqs[0][n+8]), "i" (&irq_handler[n+8]),    
  176.      "n" (PT_OFF_SR), "n" (n),    
  177.      "i" (n & 8 ? (n & 16 ? &tt_mfp.int_mk_a : &mfp.int_mk_a)    
  178.         : (n & 16 ? &tt_mfp.int_mk_b : &mfp.int_mk_b)),    
  179.      "m" (local_irq_count(0))    
  180. );    
  181. for (;;); /* fake noreturn */    
  182. }
  183. BUILD_SLOW_IRQ(0);
  184. BUILD_SLOW_IRQ(1);
  185. BUILD_SLOW_IRQ(2);
  186. BUILD_SLOW_IRQ(3);
  187. BUILD_SLOW_IRQ(4);
  188. BUILD_SLOW_IRQ(5);
  189. BUILD_SLOW_IRQ(6);
  190. BUILD_SLOW_IRQ(7);
  191. BUILD_SLOW_IRQ(8);
  192. BUILD_SLOW_IRQ(9);
  193. BUILD_SLOW_IRQ(10);
  194. BUILD_SLOW_IRQ(11);
  195. BUILD_SLOW_IRQ(12);
  196. BUILD_SLOW_IRQ(13);
  197. BUILD_SLOW_IRQ(14);
  198. BUILD_SLOW_IRQ(15);
  199. BUILD_SLOW_IRQ(16);
  200. BUILD_SLOW_IRQ(17);
  201. BUILD_SLOW_IRQ(18);
  202. BUILD_SLOW_IRQ(19);
  203. BUILD_SLOW_IRQ(20);
  204. BUILD_SLOW_IRQ(21);
  205. BUILD_SLOW_IRQ(22);
  206. BUILD_SLOW_IRQ(23);
  207. BUILD_SLOW_IRQ(24);
  208. BUILD_SLOW_IRQ(25);
  209. BUILD_SLOW_IRQ(26);
  210. BUILD_SLOW_IRQ(27);
  211. BUILD_SLOW_IRQ(28);
  212. BUILD_SLOW_IRQ(29);
  213. BUILD_SLOW_IRQ(30);
  214. BUILD_SLOW_IRQ(31);
  215. asm_irq_handler slow_handlers[32] = {
  216. atari_slow_irq_0_handler,
  217. atari_slow_irq_1_handler,
  218. atari_slow_irq_2_handler,
  219. atari_slow_irq_3_handler,
  220. atari_slow_irq_4_handler,
  221. atari_slow_irq_5_handler,
  222. atari_slow_irq_6_handler,
  223. atari_slow_irq_7_handler,
  224. atari_slow_irq_8_handler,
  225. atari_slow_irq_9_handler,
  226. atari_slow_irq_10_handler,
  227. atari_slow_irq_11_handler,
  228. atari_slow_irq_12_handler,
  229. atari_slow_irq_13_handler,
  230. atari_slow_irq_14_handler,
  231. atari_slow_irq_15_handler,
  232. atari_slow_irq_16_handler,
  233. atari_slow_irq_17_handler,
  234. atari_slow_irq_18_handler,
  235. atari_slow_irq_19_handler,
  236. atari_slow_irq_20_handler,
  237. atari_slow_irq_21_handler,
  238. atari_slow_irq_22_handler,
  239. atari_slow_irq_23_handler,
  240. atari_slow_irq_24_handler,
  241. atari_slow_irq_25_handler,
  242. atari_slow_irq_26_handler,
  243. atari_slow_irq_27_handler,
  244. atari_slow_irq_28_handler,
  245. atari_slow_irq_29_handler,
  246. atari_slow_irq_30_handler,
  247. atari_slow_irq_31_handler
  248. };
  249. asmlinkage void atari_fast_irq_handler( void );
  250. asmlinkage void atari_prio_irq_handler( void );
  251. /* Dummy function to allow asm with operands.  */
  252. void atari_fast_prio_irq_dummy (void) {
  253. __asm__ (__ALIGN_STR "n"
  254. SYMBOL_NAME_STR(atari_fast_irq_handler) ":
  255. orw  #0x700,%%sr /* disable all interrupts */
  256. "SYMBOL_NAME_STR(atari_prio_irq_handler) ":t
  257. addql #1,%2n" /* local_irq_count++ */
  258. SAVE_ALL_INT "n"
  259. GET_CURRENT(%%d0) "
  260. /* get vector number from stack frame and convert to source */
  261. bfextu %%sp@(%c1){#4,#10},%%d0
  262. subw #(0x40-8),%%d0
  263. jpl  1f
  264. addw #(0x40-8-0x18),%%d0
  265. 1: lea %a0,%%a0
  266. addql #1,%%a0@(%%d0:l:4)
  267. lea "SYMBOL_NAME_STR(irq_handler)",%%a0
  268. lea %%a0@(%%d0:l:8),%%a0
  269. pea  %%sp@ /* push frame address */
  270. movel %%a0@(4),%%sp@- /* push handler data */
  271. movel %%d0,%%sp@- /* push int number */
  272. movel %%a0@,%%a0
  273. jsr %%a0@ /* and call the handler */
  274. addql #8,%%sp
  275. addql #4,%%sp
  276. jbra "SYMBOL_NAME_STR(ret_from_interrupt)
  277.  : : "i" (&kstat.irqs[0]), "n" (PT_OFF_FORMATVEC),
  278.      "m" (local_irq_count(0))
  279. );
  280. for (;;);
  281. }
  282. /* GK:
  283.  * HBL IRQ handler for Falcon. Nobody needs it :-)
  284.  * ++andreas: raise ipl to disable further HBLANK interrupts.
  285.  */
  286. asmlinkage void falcon_hblhandler(void);
  287. asm(".textn"
  288. __ALIGN_STR "n"
  289. SYMBOL_NAME_STR(falcon_hblhandler) ":
  290. orw #0x200,%sp@ /* set saved ipl to 2 */
  291. rte");
  292. /* Defined in entry.S; only increments 'num_spurious' */
  293. asmlinkage void bad_interrupt(void);
  294. extern void atari_microwire_cmd( int cmd );
  295. extern int atari_SCC_reset_done;
  296. /*
  297.  * void atari_init_IRQ (void)
  298.  *
  299.  * Parameters: None
  300.  *
  301.  * Returns: Nothing
  302.  *
  303.  * This function should be called during kernel startup to initialize
  304.  * the atari IRQ handling routines.
  305.  */
  306. void __init atari_init_IRQ(void)
  307. {
  308. int i;
  309. /* initialize the vector table */
  310. for (i = 0; i < NUM_INT_SOURCES; ++i) {
  311. vectors[IRQ_SOURCE_TO_VECTOR(i)] = bad_interrupt;
  312. }
  313. /* Initialize the MFP(s) */
  314. #ifdef ATARI_USE_SOFTWARE_EOI
  315. mfp.vec_adr  = 0x48; /* Software EOI-Mode */
  316. #else
  317. mfp.vec_adr  = 0x40; /* Automatic EOI-Mode */
  318. #endif
  319. mfp.int_en_a = 0x00; /* turn off MFP-Ints */
  320. mfp.int_en_b = 0x00;
  321. mfp.int_mk_a = 0xff; /* no Masking */
  322. mfp.int_mk_b = 0xff;
  323. if (ATARIHW_PRESENT(TT_MFP)) {
  324. #ifdef ATARI_USE_SOFTWARE_EOI
  325. tt_mfp.vec_adr  = 0x58; /* Software EOI-Mode */
  326. #else
  327. tt_mfp.vec_adr  = 0x50; /* Automatic EOI-Mode */
  328. #endif
  329. tt_mfp.int_en_a = 0x00; /* turn off MFP-Ints */
  330. tt_mfp.int_en_b = 0x00;
  331. tt_mfp.int_mk_a = 0xff; /* no Masking */
  332. tt_mfp.int_mk_b = 0xff;
  333. }
  334. if (ATARIHW_PRESENT(SCC) && !atari_SCC_reset_done) {
  335. scc.cha_a_ctrl = 9;
  336. MFPDELAY();
  337. scc.cha_a_ctrl = (char) 0xc0; /* hardware reset */
  338. }
  339. if (ATARIHW_PRESENT(SCU)) {
  340. /* init the SCU if present */
  341. tt_scu.sys_mask = 0x10; /* enable VBL (for the cursor) and
  342.  * disable HSYNC interrupts (who
  343.  * needs them?)  MFP and SCC are
  344.  * enabled in VME mask
  345.  */
  346. tt_scu.vme_mask = 0x60; /* enable MFP and SCC ints */
  347. }
  348. else {
  349. /* If no SCU and no Hades, the HSYNC interrupt needs to be
  350.  * disabled this way. (Else _inthandler in kernel/sys_call.S
  351.  * gets overruns)
  352.  */
  353. if (!MACH_IS_HADES)
  354. vectors[VEC_INT2] = falcon_hblhandler;
  355. }
  356. if (ATARIHW_PRESENT(PCM_8BIT) && ATARIHW_PRESENT(MICROWIRE)) {
  357. /* Initialize the LM1992 Sound Controller to enable
  358.    the PSG sound.  This is misplaced here, it should
  359.    be in an atasound_init(), that doesn't exist yet. */
  360. atari_microwire_cmd(MW_LM1992_PSG_HIGH);
  361. }
  362. stdma_init();
  363. /* Initialize the PSG: all sounds off, both ports output */
  364. sound_ym.rd_data_reg_sel = 7;
  365. sound_ym.wd_data = 0xff;
  366. }
  367. static void atari_call_irq_list( int irq, void *dev_id, struct pt_regs *fp )
  368. {
  369. irq_node_t *node;
  370. for (node = (irq_node_t *)dev_id; node; node = node->next)
  371. node->handler(irq, node->dev_id, fp);
  372. }
  373. /*
  374.  * atari_request_irq : add an interrupt service routine for a particular
  375.  *                     machine specific interrupt source.
  376.  *                     If the addition was successful, it returns 0.
  377.  */
  378. int atari_request_irq(unsigned int irq, void (*handler)(int, void *, struct pt_regs *),
  379.                       unsigned long flags, const char *devname, void *dev_id)
  380. {
  381. int vector;
  382. unsigned long oflags = flags;
  383. /*
  384.  * The following is a hack to make some PCI card drivers work,
  385.  * which set the SA_SHIRQ flag.
  386.  */
  387. flags &= ~SA_SHIRQ;
  388. if (flags == SA_INTERRUPT) {
  389. printk ("%s: SA_INTERRUPT changed to IRQ_TYPE_SLOW for %sn",
  390. __FUNCTION__, devname);
  391. flags = IRQ_TYPE_SLOW;
  392. }
  393. if (flags < IRQ_TYPE_SLOW || flags > IRQ_TYPE_PRIO) {
  394. printk ("%s: Bad irq type 0x%lx <0x%lx> requested from %sn",
  395.         __FUNCTION__, flags, oflags, devname);
  396. return -EINVAL;
  397. }
  398. if (!IS_VALID_INTNO(irq)) {
  399. printk ("%s: Unknown irq %d requested from %sn",
  400.         __FUNCTION__, irq, devname);
  401. return -ENXIO;
  402. }
  403. vector = IRQ_SOURCE_TO_VECTOR(irq);
  404. /*
  405.  * Check type/source combination: slow ints are (currently)
  406.  * only possible for MFP-interrupts.
  407.  */
  408. if (flags == IRQ_TYPE_SLOW &&
  409. (irq < STMFP_SOURCE_BASE || irq >= SCC_SOURCE_BASE)) {
  410. printk ("%s: Slow irq requested for non-MFP source %d from %sn",
  411.         __FUNCTION__, irq, devname);
  412. return -EINVAL;
  413. }
  414. if (vectors[vector] == bad_interrupt) {
  415. /* int has no handler yet */
  416. irq_handler[irq].handler = handler;
  417. irq_handler[irq].dev_id  = dev_id;
  418. irq_param[irq].flags   = flags;
  419. irq_param[irq].devname = devname;
  420. vectors[vector] =
  421. (flags == IRQ_TYPE_SLOW) ? slow_handlers[irq-STMFP_SOURCE_BASE] :
  422. (flags == IRQ_TYPE_FAST) ? atari_fast_irq_handler :
  423.                           atari_prio_irq_handler;
  424. /* If MFP int, also enable and umask it */
  425. atari_turnon_irq(irq);
  426. atari_enable_irq(irq);
  427. return 0;
  428. }
  429. else if (irq_param[irq].flags == flags) {
  430. /* old handler is of same type -> handlers can be chained */
  431. irq_node_t *node;
  432. unsigned long flags;
  433. save_flags(flags);
  434. cli();
  435. if (irq_handler[irq].handler != atari_call_irq_list) {
  436. /* Only one handler yet, make a node for this first one */
  437. if (!(node = new_irq_node()))
  438. return -ENOMEM;
  439. node->handler = irq_handler[irq].handler;
  440. node->dev_id  = irq_handler[irq].dev_id;
  441. node->devname = irq_param[irq].devname;
  442. node->next = NULL;
  443. irq_handler[irq].handler = atari_call_irq_list;
  444. irq_handler[irq].dev_id  = node;
  445. irq_param[irq].devname   = "chained";
  446. }
  447. if (!(node = new_irq_node()))
  448. return -ENOMEM;
  449. node->handler = handler;
  450. node->dev_id  = dev_id;
  451. node->devname = devname;
  452. /* new handlers are put in front of the queue */
  453. node->next = irq_handler[irq].dev_id;
  454. irq_handler[irq].dev_id = node;
  455. restore_flags(flags);
  456. return 0;
  457. } else {
  458. printk ("%s: Irq %d allocated by other type int (call from %s)n",
  459.         __FUNCTION__, irq, devname);
  460. return -EBUSY;
  461. }
  462. }
  463. void atari_free_irq(unsigned int irq, void *dev_id)
  464. {
  465. unsigned long flags;
  466. int vector;
  467. irq_node_t **list, *node;
  468. if (!IS_VALID_INTNO(irq)) {
  469. printk("%s: Unknown irq %dn", __FUNCTION__, irq);
  470. return;
  471. }
  472. vector = IRQ_SOURCE_TO_VECTOR(irq);
  473. if (vectors[vector] == bad_interrupt)
  474. goto not_found;
  475. save_flags(flags);
  476. cli();
  477. if (irq_handler[irq].handler != atari_call_irq_list) {
  478. /* It's the only handler for the interrupt */
  479. if (irq_handler[irq].dev_id != dev_id) {
  480. restore_flags(flags);
  481. goto not_found;
  482. }
  483. irq_handler[irq].handler = NULL;
  484. irq_handler[irq].dev_id  = NULL;
  485. irq_param[irq].devname   = NULL;
  486. vectors[vector] = bad_interrupt;
  487. /* If MFP int, also disable it */
  488. atari_disable_irq(irq);
  489. atari_turnoff_irq(irq);
  490. restore_flags(flags);
  491. return;
  492. }
  493. /* The interrupt is chained, find the irq on the list */
  494. for(list = (irq_node_t **)&irq_handler[irq].dev_id; *list; list = &(*list)->next) {
  495. if ((*list)->dev_id == dev_id) break;
  496. }
  497. if (!*list) {
  498. restore_flags(flags);
  499. goto not_found;
  500. }
  501. (*list)->handler = NULL; /* Mark it as free for reallocation */
  502. *list = (*list)->next;
  503. /* If there's now only one handler, unchain the interrupt, i.e. plug in
  504.  * the handler directly again and omit atari_call_irq_list */
  505. node = (irq_node_t *)irq_handler[irq].dev_id;
  506. if (node && !node->next) {
  507. irq_handler[irq].handler = node->handler;
  508. irq_handler[irq].dev_id  = node->dev_id;
  509. irq_param[irq].devname   = node->devname;
  510. node->handler = NULL; /* Mark it as free for reallocation */
  511. }
  512. restore_flags(flags);
  513. return;
  514. not_found:
  515. printk("%s: tried to remove invalid irqn", __FUNCTION__);
  516. return;
  517. }
  518. /*
  519.  * atari_register_vme_int() returns the number of a free interrupt vector for
  520.  * hardware with a programmable int vector (probably a VME board).
  521.  */
  522. unsigned long atari_register_vme_int(void)
  523. {
  524. int i;
  525. for(i = 0; i < 32; i++)
  526. if((free_vme_vec_bitmap & (1 << i)) == 0)
  527. break;
  528. if(i == 16)
  529. return 0;
  530. free_vme_vec_bitmap |= 1 << i;
  531. return (VME_SOURCE_BASE + i);
  532. }
  533. void atari_unregister_vme_int(unsigned long irq)
  534. {
  535. if(irq >= VME_SOURCE_BASE && irq < VME_SOURCE_BASE + VME_MAX_SOURCES) {
  536. irq -= VME_SOURCE_BASE;
  537. free_vme_vec_bitmap &= ~(1 << irq);
  538. }
  539. }
  540. int atari_get_irq_list(char *buf)
  541. {
  542. int i, len = 0;
  543. for (i = 0; i < NUM_INT_SOURCES; ++i) {
  544. if (vectors[IRQ_SOURCE_TO_VECTOR(i)] == bad_interrupt)
  545. continue;
  546. if (i < STMFP_SOURCE_BASE)
  547. len += sprintf(buf+len, "auto %2d: %10u ",
  548.        i, kstat.irqs[0][i]);
  549. else
  550. len += sprintf(buf+len, "vec $%02x: %10u ",
  551.        IRQ_SOURCE_TO_VECTOR(i),
  552.        kstat.irqs[0][i]);
  553. if (irq_handler[i].handler != atari_call_irq_list) {
  554. len += sprintf(buf+len, "%sn", irq_param[i].devname);
  555. }
  556. else {
  557. irq_node_t *p;
  558. for( p = (irq_node_t *)irq_handler[i].dev_id; p; p = p->next ) {
  559. len += sprintf(buf+len, "%sn", p->devname);
  560. if (p->next)
  561. len += sprintf( buf+len, "                    " );
  562. }
  563. }
  564. }
  565. if (num_spurious)
  566. len += sprintf(buf+len, "spurio.: %10un", num_spurious);
  567. return len;
  568. }