David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 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> |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 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 */ |