summaryrefslogtreecommitdiff
path: root/drivers/media/platform/rk-isp10/cif_isp10_version.h
blob: 100bffdd46253564f6b20610ebbffd71a13c3897 (plain)
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
91
/*
 *************************************************************************
 * Rockchip driver for CIF ISP 1.0
 * (Based on Intel driver for sofiaxxx)
 *
 * Copyright (C) 2015 Intel Mobile Communications GmbH
 * Copyright (C) 2016 Fuzhou Rockchip Electronics Co., Ltd.
 *
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *************************************************************************
 */
 #ifndef _CIF_ISP10_RK_VERSION_H_
#define _CIF_ISP10_RK_VERSION_H_
#include <linux/version.h>

/*
 *       CIF DRIVER VERSION NOTE
 *
 *v0.1.0:
 *1. New mi register update mode is invalidate in raw/jpeg for rk1108,
 * All path used old mode for rk1108;
 *v0.1.1:
 *1. Modify CIF stop sequence for fix isp bus may dead when switch isp:
 *Original stop sequence: Stop ISP(mipi) -> Stop ISP(isp) ->wait for ISP
 *isp off -> Stop ISP(mi)
 *Current stop sequence: ISP(mi) stop in mi frame end -> Stop ISP(mipi)
 *-> Stop ISP(isp) ->wait for ISP isp off;
 * Current stop sequence is only match sensor stream v-blanking >= 1.5ms;
 *
 *v0.1.2:
 *1. Disable CIF_MIPI_ERR_DPHY interrupt here temporary for
 *isp bus may be dead when switch isp;
 *2. Cancel hw restart isp operation in mipi isr, only notice error log;
 *
 *v0.1.3:
 *1. fix camerahal query exp info failed from cifisp_stat_buffer, because
 *wake_up buffer before cif_isp11_sensor_mode_data_sync;
 *
 *v0.1.4:
 *1. Disable DPHY errctrl interrupt, because this dphy erctrl signal
 *is assert and until the next changes in line state. This time is may
 *be too long and cpu is hold in this interrupt. Enable DPHY errctrl
 *interrupt again, if mipi have receive the whole frame without any error.
 *2. Modify mipi_dphy_cfg follow vendor recommended process in
 *document.
 *3. Select the limit dphy setting if sensor mipi datarate is overflow,
 *and print warning information to user.
 *
 *v0.1.5:
 *Exposure list must be queue operation, not stack. list_add switch to
 *list_add_tail in cif_isp11_s_exp;
 *
 *v0.1.6:
 *Add isp output size in struct isp_supplemental_sensor_mode_data.
 *
 *v0.1.7:
 *Add support to isp1.
 *The running of isp0 or isp1 is ok,
 *but running of isp0 and isp1 at the same time has not been tested.
 *
 *v0.1.8:
 *Fix oops error when soc_clk_disable is called in rk3399.
 *
 *v0.1.9:
 *1. Support bt656 signal interlace: odd and even field interlace generating
 *a frame image.
 *2. fix cif_isp10_img_src_v4l2_subdev_enum_strm_fmts defrect info get error.
 *3. fix cif_isp10_rk3399 cif_clk_pll info doesn't match with dts config.
 *
 *v0.1.0xa
 *Based on version 0.1.9:
 *1. To optimize the readability of the code.
 *2. optimize CIF_MI_CTRL_BURST_LEN param.
 *3. Add the check for cam_itf.type(PLTFRM_CAM_ITF_BT656_8I) on
 * cif_isp10_s_fmt_mp.
 *4. get field_flag value from cif_isp10_isp_isr.
 *
 *v0.1.0xb
 *1. Initialize default format for current stream.
 *2. Implement command VIDIOC_G_FMT.
 *3. Set bytesused of each plane to its real size.
 *4. Support io mode 'VB2_DMABUF'.
 */

#define CONFIG_CIFISP10_DRIVER_VERSION KERNEL_VERSION(0, 1, 0xa)

#endif