Searched refs:interrupt (Results 1 - 25 of 192) sorted by relevance

12345678

/freebsd-11-stable/sys/gnu/dts/include/dt-bindings/interrupt-controller/
H A Dmips-gic.h4 #include <dt-bindings/interrupt-controller/irq.h>
H A Darm-gic.h8 #include <dt-bindings/interrupt-controller/irq.h>
10 /* interrupt specifier cell 0 */
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dhardirq.h38 #include <sys/interrupt.h>
/freebsd-11-stable/sys/arm/broadcom/bcm2835/
H A Dbcm2835_common.c51 fdt_intc_decode_ic(phandle_t node, pcell_t *intr, int *interrupt, int *trig, argument
57 *interrupt = fdt32_to_cpu(intr[0]);
64 *interrupt = fdt32_to_cpu(intr[0]) + 72;
/freebsd-11-stable/sys/arm/rockchip/
H A Drk30xx_common.c43 fdt_aintc_decode_ic(phandle_t node, pcell_t *intr, int *interrupt, int *trig, argument
50 *interrupt = fdt32_to_cpu(intr[0]);
/freebsd-11-stable/sys/arm/annapurna/alpine/
H A Dcommon.c62 int *interrupt, int *trig, int *pol);
138 alpine_pic_decode_fdt(uint32_t iparent, uint32_t *intr, int *interrupt, argument
143 rv = gic_decode_fdt(iparent, intr, interrupt, trig, pol);
146 interrupt = FDT_MAP_IRQ(iparent, interrupt);
148 /* Configure the interrupt if callback provided */
150 (*arm_config_irq)(*interrupt, *trig, *pol);
/freebsd-11-stable/sys/conf/
H A DMakefile.sparc6433 MDOBJS= exception.o interrupt.o
/freebsd-11-stable/sys/arm/arm/
H A Dintr.c36 * Soft interrupt and other generic interrupt functions.
52 #include <sys/interrupt.h>
112 int i, rv, interrupt, trig, pol; local
120 rv = intr_decode(intr_parent, intr, &interrupt, &trig, &pol);
124 interrupt = FDT_MAP_IRQ(intr_parent, interrupt);
125 return (interrupt);
130 interrupt = FDT_MAP_IRQ(intr_parent, fdt32_to_cpu(intr[0]));
132 return (interrupt);
[all...]
/freebsd-11-stable/sys/arm/freescale/vybrid/
H A Dvf_common.c65 fdt_pic_decode_ic(phandle_t node, pcell_t *intr, int *interrupt, int *trig, argument
72 *interrupt = fdt32_to_cpu(intr[0]);
/freebsd-11-stable/sys/arm/versatile/
H A Dversatile_common.c53 fdt_intc_decode_ic(phandle_t node, pcell_t *intr, int *interrupt, int *trig, argument
60 *interrupt = fdt32_to_cpu(intr[0]);
/freebsd-11-stable/sys/arm/allwinner/
H A Da10_common.c44 fdt_aintc_decode_ic(phandle_t node, pcell_t *intr, int *interrupt, int *trig, argument
56 *interrupt = fdt32_to_cpu(intr[0]) + offset;
/freebsd-11-stable/sys/arm/ti/
H A Dti_common.c55 fdt_aintc_decode_ic(phandle_t node, pcell_t *intr, int *interrupt, int *trig, argument
63 *interrupt = fdt32_to_cpu(intr[0]);
/freebsd-11-stable/sys/arm/freescale/imx/
H A Dimx_common.c55 fdt_intc_decode_ic(phandle_t node, pcell_t *intr, int *interrupt, int *trig, argument
59 *interrupt = fdt32_to_cpu(intr[0]);
/freebsd-11-stable/sys/arm/samsung/exynos/
H A Dexynos5_common.c54 fdt_pic_decode_ic(phandle_t node, pcell_t *intr, int *interrupt, int *trig, argument
61 *interrupt = fdt32_to_cpu(intr[0]);
/freebsd-11-stable/sys/arm/xilinx/
H A Dzy7_machdep.c98 fdt_gic_decode_ic(phandle_t node, pcell_t *intr, int *interrupt, int *trig, argument
105 *interrupt = fdt32_to_cpu(intr[0]);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/io/
H A Dtst.fds.c42 interrupt(int sig) function
59 act.sa_handler = interrupt;
/freebsd-11-stable/sys/dev/acpica/
H A Dacpi_pcib.c137 * Get the PCI interrupt routing table for this bus. If we can't
146 "could not get PCI interrupt routing table for %s - %s\n",
178 * Route an interrupt for a child of the bridge.
187 int interrupt; local
191 interrupt = PCI_INVALID_IRQ;
230 interrupt = prt->SourceIndex;
231 BUS_CONFIG_INTR(dev, interrupt, INTR_TRIGGER_LEVEL,
239 * We have to find the source device (PCI interrupt link device).
242 device_printf(pcib, "couldn't find PCI interrupt link device %s\n",
246 interrupt
[all...]
/freebsd-11-stable/sys/arm/altera/socfpga/
H A Dsocfpga_common.c73 fdt_pic_decode_ic(phandle_t node, pcell_t *intr, int *interrupt, int *trig, argument
80 *interrupt = fdt32_to_cpu(intr[0]);
/freebsd-11-stable/sys/arm/at91/
H A Dat91_common.c54 fdt_aic_decode_ic(phandle_t node, pcell_t *intr, int *interrupt, int *trig, argument
64 *interrupt = fdt32_to_cpu(intr[0]) + offset;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServer.h33 Status &error, bool &interrupt, bool &quit)>;
45 Status &error, bool &interrupt,
H A DGDBRemoteCommunicationReplayServer.h44 Status &error, bool &interrupt,
H A DGDBRemoteClientBase.h58 Lock(GDBRemoteClientBase &comm, bool interrupt);
63 // Whether we had to interrupt the continue thread to acquire the
73 void SyncWithContinueThread(bool interrupt);
97 /// continue thread has control, async threads should interrupt it and wait
106 /// Packet with which to resume after an async interrupt. Can be changed by
110 /// When was the interrupt packet sent. Used to make sure we time out if the
111 /// stub does not respond to interrupt requests.
H A DGDBRemoteCommunicationServer.cpp30 [this](StringExtractorGDBRemote packet, Status &error, bool &interrupt,
44 Timeout<std::micro> timeout, Status &error, bool &interrupt, bool &quit) {
70 packet_result = handler_it->second(packet, error, interrupt, quit);
43 GetPacketAndSendResponse( Timeout<std::micro> timeout, Status &error, bool &interrupt, bool &quit) argument
/freebsd-11-stable/sys/arm/amlogic/aml8726/
H A Daml8726_machdep.c170 fdt_pic_decode_ic(phandle_t node, pcell_t *intr, int *interrupt, int *trig, argument
180 *interrupt = fdt32_to_cpu(intr[1]);
/freebsd-11-stable/contrib/apr/misc/unix/
H A Drandbyte_os2.inc59 * idle / busy / interrupt cycle counts which should provide very good
77 ULONG ulIntrLow; /* Low 32 bits of interrupt time */
78 ULONG ulIntrHigh; /* High 32 bits of interrupt time */

Completed in 115 milliseconds

12345678