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 bool mipi_is_free(void); 18 19 int 20 allocate_mipi_frames(struct ia_css_pipe *pipe, struct ia_css_stream_info *info); 21 22 int 23 free_mipi_frames(struct ia_css_pipe *pipe); 24 25 int 26 send_mipi_frames(struct ia_css_pipe *pipe); 27 28 #endif /* __SH_CSS_MIPI_H */ 29