| Paul Mackerras | f9bd170 | 2005-10-26 16:47:42 +1000 | [diff] [blame] | 1 | /* | 
 | 2 |  * i8259 interrupt controller driver. | 
 | 3 |  * | 
 | 4 |  * This program is free software; you can redistribute it and/or | 
 | 5 |  * modify it under the terms of the GNU General Public License | 
 | 6 |  * as published by the Free Software Foundation; either version | 
 | 7 |  * 2 of the License, or (at your option) any later version. | 
 | 8 |  */ | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 9 | #undef DEBUG | 
 | 10 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/init.h> | 
 | 12 | #include <linux/ioport.h> | 
 | 13 | #include <linux/interrupt.h> | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 14 | #include <linux/kernel.h> | 
 | 15 | #include <linux/delay.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <asm/io.h> | 
 | 17 | #include <asm/i8259.h> | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 18 | #include <asm/prom.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 |  | 
| Paul Mackerras | f9bd170 | 2005-10-26 16:47:42 +1000 | [diff] [blame] | 20 | static volatile void __iomem *pci_intack; /* RO, gives us the irq vector */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 |  | 
| Paul Mackerras | f9bd170 | 2005-10-26 16:47:42 +1000 | [diff] [blame] | 22 | static unsigned char cached_8259[2] = { 0xff, 0xff }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #define cached_A1 (cached_8259[0]) | 
 | 24 | #define cached_21 (cached_8259[1]) | 
 | 25 |  | 
