I want to know how one single irq line is shared among multiple devices, i mean how they are physically connected at hardware level, do they use multiple APIC controllers for this, or what other methods are used.
how single irq line is shared at physical hardware among multiple devices
1.3k Views Asked by valmiki At
1
There are 1 best solutions below
Related Questions in HARDWARE
- How to get temperature value from DS18B20 voltage
- Swich table in case of CRC error
- How verify server's hardware before install it into data center?
- What strategies and practices are used, when running very intense and long calculations, to ensure that hardware isn't damaged?
- Hardware upgrade for developing android App on Android studio
- XMega: CDC on USB composite controller does not function properly
- How do user-space applications control hardware (Location/Network/Wifi) in Android?
- How to get parameter name of "Target hardware"-Field in "Run on target hardware" in Matlab Simulink?
- lshw return network device is unclaimed, I need more diagnostic
- How to get started on creating a safe that will open and close upon entering a passcode into it?
- Generating fingerprint of virtual machines
- Can Java control hardware devices on PC?
- Using Dependency Injection for hardware abstraction
- Get Ram Information OSX
- Benefit of hardware with mobile access instead of wifi
Related Questions in INTERRUPT
- Arduino RPM Detection
- Interrupting long working thread
- How to set privilaged mode in ARM Cortex-A8?
- TechWell TW6869 driver does not generate interrupts on embedded device
- Using class member function pointers in C++ for Arduino
- What's the shortcut to interrupt the kernel in Canopy?
- How to interrupt a thread with infinite loop and sleep in Java
- Why page fault is considered as trap
- externally ending infinite loop java
- DB2 SQLSTATE = 57014 error
- Using Thread.currentThread().isInterrupted() with Thread.sleep()
- Canceling a long-running function using an ISR
- TelosB GPIO interrupts in Contiki
- Interrupts for Data Ready pin
- How exactly do I interrupt a thread?
Related Questions in PCI
- Are devices on pci bus always probed in the same order?
- non deterministic behaviour when using jungo driver to communicate with a PCI device
- How do you find the PCI memory hole on x86?
- Multi GPU passthrough failed
- how single irq line is shared at physical hardware among multiple devices
- How IRQS get assigned
- How to disable a specific usb port permanently in linux?
- Decoding pcie config space capabilites manually - looking for example
- Cause PCIe error callbacks using AER injection
- Adlink PCI-7250 eventcallback
- Write to port 0cf8h fails with segfault
- Windows KMDF driver, Informing application of a change via a notification, is it possible
- Is PCI 3.0 compatible with PCI 2.1?
- Implementing PCIe Linux device driver (want to access my card registers from kernel driver)
- PCI expansion ROM header Entry point for INIT function
Related Questions in IRQ
- How to make a scanf() type function in a 32bit os in c?
- how single irq line is shared at physical hardware among multiple devices
- How IRQS get assigned
- IRQ 8 isn't working... HW or SW?
- What is a safe and easy way to exchange data from a threaded ISR? (Raspberry Pi)
- how to set state_use_accessors of Linux irq?
- request_threaded_irq with IRQF_ONESHOT from Raspberry PI GPIO PIN doesn't block new IRQ while in
- aarch64 execute IRQ from EL1 in EL3
- Initialize the AD controller in IRQ mode
- how does the linux shell in a multi-processor computer read the keyboard inputs?
- Compiling c program with disable_irq and enable_irq error can't find lib linux/irq.h
- Is it safe to call printk inside spin_lock_irqsave?
- Why does the Linux kernel not stop at the first handler for a shared IRQ that returns IRQ_HANDLED?
- Handling x86 IRQs from secondary PIC: EOI order important?
- Is it possible to achieve that the interruption from network adapter arose on different CPU-cores x86_64?
Related Questions in APIC
- how to generate the Performance monitoring interrupt after every overflow
- how single irq line is shared at physical hardware among multiple devices
- URL inaccessible in local machine but accessible in deployed machine
- Cannot use call instruction with a name of a function when running on a different core
- How can a 32-bit APIC ID fit inside 4 bits out of an 8-bit IOAPIC destination field?
- Documentation on MSI Address/Data register content expectations for AMD cpus?
- I/O APIC external IRQ static distribution
- Implement Message Signaled Interrupt in DOS mode
- How to handle external API tokens after logout
- How can I resolve "CALL rule is not operational" error when running custom policy on APIC?
- Adding Two Versions of Same API to Product in APIC
- QEMU how-to allocate specific IRQ number for PCI device?
- streaming pdf files in datapower gateway
- Removing hyphens in form data in DataPower gateway
- SSL issue while opening app on Bluemix
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The most basic way to connect multiple devices to a single interrupt request line, so that every device can activate a request, is to use open collector.
When the request is granted, the acknowledge signal may be forwarded from device to device using a daisy chain.