Lines Matching refs:HZ
63 #include <opt_hz.h> /* for HZ */
99 /* Match value for clock timer; running at master clock, want HZ ticks per second */
198 if (AT91_MSTCLK / 2U / HZ <= 65536) {
201 } else if (AT91_MSTCLK / 8U / HZ <= 65536) {
204 } else if (AT91_MSTCLK / 32U / HZ <= 65536) {
207 } else if (AT91_MSTCLK / 128U / HZ <= 65536) {
211 panic("%s: cannot setup timer to reach HZ", device_xname(sc->sc_dev));
213 sc->sc_divider = (sc->sc_timerclock + HZ - 1) / HZ; /* round up */
255 *We assume that hz is either stathz or profhz, and that neither
281 hz = sc->sc_timerclock / sc->sc_divider;