dn_ints.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

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. extern void write_keyb_cmd(u_short length, u_char *cmd);
  13. static char BellOnCommand[] =  { 0xFF, 0x21, 0x81 },
  14.     BellOffCommand[] = { 0xFF, 0x21, 0x82 };
  15. extern void dn_serial_print (const char *str);
  16. void dn_process_int(int irq, struct pt_regs *fp) {
  17.   if(dn_irqs[irq-160].handler) {
  18.     dn_irqs[irq-160].handler(irq,dn_irqs[irq-160].dev_id,fp);
  19.   }
  20.   else {
  21.     printk("spurious irq %d occurredn",irq);
  22.   }
  23.   *(volatile unsigned char *)(pica)=0x20;
  24.   *(volatile unsigned char *)(picb)=0x20;
  25. }
  26. void dn_init_IRQ(void) {
  27.   int i;
  28.   for(i=0;i<16;i++) {
  29.     dn_irqs[i].handler=NULL;
  30.     dn_irqs[i].flags=IRQ_FLG_STD;
  31.     dn_irqs[i].dev_id=NULL;
  32.     dn_irqs[i].devname=NULL;
  33.   }
  34.   
  35. }
  36. int dn_request_irq(unsigned int irq, void (*handler)(int, void *, struct pt_regs *), unsigned long flags, const char *devname, void *dev_id) {
  37.   if((irq<0) || (irq>15)) {
  38.     printk("Trying to request illegal IRQn");
  39.     return -ENXIO;
  40.   }
  41.   if(!dn_irqs[irq].handler) {
  42.     dn_irqs[irq].handler=handler;
  43.     dn_irqs[irq].flags=IRQ_FLG_STD;
  44.     dn_irqs[irq].dev_id=dev_id;
  45.     dn_irqs[irq].devname=devname;
  46.     if(irq<8)
  47.       *(volatile unsigned char *)(pica+1)&=~(1<<irq);
  48.     else
  49.       *(volatile unsigned char *)(picb+1)&=~(1<<(irq-8));
  50.     return 0;
  51.   }
  52.   else {
  53.     printk("Trying to request already assigned irq %dn",irq);
  54.     return -ENXIO;
  55.   }
  56. }
  57. void dn_free_irq(unsigned int irq, void *dev_id) {
  58.   if((irq<0) || (irq>15)) {
  59.     printk("Trying to free illegal IRQn");
  60.     return ;
  61.   }
  62.   if(irq<8)
  63.     *(volatile unsigned char *)(pica+1)|=(1<<irq);
  64.   else
  65.     *(volatile unsigned char *)(picb+1)|=(1<<(irq-8));  
  66.   dn_irqs[irq].handler=NULL;
  67.   dn_irqs[irq].flags=IRQ_FLG_STD;
  68.   dn_irqs[irq].dev_id=NULL;
  69.   dn_irqs[irq].devname=NULL;
  70.   return ;
  71. }
  72. void dn_enable_irq(unsigned int irq) {
  73.   printk("dn enable irqn");
  74. }
  75. void dn_disable_irq(unsigned int irq) {
  76.   printk("dn disable irqn");
  77. }
  78. int dn_get_irq_list(char *buf) {
  79.   printk("dn get irq listn");
  80.   return 0;
  81. }
  82. struct fb_info *dn_dummy_fb_init(long *mem_start) {
  83.   printk("fb initn");
  84.   return NULL;
  85. }
  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. void dn_dummy_video_setup(char *options,int *ints) {
  103.   printk("no video yetn");
  104. }