blob: 2b589042588d96682408416c8d8788c250f264ce [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.
Sylwester Nawrockie0eec9a2011-02-21 12:09:01 -030036 * @csi_data_align: MIPI-CSI interface data alignment in bits
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030037 * @i2c_bus_num: i2c control bus id the sensor is attached to
38 * @mux_id: FIMC camera interface multiplexer index (separate for MIPI and ITU)
Sylwester Nawrockid3953222011-09-01 06:01:08 -030039 * @clk_id: index of the SoC peripheral clock for sensors
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030040 * @flags: flags defining bus signals polarity inversion (High by default)
41 */
Sylwester Nawrockidf7e09a2010-12-27 14:42:15 -030042struct s5p_fimc_isp_info {
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030043 struct i2c_board_info *board_info;
Sylwester Nawrockia25be182010-12-27 15:34:43 -030044 unsigned long clk_frequency;
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030045 enum cam_bus_type bus_type;
Sylwester Nawrockie0eec9a2011-02-21 12:09:01 -030046 u16 csi_data_align;
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030047 u16 i2c_bus_num;
48 u16 mux_id;
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030049 u16 flags;
Sylwester Nawrockid3953222011-09-01 06:01:08 -030050 u8 clk_id;
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030051};
52
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030053/**
Sylwester Nawrockidf7e09a2010-12-27 14:42:15 -030054 * struct s5p_platform_fimc - camera host interface platform data
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030055 *
56 * @isp_info: properties of camera sensor required for host interface setup
Sylwester Nawrocki117182d2011-02-28 11:12:19 -030057 * @num_clients: the number of attached image sensors
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030058 */
Sylwester Nawrockidf7e09a2010-12-27 14:42:15 -030059struct s5p_platform_fimc {
Sylwester Nawrocki117182d2011-02-28 11:12:19 -030060 struct s5p_fimc_isp_info *isp_info;
61 int num_clients;
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030062};
Sylwester Nawrockie1d72f42011-06-10 15:36:58 -030063
64/*
65 * v4l2_device notification id. This is only for internal use in the kernel.
66 * Sensor subdevs should issue S5P_FIMC_TX_END_NOTIFY notification in single
67 * frame capture mode when there is only one VSYNC pulse issued by the sensor
68 * at begining of the frame transmission.
69 */
70#define S5P_FIMC_TX_END_NOTIFY _IO('e', 0)
71
Sylwester Nawrockidf7e09a2010-12-27 14:42:15 -030072#endif /* S5P_FIMC_H_ */