i8259.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * include/asm-mips/i8259.h
  3. *
  4. * i8259A interrupt definitions.
  5. *
  6. * Copyright (C) 2003 Maciej W. Rozycki
  7. * Copyright (C) 2003 Ralf Baechle <ralf@linux-mips.org>
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version
  12. * 2 of the License, or (at your option) any later version.
  13. */
  14. #ifndef _ASM_I8259_H
  15. #define _ASM_I8259_H
  16. #include <linux/compiler.h>
  17. #include <linux/spinlock.h>
  18. #include <asm/io.h>
  19. #include <irq.h>
  20. /* i8259A PIC registers */
  21. #define PIC_MASTER_CMD 0x20
  22. #define PIC_MASTER_IMR 0x21
  23. #define PIC_MASTER_ISR PIC_MASTER_CMD
  24. #define PIC_MASTER_POLL PIC_MASTER_ISR
  25. #define PIC_MASTER_OCW3 PIC_MASTER_ISR
  26. #define PIC_SLAVE_CMD 0xa0
  27. #define PIC_SLAVE_IMR 0xa1
  28. /* i8259A PIC related value */
  29. #define PIC_CASCADE_IR 2
  30. #define MASTER_ICW4_DEFAULT 0x01
  31. #define SLAVE_ICW4_DEFAULT 0x01
  32. #define PIC_ICW4_AEOI 2
  33. extern raw_spinlock_t i8259A_lock;
  34. extern void make_8259A_irq(unsigned int irq);
  35. extern void init_i8259_irqs(void);
  36. extern int i8259_of_init(struct device_node *node, struct device_node *parent);
  37. /**
  38. * i8159_set_poll() - Override the i8259 polling function
  39. * @poll: pointer to platform-specific polling function
  40. *
  41. * Call this to override the generic i8259 polling function, which directly
  42. * accesses i8259 registers, with a platform specific one which may be faster
  43. * in cases where hardware provides a more optimal means of polling for an
  44. * interrupt.
  45. */
  46. extern void i8259_set_poll(int (*poll)(void));
  47. /*
  48. * Do the traditional i8259 interrupt polling thing. This is for the few
  49. * cases where no better interrupt acknowledge method is available and we
  50. * absolutely must touch the i8259.
  51. */
  52. static inline int i8259_irq(void)
  53. {
  54. int irq;
  55. raw_spin_lock(&i8259A_lock);
  56. /* Perform an interrupt acknowledge cycle on controller 1. */
  57. outb(0x0C, PIC_MASTER_CMD); /* prepare for poll */
  58. irq = inb(PIC_MASTER_CMD) & 7;
  59. if (irq == PIC_CASCADE_IR) {
  60. /*
  61. * Interrupt is cascaded so perform interrupt
  62. * acknowledge on controller 2.
  63. */
  64. outb(0x0C, PIC_SLAVE_CMD); /* prepare for poll */
  65. irq = (inb(PIC_SLAVE_CMD) & 7) + 8;
  66. }
  67. if (unlikely(irq == 7)) {
  68. /*
  69. * This may be a spurious interrupt.
  70. *
  71. * Read the interrupt status register (ISR). If the most
  72. * significant bit is not set then there is no valid
  73. * interrupt.
  74. */
  75. outb(0x0B, PIC_MASTER_ISR); /* ISR register */
  76. if(~inb(PIC_MASTER_ISR) & 0x80)
  77. irq = -1;
  78. }
  79. raw_spin_unlock(&i8259A_lock);
  80. return likely(irq >= 0) ? irq + I8259A_IRQ_BASE : irq;
  81. }
  82. #endif /* _ASM_I8259_H */