The MT9V032 is a parallel wide VGA sensor from Aptina (formerly Micron) controlled through I2C. The driver creates a V4L2 subdevice. It currently supports binning and cropping, and the gain, auto gain, exposure, auto exposure and test pattern controls. Signed-off-by: Detlev Casanova <detlev.casanova@gmail.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			207 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			207 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _MEDIA_MT9V032_H
 | 
						|
#define _MEDIA_MT9V032_H
 | 
						|
 | 
						|
struct v4l2_subdev;
 | 
						|
 | 
						|
struct mt9v032_platform_data {
 | 
						|
	unsigned int clk_pol:1;
 | 
						|
 | 
						|
	void (*set_clock)(struct v4l2_subdev *subdev, unsigned int rate);
 | 
						|
};
 | 
						|
 | 
						|
#endif
 |