Re: [uml-user] IRQ support?

2015-10-22 Thread Richard Weinberger
Hi! CC'ing -devel list. On Thu, Oct 22, 2015 at 1:29 PM, Ricardo Nunes wrote: > I'm trying to use a real hardware driver inside UML and I,ve come to the IRQ > suppor part. How do you map the hardware into UML? > Right now it's failing on request_irq call, so my question is if there is > any ma

Re: [uml-user] IRQ support?

2015-10-22 Thread Ricardo Nunes
After some digging in the kernel I've found out that it's failing inside request_threaded_irq function, specifically on the irq_to_desc. I'm studying what it might be, do you think it's UML related? 2015-10-22 12:29 GMT+01:00 Ricard

[uml-user] IRQ support?

2015-10-22 Thread Ricardo Nunes
I'm trying to use a real hardware driver inside UML and I,ve come to the IRQ suppor part. Right now it's failing on request_irq call, so my question is if there is any manual on how to support this method calls in UML or if it's supposed to work as it is. I need to register IRQs and raise them. A