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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * arch/m68k/q40/q40ints.c
  3.  *
  4.  * Copyright (C) 1999,2001 Richard Zidlicky
  5.  *
  6.  * This file is subject to the terms and conditions of the GNU General Public
  7.  * License.  See the file COPYING in the main directory of this archive
  8.  * for more details.
  9.  *
  10.  * .. used to be losely based on bvme6000ints.c
  11.  *
  12.  */
  13. #include <linux/config.h>
  14. #include <linux/types.h>
  15. #include <linux/kernel.h>
  16. #include <linux/errno.h>
  17. #include <linux/string.h>
  18. #include <linux/sched.h>
  19. #include <asm/rtc.h>
  20. #include <asm/ptrace.h>
  21. #include <asm/system.h>
  22. #include <asm/irq.h>
  23. #include <asm/hardirq.h>
  24. #include <asm/traps.h>
  25. #include <asm/q40_master.h>
  26. #include <asm/q40ints.h>
  27. /* 
  28.  * Q40 IRQs are defined as follows: 
  29.  *            3,4,5,6,7,10,11,14,15 : ISA dev IRQs
  30.  *            16-31: reserved
  31.  *            32   : keyboard int
  32.  *            33   : frame int (50/200 Hz periodic timer)
  33.  *            34   : sample int (10/20 KHz periodic timer)
  34.  *          
  35. */
  36. extern int ints_inited;
  37. void q40_irq2_handler (int, void *, struct pt_regs *fp);
  38. extern void (*q40_sys_default_handler[]) (int, void *, struct pt_regs *);
  39. static void q40_defhand (int irq, void *dev_id, struct pt_regs *fp);
  40. static void sys_default_handler(int lev, void *dev_id, struct pt_regs *regs);
  41. #define DEVNAME_SIZE 24
  42. static struct q40_irq_node {
  43. void (*handler)(int, void *, struct pt_regs *);
  44. unsigned long flags;
  45. void *dev_id;
  46.   /*        struct q40_irq_node *next;*/
  47.         char         devname[DEVNAME_SIZE];
  48. unsigned count;
  49.         unsigned short  state;
  50. } irq_tab[Q40_IRQ_MAX+1];
  51. short unsigned q40_ablecount[Q40_IRQ_MAX+1];
  52. /*
  53.  * void q40_init_IRQ (void)
  54.  *
  55.  * Parameters: None
  56.  *
  57.  * Returns: Nothing
  58.  *
  59.  * This function is called during kernel startup to initialize
  60.  * the q40 IRQ handling routines.
  61.  */
  62. static int disabled=0;
  63. void q40_init_IRQ (void)
  64. {
  65. int i;
  66. disabled=0;
  67. for (i = 0; i <= Q40_IRQ_MAX; i++) {
  68. irq_tab[i].handler = q40_defhand;
  69. irq_tab[i].flags = 0;
  70. irq_tab[i].dev_id = NULL;
  71. /* irq_tab[i].next = NULL;*/
  72. irq_tab[i].devname[0] = 0;
  73. irq_tab[i].count = 0;
  74. irq_tab[i].state =0;
  75. q40_ablecount[i]=0;   /* all enabled */
  76. }
  77. /* setup handler for ISA ints */
  78. sys_request_irq(IRQ2,q40_irq2_handler, 0, "q40 ISA and master chip", NULL);
  79. /* now enable some ints.. */
  80. master_outb(1,EXT_ENABLE_REG);  /* ISA IRQ 5-15 */
  81. /* make sure keyboard IRQ is disabled */
  82. master_outb(0,KEY_IRQ_ENABLE_REG);
  83. }
  84. int q40_request_irq(unsigned int irq,
  85. void (*handler)(int, void *, struct pt_regs *),
  86.                 unsigned long flags, const char *devname, void *dev_id)
  87. {
  88.   /*printk("q40_request_irq %d, %sn",irq,devname);*/
  89. if (irq > Q40_IRQ_MAX || (irq>15 && irq<32)) {
  90. printk("%s: Incorrect IRQ %d from %sn", __FUNCTION__, irq, devname);
  91. return -ENXIO;
  92. }
  93. /* test for ISA ints not implemented by HW */
  94. switch (irq)
  95.   {
  96.   case 1: case 2: case 8: case 9:
  97.   case 12: case 13:
  98.     printk("%s: ISA IRQ %d from %s not implemented by HWn", __FUNCTION__, irq, devname);
  99.     return -ENXIO;
  100.   case 11:        
  101.     printk("warning IRQ 10 and 11 not distinguishablen");
  102.     irq=10;
  103.   default:
  104.   }
  105. if (irq<Q40_IRQ_SAMPLE)
  106.   {
  107.     if (irq_tab[irq].dev_id != NULL) 
  108.   {
  109.     printk("%s: IRQ %d from %s is not replaceablen",
  110.    __FUNCTION__, irq, irq_tab[irq].devname);
  111.     return -EBUSY;
  112.   }
  113.     /*printk("IRQ %d set to handler %pn",irq,handler);*/
  114.     if (dev_id==NULL)
  115.   {
  116. printk("WARNING: dev_id == NULL in request_irqn");
  117. dev_id=(void*)1;
  118.       }
  119.     irq_tab[irq].handler = handler;
  120.     irq_tab[irq].flags   = flags;
  121.     irq_tab[irq].dev_id  = dev_id;
  122.     strncpy(irq_tab[irq].devname,devname,DEVNAME_SIZE);
  123.     irq_tab[irq].state = 0;
  124.     return 0;
  125.   }
  126. else {
  127.   /* Q40_IRQ_SAMPLE :somewhat special actions required here ..*/
  128.   sys_request_irq(4,handler,flags,devname,dev_id);
  129.   sys_request_irq(6,handler,flags,devname,dev_id);
  130.   return 0;
  131. }
  132. }
  133. void q40_free_irq(unsigned int irq, void *dev_id)
  134. {
  135. if (irq > Q40_IRQ_MAX || (irq>15 && irq<32)) {
  136. printk("%s: Incorrect IRQ %d, dev_id %x n", __FUNCTION__, irq, (unsigned)dev_id);
  137. return;
  138. }
  139. /* test for ISA ints not implemented by HW */
  140. switch (irq)
  141.   {
  142.   case 1: case 2: case 8: case 9:
  143.   case 12: case 13:
  144.     printk("%s: ISA IRQ %d from %x illegaln", __FUNCTION__, irq, (unsigned)dev_id);
  145.     return;
  146.   case 11: irq=10;
  147.   default:
  148.   }
  149. if (irq<Q40_IRQ_SAMPLE)
  150.   {
  151.     if (irq_tab[irq].dev_id != dev_id)
  152.       printk("%s: Removing probably wrong IRQ %d from %sn",
  153.      __FUNCTION__, irq, irq_tab[irq].devname);
  154.     
  155.     irq_tab[irq].handler = q40_defhand;
  156.     irq_tab[irq].flags   = 0;
  157.     irq_tab[irq].dev_id  = NULL;
  158.     /* irq_tab[irq].devname = NULL; */
  159.     /* do not reset state !! */
  160.   }
  161. else
  162.   { /* == Q40_IRQ_SAMPLE */
  163.     sys_free_irq(4,dev_id);
  164.     sys_free_irq(6,dev_id);
  165.   }
  166. }
  167. void q40_process_int (int level, struct pt_regs *fp)
  168. {
  169.   printk("unexpected interrupt %xn",level);
  170. }
  171. /* 
  172.  * this stuff doesn't really belong here..
  173. */
  174. int ql_ticks=0;              /* 200Hz ticks since last jiffie */
  175. static int sound_ticks=0;
  176. #define SVOL 45
  177. void q40_mksound(unsigned int hz, unsigned int ticks)
  178. {
  179.   /* for now ignore hz, except that hz==0 switches off sound */
  180.   /* simply alternate the ampl (128-SVOL)-(128+SVOL)-..-.. at 200Hz */
  181.   if (hz==0)
  182.     {
  183.       if (sound_ticks)
  184. sound_ticks=1;
  185.       *DAC_LEFT=128;
  186.       *DAC_RIGHT=128;
  187.       return;
  188.     }
  189.   /* sound itself is done in q40_timer_int */
  190.   if (sound_ticks == 0) sound_ticks=1000; /* pretty long beep */
  191.   sound_ticks=ticks<<1;
  192. }
  193. static void (*q40_timer_routine)(int, void *, struct pt_regs *);
  194. static void q40_timer_int (int irq, void * dev, struct pt_regs * regs)
  195. {
  196.     ql_ticks = ql_ticks ? 0 : 1;
  197.     if (sound_ticks)
  198.       {
  199. unsigned char sval=(sound_ticks & 1) ? 128-SVOL : 128+SVOL;
  200. sound_ticks--;
  201. *DAC_LEFT=sval;
  202. *DAC_RIGHT=sval;
  203.       }
  204.     if (ql_ticks) return;
  205.     q40_timer_routine(irq, dev, regs);
  206. }
  207. void q40_sched_init (void (*timer_routine)(int, void *, struct pt_regs *))
  208. {
  209.     int timer_irq;
  210.     q40_timer_routine = timer_routine;
  211.     timer_irq=Q40_IRQ_FRAME;
  212.     if (request_irq(timer_irq, q40_timer_int, 0,
  213. "timer", q40_timer_int))
  214. panic ("Couldn't register timer int");
  215.     master_outb(-1,FRAME_CLEAR_REG);
  216.     master_outb( 1,FRAME_RATE_REG);
  217. }
  218. /* 
  219.  * tables to translate bits into IRQ numbers 
  220.  * it is a good idea to order the entries by priority
  221.  * 
  222. */
  223. struct IRQ_TABLE{ unsigned mask; int irq ;};
  224. #if 0
  225. static struct IRQ_TABLE iirqs[]={
  226.   {Q40_IRQ_FRAME_MASK,Q40_IRQ_FRAME},
  227.   Q40_{IRQ_KEYB_MASK,Q40_IRQ_KEYBOARD},
  228.   {0,0}};
  229. #endif
  230. static struct IRQ_TABLE eirqs[]={
  231.   {Q40_IRQ3_MASK,3},                   /* ser 1 */
  232.   {Q40_IRQ4_MASK,4},                   /* ser 2 */
  233.   {Q40_IRQ14_MASK,14},                 /* IDE 1 */
  234.   {Q40_IRQ15_MASK,15},                 /* IDE 2 */
  235.   {Q40_IRQ6_MASK,6},                   /* floppy, handled elsewhere */
  236.   {Q40_IRQ7_MASK,7},                   /* par */
  237.   {Q40_IRQ5_MASK,5},
  238.   {Q40_IRQ10_MASK,10},
  239.   {0,0}};
  240. /* complain only this many times about spurious ints : */
  241. static int ccleirq=60;    /* ISA dev IRQ's*/
  242. /*static int cclirq=60;*/     /* internal */
  243. /* FIXME: add shared ints,mask,unmask,probing.... */
  244. #define IRQ_INPROGRESS 1
  245. /*static unsigned short saved_mask;*/
  246. //static int do_tint=0;
  247. #define DEBUG_Q40INT
  248. /*#define IP_USE_DISABLE *//* would be nice, but crashes ???? */
  249. static int mext_disabled=0;  /* ext irq disabled by master chip? */
  250. static int aliased_irq=0;  /* how many times inside handler ?*/
  251. /* got level 2 interrupt, dispatch to ISA or keyboard/timer IRQs */
  252. void q40_irq2_handler (int vec, void *devname, struct pt_regs *fp)
  253. {
  254.   unsigned mir, mer;
  255.   int irq,i;
  256.  repeat:
  257.   mir=master_inb(IIRQ_REG);
  258.   if (mir&Q40_IRQ_FRAME_MASK) {
  259.   irq_tab[Q40_IRQ_FRAME].count++;
  260.   irq_tab[Q40_IRQ_FRAME].handler(Q40_IRQ_FRAME,irq_tab[Q40_IRQ_FRAME].dev_id,fp);   
  261.   master_outb(-1,FRAME_CLEAR_REG);
  262.   }
  263.   if ((mir&Q40_IRQ_SER_MASK) || (mir&Q40_IRQ_EXT_MASK)) {
  264.   mer=master_inb(EIRQ_REG);
  265.   for (i=0; eirqs[i].mask; i++) {
  266.   if (mer&(eirqs[i].mask)) {
  267.   irq=eirqs[i].irq;
  268. /*
  269.  * There is a little mess wrt which IRQ really caused this irq request. The
  270.  * main problem is that IIRQ_REG and EIRQ_REG reflect the state when they
  271.  * are read - which is long after the request came in. In theory IRQs should
  272.  * not just go away but they occassionally do
  273.  */
  274.   if (irq>4 && irq<=15 && mext_disabled) {
  275.   /*aliased_irq++;*/
  276.   goto iirq;
  277.   }
  278.   if (irq_tab[irq].handler == q40_defhand ) {
  279.   printk("handler for IRQ %d not definedn",irq);
  280.   continue; /* ignore uninited INTs :-( */
  281.   }
  282.   if ( irq_tab[irq].state & IRQ_INPROGRESS ) {
  283.   /* some handlers do sti() for irq latency reasons, */
  284.   /* however reentering an active irq handler is not permitted */
  285. #ifdef IP_USE_DISABLE
  286.   /* in theory this is the better way to do it because it still */
  287.   /* lets through eg the serial irqs, unfortunately it crashes */
  288.   disable_irq(irq);
  289.   disabled=1;
  290. #else
  291.   /*printk("IRQ_INPROGRESS detected for irq %d, disabling - %s disabledn",irq,disabled ? "already" : "not yet"); */
  292.   fp->sr = (((fp->sr) & (~0x700))+0x200);
  293.   disabled=1;
  294. #endif
  295.   goto iirq;
  296.   }
  297.   irq_tab[irq].count++; 
  298.   irq_tab[irq].state |= IRQ_INPROGRESS;
  299.   irq_tab[irq].handler(irq,irq_tab[irq].dev_id,fp);
  300.   irq_tab[irq].state &= ~IRQ_INPROGRESS;
  301.   
  302.   /* naively enable everything, if that fails than    */
  303.   /* this function will be reentered immediately thus */
  304.   /* getting another chance to disable the IRQ        */
  305.   
  306.   if ( disabled ) {
  307. #ifdef IP_USE_DISABLE
  308.   if (irq>4){
  309.   disabled=0;
  310.   enable_irq(irq);}
  311. #else
  312.   disabled=0;
  313.   /*printk("reenabling irq %dn",irq); */
  314. #endif
  315.   }
  316. // used to do 'goto repeat;' her, this delayed bh processing too long
  317.   return;
  318.   }
  319.   }
  320.   if (mer && ccleirq>0 && !aliased_irq) 
  321.   printk("ISA interrupt from unknown source? EIRQ_REG = %xn",mer),ccleirq--;
  322.   } 
  323.  iirq:
  324.   mir=master_inb(IIRQ_REG);
  325.   if (mir&Q40_IRQ_KEYB_MASK) {
  326.   irq_tab[Q40_IRQ_KEYBOARD].count++;
  327.   irq_tab[Q40_IRQ_KEYBOARD].handler(Q40_IRQ_KEYBOARD,irq_tab[Q40_IRQ_KEYBOARD].dev_id,fp);
  328.   }
  329. }
  330. int q40_get_irq_list (char *buf)
  331. {
  332. int i, len = 0;
  333. for (i = 0; i <= Q40_IRQ_MAX; i++) 
  334.   {
  335. if (irq_tab[i].count)
  336.       len += sprintf (buf+len, "%sIRQ %02d: %8d  %s%sn",
  337.       (i<=15) ? "ISA-" : "    " ,
  338.     i, irq_tab[i].count,
  339.     irq_tab[i].devname[0] ? irq_tab[i].devname : "?",
  340.     irq_tab[i].handler == q40_defhand ? 
  341. " (now unassigned)" : "");
  342. }
  343. return len;
  344. }
  345. static void q40_defhand (int irq, void *dev_id, struct pt_regs *fp)
  346. {
  347. printk ("Unknown q40 interrupt 0x%02xn", irq);
  348. }
  349. static void sys_default_handler(int lev, void *dev_id, struct pt_regs *regs)
  350. {
  351. printk ("Uninitialised interrupt level %dn", lev);
  352. }
  353.  void (*q40_sys_default_handler[SYS_IRQS]) (int, void *, struct pt_regs *) = {
  354.  sys_default_handler,sys_default_handler,sys_default_handler,sys_default_handler,
  355.  sys_default_handler,sys_default_handler,sys_default_handler,sys_default_handler
  356.  };
  357. void q40_enable_irq (unsigned int irq)
  358. {
  359.   if ( irq>=5 && irq<=15 )
  360.   {
  361.     mext_disabled--;
  362.     if (mext_disabled>0)
  363.   printk("q40_enable_irq : nested disable/enablen"); 
  364.     if (mext_disabled==0)
  365.     master_outb(1,EXT_ENABLE_REG);
  366.     }
  367. }
  368. void q40_disable_irq (unsigned int irq)
  369. {
  370.   /* disable ISA iqs : only do something if the driver has been
  371.    * verified to be Q40 "compatible" - right now IDE, NE2K
  372.    * Any driver should not attempt to sleep accross disable_irq !!
  373.    */
  374.   if ( irq>=5 && irq<=15 ) {
  375.     master_outb(0,EXT_ENABLE_REG);
  376.     mext_disabled++;
  377.     if (mext_disabled>1) printk("disable_irq nesting count %dn",mext_disabled);
  378.   }
  379. }
  380. unsigned long q40_probe_irq_on (void)
  381. {
  382.   printk("irq probing not working - reconfigure the driver to avoid thisn");
  383.   return -1;
  384. }
  385. int q40_probe_irq_off (unsigned long irqs)
  386. {
  387.   return -1;
  388. }
  389. /*
  390.  * Local variables:
  391.  * compile-command: "m68k-linux-gcc -D__KERNEL__ -I/home/rz/lx/linux-2.2.6/include -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -pipe -fno-strength-reduce -ffixed-a2 -m68040   -c -o q40ints.o q40ints.c"
  392.  * End:
  393.  */