Home
last modified time | relevance | path

Searched refs:tmo (Results 1 – 25 of 81) sorted by relevance

1234

/Linux-v5.15/sound/soc/au1x/
Dac97c.c87 unsigned int tmo, retry; in au1xac97c_ac97_read() local
95 tmo = 6; in au1xac97c_ac97_read()
96 while ((RD(ctx, AC97_STATUS) & STAT_CP) && --tmo) in au1xac97c_ac97_read()
98 if (!tmo) { in au1xac97c_ac97_read()
108 tmo = 0x10000; in au1xac97c_ac97_read()
109 while ((RD(ctx, AC97_STATUS) & STAT_CP) && --tmo) in au1xac97c_ac97_read()
113 if (!tmo) in au1xac97c_ac97_read()
118 } while (--retry && !tmo); in au1xac97c_ac97_read()
129 unsigned int tmo, retry; in au1xac97c_ac97_write() local
135 for (tmo = 5; (RD(ctx, AC97_STATUS) & STAT_CP) && tmo; tmo--) in au1xac97c_ac97_write()
[all …]
Dpsc-i2s.c146 unsigned long tmo; in au1xpsc_i2s_configure() local
152 tmo = 1000000; in au1xpsc_i2s_configure()
153 while (!(__raw_readl(I2S_STAT(pscdata)) & PSC_I2SSTAT_SR) && tmo) in au1xpsc_i2s_configure()
154 tmo--; in au1xpsc_i2s_configure()
156 if (!tmo) in au1xpsc_i2s_configure()
165 tmo = 1000000; in au1xpsc_i2s_configure()
166 while (!(__raw_readl(I2S_STAT(pscdata)) & PSC_I2SSTAT_DR) && tmo) in au1xpsc_i2s_configure()
167 tmo--; in au1xpsc_i2s_configure()
169 if (tmo) in au1xpsc_i2s_configure()
181 unsigned long tmo, stat; in au1xpsc_i2s_start() local
[all …]
Dpsc-ac97.c75 unsigned short retry, tmo; in au1xpsc_ac97_read() local
89 tmo = 20; in au1xpsc_ac97_read()
94 } while (--tmo); in au1xpsc_ac97_read()
104 tmo = 1; /* wrong register, try again */ in au1xpsc_ac97_read()
106 } while (--retry && !tmo); in au1xpsc_ac97_read()
116 unsigned int tmo, retry; in au1xpsc_ac97_write() local
129 tmo = 20; in au1xpsc_ac97_write()
134 } while (--tmo); in au1xpsc_ac97_write()
140 } while (--retry && !tmo); in au1xpsc_ac97_write()
/Linux-v5.15/drivers/net/wireless/st/cw1200/
Dpm.c112 unsigned long tmo) in cw1200_pm_stay_awake() argument
117 if (!timer_pending(&pm->stay_awake) || cur_tmo < (long)tmo) in cw1200_pm_stay_awake()
118 mod_timer(&pm->stay_awake, jiffies + tmo); in cw1200_pm_stay_awake()
125 long tmo; in cw1200_suspend_work() local
128 tmo = work->timer.expires - jiffies; in cw1200_suspend_work()
129 if (tmo < 0) in cw1200_suspend_work()
130 tmo = 0; in cw1200_suspend_work()
132 tmo = -1; in cw1200_suspend_work()
134 return tmo; in cw1200_suspend_work()
139 unsigned long tmo) in cw1200_resume_work() argument
[all …]
Dpm.h34 unsigned long tmo);
37 unsigned long tmo) in cw1200_pm_stay_awake() argument
Dscan.c20 int tmo = 2000; in cw1200_scan_start() local
34 tmo += scan->ch[i].max_chan_time + 10; in cw1200_scan_start()
39 cw1200_pm_stay_awake(&priv->pm_state, msecs_to_jiffies(tmo)); in cw1200_scan_start()
41 msecs_to_jiffies(tmo)); in cw1200_scan_start()
/Linux-v5.15/drivers/scsi/
Dmyrs.h695 struct myrs_cmd_tmo tmo; /* Byte 19 */ member
708 struct myrs_cmd_tmo tmo; /* Byte 19 */ member
721 struct myrs_cmd_tmo tmo; /* Byte 19 */ member
737 struct myrs_cmd_tmo tmo; /* Byte 19 */ member
751 struct myrs_cmd_tmo tmo; /* Byte 19 */ member
765 struct myrs_cmd_tmo tmo; /* Byte 19 */ member
780 struct myrs_cmd_tmo tmo; /* Byte 19 */ member
798 struct myrs_cmd_tmo tmo; /* Byte 19 */ member
813 struct myrs_cmd_tmo tmo; /* Byte 19 */ member
832 struct myrs_cmd_tmo tmo; /* Byte 19 */ member
[all …]
Dscsi_transport_srp.c194 static ssize_t srp_show_tmo(char *buf, int tmo) in srp_show_tmo() argument
196 return tmo >= 0 ? sprintf(buf, "%d\n", tmo) : sprintf(buf, "off\n"); in srp_show_tmo()
199 int srp_parse_tmo(int *tmo, const char *buf) in srp_parse_tmo() argument
204 res = kstrtoint(buf, 0, tmo); in srp_parse_tmo()
206 *tmo = -1; in srp_parse_tmo()
/Linux-v5.15/sound/soc/sh/
Dhac.c202 unsigned int tmo; in hac_ac97_warmrst() local
207 for (tmo = 1000; (tmo > 0) && !(HACREG(HACCR) & CR_CR); tmo--) in hac_ac97_warmrst()
210 if (!tmo) in hac_ac97_warmrst()
/Linux-v5.15/drivers/block/paride/
Dpg.c288 static int pg_wait(struct pg *dev, int go, int stop, unsigned long tmo, char *msg) in pg_wait() argument
296 && time_before(jiffies, tmo)) { in pg_wait()
303 to = time_after_eq(jiffies, tmo); in pg_wait()
320 static int pg_command(struct pg *dev, char *cmd, int dlen, unsigned long tmo) in pg_command() argument
328 if (pg_wait(dev, STAT_BUSY | STAT_DRQ, 0, tmo, "before command")) in pg_command()
335 if (pg_wait(dev, STAT_BUSY, STAT_DRQ, tmo, "command DRQ")) in pg_command()
357 static int pg_completion(struct pg *dev, char *buf, unsigned long tmo) in pg_completion() argument
362 tmo, "completion"); in pg_completion()
380 tmo, "completion"); in pg_completion()
Dpt.c394 static int pt_poll_dsc(struct pt_unit *tape, int pause, int tmo, char *msg) in pt_poll_dsc() argument
402 while (k < tmo) { in pt_poll_dsc()
413 if ((k >= tmo) || (s & STAT_ERR)) { in pt_poll_dsc()
414 if (k >= tmo) in pt_poll_dsc()
425 static void pt_media_access_cmd(struct pt_unit *tape, int tmo, char *cmd, char *fun) in pt_media_access_cmd() argument
432 pt_poll_dsc(tape, HZ, tmo, fun); in pt_media_access_cmd()
484 static int pt_ready_wait(struct pt_unit *tape, int tmo) in pt_ready_wait() argument
490 while (k < tmo) { in pt_ready_wait()
/Linux-v5.15/drivers/regulator/
Dirq_helpers.c55 int tmo, i; in regulator_notifier_isr_work() local
94 tmo = d->reread_ms; in regulator_notifier_isr_work()
117 tmo = d->irq_off_ms; in regulator_notifier_isr_work()
150 msecs_to_jiffies(tmo)); in regulator_notifier_isr_work()
153 msecs_to_jiffies(tmo)); in regulator_notifier_isr_work()
/Linux-v5.15/drivers/scsi/csiostor/
Dcsio_mb.c76 csio_mb_hello(struct csio_hw *hw, struct csio_mb *mbp, uint32_t tmo, in csio_mb_hello() argument
82 CSIO_INIT_MBP(mbp, cmdp, tmo, hw, cbfn, 1); in csio_mb_hello()
140 csio_mb_bye(struct csio_hw *hw, struct csio_mb *mbp, uint32_t tmo, in csio_mb_bye() argument
145 CSIO_INIT_MBP(mbp, cmdp, tmo, hw, cbfn, 1); in csio_mb_bye()
162 csio_mb_reset(struct csio_hw *hw, struct csio_mb *mbp, uint32_t tmo, in csio_mb_reset() argument
168 CSIO_INIT_MBP(mbp, cmdp, tmo, hw, cbfn, 1); in csio_mb_reset()
193 csio_mb_params(struct csio_hw *hw, struct csio_mb *mbp, uint32_t tmo, in csio_mb_params() argument
203 CSIO_INIT_MBP(mbp, cmdp, tmo, hw, cbfn, 1); in csio_mb_params()
264 csio_mb_ldst(struct csio_hw *hw, struct csio_mb *mbp, uint32_t tmo, int reg) in csio_mb_ldst() argument
267 CSIO_INIT_MBP(mbp, ldst_cmd, tmo, hw, NULL, 1); in csio_mb_ldst()
[all …]
Dcsio_mb.h97 (__mbp)->tmo = (__tmo); \
121 uint32_t tmo; /* Timeout */ member
174 void csio_mb_ldst(struct csio_hw *hw, struct csio_mb *mbp, uint32_t tmo,
Dcsio_scsi.c217 wr->tmo_val = (uint8_t) req->tmo; in csio_scsi_init_cmd_wr()
376 wr->tmo_val = (uint8_t)(req->tmo); in csio_scsi_init_read_wr()
429 wr->tmo_val = (uint8_t)(req->tmo); in csio_scsi_init_write_wr()
660 wr->tmo_val = (uint8_t) req->tmo; in csio_scsi_init_abrt_cls_wr()
1233 csio_scsi_abort_io_q(struct csio_scsim *scm, struct list_head *q, uint32_t tmo) in csio_scsi_abort_io_q() argument
1237 int count = DIV_ROUND_UP(tmo, CSIO_SCSI_ABORT_Q_POLL_MS); in csio_scsi_abort_io_q()
1837 ioreq->tmo = 0; in csio_queuecommand()
1891 ioreq->tmo = CSIO_SCSI_ABRT_TMO_MS; in csio_do_abrt_cls()
1916 unsigned long tmo = 0; in csio_eh_abort_handler() local
1943 tmo = CSIO_SCSI_ABRT_TMO_MS; in csio_eh_abort_handler()
[all …]
/Linux-v5.15/drivers/net/ethernet/ti/
Dcpsw_sl.c256 void cpsw_sl_reset(struct cpsw_sl *sl, unsigned long tmo) in cpsw_sl_reset() argument
258 unsigned long timeout = jiffies + msecs_to_jiffies(tmo); in cpsw_sl_reset()
313 int cpsw_sl_wait_for_idle(struct cpsw_sl *sl, unsigned long tmo) in cpsw_sl_wait_for_idle() argument
315 unsigned long timeout = jiffies + msecs_to_jiffies(tmo); in cpsw_sl_wait_for_idle()
Dcpsw_sl.h63 void cpsw_sl_reset(struct cpsw_sl *sl, unsigned long tmo);
68 int cpsw_sl_wait_for_idle(struct cpsw_sl *sl, unsigned long tmo);
Dcpts.c29 unsigned long tmo; member
42 return time_after(jiffies, event->tmo); in event_expired()
91 if (time_after(jiffies, skb_cb->tmo)) { in cpts_purge_txq()
146 event->tmo = jiffies + in cpts_fifo_read()
362 if (time_after(jiffies, skb_cb->tmo)) { in cpts_match_tx_ts()
392 time_after(jiffies, event->tmo)) { in cpts_process_events()
555 skb_cb->tmo = jiffies + msecs_to_jiffies(CPTS_SKB_RX_TX_TMO); in cpts_tx_timestamp()
Dam65-cpts.c144 unsigned long tmo; member
182 unsigned long tmo; member
235 if (time_after(jiffies, event->tmo)) { in am65_cpts_cpts_purge_events()
297 event->tmo = jiffies + in am65_cpts_fifo_read()
667 if (time_after(jiffies, skb_cb->tmo)) { in am65_cpts_match_tx_ts()
699 time_after(jiffies, event->tmo)) { in am65_cpts_find_ts()
794 skb_cb->tmo = jiffies + msecs_to_jiffies(100); in am65_cpts_tx_timestamp()
/Linux-v5.15/drivers/md/
Ddm-log-userspace-transfer.c175 unsigned long tmo; in dm_consult_userspace() local
240 tmo = wait_for_completion_timeout(&(pkg.complete), DM_ULOG_RETRY_TIMEOUT); in dm_consult_userspace()
244 if (!tmo) { in dm_consult_userspace()
/Linux-v5.15/drivers/gpu/drm/amd/amdgpu/
Damdgpu_ib.c390 long tmo; in amdgpu_ib_ring_tests() local
405 tmo = tmo_mm; in amdgpu_ib_ring_tests()
407 tmo = tmo_gfx; in amdgpu_ib_ring_tests()
409 r = amdgpu_ring_test_ib(ring, tmo); in amdgpu_ib_ring_tests()
/Linux-v5.15/drivers/nvdimm/
Dsecurity.c420 unsigned int tmo; in __nvdimm_security_overwrite_query() local
432 tmo = nvdimm->sec.overwrite_tmo; in __nvdimm_security_overwrite_query()
442 tmo += 10; in __nvdimm_security_overwrite_query()
443 queue_delayed_work(system_wq, &nvdimm->dwork, tmo * HZ); in __nvdimm_security_overwrite_query()
444 nvdimm->sec.overwrite_tmo = min(15U * 60U, tmo); in __nvdimm_security_overwrite_query()
/Linux-v5.15/drivers/dma/ioat/
Dinit.c313 unsigned long tmo; in ioat_dma_self_test() local
372 tmo = wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000)); in ioat_dma_self_test()
374 if (tmo == 0 || in ioat_dma_self_test()
799 unsigned long tmo; in ioat_xor_val_self_test() local
887 tmo = wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000)); in ioat_xor_val_self_test()
889 if (tmo == 0 || in ioat_xor_val_self_test()
955 tmo = wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000)); in ioat_xor_val_self_test()
957 if (tmo == 0 || in ioat_xor_val_self_test()
1008 tmo = wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000)); in ioat_xor_val_self_test()
1010 if (tmo == 0 || in ioat_xor_val_self_test()
/Linux-v5.15/include/scsi/
Dscsi_transport_srp.h116 int srp_parse_tmo(int *tmo, const char *buf);
/Linux-v5.15/net/xfrm/
Dxfrm_state.c556 long tmo = x->lft.hard_add_expires_seconds + in xfrm_timer_handler() local
558 if (tmo <= 0) { in xfrm_timer_handler()
565 tmo = x->lft.hard_add_expires_seconds - x->saved_tmo; in xfrm_timer_handler()
569 if (tmo < next) in xfrm_timer_handler()
570 next = tmo; in xfrm_timer_handler()
573 long tmo = x->lft.hard_use_expires_seconds + in xfrm_timer_handler() local
575 if (tmo <= 0) in xfrm_timer_handler()
577 if (tmo < next) in xfrm_timer_handler()
578 next = tmo; in xfrm_timer_handler()
583 long tmo = x->lft.soft_add_expires_seconds + in xfrm_timer_handler() local
[all …]

1234