On Wednesday 28 February 2007, Eric W. Biederman wrote: > Arnd Bergmann <[EMAIL PROTECTED]> writes: > > > > > Introducing the irq_request() etc. functions that take a struct irq* > > instead of an int sounds good, but I'd hope we can avoid using those > > in device drivers and do a separate abstraction for each bus_type > > that deals with interrupts. I'm not sure if that's possible for > > each bus_type, but the ones I have worked with in the past should > > allow that: > > > > pci: each device/function has a unique irq, drivers need not know > > about it afaics. > Then there is msi and with msi-x you can have up to 4K irqs.
I have to admit I still don't really understand how this works at all. Can a driver that uses msi-x have different handlers for each of those interrupts registered simultaneously? I would expect that instead there should be only one 'struct irq' for the device, with the handler getting a 12 bit number argument. > > s390: got rid of irq numbers already > > Yes. I should really look at that more and see if I could bring > s390 into the generic irq code with my planned changes. I don't think there is much point in changing the s390 code, but the way it is solved there may be interesting for other buses as well. The interrupt handler there is not being registered explicitly, but is part of the driver (in case of subchannel) or of the device (in case of ccw_device) data structure. Similarly, in a pci device, one could imagine that the struct pci_driver contains a irq_handler_t member that is registered from the pci_device_probe() function if present. > > Note that we can even start converting device drivers first, before > > moving away from irq numbers. A typical PCI driver should get > > somewhat simpler by the conversion, and when they are all converted, > > we can replace pci_dev->irq with a struct irq* under the covers. > > Reasonable if it is easy and straight forward. > Something like pci_request_irq(dev,....) and the helper looks at > dev->irq under the covers and calls request_irq or whatever makes > sense. Is this what you are thinking. Examples would help me here. Ok, I had an example in on of my previous posts, but based on the discussion since then, it has become significantly simpler, basically reducing the work to struct irq *pci_irq_request(struct pci_device *dev, irq_handler_t handler) { if (!dev->irq) return -ENODEV; return irq_request(irq, handler, IRQF_SHARED, &dev->driver->name, dev); } int pci_irq_free(struct pci_device *dev) { return irq_free(dev->irq, dev); } The most significant change of this to the current code would be that we can pass arguments down to irq_request automatically, e.g. the irq handler can always get the pci_device as its dev_id. > For talking to user space I expect we will have numbers for a long time > to come yet. I was wondering about that. Do you only mean /proc/interrupts or are there other user interfaces we need to worry about? For /proc/interrupts, what could break if we have interrupt numbers only local to each controller and potentially duplicate numbers in the list? It's good to be paranoid about changes to proc files, but I can definitely see value in having meaningful interrupt numbers in there instead of making up a more or less random mapping to a flat number space. Arnd <>< - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/