/device/soc/hisilicon/hi3751v350/sdk_linux/source/common/drv/osal/ |
H A D | osal_exportfunc.c | 25 int hi_drv_module_register(unsigned int module_id, const char *pu8_module_name, void *p_func); 26 int hi_drv_module_un_register(unsigned int module_id); 27 int hi_drv_module_get_function(unsigned int module_id, void **pp_func); 30 unsigned int module_id; member 38 void *osal_exportfunc_find_node(unsigned int module_id, struct osal_list_head *list) in osal_exportfunc_find_node() argument 43 if (func_node->module_id == module_id) { in osal_exportfunc_find_node() 51 int osal_exportfunc_register(unsigned int module_id, const char *name, void *func) in osal_exportfunc_register() argument 59 return hi_drv_module_register(module_id, name, func); in osal_exportfunc_register() 74 func_node_find = osal_exportfunc_find_node(module_id, in osal_exportfunc_register() 92 osal_exportfunc_unregister(unsigned int module_id) osal_exportfunc_unregister() argument 118 osal_exportfunc_get(unsigned int module_id, void **func) osal_exportfunc_get() argument [all...] |
H A D | osal_addr.c | 42 unsigned int osal_get_kmalloc_used(unsigned int module_id) in osal_get_kmalloc_used() argument 44 if (module_id >= HI_ID_BUTT) { in osal_get_kmalloc_used() 48 return g_kmalloc_used[module_id]; in osal_get_kmalloc_used() 51 unsigned int osal_get_vmalloc_used(unsigned int module_id) in osal_get_vmalloc_used() argument 53 if (module_id >= HI_ID_BUTT) { in osal_get_vmalloc_used() 57 return g_vmalloc_used[module_id]; in osal_get_vmalloc_used() 85 void *osal_kmalloc(unsigned int module_id, unsigned long size, unsigned int osal_gfp_flag) in osal_kmalloc() argument 89 if (module_id >= HI_ID_BUTT) { in osal_kmalloc() 90 printk("osal_kmalloc module id(%ud) is wrong\n", module_id); in osal_kmalloc() 95 g_kmalloc_used[module_id] in osal_kmalloc() 101 osal_kfree(unsigned int module_id, const void *addr) osal_kfree() argument 117 osal_vmalloc(unsigned int module_id, unsigned long size) osal_vmalloc() argument 132 osal_vfree(unsigned int module_id, const void *addr) osal_vfree() argument [all...] |
H A D | osal_fence.c | 29 int module_id; member 75 int osal_fence_create(unsigned int module_id, int *fd, unsigned int private_size) in osal_fence_create() argument 111 fence_node->module_id = module_id; in osal_fence_create() 131 int osal_fence_destroy(unsigned int module_id, int fd) in osal_fence_destroy() argument 154 int osal_fence_acquire_private(unsigned int module_id, int fd, void **private) in osal_fence_acquire_private() argument 181 int osal_fence_release_private(unsigned int module_id, int fd, void *private) in osal_fence_release_private() argument
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/include/ |
H A D | hi_diag.h | 446 * @param module_id [IN] type #hi_u16,message module ID,describe which module the log belongs to. 456 hi_u32 hi_diag_layer_msg0(hi_u32 msg_id, hi_u16 module_id); 467 * @param module_id [IN] type #hi_u16,message module ID,describe which module the log belongs to. 478 hi_u32 hi_diag_layer_msg1(hi_u32 msg_id, hi_u16 module_id, hi_u32 d0); 489 * @param module_id [IN] type #hi_u16,message module ID,describe which module the log belongs to. 501 hi_u32 hi_diag_layer_msg2(hi_u32 msg_id, hi_u16 module_id, hi_u32 d0, hi_u32 d1); 512 * @param module_id [IN] type #hi_u16,message module ID,describe which module the log belongs to. 525 hi_u32 hi_diag_layer_msg3(hi_u32 msg_id, hi_u16 module_id, hi_u32 d0, hi_u32 d1, hi_u32 d2); 536 * @param module_id [IN] type #hi_u16,message module ID,describe which module the log belongs to. 545 hi_u32 hi_diag_layer_msg4(hi_u32 msg_id, hi_u16 module_id, diag_log_ms [all...] |
/device/soc/hisilicon/hi3751v350/sdk_linux/source/common/include/ |
H A D | hi_log.h | 141 #define HI_TRACE(level, module_id, fmt...) \ 143 hi_log_out(level, module_id, (hi_u8 *)__FUNCTION__, __LINE__, fmt); \ 146 #define HI_TRACE(level, module_id, fmt...) \ 154 #define HI_TRACE(level, module_id, fmt...) \ 156 hi_log_out(level, module_id, (hi_u8 *)__FUNCTION__, __LINE__, fmt); \ 254 #define HI_KEY_PRINT(module_id, fmt...) 255 #define HI_KEY_PRINT_HEX(module_id, str, addr, len) \ 257 #define HI_KEY_PRINT(module_id, fmt...) 258 #define HI_KEY_PRINT_HEX(module_id, str, addr, len) 270 #define HI_KEY_PRINT(module_id, fm [all...] |
/device/soc/hisilicon/hi3751v350/sdk_linux/source/common/drv/include/ |
H A D | hi_osal.h | 30 void *osal_kmalloc(unsigned int module_id, unsigned long size, unsigned int osal_gfp_flag); 31 void osal_kfree(unsigned int module_id, const void *addr); 32 void *osal_vmalloc(unsigned int module_id, unsigned long size); 33 void osal_vfree(unsigned int module_id, const void *addr); 203 int osal_fence_create(unsigned int module_id, int *fd, unsigned int private_size); 204 int osal_fence_destroy(unsigned int module_id, int fd); 205 int osal_fence_acquire_private(unsigned int module_id, int fd, void **private); 206 int osal_fence_release_private(unsigned int module_id, int fd, void *private); 438 int osal_exportfunc_register(unsigned int module_id, const char *name, void *func); 439 int osal_exportfunc_unregister(unsigned int module_id); [all...] |
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/interdrv/common/cipher/src/drv/cipher_v1.0/osal/include/ |
H A D | drv_osal_lib.h | 250 hi_void module_enable(module_id id); 257 hi_void module_disable(module_id id); 267 hi_void module_get_attr(module_id id, hi_u32 *int_valid, hi_u32 *int_num, const char **name); 275 hi_void module_set_irq(module_id id, hi_u32 irq); 283 hi_u32 module_reg_read(module_id id, hi_u32 offset); 298 hi_void module_reg_write(module_id id, hi_u32 offset, hi_u32 val);
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/interdrv/common/cipher/src/drv/cipher_v1.0/drivers/core/ |
H A D | drv_lib.c | 271 static hi_void module_clock(module_id id, hi_u32 open) in module_clock() 320 static hi_void module_reset(module_id id, hi_u32 enable) in module_reset() 386 hi_void module_enable(module_id id) in module_enable() 396 hi_void module_disable(module_id id) in module_disable() 406 hi_void module_get_attr(module_id id, hi_u32 *int_valid, hi_u32 *int_num, const hi_char **name) in module_get_attr() 425 hi_void module_set_irq(module_id id, hi_u32 irq) in module_set_irq() 439 hi_u32 module_reg_read(module_id id, hi_u32 offset) in module_reg_read() 467 hi_void module_reg_write(module_id mod_id, hi_u32 offset, hi_u32 val) in module_reg_write()
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/cbb/vo/vo_dev/include/ |
H A D | vou_dev_exp.h | 25 void (*pfnVoNotify)(int module_id, int vodev);
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/include/ |
H A D | vou_dev_exp.h | 22 void (*pfnVoNotify)(int module_id, int vodev);
|
H A D | vou_exp.h | 22 void (*pfnVoNotify)(int module_id, int vodev);
|
H A D | vdec_exp.h | 28 void (*pfnVdecNotify)(int module_id, int channel, int event_type, void *args);
|
/device/soc/hisilicon/hi3516dv300/sdk_liteos/include/ |
H A D | vou_exp.h | 22 void (*pfnVoNotify)(int module_id, int vodev);
|
H A D | vou_dev_exp.h | 22 void (*pfnVoNotify)(int module_id, int vodev);
|
H A D | vdec_exp.h | 28 void (*pfnVdecNotify)(int module_id, int channel, int event_type, void *args);
|
/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/i915/gt/uc/ |
H A D | intel_uc_fw_abi.h | 52 u32 module_id; member
|
/device/soc/rockchip/common/sdk_linux/include/uapi/linux/ |
H A D | rk-camera-module.h | 218 __u32 module_id; member
|
H A D | rkisp2-config.h | 223 u64 module_id; member 230 u64 module_id; member
|
/device/soc/rockchip/rk3588/kernel/include/uapi/linux/ |
H A D | rk-camera-module.h | 313 __u32 module_id; member
|
H A D | rkisp2-config.h | 236 u64 module_id; member 243 u64 module_id; member
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/interdrv/common/cipher/include/ |
H A D | drv_cipher_kapi.h | 82 /* enumeration module_id. */ 94 } module_id; typedef
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/component/tde/driver/src/adp/tde_v2_0/ |
H A D | tde_adp.h | 3117 #define conver_id(module_id) ((module_id) + HI_ID_TDE - HIGFX_TDE_ID)
|
/device/soc/rockchip/common/vendor/drivers/media/platform/rockchip/isp/ |
H A D | isp_params_v3x.c | 3627 static void rkisp_deinit_mesh_buf(struct rkisp_isp_params_vdev *params_vdev, u64 module_id, u32 id) in rkisp_deinit_mesh_buf() argument 3638 switch (module_id) { in rkisp_deinit_mesh_buf() 3671 switch (meshsize->module_id) { in rkisp_init_mesh_buf() 3709 rkisp_deinit_mesh_buf(params_vdev, meshsize->module_id, id); in rkisp_init_mesh_buf() 3728 switch (meshbuf->module_id) { in rkisp_params_get_meshbuf_inf_v3x() 3759 rkisp_deinit_mesh_buf(params_vdev, meshsize->module_id, meshsize->unite_isp_id); in rkisp_params_set_meshbuf_size_v3x()
|
/device/soc/rockchip/rk3588/kernel/drivers/media/platform/rockchip/isp/ |
H A D | isp_params_v3x.c | 4237 u64 module_id, u32 id) in rkisp_deinit_mesh_buf() 4247 switch (module_id) { in rkisp_deinit_mesh_buf() 4280 switch (meshsize->module_id) { in rkisp_init_mesh_buf() 4318 rkisp_deinit_mesh_buf(params_vdev, meshsize->module_id, id); in rkisp_init_mesh_buf() 4341 switch (meshbuf->module_id) { in rkisp_params_get_meshbuf_inf_v3x() 4373 rkisp_deinit_mesh_buf(params_vdev, meshsize->module_id, meshsize->unite_isp_id); in rkisp_params_set_meshbuf_size_v3x() 4236 rkisp_deinit_mesh_buf(struct rkisp_isp_params_vdev *params_vdev, u64 module_id, u32 id) rkisp_deinit_mesh_buf() argument
|