blob: d6dbb791f4231b10c66ba4fe0a411f6b3e041ba8 [file] [log] [blame]
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -03001/*
Sylwester Nawrocki56bc9112013-02-01 15:00:40 -03002 * Samsung S5P/Exynos4 SoC series camera interface driver header
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -03003 *
Sylwester Nawrocki56bc9112013-02-01 15:00:40 -03004 * Copyright (C) 2010 - 2013 Samsung Electronics Co., Ltd.
5 * Sylwester Nawrocki <s.nawrocki@samsung.com>
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -03006 *
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
Sylwester Nawrockib9ee31e2012-08-14 10:46:58 -030015#include <media/media-entity.h>
16
Sylwester Nawrocki56bc9112013-02-01 15:00:40 -030017/*
Sylwester Nawrocki02399e32013-03-26 08:20:30 -030018 * Enumeration of data inputs to the camera subsystem.
19 */
20enum fimc_input {
21 FIMC_INPUT_PARALLEL_0 = 1,
22 FIMC_INPUT_PARALLEL_1,
23 FIMC_INPUT_MIPI_CSI2_0 = 3,
24 FIMC_INPUT_MIPI_CSI2_1,
25 FIMC_INPUT_WRITEBACK_A = 5,
26 FIMC_INPUT_WRITEBACK_B,
27 FIMC_INPUT_WRITEBACK_ISP = 5,
28};
29
30/*
Sylwester Nawrocki56bc9112013-02-01 15:00:40 -030031 * Enumeration of the FIMC data bus types.
32 */
33enum fimc_bus_type {
34 /* Camera parallel bus */
35 FIMC_BUS_TYPE_ITU_601 = 1,
36 /* Camera parallel bus with embedded synchronization */
37 FIMC_BUS_TYPE_ITU_656,
38 /* Camera MIPI-CSI2 serial bus */
39 FIMC_BUS_TYPE_MIPI_CSI2,
40 /* FIFO link from LCD controller (WriteBack A) */
41 FIMC_BUS_TYPE_LCD_WRITEBACK_A,
42 /* FIFO link from LCD controller (WriteBack B) */
43 FIMC_BUS_TYPE_LCD_WRITEBACK_B,
44 /* FIFO link from FIMC-IS */
45 FIMC_BUS_TYPE_ISP_WRITEBACK = FIMC_BUS_TYPE_LCD_WRITEBACK_B,
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030046};
47
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030048struct i2c_board_info;
49
50/**
Sylwester Nawrocki56bc9112013-02-01 15:00:40 -030051 * struct fimc_source_info - video source description required for the host
52 * interface configuration
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030053 *
54 * @board_info: pointer to I2C subdevice's board info
Sylwester Nawrockia25be182010-12-27 15:34:43 -030055 * @clk_frequency: frequency of the clock the host interface provides to sensor
Sylwester Nawrocki56bc9112013-02-01 15:00:40 -030056 * @fimc_bus_type: FIMC camera input type
57 * @sensor_bus_type: image sensor bus type, MIPI, ITU-R BT.601 etc.
58 * @flags: the parallel sensor bus flags defining signals polarity (V4L2_MBUS_*)
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030059 * @i2c_bus_num: i2c control bus id the sensor is attached to
60 * @mux_id: FIMC camera interface multiplexer index (separate for MIPI and ITU)
Sylwester Nawrockid3953222011-09-01 06:01:08 -030061 * @clk_id: index of the SoC peripheral clock for sensors
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030062 */
Sylwester Nawrocki56bc9112013-02-01 15:00:40 -030063struct fimc_source_info {
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030064 struct i2c_board_info *board_info;
Sylwester Nawrockia25be182010-12-27 15:34:43 -030065 unsigned long clk_frequency;
Sylwester Nawrocki56bc9112013-02-01 15:00:40 -030066 enum fimc_bus_type fimc_bus_type;
67 enum fimc_bus_type sensor_bus_type;
68 u16 flags;
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030069 u16 i2c_bus_num;
70 u16 mux_id;
Sylwester Nawrockid3953222011-09-01 06:01:08 -030071 u8 clk_id;
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030072};
73
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030074/**
Sylwester Nawrockidf7e09a2010-12-27 14:42:15 -030075 * struct s5p_platform_fimc - camera host interface platform data
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030076 *
Sylwester Nawrocki56bc9112013-02-01 15:00:40 -030077 * @source_info: properties of an image source for the host interface setup
78 * @num_clients: the number of attached image sources
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030079 */
Sylwester Nawrockidf7e09a2010-12-27 14:42:15 -030080struct s5p_platform_fimc {
Sylwester Nawrocki56bc9112013-02-01 15:00:40 -030081 struct fimc_source_info *source_info;
Sylwester Nawrocki117182d2011-02-28 11:12:19 -030082 int num_clients;
Sylwester Nawrocki5f3cc442010-10-07 10:06:16 -030083};
Sylwester Nawrockie1d72f42011-06-10 15:36:58 -030084
85/*
86 * v4l2_device notification id. This is only for internal use in the kernel.
87 * Sensor subdevs should issue S5P_FIMC_TX_END_NOTIFY notification in single
88 * frame capture mode when there is only one VSYNC pulse issued by the sensor
89 * at begining of the frame transmission.
90 */
91#define S5P_FIMC_TX_END_NOTIFY _IO('e', 0)
92
Sylwester Nawrocki0f735f52012-04-27 09:33:10 -030093enum fimc_subdev_index {
94 IDX_SENSOR,
95 IDX_CSIS,
96 IDX_FLITE,
97 IDX_FIMC,
98 IDX_MAX,
99};
100
101struct media_pipeline;
102struct v4l2_subdev;
103
104struct fimc_pipeline {
105 struct v4l2_subdev *subdevs[IDX_MAX];
106 struct media_pipeline *m_pipeline;
107};
108
Sylwester Nawrockib9ee31e2012-08-14 10:46:58 -0300109/*
110 * Media pipeline operations to be called from within the fimc(-lite)
111 * video node when it is the last entity of the pipeline. Implemented
112 * by corresponding media device driver.
113 */
114struct fimc_pipeline_ops {
115 int (*open)(struct fimc_pipeline *p, struct media_entity *me,
116 bool resume);
117 int (*close)(struct fimc_pipeline *p);
118 int (*set_stream)(struct fimc_pipeline *p, bool state);
119};
120
121#define fimc_pipeline_call(f, op, p, args...) \
122 (!(f) ? -ENODEV : (((f)->pipeline_ops && (f)->pipeline_ops->op) ? \
123 (f)->pipeline_ops->op((p), ##args) : -ENOIOCTLCMD))
124
Sylwester Nawrockidf7e09a2010-12-27 14:42:15 -0300125#endif /* S5P_FIMC_H_ */