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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: setup_hd64465.c,v 1.4 2001/07/15 23:26:56 gniibe Exp $
  3.  *
  4.  * Setup and IRQ handling code for the HD64465 companion chip.
  5.  * by Greg Banks <gbanks@pocketpenguins.com>
  6.  * Copyright (c) 2000 PocketPenguins Inc
  7.  *
  8.  * Derived from setup_hd64461.c which bore the message:
  9.  * Copyright (C) 2000 YAEGASHI Takeshi
  10.  */
  11. #include <linux/config.h>
  12. #include <linux/sched.h>
  13. #include <linux/module.h>
  14. #include <linux/kernel.h>
  15. #include <linux/param.h>
  16. #include <linux/ioport.h>
  17. #include <linux/interrupt.h>
  18. #include <linux/init.h>
  19. #include <linux/irq.h>
  20. #include <asm/io.h>
  21. #include <asm/irq.h>
  22. #include <asm/hd64465.h>
  23. #undef HD64465_DEBUG
  24. #ifdef HD64465_DEBUG
  25. #define DPRINTK(args...) printk(args)
  26. #else
  27. #define DPRINTK(args...)
  28. #endif
  29. static void disable_hd64465_irq(unsigned int irq)
  30. {
  31. unsigned long flags;
  32. unsigned short nimr;
  33. unsigned short mask = 1 << (irq - HD64465_IRQ_BASE);
  34.      DPRINTK("disable_hd64465_irq(%d): mask=%xn", irq, mask);
  35. save_and_cli(flags);
  36. nimr = inw(HD64465_REG_NIMR);
  37. nimr |= mask;
  38. outw(nimr, HD64465_REG_NIMR);
  39. restore_flags(flags);
  40. }
  41. static void enable_hd64465_irq(unsigned int irq)
  42. {
  43. unsigned long flags;
  44. unsigned short nimr;
  45. unsigned short mask = 1 << (irq - HD64465_IRQ_BASE);
  46.      DPRINTK("enable_hd64465_irq(%d): mask=%xn", irq, mask);
  47. save_and_cli(flags);
  48. nimr = inw(HD64465_REG_NIMR);
  49. nimr &= ~mask;
  50. outw(nimr, HD64465_REG_NIMR);
  51. restore_flags(flags);
  52. }
  53. static void mask_and_ack_hd64465(unsigned int irq)
  54. {
  55. disable_hd64465_irq(irq);
  56. }
  57. static void end_hd64465_irq(unsigned int irq)
  58. {
  59. if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS)))
  60. enable_hd64465_irq(irq);
  61. }
  62. static unsigned int startup_hd64465_irq(unsigned int irq)
  63. enable_hd64465_irq(irq);
  64. return 0;
  65. }
  66. static void shutdown_hd64465_irq(unsigned int irq)
  67. {
  68. disable_hd64465_irq(irq);
  69. }
  70. static struct hw_interrupt_type hd64465_irq_type = {
  71. typename: "HD64465-IRQ",
  72. startup: startup_hd64465_irq,
  73. shutdown: shutdown_hd64465_irq,
  74. enable: enable_hd64465_irq,
  75. disable: disable_hd64465_irq,
  76. ack: mask_and_ack_hd64465,
  77. end: end_hd64465_irq
  78. };
  79. static void hd64465_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  80. {
  81. printk(KERN_INFO
  82.        "HD64465: spurious interrupt, nirr: 0x%x nimr: 0x%xn",
  83.        inw(HD64465_REG_NIRR), inw(HD64465_REG_NIMR));
  84. }
  85. /*====================================================*/
  86. /*
  87.  * Support for a secondary IRQ demux step.  This is necessary
  88.  * because the HD64465 presents a very thin interface to the
  89.  * PCMCIA bus; a lot of features (such as remapping interrupts)
  90.  * normally done in hardware by other PCMCIA host bridges is
  91.  * instead done in software.
  92.  */
  93. static struct
  94. {
  95.     int (*func)(int, void *);
  96.     void *dev;
  97. } hd64465_demux[HD64465_IRQ_NUM];
  98. void hd64465_register_irq_demux(int irq,
  99. int (*demux)(int irq, void *dev), void *dev)
  100. {
  101.      hd64465_demux[irq - HD64465_IRQ_BASE].func = demux;
  102.      hd64465_demux[irq - HD64465_IRQ_BASE].dev = dev;
  103. }
  104. EXPORT_SYMBOL(hd64465_register_irq_demux);
  105. void hd64465_unregister_irq_demux(int irq)
  106. {
  107.      hd64465_demux[irq - HD64465_IRQ_BASE].func = 0;
  108. }
  109. EXPORT_SYMBOL(hd64465_unregister_irq_demux);
  110. int hd64465_irq_demux(int irq)
  111. {
  112. if (irq == CONFIG_HD64465_IRQ) {
  113. unsigned short i, bit;
  114. unsigned short nirr = inw(HD64465_REG_NIRR);
  115. unsigned short nimr = inw(HD64465_REG_NIMR);
  116.           DPRINTK("hd64465_irq_demux, nirr=%04x, nimr=%04xn", nirr, nimr);
  117. nirr &= ~nimr;
  118. for (bit = 1, i = 0 ; i < HD64465_IRQ_NUM ; bit <<= 1, i++)
  119.     if (nirr & bit)
  120.      break;
  121.           if (i < HD64465_IRQ_NUM) {
  122.     irq = HD64465_IRQ_BASE + i;
  123.               if (hd64465_demux[i].func != 0)
  124.      irq = hd64465_demux[i].func(irq, hd64465_demux[i].dev);
  125. }
  126. }
  127. return irq;
  128. }
  129. static struct irqaction irq0  = { hd64465_interrupt, SA_INTERRUPT, 0, "HD64465", NULL, NULL};
  130. static int __init setup_hd64465(void)
  131. {
  132. int i;
  133. unsigned short rev;
  134. unsigned short smscr;
  135. if (!MACH_HD64465)
  136. return 0;
  137. printk(KERN_INFO "HD64465 configured at 0x%x on irq %d(mapped into %d to %d)n",
  138.        CONFIG_HD64465_IOBASE,
  139.        CONFIG_HD64465_IRQ,
  140.        HD64465_IRQ_BASE,
  141.        HD64465_IRQ_BASE+HD64465_IRQ_NUM-1);
  142. if (inw(HD64465_REG_SDID) != HD64465_SDID) {
  143. printk(KERN_ERR "HD64465 device ID not found, check base addressn");
  144. }
  145. rev = inw(HD64465_REG_SRR);
  146. printk(KERN_INFO "HD64465 hardware revision %d.%dn", (rev >> 8) & 0xff, rev & 0xff);
  147.        
  148. outw(0xffff, HD64465_REG_NIMR);  /* mask all interrupts */
  149. for (i = 0; i < HD64465_IRQ_NUM ; i++) {
  150. irq_desc[HD64465_IRQ_BASE + i].handler = &hd64465_irq_type;
  151. }
  152. setup_irq(CONFIG_HD64465_IRQ, &irq0);
  153. #ifdef CONFIG_SERIAL
  154. /* wake up the UART from STANDBY at this point */
  155. smscr = inw(HD64465_REG_SMSCR);
  156. outw(smscr & (~HD64465_SMSCR_UARTST), HD64465_REG_SMSCR);
  157. /* remap IO ports for first ISA serial port to HD64465 UART */
  158. hd64465_port_map(0x3f8, 8, CONFIG_HD64465_IOBASE + 0x8000, 1);
  159. #endif
  160. return 0;
  161. }
  162. module_init(setup_hd64465);