Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * Driver for MT9M032 CMOS Image Sensor from Micron
0004  *
0005  * Copyright (C) 2010-2011 Lund Engineering
0006  * Contact: Gil Lund <gwlund@lundeng.com>
0007  * Author: Martin Hostettler <martin@neutronstar.dyndns.org>
0008  */
0009 
0010 #ifndef MT9M032_H
0011 #define MT9M032_H
0012 
0013 #define MT9M032_NAME        "mt9m032"
0014 #define MT9M032_I2C_ADDR    (0xb8 >> 1)
0015 
0016 struct mt9m032_platform_data {
0017     u32 ext_clock;
0018     u32 pix_clock;
0019     bool invert_pixclock;
0020 
0021 };
0022 #endif /* MT9M032_H */