1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * Driver for MT9M032 CMOS Image Sensor from Micron 4 * 5 * Copyright (C) 2010-2011 Lund Engineering 6 * Contact: Gil Lund <gwlund@lundeng.com> 7 * Author: Martin Hostettler <martin@neutronstar.dyndns.org> 8 */ 9 10 #ifndef MT9M032_H 11 #define MT9M032_H 12 13 #define MT9M032_NAME "mt9m032" 14 #define MT9M032_I2C_ADDR (0xb8 >> 1) 15 16 struct mt9m032_platform_data { 17 u32 ext_clock; 18 u32 pix_clock; 19 bool invert_pixclock; 20 21 }; 22 #endif /* MT9M032_H */ 23