Searched refs:wait (Results 1 - 25 of 2174) sorted by path

1234567891011>>

/linux-master/arch/alpha/include/asm/
H A Dsmp.h54 #define smp_call_function_on_cpu(func,info,wait,cpu) ({ 0; })
/linux-master/arch/arm/mach-omap2/
H A Domap-headsmp.S43 wait: ldr r2, =AUX_CORE_BOOT0_PA @ read from AuxCoreBoot0 label
49 bne wait
92 * we've been released from the wait loop,secondary_stack
129 * we've been released from the wait loop,secondary_stack
H A Dsleep24xx.S36 * when we get called, but the DLL probably isn't. We will wait a bit more in
37 * case the DPLL isn't quite there yet. The code will wait on DLL for DDR even
45 * CM_IDLEST_CLKGEN does not reflect the full clock change so you need to wait
63 mcr p15, 0, r3, c7, c0, 4 @ wait for interrupt
66 subs r5, r5, #0x1 @ awake, wait just a bit
H A Dsram242x.S55 bl i_dll_wait @ wait for dll to lock
78 bl i_dll_wait @ wait for possible lock
94 * wait for it to finish, use 32k sync counter, 1tick=31uS.
180 mov r1, #0x2000 @ wait DLL relock, min 0x400 L3 clocks
189 * wait for it to finish, use 32k sync counter, 1tick=31uS.
246 /* wait for bypass */
282 bne wait_lock @ wait if not
H A Dsram243x.S55 bl i_dll_wait @ wait for dll to lock
78 bl i_dll_wait @ wait for possible lock
94 * wait for it to finish, use 32k sync counter, 1tick=31uS.
180 mov r1, #0x2000 @ wait DLL relock, min 0x400 L3 clocks
189 * wait for it to finish, use 32k sync counter, 1tick=31uS.
246 /* wait for bypass */
282 bne wait_lock @ wait if not
/linux-master/arch/arm/probes/uprobes/
H A Dactions-arm.c9 #include <linux/wait.h>
/linux-master/arch/m68k/include/asm/
H A Datari_joystick.h20 wait_queue_head_t wait; member in struct:joystick_status
/linux-master/arch/mips/bcm63xx/
H A Dcs.c66 int bcm63xx_set_cs_timing(unsigned int cs, unsigned int wait, argument
80 val |= wait << MPI_CSCTL_WAIT_SHIFT;
/linux-master/arch/mips/include/asm/mach-bcm63xx/
H A Dbcm63xx_cs.h6 int bcm63xx_set_cs_timing(unsigned int cs, unsigned int wait,
/linux-master/arch/mips/include/asm/
H A Dmmu.h7 #include <linux/wait.h>
21 /* wait queue for threads requiring an emuframe */
/linux-master/arch/mips/include/asm/octeon/
H A Dcvmx-mio-defs.h703 uint64_t wait:6; member in struct:cvmx_mio_boot_reg_timx::cvmx_mio_boot_reg_timx_s
719 uint64_t wait:6;
734 uint64_t wait:6; member in struct:cvmx_mio_boot_reg_timx::cvmx_mio_boot_reg_timx_cn38xx
750 uint64_t wait:6;
H A Dcvmx-pko-defs.h439 uint64_t wait:1; member in struct:cvmx_pko_mem_debug4::cvmx_pko_mem_debug4_cn50xx
445 uint64_t wait:1;
475 uint64_t wait:1; member in struct:cvmx_pko_mem_debug4::cvmx_pko_mem_debug4_cn52xx
481 uint64_t wait:1;
523 uint64_t wait:1; member in struct:cvmx_pko_mem_debug5::cvmx_pko_mem_debug5_cn30xx
529 uint64_t wait:1;
/linux-master/arch/mips/kernel/
H A Dbmips_vec.S50 /* re-enable IRQs to wait for SW1 */
66 /* wait here for SW1 interrupt from bmips_boot_secondary() */
67 wait
H A Drtlx.c128 DEFINE_WAIT(wait);
133 &wait, TASK_INTERRUPTIBLE);
145 &wait);
339 static __poll_t file_poll(struct file *file, poll_table *wait) argument
344 poll_wait(file, &channel_wqs[minor].rt_queue, wait);
345 poll_wait(file, &channel_wqs[minor].lx_queue, wait);
/linux-master/drivers/char/
H A Ddtlk.c64 #include <linux/wait.h> /* for wait_queue */
200 180-190 usec later. Here, we wait
219 if (++retries > 10 * HZ) { /* wait no more than 10 sec
232 static __poll_t dtlk_poll(struct file *file, poll_table * wait) argument
244 poll_wait(file, &dtlk_process_list, wait);
427 wait up to 100 msec to see whether it
572 /* verify DT is ready, read char, wait for ACK */
609 usec. Here, we wait up to 20 usec
651 1 again 180-190 usec later. Here, we wait up to 10
H A Dnwbutton.c160 * /dev/nwbutton. It puts the device to sleep on the wait queue until
171 DEFINE_WAIT(wait);
172 prepare_to_wait(&button_wait_queue, &wait, TASK_INTERRUPTIBLE);
174 finish_wait(&button_wait_queue, &wait);
/linux-master/drivers/char/mwave/
H A Dmwavedd.h57 #include <linux/wait.h>
/linux-master/drivers/char/tpm/
H A Dtpm_infineon.c181 static int wait(struct tpm_chip *chip, int wait_for_bit) function
194 dev_err(&chip->dev, "Timeout in wait(STAT_XFE)\n");
196 dev_err(&chip->dev, "Timeout in wait(STAT_RDA)\n");
204 wait(chip, STAT_XFE);
249 ret = wait(chip, STAT_RDA);
266 wait(chip, STAT_RDA);
324 ret = wait(chip, STAT_XFE);
/linux-master/drivers/crypto/amcc/
H A Dcrypto4xx_trng.c28 static int ppc4xx_trng_data_present(struct hwrng *rng, int wait) argument
36 if (!busy || !wait) {
/linux-master/drivers/gpu/drm/msm/disp/
H A Dmdp_kms.c81 struct mdp_irq_wait *wait = local
83 wait->count--;
89 struct mdp_irq_wait wait = { local
96 mdp_irq_register(mdp_kms, &wait.irq);
97 wait_event_timeout(wait_event, (wait.count <= 0),
99 mdp_irq_unregister(mdp_kms, &wait.irq);
/linux-master/drivers/gpu/drm/omapdrm/
H A Domap_irq.h26 int omap_irq_wait(struct drm_device *dev, struct omap_irq_wait *wait,
/linux-master/drivers/hsi/clients/
H A Dhsi_char.c22 #include <linux/wait.h>
75 * @rx_wait: RX requests wait queue
76 * @tx_wait: TX requests wait queue
/linux-master/drivers/infiniband/hw/hfi1/
H A Dtrace_iowait.h17 TP_PROTO(struct iowait *wait, u32 flag),
18 TP_ARGS(wait, flag),
26 __entry->addr = (unsigned long)wait;
27 __entry->flags = wait->flags;
29 __entry->qpn = iowait_to_qp(wait)->ibqp.qp_num;
41 TP_PROTO(struct iowait *wait, u32 flag),
42 TP_ARGS(wait, flag));
45 TP_PROTO(struct iowait *wait, u32 flag),
46 TP_ARGS(wait, flag));
/linux-master/drivers/infiniband/hw/mthca/
H A Dmthca_srq.c268 init_waitqueue_head(&srq->wait);
359 wait_event(srq->wait, !get_srq_refcount(dev, srq));
458 wake_up(&srq->wait);
/linux-master/drivers/input/
H A Dmousedev.c61 wait_queue_head_t wait; member in struct:mousedev
316 wake_up_interruptible(&mousedev->wait);
711 wake_up_interruptible(&client->mousedev->wait);
728 retval = wait_event_interruptible(mousedev->wait,
758 static __poll_t mousedev_poll(struct file *file, poll_table *wait) argument
764 poll_wait(file, &mousedev->wait, wait);
809 wake_up_interruptible(&mousedev->wait);
868 init_waitqueue_head(&mousedev->wait);

Completed in 343 milliseconds

1234567891011>>