Lines Matching defs:frequency
23 long frequency; /* 16.16 fixed point frequency */
90 * This routine sets the clock frequency, specified as a 16.16 fixed point
91 * value (0x00318000 = 49.5 MHz). It will set the closest frequency found
97 sc1400_set_clock_frequency(unsigned long frequency)
100 gfx_set_clock_frequency(unsigned long frequency)
107 /* FIND THE REGISTER VALUES FOR THE DESIRED FREQUENCY */
108 /* Search the table for the closest frequency (16.16 format). */
111 min = (long)gfx_sc1400_clock_table[0].frequency - frequency;
115 diff = (long)gfx_sc1400_clock_table[index].frequency - frequency;
858 * This routine returns the current clock frequency in 16.16 format.
878 return (gfx_sc1400_clock_table[index].frequency);