| /linux-4.4.14/sound/core/seq/ |
| D | seq_timer.c | 36 static void snd_seq_timer_set_tick_resolution(struct snd_seq_timer *tmr) in snd_seq_timer_set_tick_resolution() argument 38 if (tmr->tempo < 1000000) in snd_seq_timer_set_tick_resolution() 39 tmr->tick.resolution = (tmr->tempo * 1000) / tmr->ppq; in snd_seq_timer_set_tick_resolution() 43 s = tmr->tempo % tmr->ppq; in snd_seq_timer_set_tick_resolution() 44 s = (s * 1000) / tmr->ppq; in snd_seq_timer_set_tick_resolution() 45 tmr->tick.resolution = (tmr->tempo / tmr->ppq) * 1000; in snd_seq_timer_set_tick_resolution() 46 tmr->tick.resolution += s; in snd_seq_timer_set_tick_resolution() 48 if (tmr->tick.resolution <= 0) in snd_seq_timer_set_tick_resolution() 49 tmr->tick.resolution = 1; in snd_seq_timer_set_tick_resolution() 50 snd_seq_timer_update_tick(&tmr->tick, 0); in snd_seq_timer_set_tick_resolution() [all …]
|
| D | seq_timer.h | 65 void snd_seq_timer_delete(struct snd_seq_timer **tmr); 128 void snd_seq_timer_defaults(struct snd_seq_timer *tmr); 129 void snd_seq_timer_reset(struct snd_seq_timer *tmr); 130 int snd_seq_timer_stop(struct snd_seq_timer *tmr); 131 int snd_seq_timer_start(struct snd_seq_timer *tmr); 132 int snd_seq_timer_continue(struct snd_seq_timer *tmr); 133 int snd_seq_timer_set_tempo(struct snd_seq_timer *tmr, int tempo); 134 int snd_seq_timer_set_ppq(struct snd_seq_timer *tmr, int ppq); 135 int snd_seq_timer_set_position_tick(struct snd_seq_timer *tmr, snd_seq_tick_time_t position); 136 int snd_seq_timer_set_position_time(struct snd_seq_timer *tmr, snd_seq_real_time_t position); [all …]
|
| D | seq_queue.c | 450 struct snd_seq_timer *tmr; in snd_seq_queue_timer_open() local 455 tmr = queue->timer; in snd_seq_queue_timer_open() 457 snd_seq_timer_defaults(tmr); in snd_seq_queue_timer_open() 765 struct snd_seq_timer *tmr; in snd_seq_info_queues_read() local 771 tmr = q->timer; in snd_seq_info_queues_read() 772 if (tmr->tempo) in snd_seq_info_queues_read() 773 bpm = 60000000 / tmr->tempo; in snd_seq_info_queues_read() 782 snd_iprintf(buffer, "timer state : %s\n", tmr->running ? "Running" : "Stopped"); in snd_seq_info_queues_read() 783 snd_iprintf(buffer, "timer PPQ : %d\n", tmr->ppq); in snd_seq_info_queues_read() 784 snd_iprintf(buffer, "current tempo : %d\n", tmr->tempo); in snd_seq_info_queues_read() [all …]
|
| D | seq_clientmgr.c | 1667 struct snd_seq_timer *tmr; in snd_seq_ioctl_get_queue_status() local 1678 tmr = queue->timer; in snd_seq_ioctl_get_queue_status() 1681 status.time = snd_seq_timer_get_cur_time(tmr); in snd_seq_ioctl_get_queue_status() 1682 status.tick = snd_seq_timer_get_cur_tick(tmr); in snd_seq_ioctl_get_queue_status() 1684 status.running = tmr->running; in snd_seq_ioctl_get_queue_status() 1701 struct snd_seq_timer *tmr; in snd_seq_ioctl_get_queue_tempo() local 1712 tmr = queue->timer; in snd_seq_ioctl_get_queue_tempo() 1714 tempo.tempo = tmr->tempo; in snd_seq_ioctl_get_queue_tempo() 1715 tempo.ppq = tmr->ppq; in snd_seq_ioctl_get_queue_tempo() 1716 tempo.skew_value = tmr->skew; in snd_seq_ioctl_get_queue_tempo() [all …]
|
| /linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/timer/ |
| D | base.c | 27 nvkm_timer_read(struct nvkm_timer *tmr) in nvkm_timer_read() argument 29 return tmr->func->read(tmr); in nvkm_timer_read() 33 nvkm_timer_alarm_trigger(struct nvkm_timer *tmr) in nvkm_timer_alarm_trigger() argument 40 spin_lock_irqsave(&tmr->lock, flags); in nvkm_timer_alarm_trigger() 41 list_for_each_entry_safe(alarm, atemp, &tmr->alarms, head) { in nvkm_timer_alarm_trigger() 42 if (alarm->timestamp <= nvkm_timer_read(tmr)) in nvkm_timer_alarm_trigger() 47 if (!list_empty(&tmr->alarms)) { in nvkm_timer_alarm_trigger() 48 alarm = list_first_entry(&tmr->alarms, typeof(*alarm), head); in nvkm_timer_alarm_trigger() 49 tmr->func->alarm_init(tmr, alarm->timestamp); in nvkm_timer_alarm_trigger() 51 tmr->func->alarm_fini(tmr); in nvkm_timer_alarm_trigger() [all …]
|
| D | nv04.c | 28 nv04_timer_time(struct nvkm_timer *tmr, u64 time) in nv04_timer_time() argument 30 struct nvkm_subdev *subdev = &tmr->subdev; in nv04_timer_time() 43 nv04_timer_read(struct nvkm_timer *tmr) in nv04_timer_read() argument 45 struct nvkm_device *device = tmr->subdev.device; in nv04_timer_read() 57 nv04_timer_alarm_fini(struct nvkm_timer *tmr) in nv04_timer_alarm_fini() argument 59 struct nvkm_device *device = tmr->subdev.device; in nv04_timer_alarm_fini() 64 nv04_timer_alarm_init(struct nvkm_timer *tmr, u32 time) in nv04_timer_alarm_init() argument 66 struct nvkm_device *device = tmr->subdev.device; in nv04_timer_alarm_init() 72 nv04_timer_intr(struct nvkm_timer *tmr) in nv04_timer_intr() argument 74 struct nvkm_subdev *subdev = &tmr->subdev; in nv04_timer_intr() [all …]
|
| D | nv40.c | 28 nv40_timer_init(struct nvkm_timer *tmr) in nv40_timer_init() argument 30 struct nvkm_subdev *subdev = &tmr->subdev; in nv40_timer_init()
|
| D | nv41.c | 28 nv41_timer_init(struct nvkm_timer *tmr) in nv41_timer_init() argument 30 struct nvkm_subdev *subdev = &tmr->subdev; in nv41_timer_init()
|
| /linux-4.4.14/arch/arm/plat-iop/ |
| D | time.c | 68 u32 tmr = IOP_TMR_PRIVILEGED | IOP_TMR_RATIO_1_1; in iop_set_next_event() local 71 write_tmr0(tmr & ~(IOP_TMR_EN | IOP_TMR_RELOAD)); in iop_set_next_event() 73 write_tmr0((tmr & ~IOP_TMR_RELOAD) | IOP_TMR_EN); in iop_set_next_event() 82 u32 tmr = read_tmr0(); in iop_set_periodic() local 84 write_tmr0(tmr & ~IOP_TMR_EN); in iop_set_periodic() 87 tmr |= (IOP_TMR_RELOAD | IOP_TMR_EN); in iop_set_periodic() 89 write_tmr0(tmr); in iop_set_periodic() 95 u32 tmr = read_tmr0(); in iop_set_oneshot() local 98 tmr &= ~(IOP_TMR_RELOAD | IOP_TMR_EN); in iop_set_oneshot() 99 write_tmr0(tmr); in iop_set_oneshot() [all …]
|
| /linux-4.4.14/arch/powerpc/sysdev/ |
| D | fsl_gtm.c | 155 void gtm_put_timer16(struct gtm_timer *tmr) in gtm_put_timer16() argument 157 gtm_stop_timer16(tmr); in gtm_put_timer16() 159 spin_lock_irq(&tmr->gtm->lock); in gtm_put_timer16() 160 tmr->requested = false; in gtm_put_timer16() 161 spin_unlock_irq(&tmr->gtm->lock); in gtm_put_timer16() 169 static int gtm_set_ref_timer16(struct gtm_timer *tmr, int frequency, in gtm_set_ref_timer16() argument 172 struct gtm *gtm = tmr->gtm; in gtm_set_ref_timer16() 173 int num = tmr - >m->timers[0]; in gtm_set_ref_timer16() 182 if (!tmr->gtpsr) in gtm_set_ref_timer16() 213 clrsetbits_8(tmr->gtcfr, ~(GTCFR_STP(num) | GTCFR_RST(num)), in gtm_set_ref_timer16() [all …]
|
| /linux-4.4.14/drivers/target/ |
| D | target_core_tmr.c | 45 struct se_tmr_req *tmr; in core_tmr_alloc_req() local 47 tmr = kzalloc(sizeof(struct se_tmr_req), gfp_flags); in core_tmr_alloc_req() 48 if (!tmr) { in core_tmr_alloc_req() 54 se_cmd->se_tmr_req = tmr; in core_tmr_alloc_req() 55 tmr->task_cmd = se_cmd; in core_tmr_alloc_req() 56 tmr->fabric_tmr_ptr = fabric_tmr_ptr; in core_tmr_alloc_req() 57 tmr->function = function; in core_tmr_alloc_req() 58 INIT_LIST_HEAD(&tmr->tmr_list); in core_tmr_alloc_req() 64 void core_tmr_release_req(struct se_tmr_req *tmr) in core_tmr_release_req() argument 66 struct se_device *dev = tmr->tmr_dev; in core_tmr_release_req() [all …]
|
| D | target_core_transport.c | 2995 struct se_tmr_req *tmr = cmd->se_tmr_req; in target_tmr_work() local 3001 tmr->response = TMR_FUNCTION_REJECTED; in target_tmr_work() 3007 switch (tmr->function) { in target_tmr_work() 3009 core_tmr_abort_task(dev, tmr, cmd->se_sess); in target_tmr_work() 3014 tmr->response = TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED; in target_tmr_work() 3017 ret = core_tmr_lun_reset(dev, tmr, NULL, NULL); in target_tmr_work() 3018 tmr->response = (!ret) ? TMR_FUNCTION_COMPLETE : in target_tmr_work() 3020 if (tmr->response == TMR_FUNCTION_COMPLETE) { in target_tmr_work() 3027 tmr->response = TMR_FUNCTION_REJECTED; in target_tmr_work() 3030 tmr->response = TMR_FUNCTION_REJECTED; in target_tmr_work() [all …]
|
| /linux-4.4.14/drivers/scsi/isci/ |
| D | isci.h | 501 void sci_init_timer(struct sci_timer *tmr, void (*fn)(unsigned long)) in sci_init_timer() argument 503 tmr->timer.function = fn; in sci_init_timer() 504 tmr->timer.data = (unsigned long) tmr; in sci_init_timer() 505 tmr->cancel = 0; in sci_init_timer() 506 init_timer(&tmr->timer); in sci_init_timer() 509 static inline void sci_mod_timer(struct sci_timer *tmr, unsigned long msec) in sci_mod_timer() argument 511 tmr->cancel = 0; in sci_mod_timer() 512 mod_timer(&tmr->timer, jiffies + msecs_to_jiffies(msec)); in sci_mod_timer() 515 static inline void sci_del_timer(struct sci_timer *tmr) in sci_del_timer() argument 517 tmr->cancel = 1; in sci_del_timer() [all …]
|
| D | port_config.c | 325 struct sci_timer *tmr = (struct sci_timer *)data; in mpc_agent_timeout() local 331 port_agent = container_of(tmr, typeof(*port_agent), timer); in mpc_agent_timeout() 336 if (tmr->cancel) in mpc_agent_timeout() 660 struct sci_timer *tmr = (struct sci_timer *)data; in apc_agent_timeout() local 666 port_agent = container_of(tmr, typeof(*port_agent), timer); in apc_agent_timeout() 671 if (tmr->cancel) in apc_agent_timeout()
|
| D | host.c | 963 struct sci_timer *tmr = (struct sci_timer *)data; in phy_startup_timeout() local 964 struct isci_host *ihost = container_of(tmr, typeof(*ihost), phy_timer); in phy_startup_timeout() 970 if (tmr->cancel) in phy_startup_timeout() 1597 struct sci_timer *tmr = (struct sci_timer *)data; in controller_timeout() local 1598 struct isci_host *ihost = container_of(tmr, typeof(*ihost), timer); in controller_timeout() 1604 if (tmr->cancel) in controller_timeout() 1742 struct sci_timer *tmr = (struct sci_timer *)data; in power_control_timeout() local 1743 struct isci_host *ihost = container_of(tmr, typeof(*ihost), power_control.timer); in power_control_timeout() 1750 if (tmr->cancel) in power_control_timeout() 1807 sci_mod_timer(tmr, SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL); in power_control_timeout()
|
| D | phy.c | 320 struct sci_timer *tmr = (struct sci_timer *)data; in phy_sata_timeout() local 321 struct isci_phy *iphy = container_of(tmr, typeof(*iphy), sata_timer); in phy_sata_timeout() 327 if (tmr->cancel) in phy_sata_timeout()
|
| D | port.c | 774 struct sci_timer *tmr = (struct sci_timer *)data; in port_timeout() local 775 struct isci_port *iport = container_of(tmr, typeof(*iport), timer); in port_timeout() 782 if (tmr->cancel) in port_timeout()
|
| /linux-4.4.14/sound/oss/ |
| D | sound_timer.c | 28 static struct sound_lowlev_timer *tmr; variable 54 if(!tmr) in reprogram_timer() 65 usecs_per_tmr = tmr->tmr_start(tmr->dev, usecs_per_tick); in reprogram_timer() 110 tmr->tmr_disable(tmr->dev); in timer_close() 288 tmr->tmr_restart(tmr->dev); in sound_timer_interrupt() 312 if (t->priority <= tmr->priority) in sound_timer_init() 314 tmr = t; in sound_timer_init() 318 tmr = t; in sound_timer_init()
|
| D | sequencer.c | 25 static struct sound_timer_operations *tmr; variable 190 this_time = tmr->get_time(tmr_no); in seq_input_event() 636 if ((ret = tmr->event(tmr_no, event_rec)) == TIMER_ARMED) in seq_timing_event() 1006 tmr = sound_timer_devs[tmr_no]; in sequencer_open() 1010 if (tmr == NULL) in sequencer_open() 1080 if (try_module_get(tmr->owner)) in sequencer_open() 1081 tmr->open(tmr_no, seq_mode); in sequencer_open() 1176 tmr->close(tmr_no); in sequencer_release() 1177 module_put(tmr->owner); in sequencer_release() 1337 return tmr->ioctl(tmr_no, cmd, arg); in sequencer_ioctl() [all …]
|
| /linux-4.4.14/arch/powerpc/include/asm/ |
| D | fsl_gtm.h | 39 extern void gtm_put_timer16(struct gtm_timer *tmr); 40 extern int gtm_set_timer16(struct gtm_timer *tmr, unsigned long usec, 42 extern int gtm_set_exact_timer16(struct gtm_timer *tmr, u16 usec, 44 extern void gtm_stop_timer16(struct gtm_timer *tmr); 45 extern void gtm_ack_timer16(struct gtm_timer *tmr, u16 events);
|
| D | ppc-opcode.h | 386 #define MTTMR(tmr, r) stringify_in_c(.long PPC_INST_MTTMR | \ argument 387 TMRN(tmr) | ___PPC_RS(r)) 388 #define MFTMR(tmr, r) stringify_in_c(.long PPC_INST_MFTMR | \ argument 389 TMRN(tmr) | ___PPC_RT(r))
|
| /linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/therm/ |
| D | fan.c | 36 struct nvkm_timer *tmr = subdev->device->timer; in nvkm_fan_update() local 98 nvkm_timer_alarm(tmr, delay * 1000 * 1000, &fan->alarm); in nvkm_fan_update() 127 struct nvkm_timer *tmr = device->timer; in nvkm_therm_fan_sense() local 142 start = nvkm_timer_read(tmr); in nvkm_therm_fan_sense() 153 start = nvkm_timer_read(tmr); in nvkm_therm_fan_sense() 157 } while (cycles < 5 && nvkm_timer_read(tmr) - start < 250000000); in nvkm_therm_fan_sense() 158 end = nvkm_timer_read(tmr); in nvkm_therm_fan_sense() 216 struct nvkm_timer *tmr = therm->subdev.device->timer; in nvkm_therm_fan_fini() local 218 nvkm_timer_alarm_cancel(tmr, &therm->fan->alarm); in nvkm_therm_fan_fini()
|
| D | temp.c | 167 struct nvkm_timer *tmr = therm->subdev.device->timer; in alarm_timer_callback() local 189 nvkm_timer_alarm(tmr, 1000000000ULL, alarm); in alarm_timer_callback() 221 struct nvkm_timer *tmr = therm->subdev.device->timer; in nvkm_therm_sensor_fini() local 223 nvkm_timer_alarm_cancel(tmr, &therm->sensor.therm_poll_alarm); in nvkm_therm_sensor_fini()
|
| D | fantog.c | 43 struct nvkm_timer *tmr = device->timer; in nvkm_fantog_update() local 60 nvkm_timer_alarm(tmr, next_change * 1000, &fan->alarm); in nvkm_fantog_update()
|
| D | base.c | 92 struct nvkm_timer *tmr = subdev->device->timer; in nvkm_therm_update() local 105 nvkm_timer_alarm_cancel(tmr, &therm->alarm); in nvkm_therm_update() 129 nvkm_timer_alarm_cancel(tmr, &therm->alarm); in nvkm_therm_update() 134 nvkm_timer_alarm(tmr, 1000000000ULL, &therm->alarm); in nvkm_therm_update()
|
| /linux-4.4.14/fs/ |
| D | timerfd.c | 31 struct hrtimer tmr; member 74 t.tmr); in timerfd_tmrproc() 156 remaining = hrtimer_expires_remaining_adjusted(&ctx->t.tmr); in timerfd_get_remaining() 182 hrtimer_init(&ctx->t.tmr, clockid, htmode); in timerfd_setup() 183 hrtimer_set_expires(&ctx->t.tmr, texp); in timerfd_setup() 184 ctx->t.tmr.function = timerfd_tmrproc; in timerfd_setup() 194 hrtimer_start(&ctx->t.tmr, texp, htmode); in timerfd_setup() 214 hrtimer_cancel(&ctx->t.tmr); in timerfd_release() 276 ticks += hrtimer_forward_now(&ctx->t.tmr, in timerfd_read() 278 hrtimer_restart(&ctx->t.tmr); in timerfd_read() [all …]
|
| /linux-4.4.14/kernel/time/ |
| D | posix-timers.c | 549 struct k_itimer *tmr; in alloc_posix_timer() local 550 tmr = kmem_cache_zalloc(posix_timers_cache, GFP_KERNEL); in alloc_posix_timer() 551 if (!tmr) in alloc_posix_timer() 552 return tmr; in alloc_posix_timer() 553 if (unlikely(!(tmr->sigq = sigqueue_alloc()))) { in alloc_posix_timer() 554 kmem_cache_free(posix_timers_cache, tmr); in alloc_posix_timer() 557 memset(&tmr->sigq->info, 0, sizeof(siginfo_t)); in alloc_posix_timer() 558 return tmr; in alloc_posix_timer() 563 struct k_itimer *tmr = container_of(head, struct k_itimer, it.rcu); in k_itimer_rcu_free() local 565 kmem_cache_free(posix_timers_cache, tmr); in k_itimer_rcu_free() [all …]
|
| /linux-4.4.14/Documentation/devicetree/bindings/net/ |
| D | fsl-tsec-phy.txt | 96 - fsl,tmr-prsc Prescaler, divides the output clock. 97 - fsl,tmr-add Frequency compensation value. 98 - fsl,tmr-fiper1 Fixed interval period pulse generator. 99 - fsl,tmr-fiper2 Fixed interval period pulse generator. 146 fsl,tmr-prsc = <100>; 147 fsl,tmr-add = <0x999999A4>; 148 fsl,tmr-fiper1 = <0x3B9AC9F6>; 149 fsl,tmr-fiper2 = <0x00018696>;
|
| /linux-4.4.14/arch/cris/include/arch-v32/mach-a3/mach/hwregs/ |
| D | timer_defs.h | 122 unsigned int tmr : 24; member 129 unsigned int tmr : 24; member 149 unsigned int tmr : 2; member 161 unsigned int tmr : 2; member
|
| /linux-4.4.14/arch/cris/include/arch-v32/mach-fs/mach/hwregs/ |
| D | timer_defs.h | 125 unsigned int tmr : 24; member 132 unsigned int tmr : 24; member 152 unsigned int tmr : 2; member 164 unsigned int tmr : 2; member
|
| /linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/gr/ |
| D | g84.c | 118 struct nvkm_timer *tmr = device->timer; in g84_gr_tlb_flush() local 128 start = nvkm_timer_read(tmr); in g84_gr_tlb_flush() 147 !(timeout = nvkm_timer_read(tmr) - start > 2000000000)); in g84_gr_tlb_flush()
|
| /linux-4.4.14/arch/powerpc/boot/dts/fsl/ |
| D | bsc9131rdb.dtsi | 88 fsl,tmr-prsc = <2>; 89 fsl,tmr-add = <0xcccccccd>; 90 fsl,tmr-fiper1 = <999999995>; 91 fsl,tmr-fiper2 = <99990>;
|
| D | bsc9132qds.dtsi | 95 fsl,tmr-prsc = <2>; 96 fsl,tmr-add = <0xcccccccd>; 97 fsl,tmr-fiper1 = <999999995>; 98 fsl,tmr-fiper2 = <99990>;
|
| D | p1022ds.dtsi | 223 fsl,tmr-prsc = <2>; 224 fsl,tmr-add = <0xc01ebd3d>; 225 fsl,tmr-fiper1 = <999999995>; 226 fsl,tmr-fiper2 = <99990>;
|
| D | p1010rdb.dtsi | 194 fsl,tmr-prsc = <2>; 195 fsl,tmr-add = <0x80000016>; 196 fsl,tmr-fiper1 = <999999990>; 197 fsl,tmr-fiper2 = <99990>;
|
| D | p2020rdb.dts | 231 fsl,tmr-prsc = <200>; 232 fsl,tmr-add = <0xCCCCCCCD>; 233 fsl,tmr-fiper1 = <0x3B9AC9FB>; 234 fsl,tmr-fiper2 = <0x0001869B>;
|
| D | p2020rdb-pc.dtsi | 219 fsl,tmr-prsc = <2>; 220 fsl,tmr-add = <0xaaaaaaab>; 221 fsl,tmr-fiper1 = <999999995>; 222 fsl,tmr-fiper2 = <99990>;
|
| D | p1021rdb-pc.dtsi | 232 fsl,tmr-prsc = <2>; 233 fsl,tmr-add = <0x80000016>; 234 fsl,tmr-fiper1 = <999999990>; 235 fsl,tmr-fiper2 = <99990>;
|
| D | p1020rdb-pd.dts | 233 fsl,tmr-prsc = <2>; 234 fsl,tmr-add = <0x80000016>; 235 fsl,tmr-fiper1 = <999999990>; 236 fsl,tmr-fiper2 = <99990>;
|
| D | p2020ds.dtsi | 187 fsl,tmr-prsc = <200>; 188 fsl,tmr-add = <0xCCCCCCCD>; 189 fsl,tmr-fiper1 = <0x3B9AC9FB>; 190 fsl,tmr-fiper2 = <0x0001869B>;
|
| D | p1025twr.dtsi | 146 fsl,tmr-prsc = <2>; 147 fsl,tmr-add = <0xc0000021>; 148 fsl,tmr-fiper1 = <999999990>; 149 fsl,tmr-fiper2 = <99990>;
|
| D | mpc8572ds.dtsi | 197 fsl,tmr-prsc = <200>; 198 fsl,tmr-add = <0xAAAAAAAB>; 199 fsl,tmr-fiper1 = <0x3B9AC9FB>; 200 fsl,tmr-fiper2 = <0x3B9AC9FB>;
|
| /linux-4.4.14/drivers/tty/ |
| D | n_r3964.c | 398 mod_timer(&pInfo->tmr, jiffies + R3964_TO_QVZ); in trigger_transmit() 422 mod_timer(&pInfo->tmr, jiffies + R3964_TO_QVZ); in retry_transmit() 472 mod_timer(&pInfo->tmr, jiffies + R3964_TO_QVZ); in transmit_block() 504 mod_timer(&pInfo->tmr, jiffies + R3964_TO_RX_PANIC); in on_receive_block() 515 del_timer_sync(&pInfo->tmr); in on_receive_block() 588 mod_timer(&pInfo->tmr, jiffies + R3964_TO_ZVZ); in receive_char() 612 mod_timer(&pInfo->tmr, in receive_char() 623 mod_timer(&pInfo->tmr, jiffies + R3964_TO_ZVZ); in receive_char() 644 mod_timer(&pInfo->tmr, in receive_char() 653 mod_timer(&pInfo->tmr, jiffies + R3964_TO_ZVZ); in receive_char() [all …]
|
| /linux-4.4.14/drivers/tty/serial/ |
| D | altera_uart.c | 83 struct timer_list tmr; member 297 mod_timer(&pp->tmr, jiffies + uart_poll_timeout(port)); in altera_uart_timer() 317 setup_timer(&pp->tmr, altera_uart_timer, (unsigned long)port); in altera_uart_startup() 318 mod_timer(&pp->tmr, jiffies + uart_poll_timeout(port)); in altera_uart_startup() 357 del_timer_sync(&pp->tmr); in altera_uart_shutdown()
|
| /linux-4.4.14/drivers/staging/rdma/hfi1/ |
| D | keys.c | 80 struct hfi1_mregion *tmr; in hfi1_alloc_lkey() local 82 tmr = rcu_access_pointer(dev->dma_mr); in hfi1_alloc_lkey() 83 if (!tmr) { in hfi1_alloc_lkey()
|
| /linux-4.4.14/drivers/xen/ |
| D | xen-scsiback.c | 592 struct scsiback_tmr *tmr; in scsiback_device_action() local 594 tmr = kzalloc(sizeof(struct scsiback_tmr), GFP_KERNEL); in scsiback_device_action() 595 if (!tmr) in scsiback_device_action() 598 init_waitqueue_head(&tmr->tmr_wait); in scsiback_device_action() 604 rc = core_tmr_alloc_req(se_cmd, tmr, act, GFP_KERNEL); in scsiback_device_action() 614 wait_event(tmr->tmr_wait, atomic_read(&tmr->tmr_complete)); in scsiback_device_action() 620 if (tmr) { in scsiback_device_action() 622 kfree(tmr); in scsiback_device_action() 1430 struct scsiback_tmr *tmr = se_tmr->fabric_tmr_ptr; in scsiback_queue_tm_rsp() local 1432 atomic_set(&tmr->tmr_complete, 1); in scsiback_queue_tm_rsp() [all …]
|
| /linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/ |
| D | gk20a.c | 127 struct nvkm_timer *tmr = device->timer; in gk20a_pmu_dvfs_work() local 166 nvkm_timer_alarm(tmr, 100000000, alarm); in gk20a_pmu_dvfs_work()
|
| /linux-4.4.14/drivers/target/tcm_fc/ |
| D | tfc_cmd.c | 401 struct se_tmr_req *tmr = se_cmd->se_tmr_req; in ft_queue_tm_resp() local 406 switch (tmr->response) { in ft_queue_tm_resp() 423 tmr->function, tmr->response, code); in ft_queue_tm_resp()
|
| /linux-4.4.14/drivers/infiniband/hw/qib/ |
| D | qib_keys.c | 62 struct qib_mregion *tmr; in qib_alloc_lkey() local 64 tmr = rcu_access_pointer(dev->dma_mr); in qib_alloc_lkey() 65 if (!tmr) { in qib_alloc_lkey()
|
| /linux-4.4.14/arch/powerpc/boot/dts/ |
| D | mpc8313erdb.dts | 185 fsl,tmr-prsc = <100>; 186 fsl,tmr-add = <0x999999A4>; 187 fsl,tmr-fiper1 = <0x3B9AC9F6>; 188 fsl,tmr-fiper2 = <0x00018696>;
|
| /linux-4.4.14/include/linux/ |
| D | n_r3964.h | 171 struct timer_list tmr; member
|
| /linux-4.4.14/arch/cris/arch-v32/kernel/ |
| D | fasttimer.c | 161 trig_cfg.tmr = regk_timer_time; in start_timer_trig() 177 trig_cfg.tmr = regk_timer_off; in start_timer_trig() 343 trig_cfg.tmr = regk_timer_off; in timer_trig_handler()
|
| /linux-4.4.14/drivers/target/loopback/ |
| D | tcm_loop.c | 217 u64 lun, int task, enum tcm_tmreq_table tmr) in tcm_loop_issue_tmr() argument 260 rc = core_tmr_alloc_req(se_cmd, tl_tmr, tmr, GFP_KERNEL); in tcm_loop_issue_tmr() 264 if (tmr == TMR_ABORT_TASK) in tcm_loop_issue_tmr()
|
| /linux-4.4.14/arch/x86/include/asm/ |
| D | apicdef.h | 263 } tmr [8]; member
|
| /linux-4.4.14/kernel/ |
| D | signal.c | 584 struct hrtimer *tmr = &tsk->signal->real_timer; in dequeue_signal() local 586 if (!hrtimer_is_queued(tmr) && in dequeue_signal() 588 hrtimer_forward(tmr, tmr->base->get_time(), in dequeue_signal() 590 hrtimer_restart(tmr); in dequeue_signal()
|
| /linux-4.4.14/drivers/video/fbdev/ |
| D | cg14.c | 108 u32 tmr; /* Test Mode Read Back */ member
|