xref: /linux/drivers/staging/media/atomisp/pci/sh_css_mipi.h (revision cb9f145f638d7afa633632a9290d6ad06caeb8ee) !
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Support for Intel Camera Imaging ISP subsystem.
4  * Copyright (c) 2015, Intel Corporation.
5  */
6 
7 #ifndef __SH_CSS_MIPI_H
8 #define __SH_CSS_MIPI_H
9 
10 #include <ia_css_err.h>		  /* ia_css_err */
11 #include <ia_css_types.h>	  /* ia_css_pipe */
12 #include <ia_css_stream_public.h> /* ia_css_stream_config */
13 
14 void
15 mipi_init(void);
16 
17 int
18 allocate_mipi_frames(struct ia_css_pipe *pipe, struct ia_css_stream_info *info);
19 
20 int
21 free_mipi_frames(struct ia_css_pipe *pipe);
22 
23 int
24 send_mipi_frames(struct ia_css_pipe *pipe);
25 
26 #endif /* __SH_CSS_MIPI_H */
27