| Thomas Gleixner | 47e3c90 | 2010-02-18 02:23:11 +0000 | [diff] [blame] | 26 | static DEFINE_RAW_SPINLOCK(i8259_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 |  | 
| Grant Likely | bae1d8f | 2012-02-14 14:06:50 -0700 | [diff] [blame] | 28 | static struct irq_domain *i8259_host; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 |  | 
 | 30 | /* | 
 | 31 |  * Acknowledge the IRQ using either the PCI host bridge's interrupt | 
 | 32 |  * acknowledge feature or poll.  How i8259_init() is called determines | 
 | 33 |  * which is called.  It should be noted that polling is broken on some | 
 | 34 |  * IBM and Motorola PReP boxes so we must use the int-ack feature on them. | 
 | 35 |  */ | 
| Olaf Hering | 35a84c2 | 2006-10-07 22:08:26 +1000 | [diff] [blame] | 36 | unsigned int i8259_irq(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | { | 
 | 38 | 	int irq; | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 39 | 	int lock = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 |  | 
 | 41 | 	/* Either int-ack or poll for the IRQ */ | 
 | 42 | 	if (pci_intack) | 
| Paul Mackerras | f9bd170 | 2005-10-26 16:47:42 +1000 | [diff] [blame] | 43 | 		irq = readb(pci_intack); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | 	else { | 
| Thomas Gleixner | 47e3c90 | 2010-02-18 02:23:11 +0000 | [diff] [blame] | 45 | 		raw_spin_lock(&i8259_lock); | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 46 | 		lock = 1; | 
 | 47 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | 		/* Perform an interrupt acknowledge cycle on controller 1. */ | 
 | 49 | 		outb(0x0C, 0x20);		/* prepare for poll */ | 
 | 50 | 		irq = inb(0x20) & 7; | 
 | 51 | 		if (irq == 2 ) { | 
 | 52 | 			/* | 
 | 53 | 			 * Interrupt is cascaded so perform interrupt | 
 | 54 | 			 * acknowledge on controller 2. | 
 | 55 | 			 */ | 
 | 56 | 			outb(0x0C, 0xA0);	/* prepare for poll */ | 
 | 57 | 			irq = (inb(0xA0) & 7) + 8; | 
 | 58 | 		} | 
 | 59 | 	} | 
 | 60 |  | 
 | 61 | 	if (irq == 7) { | 
 | 62 | 		/* | 
 | 63 | 		 * This may be a spurious interrupt. | 
 | 64 | 		 * | 
 | 65 | 		 * Read the interrupt status register (ISR). If the most | 
 | 66 | 		 * significant bit is not set then there is no valid | 
 | 67 | 		 * interrupt. | 
 | 68 | 		 */ | 
 | 69 | 		if (!pci_intack) | 
 | 70 | 			outb(0x0B, 0x20);	/* ISR register */ | 
 | 71 | 		if(~inb(0x20) & 0x80) | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 72 | 			irq = NO_IRQ; | 
 | 73 | 	} else if (irq == 0xff) | 
 | 74 | 		irq = NO_IRQ; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 |  | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 76 | 	if (lock) | 
| Thomas Gleixner | 47e3c90 | 2010-02-18 02:23:11 +0000 | [diff] [blame] | 77 | 		raw_spin_unlock(&i8259_lock); | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 78 | 	return irq; | 
| Paul Mackerras | f9bd170 | 2005-10-26 16:47:42 +1000 | [diff] [blame] | 79 | } | 
 | 80 |  | 
| Lennert Buytenhek | d420118 | 2011-03-07 13:59:56 +0000 | [diff] [blame] | 81 | static void i8259_mask_and_ack_irq(struct irq_data *d) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | { | 
 | 83 | 	unsigned long flags; | 
 | 84 |  | 
| Thomas Gleixner | 47e3c90 | 2010-02-18 02:23:11 +0000 | [diff] [blame] | 85 | 	raw_spin_lock_irqsave(&i8259_lock, flags); | 
| Lennert Buytenhek | d420118 | 2011-03-07 13:59:56 +0000 | [diff] [blame] | 86 | 	if (d->irq > 7) { | 
 | 87 | 		cached_A1 |= 1 << (d->irq-8); | 
| Paul Mackerras | f9bd170 | 2005-10-26 16:47:42 +1000 | [diff] [blame] | 88 | 		inb(0xA1); 	/* DUMMY */ | 
 | 89 | 		outb(cached_A1, 0xA1); | 
 | 90 | 		outb(0x20, 0xA0);	/* Non-specific EOI */ | 
 | 91 | 		outb(0x20, 0x20);	/* Non-specific EOI to cascade */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | 	} else { | 
| Lennert Buytenhek | d420118 | 2011-03-07 13:59:56 +0000 | [diff] [blame] | 93 | 		cached_21 |= 1 << d->irq; | 
| Paul Mackerras | f9bd170 | 2005-10-26 16:47:42 +1000 | [diff] [blame] | 94 | 		inb(0x21); 	/* DUMMY */ | 
 | 95 | 		outb(cached_21, 0x21); | 
 | 96 | 		outb(0x20, 0x20);	/* Non-specific EOI */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | 	} | 
| Thomas Gleixner | 47e3c90 | 2010-02-18 02:23:11 +0000 | [diff] [blame] | 98 | 	raw_spin_unlock_irqrestore(&i8259_lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | } | 
 | 100 |  | 
 | 101 | static void i8259_set_irq_mask(int irq_nr) | 
 | 102 | { | 
 | 103 | 	outb(cached_A1,0xA1); | 
 | 104 | 	outb(cached_21,0x21); | 
 | 105 | } | 
 | 106 |  | 
| Lennert Buytenhek | d420118 | 2011-03-07 13:59:56 +0000 | [diff] [blame] | 107 | static void i8259_mask_irq(struct irq_data *d) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | { | 
 | 109 | 	unsigned long flags; | 
 | 110 |  | 
| Lennert Buytenhek | d420118 | 2011-03-07 13:59:56 +0000 | [diff] [blame] | 111 | 	pr_debug("i8259_mask_irq(%d)\n", d->irq); | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 112 |  | 
| Thomas Gleixner | 47e3c90 | 2010-02-18 02:23:11 +0000 | [diff] [blame] | 113 | 	raw_spin_lock_irqsave(&i8259_lock, flags); | 
| Lennert Buytenhek | d420118 | 2011-03-07 13:59:56 +0000 | [diff] [blame] | 114 | 	if (d->irq < 8) | 
 | 115 | 		cached_21 |= 1 << d->irq; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | 	else | 
| Lennert Buytenhek | d420118 | 2011-03-07 13:59:56 +0000 | [diff] [blame] | 117 | 		cached_A1 |= 1 << (d->irq-8); | 
 | 118 | 	i8259_set_irq_mask(d->irq); | 
| Thomas Gleixner | 47e3c90 | 2010-02-18 02:23:11 +0000 | [diff] [blame] | 119 | 	raw_spin_unlock_irqrestore(&i8259_lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | } | 
 | 121 |  | 
| Lennert Buytenhek | d420118 | 2011-03-07 13:59:56 +0000 | [diff] [blame] | 122 | static void i8259_unmask_irq(struct irq_data *d) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | { | 
 | 124 | 	unsigned long flags; | 
 | 125 |  | 
| Lennert Buytenhek | d420118 | 2011-03-07 13:59:56 +0000 | [diff] [blame] | 126 | 	pr_debug("i8259_unmask_irq(%d)\n", d->irq); | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 127 |  | 
| Thomas Gleixner | 47e3c90 | 2010-02-18 02:23:11 +0000 | [diff] [blame] | 128 | 	raw_spin_lock_irqsave(&i8259_lock, flags); | 
| Lennert Buytenhek | d420118 | 2011-03-07 13:59:56 +0000 | [diff] [blame] | 129 | 	if (d->irq < 8) | 
 | 130 | 		cached_21 &= ~(1 << d->irq); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | 	else | 
| Lennert Buytenhek | d420118 | 2011-03-07 13:59:56 +0000 | [diff] [blame] | 132 | 		cached_A1 &= ~(1 << (d->irq-8)); | 
 | 133 | 	i8259_set_irq_mask(d->irq); | 
| Thomas Gleixner | 47e3c90 | 2010-02-18 02:23:11 +0000 | [diff] [blame] | 134 | 	raw_spin_unlock_irqrestore(&i8259_lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | } | 
 | 136 |  | 
| Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 137 | static struct irq_chip i8259_pic = { | 
| Anton Blanchard | fc380c0 | 2010-01-31 20:33:41 +0000 | [diff] [blame] | 138 | 	.name		= "i8259", | 
| Lennert Buytenhek | d420118 | 2011-03-07 13:59:56 +0000 | [diff] [blame] | 139 | 	.irq_mask	= i8259_mask_irq, | 
 | 140 | 	.irq_disable	= i8259_mask_irq, | 
 | 141 | 	.irq_unmask	= i8259_unmask_irq, | 
 | 142 | 	.irq_mask_ack	= i8259_mask_and_ack_irq, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | }; | 
 | 144 |  | 
 | 145 | static struct resource pic1_iores = { | 
 | 146 | 	.name = "8259 (master)", | 
 | 147 | 	.start = 0x20, | 
 | 148 | 	.end = 0x21, | 
 | 149 | 	.flags = IORESOURCE_BUSY, | 
 | 150 | }; | 
 | 151 |  | 
 | 152 | static struct resource pic2_iores = { | 
 | 153 | 	.name = "8259 (slave)", | 
 | 154 | 	.start = 0xa0, | 
 | 155 | 	.end = 0xa1, | 
 | 156 | 	.flags = IORESOURCE_BUSY, | 
 | 157 | }; | 
 | 158 |  | 
 | 159 | static struct resource pic_edgectrl_iores = { | 
 | 160 | 	.name = "8259 edge control", | 
 | 161 | 	.start = 0x4d0, | 
 | 162 | 	.end = 0x4d1, | 
 | 163 | 	.flags = IORESOURCE_BUSY, | 
 | 164 | }; | 
 | 165 |  | 
| Grant Likely | bae1d8f | 2012-02-14 14:06:50 -0700 | [diff] [blame] | 166 | static int i8259_host_match(struct irq_domain *h, struct device_node *node) | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 167 | { | 
| Michael Ellerman | 52964f8 | 2007-08-28 18:47:54 +1000 | [diff] [blame] | 168 | 	return h->of_node == NULL || h->of_node == node; | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 169 | } | 
 | 170 |  | 
| Grant Likely | bae1d8f | 2012-02-14 14:06:50 -0700 | [diff] [blame] | 171 | static int i8259_host_map(struct irq_domain *h, unsigned int virq, | 
| Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 172 | 			  irq_hw_number_t hw) | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 173 | { | 
 | 174 | 	pr_debug("i8259_host_map(%d, 0x%lx)\n", virq, hw); | 
 | 175 |  | 
 | 176 | 	/* We block the internal cascade */ | 
 | 177 | 	if (hw == 2) | 
| Thomas Gleixner | 98488db | 2011-03-25 15:43:57 +0100 | [diff] [blame] | 178 | 		irq_set_status_flags(virq, IRQ_NOREQUEST); | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 179 |  | 
| Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 180 | 	/* We use the level handler only for now, we might want to | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 181 | 	 * be more cautious here but that works for now | 
 | 182 | 	 */ | 
| Thomas Gleixner | 98488db | 2011-03-25 15:43:57 +0100 | [diff] [blame] | 183 | 	irq_set_status_flags(virq, IRQ_LEVEL); | 
| Thomas Gleixner | ec775d0 | 2011-03-25 16:45:20 +0100 | [diff] [blame] | 184 | 	irq_set_chip_and_handler(virq, &i8259_pic, handle_level_irq); | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 185 | 	return 0; | 
 | 186 | } | 
 | 187 |  | 
| Grant Likely | bae1d8f | 2012-02-14 14:06:50 -0700 | [diff] [blame] | 188 | static int i8259_host_xlate(struct irq_domain *h, struct device_node *ct, | 
| Roman Fietze | 40d50cf | 2009-12-08 02:39:50 +0000 | [diff] [blame] | 189 | 			    const u32 *intspec, unsigned int intsize, | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 190 | 			    irq_hw_number_t *out_hwirq, unsigned int *out_flags) | 
 | 191 | { | 
 | 192 | 	static unsigned char map_isa_senses[4] = { | 
 | 193 | 		IRQ_TYPE_LEVEL_LOW, | 
 | 194 | 		IRQ_TYPE_LEVEL_HIGH, | 
 | 195 | 		IRQ_TYPE_EDGE_FALLING, | 
 | 196 | 		IRQ_TYPE_EDGE_RISING, | 
 | 197 | 	}; | 
 | 198 |  | 
 | 199 | 	*out_hwirq = intspec[0]; | 
 | 200 | 	if (intsize > 1 && intspec[1] < 4) | 
 | 201 | 		*out_flags = map_isa_senses[intspec[1]]; | 
 | 202 | 	else | 
 | 203 | 		*out_flags = IRQ_TYPE_NONE; | 
 | 204 |  | 
 | 205 | 	return 0; | 
 | 206 | } | 
 | 207 |  | 
| Grant Likely | bae1d8f | 2012-02-14 14:06:50 -0700 | [diff] [blame] | 208 | static struct irq_domain_ops i8259_host_ops = { | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 209 | 	.match = i8259_host_match, | 
 | 210 | 	.map = i8259_host_map, | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 211 | 	.xlate = i8259_host_xlate, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | }; | 
 | 213 |  | 
| Grant Likely | bae1d8f | 2012-02-14 14:06:50 -0700 | [diff] [blame] | 214 | struct irq_domain *i8259_get_host(void) | 
| Benjamin Herrenschmidt | f4d4c35 | 2006-10-25 13:22:27 +1000 | [diff] [blame] | 215 | { | 
 | 216 | 	return i8259_host; | 
 | 217 | } | 
 | 218 |  | 
| Michael Ellerman | 40681b9 | 2006-08-02 11:13:50 +1000 | [diff] [blame] | 219 | /** | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 220 |  * i8259_init - Initialize the legacy controller | 
 | 221 |  * @node: device node of the legacy PIC (can be NULL, but then, it will match | 
 | 222 |  *        all interrupts, so beware) | 
 | 223 |  * @intack_addr: PCI interrupt acknowledge (real) address which will return | 
 | 224 |  *             	 the active irq from the 8259 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 |  */ | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 226 | void i8259_init(struct device_node *node, unsigned long intack_addr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | { | 
 | 228 | 	unsigned long flags; | 
 | 229 |  | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 230 | 	/* initialize the controller */ | 
| Thomas Gleixner | 47e3c90 | 2010-02-18 02:23:11 +0000 | [diff] [blame] | 231 | 	raw_spin_lock_irqsave(&i8259_lock, flags); | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 232 |  | 
 | 233 | 	/* Mask all first */ | 
 | 234 | 	outb(0xff, 0xA1); | 
 | 235 | 	outb(0xff, 0x21); | 
| Paul Mackerras | f9bd170 | 2005-10-26 16:47:42 +1000 | [diff] [blame] | 236 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | 	/* init master interrupt controller */ | 
 | 238 | 	outb(0x11, 0x20); /* Start init sequence */ | 
 | 239 | 	outb(0x00, 0x21); /* Vector base */ | 
 | 240 | 	outb(0x04, 0x21); /* edge tiggered, Cascade (slave) on IRQ2 */ | 
 | 241 | 	outb(0x01, 0x21); /* Select 8086 mode */ | 
 | 242 |  | 
 | 243 | 	/* init slave interrupt controller */ | 
 | 244 | 	outb(0x11, 0xA0); /* Start init sequence */ | 
 | 245 | 	outb(0x08, 0xA1); /* Vector base */ | 
 | 246 | 	outb(0x02, 0xA1); /* edge triggered, Cascade (slave) on IRQ2 */ | 
 | 247 | 	outb(0x01, 0xA1); /* Select 8086 mode */ | 
 | 248 |  | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 249 | 	/* That thing is slow */ | 
 | 250 | 	udelay(100); | 
 | 251 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | 	/* always read ISR */ | 
 | 253 | 	outb(0x0B, 0x20); | 
 | 254 | 	outb(0x0B, 0xA0); | 
 | 255 |  | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 256 | 	/* Unmask the internal cascade */ | 
 | 257 | 	cached_21 &= ~(1 << 2); | 
 | 258 |  | 
 | 259 | 	/* Set interrupt masks */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | 	outb(cached_A1, 0xA1); | 
 | 261 | 	outb(cached_21, 0x21); | 
 | 262 |  | 
| Thomas Gleixner | 47e3c90 | 2010-02-18 02:23:11 +0000 | [diff] [blame] | 263 | 	raw_spin_unlock_irqrestore(&i8259_lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 |  | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 265 | 	/* create a legacy host */ | 
| Grant Likely | 1bc04f2 | 2012-02-14 14:06:55 -0700 | [diff] [blame] | 266 | 	i8259_host = irq_domain_add_legacy_isa(node, &i8259_host_ops, NULL); | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 267 | 	if (i8259_host == NULL) { | 
 | 268 | 		printk(KERN_ERR "i8259: failed to allocate irq host !\n"); | 
 | 269 | 		return; | 
| Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 270 | 	} | 
| David Woodhouse | 9d2ba6f | 2005-11-05 17:54:22 +0000 | [diff] [blame] | 271 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | 	/* reserve our resources */ | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 273 | 	/* XXX should we continue doing that ? it seems to cause problems | 
 | 274 | 	 * with further requesting of PCI IO resources for that range... | 
 | 275 | 	 * need to look into it. | 
 | 276 | 	 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | 	request_resource(&ioport_resource, &pic1_iores); | 
 | 278 | 	request_resource(&ioport_resource, &pic2_iores); | 
 | 279 | 	request_resource(&ioport_resource, &pic_edgectrl_iores); | 
 | 280 |  | 
 | 281 | 	if (intack_addr != 0) | 
 | 282 | 		pci_intack = ioremap(intack_addr, 1); | 
| Paul Mackerras | f9bd170 | 2005-10-26 16:47:42 +1000 | [diff] [blame] | 283 |  | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 284 | 	printk(KERN_INFO "i8259 legacy interrupt controller initialized\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | } |