Commit 1fcc0244 authored by Dafna Hirschfeld's avatar Dafna Hirschfeld Committed by Mauro Carvalho Chehab

media: staging: rkisp1: stats: read the stats in the isr

Currently the stats are read in a work queue. Defering the
reading of the stats is not needed and it is fine to read them
inside the irq handler.
This patch fixes and remove the TODO item:
'Use threaded interrupt for rkisp1_stats_isr(), remove work queue.'
Signed-off-by: default avatarDafna Hirschfeld <dafna.hirschfeld@collabora.com>
Acked-by: default avatarHelen Koike <helen.koike@collabora.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent b512ab7a
* Fix pad format size for statistics and parameters entities. * Fix pad format size for statistics and parameters entities.
* Use threaded interrupt for rkisp1_stats_isr(), remove work queue.
* Fix checkpatch errors. * Fix checkpatch errors.
* Review and comment every lock * Review and comment every lock
* Handle quantization * Handle quantization
......
...@@ -183,7 +183,6 @@ struct rkisp1_capture { ...@@ -183,7 +183,6 @@ struct rkisp1_capture {
* *
* @lock: locks the buffer list 'stat' and 'is_streaming' * @lock: locks the buffer list 'stat' and 'is_streaming'
* @stat: stats buffer list * @stat: stats buffer list
* @readout_wq: workqueue for statistics information read
*/ */
struct rkisp1_stats { struct rkisp1_stats {
struct rkisp1_vdev_node vnode; struct rkisp1_vdev_node vnode;
...@@ -193,8 +192,6 @@ struct rkisp1_stats { ...@@ -193,8 +192,6 @@ struct rkisp1_stats {
struct list_head stat; struct list_head stat;
struct v4l2_format vdev_fmt; struct v4l2_format vdev_fmt;
bool is_streaming; bool is_streaming;
struct workqueue_struct *readout_wq;
}; };
/* /*
......
...@@ -18,21 +18,6 @@ ...@@ -18,21 +18,6 @@
#define RKISP1_ISP_STATS_REQ_BUFS_MIN 2 #define RKISP1_ISP_STATS_REQ_BUFS_MIN 2
#define RKISP1_ISP_STATS_REQ_BUFS_MAX 8 #define RKISP1_ISP_STATS_REQ_BUFS_MAX 8
enum rkisp1_isp_readout_cmd {
RKISP1_ISP_READOUT_MEAS,
RKISP1_ISP_READOUT_META,
};
struct rkisp1_isp_readout_work {
struct work_struct work;
struct rkisp1_stats *stats;
unsigned int frame_id;
unsigned int isp_ris;
enum rkisp1_isp_readout_cmd readout;
struct vb2_buffer *vb;
};
static int rkisp1_stats_enum_fmt_meta_cap(struct file *file, void *priv, static int rkisp1_stats_enum_fmt_meta_cap(struct file *file, void *priv,
struct v4l2_fmtdesc *f) struct v4l2_fmtdesc *f)
{ {
...@@ -154,14 +139,8 @@ static void rkisp1_stats_vb2_stop_streaming(struct vb2_queue *vq) ...@@ -154,14 +139,8 @@ static void rkisp1_stats_vb2_stop_streaming(struct vb2_queue *vq)
struct rkisp1_buffer *buf; struct rkisp1_buffer *buf;
unsigned int i; unsigned int i;
/* Make sure no new work queued in isr before draining wq */
spin_lock_irq(&stats->lock); spin_lock_irq(&stats->lock);
stats->is_streaming = false; stats->is_streaming = false;
spin_unlock_irq(&stats->lock);
drain_workqueue(stats->readout_wq);
spin_lock_irq(&stats->lock);
for (i = 0; i < RKISP1_ISP_STATS_REQ_BUFS_MAX; i++) { for (i = 0; i < RKISP1_ISP_STATS_REQ_BUFS_MAX; i++) {
if (list_empty(&stats->stat)) if (list_empty(&stats->stat))
break; break;
...@@ -324,8 +303,7 @@ static void rkisp1_stats_get_bls_meas(struct rkisp1_stats *stats, ...@@ -324,8 +303,7 @@ static void rkisp1_stats_get_bls_meas(struct rkisp1_stats *stats,
} }
static void static void
rkisp1_stats_send_measurement(struct rkisp1_stats *stats, rkisp1_stats_send_measurement(struct rkisp1_stats *stats, u32 isp_ris)
struct rkisp1_isp_readout_work *meas_work)
{ {
struct rkisp1_stat_buffer *cur_stat_buf; struct rkisp1_stat_buffer *cur_stat_buf;
struct rkisp1_buffer *cur_buf = NULL; struct rkisp1_buffer *cur_buf = NULL;
...@@ -333,21 +311,12 @@ rkisp1_stats_send_measurement(struct rkisp1_stats *stats, ...@@ -333,21 +311,12 @@ rkisp1_stats_send_measurement(struct rkisp1_stats *stats,
atomic_read(&stats->rkisp1->isp.frame_sequence); atomic_read(&stats->rkisp1->isp.frame_sequence);
u64 timestamp = ktime_get_ns(); u64 timestamp = ktime_get_ns();
if (frame_sequence != meas_work->frame_id) {
dev_warn(stats->rkisp1->dev,
"Measurement late(%d, %d)\n",
frame_sequence, meas_work->frame_id);
frame_sequence = meas_work->frame_id;
}
spin_lock_irq(&stats->lock);
/* get one empty buffer */ /* get one empty buffer */
if (!list_empty(&stats->stat)) { if (!list_empty(&stats->stat)) {
cur_buf = list_first_entry(&stats->stat, cur_buf = list_first_entry(&stats->stat,
struct rkisp1_buffer, queue); struct rkisp1_buffer, queue);
list_del(&cur_buf->queue); list_del(&cur_buf->queue);
} }
spin_unlock_irq(&stats->lock);
if (!cur_buf) if (!cur_buf)
return; return;
...@@ -355,18 +324,18 @@ rkisp1_stats_send_measurement(struct rkisp1_stats *stats, ...@@ -355,18 +324,18 @@ rkisp1_stats_send_measurement(struct rkisp1_stats *stats,
cur_stat_buf = cur_stat_buf =
(struct rkisp1_stat_buffer *)(cur_buf->vaddr[0]); (struct rkisp1_stat_buffer *)(cur_buf->vaddr[0]);
if (meas_work->isp_ris & RKISP1_CIF_ISP_AWB_DONE) if (isp_ris & RKISP1_CIF_ISP_AWB_DONE)
rkisp1_stats_get_awb_meas(stats, cur_stat_buf); rkisp1_stats_get_awb_meas(stats, cur_stat_buf);
if (meas_work->isp_ris & RKISP1_CIF_ISP_AFM_FIN) if (isp_ris & RKISP1_CIF_ISP_AFM_FIN)
rkisp1_stats_get_afc_meas(stats, cur_stat_buf); rkisp1_stats_get_afc_meas(stats, cur_stat_buf);
if (meas_work->isp_ris & RKISP1_CIF_ISP_EXP_END) { if (isp_ris & RKISP1_CIF_ISP_EXP_END) {
rkisp1_stats_get_aec_meas(stats, cur_stat_buf); rkisp1_stats_get_aec_meas(stats, cur_stat_buf);
rkisp1_stats_get_bls_meas(stats, cur_stat_buf); rkisp1_stats_get_bls_meas(stats, cur_stat_buf);
} }
if (meas_work->isp_ris & RKISP1_CIF_ISP_HIST_MEASURE_RDY) if (isp_ris & RKISP1_CIF_ISP_HIST_MEASURE_RDY)
rkisp1_stats_get_hst_meas(stats, cur_stat_buf); rkisp1_stats_get_hst_meas(stats, cur_stat_buf);
vb2_set_plane_payload(&cur_buf->vb.vb2_buf, 0, vb2_set_plane_payload(&cur_buf->vb.vb2_buf, 0,
...@@ -376,24 +345,9 @@ rkisp1_stats_send_measurement(struct rkisp1_stats *stats, ...@@ -376,24 +345,9 @@ rkisp1_stats_send_measurement(struct rkisp1_stats *stats,
vb2_buffer_done(&cur_buf->vb.vb2_buf, VB2_BUF_STATE_DONE); vb2_buffer_done(&cur_buf->vb.vb2_buf, VB2_BUF_STATE_DONE);
} }
static void rkisp1_stats_readout_work(struct work_struct *work)
{
struct rkisp1_isp_readout_work *readout_work =
container_of(work, struct rkisp1_isp_readout_work, work);
struct rkisp1_stats *stats = readout_work->stats;
if (readout_work->readout == RKISP1_ISP_READOUT_MEAS)
rkisp1_stats_send_measurement(stats, readout_work);
kfree(readout_work);
}
void rkisp1_stats_isr(struct rkisp1_stats *stats, u32 isp_ris) void rkisp1_stats_isr(struct rkisp1_stats *stats, u32 isp_ris)
{ {
unsigned int frame_sequence =
atomic_read(&stats->rkisp1->isp.frame_sequence);
struct rkisp1_device *rkisp1 = stats->rkisp1; struct rkisp1_device *rkisp1 = stats->rkisp1;
struct rkisp1_isp_readout_work *work;
unsigned int isp_mis_tmp = 0; unsigned int isp_mis_tmp = 0;
spin_lock(&stats->lock); spin_lock(&stats->lock);
...@@ -406,23 +360,8 @@ void rkisp1_stats_isr(struct rkisp1_stats *stats, u32 isp_ris) ...@@ -406,23 +360,8 @@ void rkisp1_stats_isr(struct rkisp1_stats *stats, u32 isp_ris)
if (!stats->is_streaming) if (!stats->is_streaming)
goto unlock; goto unlock;
if (isp_ris & RKISP1_STATS_MEAS_MASK) { if (isp_ris & RKISP1_STATS_MEAS_MASK)
work = kzalloc(sizeof(*work), GFP_ATOMIC); rkisp1_stats_send_measurement(stats, isp_ris);
if (work) {
INIT_WORK(&work->work,
rkisp1_stats_readout_work);
work->readout = RKISP1_ISP_READOUT_MEAS;
work->stats = stats;
work->frame_id = frame_sequence;
work->isp_ris = isp_ris;
if (!queue_work(stats->readout_wq,
&work->work))
kfree(work);
} else {
dev_err(stats->rkisp1->dev,
"Could not allocate work\n");
}
}
unlock: unlock:
spin_unlock(&stats->lock); spin_unlock(&stats->lock);
...@@ -476,19 +415,8 @@ int rkisp1_stats_register(struct rkisp1_stats *stats, ...@@ -476,19 +415,8 @@ int rkisp1_stats_register(struct rkisp1_stats *stats,
goto err_cleanup_media_entity; goto err_cleanup_media_entity;
} }
stats->readout_wq = alloc_workqueue("measurement_queue",
WQ_UNBOUND | WQ_MEM_RECLAIM,
1);
if (!stats->readout_wq) {
ret = -ENOMEM;
goto err_unreg_vdev;
}
return 0; return 0;
err_unreg_vdev:
video_unregister_device(vdev);
err_cleanup_media_entity: err_cleanup_media_entity:
media_entity_cleanup(&vdev->entity); media_entity_cleanup(&vdev->entity);
err_release_queue: err_release_queue:
...@@ -502,7 +430,6 @@ void rkisp1_stats_unregister(struct rkisp1_stats *stats) ...@@ -502,7 +430,6 @@ void rkisp1_stats_unregister(struct rkisp1_stats *stats)
struct rkisp1_vdev_node *node = &stats->vnode; struct rkisp1_vdev_node *node = &stats->vnode;
struct video_device *vdev = &node->vdev; struct video_device *vdev = &node->vdev;
destroy_workqueue(stats->readout_wq);
video_unregister_device(vdev); video_unregister_device(vdev);
media_entity_cleanup(&vdev->entity); media_entity_cleanup(&vdev->entity);
vb2_queue_release(vdev->queue); vb2_queue_release(vdev->queue);
......
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