blob: 37a2c5db761d2ffd5b77e6c3ef5e498e3f5bf41d [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * eisa.c - provide support for EISA adapters in PA-RISC machines
4 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright (c) 2001 Matthew Wilcox for Hewlett Packard
6 * Copyright (c) 2001 Daniel Engstrom <5116@telia.com>
7 *
8 * There are two distinct EISA adapters. Mongoose is found in machines
9 * before the 712; then the Wax ASIC is used. To complicate matters, the
10 * Wax ASIC also includes a PS/2 and RS-232 controller, but those are
11 * dealt with elsewhere; this file is concerned only with the EISA portions
12 * of Wax.
Arvind Yadav99cde442017-01-17 13:35:03 +053013 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * HINT:
15 * -----
16 * To allow an ISA card to work properly in the EISA slot you need to
Arvind Yadav99cde442017-01-17 13:35:03 +053017 * set an edge trigger level. This may be done on the palo command line
18 * by adding the kernel parameter "eisa_irq_edge=n,n2,[...]]", with
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * n and n2 as the irq levels you want to use.
Arvind Yadav99cde442017-01-17 13:35:03 +053020 *
21 * Example: "eisa_irq_edge=10,11" allows ISA cards to operate at
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * irq levels 10 and 11.
23 */
24
25#include <linux/init.h>
26#include <linux/ioport.h>
27#include <linux/interrupt.h>
28#include <linux/kernel.h>
29#include <linux/module.h>
30#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/spinlock.h>
32#include <linux/eisa.h>
33
34#include <asm/byteorder.h>
35#include <asm/io.h>
36#include <asm/hardware.h>
37#include <asm/processor.h>
38#include <asm/parisc-device.h>
39#include <asm/delay.h>
40#include <asm/eisa_bus.h>
41#include <asm/eisa_eeprom.h>
42
Christoph Hellwig9b8eeab2019-01-29 19:13:04 +010043#include "iommu.h"
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#if 0
Arvind Yadav99cde442017-01-17 13:35:03 +053046#define EISA_DBG(msg, arg...) printk(KERN_DEBUG "eisa: " msg, ## arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#else
Arvind Yadav99cde442017-01-17 13:35:03 +053048#define EISA_DBG(msg, arg...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#endif
50
51#define SNAKES_EEPROM_BASE_ADDR 0xF0810400
52#define MIRAGE_EEPROM_BASE_ADDR 0xF00C0400
53
54static DEFINE_SPINLOCK(eisa_irq_lock);
55
Helge Deller8039de12006-01-10 20:35:03 -050056void __iomem *eisa_eeprom_addr __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/* We can only have one EISA adapter in the system because neither
59 * implementation can be flexed.
60 */
61static struct eisa_ba {
62 struct pci_hba_data hba;
63 unsigned long eeprom_addr;
64 struct eisa_root_device root;
65} eisa_dev;
66
67/* Port ops */
68
69static inline unsigned long eisa_permute(unsigned short port)
70{
71 if (port & 0x300) {
72 return 0xfc000000 | ((port & 0xfc00) >> 6)
73 | ((port & 0x3f8) << 9) | (port & 7);
74 } else {
75 return 0xfc000000 | port;
76 }
77}
78
79unsigned char eisa_in8(unsigned short port)
80{
81 if (EISA_bus)
82 return gsc_readb(eisa_permute(port));
83 return 0xff;
84}
85
86unsigned short eisa_in16(unsigned short port)
87{
88 if (EISA_bus)
89 return le16_to_cpu(gsc_readw(eisa_permute(port)));
90 return 0xffff;
91}
92
93unsigned int eisa_in32(unsigned short port)
94{
95 if (EISA_bus)
96 return le32_to_cpu(gsc_readl(eisa_permute(port)));
97 return 0xffffffff;
98}
99
100void eisa_out8(unsigned char data, unsigned short port)
101{
102 if (EISA_bus)
103 gsc_writeb(data, eisa_permute(port));
104}
105
106void eisa_out16(unsigned short data, unsigned short port)
107{
Arvind Yadav99cde442017-01-17 13:35:03 +0530108 if (EISA_bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 gsc_writew(cpu_to_le16(data), eisa_permute(port));
110}
111
112void eisa_out32(unsigned int data, unsigned short port)
113{
114 if (EISA_bus)
115 gsc_writel(cpu_to_le32(data), eisa_permute(port));
116}
117
118#ifndef CONFIG_PCI
119/* We call these directly without PCI. See asm/io.h. */
120EXPORT_SYMBOL(eisa_in8);
121EXPORT_SYMBOL(eisa_in16);
122EXPORT_SYMBOL(eisa_in32);
123EXPORT_SYMBOL(eisa_out8);
124EXPORT_SYMBOL(eisa_out16);
125EXPORT_SYMBOL(eisa_out32);
126#endif
127
128/* Interrupt handling */
129
130/* cached interrupt mask registers */
131static int master_mask;
132static int slave_mask;
133
134/* the trig level can be set with the
Arvind Yadav99cde442017-01-17 13:35:03 +0530135 * eisa_irq_edge=n,n,n commandline parameter
136 * We should really read this from the EEPROM
137 * in the furure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 */
139/* irq 13,8,2,1,0 must be edge */
Helge Deller8039de12006-01-10 20:35:03 -0500140static unsigned int eisa_irq_level __read_mostly; /* default to edge triggered */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142
143/* called by free irq */
Thomas Gleixner4c4231e2011-02-06 20:45:52 +0000144static void eisa_mask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Thomas Gleixner4c4231e2011-02-06 20:45:52 +0000146 unsigned int irq = d->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 unsigned long flags;
148
149 EISA_DBG("disable irq %d\n", irq);
150 /* just mask for now */
151 spin_lock_irqsave(&eisa_irq_lock, flags);
152 if (irq & 8) {
153 slave_mask |= (1 << (irq&7));
154 eisa_out8(slave_mask, 0xa1);
155 } else {
156 master_mask |= (1 << (irq&7));
157 eisa_out8(master_mask, 0x21);
158 }
159 spin_unlock_irqrestore(&eisa_irq_lock, flags);
160 EISA_DBG("pic0 mask %02x\n", eisa_in8(0x21));
161 EISA_DBG("pic1 mask %02x\n", eisa_in8(0xa1));
162}
163
164/* called by request irq */
Thomas Gleixner4c4231e2011-02-06 20:45:52 +0000165static void eisa_unmask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Thomas Gleixner4c4231e2011-02-06 20:45:52 +0000167 unsigned int irq = d->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 unsigned long flags;
169 EISA_DBG("enable irq %d\n", irq);
Arvind Yadav99cde442017-01-17 13:35:03 +0530170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 spin_lock_irqsave(&eisa_irq_lock, flags);
172 if (irq & 8) {
173 slave_mask &= ~(1 << (irq&7));
174 eisa_out8(slave_mask, 0xa1);
175 } else {
176 master_mask &= ~(1 << (irq&7));
177 eisa_out8(master_mask, 0x21);
178 }
179 spin_unlock_irqrestore(&eisa_irq_lock, flags);
180 EISA_DBG("pic0 mask %02x\n", eisa_in8(0x21));
181 EISA_DBG("pic1 mask %02x\n", eisa_in8(0xa1));
182}
183
Thomas Gleixnerdfe07562009-06-10 19:56:04 +0000184static struct irq_chip eisa_interrupt_type = {
Thomas Gleixner4c4231e2011-02-06 20:45:52 +0000185 .name = "EISA",
186 .irq_unmask = eisa_unmask_irq,
187 .irq_mask = eisa_mask_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188};
189
David Howells7d12e782006-10-05 14:55:46 +0100190static irqreturn_t eisa_irq(int wax_irq, void *intr_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 int irq = gsc_readb(0xfc01f000); /* EISA supports 16 irqs */
193 unsigned long flags;
Arvind Yadav99cde442017-01-17 13:35:03 +0530194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 spin_lock_irqsave(&eisa_irq_lock, flags);
196 /* read IRR command */
197 eisa_out8(0x0a, 0x20);
198 eisa_out8(0x0a, 0xa0);
199
200 EISA_DBG("irq IAR %02x 8259-1 irr %02x 8259-2 irr %02x\n",
201 irq, eisa_in8(0x20), eisa_in8(0xa0));
Arvind Yadav99cde442017-01-17 13:35:03 +0530202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 /* read ISR command */
204 eisa_out8(0x0a, 0x20);
205 eisa_out8(0x0a, 0xa0);
206 EISA_DBG("irq 8259-1 isr %02x imr %02x 8259-2 isr %02x imr %02x\n",
207 eisa_in8(0x20), eisa_in8(0x21), eisa_in8(0xa0), eisa_in8(0xa1));
Arvind Yadav99cde442017-01-17 13:35:03 +0530208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 irq &= 0xf;
Arvind Yadav99cde442017-01-17 13:35:03 +0530210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 /* mask irq and write eoi */
212 if (irq & 8) {
213 slave_mask |= (1 << (irq&7));
214 eisa_out8(slave_mask, 0xa1);
215 eisa_out8(0x60 | (irq&7),0xa0);/* 'Specific EOI' to slave */
Arvind Yadav99cde442017-01-17 13:35:03 +0530216 eisa_out8(0x62, 0x20); /* 'Specific EOI' to master-IRQ2 */
217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 } else {
219 master_mask |= (1 << (irq&7));
220 eisa_out8(master_mask, 0x21);
Arvind Yadav99cde442017-01-17 13:35:03 +0530221 eisa_out8(0x60|irq, 0x20); /* 'Specific EOI' to master */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
223 spin_unlock_irqrestore(&eisa_irq_lock, flags);
224
Kyle McMartinba200852010-10-13 21:00:55 -0400225 generic_handle_irq(irq);
Arvind Yadav99cde442017-01-17 13:35:03 +0530226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 spin_lock_irqsave(&eisa_irq_lock, flags);
228 /* unmask */
229 if (irq & 8) {
230 slave_mask &= ~(1 << (irq&7));
231 eisa_out8(slave_mask, 0xa1);
232 } else {
233 master_mask &= ~(1 << (irq&7));
234 eisa_out8(master_mask, 0x21);
235 }
236 spin_unlock_irqrestore(&eisa_irq_lock, flags);
237 return IRQ_HANDLED;
238}
239
David Howells7d12e782006-10-05 14:55:46 +0100240static irqreturn_t dummy_irq2_handler(int _, void *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 printk(KERN_ALERT "eisa: uhh, irq2?\n");
243 return IRQ_HANDLED;
244}
245
246static struct irqaction irq2_action = {
247 .handler = dummy_irq2_handler,
248 .name = "cascade",
249};
250
251static void init_eisa_pic(void)
252{
253 unsigned long flags;
Arvind Yadav99cde442017-01-17 13:35:03 +0530254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 spin_lock_irqsave(&eisa_irq_lock, flags);
256
257 eisa_out8(0xff, 0x21); /* mask during init */
258 eisa_out8(0xff, 0xa1); /* mask during init */
Arvind Yadav99cde442017-01-17 13:35:03 +0530259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 /* master pic */
Arvind Yadav99cde442017-01-17 13:35:03 +0530261 eisa_out8(0x11, 0x20); /* ICW1 */
262 eisa_out8(0x00, 0x21); /* ICW2 */
263 eisa_out8(0x04, 0x21); /* ICW3 */
264 eisa_out8(0x01, 0x21); /* ICW4 */
265 eisa_out8(0x40, 0x20); /* OCW2 */
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 /* slave pic */
Arvind Yadav99cde442017-01-17 13:35:03 +0530268 eisa_out8(0x11, 0xa0); /* ICW1 */
269 eisa_out8(0x08, 0xa1); /* ICW2 */
270 eisa_out8(0x02, 0xa1); /* ICW3 */
271 eisa_out8(0x01, 0xa1); /* ICW4 */
272 eisa_out8(0x40, 0xa0); /* OCW2 */
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 udelay(100);
Arvind Yadav99cde442017-01-17 13:35:03 +0530275
276 slave_mask = 0xff;
277 master_mask = 0xfb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 eisa_out8(slave_mask, 0xa1); /* OCW1 */
279 eisa_out8(master_mask, 0x21); /* OCW1 */
Arvind Yadav99cde442017-01-17 13:35:03 +0530280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 /* setup trig level */
282 EISA_DBG("EISA edge/level %04x\n", eisa_irq_level);
Arvind Yadav99cde442017-01-17 13:35:03 +0530283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 eisa_out8(eisa_irq_level&0xff, 0x4d0); /* Set all irq's to edge */
Arvind Yadav99cde442017-01-17 13:35:03 +0530285 eisa_out8((eisa_irq_level >> 8) & 0xff, 0x4d1);
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 EISA_DBG("pic0 mask %02x\n", eisa_in8(0x21));
288 EISA_DBG("pic1 mask %02x\n", eisa_in8(0xa1));
289 EISA_DBG("pic0 edge/level %02x\n", eisa_in8(0x4d0));
290 EISA_DBG("pic1 edge/level %02x\n", eisa_in8(0x4d1));
Arvind Yadav99cde442017-01-17 13:35:03 +0530291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 spin_unlock_irqrestore(&eisa_irq_lock, flags);
293}
294
295/* Device initialisation */
296
297#define is_mongoose(dev) (dev->id.sversion == 0x00076)
298
Helge Deller6fe077f2007-05-27 19:57:11 +0200299static int __init eisa_probe(struct parisc_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 int i, result;
302
303 char *name = is_mongoose(dev) ? "Mongoose" : "Wax";
304
Arvind Yadav99cde442017-01-17 13:35:03 +0530305 printk(KERN_INFO "%s EISA Adapter found at 0x%08lx\n",
Alexander Beregalovc18b4602009-03-19 10:54:07 +0000306 name, (unsigned long)dev->hpa.start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 eisa_dev.hba.dev = dev;
309 eisa_dev.hba.iommu = ccio_get_iommu(dev);
310
311 eisa_dev.hba.lmmio_space.name = "EISA";
312 eisa_dev.hba.lmmio_space.start = F_EXTEND(0xfc000000);
313 eisa_dev.hba.lmmio_space.end = F_EXTEND(0xffbfffff);
314 eisa_dev.hba.lmmio_space.flags = IORESOURCE_MEM;
315 result = ccio_request_resource(dev, &eisa_dev.hba.lmmio_space);
316 if (result < 0) {
317 printk(KERN_ERR "EISA: failed to claim EISA Bus address space!\n");
318 return result;
319 }
320 eisa_dev.hba.io_space.name = "EISA";
321 eisa_dev.hba.io_space.start = 0;
322 eisa_dev.hba.io_space.end = 0xffff;
323 eisa_dev.hba.lmmio_space.flags = IORESOURCE_IO;
324 result = request_resource(&ioport_resource, &eisa_dev.hba.io_space);
325 if (result < 0) {
326 printk(KERN_ERR "EISA: failed to claim EISA Bus port space!\n");
327 return result;
328 }
329 pcibios_register_hba(&eisa_dev.hba);
330
Thomas Gleixner8c56e722006-07-01 19:29:40 -0700331 result = request_irq(dev->irq, eisa_irq, IRQF_SHARED, "EISA", &eisa_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 if (result) {
333 printk(KERN_ERR "EISA: request_irq failed!\n");
Arvind Yadavaf640d12017-01-18 13:41:31 +0530334 goto error_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
Arvind Yadav99cde442017-01-17 13:35:03 +0530336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 /* Reserve IRQ2 */
Kyle McMartinba200852010-10-13 21:00:55 -0400338 setup_irq(2, &irq2_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 for (i = 0; i < 16; i++) {
Thomas Gleixnere2f571d2011-03-24 17:41:44 +0100340 irq_set_chip_and_handler(i, &eisa_interrupt_type,
James Bottomley51890612010-12-03 02:01:05 +0000341 handle_simple_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
Arvind Yadav99cde442017-01-17 13:35:03 +0530343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 EISA_bus = 1;
345
346 if (dev->num_addrs) {
347 /* newer firmware hand out the eeprom address */
348 eisa_dev.eeprom_addr = dev->addr[0];
349 } else {
350 /* old firmware, need to figure out the box */
351 if (is_mongoose(dev)) {
352 eisa_dev.eeprom_addr = SNAKES_EEPROM_BASE_ADDR;
353 } else {
354 eisa_dev.eeprom_addr = MIRAGE_EEPROM_BASE_ADDR;
355 }
356 }
Helge Deller5076c152006-03-27 12:52:15 -0700357 eisa_eeprom_addr = ioremap_nocache(eisa_dev.eeprom_addr, HPEE_MAX_LENGTH);
Arvind Yadavaf640d12017-01-18 13:41:31 +0530358 if (!eisa_eeprom_addr) {
359 result = -ENOMEM;
360 printk(KERN_ERR "EISA: ioremap_nocache failed!\n");
361 goto error_free_irq;
362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 result = eisa_enumerator(eisa_dev.eeprom_addr, &eisa_dev.hba.io_space,
364 &eisa_dev.hba.lmmio_space);
365 init_eisa_pic();
366
367 if (result >= 0) {
368 /* FIXME : Don't enumerate the bus twice. */
369 eisa_dev.root.dev = &dev->dev;
Greg Kroah-Hartmand18dbfa2009-05-04 12:40:54 -0700370 dev_set_drvdata(&dev->dev, &eisa_dev.root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 eisa_dev.root.bus_base_addr = 0;
372 eisa_dev.root.res = &eisa_dev.hba.io_space;
373 eisa_dev.root.slots = result;
374 eisa_dev.root.dma_mask = 0xffffffff; /* wild guess */
375 if (eisa_root_register (&eisa_dev.root)) {
376 printk(KERN_ERR "EISA: Failed to register EISA root\n");
Arvind Yadavaf640d12017-01-18 13:41:31 +0530377 result = -ENOMEM;
378 goto error_iounmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
380 }
Arvind Yadav99cde442017-01-17 13:35:03 +0530381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return 0;
Arvind Yadavaf640d12017-01-18 13:41:31 +0530383
384error_iounmap:
385 iounmap(eisa_eeprom_addr);
386error_free_irq:
387 free_irq(dev->irq, &eisa_dev);
388error_release:
389 release_resource(&eisa_dev.hba.io_space);
390 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
Helge Dellercfe4fbf2017-08-21 22:02:19 +0200393static const struct parisc_device_id eisa_tbl[] __initconst = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 { HPHW_BA, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, 0x00076 }, /* Mongoose */
395 { HPHW_BA, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, 0x00090 }, /* Wax EISA */
396 { 0, }
397};
398
399MODULE_DEVICE_TABLE(parisc, eisa_tbl);
400
Helge Dellercfe4fbf2017-08-21 22:02:19 +0200401static struct parisc_driver eisa_driver __refdata = {
Matthew Wilcoxbdad1f82005-10-21 22:36:23 -0400402 .name = "eisa_ba",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 .id_table = eisa_tbl,
404 .probe = eisa_probe,
405};
406
407void __init eisa_init(void)
408{
409 register_parisc_driver(&eisa_driver);
410}
411
412
413static unsigned int eisa_irq_configured;
414void eisa_make_irq_level(int num)
415{
416 if (eisa_irq_configured& (1<<num)) {
417 printk(KERN_WARNING
Arvind Yadav99cde442017-01-17 13:35:03 +0530418 "IRQ %d polarity configured twice (last to level)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 num);
420 }
421 eisa_irq_level |= (1<<num); /* set the corresponding bit */
422 eisa_irq_configured |= (1<<num); /* set the corresponding bit */
423}
424
425void eisa_make_irq_edge(int num)
426{
427 if (eisa_irq_configured& (1<<num)) {
Arvind Yadav99cde442017-01-17 13:35:03 +0530428 printk(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 "IRQ %d polarity configured twice (last to edge)\n",
430 num);
431 }
432 eisa_irq_level &= ~(1<<num); /* clear the corresponding bit */
433 eisa_irq_configured |= (1<<num); /* set the corresponding bit */
434}
435
436static int __init eisa_irq_setup(char *str)
437{
438 char *cur = str;
439 int val;
440
441 EISA_DBG("IRQ setup\n");
442 while (cur != NULL) {
443 char *pe;
Arvind Yadav99cde442017-01-17 13:35:03 +0530444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 val = (int) simple_strtoul(cur, &pe, 0);
446 if (val > 15 || val < 0) {
447 printk(KERN_ERR "eisa: EISA irq value are 0-15\n");
448 continue;
449 }
Arvind Yadav99cde442017-01-17 13:35:03 +0530450 if (val == 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 val = 9;
452 }
453 eisa_make_irq_edge(val); /* clear the corresponding bit */
454 EISA_DBG("setting IRQ %d to edge-triggered mode\n", val);
Arvind Yadav99cde442017-01-17 13:35:03 +0530455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if ((cur = strchr(cur, ','))) {
457 cur++;
458 } else {
459 break;
460 }
461 }
462 return 1;
463}
464
465__setup("eisa_irq_edge=", eisa_irq_setup);
466