Lines Matching defs:frequency
138 long frequency; /* 16.16 fixed point frequency */
260 void sc1200_set_clock_frequency(unsigned long frequency);
407 * This routine sets the clock frequency, specified as a 16.16 fixed point
408 * value (0x00318000 = 49.5 MHz). It will set the closest frequency found
414 sc1200_set_clock_frequency(unsigned long frequency)
417 gfx_set_clock_frequency(unsigned long frequency)
424 /* FIND THE REGISTER VALUES FOR THE DESIRED FREQUENCY */
425 /* Search the table for the closest frequency (16.16 format). */
428 min = (long)gfx_sc1200_clock_table[0].frequency - frequency;
432 diff = (long)gfx_sc1200_clock_table[index].frequency - frequency;
1907 * This routine returns the current clock frequency in 16.16 format.
1927 return (gfx_sc1200_clock_table[index].frequency);