blob: 44ccc63d4151ae51ba117fa24a1bcee1dd26cf41 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/* linux/arch/arm/plat-s5p/include/plat/fimc_is.h
*
* Copyright (C) 2011 Samsung Electronics, Co. Ltd
*
* Exynos 4 series FIMC-IS slave device support
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef EXYNOS_FIMC_IS_H_
#define EXYNOS_FIMC_IS_H_ __FILE__
#include <linux/videodev2.h>
#define FIMC_IS_MAX_CAMIF_CLIENTS 2
#define EXYNOS4_FIMC_IS_MAX_DIV_CLOCKS 2
#define EXYNOS4_FIMC_IS_MAX_CONTROL_CLOCKS 16
#define UART_ISP_SEL 0
#define UART_ISP_RATIO 1
#define to_fimc_is_plat(d) (to_platform_device(d)->dev.platform_data)
struct platform_device;
/**
* struct exynos4_fimc_is_sensor_info - image sensor information required for host
* interace configuration.
*
* @board_info: pointer to I2C subdevice's board info
* @clk_frequency: frequency of the clock the host interface provides to sensor
* @bus_type: determines bus type, MIPI, ITU-R BT.601 etc.
* @csi_data_align: MIPI-CSI interface data alignment in bits
* @i2c_bus_num: i2c control bus id the sensor is attached to
* @mux_id: FIMC camera interface multiplexer index (separate for MIPI and ITU)
* @flags: flags defining bus signals polarity inversion (High by default)
*/
struct exynos4_fimc_is_sensor_info {
};
/**
* struct exynos4_platform_fimc_is - camera host interface platform data
*
* @isp_info: properties of camera sensor required for host interface setup
*/
struct exynos4_platform_fimc_is {
int hw_ver;
struct clk *div_clock[EXYNOS4_FIMC_IS_MAX_DIV_CLOCKS];
struct clk *control_clock[EXYNOS4_FIMC_IS_MAX_CONTROL_CLOCKS];
void (*cfg_gpio)(struct platform_device *pdev);
int (*clk_get)(struct platform_device *pdev);
int (*clk_put)(struct platform_device *pdev);
int (*clk_cfg)(struct platform_device *pdev);
int (*clk_on)(struct platform_device *pdev);
int (*clk_off)(struct platform_device *pdev);
};
struct exynos5_platform_fimc_is {
int hw_ver;
struct exynos4_fimc_is_sensor_info
*sensor_info[FIMC_IS_MAX_CAMIF_CLIENTS];
void (*cfg_gpio)(struct platform_device *pdev);
int (*clk_cfg)(struct platform_device *pdev);
int (*clk_on)(struct platform_device *pdev);
int (*clk_off)(struct platform_device *pdev);
};
extern struct exynos4_platform_fimc_is exynos4_fimc_is_default_data;
extern void exynos4_fimc_is_set_platdata(struct exynos4_platform_fimc_is *pd);
extern void exynos5_fimc_is_set_platdata(struct exynos5_platform_fimc_is *pd);
/* defined by architecture to configure gpio */
extern void exynos_fimc_is_cfg_gpio(struct platform_device *pdev);
/* platform specific clock functions */
extern int exynos_fimc_is_cfg_clk(struct platform_device *pdev);
extern int exynos_fimc_is_clk_on(struct platform_device *pdev);
extern int exynos_fimc_is_clk_off(struct platform_device *pdev);
extern int exynos_fimc_is_clk_get(struct platform_device *pdev);
extern int exynos_fimc_is_clk_put(struct platform_device *pdev);
/* defined by architecture to configure gpio */
extern void exynos5_fimc_is_cfg_gpio(struct platform_device *pdev);
/* platform specific clock functions */
extern int exynos5_fimc_is_cfg_clk(struct platform_device *pdev);
extern int exynos5_fimc_is_clk_on(struct platform_device *pdev);
extern int exynos5_fimc_is_clk_off(struct platform_device *pdev);
#endif /* EXYNOS_FIMC_IS_H_ */
|