blob: 1bd58757717a7303b6d00ba4508ad112081eda53 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-only */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
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>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00008 */
9
10#ifndef MT9M032_H
11#define MT9M032_H
12
13#define MT9M032_NAME "mt9m032"
14#define MT9M032_I2C_ADDR (0xb8 >> 1)
15
16struct mt9m032_platform_data {
17 u32 ext_clock;
18 u32 pix_clock;
19 bool invert_pixclock;
20
21};
22#endif /* MT9M032_H */