hc
2023-11-06 e3e12f52b214121840b44c91de5b3e5af5d3eb84
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
 * Rockchip isp1 driver
 *
 * Copyright (C) 2017 Rockchip Electronics Co., Ltd.
 *
 * This software is available to you under a choice of one of two
 * licenses.  You may choose to be licensed under the terms of the GNU
 * General Public License (GPL) Version 2, available from the file
 * COPYING in the main directory of this source tree, or the
 * OpenIB.org BSD license below:
 *
 *     Redistribution and use in source and binary forms, with or
 *     without modification, are permitted provided that the following
 *     conditions are met:
 *
 *      - Redistributions of source code must retain the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer.
 *
 *      - Redistributions in binary form must reproduce the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer in the documentation and/or other materials
 *        provided with the distribution.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
 
#ifndef _RKISP1_DEV_H
#define _RKISP1_DEV_H
 
#include "capture.h"
#include "dmarx.h"
#include "rkisp1.h"
#include "isp_params.h"
#include "isp_stats.h"
 
#define DRIVER_NAME "rkisp1"
#define ISP_VDEV_NAME DRIVER_NAME  "_ispdev"
#define SP_VDEV_NAME DRIVER_NAME   "_selfpath"
#define MP_VDEV_NAME DRIVER_NAME   "_mainpath"
#define DMA_VDEV_NAME DRIVER_NAME  "_dmapath"
#define RAW_VDEV_NAME DRIVER_NAME  "_rawpath"
 
#define GRP_ID_SENSOR            BIT(0)
#define GRP_ID_MIPIPHY            BIT(1)
#define GRP_ID_ISP            BIT(2)
#define GRP_ID_ISP_MP            BIT(3)
#define GRP_ID_ISP_SP            BIT(4)
#define GRP_ID_ISP_DMARX        BIT(5)
 
#define RKISP1_MAX_BUS_CLK    8
#define RKISP1_MAX_SENSOR    2
#define RKISP1_MAX_PIPELINE    4
 
#define RKISP1_MEDIA_BUS_FMT_MASK    0xF000
#define RKISP1_MEDIA_BUS_FMT_BAYER    0x3000
 
#define RKISP1_CONTI_ERR_MAX        50
 
/* ISP_V10_1 for only support MP */
enum rkisp1_isp_ver {
   ISP_V10 = 0x00,
   ISP_V10_1 = 0x01,
   ISP_V11 = 0x10,
   ISP_V12 = 0x20,
   ISP_V13 = 0x30,
};
 
enum rkisp1_isp_state {
   ISP_STOP = 0,
   ISP_START,
   ISP_ERROR
};
 
enum rkisp1_isp_inp {
   INP_INVAL = 0,
   INP_CSI,
   INP_DVP,
   INP_DMARX_ISP,
};
 
/*
 * struct rkisp1_pipeline - An ISP hardware pipeline
 *
 * Capture device call other devices via pipeline
 *
 * @num_subdevs: number of linked subdevs
 * @power_cnt: pipeline power count
 * @stream_cnt: stream power count
 */
struct rkisp1_pipeline {
   struct media_pipeline pipe;
   int num_subdevs;
   atomic_t power_cnt;
   atomic_t stream_cnt;
   struct v4l2_subdev *subdevs[RKISP1_MAX_PIPELINE];
   int (*open)(struct rkisp1_pipeline *p,
           struct media_entity *me, bool prepare);
   int (*close)(struct rkisp1_pipeline *p);
   int (*set_stream)(struct rkisp1_pipeline *p, bool on);
};
 
/*
 * struct rkisp1_sensor_info - Sensor infomations
 * @mbus: media bus configuration
 */
struct rkisp1_sensor_info {
   struct v4l2_subdev *sd;
   struct v4l2_mbus_config mbus;
   struct v4l2_subdev_format fmt;
   struct v4l2_subdev_pad_config cfg;
};
 
/*
 * struct rkisp1_device - ISP platform device
 * @base_addr: base register address
 * @active_sensor: sensor in-use, set when streaming on
 * @isp_sdev: ISP sub-device
 * @rkisp1_stream: capture video device
 * @stats_vdev: ISP statistics output device
 * @params_vdev: ISP input parameters device
 */
struct rkisp1_device {
   struct list_head list;
   struct regmap *grf;
   void __iomem *base_addr;
   int irq;
   struct device *dev;
   struct clk *clks[RKISP1_MAX_BUS_CLK];
   int num_clks;
   struct v4l2_device v4l2_dev;
   struct v4l2_ctrl_handler ctrl_handler;
   struct media_device media_dev;
   struct v4l2_async_notifier notifier;
   struct v4l2_subdev *subdevs[RKISP1_SD_MAX];
   struct rkisp1_sensor_info *active_sensor;
   struct rkisp1_sensor_info sensors[RKISP1_MAX_SENSOR];
   int num_sensors;
   struct rkisp1_isp_subdev isp_sdev;
   struct rkisp1_stream stream[RKISP1_MAX_STREAM];
   struct rkisp1_isp_stats_vdev stats_vdev;
   struct rkisp1_isp_params_vdev params_vdev;
   struct rkisp1_dmarx_device dmarx_dev;
   struct rkisp1_pipeline pipe;
   struct iommu_domain *domain;
   enum rkisp1_isp_ver isp_ver;
   const unsigned int *clk_rate_tbl;
   int num_clk_rate_tbl;
   atomic_t open_cnt;
   struct rkisp1_emd_data emd_data_fifo[RKISP1_EMDDATA_FIFO_MAX];
   unsigned int emd_data_idx;
   unsigned int emd_vc;
   unsigned int emd_dt;
   int vs_irq;
   int mipi_irq;
   struct gpio_desc *vs_irq_gpio;
   struct v4l2_subdev *hdr_sensor;
   enum rkisp1_isp_state isp_state;
   unsigned int isp_err_cnt;
   enum rkisp1_isp_inp isp_inp;
   struct mutex apilock; /* mutex to serialize the calls of stream */
   struct mutex iqlock; /* mutex to serialize the calls of iq */
   wait_queue_head_t sync_onoff;
};
 
#endif