i8259.c 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Code to handle x86 style IRQs plus some generic interrupt stuff.
  7. *
  8. * Copyright (C) 1992 Linus Torvalds
  9. * Copyright (C) 1994 - 2000 Ralf Baechle
  10. */
  11. #include <linux/delay.h>
  12. #include <linux/init.h>
  13. #include <linux/ioport.h>
  14. #include <linux/interrupt.h>
  15. #include <linux/kernel.h>
  16. #include <linux/spinlock.h>
  17. #include <linux/sysdev.h>
  18. #include <linux/irq.h>
  19. #include <asm/i8259.h>
  20. #include <asm/io.h>
  21. /*
  22. * This is the 'legacy' 8259A Programmable Interrupt Controller,
  23. * present in the majority of PC/AT boxes.
  24. * plus some generic x86 specific things if generic specifics makes
  25. * any sense at all.
  26. * this file should become arch/i386/kernel/irq.c when the old irq.c
  27. * moves to arch independent land
  28. */
  29. static int i8259A_auto_eoi = -1;
  30. DEFINE_RAW_SPINLOCK(i8259A_lock);
  31. static void disable_8259A_irq(unsigned int irq);
  32. static void enable_8259A_irq(unsigned int irq);
  33. static void mask_and_ack_8259A(unsigned int irq);
  34. static void init_8259A(int auto_eoi);
  35. static struct irq_chip i8259A_chip = {
  36. .name = "XT-PIC",
  37. .mask = disable_8259A_irq,
  38. .disable = disable_8259A_irq,
  39. .unmask = enable_8259A_irq,
  40. .mask_ack = mask_and_ack_8259A,
  41. #ifdef CONFIG_MIPS_MT_SMTC_IRQAFF
  42. .set_affinity = plat_set_irq_affinity,
  43. #endif /* CONFIG_MIPS_MT_SMTC_IRQAFF */
  44. };
  45. /*
  46. * 8259A PIC functions to handle ISA devices:
  47. */
  48. /*
  49. * This contains the irq mask for both 8259A irq controllers,
  50. */
  51. static unsigned int cached_irq_mask = 0xffff;
  52. #define cached_master_mask (cached_irq_mask)
  53. #define cached_slave_mask (cached_irq_mask >> 8)
  54. static void disable_8259A_irq(unsigned int irq)
  55. {
  56. unsigned int mask;
  57. unsigned long flags;
  58. irq -= I8259A_IRQ_BASE;
  59. mask = 1 << irq;
  60. raw_spin_lock_irqsave(&i8259A_lock, flags);
  61. cached_irq_mask |= mask;
  62. if (irq & 8)
  63. outb(cached_slave_mask, PIC_SLAVE_IMR);
  64. else
  65. outb(cached_master_mask, PIC_MASTER_IMR);
  66. raw_spin_unlock_irqrestore(&i8259A_lock, flags);
  67. }
  68. static void enable_8259A_irq(unsigned int irq)
  69. {
  70. unsigned int mask;
  71. unsigned long flags;
  72. irq -= I8259A_IRQ_BASE;
  73. mask = ~(1 << irq);
  74. raw_spin_lock_irqsave(&i8259A_lock, flags);
  75. cached_irq_mask &= mask;
  76. if (irq & 8)
  77. outb(cached_slave_mask, PIC_SLAVE_IMR);
  78. else
  79. outb(cached_master_mask, PIC_MASTER_IMR);
  80. raw_spin_unlock_irqrestore(&i8259A_lock, flags);
  81. }
  82. int i8259A_irq_pending(unsigned int irq)
  83. {
  84. unsigned int mask;
  85. unsigned long flags;
  86. int ret;
  87. irq -= I8259A_IRQ_BASE;
  88. mask = 1 << irq;
  89. raw_spin_lock_irqsave(&i8259A_lock, flags);
  90. if (irq < 8)
  91. ret = inb(PIC_MASTER_CMD) & mask;
  92. else
  93. ret = inb(PIC_SLAVE_CMD) & (mask >> 8);
  94. raw_spin_unlock_irqrestore(&i8259A_lock, flags);
  95. return ret;
  96. }
  97. void make_8259A_irq(unsigned int irq)
  98. {
  99. disable_irq_nosync(irq);
  100. set_irq_chip_and_handler(irq, &i8259A_chip, handle_level_irq);
  101. enable_irq(irq);
  102. }
  103. /*
  104. * This function assumes to be called rarely. Switching between
  105. * 8259A registers is slow.
  106. * This has to be protected by the irq controller spinlock
  107. * before being called.
  108. */
  109. static inline int i8259A_irq_real(unsigned int irq)
  110. {
  111. int value;
  112. int irqmask = 1 << irq;
  113. if (irq < 8) {
  114. outb(0x0B, PIC_MASTER_CMD); /* ISR register */
  115. value = inb(PIC_MASTER_CMD) & irqmask;
  116. outb(0x0A, PIC_MASTER_CMD); /* back to the IRR register */
  117. return value;
  118. }
  119. outb(0x0B, PIC_SLAVE_CMD); /* ISR register */
  120. value = inb(PIC_SLAVE_CMD) & (irqmask >> 8);
  121. outb(0x0A, PIC_SLAVE_CMD); /* back to the IRR register */
  122. return value;
  123. }
  124. /*
  125. * Careful! The 8259A is a fragile beast, it pretty
  126. * much _has_ to be done exactly like this (mask it
  127. * first, _then_ send the EOI, and the order of EOI
  128. * to the two 8259s is important!
  129. */
  130. static void mask_and_ack_8259A(unsigned int irq)
  131. {
  132. unsigned int irqmask;
  133. unsigned long flags;
  134. irq -= I8259A_IRQ_BASE;
  135. irqmask = 1 << irq;
  136. raw_spin_lock_irqsave(&i8259A_lock, flags);
  137. /*
  138. * Lightweight spurious IRQ detection. We do not want
  139. * to overdo spurious IRQ handling - it's usually a sign
  140. * of hardware problems, so we only do the checks we can
  141. * do without slowing down good hardware unnecessarily.
  142. *
  143. * Note that IRQ7 and IRQ15 (the two spurious IRQs
  144. * usually resulting from the 8259A-1|2 PICs) occur
  145. * even if the IRQ is masked in the 8259A. Thus we
  146. * can check spurious 8259A IRQs without doing the
  147. * quite slow i8259A_irq_real() call for every IRQ.
  148. * This does not cover 100% of spurious interrupts,
  149. * but should be enough to warn the user that there
  150. * is something bad going on ...
  151. */
  152. if (cached_irq_mask & irqmask)
  153. goto spurious_8259A_irq;
  154. cached_irq_mask |= irqmask;
  155. handle_real_irq:
  156. if (irq & 8) {
  157. inb(PIC_SLAVE_IMR); /* DUMMY - (do we need this?) */
  158. outb(cached_slave_mask, PIC_SLAVE_IMR);
  159. outb(0x60+(irq&7), PIC_SLAVE_CMD);/* 'Specific EOI' to slave */
  160. outb(0x60+PIC_CASCADE_IR, PIC_MASTER_CMD); /* 'Specific EOI' to master-IRQ2 */
  161. } else {
  162. inb(PIC_MASTER_IMR); /* DUMMY - (do we need this?) */
  163. outb(cached_master_mask, PIC_MASTER_IMR);
  164. outb(0x60+irq, PIC_MASTER_CMD); /* 'Specific EOI to master */
  165. }
  166. smtc_im_ack_irq(irq);
  167. raw_spin_unlock_irqrestore(&i8259A_lock, flags);
  168. return;
  169. spurious_8259A_irq:
  170. /*
  171. * this is the slow path - should happen rarely.
  172. */
  173. if (i8259A_irq_real(irq))
  174. /*
  175. * oops, the IRQ _is_ in service according to the
  176. * 8259A - not spurious, go handle it.
  177. */
  178. goto handle_real_irq;
  179. {
  180. static int spurious_irq_mask;
  181. /*
  182. * At this point we can be sure the IRQ is spurious,
  183. * lets ACK and report it. [once per IRQ]
  184. */
  185. if (!(spurious_irq_mask & irqmask)) {
  186. printk(KERN_DEBUG "spurious 8259A interrupt: IRQ%d.\n", irq);
  187. spurious_irq_mask |= irqmask;
  188. }
  189. atomic_inc(&irq_err_count);
  190. /*
  191. * Theoretically we do not have to handle this IRQ,
  192. * but in Linux this does not cause problems and is
  193. * simpler for us.
  194. */
  195. goto handle_real_irq;
  196. }
  197. }
  198. static int i8259A_resume(struct sys_device *dev)
  199. {
  200. if (i8259A_auto_eoi >= 0)
  201. init_8259A(i8259A_auto_eoi);
  202. return 0;
  203. }
  204. static int i8259A_shutdown(struct sys_device *dev)
  205. {
  206. /* Put the i8259A into a quiescent state that
  207. * the kernel initialization code can get it
  208. * out of.
  209. */
  210. if (i8259A_auto_eoi >= 0) {
  211. outb(0xff, PIC_MASTER_IMR); /* mask all of 8259A-1 */
  212. outb(0xff, PIC_SLAVE_IMR); /* mask all of 8259A-1 */
  213. }
  214. return 0;
  215. }
  216. static struct sysdev_class i8259_sysdev_class = {
  217. .name = "i8259",
  218. .resume = i8259A_resume,
  219. .shutdown = i8259A_shutdown,
  220. };
  221. static struct sys_device device_i8259A = {
  222. .id = 0,
  223. .cls = &i8259_sysdev_class,
  224. };
  225. static int __init i8259A_init_sysfs(void)
  226. {
  227. int error = sysdev_class_register(&i8259_sysdev_class);
  228. if (!error)
  229. error = sysdev_register(&device_i8259A);
  230. return error;
  231. }
  232. device_initcall(i8259A_init_sysfs);
  233. static void init_8259A(int auto_eoi)
  234. {
  235. unsigned long flags;
  236. i8259A_auto_eoi = auto_eoi;
  237. raw_spin_lock_irqsave(&i8259A_lock, flags);
  238. outb(0xff, PIC_MASTER_IMR); /* mask all of 8259A-1 */
  239. outb(0xff, PIC_SLAVE_IMR); /* mask all of 8259A-2 */
  240. /*
  241. * outb_p - this has to work on a wide range of PC hardware.
  242. */
  243. outb_p(0x11, PIC_MASTER_CMD); /* ICW1: select 8259A-1 init */
  244. outb_p(I8259A_IRQ_BASE + 0, PIC_MASTER_IMR); /* ICW2: 8259A-1 IR0 mapped to I8259A_IRQ_BASE + 0x00 */
  245. outb_p(1U << PIC_CASCADE_IR, PIC_MASTER_IMR); /* 8259A-1 (the master) has a slave on IR2 */
  246. if (auto_eoi) /* master does Auto EOI */
  247. outb_p(MASTER_ICW4_DEFAULT | PIC_ICW4_AEOI, PIC_MASTER_IMR);
  248. else /* master expects normal EOI */
  249. outb_p(MASTER_ICW4_DEFAULT, PIC_MASTER_IMR);
  250. outb_p(0x11, PIC_SLAVE_CMD); /* ICW1: select 8259A-2 init */
  251. outb_p(I8259A_IRQ_BASE + 8, PIC_SLAVE_IMR); /* ICW2: 8259A-2 IR0 mapped to I8259A_IRQ_BASE + 0x08 */
  252. outb_p(PIC_CASCADE_IR, PIC_SLAVE_IMR); /* 8259A-2 is a slave on master's IR2 */
  253. outb_p(SLAVE_ICW4_DEFAULT, PIC_SLAVE_IMR); /* (slave's support for AEOI in flat mode is to be investigated) */
  254. if (auto_eoi)
  255. /*
  256. * In AEOI mode we just have to mask the interrupt
  257. * when acking.
  258. */
  259. i8259A_chip.mask_ack = disable_8259A_irq;
  260. else
  261. i8259A_chip.mask_ack = mask_and_ack_8259A;
  262. udelay(100); /* wait for 8259A to initialize */
  263. outb(cached_master_mask, PIC_MASTER_IMR); /* restore master IRQ mask */
  264. outb(cached_slave_mask, PIC_SLAVE_IMR); /* restore slave IRQ mask */
  265. raw_spin_unlock_irqrestore(&i8259A_lock, flags);
  266. }
  267. /*
  268. * IRQ2 is cascade interrupt to second interrupt controller
  269. */
  270. static struct irqaction irq2 = {
  271. .handler = no_action,
  272. .name = "cascade",
  273. };
  274. static struct resource pic1_io_resource = {
  275. .name = "pic1",
  276. .start = PIC_MASTER_CMD,
  277. .end = PIC_MASTER_IMR,
  278. .flags = IORESOURCE_BUSY
  279. };
  280. static struct resource pic2_io_resource = {
  281. .name = "pic2",
  282. .start = PIC_SLAVE_CMD,
  283. .end = PIC_SLAVE_IMR,
  284. .flags = IORESOURCE_BUSY
  285. };
  286. /*
  287. * On systems with i8259-style interrupt controllers we assume for
  288. * driver compatibility reasons interrupts 0 - 15 to be the i8259
  289. * interrupts even if the hardware uses a different interrupt numbering.
  290. */
  291. void __init init_i8259_irqs(void)
  292. {
  293. int i;
  294. insert_resource(&ioport_resource, &pic1_io_resource);
  295. insert_resource(&ioport_resource, &pic2_io_resource);
  296. init_8259A(0);
  297. for (i = I8259A_IRQ_BASE; i < I8259A_IRQ_BASE + 16; i++) {
  298. set_irq_chip_and_handler(i, &i8259A_chip, handle_level_irq);
  299. set_irq_probe(i);
  300. }
  301. setup_irq(I8259A_IRQ_BASE + PIC_CASCADE_IR, &irq2);
  302. }