Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
0answers
48 views

How shared IRQ races are avoided in Linux

I am considering an upcoming situation in an embedded Linux project (no hardware yet) where two external chips will need to share a single physical IRQ line. This line is capable in hardware of edge ...
4
votes
3answers
455 views

Interrupt masking: why?

I was reading up on interrupts. It is possible to suspend non-critical interrupts via a special interrupt mask. This is called interrupt masking. What i dont know is when/why you might want to or need ...
4
votes
1answer
608 views

Is the Linux Scheduler aware of hardware interrupts (Scheduler Jitter)

If a process is interrupted by a hardware interrupt (First Level Interrupt Handler), then does the CPU scheduler becomes aware of that (e.g. Does the Scheduler count execution time for hardware ...
4
votes
4answers
760 views

PIC 16F684 Microcontroller Interupt Handling

I just finished up my Microprocessors class in college just a few weeks ago, there we programmed in assembly only. We learned a fair amount (IMHO) about interrupts. Here is my question: I am ...
3
votes
2answers
69 views

MIPS memory execution prevention

I'm doing some research with the MIPS architecture and was wondering how operating systems are implemented with the limited instructions and memory protection that mips offers. I'm specifically ...
3
votes
2answers
139 views

How do I increase windows interrupt latency to stress test a driver?

I have a driver & device that seem to misbehave when the user does any number of complex things (opening large word documents, opening lots of files at once, etc.) -- but does not reliably go ...
3
votes
3answers
303 views

Why can't I call BIOS interrupts from protected mode?

Right. I've spent over three hours today trying to understand why you can't call a bios ISR when in protected mode. I get that once you set and IDT it wont necessarily be in the usual address for the ...
3
votes
2answers
634 views

embedded system interrupt / hardware handling from linux

on my AT91SAM9RL-EK ARM board, running a linux 2.6.30 buildroot, i have the following cat /proc/interrupts CPU0 1: 6475 AIC at91_tick, rtc0, ttyS0 10: 11 ...
3
votes
5answers
308 views

Trace interruption on a linux system

The command strace is mainly for tracing system call. Does someone know the equivalent for tracing interruption like IRQ14... Thanks
3
votes
5answers
2k views

Which Cortex-M3 interrupts can I use for general purpose work?

I'd have some code that needs to be run as the result of a particular interrupt going off. I don't want to execute it in the context of the interrupt itself but I also don't want it to execute in ...
3
votes
6answers
994 views

How do I identify device specific interrupts on x86?

In the Intel software developers manual it says that interrupt vectors 32-255 are usually user defined for external IO devices. In my systems programming class I must develop a simple device driver. ...
2
votes
1answer
48 views

Inline assembly. Rewrite assembly code.

How to write this assembly code as inline assembly? Compiler: gcc(i586-elf-gcc). The GAS syntax confuses me. Please give tell me how to write this as inline assembly that works for gcc. ...
2
votes
1answer
58 views

calling an interrupt vector inside an another interrupt vector

Can I call an interrupt vector inside an another interrupt vector? For example, while I'm doing a procedure in ep4inout interrupt vector: void ep4inout interrupt 0 { . . . Timer1 = 1; ...
2
votes
1answer
137 views

Application interrupts like crazy

I had a perfectly running C++ (Android native) application .. then I introduced some try { } catch {} statements and if I debug the application it interrupts like crazy in random, correct pieces of ...
2
votes
1answer
1k views

GPIO pin Interrupt handlers in linux (arm)

Can somebody point me at some sample code for enabling and handling user pin IO interrupts (C language) for an ARM9 in linux? I am aware that a low level driver may be needed, I just want to get ...
2
votes
1answer
551 views

Passing parameters between interrupt handlers on a Cortex-M3

I'm building a light kernel for a Cortex-M3. From a high priority interrupt I'd like to invoke some code to run in a lower priority interrupt and pass some parameters along. I don't want to use a ...
2
votes
2answers
1k views

How to call DOS Interrupts within a C/C++ program using Inline Assembly?

everyone ! I need to call some DOS interrupts (Services) from a C/C++ program, I tried the following inline asm code: (Read a character) int main() { asm( "movb $0x01, %ah;" "int $0x21" ); ...
2
votes
2answers
785 views

Interrupt Handling on SMP Systems

Are Interrupts assigned to a fixed CPU (always handled by the same CPU)? To put my question in context: From: http://msdn.microsoft.com/en-us/library/ms795060.aspx The spin lock that protects the ...
2
votes
1answer
165 views

Why would an end-of-interrupt for the master PIC cause a triple fault (reboot)?

Ok, in school we are developing an operating system. My project has been to develop an ATA hard disk driver. I thought I had my interrupt service routine working quite well when my professor pointed ...
2
votes
4answers
299 views

Threading in Java

I am trying to have my main thread spawn off a new thread and, after some time, raise the interrupt flag. When it does so, the spawned thread should see that flag and terminate itself. The main ...
1
vote
1answer
28 views

Loading pendrive sectors

How can we load sectors of the pendrive using bios interrupts?? Having low level disk access is needed for booting from the pendirve.... I got to hear that, we can use int 13h to load sectors...but ...
1
vote
1answer
127 views

What does SetPriorityClass(REALTIME_PRIORITY_CLASS) actually do?

What does REALTIME_PRIORITY_CLASS (with THREAD_PRIORITY_TIME_CRITICAL) actually do? Does it: Prevent interrupts from firing Prevent context switching from happening on the processor (unless the ...
1
vote
2answers
133 views

How can I prevent invalid configuration of a Microsoft.SPOT.Hardware.InterruptPort?

I'm trying to use the .NET Micro Framework's Microsoft.SPOT.Hardware.InterruptPort class. However, the documentation perplexes me: It is possible to configure an InterruptPort object into an ...
1
vote
3answers
140 views

Detect newly created file, just edited file

I am trying to read a file on a timely basis the moment an edit or creation occurs. There is another piece of hardware that creates files to a folder which i wish to access (on a timely basis). ...
1
vote
1answer
182 views

Assembly. Stop system time

I have a task for my Assembly course to stop system time while pressing Alt-button. I do it by disabling the 8th interrupt. As I understand system time is saved in the 40:6ch cell of memory, so by ...
1
vote
1answer
842 views

How to use the interrupt handler in FreeRTOS?

Hi I'm trying to use the OpenPicus devKit for a project I am working on and to my understanding the IDE, upon new project creation, creates code that basically utilizes FreeRTOS and OpenPicus ...
1
vote
2answers
607 views

Disabling all interrupts to protect CPU register state on multi processor systems

I need to ensure in a code portion (in kernel mode) that no one else can modify/check the CR0 register. On a one-processor system I think disabling interrupts is the best. But on multi-processor ...
1
vote
3answers
365 views

Assembly video mode coordinates mapping to character coordinates

I am working on an 8086 dos assembly project , using video mode i was able to draw some lines and stuff but now i want to print some characters and found that (interrupt 10,2) uses character (row,col) ...
1
vote
1answer
132 views

Blocking or sleeping an interrupt handler

Assume: 1) Multi-cpu environment 2) Process that gets interrupted, is the same process that executes the interrupt handler, so I guess technically nothing gets interrupted except what the process was ...
1
vote
3answers
367 views

Get interrupt counters like /proc/interrupts from code?

I may miss the obvious, but how/is it possible to retrieve interrupt counters for a specific interrupt without manually parsing /proc/interrupts from inside a C/C++ program? Thanks in advance! Best ...
1
vote
1answer
122 views

Access to two variables safely when an interrupt might occur between them

First of all I'd welcome edits to the title of this question, I couldn't think how to word it better but I'm not too happy with what I came up with. This is a question about concurrency, my ...
1
vote
2answers
1k views

8086 assembly right mouse click interrupts

I am working on a project in 8086 assembly on windows machine and I need to know which mouse button has been clicked. What are the interrupts for this? or how do I go about finding this out? Thanks ...
1
vote
1answer
517 views

Extended Interrupt 13, Reading an unformatted Disk

It's been a while since I did any ASM, and decided to once again try and write a small bootloader, testing with qemu. My issue is with interupt 13, for some reason the carry flag is being set, so the ...
1
vote
2answers
543 views

How could an assembly OUTB function cause a triple fault?

In my systems programming class we are working on a small, simple hobby OS. Personally I have been working on an ATA hard disk driver. I have discovered that a single line of code seems to cause a ...
0
votes
0answers
26 views

Trap Dispatching on Windows

I am actually reading Windows Internals 5th edition and i am enjoying, although isn't a easy book to read and understand. I am confused about IRQLs and IDT Table. I read that windows implement ...
0
votes
2answers
53 views

Assembler to C conversion INCF and CPFSLT

Does these's two codes mean the same? Assambler -> _asm INCF PR4,0,ACCESS CPFSLT TMR4,ACCESS _endasm C -> ++PR4; if (PR4 < TMR4) PIR3bits.TMR4IF = 1; If not, how should the ...
0
votes
1answer
98 views

Linux Userspace GPIO Interrupts using sysfs

I would like to use interrupts with GPIO on userspace using sysfs. I use these commands : [root@at91]:gpio109 > echo 109 > export [root@at91]:gpio109 > cd gpio109/ [root@at91]:gpio109 > ...
0
votes
1answer
67 views

work with BIOS interrupts that execute by bootloader

I want to work with directory and subfolder and I want to do it by bootloader but most of existing interrupts are available in dos mode How can I find BIOS interrupts?
0
votes
1answer
53 views

How can I clear the screen without having to fill it

Does an interrupt service routine exist to help me clear the screen of the terminal? Will it work on windows?
0
votes
0answers
35 views

Linux unmask a single interrupt

I'm running a NODELAY interrupt in Linux with the PREEMPT_RT patches. The nodelay interrupts are quite polite, they can't block and can only access a subset of resources. However, the kernel still ...
0
votes
1answer
61 views

iOS Notifications by the system for an audio application in background

I have an audio recording/playing application. It runs in the background. When it goes to the background, and if any other audio application is opened or starts using the audio resources, I want to ...
0
votes
1answer
103 views

Why Interrupt handler entry code check Carry flag?

I am trying to generate an interrupt in a VM and have written a simple interrupt handler but when I try to test this interrupt generation and handling, kernel crashes because of page fault. Now I ...
0
votes
1answer
96 views

Tool to check global variables thread-safe protection

I have large C code base for a micro-controller. I am working on a task to check if all global variables are thread-safe or not. We don't have threads, but we have interrupts (high priority ...
0
votes
2answers
77 views

Interrupt Controller's In-Service Register bits when a non-maskable interrupt occurs

I have the following question (regarding x86 architecture): What happens when a non-maskable interrupt (e.g. NMI) interrupts a maskable interrupt which is in progress? Does the corresponding ISR ...
0
votes
2answers
135 views

What happens when kernel code is interrupted?

I am reading Operating System Concepts (Silberschatz,Galvin,Gagne), 6th edition, chapter 20. I understand that Linux kernel code is non preemptible (before 2.6 version). But it can be interrupted by ...
0
votes
0answers
158 views

Linux spin locks and preemptions/interrupts

When a thread holding a spin lock, can it get preempted in Linux 2.6? Is there any consequence of this preemption? How can you prevent the preemption when holding a spinlock?
0
votes
1answer
74 views

To distinguish between a Task and an Interrupt

I have a point in my code where I need to check if program came here from an interrupt or a task. I am using SMX. Anyone used SMX can answer his question. I didn't get enough info from docs. So, ...
0
votes
0answers
36 views

Application to test the interrupts of graphics and USB

Is there any way to generate the interrupts of the USB port via application without inserting the device, i want to study the pattern on the motherboard when we hot plug-unplug the USB device 1000 ...
0
votes
1answer
216 views

Is it possible to set up interrupts on each pin of Arduino Mega?

We would like to monitor 35 inputs. 20 in the x direction and 15 in the y direction. We are thinking of having an interrupt for each input, so that every time there is a change we can take some ...
0
votes
0answers
143 views

Why it doesn't print correctly?

So I have this code using C and inline ASM, which is supposed to replace the original Timer Interrupt and use my own. After that it should manage 4 "proccess" which are just procedures that print ...

1 2