Commit 5472b4db authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

media: atomisp: get rid of mmgr_load and mmgr_store

Those functions are just wrappers for hmm_load/hmm_store.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent b92d99ae
...@@ -48,13 +48,13 @@ void debug_buffer_ddr_init(const hrt_vaddress addr) ...@@ -48,13 +48,13 @@ void debug_buffer_ddr_init(const hrt_vaddress addr)
u32 tail = 0; u32 tail = 0;
/* set the ddr queue */ /* set the ddr queue */
debug_buffer_ddr_address = addr; debug_buffer_ddr_address = addr;
mmgr_store(addr + DEBUG_DATA_BUF_MODE_DDR_ADDR, hmm_store(addr + DEBUG_DATA_BUF_MODE_DDR_ADDR,
&mode, sizeof(debug_buf_mode_t)); &mode, sizeof(debug_buf_mode_t));
mmgr_store(addr + DEBUG_DATA_HEAD_DDR_ADDR, hmm_store(addr + DEBUG_DATA_HEAD_DDR_ADDR,
&head, sizeof(uint32_t)); &head, sizeof(uint32_t));
mmgr_store(addr + DEBUG_DATA_TAIL_DDR_ADDR, hmm_store(addr + DEBUG_DATA_TAIL_DDR_ADDR,
&tail, sizeof(uint32_t)); &tail, sizeof(uint32_t));
mmgr_store(addr + DEBUG_DATA_ENABLE_DDR_ADDR, hmm_store(addr + DEBUG_DATA_ENABLE_DDR_ADDR,
&enable, sizeof(uint32_t)); &enable, sizeof(uint32_t));
/* set the local copy */ /* set the local copy */
......
...@@ -101,22 +101,22 @@ STORAGE_CLASS_DEBUG_C void debug_synch_queue_ddr(void) ...@@ -101,22 +101,22 @@ STORAGE_CLASS_DEBUG_C void debug_synch_queue_ddr(void)
{ {
u32 remote_tail; u32 remote_tail;
mmgr_load(debug_buffer_ddr_address + DEBUG_DATA_TAIL_DDR_ADDR, &remote_tail, hmm_load(debug_buffer_ddr_address + DEBUG_DATA_TAIL_DDR_ADDR, &remote_tail,
sizeof(uint32_t)); sizeof(uint32_t));
/* We could move the remote head after the upload, but we would have to limit the upload w.r.t. the local head. This is easier */ /* We could move the remote head after the upload, but we would have to limit the upload w.r.t. the local head. This is easier */
if (remote_tail > debug_data_ptr->tail) { if (remote_tail > debug_data_ptr->tail) {
size_t delta = remote_tail - debug_data_ptr->tail; size_t delta = remote_tail - debug_data_ptr->tail;
mmgr_load(debug_buffer_ddr_address + DEBUG_DATA_BUF_DDR_ADDR + hmm_load(debug_buffer_ddr_address + DEBUG_DATA_BUF_DDR_ADDR +
debug_data_ptr->tail * sizeof(uint32_t), debug_data_ptr->tail * sizeof(uint32_t),
(void *)&debug_data_ptr->buf[debug_data_ptr->tail], delta * sizeof(uint32_t)); (void *)&debug_data_ptr->buf[debug_data_ptr->tail], delta * sizeof(uint32_t));
} else if (remote_tail < debug_data_ptr->tail) { } else if (remote_tail < debug_data_ptr->tail) {
size_t delta = DEBUG_BUF_SIZE - debug_data_ptr->tail; size_t delta = DEBUG_BUF_SIZE - debug_data_ptr->tail;
mmgr_load(debug_buffer_ddr_address + DEBUG_DATA_BUF_DDR_ADDR + hmm_load(debug_buffer_ddr_address + DEBUG_DATA_BUF_DDR_ADDR +
debug_data_ptr->tail * sizeof(uint32_t), debug_data_ptr->tail * sizeof(uint32_t),
(void *)&debug_data_ptr->buf[debug_data_ptr->tail], delta * sizeof(uint32_t)); (void *)&debug_data_ptr->buf[debug_data_ptr->tail], delta * sizeof(uint32_t));
mmgr_load(debug_buffer_ddr_address + DEBUG_DATA_BUF_DDR_ADDR, hmm_load(debug_buffer_ddr_address + DEBUG_DATA_BUF_DDR_ADDR,
(void *)&debug_data_ptr->buf[0], (void *)&debug_data_ptr->buf[0],
remote_tail * sizeof(uint32_t)); remote_tail * sizeof(uint32_t));
} /* else we are up to date */ } /* else we are up to date */
......
...@@ -91,24 +91,4 @@ ...@@ -91,24 +91,4 @@
hrt_vaddress mmgr_alloc_attr(const size_t size, const uint16_t attribute); hrt_vaddress mmgr_alloc_attr(const size_t size, const uint16_t attribute);
/*! Read an array of bytes from a virtual memory address
\param vaddr[in] Address of an allocation
\param data[out] pointer to the destination array
\param size[in] number of bytes to read
\return none
*/
void mmgr_load(const hrt_vaddress vaddr, void *data, const size_t size);
/*! Write an array of bytes to device registers or memory in the device
\param vaddr[in] Address of an allocation
\param data[in] pointer to the source array
\param size[in] number of bytes to write
\return none
*/
void mmgr_store(const hrt_vaddress vaddr, const void *data, const size_t size);
#endif /* __MEMORY_ACCESS_H_INCLUDED__ */ #endif /* __MEMORY_ACCESS_H_INCLUDED__ */
...@@ -403,9 +403,14 @@ static int load_and_flush(ia_css_ptr virt, void *data, unsigned int bytes) ...@@ -403,9 +403,14 @@ static int load_and_flush(ia_css_ptr virt, void *data, unsigned int bytes)
/* Read function in ISP memory management */ /* Read function in ISP memory management */
int hmm_load(ia_css_ptr virt, void *data, unsigned int bytes) int hmm_load(ia_css_ptr virt, void *data, unsigned int bytes)
{ {
if (!virt) {
dev_warn(atomisp_dev,
"hmm_store: address is NULL\n");
return -EINVAL;
}
if (!data) { if (!data) {
dev_err(atomisp_dev, dev_err(atomisp_dev,
"hmm_load NULL argument\n"); "hmm_store: data is a NULL argument\n");
return -EINVAL; return -EINVAL;
} }
return load_and_flush(virt, data, bytes); return load_and_flush(virt, data, bytes);
...@@ -425,6 +430,17 @@ int hmm_store(ia_css_ptr virt, const void *data, unsigned int bytes) ...@@ -425,6 +430,17 @@ int hmm_store(ia_css_ptr virt, const void *data, unsigned int bytes)
char *src, *des; char *src, *des;
int ret; int ret;
if (!virt) {
dev_warn(atomisp_dev,
"hmm_store: address is NULL\n");
return -EINVAL;
}
if (!data) {
dev_err(atomisp_dev,
"hmm_store: data is a NULL argument\n");
return -EINVAL;
}
bo = hmm_bo_device_search_in_range(&bo_device, virt); bo = hmm_bo_device_search_in_range(&bo_device, virt);
ret = hmm_check_bo(bo, virt); ret = hmm_check_bo(bo, virt);
if (ret) if (ret)
......
...@@ -18,16 +18,3 @@ hrt_vaddress mmgr_alloc_attr(const size_t size, const uint16_t attrs) ...@@ -18,16 +18,3 @@ hrt_vaddress mmgr_alloc_attr(const size_t size, const uint16_t attrs)
{ {
return hmm_alloc(size, HMM_BO_PRIVATE, 0, NULL, attrs); return hmm_alloc(size, HMM_BO_PRIVATE, 0, NULL, attrs);
} }
void mmgr_load(const hrt_vaddress vaddr, void *data, const size_t size)
{
if (vaddr && data)
hmm_load(vaddr, data, size);
}
void
mmgr_store(const hrt_vaddress vaddr, const void *data, const size_t size)
{
if (vaddr && data)
hmm_store(vaddr, data, size);
}
...@@ -249,7 +249,7 @@ ia_css_get_dvs_statistics( ...@@ -249,7 +249,7 @@ ia_css_get_dvs_statistics(
map = ia_css_isp_dvs_statistics_map_allocate(isp_stats, NULL); map = ia_css_isp_dvs_statistics_map_allocate(isp_stats, NULL);
if (map) if (map)
{ {
mmgr_load(isp_stats->data_ptr, map->data_ptr, isp_stats->size); hmm_load(isp_stats->data_ptr, map->data_ptr, isp_stats->size);
ia_css_translate_dvs_statistics(host_stats, map); ia_css_translate_dvs_statistics(host_stats, map);
ia_css_isp_dvs_statistics_map_free(map); ia_css_isp_dvs_statistics_map_free(map);
} else } else
......
...@@ -189,7 +189,7 @@ ia_css_get_dvs2_statistics( ...@@ -189,7 +189,7 @@ ia_css_get_dvs2_statistics(
map = ia_css_isp_dvs_statistics_map_allocate(isp_stats, NULL); map = ia_css_isp_dvs_statistics_map_allocate(isp_stats, NULL);
if (map) if (map)
{ {
mmgr_load(isp_stats->data_ptr, map->data_ptr, isp_stats->size); hmm_load(isp_stats->data_ptr, map->data_ptr, isp_stats->size);
ia_css_translate_dvs2_statistics(host_stats, map); ia_css_translate_dvs2_statistics(host_stats, map);
ia_css_isp_dvs_statistics_map_free(map); ia_css_isp_dvs_statistics_map_free(map);
} else } else
......
...@@ -194,7 +194,7 @@ ia_css_isp_param_copy_isp_mem_if_to_ddr( ...@@ -194,7 +194,7 @@ ia_css_isp_param_copy_isp_mem_if_to_ddr(
return IA_CSS_ERR_INTERNAL_ERROR; return IA_CSS_ERR_INTERNAL_ERROR;
if (!size) if (!size)
continue; continue;
mmgr_store(ddr_mem_ptr, host_mem_ptr, size); hmm_store(ddr_mem_ptr, host_mem_ptr, size);
} }
return IA_CSS_SUCCESS; return IA_CSS_SUCCESS;
} }
......
...@@ -63,7 +63,7 @@ int ia_css_queue_load( ...@@ -63,7 +63,7 @@ int ia_css_queue_load(
} else if (rdesc->location == IA_CSS_QUEUE_LOC_HOST) { } else if (rdesc->location == IA_CSS_QUEUE_LOC_HOST) {
/* doing DMA transfer of entire structure */ /* doing DMA transfer of entire structure */
mmgr_load(rdesc->desc.remote.cb_desc_addr, hmm_load(rdesc->desc.remote.cb_desc_addr,
(void *)cb_desc, (void *)cb_desc,
sizeof(ia_css_circbuf_desc_t)); sizeof(ia_css_circbuf_desc_t));
} else if (rdesc->location == IA_CSS_QUEUE_LOC_ISP) { } else if (rdesc->location == IA_CSS_QUEUE_LOC_ISP) {
...@@ -110,7 +110,7 @@ int ia_css_queue_store( ...@@ -110,7 +110,7 @@ int ia_css_queue_store(
cb_desc->step); cb_desc->step);
} else if (rdesc->location == IA_CSS_QUEUE_LOC_HOST) { } else if (rdesc->location == IA_CSS_QUEUE_LOC_HOST) {
/* doing DMA transfer of entire structure */ /* doing DMA transfer of entire structure */
mmgr_store(rdesc->desc.remote.cb_desc_addr, hmm_store(rdesc->desc.remote.cb_desc_addr,
(void *)cb_desc, (void *)cb_desc,
sizeof(ia_css_circbuf_desc_t)); sizeof(ia_css_circbuf_desc_t));
} else if (rdesc->location == IA_CSS_QUEUE_LOC_ISP) { } else if (rdesc->location == IA_CSS_QUEUE_LOC_ISP) {
...@@ -136,7 +136,7 @@ int ia_css_queue_item_load( ...@@ -136,7 +136,7 @@ int ia_css_queue_item_load(
item, item,
sizeof(ia_css_circbuf_elem_t)); sizeof(ia_css_circbuf_elem_t));
} else if (rdesc->location == IA_CSS_QUEUE_LOC_HOST) { } else if (rdesc->location == IA_CSS_QUEUE_LOC_HOST) {
mmgr_load(rdesc->desc.remote.cb_elems_addr hmm_load(rdesc->desc.remote.cb_elems_addr
+ position * sizeof(ia_css_circbuf_elem_t), + position * sizeof(ia_css_circbuf_elem_t),
(void *)item, (void *)item,
sizeof(ia_css_circbuf_elem_t)); sizeof(ia_css_circbuf_elem_t));
...@@ -163,7 +163,7 @@ int ia_css_queue_item_store( ...@@ -163,7 +163,7 @@ int ia_css_queue_item_store(
item, item,
sizeof(ia_css_circbuf_elem_t)); sizeof(ia_css_circbuf_elem_t));
} else if (rdesc->location == IA_CSS_QUEUE_LOC_HOST) { } else if (rdesc->location == IA_CSS_QUEUE_LOC_HOST) {
mmgr_store(rdesc->desc.remote.cb_elems_addr hmm_store(rdesc->desc.remote.cb_elems_addr
+ position * sizeof(ia_css_circbuf_elem_t), + position * sizeof(ia_css_circbuf_elem_t),
(void *)item, (void *)item,
sizeof(ia_css_circbuf_elem_t)); sizeof(ia_css_circbuf_elem_t));
......
...@@ -66,7 +66,7 @@ enum ia_css_err ia_css_spctrl_load_fw(sp_ID_t sp_id, ...@@ -66,7 +66,7 @@ enum ia_css_err ia_css_spctrl_load_fw(sp_ID_t sp_id,
code_addr = mmgr_alloc_attr(spctrl_cfg->code_size, 0); code_addr = mmgr_alloc_attr(spctrl_cfg->code_size, 0);
if (code_addr == mmgr_NULL) if (code_addr == mmgr_NULL)
return IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY; return IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY;
mmgr_store(code_addr, spctrl_cfg->code, spctrl_cfg->code_size); hmm_store(code_addr, spctrl_cfg->code, spctrl_cfg->code_size);
if (sizeof(hrt_vaddress) > sizeof(hrt_data)) { if (sizeof(hrt_vaddress) > sizeof(hrt_data)) {
ia_css_debug_dtrace(IA_CSS_DEBUG_ERROR, ia_css_debug_dtrace(IA_CSS_DEBUG_ERROR,
......
...@@ -4314,7 +4314,7 @@ ia_css_pipe_enqueue_buffer(struct ia_css_pipe *pipe, ...@@ -4314,7 +4314,7 @@ ia_css_pipe_enqueue_buffer(struct ia_css_pipe *pipe,
return IA_CSS_ERR_INTERNAL_ERROR; return IA_CSS_ERR_INTERNAL_ERROR;
} }
mmgr_store(h_vbuf->vptr, hmm_store(h_vbuf->vptr,
(void *)(&ddr_buffer), (void *)(&ddr_buffer),
sizeof(struct sh_css_hmm_buffer)); sizeof(struct sh_css_hmm_buffer));
if ((buf_type == IA_CSS_BUFFER_TYPE_3A_STATISTICS) if ((buf_type == IA_CSS_BUFFER_TYPE_3A_STATISTICS)
...@@ -4473,7 +4473,7 @@ ia_css_pipe_dequeue_buffer(struct ia_css_pipe *pipe, ...@@ -4473,7 +4473,7 @@ ia_css_pipe_dequeue_buffer(struct ia_css_pipe *pipe,
ddr_buffer_addr, buf_type); ddr_buffer_addr, buf_type);
if (hmm_buffer_record) { if (hmm_buffer_record) {
/* valid hmm_buffer_record found. Save the kernel_ptr /* valid hmm_buffer_record found. Save the kernel_ptr
* for validation after performing mmgr_load. The * for validation after performing hmm_load. The
* vbuf handle and buffer_record can be released. * vbuf handle and buffer_record can be released.
*/ */
kernel_ptr = hmm_buffer_record->kernel_ptr; kernel_ptr = hmm_buffer_record->kernel_ptr;
...@@ -4486,7 +4486,7 @@ ia_css_pipe_dequeue_buffer(struct ia_css_pipe *pipe, ...@@ -4486,7 +4486,7 @@ ia_css_pipe_dequeue_buffer(struct ia_css_pipe *pipe,
return IA_CSS_ERR_INTERNAL_ERROR; return IA_CSS_ERR_INTERNAL_ERROR;
} }
mmgr_load(ddr_buffer_addr, hmm_load(ddr_buffer_addr,
&ddr_buffer, &ddr_buffer,
sizeof(struct sh_css_hmm_buffer)); sizeof(struct sh_css_hmm_buffer));
...@@ -10851,10 +10851,10 @@ ia_css_pipe_update_qos_ext_mapped_arg(struct ia_css_pipe *pipe, ...@@ -10851,10 +10851,10 @@ ia_css_pipe_update_qos_ext_mapped_arg(struct ia_css_pipe *pipe,
sp_dmem_load(SP0_ID, sp_dmem_load(SP0_ID,
(unsigned int)sp_address_of(sp_group), (unsigned int)sp_address_of(sp_group),
&sp_group, sizeof(struct sh_css_sp_group)); &sp_group, sizeof(struct sh_css_sp_group));
mmgr_load(sp_group.pipe[thread_id].sp_stage_addr[stage_num], hmm_load(sp_group.pipe[thread_id].sp_stage_addr[stage_num],
&sp_stage, sizeof(struct sh_css_sp_stage)); &sp_stage, sizeof(struct sh_css_sp_stage));
mmgr_load(sp_stage.isp_stage_addr, hmm_load(sp_stage.isp_stage_addr,
&isp_stage, sizeof(struct sh_css_isp_stage)); &isp_stage, sizeof(struct sh_css_isp_stage));
for (mem = 0; mem < N_IA_CSS_ISP_MEMORIES; mem++) { for (mem = 0; mem < N_IA_CSS_ISP_MEMORIES; mem++) {
...@@ -10870,7 +10870,7 @@ ia_css_pipe_update_qos_ext_mapped_arg(struct ia_css_pipe *pipe, ...@@ -10870,7 +10870,7 @@ ia_css_pipe_update_qos_ext_mapped_arg(struct ia_css_pipe *pipe,
isp_seg->params[IA_CSS_PARAM_CLASS_PARAM][mem].size; isp_seg->params[IA_CSS_PARAM_CLASS_PARAM][mem].size;
} }
mmgr_store(sp_stage.isp_stage_addr, hmm_store(sp_stage.isp_stage_addr,
&isp_stage, sizeof(struct sh_css_isp_stage)); &isp_stage, sizeof(struct sh_css_isp_stage));
} }
} }
......
...@@ -328,6 +328,6 @@ sh_css_load_blob(const unsigned char *blob, unsigned int size) ...@@ -328,6 +328,6 @@ sh_css_load_blob(const unsigned char *blob, unsigned int size)
assert(blob); assert(blob);
if (target_addr) if (target_addr)
mmgr_store(target_addr, blob, size); hmm_store(target_addr, blob, size);
return target_addr; return target_addr;
} }
...@@ -1521,7 +1521,7 @@ sh_css_set_black_frame(struct ia_css_stream *stream, ...@@ -1521,7 +1521,7 @@ sh_css_set_black_frame(struct ia_css_stream *stream,
int ofs = y * width + x; int ofs = y * width + x;
for (k = 0; k < ISP_VEC_NELEMS; k += 2) { for (k = 0; k < ISP_VEC_NELEMS; k += 2) {
mmgr_load(ptr, (void *)(&data), sizeof(int)); hmm_load(ptr, (void *)(&data), sizeof(int));
params->fpn_config.data[ofs + 2 * k] = params->fpn_config.data[ofs + 2 * k] =
(short)(data & 0xFFFF); (short)(data & 0xFFFF);
params->fpn_config.data[ofs + 2 * k + 2] = params->fpn_config.data[ofs + 2 * k + 2] =
...@@ -1529,7 +1529,7 @@ sh_css_set_black_frame(struct ia_css_stream *stream, ...@@ -1529,7 +1529,7 @@ sh_css_set_black_frame(struct ia_css_stream *stream,
ptr += sizeof(int); /* byte system address */ ptr += sizeof(int); /* byte system address */
} }
for (k = 0; k < ISP_VEC_NELEMS; k += 2) { for (k = 0; k < ISP_VEC_NELEMS; k += 2) {
mmgr_load(ptr, (void *)(&data), sizeof(int)); hmm_load(ptr, (void *)(&data), sizeof(int));
params->fpn_config.data[ofs + 2 * k + 1] = params->fpn_config.data[ofs + 2 * k + 1] =
(short)(data & 0xFFFF); (short)(data & 0xFFFF);
params->fpn_config.data[ofs + 2 * k + 3] = params->fpn_config.data[ofs + 2 * k + 3] =
...@@ -1620,7 +1620,7 @@ ia_css_params_store_ia_css_host_data( ...@@ -1620,7 +1620,7 @@ ia_css_params_store_ia_css_host_data(
IA_CSS_ENTER_PRIVATE(""); IA_CSS_ENTER_PRIVATE("");
mmgr_store(ddr_addr, hmm_store(ddr_addr,
(void *)(data->address), (void *)(data->address),
(size_t)data->size); (size_t)data->size);
...@@ -2133,7 +2133,7 @@ ia_css_get_3a_statistics(struct ia_css_3a_statistics *host_stats, ...@@ -2133,7 +2133,7 @@ ia_css_get_3a_statistics(struct ia_css_3a_statistics *host_stats,
map = ia_css_isp_3a_statistics_map_allocate(isp_stats, NULL); map = ia_css_isp_3a_statistics_map_allocate(isp_stats, NULL);
if (map) if (map)
{ {
mmgr_load(isp_stats->data_ptr, map->data_ptr, isp_stats->size); hmm_load(isp_stats->data_ptr, map->data_ptr, isp_stats->size);
ia_css_translate_3a_statistics(host_stats, map); ia_css_translate_3a_statistics(host_stats, map);
ia_css_isp_3a_statistics_map_free(map); ia_css_isp_3a_statistics_map_free(map);
} else } else
...@@ -3368,7 +3368,7 @@ enum ia_css_err ia_css_pipe_set_bci_scaler_lut(struct ia_css_pipe *pipe, ...@@ -3368,7 +3368,7 @@ enum ia_css_err ia_css_pipe_set_bci_scaler_lut(struct ia_css_pipe *pipe,
} else { } else {
gdc_lut_convert_to_isp_format((const int(*)[HRT_GDC_N])lut, gdc_lut_convert_to_isp_format((const int(*)[HRT_GDC_N])lut,
interleaved_lut_temp); interleaved_lut_temp);
mmgr_store(pipe->scaler_pp_lut, hmm_store(pipe->scaler_pp_lut,
(int *)interleaved_lut_temp, (int *)interleaved_lut_temp,
sizeof(zoom_table)); sizeof(zoom_table));
} }
...@@ -3411,7 +3411,7 @@ enum ia_css_err sh_css_params_map_and_store_default_gdc_lut(void) ...@@ -3411,7 +3411,7 @@ enum ia_css_err sh_css_params_map_and_store_default_gdc_lut(void)
gdc_lut_convert_to_isp_format((const int(*)[HRT_GDC_N])zoom_table, gdc_lut_convert_to_isp_format((const int(*)[HRT_GDC_N])zoom_table,
interleaved_lut_temp); interleaved_lut_temp);
mmgr_store(default_gdc_lut, (int *)interleaved_lut_temp, hmm_store(default_gdc_lut, (int *)interleaved_lut_temp,
sizeof(zoom_table)); sizeof(zoom_table));
IA_CSS_LEAVE_PRIVATE("lut(%u) err=%d", default_gdc_lut, err); IA_CSS_LEAVE_PRIVATE("lut(%u) err=%d", default_gdc_lut, err);
...@@ -3656,7 +3656,7 @@ static void sh_css_update_isp_params_to_ddr( ...@@ -3656,7 +3656,7 @@ static void sh_css_update_isp_params_to_ddr(
assert(params); assert(params);
mmgr_store(ddr_ptr, &params->uds, size); hmm_store(ddr_ptr, &params->uds, size);
IA_CSS_LEAVE_PRIVATE("void"); IA_CSS_LEAVE_PRIVATE("void");
} }
...@@ -3672,7 +3672,7 @@ static void sh_css_update_isp_mem_params_to_ddr( ...@@ -3672,7 +3672,7 @@ static void sh_css_update_isp_mem_params_to_ddr(
params = ia_css_isp_param_get_mem_init(&binary->mem_params, params = ia_css_isp_param_get_mem_init(&binary->mem_params,
IA_CSS_PARAM_CLASS_PARAM, mem); IA_CSS_PARAM_CLASS_PARAM, mem);
mmgr_store(ddr_mem_ptr, params->address, size); hmm_store(ddr_mem_ptr, params->address, size);
IA_CSS_LEAVE_PRIVATE("void"); IA_CSS_LEAVE_PRIVATE("void");
} }
...@@ -4176,7 +4176,7 @@ sh_css_params_write_to_ddr_internal( ...@@ -4176,7 +4176,7 @@ sh_css_params_write_to_ddr_internal(
IA_CSS_LEAVE_ERR_PRIVATE(err); IA_CSS_LEAVE_ERR_PRIVATE(err);
return err; return err;
} }
mmgr_store(ddr_map->macc_tbl, hmm_store(ddr_map->macc_tbl,
converted_macc_table.data, converted_macc_table.data,
sizeof(converted_macc_table.data)); sizeof(converted_macc_table.data));
} }
...@@ -4461,7 +4461,7 @@ struct ia_css_shading_table *ia_css_get_shading_table(struct ia_css_stream ...@@ -4461,7 +4461,7 @@ struct ia_css_shading_table *ia_css_get_shading_table(struct ia_css_stream
hrt_vaddress sh_css_store_sp_group_to_ddr(void) hrt_vaddress sh_css_store_sp_group_to_ddr(void)
{ {
IA_CSS_ENTER_LEAVE_PRIVATE("void"); IA_CSS_ENTER_LEAVE_PRIVATE("void");
mmgr_store(xmem_sp_group_ptrs, hmm_store(xmem_sp_group_ptrs,
&sh_css_sp_group, &sh_css_sp_group,
sizeof(struct sh_css_sp_group)); sizeof(struct sh_css_sp_group));
return xmem_sp_group_ptrs; return xmem_sp_group_ptrs;
...@@ -4472,7 +4472,7 @@ hrt_vaddress sh_css_store_sp_stage_to_ddr( ...@@ -4472,7 +4472,7 @@ hrt_vaddress sh_css_store_sp_stage_to_ddr(
unsigned int stage) unsigned int stage)
{ {
IA_CSS_ENTER_LEAVE_PRIVATE("void"); IA_CSS_ENTER_LEAVE_PRIVATE("void");
mmgr_store(xmem_sp_stage_ptrs[pipe][stage], hmm_store(xmem_sp_stage_ptrs[pipe][stage],
&sh_css_sp_stage, &sh_css_sp_stage,
sizeof(struct sh_css_sp_stage)); sizeof(struct sh_css_sp_stage));
return xmem_sp_stage_ptrs[pipe][stage]; return xmem_sp_stage_ptrs[pipe][stage];
...@@ -4483,7 +4483,7 @@ hrt_vaddress sh_css_store_isp_stage_to_ddr( ...@@ -4483,7 +4483,7 @@ hrt_vaddress sh_css_store_isp_stage_to_ddr(
unsigned int stage) unsigned int stage)
{ {
IA_CSS_ENTER_LEAVE_PRIVATE("void"); IA_CSS_ENTER_LEAVE_PRIVATE("void");
mmgr_store(xmem_isp_stage_ptrs[pipe][stage], hmm_store(xmem_isp_stage_ptrs[pipe][stage],
&sh_css_isp_stage, &sh_css_isp_stage,
sizeof(struct sh_css_isp_stage)); sizeof(struct sh_css_isp_stage));
return xmem_isp_stage_ptrs[pipe][stage]; return xmem_isp_stage_ptrs[pipe][stage];
...@@ -4545,7 +4545,7 @@ static enum ia_css_err write_ia_css_isp_parameter_set_info_to_ddr( ...@@ -4545,7 +4545,7 @@ static enum ia_css_err write_ia_css_isp_parameter_set_info_to_ddr(
mmgr_alloc_attr(sizeof(struct ia_css_isp_parameter_set_info), 0)); mmgr_alloc_attr(sizeof(struct ia_css_isp_parameter_set_info), 0));
succ = (*out != mmgr_NULL); succ = (*out != mmgr_NULL);
if (succ) if (succ)
mmgr_store(*out, hmm_store(*out,
me, sizeof(struct ia_css_isp_parameter_set_info)); me, sizeof(struct ia_css_isp_parameter_set_info));
else else
err = IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY; err = IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY;
...@@ -4574,7 +4574,7 @@ free_ia_css_isp_parameter_set_info( ...@@ -4574,7 +4574,7 @@ free_ia_css_isp_parameter_set_info(
return err; return err;
} }
mmgr_load(ptr, &isp_params_info.mem_map, sizeof(struct sh_css_ddr_address_map)); hmm_load(ptr, &isp_params_info.mem_map, sizeof(struct sh_css_ddr_address_map));
/* copy map using size info */ /* copy map using size info */
for (i = 0; i < (sizeof(struct sh_css_ddr_address_map_size) / for (i = 0; i < (sizeof(struct sh_css_ddr_address_map_size) /
sizeof(size_t)); i++) sizeof(size_t)); i++)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment