1 /*
2  * Support for Medifield PNW Camera Imaging ISP subsystem.
3  *
4  * Copyright (c) 2010 Intel Corporation. All Rights Reserved.
5  *
6  * Copyright (c) 2010 Silicon Hive www.siliconhive.com.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License version
10  * 2 as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  *
18  */
19 
20 #ifndef __ATOMISP_V4L2_H__
21 #define __ATOMISP_V4L2_H__
22 
23 struct atomisp_video_pipe;
24 struct atomisp_acc_pipe;
25 struct v4l2_device;
26 struct atomisp_device;
27 struct firmware;
28 
29 int atomisp_video_init(struct atomisp_video_pipe *video, const char *name);
30 void atomisp_acc_init(struct atomisp_acc_pipe *video, const char *name);
31 void atomisp_video_unregister(struct atomisp_video_pipe *video);
32 void atomisp_acc_unregister(struct atomisp_acc_pipe *video);
33 const struct firmware *atomisp_load_firmware(struct atomisp_device *isp);
34 int atomisp_csi_lane_config(struct atomisp_device *isp);
35 
36 #endif /* __ATOMISP_V4L2_H__ */
37