Linux ARM-MSM sub-architecture
 help / color / mirror / Atom feed
From: Bryan O'Donoghue <bod@kernel.org>
To: Dikshita Agarwal <dikshita.agarwal@oss.qualcomm.com>,
	Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>,
	Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Cc: Vikash Garodia <vikash.garodia@oss.qualcomm.com>,
	Abhinav Kumar <abhinav.kumar@linux.dev>,
	Mauro Carvalho Chehab <mchehab@kernel.org>,
	linux-media@vger.kernel.org, linux-arm-msm@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] media: iris: Enable Gen2 HFI on SC7280
Date: Thu, 12 Feb 2026 13:27:15 +0000	[thread overview]
Message-ID: <5ec260fd-b8ae-4c54-863f-de9e684bc543@kernel.org> (raw)
In-Reply-To: <b759fb04-22b7-cd5c-9e53-f4ffe9f37dc5@oss.qualcomm.com>

On 12/02/2026 13:05, Dikshita Agarwal wrote:
> 
> 
> On 2/12/2026 5:13 PM, Konrad Dybcio wrote:
>> On 2/12/26 12:16 PM, Dikshita Agarwal wrote:
>>>
>>>
>>> On 2/9/2026 6:05 PM, Dmitry Baryshkov wrote:
>>>> On Mon, Feb 09, 2026 at 05:04:48PM +0530, Dikshita Agarwal wrote:
>>>>>
>>>>>
>>>>> On 2/9/2026 3:32 PM, Konrad Dybcio wrote:
>>>>>> On 2/9/26 10:45 AM, Dikshita Agarwal wrote:
>>>>>>> SC7280 supports both Gen1 and Gen2 HFI firmware. The driver continues to
>>>>>>> use Gen1 by default, but boards that intend to use Gen2 firmware can
>>>>>>> opt‑in by specifying a Gen2 image through the Device Tree
>>>>>>> 'firmware-name' property.
>>>>>>>
>>>>>>> Based on this property and the availability of the referenced
>>>>>>> firmware binary, the driver selects the appropriate HFI generation and
>>>>>>> updates its platform data accordingly. Boards that do not
>>>>>>> specify a Gen2 firmware, or where the firmware is not present,
>>>>>>> automatically fall back to Gen1.
>>>>>>>
>>>>>>> Signed-off-by: Dikshita Agarwal <dikshita.agarwal@oss.qualcomm.com>
>>>>>>> ---
>>
>> [...]
>>
>>>>> To avoid accidental matches, I can switch to an exact filename match
>>>>> instead. That way, only the specific Gen2 image (for example
>>>>> "qcom/vpu/vpu20_p1_gen2.mbn") will trigger the Gen2 path, and boards that
>>>>
>>>> How do you detect that for the OEM-signed firmware, which can have
>>>> random name?
>>>>
>>>>> want to use Gen2 can opt in by naming the firmware accordingly.
>>>
>>> I Explored on suggested alternative approaches and seeing some limitation
>>> with the both of them:
>>>
>>> 1. Detecting Gen1/Gen2 by scanning the firmware blob (fw->data)
>>> It is possible to parse QC_IMAGE_VERSION_STRING from the .mbn and  extract
>>> the version string. The issues with this approach :
>>>
>>> - the version string has no explicit marker that identifies Gen1 vs Gen2.
>>>
>>> - This prefix is not a formal ABI, and it is not consistent across SoCs.
>>> Each SoC family uses different naming patterns in the version string.
>>>
>>> Example : For SC7280 Gen1 we currently see:
>>> QC_IMAGE_VERSION_STRING=video-firmware.1.0-<hash> while SM8250 has
>>> QC_IMAGE_VERSION_STRING=VIDEO.VPU.1.0-00119-<>
>>>
>>> So the driver would need SoC‑specific string‑matching rules, which is hard
>>> to maintain if we are looking for a design to address all available SOCs.
>>
>> The only SoC with such distinction today is kodiak. So we can simply check:
>>
>> if (kodiak && strstr(fw->data, "VIDEO.VPU.1.0.")
>> 	hfi = gen2;
> 
> Agree, this works for Kodiak. However, Dmitry was also referring to other
> SoCs that may support both Gen1 and Gen2, and at the moment there isn’t a
> generic way to handle that check.
> 
> Also, please note that the Kodiak Gen1 firmware uses the string
> video-firmware.1.0, whereas Gen2 uses VIDEO.VPU.3.4.
> 
>>
>>
>> Can we agree that VIDEO.VPU.x firmwares are hfigen2? If so, problem also
>> solved for <=8450
>>
> 
> Nope. that's not true for all, SM8250 uses VIDEO.VPU.1.0 which is gen1.
> 
> Thanks,
> Dikshita
> 
>> Konrad

I really don't see what the problem with Dikshita's proposal here is 
after all she literally controls the firmware name that goes to 
linux-firmware.

Presumably you can attest to the naming format you have-sent and 
will-send in future.

---
bod

  reply	other threads:[~2026-02-12 13:27 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-09  9:45 [PATCH 0/2] media: qcom: iris: Add Gen2 HFI support for SC7280 Dikshita Agarwal
2026-02-09  9:45 ` [PATCH 1/2] media: iris: Initialize HFI ops after firmware load in core init Dikshita Agarwal
2026-02-09 11:34   ` Bryan O'Donoghue
2026-02-09  9:45 ` [PATCH 2/2] media: iris: Enable Gen2 HFI on SC7280 Dikshita Agarwal
2026-02-09 10:02   ` Konrad Dybcio
2026-02-09 11:34     ` Dikshita Agarwal
2026-02-09 11:36       ` Bryan O'Donoghue
2026-02-09 11:39       ` Konrad Dybcio
2026-02-09 12:35       ` Dmitry Baryshkov
2026-02-12 11:16         ` Dikshita Agarwal
2026-02-12 11:43           ` Konrad Dybcio
2026-02-12 13:05             ` Dikshita Agarwal
2026-02-12 13:27               ` Bryan O'Donoghue [this message]
2026-02-12 14:50                 ` Konrad Dybcio
2026-02-13 11:08                 ` Dmitry Baryshkov
2026-02-13 12:04               ` Dmitry Baryshkov
2026-02-16  8:23                 ` Dikshita Agarwal
2026-02-16 12:03                   ` Dmitry Baryshkov
2026-02-16 12:24                     ` Dikshita Agarwal
2026-02-16 14:42                       ` Dmitry Baryshkov
2026-02-17  7:40                 ` Dikshita Agarwal
2026-02-17 10:37                   ` Bryan O'Donoghue
2026-02-17 12:04                     ` Dmitry Baryshkov
2026-02-17 12:20                   ` Konrad Dybcio
2026-02-20  6:20                     ` Dikshita Agarwal
2026-02-23  1:14                       ` Dmitry Baryshkov
2026-02-17 13:05                   ` Dmitry Baryshkov
2026-02-09 12:33   ` Dmitry Baryshkov

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=5ec260fd-b8ae-4c54-863f-de9e684bc543@kernel.org \
    --to=bod@kernel.org \
    --cc=abhinav.kumar@linux.dev \
    --cc=dikshita.agarwal@oss.qualcomm.com \
    --cc=dmitry.baryshkov@oss.qualcomm.com \
    --cc=konrad.dybcio@oss.qualcomm.com \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=vikash.garodia@oss.qualcomm.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