Home
last modified time | relevance | path

Searched refs:retune_count (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/dev/sdhci/
H A Dsdhci.c335 slot->retune_count, slot->retune_mode + 1); in sdhci_dumpcaps_buf()
1050 slot->retune_count = (caps2 & SDHCI_RETUNE_CNT_MASK) >>
1052 if (slot->retune_count > 0xb) {
1054 "%x, using 1 sec\n", slot->retune_count);
1055 slot->retune_count = 1;
1056 } else if (slot->retune_count != 0)
1057 slot->retune_count =
1058 1 << (slot->retune_count - 1);
1475 slot->retune_ticks = slot->retune_count * hz;
H A Dsdhci.h393 uint8_t retune_count; /* Controller re-tuning count [s] */ member