Home | History | Annotate | Download | only in gfx

Lines Matching defs:frequency

80     long frequency;             /* 16.16 fixed point frequency                  */
81 unsigned long post_div3; /* MCP Frequency dividers and multipliers */
243 * This routine sets the clock frequency, specified as a 16.16 fixed point
244 * value (0x00318000 = 49.5 MHz). It will set the closest frequency found
250 redcloud_set_clock_frequency(unsigned long frequency)
253 gfx_set_clock_frequency(unsigned long frequency)
263 /* FIND THE REGISTER VALUES FOR THE DESIRED FREQUENCY */
264 /* Search the table for the closest frequency (16.16 format). */
267 min = (long) RCDF_PLLtable[0].frequency - frequency;
271 diff = (long) RCDF_PLLtable[i].frequency - frequency;
1624 * This routine returns the current clock frequency in 16.16 format.
1659 return (RCDF_PLLtable[index].frequency);