Lines Matching defs:t1
230 u8 t1, t2;
238 pci_read_config_byte(pdev, port, &t1);
241 t1 &= ~0x0F; /* Clear active/recovery timings */
244 t1 |= active[speed];
247 pci_write_config_byte(pdev, port, t1);
292 u32 t1;
313 pci_read_config_dword(pdev, port, &t1);
314 t1 &= 0xC0C00FFF; /* Mask out timing */
316 if (t1 & 0x08) /* 100 or 133 ? */
317 t1 |= timing133[speed];
319 t1 |= timing100[speed];
320 pci_write_config_byte(pdev, port, t1);
485 u32 t1;
488 pci_read_config_dword(pdev, port, &t1);
496 t1 &= 0xC0C00FFF;
498 t1 &= ~0x00000004;
499 if (t1 & 0x08)
500 t1 |= timing_u133[speed];
502 t1 |= timing_u100[speed];
509 t1 &= ~0x00000FF0;
511 t1 |= 0x00000004;
512 if (t1 & 0x08)
513 t1 |= timing_u133[speed];
515 t1 |= timing_u100[speed];
517 pci_write_config_dword(pdev, port, t1);
533 u32 t1;
535 pci_read_config_dword(pdev, port, &t1);
537 if (!(t1 & 0x08))