Lines Matching defs:latency
333 u_int latency;
436 * PCI latency timer. 32 is a good value for 4 bus mastering slots, if
442 latency = pci_read_config(dev, PCI_LATENCY_TIMER, 4);
443 latency = (latency >> 8) & 0xff;
445 if (latency)
446 printf("brooktree%d: PCI bus latency is", unit);
448 printf("brooktree%d: PCI bus latency was 0 changing to",
451 if (!latency) {
452 latency = BROOKTREE_DEF_LATENCY_VALUE;
453 pci_write_config(dev, PCI_LATENCY_TIMER, latency<<8, 4);
456 printf(" %d.\n", (int) latency);
940 u_int latency;
1027 * PCI latency timer. 32 is a good value for 4 bus mastering slots, if
1033 latency = pci_conf_read(tag, PCI_LATENCY_TIMER);
1034 latency = (latency >> 8) & 0xff;
1036 if (latency)
1037 printf("brooktree%d: PCI bus latency is", unit);
1039 printf("brooktree%d: PCI bus latency was 0 changing to",
1042 if (!latency) {
1043 latency = BROOKTREE_DEF_LATENCY_VALUE;
1044 pci_conf_write(tag, PCI_LATENCY_TIMER, latency<<8);
1047 printf(" %d.\n", (int) latency);
1395 u_int latency;
1526 * PCI latency timer. 32 is a good value for 4 bus mastering slots, if
1532 latency = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_LATENCY_TIMER);
1533 latency = (latency >> 8) & 0xff;
1535 if (!latency) {
1537 printf("%s: PCI bus latency was 0 changing to %d",
1540 latency = BROOKTREE_DEF_LATENCY_VALUE;
1542 PCI_LATENCY_TIMER, latency<<8);