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_BNLM_HOST_H 8 #define __IA_CSS_BNLM_HOST_H 9 10 #include "ia_css_bnlm_types.h" 11 #include "ia_css_bnlm_param.h" 12 13 void 14 ia_css_bnlm_vmem_encode( 15 struct bnlm_vmem_params *to, 16 const struct ia_css_bnlm_config *from, 17 size_t size); 18 19 void 20 ia_css_bnlm_encode( 21 struct bnlm_dmem_params *to, 22 const struct ia_css_bnlm_config *from, 23 size_t size); 24 25 #ifndef IA_CSS_NO_DEBUG 26 void 27 ia_css_bnlm_debug_trace( 28 const struct ia_css_bnlm_config *config, 29 unsigned int level); 30 #endif 31 32 #endif /* __IA_CSS_BNLM_HOST_H */ 33