/Linux-v4.19/drivers/ata/ |
D | pata_cmd640.c | 76 if (t.recover > 16) { in cmd640_set_piomode() 77 t.active += t.recover - 16; in cmd640_set_piomode() 78 t.recover = 16; in cmd640_set_piomode() 86 if (t.recover > 1) in cmd640_set_piomode() 87 t.recover--; /* 640B only */ in cmd640_set_piomode() 89 t.recover = 15; in cmd640_set_piomode() 106 pci_write_config_byte(pdev, arttim + 1, (t.active << 4) | t.recover); in cmd640_set_piomode() 115 timing->reg58[adev->devno] = (t.active << 4) | t.recover; in cmd640_set_piomode()
|
D | pata_cmd64x.c | 133 t.active, t.recover, t.setup); in cmd64x_set_timing() 134 if (t.recover > 16) { in cmd64x_set_timing() 135 t.active += t.recover - 16; in cmd64x_set_timing() 136 t.recover = 16; in cmd64x_set_timing() 144 if (t.recover == 16) in cmd64x_set_timing() 145 t.recover = 0; in cmd64x_set_timing() 146 else if (t.recover > 1) in cmd64x_set_timing() 147 t.recover--; in cmd64x_set_timing() 149 t.recover = 15; in cmd64x_set_timing() 165 pci_write_config_byte(pdev, drwtim, (t.active << 4) | t.recover); in cmd64x_set_timing()
|
D | pata_legacy.c | 364 u8 active, recover; in ht6560a_set_piomode() local 371 recover = clamp_val(t.recover, 4, 15); in ht6560a_set_piomode() 378 iowrite8(recover << 4 | active, ap->ioaddr.device_addr); in ht6560a_set_piomode() 398 u8 active, recover; in ht6560b_set_piomode() local 405 recover = clamp_val(t.recover, 2, 16) & 0x0F; in ht6560b_set_piomode() 412 iowrite8(recover << 4 | active, ap->ioaddr.device_addr); in ht6560b_set_piomode() 462 u8 active, recover, setup; in opti82c611a_set_piomode() local 489 recover = clamp_val(t.recover, 1, 16) - 1; in opti82c611a_set_piomode() 499 iowrite8(active << 4 | recover, ap->ioaddr.error_addr); in opti82c611a_set_piomode() 510 iowrite8(active << 4 | recover, ap->ioaddr.data_addr); in opti82c611a_set_piomode() [all …]
|
D | pata_ns87410.c | 94 at.recover = clamp_val(at.recover, 1, 12) - 1; in ns87410_set_piomode() 96 idetcr = (at.setup << 6) | (recoverbits[at.recover] << 3) | activebits[at.active]; in ns87410_set_piomode()
|
D | pata_icside.c | 204 if (t.active <= 50 && t.recover <= 375 && t.cycle <= 425) in pata_icside_set_dmamode() 206 else if (t.active <= 125 && t.recover <= 375 && t.cycle <= 500) in pata_icside_set_dmamode() 208 else if (t.active <= 200 && t.recover <= 550 && t.cycle <= 750) in pata_icside_set_dmamode() 214 t.active, t.recover, t.cycle, iomd_type); in pata_icside_set_dmamode()
|
D | pata_ali.c | 185 t->recover = clamp_val(t->recover, 1, 16) & 15; in ali_program_modes() 189 pci_write_config_byte(pdev, drwt, (t->active << 4) | t->recover); in ali_program_modes()
|
D | pata_cypress.c | 64 time_16 = clamp_val(t.recover - 1, 0, 15) | in cy82c693_set_piomode()
|
/Linux-v4.19/drivers/ide/ |
D | ide-timings.c | 117 q->recover = EZ(t->recover, T); in ide_timing_quantize() 136 m->recover = max(a->recover, b->recover); in ide_timing_merge() 204 if (t->active + t->recover < t->cycle) { in ide_timing_compute() 205 t->active += (t->cycle - (t->active + t->recover)) / 2; in ide_timing_compute() 206 t->recover = t->cycle - t->active; in ide_timing_compute()
|
D | cmd64x.c | 74 if (t.recover > 16) { in cmd64x_program_timings() 75 t.active += t.recover - 16; in cmd64x_program_timings() 76 t.recover = 16; in cmd64x_program_timings() 84 t.recover = recovery_values[t.recover]; in cmd64x_program_timings() 89 (t.active << 4) | t.recover); in cmd64x_program_timings()
|
D | alim15x3.c | 86 t->recover = clamp_val(t->recover, 1, 16) & 15; in ali_program_timings() 91 (t->active << 4) | t->recover); in ali_program_timings()
|
/Linux-v4.19/arch/ia64/lib/ |
D | strlen.S | 132 (p6) br.cond.spnt .recover // jump to recovery if val1 is NaT 139 (p7) br.cond.spnt .recover // jump to recovery if val2 is NaT 170 .recover: label
|
/Linux-v4.19/drivers/gpu/drm/nouveau/nvkm/engine/fifo/ |
D | gk104.c | 246 struct gk104_fifo *fifo = container_of(w, typeof(*fifo), recover.work); in gk104_fifo_recover_work() 254 runm = fifo->recover.runm; in gk104_fifo_recover_work() 255 engm = fifo->recover.engm; in gk104_fifo_recover_work() 256 fifo->recover.engm = 0; in gk104_fifo_recover_work() 257 fifo->recover.runm = 0; in gk104_fifo_recover_work() 286 if (fifo->recover.runm & runm) in gk104_fifo_recover_runl() 288 fifo->recover.runm |= runm; in gk104_fifo_recover_runl() 295 schedule_work(&fifo->recover.work); in gk104_fifo_recover_runl() 376 if (fifo->recover.engm & engm) in gk104_fifo_recover_engn() 378 fifo->recover.engm |= engm; in gk104_fifo_recover_engn() [all …]
|
D | gf100.c | 146 struct gf100_fifo *fifo = container_of(w, typeof(*fifo), recover.work); in gf100_fifo_recover_work() 154 mask = fifo->recover.mask; in gf100_fifo_recover_work() 155 fifo->recover.mask = 0ULL; in gf100_fifo_recover_work() 191 fifo->recover.mask |= 1ULL << engine->subdev.index; in gf100_fifo_recover() 192 schedule_work(&fifo->recover.work); in gf100_fifo_recover() 600 flush_work(&fifo->recover.work); in gf100_fifo_fini() 674 INIT_WORK(&fifo->recover.work, gf100_fifo_recover_work); in gf100_fifo_new()
|
D | gf100.h | 18 } recover; member
|
D | gk104.h | 20 } recover; member
|
/Linux-v4.19/Documentation/media/v4l-drivers/ |
D | rcar-fdp1.rst | 25 recover missing lines. This method is also known as blending or Line 28 - The previous and next fields are averaged to recover lines missing from
|
/Linux-v4.19/drivers/target/iscsi/ |
D | iscsi_target_erl0.c | 371 goto recover; in iscsit_dataout_check_datasn() 381 recover: in iscsit_dataout_check_datasn() 418 goto recover; in iscsit_dataout_pre_datapduinorder_yes() 428 goto recover; in iscsit_dataout_pre_datapduinorder_yes() 441 recover: in iscsit_dataout_pre_datapduinorder_yes() 661 goto recover; in iscsit_dataout_post_crc_failed() 680 recover: in iscsit_dataout_post_crc_failed()
|
/Linux-v4.19/fs/btrfs/ |
D | scrub.c | 78 struct scrub_recover *recover; member 258 return page->recover && in scrub_is_page_on_raid56() 259 (page->recover->bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK); in scrub_is_page_on_raid56() 796 static inline void scrub_get_recover(struct scrub_recover *recover) in scrub_get_recover() argument 798 refcount_inc(&recover->refs); in scrub_get_recover() 802 struct scrub_recover *recover) in scrub_put_recover() argument 804 if (refcount_dec_and_test(&recover->refs)) { in scrub_put_recover() 806 btrfs_put_bbio(recover->bbio); in scrub_put_recover() 807 kfree(recover); in scrub_put_recover() 1019 struct scrub_recover *r = sblock_bad->pagev[0]->recover; in scrub_handle_errored_block() [all …]
|
/Linux-v4.19/fs/dlm/ |
D | Makefile | 16 recover.o \
|
/Linux-v4.19/drivers/usb/musb/ |
D | musb_core.h | 175 int (*recover)(struct musb *musb); member 535 if (!musb->ops->recover) in musb_platform_recover() 538 return musb->ops->recover(musb); in musb_platform_recover()
|
/Linux-v4.19/include/linux/ |
D | suspend.h | 187 void (*recover)(void); member 371 void (*recover)(void); member
|
/Linux-v4.19/Documentation/PCI/ |
D | pci-error-recovery.txt | 95 PCI_ERS_RESULT_CAN_RECOVER, /* Device driver can recover without slot reset */ 109 The actual steps taken by a platform to recover from a PCI error 138 Driver returns this if it thinks it might be able to recover 143 Driver returns this if it can't recover without a 146 Driver returns this if it doesn't want to recover at all. 159 If the platform is unable to recover the slot, the next step 190 all drivers on a segment agree that they can try to recover and if no automatic 331 A "permanent failure" has occurred, and the platform cannot recover 378 recover (disconnect them) and try to let other cards on the same segment 379 recover. Keep in mind that in most real life cases, though, there will
|
/Linux-v4.19/kernel/power/ |
D | hibernate.c | 229 if (platform_mode && hibernation_ops && hibernation_ops->recover) in platform_recover() 230 hibernation_ops->recover(); in platform_recover() 554 if (hibernation_ops->recover) in hibernation_platform_enter() 555 hibernation_ops->recover(); in hibernation_platform_enter()
|
/Linux-v4.19/drivers/md/ |
D | dm-raid1.c | 329 static void recover(struct mirror_set *ms, struct dm_region *reg) in recover() function 398 recover(ms, reg); in do_recovery() 683 struct bio_list sync, nosync, recover, *this_list = NULL; in do_writes() local 696 bio_list_init(&recover); in do_writes() 726 this_list = &recover; in do_writes() 771 while ((bio = bio_list_pop(&recover))) in do_writes()
|
/Linux-v4.19/drivers/net/usb/ |
D | cdc_subset.c | 105 .recover = m5632_recover,
|