xref: /linux/drivers/staging/media/atomisp/pci/isp/kernels/wb/wb_1.0/ia_css_wb.host.h (revision c771600c6af14749609b49565ffb4cac2959710d)
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 __IA_CSS_WB_HOST_H
8 #define __IA_CSS_WB_HOST_H
9 
10 #include "ia_css_wb_types.h"
11 #include "ia_css_wb_param.h"
12 
13 extern const struct ia_css_wb_config default_wb_config;
14 
15 void
16 ia_css_wb_encode(
17     struct sh_css_isp_wb_params *to,
18     const struct ia_css_wb_config *from,
19     unsigned int size);
20 
21 void
22 ia_css_wb_dump(
23     const struct sh_css_isp_wb_params *wb,
24     unsigned int level);
25 
26 void
27 ia_css_wb_debug_dtrace(
28     const struct ia_css_wb_config *wb,
29     unsigned int level);
30 
31 #endif /* __IA_CSS_WB_HOST_H */
32