/* mt9t112 Camera1*2* Copyright (C) 2009 Renesas Solutions Corp.3* Kuninori Morimoto <[email protected]>4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License version 2 as7* published by the Free Software Foundation.8*/910#ifndef __MT9T112_H__11#define __MT9T112_H__1213#define MT9T112_FLAG_PCLK_RISING_EDGE (1 << 0)14#define MT9T112_FLAG_DATAWIDTH_8 (1 << 1) /* default width is 10 */1516struct mt9t112_pll_divider {17u8 m, n;18u8 p1, p2, p3, p4, p5, p6, p7;19};2021/*22* mt9t112 camera info23*/24struct mt9t112_camera_info {25u32 flags;26struct mt9t112_pll_divider divider;27};2829#endif /* __MT9T112_H__ */303132