Commit 16d0c92e authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

media: atomisp: drop #ifdef SH_CSS_ENABLE_PER_FRAME_PARAMS

This is enabled for the firmware we're using. So, just drop
the if's.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 29a3764a
...@@ -4154,14 +4154,12 @@ ia_css_pipe_enqueue_buffer(struct ia_css_pipe *pipe, ...@@ -4154,14 +4154,12 @@ ia_css_pipe_enqueue_buffer(struct ia_css_pipe *pipe,
return_err = ia_css_bufq_enqueue_buffer(thread_id, return_err = ia_css_bufq_enqueue_buffer(thread_id,
queue_id, queue_id,
(uint32_t)h_vbuf->vptr); (uint32_t)h_vbuf->vptr);
#if defined(SH_CSS_ENABLE_PER_FRAME_PARAMS)
if (!return_err && if (!return_err &&
buf_type == IA_CSS_BUFFER_TYPE_OUTPUT_FRAME) { buf_type == IA_CSS_BUFFER_TYPE_OUTPUT_FRAME) {
IA_CSS_LOG("pfp: enqueued OF %d to q %d thread %d", IA_CSS_LOG("pfp: enqueued OF %d to q %d thread %d",
ddr_buffer.payload.frame.frame_data, ddr_buffer.payload.frame.frame_data,
queue_id, thread_id); queue_id, thread_id);
} }
#endif
} }
if (!return_err) { if (!return_err) {
...@@ -4364,12 +4362,10 @@ ia_css_pipe_dequeue_buffer(struct ia_css_pipe *pipe, ...@@ -4364,12 +4362,10 @@ ia_css_pipe_dequeue_buffer(struct ia_css_pipe *pipe,
sh_css_sp_get_binary_copy_size(); sh_css_sp_get_binary_copy_size();
#endif #endif
} }
#if defined(SH_CSS_ENABLE_PER_FRAME_PARAMS)
if (buf_type == IA_CSS_BUFFER_TYPE_OUTPUT_FRAME) { if (buf_type == IA_CSS_BUFFER_TYPE_OUTPUT_FRAME) {
IA_CSS_LOG("pfp: dequeued OF %d with config id %d thread %d", IA_CSS_LOG("pfp: dequeued OF %d with config id %d thread %d",
frame->data, frame->isp_config_id, thread_id); frame->data, frame->isp_config_id, thread_id);
} }
#endif
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE, ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE,
"ia_css_pipe_dequeue_buffer() buf_type=%d, data(DDR address)=0x%x\n", "ia_css_pipe_dequeue_buffer() buf_type=%d, data(DDR address)=0x%x\n",
......
...@@ -536,9 +536,7 @@ struct sh_css_sp_pipeline { ...@@ -536,9 +536,7 @@ struct sh_css_sp_pipeline {
ia_css_ptr cont_buf; /* Address of continuous buffer */ ia_css_ptr cont_buf; /* Address of continuous buffer */
} metadata; } metadata;
#endif #endif
#if defined(SH_CSS_ENABLE_PER_FRAME_PARAMS)
u32 output_frame_queue_id; u32 output_frame_queue_id;
#endif
union { union {
struct { struct {
u32 bytes_available; u32 bytes_available;
......
...@@ -731,13 +731,11 @@ sh_css_set_global_isp_config_on_pipe( ...@@ -731,13 +731,11 @@ sh_css_set_global_isp_config_on_pipe(
const struct ia_css_isp_config *config, const struct ia_css_isp_config *config,
struct ia_css_pipe *pipe); struct ia_css_pipe *pipe);
#if defined(SH_CSS_ENABLE_PER_FRAME_PARAMS)
static int static int
sh_css_set_per_frame_isp_config_on_pipe( sh_css_set_per_frame_isp_config_on_pipe(
struct ia_css_stream *stream, struct ia_css_stream *stream,
const struct ia_css_isp_config *config, const struct ia_css_isp_config *config,
struct ia_css_pipe *pipe); struct ia_css_pipe *pipe);
#endif
static int static int
sh_css_update_uds_and_crop_info_based_on_zoom_region( sh_css_update_uds_and_crop_info_based_on_zoom_region(
...@@ -1905,11 +1903,9 @@ ia_css_stream_set_isp_config_on_pipe( ...@@ -1905,11 +1903,9 @@ ia_css_stream_set_isp_config_on_pipe(
IA_CSS_ENTER("stream=%p, config=%p, pipe=%p", stream, config, pipe); IA_CSS_ENTER("stream=%p, config=%p, pipe=%p", stream, config, pipe);
#if defined(SH_CSS_ENABLE_PER_FRAME_PARAMS)
if (config->output_frame) if (config->output_frame)
err = sh_css_set_per_frame_isp_config_on_pipe(stream, config, pipe); err = sh_css_set_per_frame_isp_config_on_pipe(stream, config, pipe);
else else
#endif
err = sh_css_set_global_isp_config_on_pipe(stream->pipes[0], config, pipe); err = sh_css_set_global_isp_config_on_pipe(stream->pipes[0], config, pipe);
IA_CSS_LEAVE_ERR(err); IA_CSS_LEAVE_ERR(err);
...@@ -1930,11 +1926,9 @@ ia_css_pipe_set_isp_config(struct ia_css_pipe *pipe, ...@@ -1930,11 +1926,9 @@ ia_css_pipe_set_isp_config(struct ia_css_pipe *pipe,
ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE, "config=%p\n", config); ia_css_debug_dtrace(IA_CSS_DEBUG_TRACE, "config=%p\n", config);
#if defined(SH_CSS_ENABLE_PER_FRAME_PARAMS)
if (config->output_frame) if (config->output_frame)
err = sh_css_set_per_frame_isp_config_on_pipe(pipe->stream, config, pipe); err = sh_css_set_per_frame_isp_config_on_pipe(pipe->stream, config, pipe);
else else
#endif
err = sh_css_set_global_isp_config_on_pipe(pipe, config, pipe_in); err = sh_css_set_global_isp_config_on_pipe(pipe, config, pipe_in);
IA_CSS_LEAVE_ERR(err); IA_CSS_LEAVE_ERR(err);
return err; return err;
...@@ -1969,7 +1963,6 @@ sh_css_set_global_isp_config_on_pipe( ...@@ -1969,7 +1963,6 @@ sh_css_set_global_isp_config_on_pipe(
return err; return err;
} }
#if defined(SH_CSS_ENABLE_PER_FRAME_PARAMS)
static int static int
sh_css_set_per_frame_isp_config_on_pipe( sh_css_set_per_frame_isp_config_on_pipe(
struct ia_css_stream *stream, struct ia_css_stream *stream,
...@@ -2039,7 +2032,6 @@ sh_css_set_per_frame_isp_config_on_pipe( ...@@ -2039,7 +2032,6 @@ sh_css_set_per_frame_isp_config_on_pipe(
IA_CSS_LEAVE_ERR_PRIVATE(err); IA_CSS_LEAVE_ERR_PRIVATE(err);
return err; return err;
} }
#endif
static int static int
sh_css_init_isp_params_from_config(struct ia_css_pipe *pipe, sh_css_init_isp_params_from_config(struct ia_css_pipe *pipe,
...@@ -3253,15 +3245,10 @@ sh_css_param_update_isp_params(struct ia_css_pipe *curr_pipe, ...@@ -3253,15 +3245,10 @@ sh_css_param_update_isp_params(struct ia_css_pipe *curr_pipe,
isp_pipe_version = ia_css_pipe_get_isp_pipe_version(pipe); isp_pipe_version = ia_css_pipe_get_isp_pipe_version(pipe);
ia_css_pipeline_get_sp_thread_id(pipe_num, &thread_id); ia_css_pipeline_get_sp_thread_id(pipe_num, &thread_id);
#if defined(SH_CSS_ENABLE_PER_FRAME_PARAMS)
ia_css_query_internal_queue_id(params->output_frame ia_css_query_internal_queue_id(params->output_frame
? IA_CSS_BUFFER_TYPE_PER_FRAME_PARAMETER_SET ? IA_CSS_BUFFER_TYPE_PER_FRAME_PARAMETER_SET
: IA_CSS_BUFFER_TYPE_PARAMETER_SET, : IA_CSS_BUFFER_TYPE_PARAMETER_SET,
thread_id, &queue_id); thread_id, &queue_id);
#else
ia_css_query_internal_queue_id(IA_CSS_BUFFER_TYPE_PARAMETER_SET, thread_id,
&queue_id);
#endif
if (!sh_css_sp_is_running()) { if (!sh_css_sp_is_running()) {
/* SP is not running. The queues are not valid */ /* SP is not running. The queues are not valid */
err = -EBUSY; err = -EBUSY;
...@@ -3357,12 +3344,10 @@ sh_css_param_update_isp_params(struct ia_css_pipe *curr_pipe, ...@@ -3357,12 +3344,10 @@ sh_css_param_update_isp_params(struct ia_css_pipe *curr_pipe,
err = ia_css_bufq_enqueue_buffer(thread_id, queue_id, (uint32_t)cpy); err = ia_css_bufq_enqueue_buffer(thread_id, queue_id, (uint32_t)cpy);
if (err) { if (err) {
free_ia_css_isp_parameter_set_info(cpy); free_ia_css_isp_parameter_set_info(cpy);
#if defined(SH_CSS_ENABLE_PER_FRAME_PARAMS)
IA_CSS_LOG("pfp: FAILED to add config id %d for OF %d to q %d on thread %d", IA_CSS_LOG("pfp: FAILED to add config id %d for OF %d to q %d on thread %d",
isp_params_info.isp_parameters_id, isp_params_info.isp_parameters_id,
isp_params_info.output_frame_ptr, isp_params_info.output_frame_ptr,
queue_id, thread_id); queue_id, thread_id);
#endif
break; break;
} else { } else {
/* TMP: check discrepancy between nr of enqueued /* TMP: check discrepancy between nr of enqueued
...@@ -3384,12 +3369,10 @@ sh_css_param_update_isp_params(struct ia_css_pipe *curr_pipe, ...@@ -3384,12 +3369,10 @@ sh_css_param_update_isp_params(struct ia_css_pipe *curr_pipe,
(uint8_t)thread_id, (uint8_t)thread_id,
(uint8_t)queue_id, (uint8_t)queue_id,
0); 0);
#if defined(SH_CSS_ENABLE_PER_FRAME_PARAMS)
IA_CSS_LOG("pfp: added config id %d for OF %d to q %d on thread %d", IA_CSS_LOG("pfp: added config id %d for OF %d to q %d on thread %d",
isp_params_info.isp_parameters_id, isp_params_info.isp_parameters_id,
isp_params_info.output_frame_ptr, isp_params_info.output_frame_ptr,
queue_id, thread_id); queue_id, thread_id);
#endif
} }
/* clean-up old copy */ /* clean-up old copy */
ia_css_dequeue_param_buffers(/*pipe_num*/); ia_css_dequeue_param_buffers(/*pipe_num*/);
......
...@@ -1319,14 +1319,12 @@ sh_css_sp_init_pipeline(struct ia_css_pipeline *me, ...@@ -1319,14 +1319,12 @@ sh_css_sp_init_pipeline(struct ia_css_pipeline *me,
(void)md_info; (void)md_info;
#endif #endif
#if defined(SH_CSS_ENABLE_PER_FRAME_PARAMS)
sh_css_sp_group.pipe[thread_id].output_frame_queue_id = (uint32_t)SH_CSS_INVALID_QUEUE_ID; sh_css_sp_group.pipe[thread_id].output_frame_queue_id = (uint32_t)SH_CSS_INVALID_QUEUE_ID;
if (pipe_id != IA_CSS_PIPE_ID_COPY) { if (pipe_id != IA_CSS_PIPE_ID_COPY) {
ia_css_query_internal_queue_id(IA_CSS_BUFFER_TYPE_OUTPUT_FRAME, thread_id, ia_css_query_internal_queue_id(IA_CSS_BUFFER_TYPE_OUTPUT_FRAME, thread_id,
(enum sh_css_queue_id *)( (enum sh_css_queue_id *)(
&sh_css_sp_group.pipe[thread_id].output_frame_queue_id)); &sh_css_sp_group.pipe[thread_id].output_frame_queue_id));
} }
#endif
IA_CSS_LOG("pipe_id %d port_config %08x", IA_CSS_LOG("pipe_id %d port_config %08x",
pipe_id, sh_css_sp_group.pipe[thread_id].inout_port_config); pipe_id, sh_css_sp_group.pipe[thread_id].inout_port_config);
......
...@@ -25,9 +25,6 @@ ...@@ -25,9 +25,6 @@
* N.B. the 3 input formatters are of 2 different classess * N.B. the 3 input formatters are of 2 different classess
*/ */
/* per-frame parameter handling support */
#define SH_CSS_ENABLE_PER_FRAME_PARAMS
#define DMA_DDR_TO_VAMEM_WORKAROUND #define DMA_DDR_TO_VAMEM_WORKAROUND
#define DMA_DDR_TO_HMEM_WORKAROUND #define DMA_DDR_TO_HMEM_WORKAROUND
......
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