Lines Matching refs:t
56 struct ata_timing t; in cmd640_set_piomode() local
63 if (ata_timing_compute(adev, adev->pio_mode, &t, T, 0) < 0) { in cmd640_set_piomode()
73 ata_timing_merge(&p, &t, &t, ATA_TIMING_SETUP); in cmd640_set_piomode()
77 if (t.recover > 16) { in cmd640_set_piomode()
78 t.active += t.recover - 16; in cmd640_set_piomode()
79 t.recover = 16; in cmd640_set_piomode()
81 if (t.active > 16) in cmd640_set_piomode()
82 t.active = 16; in cmd640_set_piomode()
87 if (t.recover > 1) in cmd640_set_piomode()
88 t.recover--; /* 640B only */ in cmd640_set_piomode()
90 t.recover = 15; in cmd640_set_piomode()
92 if (t.setup > 4) in cmd640_set_piomode()
93 t.setup = 0xC0; in cmd640_set_piomode()
95 t.setup = setup_data[t.setup]; in cmd640_set_piomode()
98 t.active &= 0x0F; /* 0 = 16 */ in cmd640_set_piomode()
103 reg |= t.setup; in cmd640_set_piomode()
107 pci_write_config_byte(pdev, arttim + 1, (t.active << 4) | t.recover); in cmd640_set_piomode()
114 reg |= t.setup; in cmd640_set_piomode()
116 timing->reg58[adev->devno] = (t.active << 4) | t.recover; in cmd640_set_piomode()