Lines Matching defs:frequency
137 long frequency; /* 16.16 fixed point frequency */
243 void cs5530_set_clock_frequency(unsigned long frequency);
443 * This routine sets the clock frequency, specified as a 16.16 fixed point
444 * value (0x00318000 = 49.5 MHz). It will set the closest frequency found
450 cs5530_set_clock_frequency(unsigned long frequency)
453 gfx_set_clock_frequency(unsigned long frequency)
460 /* FIND THE REGISTER VALUES FOR THE DESIRED FREQUENCY */
461 /* Search the table for the closest frequency (16.16 format). */
464 min = (long)CS5530_PLLtable[0].frequency - frequency;
468 diff = (long)CS5530_PLLtable[index].frequency - frequency;
1004 * This routine returns the current clock frequency in 16.16 format.
1024 return (CS5530_PLLtable[index].frequency);