This website requires JavaScript.
Explore
Help
Sign In
OrgZephyr
/
zephyr
mirror of
https://github.com/zephyrproject-rtos/zephyr.git
Watch
1
Star
0
Fork
You've already forked zephyr
0
Code
Issues
Releases
Wiki
Activity
430e8e9730
zephyr
/
drivers
/
shared_irq
/
Makefile
4 lines
75 B
Makefile
Raw
Normal View
History
Unescape
Escape
drivers: add shared interrupt driver This driver allows multiple drivers to share a common interrupt line. This functionality is required on system that conform to the PC interrupt structure. In the context of Zephyr this is needed for SOC's that have their I/O IP blocks behind a PCI interface. Due to the limited number of interrupt lines provided by the PCI interface multiple IP blocks may be configured to share an interrupt line. Drivers that share interrupts must be modified to *not* register their own interrupt service routine as part of their configuration/initialization but instead bind to the correct instance of this driver by name, then register their interrupt service routine with this driver. Change-Id: I57b517b97ebeabce484ba53c8f940da993cb391d Signed-off-by: Dirk Brandewie <dirk.j.brandewie@intel.com>
2015-09-29 23:42:22 +08:00
ccflags-y
+=
-I
$(
srctree
)
/drivers
shared_irq: move static stubs to driver directory Change-Id: I55808e5e460486c7f61919eca0aba9e2f4b434e1 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2015-10-17 00:41:34 +08:00
obj-$(CONFIG_SHARED_IRQ)
+=
shared_irq.o