HomeSort by: relevance | last modified time | path
    Searched defs:pending (Results 1 - 25 of 70) sorted by relevancy

1 2 3

  /src/sys/external/bsd/drm2/dist/drm/qxl/
qxl_irq.c 41 uint32_t pending; local in function:qxl_irq_handler
43 pending = xchg(&qdev->ram_header->int_pending, 0);
45 if (!pending)
50 if (pending & QXL_INTERRUPT_DISPLAY) {
55 if (pending & QXL_INTERRUPT_CURSOR) {
59 if (pending & QXL_INTERRUPT_IO_CMD) {
63 if (pending & QXL_INTERRUPT_ERROR) {
71 if (pending & QXL_INTERRUPT_CLIENT_MONITORS_CONFIG) {
  /src/sys/arch/pmax/pmax/
interrupt.c 90 uint32_t pending; local in function:cpu_intr
94 while (ppl < (ipl = splintr(&pending))) {
96 if (pending & (MIPS_INT_MASK_0|MIPS_INT_MASK_1|MIPS_INT_MASK_2|
98 (*platform.iointr)(status, pc, pending);
102 if (pending & MIPS_INT_MASK_5) {
  /src/sys/arch/evbmips/evbmips/
interrupt.c 54 uint32_t pending; local in function:cpu_intr
65 while (ppl < (ipl = splintr(&pending))) {
72 KASSERT(pending != 0);
81 if (pending & MIPS_INT_MASK_5) {
88 pending ^= MIPS_INT_MASK_5;
92 if (pending != 0) {
94 evbmips_iointr(ipl, pending, &cf);
  /src/sys/arch/algor/algor/
algor_intr.c 105 evbmips_iointr(int ipl, uint32_t pending, struct clockframe *cf)
107 (*algor_iointr)(ipl, cf->pc, pending);
125 uint32_t pending; local in function:cpu_intr
130 while (ppl < (ipl = splintr(&pending))) {
132 if (pending & MIPS_INT_MASK_5) {
141 if (pending & (MIPS_INT_MASK_0|MIPS_INT_MASK_1|MIPS_INT_MASK_2|
144 (*algor_iointr)(ipl, pc, pending);
  /src/sys/arch/sgimips/sgimips/
cpu.c 107 uint32_t pending; local in function:cpu_intr
119 while (ppl < (ipl = splintr(&pending))) {
122 if (pending & MIPS_INT_MASK_5) {
123 (void)(*platform.intr5)(pc, status, pending);
127 if (pending & MIPS_INT_MASK_4) {
128 (void)(*platform.intr4)(pc, status, pending);
132 if (pending & MIPS_INT_MASK_3) {
133 (void)(*platform.intr3)(pc, status, pending);
137 if (pending & MIPS_INT_MASK_2) {
138 (void)(*platform.intr2)(pc, status, pending);
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/uc/
intel_guc_ct.h 56 spinlock_t lock; /* protects pending requests list */
57 struct list_head pending; /* requests waiting for response */ member in struct:intel_guc_ct::__anona7001fdc0108
  /src/sys/external/bsd/drm2/include/linux/
timer.h 64 int pending; local in function:mod_timer
66 pending = callout_pending(&timer->tl_callout);
68 return pending;
88 * callout was EXPIRED.', meaning it is no longer pending.
103 * pending timer or not.'
106 * callout was EXPIRED.', meaning it is no longer pending.
  /src/sys/arch/riscv/riscv/
interrupt.c 150 csr_sip_clear(SIP_SSIP); /* clean pending interrupt status */
152 unsigned long pending; local in function:riscv_ipi_intr
153 while ((pending = atomic_swap_ulong(&ci->ci_request_ipis, 0)) != 0) {
155 atomic_or_ulong(&ci->ci_active_ipis, pending);
157 ipi_process(ci, pending);
159 atomic_and_ulong(&ci->ci_active_ipis, pending);
  /src/sys/arch/arm/marvell/
mvsoc_intr.c 133 uint32_t pending; local in function:mvsoc_bridge_pic_find_pending_irqs
135 pending =
138 if (pending == 0)
141 return pic_mark_pending_sources(pic, 0, pending);
mv78xx0.c 185 uint32_t pending; local in function:mv78xx0_find_pending_irqs
188 pending = read_mlmbreg(MV78XX0_ICI_MICR(0)) &
190 if (pending != 0)
191 ipl = pic_mark_pending_sources(&mv78xx0_pic, 0, pending);
193 pending = read_mlmbreg(MV78XX0_ICI_MICR(1)) &
195 if (pending != 0)
196 ipl |= pic_mark_pending_sources(&mv78xx0_pic, 32, pending);
orion.c 165 uint32_t pending; local in function:orion_find_pending_irqs
167 pending =
169 if (pending == 0)
172 return pic_mark_pending_sources(&orion_pic, 0, pending);
  /src/sys/arch/hpcarm/hpcarm/
softintr.c 104 register int pending, saved_cpsr; local in function:softintr_schedule
106 pending = 1;
107 __asm("swp %0, %0, [%1]" : "+r" (pending) : "r" (&sh->sh_pending));
109 if (pending)
  /src/sys/arch/mips/ralink/
ralink_intr.c 327 uint32_t pending = intctl_read(off); local in function:ra_pic_intr
329 while (pending != 0) {
330 const u_int bitno = 31 - __builtin_clz(pending);
331 pending ^= (1 << bitno);
  /src/sys/arch/playstation2/ee/
intc.c 88 u_int32_t r, dispatch, pending; local in function:intc_intr
92 pending = r & mask & __intc_enabled_channel;
97 r, mask, pending, dispatch, __intc_enabled_channel);
100 return (pending == 0 ? 1 : 0);
126 return (pending == 0 ? 1 : 0);
dmac.c 117 u_int32_t r, dispatch, pending; local in function:dmac_intr
122 pending = r & mask & __dmac_enabled_channel;
126 r, mask, pending, dispatch, __dmac_enabled_channel);
129 return (pending == 0 ? 1 : 0);
156 return (pending == 0 ? 1 : 0);
  /src/sys/arch/x86/x86/
ipi.c 117 /* If no IPI already pending, send one. */
156 uint32_t pending; local in function:x86_ipi_handler
159 pending = atomic_swap_32(&ci->ci_ipis, 0);
161 KDASSERT((pending >> X86_NIPI) == 0);
162 while ((bit = ffs(pending)) != 0) {
164 pending &= ~(1 << bit);
  /src/sys/arch/evbarm/lubbock/
obio.c 93 int irqno, pending, mask; local in function:obio_intr
100 pending = bus_space_read_2(sc->sc_iot, sc->sc_obioreg_ioh,
109 pending &= mask;
110 while (pending) {
113 for ( ;pending; ++irqno) {
114 if (0 == (pending & (1U<<irqno)))
116 pending &= ~(1U<<irqno);
142 pending = bus_space_read_2(sc->sc_iot, sc->sc_obioreg_ioh,
147 pending &= mask;
152 still pending */
    [all...]
  /src/sys/arch/xen/x86/
xen_ipi.c 95 uint32_t pending; local in function:xen_ipi_handler
102 pending = atomic_swap_32(&ci->ci_ipis, 0);
104 KDASSERT((pending >> XEN_NIPIS) == 0);
105 while ((bit = ffs(pending)) != 0) {
107 pending &= ~(1 << bit);
  /src/sys/arch/arm/clps711x/
clpssoc.c 193 uint16_t pending; local in function:clpssoc_find_pending_irqs
195 pending = INTSR;
196 pending &= INTMR;
197 if (pending == 0)
200 return pic_mark_pending_sources(&clpssoc_pic, 0, pending);
  /src/sys/arch/arm/gemini/
gemini_icu.c 159 uint32_t pending = INTC_READ(sc, GEMINI_ICU_IRQ_STATUS); local in function:find_pending_irqs
161 KASSERT((sc->sc_enabled_mask & pending) == pending);
163 if (pending == 0)
166 return pic_mark_pending_sources(&sc->sc_pic, 0, pending);
  /src/sys/arch/arm/imx/
imxgpio.c 115 uint32_t pending; local in function:imxgpio_pic_find_pending_irqs
118 pending = (v & gpio->gpio_enable_mask);
119 if (pending == 0)
123 * Disable the pending interrupts.
125 gpio->gpio_enable_mask &= ~pending;
136 * Now find all the pending bits and mark them as pending.
140 KASSERT(pending != 0);
141 irq = 31 - __builtin_clz(pending);
142 pending &= ~__BIT(irq)
    [all...]
  /src/sys/arch/epoc32/windermere/
windermere.c 197 uint16_t pending; local in function:windermere_find_pending_irqs
199 pending = *(intr + INTSR);
200 if (pending & ~pic_mask) {
201 *(intr + INTENC) = pending & ~pic_mask;
202 printf("stray interrupt pending: 0x%04x\n",
203 pending & ~pic_mask);
204 pending &= pic_mask;
206 if (pending == 0)
209 return pic_mark_pending_sources(&windermere_pic, 0, pending);
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_sw_fence.h 36 atomic_t pending; member in struct:i915_sw_fence
113 return atomic_read(&fence->pending) <= 0;
118 return atomic_read(&fence->pending) < 0;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_fence.h 35 struct list_head pending; member in struct:nouveau_fence_chan
  /src/sys/arch/arm/s3c2xx0/
s3c2410_extint.c 234 uint32_t pending_mask, pending; local in function:ssextio_cascaded_intr
257 pending = pending_mask & bus_space_read_4(iot, ioh, GPIO_EINTPEND);
258 pending &= ~ssextio_softc->sc_mask;
259 ssextio_softc->sc_pending |= pending;
264 for (i=int_min; pending; ++i) {
265 if (pending & (1<<i)) {
270 pending &= ~ (1<<i);
285 /* clear hardware pending bits */

Completed in 23 milliseconds

1 2 3