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_MACC_HOST_H 8 #define __IA_CSS_MACC_HOST_H 9 10 #include "sh_css_params.h" 11 12 #include "ia_css_macc_param.h" 13 #include "ia_css_macc_table.host.h" 14 15 extern const struct ia_css_macc_config default_macc_config; 16 17 void 18 ia_css_macc_encode( 19 struct sh_css_isp_macc_params *to, 20 const struct ia_css_macc_config *from, 21 unsigned int size); 22 23 void 24 ia_css_macc_dump( 25 const struct sh_css_isp_macc_params *macc, 26 unsigned int level); 27 28 void 29 ia_css_macc_debug_dtrace( 30 const struct ia_css_macc_config *config, 31 unsigned int level); 32 33 #endif /* __IA_CSS_MACC_HOST_H */ 34