Home | History | Annotate | Download | only in dev

Lines Matching defs:act_tick

316 	int cycle_tick = 0, act_tick = 0, inact_tick = 0, half_tick;
330 act_tick = TIME_TO_TICK(min_active);
331 if (act_tick < PIO_ACT_MIN)
332 act_tick = PIO_ACT_MIN;
333 inact_tick = cycle_tick - act_tick - PIO_REC_OFFSET;
337 conf |= (inact_tick << 5) | act_tick;
345 act_tick = TIME_TO_TICK(min_active);
346 inact_tick = cycle_tick - act_tick - DMA_REC_OFFSET;
353 (inact_tick << 16) | (act_tick << 11);
358 drive, conf, cycle_tick, min_cycle, act_tick, min_active, inact_tick);
381 int cycle_tick = 0, act_tick = 0, inact_tick = 0;
396 act_tick = ATA4_TIME_TO_TICK(min_active);
397 inact_tick = cycle_tick - act_tick;
399 conf |= (inact_tick << 5) | act_tick;
407 act_tick = ATA4_TIME_TO_TICK(min_active);
408 inact_tick = cycle_tick - act_tick;
410 conf |= (act_tick << 10) | (inact_tick << 15);
417 act_tick = ATA4_TIME_TO_TICK(min_active);
420 conf |= (cycle_tick << 21) | (act_tick << 25) | 0x100000;
425 drive, conf, cycle_tick, min_cycle, act_tick, min_active, inact_tick);