blob: 82496d38a96aa727a1e900fda69b24ba58aa96c6 [file] [log] [blame]
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -03001/*
2 * Samsung S5P SoC camera interface driver header
3 *
4 * Copyright (c) 2010 Samsung Electronics Co., Ltd
5 * Author: Sylwester Nawrocki, <s.nawrocki@samsung.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
Sylwester Nawrockidf7e09a2010-12-27 14:42:15 -030012#ifndef S5P_FIMC_H_
13#define S5P_FIMC_H_
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030014
15enum cam_bus_type {
16 FIMC_ITU_601 = 1,
17 FIMC_ITU_656,
18 FIMC_MIPI_CSI2,
19 FIMC_LCD_WB, /* FIFO link from LCD mixer */
20};
21
22#define FIMC_CLK_INV_PCLK (1 << 0)
23#define FIMC_CLK_INV_VSYNC (1 << 1)
24#define FIMC_CLK_INV_HREF (1 << 2)
25#define FIMC_CLK_INV_HSYNC (1 << 3)
26
27struct i2c_board_info;
28
29/**
Sylwester Nawrockidf7e09a2010-12-27 14:42:15 -030030 * struct s5p_fimc_isp_info - image sensor information required for host
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030031 * interace configuration.
32 *
33 * @board_info: pointer to I2C subdevice's board info
Sylwester Nawrockia25be182010-12-27 15:34:43 -030034 * @clk_frequency: frequency of the clock the host interface provides to sensor
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030035 * @bus_type: determines bus type, MIPI, ITU-R BT.601 etc.
36 * @i2c_bus_num: i2c control bus id the sensor is attached to
37 * @mux_id: FIMC camera interface multiplexer index (separate for MIPI and ITU)
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030038 * @flags: flags defining bus signals polarity inversion (High by default)
39 */
Sylwester Nawrockidf7e09a2010-12-27 14:42:15 -030040struct s5p_fimc_isp_info {
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030041 struct i2c_board_info *board_info;
Sylwester Nawrockia25be182010-12-27 15:34:43 -030042 unsigned long clk_frequency;
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030043 enum cam_bus_type bus_type;
44 u16 i2c_bus_num;
45 u16 mux_id;
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030046 u16 flags;
47};
48
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030049/**
Sylwester Nawrockidf7e09a2010-12-27 14:42:15 -030050 * struct s5p_platform_fimc - camera host interface platform data
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030051 *
52 * @isp_info: properties of camera sensor required for host interface setup
Sylwester Nawrocki117182d2011-02-28 11:12:19 -030053 * @num_clients: the number of attached image sensors
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030054 */
Sylwester Nawrockidf7e09a2010-12-27 14:42:15 -030055struct s5p_platform_fimc {
Sylwester Nawrocki117182d2011-02-28 11:12:19 -030056 struct s5p_fimc_isp_info *isp_info;
57 int num_clients;
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030058};
Sylwester Nawrockidf7e09a2010-12-27 14:42:15 -030059#endif /* S5P_FIMC_H_ */