1ceafdaacSMauro Carvalho Chehab /* SPDX-License-Identifier: GPL-2.0-only */
2ceafdaacSMauro Carvalho Chehab /*
3ceafdaacSMauro Carvalho Chehab * isp.h
4ceafdaacSMauro Carvalho Chehab *
5ceafdaacSMauro Carvalho Chehab * TI OMAP3 ISP - Core
6ceafdaacSMauro Carvalho Chehab *
7ceafdaacSMauro Carvalho Chehab * Copyright (C) 2009-2010 Nokia Corporation
8ceafdaacSMauro Carvalho Chehab * Copyright (C) 2009 Texas Instruments, Inc.
9ceafdaacSMauro Carvalho Chehab *
10ceafdaacSMauro Carvalho Chehab * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11ceafdaacSMauro Carvalho Chehab * Sakari Ailus <sakari.ailus@iki.fi>
12ceafdaacSMauro Carvalho Chehab */
13ceafdaacSMauro Carvalho Chehab
14ceafdaacSMauro Carvalho Chehab #ifndef OMAP3_ISP_CORE_H
15ceafdaacSMauro Carvalho Chehab #define OMAP3_ISP_CORE_H
16ceafdaacSMauro Carvalho Chehab
17ceafdaacSMauro Carvalho Chehab #include <media/media-entity.h>
18ceafdaacSMauro Carvalho Chehab #include <media/v4l2-async.h>
19ceafdaacSMauro Carvalho Chehab #include <media/v4l2-device.h>
20ceafdaacSMauro Carvalho Chehab #include <linux/clk-provider.h>
21ceafdaacSMauro Carvalho Chehab #include <linux/device.h>
22ceafdaacSMauro Carvalho Chehab #include <linux/io.h>
23ceafdaacSMauro Carvalho Chehab #include <linux/platform_device.h>
24ceafdaacSMauro Carvalho Chehab #include <linux/wait.h>
25ceafdaacSMauro Carvalho Chehab
26ceafdaacSMauro Carvalho Chehab #include "omap3isp.h"
27ceafdaacSMauro Carvalho Chehab #include "ispstat.h"
28ceafdaacSMauro Carvalho Chehab #include "ispccdc.h"
29ceafdaacSMauro Carvalho Chehab #include "ispreg.h"
30ceafdaacSMauro Carvalho Chehab #include "ispresizer.h"
31ceafdaacSMauro Carvalho Chehab #include "isppreview.h"
32ceafdaacSMauro Carvalho Chehab #include "ispcsiphy.h"
33ceafdaacSMauro Carvalho Chehab #include "ispcsi2.h"
34ceafdaacSMauro Carvalho Chehab #include "ispccp2.h"
35ceafdaacSMauro Carvalho Chehab
36ceafdaacSMauro Carvalho Chehab #define ISP_TOK_TERM 0xFFFFFFFF /*
37ceafdaacSMauro Carvalho Chehab * terminating token for ISP
38ceafdaacSMauro Carvalho Chehab * modules reg list
39ceafdaacSMauro Carvalho Chehab */
40ceafdaacSMauro Carvalho Chehab #define to_isp_device(ptr_module) \
41ceafdaacSMauro Carvalho Chehab container_of(ptr_module, struct isp_device, isp_##ptr_module)
42ceafdaacSMauro Carvalho Chehab #define to_device(ptr_module) \
43ceafdaacSMauro Carvalho Chehab (to_isp_device(ptr_module)->dev)
44ceafdaacSMauro Carvalho Chehab
45ceafdaacSMauro Carvalho Chehab enum isp_mem_resources {
46ceafdaacSMauro Carvalho Chehab OMAP3_ISP_IOMEM_MAIN,
47ceafdaacSMauro Carvalho Chehab OMAP3_ISP_IOMEM_CCP2,
48ceafdaacSMauro Carvalho Chehab OMAP3_ISP_IOMEM_CCDC,
49ceafdaacSMauro Carvalho Chehab OMAP3_ISP_IOMEM_HIST,
50ceafdaacSMauro Carvalho Chehab OMAP3_ISP_IOMEM_H3A,
51ceafdaacSMauro Carvalho Chehab OMAP3_ISP_IOMEM_PREV,
52ceafdaacSMauro Carvalho Chehab OMAP3_ISP_IOMEM_RESZ,
53ceafdaacSMauro Carvalho Chehab OMAP3_ISP_IOMEM_SBL,
54ceafdaacSMauro Carvalho Chehab OMAP3_ISP_IOMEM_CSI2A_REGS1,
55ceafdaacSMauro Carvalho Chehab OMAP3_ISP_IOMEM_CSIPHY2,
56ceafdaacSMauro Carvalho Chehab OMAP3_ISP_IOMEM_CSI2A_REGS2,
57ceafdaacSMauro Carvalho Chehab OMAP3_ISP_IOMEM_CSI2C_REGS1,
58ceafdaacSMauro Carvalho Chehab OMAP3_ISP_IOMEM_CSIPHY1,
59ceafdaacSMauro Carvalho Chehab OMAP3_ISP_IOMEM_CSI2C_REGS2,
60ceafdaacSMauro Carvalho Chehab OMAP3_ISP_IOMEM_LAST
61ceafdaacSMauro Carvalho Chehab };
62ceafdaacSMauro Carvalho Chehab
63ceafdaacSMauro Carvalho Chehab enum isp_sbl_resource {
64ceafdaacSMauro Carvalho Chehab OMAP3_ISP_SBL_CSI1_READ = 0x1,
65ceafdaacSMauro Carvalho Chehab OMAP3_ISP_SBL_CSI1_WRITE = 0x2,
66ceafdaacSMauro Carvalho Chehab OMAP3_ISP_SBL_CSI2A_WRITE = 0x4,
67ceafdaacSMauro Carvalho Chehab OMAP3_ISP_SBL_CSI2C_WRITE = 0x8,
68ceafdaacSMauro Carvalho Chehab OMAP3_ISP_SBL_CCDC_LSC_READ = 0x10,
69ceafdaacSMauro Carvalho Chehab OMAP3_ISP_SBL_CCDC_WRITE = 0x20,
70ceafdaacSMauro Carvalho Chehab OMAP3_ISP_SBL_PREVIEW_READ = 0x40,
71ceafdaacSMauro Carvalho Chehab OMAP3_ISP_SBL_PREVIEW_WRITE = 0x80,
72ceafdaacSMauro Carvalho Chehab OMAP3_ISP_SBL_RESIZER_READ = 0x100,
73ceafdaacSMauro Carvalho Chehab OMAP3_ISP_SBL_RESIZER_WRITE = 0x200,
74ceafdaacSMauro Carvalho Chehab };
75ceafdaacSMauro Carvalho Chehab
76ceafdaacSMauro Carvalho Chehab enum isp_subclk_resource {
77ceafdaacSMauro Carvalho Chehab OMAP3_ISP_SUBCLK_CCDC = (1 << 0),
78ceafdaacSMauro Carvalho Chehab OMAP3_ISP_SUBCLK_AEWB = (1 << 1),
79ceafdaacSMauro Carvalho Chehab OMAP3_ISP_SUBCLK_AF = (1 << 2),
80ceafdaacSMauro Carvalho Chehab OMAP3_ISP_SUBCLK_HIST = (1 << 3),
81ceafdaacSMauro Carvalho Chehab OMAP3_ISP_SUBCLK_PREVIEW = (1 << 4),
82ceafdaacSMauro Carvalho Chehab OMAP3_ISP_SUBCLK_RESIZER = (1 << 5),
83ceafdaacSMauro Carvalho Chehab };
84ceafdaacSMauro Carvalho Chehab
85ceafdaacSMauro Carvalho Chehab /* ISP: OMAP 34xx ES 1.0 */
86ceafdaacSMauro Carvalho Chehab #define ISP_REVISION_1_0 0x10
87ceafdaacSMauro Carvalho Chehab /* ISP2: OMAP 34xx ES 2.0, 2.1 and 3.0 */
88ceafdaacSMauro Carvalho Chehab #define ISP_REVISION_2_0 0x20
89ceafdaacSMauro Carvalho Chehab /* ISP2P: OMAP 36xx */
90ceafdaacSMauro Carvalho Chehab #define ISP_REVISION_15_0 0xF0
91ceafdaacSMauro Carvalho Chehab
92ceafdaacSMauro Carvalho Chehab #define ISP_PHY_TYPE_3430 0
93ceafdaacSMauro Carvalho Chehab #define ISP_PHY_TYPE_3630 1
94ceafdaacSMauro Carvalho Chehab
95ceafdaacSMauro Carvalho Chehab struct regmap;
96ceafdaacSMauro Carvalho Chehab
97ceafdaacSMauro Carvalho Chehab /*
98ceafdaacSMauro Carvalho Chehab * struct isp_res_mapping - Map ISP io resources to ISP revision.
99ceafdaacSMauro Carvalho Chehab * @isp_rev: ISP_REVISION_x_x
100ceafdaacSMauro Carvalho Chehab * @offset: register offsets of various ISP sub-blocks
101ceafdaacSMauro Carvalho Chehab * @phy_type: ISP_PHY_TYPE_{3430,3630}
102ceafdaacSMauro Carvalho Chehab */
103ceafdaacSMauro Carvalho Chehab struct isp_res_mapping {
104ceafdaacSMauro Carvalho Chehab u32 isp_rev;
105ceafdaacSMauro Carvalho Chehab u32 offset[OMAP3_ISP_IOMEM_LAST];
106ceafdaacSMauro Carvalho Chehab u32 phy_type;
107ceafdaacSMauro Carvalho Chehab };
108ceafdaacSMauro Carvalho Chehab
109ceafdaacSMauro Carvalho Chehab /*
110ceafdaacSMauro Carvalho Chehab * struct isp_reg - Structure for ISP register values.
111ceafdaacSMauro Carvalho Chehab * @reg: 32-bit Register address.
112ceafdaacSMauro Carvalho Chehab * @val: 32-bit Register value.
113ceafdaacSMauro Carvalho Chehab */
114ceafdaacSMauro Carvalho Chehab struct isp_reg {
115ceafdaacSMauro Carvalho Chehab enum isp_mem_resources mmio_range;
116ceafdaacSMauro Carvalho Chehab u32 reg;
117ceafdaacSMauro Carvalho Chehab u32 val;
118ceafdaacSMauro Carvalho Chehab };
119ceafdaacSMauro Carvalho Chehab
120ceafdaacSMauro Carvalho Chehab enum isp_xclk_id {
121ceafdaacSMauro Carvalho Chehab ISP_XCLK_A,
122ceafdaacSMauro Carvalho Chehab ISP_XCLK_B,
123ceafdaacSMauro Carvalho Chehab };
124ceafdaacSMauro Carvalho Chehab
125ceafdaacSMauro Carvalho Chehab struct isp_xclk {
126ceafdaacSMauro Carvalho Chehab struct isp_device *isp;
127ceafdaacSMauro Carvalho Chehab struct clk_hw hw;
128ceafdaacSMauro Carvalho Chehab struct clk *clk;
129ceafdaacSMauro Carvalho Chehab enum isp_xclk_id id;
130ceafdaacSMauro Carvalho Chehab
131ceafdaacSMauro Carvalho Chehab spinlock_t lock; /* Protects enabled and divider */
132ceafdaacSMauro Carvalho Chehab bool enabled;
133ceafdaacSMauro Carvalho Chehab unsigned int divider;
134ceafdaacSMauro Carvalho Chehab };
135ceafdaacSMauro Carvalho Chehab
136ceafdaacSMauro Carvalho Chehab /*
137ceafdaacSMauro Carvalho Chehab * struct isp_device - ISP device structure.
138ceafdaacSMauro Carvalho Chehab * @dev: Device pointer specific to the OMAP3 ISP.
139ceafdaacSMauro Carvalho Chehab * @revision: Stores current ISP module revision.
140ceafdaacSMauro Carvalho Chehab * @irq_num: Currently used IRQ number.
141ceafdaacSMauro Carvalho Chehab * @mmio_base: Array with kernel base addresses for ioremapped ISP register
142ceafdaacSMauro Carvalho Chehab * regions.
143ceafdaacSMauro Carvalho Chehab * @mmio_hist_base_phys: Physical L4 bus address for ISP hist block register
144ceafdaacSMauro Carvalho Chehab * region.
145ceafdaacSMauro Carvalho Chehab * @syscon: Regmap for the syscon register space
146ceafdaacSMauro Carvalho Chehab * @syscon_offset: Offset of the CSIPHY control register in syscon
147ceafdaacSMauro Carvalho Chehab * @phy_type: ISP_PHY_TYPE_{3430,3630}
148ceafdaacSMauro Carvalho Chehab * @mapping: IOMMU mapping
149ceafdaacSMauro Carvalho Chehab * @stat_lock: Spinlock for handling statistics
150ceafdaacSMauro Carvalho Chehab * @isp_mutex: Mutex for serializing requests to ISP.
151ceafdaacSMauro Carvalho Chehab * @stop_failure: Indicates that an entity failed to stop.
152ceafdaacSMauro Carvalho Chehab * @crashed: Crashed ent_enum
153ceafdaacSMauro Carvalho Chehab * @has_context: Context has been saved at least once and can be restored.
154ceafdaacSMauro Carvalho Chehab * @ref_count: Reference count for handling multiple ISP requests.
155ceafdaacSMauro Carvalho Chehab * @cam_ick: Pointer to camera interface clock structure.
156ceafdaacSMauro Carvalho Chehab * @cam_mclk: Pointer to camera functional clock structure.
157ceafdaacSMauro Carvalho Chehab * @csi2_fck: Pointer to camera CSI2 complexIO clock structure.
158ceafdaacSMauro Carvalho Chehab * @l3_ick: Pointer to OMAP3 L3 bus interface clock.
159ceafdaacSMauro Carvalho Chehab * @xclks: External clocks provided by the ISP
160ceafdaacSMauro Carvalho Chehab * @irq: Currently attached ISP ISR callbacks information structure.
161ceafdaacSMauro Carvalho Chehab * @isp_af: Pointer to current settings for ISP AutoFocus SCM.
162ceafdaacSMauro Carvalho Chehab * @isp_hist: Pointer to current settings for ISP Histogram SCM.
163ceafdaacSMauro Carvalho Chehab * @isp_h3a: Pointer to current settings for ISP Auto Exposure and
164ceafdaacSMauro Carvalho Chehab * White Balance SCM.
165ceafdaacSMauro Carvalho Chehab * @isp_res: Pointer to current settings for ISP Resizer.
166ceafdaacSMauro Carvalho Chehab * @isp_prev: Pointer to current settings for ISP Preview.
167ceafdaacSMauro Carvalho Chehab * @isp_ccdc: Pointer to current settings for ISP CCDC.
168ceafdaacSMauro Carvalho Chehab * @platform_cb: ISP driver callback function pointers for platform code
169ceafdaacSMauro Carvalho Chehab *
170ceafdaacSMauro Carvalho Chehab * This structure is used to store the OMAP ISP Information.
171ceafdaacSMauro Carvalho Chehab */
172ceafdaacSMauro Carvalho Chehab struct isp_device {
173ceafdaacSMauro Carvalho Chehab struct v4l2_device v4l2_dev;
174ceafdaacSMauro Carvalho Chehab struct v4l2_async_notifier notifier;
175ceafdaacSMauro Carvalho Chehab struct media_device media_dev;
176ceafdaacSMauro Carvalho Chehab struct device *dev;
177ceafdaacSMauro Carvalho Chehab u32 revision;
178ceafdaacSMauro Carvalho Chehab
179ceafdaacSMauro Carvalho Chehab /* platform HW resources */
180ceafdaacSMauro Carvalho Chehab unsigned int irq_num;
181ceafdaacSMauro Carvalho Chehab
182ceafdaacSMauro Carvalho Chehab void __iomem *mmio_base[OMAP3_ISP_IOMEM_LAST];
183ceafdaacSMauro Carvalho Chehab unsigned long mmio_hist_base_phys;
184ceafdaacSMauro Carvalho Chehab struct regmap *syscon;
185ceafdaacSMauro Carvalho Chehab u32 syscon_offset;
186ceafdaacSMauro Carvalho Chehab u32 phy_type;
187ceafdaacSMauro Carvalho Chehab
188ceafdaacSMauro Carvalho Chehab struct dma_iommu_mapping *mapping;
189ceafdaacSMauro Carvalho Chehab
190ceafdaacSMauro Carvalho Chehab /* ISP Obj */
191ceafdaacSMauro Carvalho Chehab spinlock_t stat_lock; /* common lock for statistic drivers */
192ceafdaacSMauro Carvalho Chehab struct mutex isp_mutex; /* For handling ref_count field */
193ceafdaacSMauro Carvalho Chehab bool stop_failure;
194ceafdaacSMauro Carvalho Chehab struct media_entity_enum crashed;
195ceafdaacSMauro Carvalho Chehab int has_context;
196ceafdaacSMauro Carvalho Chehab int ref_count;
197ceafdaacSMauro Carvalho Chehab unsigned int autoidle;
198ceafdaacSMauro Carvalho Chehab #define ISP_CLK_CAM_ICK 0
199ceafdaacSMauro Carvalho Chehab #define ISP_CLK_CAM_MCLK 1
200ceafdaacSMauro Carvalho Chehab #define ISP_CLK_CSI2_FCK 2
201ceafdaacSMauro Carvalho Chehab #define ISP_CLK_L3_ICK 3
202ceafdaacSMauro Carvalho Chehab struct clk *clock[4];
203ceafdaacSMauro Carvalho Chehab struct isp_xclk xclks[2];
204ceafdaacSMauro Carvalho Chehab
205ceafdaacSMauro Carvalho Chehab /* ISP modules */
206ceafdaacSMauro Carvalho Chehab struct ispstat isp_af;
207ceafdaacSMauro Carvalho Chehab struct ispstat isp_aewb;
208ceafdaacSMauro Carvalho Chehab struct ispstat isp_hist;
209ceafdaacSMauro Carvalho Chehab struct isp_res_device isp_res;
210ceafdaacSMauro Carvalho Chehab struct isp_prev_device isp_prev;
211ceafdaacSMauro Carvalho Chehab struct isp_ccdc_device isp_ccdc;
212ceafdaacSMauro Carvalho Chehab struct isp_csi2_device isp_csi2a;
213ceafdaacSMauro Carvalho Chehab struct isp_csi2_device isp_csi2c;
214ceafdaacSMauro Carvalho Chehab struct isp_ccp2_device isp_ccp2;
215ceafdaacSMauro Carvalho Chehab struct isp_csiphy isp_csiphy1;
216ceafdaacSMauro Carvalho Chehab struct isp_csiphy isp_csiphy2;
217ceafdaacSMauro Carvalho Chehab
218ceafdaacSMauro Carvalho Chehab unsigned int sbl_resources;
219ceafdaacSMauro Carvalho Chehab unsigned int subclk_resources;
220ceafdaacSMauro Carvalho Chehab };
221ceafdaacSMauro Carvalho Chehab
222ceafdaacSMauro Carvalho Chehab struct isp_async_subdev {
223adb2dcd5SSakari Ailus struct v4l2_async_connection asd;
224ceafdaacSMauro Carvalho Chehab struct isp_bus_cfg bus;
225ceafdaacSMauro Carvalho Chehab };
226ceafdaacSMauro Carvalho Chehab
227*c91fd7b7SSakari Ailus static inline struct isp_bus_cfg *
v4l2_subdev_to_bus_cfg(struct v4l2_subdev * sd)228*c91fd7b7SSakari Ailus v4l2_subdev_to_bus_cfg(struct v4l2_subdev *sd)
229*c91fd7b7SSakari Ailus {
230*c91fd7b7SSakari Ailus struct v4l2_async_connection *asc;
231*c91fd7b7SSakari Ailus
232*c91fd7b7SSakari Ailus asc = v4l2_async_connection_unique(sd);
233*c91fd7b7SSakari Ailus if (!asc)
234*c91fd7b7SSakari Ailus return NULL;
235*c91fd7b7SSakari Ailus
236*c91fd7b7SSakari Ailus return &container_of(asc, struct isp_async_subdev, asd)->bus;
237*c91fd7b7SSakari Ailus }
238ceafdaacSMauro Carvalho Chehab
239ceafdaacSMauro Carvalho Chehab #define v4l2_dev_to_isp_device(dev) \
240ceafdaacSMauro Carvalho Chehab container_of(dev, struct isp_device, v4l2_dev)
241ceafdaacSMauro Carvalho Chehab
242ceafdaacSMauro Carvalho Chehab void omap3isp_hist_dma_done(struct isp_device *isp);
243ceafdaacSMauro Carvalho Chehab
244ceafdaacSMauro Carvalho Chehab void omap3isp_flush(struct isp_device *isp);
245ceafdaacSMauro Carvalho Chehab
246ceafdaacSMauro Carvalho Chehab int omap3isp_module_sync_idle(struct media_entity *me, wait_queue_head_t *wait,
247ceafdaacSMauro Carvalho Chehab atomic_t *stopping);
248ceafdaacSMauro Carvalho Chehab
249ceafdaacSMauro Carvalho Chehab int omap3isp_module_sync_is_stopping(wait_queue_head_t *wait,
250ceafdaacSMauro Carvalho Chehab atomic_t *stopping);
251ceafdaacSMauro Carvalho Chehab
252ceafdaacSMauro Carvalho Chehab int omap3isp_pipeline_set_stream(struct isp_pipeline *pipe,
253ceafdaacSMauro Carvalho Chehab enum isp_pipeline_stream_state state);
254ceafdaacSMauro Carvalho Chehab void omap3isp_pipeline_cancel_stream(struct isp_pipeline *pipe);
255ceafdaacSMauro Carvalho Chehab void omap3isp_configure_bridge(struct isp_device *isp,
256ceafdaacSMauro Carvalho Chehab enum ccdc_input_entity input,
257ceafdaacSMauro Carvalho Chehab const struct isp_parallel_cfg *buscfg,
258ceafdaacSMauro Carvalho Chehab unsigned int shift, unsigned int bridge);
259ceafdaacSMauro Carvalho Chehab
260ceafdaacSMauro Carvalho Chehab struct isp_device *omap3isp_get(struct isp_device *isp);
261ceafdaacSMauro Carvalho Chehab void omap3isp_put(struct isp_device *isp);
262ceafdaacSMauro Carvalho Chehab
263ceafdaacSMauro Carvalho Chehab void omap3isp_print_status(struct isp_device *isp);
264ceafdaacSMauro Carvalho Chehab
265ceafdaacSMauro Carvalho Chehab void omap3isp_sbl_enable(struct isp_device *isp, enum isp_sbl_resource res);
266ceafdaacSMauro Carvalho Chehab void omap3isp_sbl_disable(struct isp_device *isp, enum isp_sbl_resource res);
267ceafdaacSMauro Carvalho Chehab
268ceafdaacSMauro Carvalho Chehab void omap3isp_subclk_enable(struct isp_device *isp,
269ceafdaacSMauro Carvalho Chehab enum isp_subclk_resource res);
270ceafdaacSMauro Carvalho Chehab void omap3isp_subclk_disable(struct isp_device *isp,
271ceafdaacSMauro Carvalho Chehab enum isp_subclk_resource res);
272ceafdaacSMauro Carvalho Chehab
273ceafdaacSMauro Carvalho Chehab int omap3isp_register_entities(struct platform_device *pdev,
274ceafdaacSMauro Carvalho Chehab struct v4l2_device *v4l2_dev);
275ceafdaacSMauro Carvalho Chehab void omap3isp_unregister_entities(struct platform_device *pdev);
276ceafdaacSMauro Carvalho Chehab
277ceafdaacSMauro Carvalho Chehab /*
278ceafdaacSMauro Carvalho Chehab * isp_reg_readl - Read value of an OMAP3 ISP register
279ceafdaacSMauro Carvalho Chehab * @isp: Device pointer specific to the OMAP3 ISP.
280ceafdaacSMauro Carvalho Chehab * @isp_mmio_range: Range to which the register offset refers to.
281ceafdaacSMauro Carvalho Chehab * @reg_offset: Register offset to read from.
282ceafdaacSMauro Carvalho Chehab *
283ceafdaacSMauro Carvalho Chehab * Returns an unsigned 32 bit value with the required register contents.
284ceafdaacSMauro Carvalho Chehab */
285ceafdaacSMauro Carvalho Chehab static inline
isp_reg_readl(struct isp_device * isp,enum isp_mem_resources isp_mmio_range,u32 reg_offset)286ceafdaacSMauro Carvalho Chehab u32 isp_reg_readl(struct isp_device *isp, enum isp_mem_resources isp_mmio_range,
287ceafdaacSMauro Carvalho Chehab u32 reg_offset)
288ceafdaacSMauro Carvalho Chehab {
289ceafdaacSMauro Carvalho Chehab return __raw_readl(isp->mmio_base[isp_mmio_range] + reg_offset);
290ceafdaacSMauro Carvalho Chehab }
291ceafdaacSMauro Carvalho Chehab
292ceafdaacSMauro Carvalho Chehab /*
293ceafdaacSMauro Carvalho Chehab * isp_reg_writel - Write value to an OMAP3 ISP register
294ceafdaacSMauro Carvalho Chehab * @isp: Device pointer specific to the OMAP3 ISP.
295ceafdaacSMauro Carvalho Chehab * @reg_value: 32 bit value to write to the register.
296ceafdaacSMauro Carvalho Chehab * @isp_mmio_range: Range to which the register offset refers to.
297ceafdaacSMauro Carvalho Chehab * @reg_offset: Register offset to write into.
298ceafdaacSMauro Carvalho Chehab */
299ceafdaacSMauro Carvalho Chehab static inline
isp_reg_writel(struct isp_device * isp,u32 reg_value,enum isp_mem_resources isp_mmio_range,u32 reg_offset)300ceafdaacSMauro Carvalho Chehab void isp_reg_writel(struct isp_device *isp, u32 reg_value,
301ceafdaacSMauro Carvalho Chehab enum isp_mem_resources isp_mmio_range, u32 reg_offset)
302ceafdaacSMauro Carvalho Chehab {
303ceafdaacSMauro Carvalho Chehab __raw_writel(reg_value, isp->mmio_base[isp_mmio_range] + reg_offset);
304ceafdaacSMauro Carvalho Chehab }
305ceafdaacSMauro Carvalho Chehab
306ceafdaacSMauro Carvalho Chehab /*
307ceafdaacSMauro Carvalho Chehab * isp_reg_clr - Clear individual bits in an OMAP3 ISP register
308ceafdaacSMauro Carvalho Chehab * @isp: Device pointer specific to the OMAP3 ISP.
309ceafdaacSMauro Carvalho Chehab * @mmio_range: Range to which the register offset refers to.
310ceafdaacSMauro Carvalho Chehab * @reg: Register offset to work on.
311ceafdaacSMauro Carvalho Chehab * @clr_bits: 32 bit value which would be cleared in the register.
312ceafdaacSMauro Carvalho Chehab */
313ceafdaacSMauro Carvalho Chehab static inline
isp_reg_clr(struct isp_device * isp,enum isp_mem_resources mmio_range,u32 reg,u32 clr_bits)314ceafdaacSMauro Carvalho Chehab void isp_reg_clr(struct isp_device *isp, enum isp_mem_resources mmio_range,
315ceafdaacSMauro Carvalho Chehab u32 reg, u32 clr_bits)
316ceafdaacSMauro Carvalho Chehab {
317ceafdaacSMauro Carvalho Chehab u32 v = isp_reg_readl(isp, mmio_range, reg);
318ceafdaacSMauro Carvalho Chehab
319ceafdaacSMauro Carvalho Chehab isp_reg_writel(isp, v & ~clr_bits, mmio_range, reg);
320ceafdaacSMauro Carvalho Chehab }
321ceafdaacSMauro Carvalho Chehab
322ceafdaacSMauro Carvalho Chehab /*
323ceafdaacSMauro Carvalho Chehab * isp_reg_set - Set individual bits in an OMAP3 ISP register
324ceafdaacSMauro Carvalho Chehab * @isp: Device pointer specific to the OMAP3 ISP.
325ceafdaacSMauro Carvalho Chehab * @mmio_range: Range to which the register offset refers to.
326ceafdaacSMauro Carvalho Chehab * @reg: Register offset to work on.
327ceafdaacSMauro Carvalho Chehab * @set_bits: 32 bit value which would be set in the register.
328ceafdaacSMauro Carvalho Chehab */
329ceafdaacSMauro Carvalho Chehab static inline
isp_reg_set(struct isp_device * isp,enum isp_mem_resources mmio_range,u32 reg,u32 set_bits)330ceafdaacSMauro Carvalho Chehab void isp_reg_set(struct isp_device *isp, enum isp_mem_resources mmio_range,
331ceafdaacSMauro Carvalho Chehab u32 reg, u32 set_bits)
332ceafdaacSMauro Carvalho Chehab {
333ceafdaacSMauro Carvalho Chehab u32 v = isp_reg_readl(isp, mmio_range, reg);
334ceafdaacSMauro Carvalho Chehab
335ceafdaacSMauro Carvalho Chehab isp_reg_writel(isp, v | set_bits, mmio_range, reg);
336ceafdaacSMauro Carvalho Chehab }
337ceafdaacSMauro Carvalho Chehab
338ceafdaacSMauro Carvalho Chehab /*
339ceafdaacSMauro Carvalho Chehab * isp_reg_clr_set - Clear and set invidial bits in an OMAP3 ISP register
340ceafdaacSMauro Carvalho Chehab * @isp: Device pointer specific to the OMAP3 ISP.
341ceafdaacSMauro Carvalho Chehab * @mmio_range: Range to which the register offset refers to.
342ceafdaacSMauro Carvalho Chehab * @reg: Register offset to work on.
343ceafdaacSMauro Carvalho Chehab * @clr_bits: 32 bit value which would be cleared in the register.
344ceafdaacSMauro Carvalho Chehab * @set_bits: 32 bit value which would be set in the register.
345ceafdaacSMauro Carvalho Chehab *
346ceafdaacSMauro Carvalho Chehab * The clear operation is done first, and then the set operation.
347ceafdaacSMauro Carvalho Chehab */
348ceafdaacSMauro Carvalho Chehab static inline
isp_reg_clr_set(struct isp_device * isp,enum isp_mem_resources mmio_range,u32 reg,u32 clr_bits,u32 set_bits)349ceafdaacSMauro Carvalho Chehab void isp_reg_clr_set(struct isp_device *isp, enum isp_mem_resources mmio_range,
350ceafdaacSMauro Carvalho Chehab u32 reg, u32 clr_bits, u32 set_bits)
351ceafdaacSMauro Carvalho Chehab {
352ceafdaacSMauro Carvalho Chehab u32 v = isp_reg_readl(isp, mmio_range, reg);
353ceafdaacSMauro Carvalho Chehab
354ceafdaacSMauro Carvalho Chehab isp_reg_writel(isp, (v & ~clr_bits) | set_bits, mmio_range, reg);
355ceafdaacSMauro Carvalho Chehab }
356ceafdaacSMauro Carvalho Chehab
357ceafdaacSMauro Carvalho Chehab static inline enum v4l2_buf_type
isp_pad_buffer_type(const struct v4l2_subdev * subdev,int pad)358ceafdaacSMauro Carvalho Chehab isp_pad_buffer_type(const struct v4l2_subdev *subdev, int pad)
359ceafdaacSMauro Carvalho Chehab {
360ceafdaacSMauro Carvalho Chehab if (pad >= subdev->entity.num_pads)
361ceafdaacSMauro Carvalho Chehab return 0;
362ceafdaacSMauro Carvalho Chehab
363ceafdaacSMauro Carvalho Chehab if (subdev->entity.pads[pad].flags & MEDIA_PAD_FL_SINK)
364ceafdaacSMauro Carvalho Chehab return V4L2_BUF_TYPE_VIDEO_OUTPUT;
365ceafdaacSMauro Carvalho Chehab else
366ceafdaacSMauro Carvalho Chehab return V4L2_BUF_TYPE_VIDEO_CAPTURE;
367ceafdaacSMauro Carvalho Chehab }
368ceafdaacSMauro Carvalho Chehab
369ceafdaacSMauro Carvalho Chehab #endif /* OMAP3_ISP_CORE_H */
370