Lines Matching +full:pixel +full:- +full:clock +full:- +full:frequency
32 /* DIU Pixel Clock bits of the CLKDVDR Global Utilities register */
39 * p1022rdk_set_pixel_clock: program the DIU's clock
41 * @pixclock: the wavelength, in picoseconds, of the clock
52 guts_np = of_find_compatible_node(NULL, NULL, "fsl,p1022-guts"); in p1022rdk_set_pixel_clock()
65 /* Convert pixclock from a wavelength to a frequency */ in p1022rdk_set_pixel_clock()
71 * 'pxclk' is the ratio of the platform clock to the pixel clock. in p1022rdk_set_pixel_clock()
73 * range of values is 2-255. in p1022rdk_set_pixel_clock()
78 /* Disable the pixel clock, and set it to non-inverted and no delay */ in p1022rdk_set_pixel_clock()
79 clrbits32(&guts->clkdvdr, in p1022rdk_set_pixel_clock()
82 /* Enable the clock and set the pxclk */ in p1022rdk_set_pixel_clock()
83 setbits32(&guts->clkdvdr, CLKDVDR_PXCKEN | (pxclk << 16)); in p1022rdk_set_pixel_clock()