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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #include <linux/types.h>
  2. #include <linux/kernel.h>
  3. #include <linux/sched.h>
  4. #include <linux/kernel_stat.h>
  5. #include <asm/system.h>
  6. #include <asm/irq.h>
  7. #include <asm/traps.h>
  8. #include <asm/page.h>
  9. #include <asm/machdep.h>
  10. #include <asm/apollohw.h>
  11. static irq_handler_t dn_irqs[16];
  12. void dn_process_int(int irq, struct pt_regs *fp) {
  13.   if(dn_irqs[irq-160].handler) {
  14.     dn_irqs[irq-160].handler(irq,dn_irqs[irq-160].dev_id,fp);
  15.   }
  16.   else {
  17.     printk("spurious irq %d occurredn",irq);
  18.   }
  19.   *(volatile unsigned char *)(pica)=0x20;
  20.   *(volatile unsigned char *)(picb)=0x20;
  21. }
  22. void dn_init_IRQ(void) {
  23.   int i;
  24.   for(i=0;i<16;i++) {
  25.     dn_irqs[i].handler=NULL;
  26.     dn_irqs[i].flags=IRQ_FLG_STD;
  27.     dn_irqs[i].dev_id=NULL;
  28.     dn_irqs[i].devname=NULL;
  29.   }
  30.   
  31. }
  32. int dn_request_irq(unsigned int irq, void (*handler)(int, void *, struct pt_regs *), unsigned long flags, const char *devname, void *dev_id) {
  33.   if((irq<0) || (irq>15)) {
  34.     printk("Trying to request illegal IRQn");
  35.     return -ENXIO;
  36.   }
  37.   if(!dn_irqs[irq].handler) {
  38.     dn_irqs[irq].handler=handler;
  39.     dn_irqs[irq].flags=IRQ_FLG_STD;
  40.     dn_irqs[irq].dev_id=dev_id;
  41.     dn_irqs[irq].devname=devname;
  42.     if(irq<8)
  43.       *(volatile unsigned char *)(pica+1)&=~(1<<irq);
  44.     else
  45.       *(volatile unsigned char *)(picb+1)&=~(1<<(irq-8));
  46.     return 0;
  47.   }
  48.   else {
  49.     printk("Trying to request already assigned irq %dn",irq);
  50.     return -ENXIO;
  51.   }
  52. }
  53. void dn_free_irq(unsigned int irq, void *dev_id) {
  54.   if((irq<0) || (irq>15)) {
  55.     printk("Trying to free illegal IRQn");
  56.     return ;
  57.   }
  58.   if(irq<8)
  59.     *(volatile unsigned char *)(pica+1)|=(1<<irq);
  60.   else
  61.     *(volatile unsigned char *)(picb+1)|=(1<<(irq-8));  
  62.   dn_irqs[irq].handler=NULL;
  63.   dn_irqs[irq].flags=IRQ_FLG_STD;
  64.   dn_irqs[irq].dev_id=NULL;
  65.   dn_irqs[irq].devname=NULL;
  66.   return ;
  67. }
  68. void dn_enable_irq(unsigned int irq) {
  69.   printk("dn enable irqn");
  70. }
  71. void dn_disable_irq(unsigned int irq) {
  72.   printk("dn disable irqn");
  73. }
  74. int dn_get_irq_list(char *buf) {
  75.   printk("dn get irq listn");
  76.   return 0;
  77. }
  78. struct fb_info *dn_dummy_fb_init(long *mem_start) {
  79.   printk("fb initn");
  80.   return NULL;
  81. }
  82. #ifdef CONFIG_VT
  83. extern void write_keyb_cmd(u_short length, u_char *cmd);
  84. static char BellOnCommand[] =  { 0xFF, 0x21, 0x81 },
  85.     BellOffCommand[] = { 0xFF, 0x21, 0x82 };
  86. static void dn_nosound (unsigned long ignored) {
  87. write_keyb_cmd(sizeof(BellOffCommand),BellOffCommand);
  88. }
  89. void dn_mksound( unsigned int count, unsigned int ticks ) {
  90. static struct timer_list sound_timer = { function: dn_nosound };
  91. del_timer( &sound_timer );
  92. if(count) {
  93. write_keyb_cmd(sizeof(BellOnCommand),BellOnCommand);
  94. if (ticks) {
  95.         sound_timer.expires = jiffies + ticks;
  96. add_timer( &sound_timer );
  97. }
  98. }
  99. else
  100. write_keyb_cmd(sizeof(BellOffCommand),BellOffCommand);
  101. }
  102. #endif /* CONFIG_VT */
  103. void dn_dummy_video_setup(char *options,int *ints) {
  104.   printk("no video yetn");
  105. }