Home
last modified time | relevance | path

Searched full:ready (Results 1 – 25 of 2825) sorted by relevance

12345678910>>...113

/Linux-v5.4/drivers/cpuidle/
Dcoupled.c36 * WFI state until all cpus are ready to enter a coupled state, at
40 * Once all cpus are ready to enter idle, they are woken by an smp
45 * each cpu will increment the ready counter, and continue once the
46 * ready counter matches the number of online coupled cpus. If any
51 * is ready for. It is assumed that the states are indexed from
56 * and only read after all the cpus are ready for the coupled idle
62 * the waiting loop, in the ready loop, or in the coupled idle state.
63 * ready_count tracks the number of cpus that are in the ready loop
91 * @ready_waiting_counts: combined count of cpus in ready or waiting loops
125 * once to minimize entering the ready loop with a poke pending, which would
[all …]
/Linux-v5.4/include/media/
Dv4l2-mem2mem.h50 * struct v4l2_m2m_queue_ctx - represents a queue for buffers ready to be
56 * @num_rdy: number of buffers ready to be processed
59 * Queue for buffers ready to be processed as soon as this
136 * v4l2_m2m_try_schedule() - check whether an instance is ready to be added to
152 * return 1 if the instance is ready.
385 * v4l2_m2m_buf_queue() - add a buffer to the proper ready buffers list.
396 * v4l2_m2m_num_src_bufs_ready() - return the number of source buffers ready for
409 * ready for use
420 * v4l2_m2m_next_buf() - return next buffer from the list of ready buffers
427 * v4l2_m2m_next_src_buf() - return next source buffer from the list of ready
[all …]
/Linux-v5.4/drivers/media/usb/pvrusb2/
Dpvrusb2-io.h16 pvr2_buffer_state_idle = 1, // Buffer is ready to be used again
50 /* Get a pointer to a buffer that is either idle, ready, or is specified
56 /* Find out how many buffers are idle or ready */
60 /* Kill all pending buffers and throw away any ready buffers as well */
66 /* Find out size of data in the given ready buffer */
69 /* Retrieve completion code for given ready buffer */
/Linux-v5.4/drivers/ide/
Dide-cd_verbose.c21 /* Suppress printing unit attention and `in progress of becoming ready' in ide_cd_log_error()
40 { GPCMD_TEST_UNIT_READY, "Test Unit Ready" },
96 "Not ready",
141 { 0x020400, "Logical unit not ready - cause not reportable" },
143 { 0x020401, "Logical unit not ready"
144 " - in progress [sic] of becoming ready" },
145 { 0x020402, "Logical unit not ready - initializing command required" },
146 { 0x020403, "Logical unit not ready - manual intervention required" },
147 { 0x020404, "Logical unit not ready - format in progress" },
148 { 0x020407, "Logical unit not ready - operation in progress" },
[all …]
/Linux-v5.4/drivers/pcmcia/
Dpxa2xx_colibri.c35 READY = 1, enumerator
45 { 0, GPIOF_IN, "PCMCIA Ready" },
61 skt->socket.pci_irq = gpio_to_irq(colibri_pcmcia_gpios[READY].gpio); in colibri_pcmcia_hw_init()
80 state->ready = !!gpio_get_value(colibri_pcmcia_gpios[READY].gpio); in colibri_pcmcia_socket_state()
131 colibri_pcmcia_gpios[READY].gpio = COLIBRI270_READY_GPIO; in colibri_pcmcia_init()
139 colibri_pcmcia_gpios[READY].gpio = COLIBRI320_READY_GPIO; in colibri_pcmcia_init()
/Linux-v5.4/drivers/scsi/
Dsense_codes.h41 SENSE_CODE(0x0400, "Logical unit not ready, cause not reportable")
42 SENSE_CODE(0x0401, "Logical unit is in process of becoming ready")
43 SENSE_CODE(0x0402, "Logical unit not ready, initializing command required")
44 SENSE_CODE(0x0403, "Logical unit not ready, manual intervention required")
45 SENSE_CODE(0x0404, "Logical unit not ready, format in progress")
46 SENSE_CODE(0x0405, "Logical unit not ready, rebuild in progress")
47 SENSE_CODE(0x0406, "Logical unit not ready, recalculation in progress")
48 SENSE_CODE(0x0407, "Logical unit not ready, operation in progress")
49 SENSE_CODE(0x0408, "Logical unit not ready, long write in progress")
50 SENSE_CODE(0x0409, "Logical unit not ready, self-test in progress")
[all …]
/Linux-v5.4/arch/sparc/boot/
DMakefile27 @echo ' kernel: $@ is ready'
31 @echo ' kernel: $@ is ready'
36 @echo ' kernel: $@ is ready'
62 @echo ' Image $@ is ready'
68 @echo ' kernel: $@ is ready'
/Linux-v5.4/drivers/xen/events/
Devents_fifo.c284 unsigned priority, unsigned long *ready, in consume_one_event() argument
312 * copy of the ready word. in consume_one_event()
315 clear_bit(priority, ready); in consume_one_event()
330 unsigned long ready; in __evtchn_fifo_handle_events() local
335 ready = xchg(&control_block->ready, 0); in __evtchn_fifo_handle_events()
337 while (ready) { in __evtchn_fifo_handle_events()
338 q = find_first_bit(&ready, EVTCHN_FIFO_MAX_QUEUES); in __evtchn_fifo_handle_events()
339 consume_one_event(cpu, control_block, q, &ready, drop); in __evtchn_fifo_handle_events()
340 ready |= xchg(&control_block->ready, 0); in __evtchn_fifo_handle_events()
/Linux-v5.4/drivers/scsi/isci/
Dport.h83 * @ready_exit: several states constitute 'ready'. When exiting ready we
85 * skipped when exiting to another 'ready' state.
154 * This state is entered from the READY state.
155 * @SCI_PORT_READY: port is now ready. Thus, the user is able to
158 * @SCI_PORT_SUB_WAITING: port is started and ready but has no active
160 * @SCI_PORT_SUB_OPERATIONAL: port is started and ready and there is at
169 * from the READY state.
/Linux-v5.4/drivers/char/hw_random/
Dks-sa-rng.c33 /* Data ready indicator in STATUS register */
36 /* Data ready clear control in INTACK register */
156 u32 ready; in ks_sa_rng_data_present() local
160 ready = readl(&ks_sa_rng->reg_rng->status); in ks_sa_rng_data_present()
161 ready &= TRNG_STATUS_REG_READY; in ks_sa_rng_data_present()
163 if (ready || !wait) in ks_sa_rng_data_present()
169 return ready; in ks_sa_rng_data_present()
Dmtk-rng.c73 int ready; in mtk_rng_wait_ready() local
75 ready = readl(priv->base + RNG_CTRL) & RNG_READY; in mtk_rng_wait_ready()
76 if (!ready && wait) in mtk_rng_wait_ready()
77 readl_poll_timeout_atomic(priv->base + RNG_CTRL, ready, in mtk_rng_wait_ready()
78 ready & RNG_READY, USEC_POLL, in mtk_rng_wait_ready()
80 return !!ready; in mtk_rng_wait_ready()
/Linux-v5.4/sound/soc/txx9/
Dtxx9aclc-ac97.c99 u32 ready = ACINT_CODECRDY(ac97->num) | ACINT_REGACCRDY; in txx9aclc_ac97_cold_reset() local
104 /* wait for primary codec ready status */ in txx9aclc_ac97_cold_reset()
105 __raw_writel(ready, base + ACINTEN); in txx9aclc_ac97_cold_reset()
107 (__raw_readl(base + ACINTSTS) & ready) == ready, in txx9aclc_ac97_cold_reset()
109 dev_err(&ac97->dev, "primary codec is not ready " in txx9aclc_ac97_cold_reset()
114 __raw_writel(ready, base + ACINTDIS); in txx9aclc_ac97_cold_reset()
/Linux-v5.4/drivers/net/wireless/marvell/libertas/
Dif_spi.h87 /* Host Interrupt Control bit : WLAN ready */
137 /* Host Interrupt Status bit : Tx download ready */
139 /* Host Interrupt Status bit : Rx upload ready */
141 /* Host Interrupt Status bit : Command download ready */
145 /* Host Interrupt Status bit : Command upload ready */
161 /* Host Interrupt Status Mask bit : Tx download ready */
163 /* Host Interrupt Status Mask bit : Rx upload ready */
165 /* Host Interrupt Status Mask bit : Command download ready */
169 /* Host Interrupt Status Mask bit : Command upload ready */
/Linux-v5.4/arch/um/drivers/
Dxterm_kern.c14 struct completion ready; member
30 complete(&xterm->ready); in xterm_interrupt()
50 init_completion(&data->ready); in xterm_fd()
65 wait_for_completion(&data->ready); in xterm_fd()
/Linux-v5.4/kernel/power/
Duser.c37 bool ready; member
100 data->ready = false; in snapshot_open()
144 if (!data->ready) { in snapshot_read()
243 if (!data->frozen || data->ready) in snapshot_ioctl()
253 if (data->mode != O_RDONLY || !data->frozen || data->ready) { in snapshot_ioctl()
261 data->ready = !freezer_test_done && !error; in snapshot_ioctl()
279 data->ready = false; in snapshot_ioctl()
296 if (!data->ready) { in snapshot_ioctl()
343 data->ready = false; in snapshot_ioctl()
/Linux-v5.4/Documentation/hwmon/
Dabituguru-datasheet.rst81 uGuru ready
85 in "ready" mode.
87 To put the uGuru in ready mode first write 0x00 to DATA and then wait for DATA
94 After reading CMD, DATA should hold 0x08 which means that the uGuru is ready
103 First the uGuru must be in "ready" mode as described above, DATA should hold
107 wait for to DATA to hold 0x08 again indicating that it wants / is ready for
118 which indicates that the uGuru is ready to be read (max 250 reads) and once
126 ready mode, so that it is ready for the next read / write cycle. This way
137 which indicates that the uGuru is ready to be written (max 250 reads) and
146 ready mode, so that it is ready for the next read / write cycle. This way
/Linux-v5.4/drivers/video/fbdev/
Dpxa3xx-gcu.c99 struct pxa3xx_gcu_batch *ready; member
209 struct pxa3xx_gcu_batch *ready = priv->ready; in run_ready() local
213 BUG_ON(!ready); in run_ready()
217 while (ready) { in run_ready()
219 shared->buffer[num++] = ready->phys; in run_ready()
220 ready = ready->next; in run_ready()
224 priv->running = priv->ready; in run_ready()
225 priv->ready = priv->ready_last = NULL; in run_ready()
260 if (priv->ready) { in pxa3xx_gcu_handle_irq()
428 * Add buffer to ready list in pxa3xx_gcu_write()
[all …]
/Linux-v5.4/Documentation/devicetree/bindings/misc/
Dolpc,xo1.75-ec.txt9 strobing the ACK pin with the ready signal. See the "ready-gpios" property of the
16 ready-gpios = <&gpio 125 GPIO_ACTIVE_HIGH>;
/Linux-v5.4/tools/perf/tests/
Dmmap-thread-lookup.c29 int ready[2]; member
64 ret = write(td->ready[1], &go, sizeof(int)); in thread_fn()
84 if (pipe(td->ready)) in thread_create()
90 ssize_t ret = read(td->ready[0], &go, sizeof(int)); in thread_create()
94 close(td->ready[0]); in thread_create()
95 close(td->ready[1]); in thread_create()
/Linux-v5.4/drivers/block/paride/
Dpseudo.h11 int (*ready)(void),
15 Which will arrange for ready() to be evaluated frequently and
51 int (*ready)(void), in ps_set_intr()
59 ps_ready = ready; in ps_set_intr()
/Linux-v5.4/arch/csky/boot/
DMakefile7 @echo ' Kernel: $@ is ready'
17 @echo ' Kernel: $@ is ready'
25 @echo 'Image: $@ is ready'
/Linux-v5.4/net/rds/
Dtcp_listen.c257 void (*ready)(struct sock *sk); in rds_tcp_listen_data_ready() local
259 rdsdebug("listen data ready sk %p\n", sk); in rds_tcp_listen_data_ready()
262 ready = sk->sk_user_data; in rds_tcp_listen_data_ready()
263 if (!ready) { /* check for teardown race */ in rds_tcp_listen_data_ready()
264 ready = sk->sk_data_ready; in rds_tcp_listen_data_ready()
274 * (*ready)() may be null if we are racing with netns delete, and in rds_tcp_listen_data_ready()
280 ready = rds_tcp_listen_sock_def_readable(sock_net(sk)); in rds_tcp_listen_data_ready()
284 if (ready) in rds_tcp_listen_data_ready()
285 ready(sk); in rds_tcp_listen_data_ready()
/Linux-v5.4/drivers/scsi/device_handler/
Dscsi_dh_hp_sw.c37 * tur_done - Handle TEST UNIT READY return status
55 * LUN not ready - Initialization command required in tur_done()
75 * hp_sw_tur - Send TEST UNIT READY
78 * Use the TEST UNIT READY command to determine
141 * LUN not ready - manual intervention required in hp_sw_start_stop()
179 * the passive path reports NOT READY with sense codes
/Linux-v5.4/drivers/hid/intel-ish-hid/ipc/
Dipc.c96 * ish_is_input_ready() - Check if FW ready for RX
99 * Check if ISH FW is ready for receiving data
112 * set_host_ready() - Indicate host ready
115 * Set host ready indication to FW
153 * ishtp_fw_is_ready() - Check if FW ready
156 * Check if ISH FW is ready
169 * ish_set_host_rdy() - Indicate host ready
172 * Set host ready indication to FW
183 * ish_clr_host_rdy() - Indicate host not ready
186 * Send host not ready indication to FW
[all …]
/Linux-v5.4/drivers/misc/mic/cosm/
Dcosm_main.c41 if (cdev->hw_ops->ready(cdev)) { in cosm_hw_reset()
48 * firmware is ready or not, a 1 second delay works nicely. in cosm_hw_reset()
77 dev_err(&cdev->dev, "%s %d MIC state not READY\n", in cosm_start()
82 if (!cdev->hw_ops->ready(cdev)) { in cosm_start()
131 * @force: force a MIC to reset even if it is already reset and ready.
180 * RETURNS: An -EINVAL if the card is already READY or 0 for success.
194 dev_err(&cdev->dev, "%s %d MIC is READY\n", __func__, __LINE__); in cosm_reset()
308 * Card should be 'ready' in most cases. It is however possible that in cosm_suspend()

12345678910>>...113