Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /* mt9t112 Camera
0003  *
0004  * Copyright (C) 2009 Renesas Solutions Corp.
0005  * Kuninori Morimoto <morimoto.kuninori@renesas.com>
0006  */
0007 
0008 #ifndef __MT9T112_H__
0009 #define __MT9T112_H__
0010 
0011 struct mt9t112_pll_divider {
0012     u8 m, n;
0013     u8 p1, p2, p3, p4, p5, p6, p7;
0014 };
0015 
0016 /**
0017  * struct mt9t112_platform_data - mt9t112 driver interface
0018  * @flags:          Sensor media bus configuration.
0019  * @divider:            Sensor PLL configuration
0020  */
0021 struct mt9t112_platform_data {
0022 #define MT9T112_FLAG_PCLK_RISING_EDGE   BIT(0)
0023     u32 flags;
0024     struct mt9t112_pll_divider divider;
0025 };
0026 
0027 #endif /* __MT9T112_H__ */