From: Vladimir Zapolskiy <vladimir.zapolskiy@linaro.org>
To: Bryan O'Donoghue <bryan.odonoghue@linaro.org>,
Depeng Shao <quic_depengs@quicinc.com>,
rfoss@kernel.org, todor.too@gmail.com, mchehab@kernel.org,
robh@kernel.org, krzk+dt@kernel.org, conor+dt@kernel.org
Cc: linux-arm-msm@vger.kernel.org, linux-media@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
kernel@quicinc.com
Subject: Re: [PATCH 09/13] media: qcom: camss: vfe: Move common code into vfe core
Date: Sat, 24 Aug 2024 16:06:44 +0300 [thread overview]
Message-ID: <b1e1ff88-5bba-4424-bc85-38caa85b831f@linaro.org> (raw)
In-Reply-To: <0611458d-b508-4e52-bafe-7f5612c63b72@linaro.org>
Hi Bryan,
On 8/15/24 03:09, Bryan O'Donoghue wrote:
> On 12/08/2024 15:41, Depeng Shao wrote:
>> Some v4l2 buffer related logic functions can be moved to vfe core as
>> common code, then the vfe driver of different hw version can reuse them,
>> this also can avoid adding duplicate code for new version supporting.
>>
>> Suggested-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
>> Signed-off-by: Depeng Shao <quic_depengs@quicinc.com>
>> ---
>> .../media/platform/qcom/camss/camss-vfe-17x.c | 112 +-------
>> .../media/platform/qcom/camss/camss-vfe-4-1.c | 9 -
>> .../media/platform/qcom/camss/camss-vfe-4-7.c | 11 -
>> .../media/platform/qcom/camss/camss-vfe-4-8.c | 11 -
>> .../media/platform/qcom/camss/camss-vfe-480.c | 258 +----------------
>> drivers/media/platform/qcom/camss/camss-vfe.c | 264 ++++++++++++++++++
>> drivers/media/platform/qcom/camss/camss-vfe.h | 58 +++-
>> 7 files changed, 340 insertions(+), 383 deletions(-)
>>
>> diff --git a/drivers/media/platform/qcom/camss/camss-vfe-17x.c b/drivers/media/platform/qcom/camss/camss-vfe-17x.c
>> index 380c99321030..e5ee7e717b3b 100644
>> --- a/drivers/media/platform/qcom/camss/camss-vfe-17x.c
>> +++ b/drivers/media/platform/qcom/camss/camss-vfe-17x.c
>> @@ -14,8 +14,6 @@
>> #include "camss.h"
>> #include "camss-vfe.h"
>>
>> -#define VFE_HW_VERSION (0x000)
>> -
>> #define VFE_GLOBAL_RESET_CMD (0x018)
>> #define GLOBAL_RESET_CMD_CORE BIT(0)
>> #define GLOBAL_RESET_CMD_CAMIF BIT(1)
>> @@ -176,20 +174,6 @@
>> #define VFE_BUS_WM_FRAME_INC(n) (0x2258 + (n) * 0x100)
>> #define VFE_BUS_WM_BURST_LIMIT(n) (0x225c + (n) * 0x100)
>>
>> -static u32 vfe_hw_version(struct vfe_device *vfe)
>> -{
>> - u32 hw_version = readl_relaxed(vfe->base + VFE_HW_VERSION);
>> -
>> - u32 gen = (hw_version >> 28) & 0xF;
>> - u32 rev = (hw_version >> 16) & 0xFFF;
>> - u32 step = hw_version & 0xFFFF;
>> -
>> - dev_dbg(vfe->camss->dev, "VFE HW Version = %u.%u.%u\n",
>> - gen, rev, step);
>> -
>> - return hw_version;
>> -}
>> -
>> static inline void vfe_reg_set(struct vfe_device *vfe, u32 reg, u32 set_bits)
>> {
>> u32 bits = readl_relaxed(vfe->base + reg);
>> @@ -438,62 +422,6 @@ static int vfe_get_output(struct vfe_line *line)
>> return -EINVAL;
>> }
>>
>> -static int vfe_enable_output(struct vfe_line *line)
>> -{
>> - struct vfe_device *vfe = to_vfe(line);
>> - struct vfe_output *output = &line->output;
>> - const struct vfe_hw_ops *ops = vfe->res->hw_ops;
>> - struct media_entity *sensor;
>> - unsigned long flags;
>> - unsigned int frame_skip = 0;
>> - unsigned int i;
>> -
>> - sensor = camss_find_sensor(&line->subdev.entity);
>> - if (sensor) {
>> - struct v4l2_subdev *subdev = media_entity_to_v4l2_subdev(sensor);
>> -
>> - v4l2_subdev_call(subdev, sensor, g_skip_frames, &frame_skip);
>> - /* Max frame skip is 29 frames */
>> - if (frame_skip > VFE_FRAME_DROP_VAL - 1)
>> - frame_skip = VFE_FRAME_DROP_VAL - 1;
>> - }
>> -
>> - spin_lock_irqsave(&vfe->output_lock, flags);
>> -
>> - ops->reg_update_clear(vfe, line->id);
>> -
>> - if (output->state > VFE_OUTPUT_RESERVED) {
>> - dev_err(vfe->camss->dev, "Output is not in reserved state %d\n",
>> - output->state);
>> - spin_unlock_irqrestore(&vfe->output_lock, flags);
>> - return -EINVAL;
>> - }
>> -
>> - WARN_ON(output->gen2.active_num);
>> -
>> - output->state = VFE_OUTPUT_ON;
>> -
>> - output->sequence = 0;
>> - output->wait_reg_update = 0;
>> - reinit_completion(&output->reg_update);
>> -
>> - vfe_wm_start(vfe, output->wm_idx[0], line);
>> -
>> - for (i = 0; i < 2; i++) {
>> - output->buf[i] = vfe_buf_get_pending(output);
>> - if (!output->buf[i])
>> - break;
>> - output->gen2.active_num++;
>> - vfe_wm_update(vfe, output->wm_idx[0], output->buf[i]->addr[0], line);
>> - }
>> -
>> - ops->reg_update(vfe, line->id);
>> -
>> - spin_unlock_irqrestore(&vfe->output_lock, flags);
>> -
>> - return 0;
>> -}
>> -
>> /*
>> * vfe_enable - Enable streaming on VFE line
>> * @line: VFE line
>> @@ -518,7 +446,7 @@ static int vfe_enable(struct vfe_line *line)
>> if (ret < 0)
>> goto error_get_output;
>>
>> - ret = vfe_enable_output(line);
>> + ret = vfe_enable_output_v2(line);
>> if (ret < 0)
>> goto error_enable_output;
>>
>> @@ -627,40 +555,6 @@ static void vfe_isr_wm_done(struct vfe_device *vfe, u8 wm)
>> spin_unlock_irqrestore(&vfe->output_lock, flags);
>> }
>>
>> -/*
>> - * vfe_queue_buffer - Add empty buffer
>> - * @vid: Video device structure
>> - * @buf: Buffer to be enqueued
>> - *
>> - * Add an empty buffer - depending on the current number of buffers it will be
>> - * put in pending buffer queue or directly given to the hardware to be filled.
>> - *
>> - * Return 0 on success or a negative error code otherwise
>> - */
>> -static int vfe_queue_buffer(struct camss_video *vid,
>> - struct camss_buffer *buf)
>> -{
>> - struct vfe_line *line = container_of(vid, struct vfe_line, video_out);
>> - struct vfe_device *vfe = to_vfe(line);
>> - struct vfe_output *output;
>> - unsigned long flags;
>> -
>> - output = &line->output;
>> -
>> - spin_lock_irqsave(&vfe->output_lock, flags);
>> -
>> - if (output->state == VFE_OUTPUT_ON && output->gen2.active_num < 2) {
>> - output->buf[output->gen2.active_num++] = buf;
>> - vfe_wm_update(vfe, output->wm_idx[0], buf->addr[0], line);
>> - } else {
>> - vfe_buf_add_pending(output, buf);
>> - }
>> -
>> - spin_unlock_irqrestore(&vfe->output_lock, flags);
>> -
>> - return 0;
>> -}
>> -
>> static const struct vfe_isr_ops vfe_isr_ops_170 = {
>> .reset_ack = vfe_isr_reset_ack,
>> .halt_ack = vfe_isr_halt_ack,
>> @@ -671,7 +565,7 @@ static const struct vfe_isr_ops vfe_isr_ops_170 = {
>> };
>>
>> static const struct camss_video_ops vfe_video_ops_170 = {
>> - .queue_buffer = vfe_queue_buffer,
>> + .queue_buffer = vfe_queue_buffer_v2,
>> .flush_buffers = vfe_flush_buffers,
>> };
>>
>> @@ -695,5 +589,7 @@ const struct vfe_hw_ops vfe_ops_170 = {
>> .vfe_enable = vfe_enable,
>> .vfe_halt = vfe_halt,
>> .violation_read = vfe_violation_read,
>> + .vfe_wm_start = vfe_wm_start,
>> .vfe_wm_stop = vfe_wm_stop,
>> + .vfe_wm_update = vfe_wm_update,
>> };
>> diff --git a/drivers/media/platform/qcom/camss/camss-vfe-4-1.c b/drivers/media/platform/qcom/camss/camss-vfe-4-1.c
>> index 1bd3a6ef1d04..6930799f77c2 100644
>> --- a/drivers/media/platform/qcom/camss/camss-vfe-4-1.c
>> +++ b/drivers/media/platform/qcom/camss/camss-vfe-4-1.c
>> @@ -210,15 +210,6 @@
>> #define MSM_VFE_VFE0_UB_SIZE 1023
>> #define MSM_VFE_VFE0_UB_SIZE_RDI (MSM_VFE_VFE0_UB_SIZE / 3)
>>
>> -static u32 vfe_hw_version(struct vfe_device *vfe)
>> -{
>> - u32 hw_version = readl_relaxed(vfe->base + VFE_0_HW_VERSION);
>> -
>> - dev_dbg(vfe->camss->dev, "VFE HW Version = 0x%08x\n", hw_version);
>> -
>> - return hw_version;
>> -}
>> -
>> static u16 vfe_get_ub_size(u8 vfe_id)
>> {
>> if (vfe_id == 0)
>> diff --git a/drivers/media/platform/qcom/camss/camss-vfe-4-7.c b/drivers/media/platform/qcom/camss/camss-vfe-4-7.c
>> index ce0719106bd3..76729607db02 100644
>> --- a/drivers/media/platform/qcom/camss/camss-vfe-4-7.c
>> +++ b/drivers/media/platform/qcom/camss/camss-vfe-4-7.c
>> @@ -18,8 +18,6 @@
>> #include "camss-vfe-gen1.h"
>>
>>
>> -#define VFE_0_HW_VERSION 0x000
>> -
>> #define VFE_0_GLOBAL_RESET_CMD 0x018
>> #define VFE_0_GLOBAL_RESET_CMD_CORE BIT(0)
>> #define VFE_0_GLOBAL_RESET_CMD_CAMIF BIT(1)
>> @@ -254,15 +252,6 @@
>> #define MSM_VFE_VFE1_UB_SIZE 1535
>> #define MSM_VFE_VFE1_UB_SIZE_RDI (MSM_VFE_VFE1_UB_SIZE / 3)
>>
>> -static u32 vfe_hw_version(struct vfe_device *vfe)
>> -{
>> - u32 hw_version = readl_relaxed(vfe->base + VFE_0_HW_VERSION);
>> -
>> - dev_dbg(vfe->camss->dev, "VFE HW Version = 0x%08x\n", hw_version);
>> -
>> - return hw_version;
>> -}
>> -
>> static u16 vfe_get_ub_size(u8 vfe_id)
>> {
>> if (vfe_id == 0)
>> diff --git a/drivers/media/platform/qcom/camss/camss-vfe-4-8.c b/drivers/media/platform/qcom/camss/camss-vfe-4-8.c
>> index 6b59c8107a3c..b2f7d855d8dd 100644
>> --- a/drivers/media/platform/qcom/camss/camss-vfe-4-8.c
>> +++ b/drivers/media/platform/qcom/camss/camss-vfe-4-8.c
>> @@ -17,8 +17,6 @@
>> #include "camss-vfe.h"
>> #include "camss-vfe-gen1.h"
>>
>> -#define VFE_0_HW_VERSION 0x000
>> -
>> #define VFE_0_GLOBAL_RESET_CMD 0x018
>> #define VFE_0_GLOBAL_RESET_CMD_CORE BIT(0)
>> #define VFE_0_GLOBAL_RESET_CMD_CAMIF BIT(1)
>> @@ -247,15 +245,6 @@
>> #define MSM_VFE_VFE1_UB_SIZE 1535
>> #define MSM_VFE_VFE1_UB_SIZE_RDI (MSM_VFE_VFE1_UB_SIZE / 3)
>>
>> -static u32 vfe_hw_version(struct vfe_device *vfe)
>> -{
>> - u32 hw_version = readl_relaxed(vfe->base + VFE_0_HW_VERSION);
>> -
>> - dev_dbg(vfe->camss->dev, "VFE HW Version = 0x%08x\n", hw_version);
>> -
>> - return hw_version;
>> -}
>> -
>> static inline void vfe_reg_clr(struct vfe_device *vfe, u32 reg, u32 clr_bits)
>> {
>> u32 bits = readl_relaxed(vfe->base + reg);
>> diff --git a/drivers/media/platform/qcom/camss/camss-vfe-480.c b/drivers/media/platform/qcom/camss/camss-vfe-480.c
>> index dc2735476c82..e6d3b27de323 100644
>> --- a/drivers/media/platform/qcom/camss/camss-vfe-480.c
>> +++ b/drivers/media/platform/qcom/camss/camss-vfe-480.c
>> @@ -15,8 +15,6 @@
>> #include "camss.h"
>> #include "camss-vfe.h"
>>
>> -#define VFE_HW_VERSION (0x00)
>> -
>> #define VFE_GLOBAL_RESET_CMD (vfe_is_lite(vfe) ? 0x0c : 0x1c)
>> #define GLOBAL_RESET_HW_AND_REG (vfe_is_lite(vfe) ? BIT(1) : BIT(0))
>>
>> @@ -92,19 +90,6 @@ static inline int bus_irq_mask_0_comp_done(struct vfe_device *vfe, int n)
>>
>> #define MAX_VFE_OUTPUT_LINES 4
>>
>> -static u32 vfe_hw_version(struct vfe_device *vfe)
>> -{
>> - u32 hw_version = readl_relaxed(vfe->base + VFE_HW_VERSION);
>> -
>> - u32 gen = (hw_version >> 28) & 0xF;
>> - u32 rev = (hw_version >> 16) & 0xFFF;
>> - u32 step = hw_version & 0xFFFF;
>> -
>> - dev_dbg(vfe->camss->dev, "VFE HW Version = %u.%u.%u\n", gen, rev, step);
>> -
>> - return hw_version;
>> -}
>> -
>> static void vfe_global_reset(struct vfe_device *vfe)
>> {
>> writel_relaxed(IRQ_MASK_0_RESET_ACK, vfe->base + VFE_IRQ_MASK(0));
>> @@ -167,18 +152,16 @@ static inline void vfe_reg_update_clear(struct vfe_device *vfe,
>> vfe->reg_update &= ~REG_UPDATE_RDI(vfe, line_id);
>> }
>>
>> -static void vfe_enable_irq_common(struct vfe_device *vfe)
>> -{
>> - /* enable reset ack IRQ and top BUS status IRQ */
>> - writel_relaxed(IRQ_MASK_0_RESET_ACK | IRQ_MASK_0_BUS_TOP_IRQ,
>> - vfe->base + VFE_IRQ_MASK(0));
>> -}
>> -
>> -static void vfe_enable_lines_irq(struct vfe_device *vfe)
>> +static void vfe_enable_irq(struct vfe_device *vfe)
>> {
>> int i;
>> u32 bus_irq_mask = 0;
>>
>> + if (!vfe->stream_count)
>> + /* enable reset ack IRQ and top BUS status IRQ */
>> + writel(IRQ_MASK_0_RESET_ACK | IRQ_MASK_0_BUS_TOP_IRQ,
>> + vfe->base + VFE_IRQ_MASK(0));
>> +
>> for (i = 0; i < MAX_VFE_OUTPUT_LINES; i++) {
>> /* Enable IRQ for newly added lines, but also keep already running lines's IRQ */
>> if (vfe->line[i].output.state == VFE_OUTPUT_RESERVED ||
>> @@ -188,11 +171,10 @@ static void vfe_enable_lines_irq(struct vfe_device *vfe)
>> }
>> }
>>
>> - writel_relaxed(bus_irq_mask, vfe->base + VFE_BUS_IRQ_MASK(0));
>> + writel(bus_irq_mask, vfe->base + VFE_BUS_IRQ_MASK(0));
>> }
>>
>> static void vfe_isr_reg_update(struct vfe_device *vfe, enum vfe_line_id line_id);
>> -static void vfe_isr_wm_done(struct vfe_device *vfe, u8 wm);
>>
>> /*
>> * vfe_isr - VFE module interrupt handler
>> @@ -226,7 +208,7 @@ static irqreturn_t vfe_isr(int irq, void *dev)
>> vfe_isr_reg_update(vfe, i);
>>
>> if (status & BUS_IRQ_MASK_0_COMP_DONE(vfe, RDI_COMP_GROUP(i)))
>> - vfe_isr_wm_done(vfe, i);
>> + vfe_buf_done(vfe, i);
>> }
>> }
>>
>> @@ -245,132 +227,6 @@ static int vfe_halt(struct vfe_device *vfe)
>> return 0;
>> }
>>
>> -static int vfe_get_output(struct vfe_line *line)
>> -{
>> - struct vfe_device *vfe = to_vfe(line);
>> - struct vfe_output *output;
>> - unsigned long flags;
>> -
>> - spin_lock_irqsave(&vfe->output_lock, flags);
>> -
>> - output = &line->output;
>> - if (output->state > VFE_OUTPUT_RESERVED) {
>> - dev_err(vfe->camss->dev, "Output is running\n");
>> - goto error;
>> - }
>> -
>> - output->wm_num = 1;
>> -
>> - /* Correspondence between VFE line number and WM number.
>> - * line 0 -> RDI 0, line 1 -> RDI1, line 2 -> RDI2, line 3 -> PIX/RDI3
>> - * Note this 1:1 mapping will not work for PIX streams.
>> - */
>> - output->wm_idx[0] = line->id;
>> - vfe->wm_output_map[line->id] = line->id;
>> -
>> - output->drop_update_idx = 0;
>> -
>> - spin_unlock_irqrestore(&vfe->output_lock, flags);
>> -
>> - return 0;
>> -
>> -error:
>> - spin_unlock_irqrestore(&vfe->output_lock, flags);
>> - output->state = VFE_OUTPUT_OFF;
>> -
>> - return -EINVAL;
>> -}
>> -
>> -static int vfe_enable_output(struct vfe_line *line)
>> -{
>> - struct vfe_device *vfe = to_vfe(line);
>> - struct vfe_output *output = &line->output;
>> - unsigned long flags;
>> - unsigned int i;
>> -
>> - spin_lock_irqsave(&vfe->output_lock, flags);
>> -
>> - vfe_reg_update_clear(vfe, line->id);
>> -
>> - if (output->state > VFE_OUTPUT_RESERVED) {
>> - dev_err(vfe->camss->dev, "Output is not in reserved state %d\n",
>> - output->state);
>> - spin_unlock_irqrestore(&vfe->output_lock, flags);
>> - return -EINVAL;
>> - }
>> -
>> - WARN_ON(output->gen2.active_num);
>> -
>> - output->state = VFE_OUTPUT_ON;
>> -
>> - output->sequence = 0;
>> - output->wait_reg_update = 0;
>> - reinit_completion(&output->reg_update);
>> -
>> - vfe_wm_start(vfe, output->wm_idx[0], line);
>> -
>> - for (i = 0; i < 2; i++) {
>> - output->buf[i] = vfe_buf_get_pending(output);
>> - if (!output->buf[i])
>> - break;
>> - output->gen2.active_num++;
>> - vfe_wm_update(vfe, output->wm_idx[0], output->buf[i]->addr[0], line);
>> - }
>> -
>> - vfe_reg_update(vfe, line->id);
>> -
>> - spin_unlock_irqrestore(&vfe->output_lock, flags);
>> -
>> - return 0;
>> -}
>> -
>> -/*
>> - * vfe_enable - Enable streaming on VFE line
>> - * @line: VFE line
>> - *
>> - * Return 0 on success or a negative error code otherwise
>> - */
>> -static int vfe_enable(struct vfe_line *line)
>> -{
>> - struct vfe_device *vfe = to_vfe(line);
>> - int ret;
>> -
>> - mutex_lock(&vfe->stream_lock);
>> -
>> - if (!vfe->stream_count)
>> - vfe_enable_irq_common(vfe);
>> -
>> - vfe->stream_count++;
>> -
>> - vfe_enable_lines_irq(vfe);
>> -
>> - mutex_unlock(&vfe->stream_lock);
>> -
>> - ret = vfe_get_output(line);
>> - if (ret < 0)
>> - goto error_get_output;
>> -
>> - ret = vfe_enable_output(line);
>> - if (ret < 0)
>> - goto error_enable_output;
>> -
>> - vfe->was_streaming = 1;
>> -
>> - return 0;
>> -
>> -error_enable_output:
>> - vfe_put_output(line);
>> -
>> -error_get_output:
>> - mutex_lock(&vfe->stream_lock);
>> -
>> - vfe->stream_count--;
>> -
>> - mutex_unlock(&vfe->stream_lock);
>> -
>> - return ret;
>> -}
>> -
>> /*
>> * vfe_isr_reg_update - Process reg update interrupt
>> * @vfe: VFE Device
>> @@ -394,97 +250,8 @@ static void vfe_isr_reg_update(struct vfe_device *vfe, enum vfe_line_id line_id)
>> spin_unlock_irqrestore(&vfe->output_lock, flags);
>> }
>>
>> -/*
>> - * vfe_isr_wm_done - Process write master done interrupt
>> - * @vfe: VFE Device
>> - * @wm: Write master id
>> - */
>> -static void vfe_isr_wm_done(struct vfe_device *vfe, u8 wm)
>> -{
>> - struct vfe_line *line = &vfe->line[vfe->wm_output_map[wm]];
>> - struct camss_buffer *ready_buf;
>> - struct vfe_output *output;
>> - unsigned long flags;
>> - u32 index;
>> - u64 ts = ktime_get_ns();
>> -
>> - spin_lock_irqsave(&vfe->output_lock, flags);
>> -
>> - if (vfe->wm_output_map[wm] == VFE_LINE_NONE) {
>> - dev_err_ratelimited(vfe->camss->dev,
>> - "Received wm done for unmapped index\n");
>> - goto out_unlock;
>> - }
>> - output = &vfe->line[vfe->wm_output_map[wm]].output;
>> -
>> - ready_buf = output->buf[0];
>> - if (!ready_buf) {
>> - dev_err_ratelimited(vfe->camss->dev,
>> - "Missing ready buf %d!\n", output->state);
>> - goto out_unlock;
>> - }
>> -
>> - ready_buf->vb.vb2_buf.timestamp = ts;
>> - ready_buf->vb.sequence = output->sequence++;
>> -
>> - index = 0;
>> - output->buf[0] = output->buf[1];
>> - if (output->buf[0])
>> - index = 1;
>> -
>> - output->buf[index] = vfe_buf_get_pending(output);
>> -
>> - if (output->buf[index])
>> - vfe_wm_update(vfe, output->wm_idx[0], output->buf[index]->addr[0], line);
>> - else
>> - output->gen2.active_num--;
>> -
>> - spin_unlock_irqrestore(&vfe->output_lock, flags);
>> -
>> - vb2_buffer_done(&ready_buf->vb.vb2_buf, VB2_BUF_STATE_DONE);
>> -
>> - return;
>> -
>> -out_unlock:
>> - spin_unlock_irqrestore(&vfe->output_lock, flags);
>> -}
>> -
>> -/*
>> - * vfe_queue_buffer - Add empty buffer
>> - * @vid: Video device structure
>> - * @buf: Buffer to be enqueued
>> - *
>> - * Add an empty buffer - depending on the current number of buffers it will be
>> - * put in pending buffer queue or directly given to the hardware to be filled.
>> - *
>> - * Return 0 on success or a negative error code otherwise
>> - */
>> -static int vfe_queue_buffer(struct camss_video *vid,
>> - struct camss_buffer *buf)
>> -{
>> - struct vfe_line *line = container_of(vid, struct vfe_line, video_out);
>> - struct vfe_device *vfe = to_vfe(line);
>> - struct vfe_output *output;
>> - unsigned long flags;
>> -
>> - output = &line->output;
>> -
>> - spin_lock_irqsave(&vfe->output_lock, flags);
>> -
>> - if (output->state == VFE_OUTPUT_ON && output->gen2.active_num < 2) {
>> - output->buf[output->gen2.active_num++] = buf;
>> - vfe_wm_update(vfe, output->wm_idx[0], buf->addr[0], line);
>> - } else {
>> - vfe_buf_add_pending(output, buf);
>> - }
>> -
>> - spin_unlock_irqrestore(&vfe->output_lock, flags);
>> -
>> - return 0;
>> -}
>> -
>> static const struct camss_video_ops vfe_video_ops_480 = {
>> - .queue_buffer = vfe_queue_buffer,
>> + .queue_buffer = vfe_queue_buffer_v2,
>> .flush_buffers = vfe_flush_buffers,
>> };
>>
>> @@ -494,6 +261,7 @@ static void vfe_subdev_init(struct device *dev, struct vfe_device *vfe)
>> }
>>
>> const struct vfe_hw_ops vfe_ops_480 = {
>> + .enable_irq = vfe_enable_irq,
>> .global_reset = vfe_global_reset,
>> .hw_version = vfe_hw_version,
>> .isr = vfe_isr,
>> @@ -501,7 +269,11 @@ const struct vfe_hw_ops vfe_ops_480 = {
>> .pm_domain_on = vfe_pm_domain_on,
>> .subdev_init = vfe_subdev_init,
>> .vfe_disable = vfe_disable,
>> - .vfe_enable = vfe_enable,
>> + .vfe_enable = vfe_enable_v2,
>> .vfe_halt = vfe_halt,
>> + .vfe_wm_start = vfe_wm_start,
>> .vfe_wm_stop = vfe_wm_stop,
>> + .vfe_wm_update = vfe_wm_update,
>> + .reg_update = vfe_reg_update,
>> + .reg_update_clear = vfe_reg_update_clear,
>> };
>> diff --git a/drivers/media/platform/qcom/camss/camss-vfe.c b/drivers/media/platform/qcom/camss/camss-vfe.c
>> index 83c5a36d071f..f6650694f47e 100644
>> --- a/drivers/media/platform/qcom/camss/camss-vfe.c
>> +++ b/drivers/media/platform/qcom/camss/camss-vfe.c
>> @@ -32,6 +32,11 @@
>>
>> #define SCALER_RATIO_MAX 16
>>
>> +#define VFE_HW_VERSION 0x0
>> +#define HW_VERSION_STEPPING 0
>> +#define HW_VERSION_REVISION 16
>> +#define HW_VERSION_GENERATION 28
>> +
>> static const struct camss_format_info formats_rdi_8x16[] = {
>> { MEDIA_BUS_FMT_UYVY8_1X16, 8, V4L2_PIX_FMT_UYVY, 1,
>> PER_PLANE_DATA(0, 1, 1, 1, 1, 16) },
>> @@ -402,6 +407,265 @@ static u32 vfe_src_pad_code(struct vfe_line *line, u32 sink_code,
>> return 0;
>> }
>>
>> +/*
>> + * vfe_hw_version - Process write master done interrupt
>> + * @vfe: VFE Device
>> + *
>> + * Return vfe hw version
>> + */
>> +u32 vfe_hw_version(struct vfe_device *vfe)
>> +{
>> + u32 hw_version = readl_relaxed(vfe->base + VFE_HW_VERSION);
>> +
>> + u32 gen = (hw_version >> HW_VERSION_GENERATION) & 0xF;
>> + u32 rev = (hw_version >> HW_VERSION_REVISION) & 0xFFF;
>> + u32 step = (hw_version >> HW_VERSION_STEPPING) & 0xFFFF;
>> +
>> + dev_info(vfe->camss->dev, "VFE:%d HW Version = %u.%u.%u\n",
>> + vfe->id, gen, rev, step);
>> +
>> + return hw_version;
>> +}
>> +
>> +/*
>> + * vfe_buf_done - Process write master done interrupt
>> + * @vfe: VFE Device
>> + * @wm: Write master id
>> + */
>> +void vfe_buf_done(struct vfe_device *vfe, int wm)
>> +{
>> + struct vfe_line *line = &vfe->line[vfe->wm_output_map[wm]];
>> + struct camss_buffer *ready_buf;
>> + struct vfe_output *output;
>> + unsigned long flags;
>> + u32 index;
>> + u64 ts = ktime_get_ns();
>> +
>> + spin_lock_irqsave(&vfe->output_lock, flags);
>> +
>> + if (vfe->wm_output_map[wm] == VFE_LINE_NONE) {
>> + dev_err_ratelimited(vfe->camss->dev,
>> + "Received wm done for unmapped index\n");
>> + goto out_unlock;
>> + }
>> + output = &vfe->line[vfe->wm_output_map[wm]].output;
>> +
>> + ready_buf = output->buf[0];
>> + if (!ready_buf) {
>> + dev_err_ratelimited(vfe->camss->dev,
>> + "Missing ready buf %d!\n", output->state);
>> + goto out_unlock;
>> + }
>> +
>> + ready_buf->vb.vb2_buf.timestamp = ts;
>> + ready_buf->vb.sequence = output->sequence++;
>> +
>> + index = 0;
>> + output->buf[0] = output->buf[1];
>> + if (output->buf[0])
>> + index = 1;
>> +
>> + output->buf[index] = vfe_buf_get_pending(output);
>> +
>> + if (output->buf[index]) {
>> + vfe->res->hw_ops->vfe_wm_update(vfe, output->wm_idx[0],
>> + output->buf[index]->addr[0],
>> + line);
>> + vfe->res->hw_ops->reg_update(vfe, line->id);
>> + } else
>> + output->gen2.active_num--;
>> +
>> + spin_unlock_irqrestore(&vfe->output_lock, flags);
>> +
>> + vb2_buffer_done(&ready_buf->vb.vb2_buf, VB2_BUF_STATE_DONE);
>> +
>> + return;
>> +
>> +out_unlock:
>> + spin_unlock_irqrestore(&vfe->output_lock, flags);
>> +}
>> +
>> +int vfe_enable_output_v2(struct vfe_line *line)
>> +{
>> + struct vfe_device *vfe = to_vfe(line);
>> + struct vfe_output *output = &line->output;
>> + const struct vfe_hw_ops *ops = vfe->res->hw_ops;
>> + struct media_entity *sensor;
>> + unsigned long flags;
>> + unsigned int frame_skip = 0;
>> + unsigned int i;
>> +
>> + sensor = camss_find_sensor(&line->subdev.entity);
>> + if (sensor) {
>> + struct v4l2_subdev *subdev = media_entity_to_v4l2_subdev(sensor);
>> +
>> + v4l2_subdev_call(subdev, sensor, g_skip_frames, &frame_skip);
>> + /* Max frame skip is 29 frames */
>> + if (frame_skip > VFE_FRAME_DROP_VAL - 1)
>> + frame_skip = VFE_FRAME_DROP_VAL - 1;
>> + }
>> +
>> + spin_lock_irqsave(&vfe->output_lock, flags);
>> +
>> + ops->reg_update_clear(vfe, line->id);
>> +
>> + if (output->state > VFE_OUTPUT_RESERVED) {
>> + dev_err(vfe->camss->dev,
>> + "Output is not in reserved state %d\n",
>> + output->state);
>> + spin_unlock_irqrestore(&vfe->output_lock, flags);
>> + return -EINVAL;
>> + }
>> +
>> + WARN_ON(output->gen2.active_num);
>> +
>> + output->state = VFE_OUTPUT_ON;
>> +
>> + output->sequence = 0;
>> + output->wait_reg_update = 0;
>> + reinit_completion(&output->reg_update);
>> +
>> + ops->vfe_wm_start(vfe, output->wm_idx[0], line);
>> +
>> + for (i = 0; i < 2; i++) {
>> + output->buf[i] = vfe_buf_get_pending(output);
>> + if (!output->buf[i])
>> + break;
>> + output->gen2.active_num++;
>> + ops->vfe_wm_update(vfe, output->wm_idx[0],
>> + output->buf[i]->addr[0], line);
>> + ops->reg_update(vfe, line->id);
>> + }
>> +
>> + spin_unlock_irqrestore(&vfe->output_lock, flags);
>> +
>> + return 0;
>> +}
>> +
>> +/*
>> + * vfe_queue_buffer_v2 - Add empty buffer
>> + * @vid: Video device structure
>> + * @buf: Buffer to be enqueued
>> + *
>> + * Add an empty buffer - depending on the current number of buffers it will be
>> + * put in pending buffer queue or directly given to the hardware to be filled.
>> + *
>> + * Return 0 on success or a negative error code otherwise
>> + */
>> +int vfe_queue_buffer_v2(struct camss_video *vid,
>> + struct camss_buffer *buf)
>> +{
>> + struct vfe_line *line = container_of(vid, struct vfe_line, video_out);
>> + struct vfe_device *vfe = to_vfe(line);
>> + struct vfe_output *output;
>> + unsigned long flags;
>> +
>> + output = &line->output;
>> +
>> + spin_lock_irqsave(&vfe->output_lock, flags);
>> +
>> + if (output->state == VFE_OUTPUT_ON &&
>> + output->gen2.active_num < 2) {
>> + output->buf[output->gen2.active_num++] = buf;
>> + vfe->res->hw_ops->vfe_wm_update(vfe, output->wm_idx[0],
>> + buf->addr[0], line);
>> + vfe->res->hw_ops->reg_update(vfe, line->id);
>> + } else {
>> + vfe_buf_add_pending(output, buf);
>> + }
>> +
>> + spin_unlock_irqrestore(&vfe->output_lock, flags);
>> +
>> + return 0;
>> +}
>> +
>> +/*
>> + * vfe_enable_v2 - Enable streaming on VFE line
>> + * @line: VFE line
>> + *
>> + * Return 0 on success or a negative error code otherwise
>> + */
>> +int vfe_enable_v2(struct vfe_line *line)
>> +{
>> + struct vfe_device *vfe = to_vfe(line);
>> + int ret;
>> +
>> + mutex_lock(&vfe->stream_lock);
>> +
>> + if (vfe->res->hw_ops->enable_irq)
>> + vfe->res->hw_ops->enable_irq(vfe);
>
> Right so generally speaking I don't believe we should have any null
> function pointers.
>
> We just mandate that to be comitted, an impelmentation must provide a
> dummy but, in this case when do we ever want a dummy function anyway
> surely enable_irq() is a fundamental operation that is core to the logic.
Why? What could be a justification here?
The image capturing media pipeline for all recent Qualcomm SoCs, including
this one in the series for SM8550, can be set up and enabled without
touching VFE interrupts at all.
It might be extremely confusing to see in the code that some not ever
requested interrupts are enabled/disabled, and then to discover that just
some stubs around VFE interrupts are added. And it's the case especially
in this new vfe_enable_v2() function, which I believe is intended for
CAMSS support on new platforms.
What's worse, since these VFE interrupts are not needed on the modern
platforms, it will require to add a proposed dummy "return 0" function
into any CAMSS support for new platforms forever. I believe it'd be better
to clearly say that it's a legacy to have an obligatory support of VFE
interrupts.
> Also a style nit-pick if you get a hw_ops pointer you don't have to jump
> through so -> many -> indirection -> hoops.
>
> Code will look neater that way.
>
> I'll go through the vfe_enable() stuff in more detail on your next drop.
>
> Please ensure again with the hw_version() that you have equivalent logic
> before and after => no behaviour change similarly with vfe_enable() and
> friends.
>
> The objective is to remove code duplication, not to change logical
> behaviors at all, no matter how seemingly trival that change might be ->
> hw_version 0xsomenumber instea of 0xX, 0xY 0xZ
>
> It probably sounds dogmatic but, its safer that way.
>
--
Best wishes,
Vladimir
next prev parent reply other threads:[~2024-08-24 13:06 UTC|newest]
Thread overview: 100+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-12 14:41 [PATCH v4 00/13] media: qcom: camss: Add sm8550 support Depeng Shao
2024-08-12 14:41 ` [PATCH 01/13] media: qcom: camss: csiphy-3ph: Fix trivial indentation fault in defines Depeng Shao
2024-08-12 14:41 ` [PATCH 02/13] media: qcom: camss: csiphy-3ph: Remove redundant PHY init sequence control loop Depeng Shao
2024-08-12 14:41 ` [PATCH 03/13] media: qcom: camss: csiphy-3ph: Rename struct Depeng Shao
2024-08-12 14:41 ` [PATCH 04/13] media: qcom: camss: csiphy: Add an init callback to CSI PHY devices Depeng Shao
2024-08-19 0:17 ` Vladimir Zapolskiy
2024-09-04 14:20 ` Depeng Shao
2024-09-04 14:51 ` Bryan O'Donoghue
2024-08-12 14:41 ` [PATCH 05/13] media: qcom: camss: csiphy-3ph: Move CSIPHY variables to data field inside csiphy struct Depeng Shao
2024-08-19 0:01 ` Vladimir Zapolskiy
2024-08-28 14:11 ` Depeng Shao
2024-08-12 14:41 ` [PATCH 06/13] media: qcom: camss: csiphy-3ph: Use an offset variable to find common control regs Depeng Shao
2024-08-18 23:59 ` Vladimir Zapolskiy
2024-08-12 14:41 ` [PATCH 07/13] dt-bindings: media: camss: Add qcom,sm8550-camss binding Depeng Shao
2024-08-16 7:01 ` Krzysztof Kozlowski
2024-08-16 7:45 ` Depeng Shao
2024-09-30 7:17 ` Krzysztof Kozlowski
2024-09-05 15:20 ` Vladimir Zapolskiy
2024-09-05 15:54 ` Depeng Shao
2024-09-06 15:56 ` Vladimir Zapolskiy
2024-09-25 15:13 ` Depeng Shao
2024-09-30 7:16 ` Krzysztof Kozlowski
2024-09-30 8:46 ` Vladimir Zapolskiy
2024-09-30 8:55 ` Bryan O'Donoghue
2024-09-30 9:15 ` Vladimir Zapolskiy
2024-09-30 7:26 ` Krzysztof Kozlowski
2024-09-30 8:32 ` Vladimir Zapolskiy
2024-09-30 9:03 ` Bryan O'Donoghue
2024-09-12 8:22 ` Vladimir Zapolskiy
2024-09-12 11:41 ` Bryan O'Donoghue
2024-09-12 12:44 ` Vladimir Zapolskiy
2024-09-12 15:11 ` Bryan O'Donoghue
2024-09-12 20:57 ` Vladimir Zapolskiy
2024-09-12 22:41 ` Bryan O'Donoghue
2024-09-13 5:06 ` Vladimir Zapolskiy
2024-09-17 22:40 ` Bryan O'Donoghue
2024-09-17 23:16 ` Vladimir Zapolskiy
2024-09-25 15:40 ` Depeng Shao
2024-09-30 9:26 ` Depeng Shao
2024-10-08 13:50 ` Vladimir Zapolskiy
2024-10-08 14:06 ` Bryan O'Donoghue
2024-10-08 15:47 ` Depeng Shao
2024-09-30 10:21 ` Bryan O'Donoghue
2024-09-13 4:17 ` Dmitry Baryshkov
2024-09-12 13:48 ` Neil Armstrong
2024-08-12 14:41 ` [PATCH 08/13] media: qcom: camss: csid: Move common code into csid core Depeng Shao
2024-08-14 23:53 ` Bryan O'Donoghue
2024-08-24 12:50 ` Vladimir Zapolskiy
2024-08-12 14:41 ` [PATCH 09/13] media: qcom: camss: vfe: Move common code into vfe core Depeng Shao
2024-08-15 0:09 ` Bryan O'Donoghue
2024-08-16 13:07 ` Depeng Shao
2024-08-24 13:06 ` Vladimir Zapolskiy [this message]
2024-08-28 0:07 ` Bryan O'Donoghue
2024-09-02 13:11 ` Depeng Shao
2024-08-12 14:41 ` [PATCH 10/13] media: qcom: camss: Add sm8550 compatible Depeng Shao
2024-08-13 12:57 ` Bryan O'Donoghue
2024-08-12 14:41 ` [PATCH 11/13] media: qcom: camss: csiphy-3ph: Add Gen2 v2.1.2 two-phase MIPI CSI-2 DPHY support Depeng Shao
2024-08-12 14:41 ` [PATCH 12/13] media: qcom: camss: Add CSID Gen3 support for sm8550 Depeng Shao
2024-08-14 16:08 ` Bryan O'Donoghue
2024-08-14 16:14 ` [PATCH] media: qcom: camss: Add hooks to get CSID wrapper resources Bryan O'Donoghue
2024-08-15 15:14 ` [PATCH 12/13] media: qcom: camss: Add CSID Gen3 support for sm8550 Depeng Shao
2024-08-15 16:10 ` Bryan O'Donoghue
2024-08-16 11:34 ` Bryan O'Donoghue
2024-08-16 13:11 ` Depeng Shao
2024-08-16 14:21 ` Bryan O'Donoghue
2024-08-19 13:23 ` Depeng Shao
2024-08-16 14:45 ` Bryan O'Donoghue
2024-08-19 13:18 ` Depeng Shao
2024-08-16 14:49 ` Bryan O'Donoghue
2024-08-24 13:19 ` Vladimir Zapolskiy
2024-09-30 9:23 ` Vladimir Zapolskiy
2024-09-30 9:38 ` Depeng Shao
2024-08-12 14:41 ` [PATCH 13/13] media: qcom: camss: Add support for VFE hardware version Titan 780 Depeng Shao
2024-08-14 11:13 ` Vladimir Zapolskiy
2024-08-14 13:10 ` Depeng Shao
2024-08-14 23:20 ` Vladimir Zapolskiy
2024-08-15 14:42 ` Depeng Shao
2024-08-15 14:57 ` Vladimir Zapolskiy
2024-08-15 15:43 ` Depeng Shao
2024-08-15 21:31 ` Vladimir Zapolskiy
2024-08-16 12:42 ` Depeng Shao
2024-08-20 14:01 ` Vladimir Zapolskiy
2024-08-14 16:23 ` Bryan O'Donoghue
2024-08-15 13:33 ` Depeng Shao
2024-08-15 16:16 ` Bryan O'Donoghue
2024-08-15 0:16 ` Bryan O'Donoghue
2024-08-15 14:24 ` Depeng Shao
2024-08-15 0:25 ` Bryan O'Donoghue
2024-08-15 14:21 ` Depeng Shao
2024-08-15 16:17 ` Bryan O'Donoghue
2024-09-29 1:28 ` Depeng Shao
2024-09-29 23:57 ` Bryan O'Donoghue
2024-09-30 5:37 ` Depeng Shao
2024-08-19 11:05 ` Bryan O'Donoghue
2024-08-19 13:07 ` Depeng Shao
2024-08-21 11:11 ` Vladimir Zapolskiy
2024-08-24 13:31 ` Vladimir Zapolskiy
2024-08-27 13:16 ` Bryan O'Donoghue
2024-08-13 12:35 ` [PATCH v4 00/13] media: qcom: camss: Add sm8550 support Bryan O'Donoghue
2024-08-13 12:42 ` Depeng Shao
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b1e1ff88-5bba-4424-bc85-38caa85b831f@linaro.org \
--to=vladimir.zapolskiy@linaro.org \
--cc=bryan.odonoghue@linaro.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=kernel@quicinc.com \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=quic_depengs@quicinc.com \
--cc=rfoss@kernel.org \
--cc=robh@kernel.org \
--cc=todor.too@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox