Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
985 views

Setting up IRQ mapping

I'm following several tutorials and references trying to get my kernel set up, and I've come across voodoo code in a tutorial that isn't explained at all. Its code that I'm told maps the 16 IRQs ...
3
votes
1answer
112 views

Is __alloc_pages_slowpath() Reentrant-Safe or Not?

Can a call to __alloc_pages_slowpath() survive a device interrupt that also makes a call to __alloc_pages_slowpath() or does the second call corrupt the first one? I am seeing a program call read(2) ...
3
votes
2answers
259 views

Custom RS485 Protocols

I am writing a simple multi-drop RS485 protocol for serial communications within a distributed system. I am using an addressable model where slave devices are given a window of 20ms to respond. The ...
2
votes
2answers
359 views

GPIO IRQ on ARM based Embedded Linux

I'm trying to program an GPIO IRQ on AT91SAM9M10-EKES evaluation board. I successfully registered the IRQ, and the IRQ is working. However, some interrupts are missed. I'm sending 26, and I get only ...
2
votes
3answers
348 views

Difference between request_irq and __interrupt

From what I read both are used to register interrupt handlers. I saw lots of request_irq calls in kernel code but not even one __interrupt call. Is __interrupt some way to register a handler from user ...
2
votes
2answers
337 views

What's the most accurate way of measuring elapsed time in a modern PC?

I know I can use IRQ0, which is the system timer, but this is based on a 14.31818MHz clock, right? Is there anything offering greater precision? Thanks. Edit: Does anyone know what the Windows ...
2
votes
1answer
97 views

Keyboard interrupts

I am studying low-level device driver stuff. I am confused between interrupts and IRQ. A sample driver code that hooks keyboard suggests keyboard interrupt is 0x31 but my book on microprocessor says ...
2
votes
1answer
151 views

how do I block all IRQ's during short (5ms) frame data transfer

I am an old hand with hardware and device drivers and used much earlier Linux versions for hardware control. I am recently back in the game of Linux and device control using embedded processing and ...
1
vote
1answer
71 views

Porting driver from PPC2003 to WM6: ISR not called

I'm trying to port the driver I've developed for a custom device that uses the CF port of the iPAQ hx4700. The target is the new iPAQ 210 that runs Windows Mobile 6. Although WM6 (and Windows CE 5.0) ...
1
vote
4answers
2k views

Problems with IRQs when connecting two digium card in and asterisk box

I have two Digium Wildcard TDM800P with 8 FXO ports each. When I connect both at the same time IRQ misses start showing up making my computer unresponsive and unusable. One card works fine but I ...
0
votes
1answer
168 views

request_threaded_irq() is used in the driver why not request_irq()? What are the differences between two?

I posted this is the thread which discussed about request_threaded_irq but I did not get any reply. So I am posting it freshly. I am working on a touchscreen driver for capacitive touchscree. It used ...
0
votes
0answers
94 views

How to get power button interrupts in WinCE 6.0

I am facing a problem in getting interrupts working on my device (Windows CE 6.0). Could you please suggest what is wrong? I want to create a Interrupt thread to catch power button interrupts. I tried ...
0
votes
0answers
83 views

Problem with call irq under Linux

I'm studying at the university. In this semester i was start to learn the OS. During training, i get a problem. My OS is Ubuntu 11.04 ($(uname -r) == 2.6.38-11-generic-pae). I try to get KeyPress ...
0
votes
1answer
214 views

Can an Interrupt handler write to a FIFO

I have a thread that is waiting for events received on a FIFO. Most of events are configuration events send from another thread in the same process. I would like the thread also to be able to handle ...
0
votes
1answer
181 views

ARMv6 FIQ, acknowledge interrupt

I'm working with an i.mx35 armv6 core processor. I have Interrupt 62 configured as a FIQ with my handler installed and being called. My handler at the moment just toggles an output pin so I can test ...
0
votes
1answer
426 views

How to register a function in a driver code as its ISR

Following the feedback i got from: http://stackoverflow.com/questions/2683682/new-to-linux-kernel-driver-development/2683819 In linux-kernel (v 2.6.32), I have written a driver (.c file) by comparing ...
0
votes
1answer
948 views

How CPU finds ISR and distinguishes between devices

I should first share all what I know - and that is complete chaos. There are several different questions on the topic, so please don't get irritated :). 1) To find an ISR, CPU is provided with a ...