summaryrefslogtreecommitdiff
path: root/drivers/staging/media/ipu3/ipu3-css.c
diff options
context:
space:
mode:
authorBingbu Cao <bingbu.cao@intel.com>2019-03-22 07:14:45 -0400
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>2019-04-22 11:40:00 -0400
commit8ecc7c9da013e702aa889002e1288521d7533293 (patch)
treecaeeb73d2d9504f625a1be9978561e3f4bf83d24 /drivers/staging/media/ipu3/ipu3-css.c
parent642bb5e88fed89e922239106e8dd9e5e6a39d172 (diff)
media: staging/intel-ipu3: parameter buffer refactoring
Current ImgU driver processes and releases the parameter buffer immediately after queued from user. This does not align with other image buffers which are grouped in sets and used for the same frame. If user queues multiple parameter buffers continuously, only the last one will take effect. To make consistent buffers usage, this patch changes the parameter buffer handling and group parameter buffer with other image buffers for each frame. Each time driver will queue one more group of buffers when previous frame processed and buffers consumed by css. Signed-off-by: Tianshu Qiu <tian.shu.qiu@intel.com> Signed-off-by: Bingbu Cao <bingbu.cao@intel.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'drivers/staging/media/ipu3/ipu3-css.c')
-rw-r--r--drivers/staging/media/ipu3/ipu3-css.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/staging/media/ipu3/ipu3-css.c b/drivers/staging/media/ipu3/ipu3-css.c
index e7f1898874fd..23cf5b2cfe8b 100644
--- a/drivers/staging/media/ipu3/ipu3-css.c
+++ b/drivers/staging/media/ipu3/ipu3-css.c
@@ -2171,11 +2171,6 @@ int imgu_css_set_parameters(struct imgu_css *css, unsigned int pipe,
obgrid_size = imgu_css_fw_obgrid_size(bi);
stripes = bi->info.isp.sp.iterator.num_stripes ? : 1;
- /*
- * TODO(b/118782861): If userspace queues more than 4 buffers, the
- * parameters from previous buffers will be overwritten. Fix the driver
- * not to allow this.
- */
imgu_css_pool_get(&css_pipe->pool.parameter_set_info);
param_set = imgu_css_pool_last(&css_pipe->pool.parameter_set_info,
0)->vaddr;