Linux ARM-MSM sub-architecture
 help / color / mirror / Atom feed
* [PATCH v2] accel/qaic: Update the sahara image table for AIC200
@ 2025-10-17 17:34 Youssef Samir
  2025-10-20  6:17 ` Karol Wachowski
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Youssef Samir @ 2025-10-17 17:34 UTC (permalink / raw)
  To: jeff.hugo, carl.vanderlip, troy.hanson, zachary.mckevitt
  Cc: ogabbay, lizhi.hou, karol.wachowski, linux-arm-msm, dri-devel,
	Zack McKevitt, Aswin Venkatesan

From: Youssef Samir <quic_yabdulra@quicinc.com>

Update the Sahara image table for the AIC200 to add entries for:
- qupv3fw.elf at id 54
- xbl_config.elf at id 38
- tz_qti_config.mbn at id 76
And move pvs.bin to id 78 to avoid firmware conflict.

Co-developed-by: Zack McKevitt <zmckevit@qti.qualcomm.com>
Signed-off-by: Zack McKevitt <zmckevit@qti.qualcomm.com>
Co-developed-by: Aswin Venkatesan <aswivenk@qti.qualcomm.com>
Signed-off-by: Aswin Venkatesan <aswivenk@qti.qualcomm.com>
Signed-off-by: Youssef Samir <quic_yabdulra@quicinc.com>
Signed-off-by: Youssef Samir <youssef.abdulrahman@oss.qualcomm.com>
---
Changes in V2:
- Squashed the following patches:
  * accel/qaic: Add QuPFW image entry for AIC200
    Link: https://lore.kernel.org/all/20251007161733.424647-1-youssef.abdulrahman@oss.qualcomm.com
  * accel/qaic: Add tz_qti_config.mbn entry for AIC200
    Link: https://lore.kernel.org/all/20251007161929.426336-1-youssef.abdulrahman@oss.qualcomm.com
  * accel/qaic: Add xbl_config image entry for AIC200
    Link: https://lore.kernel.org/all/20251007221528.561242-1-youssef.abdulrahman@oss.qualcomm.com
- Moved pvs.bin to id 78
---
 drivers/accel/qaic/sahara.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/accel/qaic/sahara.c b/drivers/accel/qaic/sahara.c
index 3ebcc1f7ff58..6ac0384c7dc2 100644
--- a/drivers/accel/qaic/sahara.c
+++ b/drivers/accel/qaic/sahara.c
@@ -194,6 +194,7 @@ static const char * const aic200_image_table[] = {
 	[23] = "qcom/aic200/aop.mbn",
 	[32] = "qcom/aic200/tz.mbn",
 	[33] = "qcom/aic200/hypvm.mbn",
+	[38] = "qcom/aic200/xbl_config.elf",
 	[39] = "qcom/aic200/aic200_abl.elf",
 	[40] = "qcom/aic200/apdp.mbn",
 	[41] = "qcom/aic200/devcfg.mbn",
@@ -202,6 +203,7 @@ static const char * const aic200_image_table[] = {
 	[49] = "qcom/aic200/shrm.elf",
 	[50] = "qcom/aic200/cpucp.elf",
 	[51] = "qcom/aic200/aop_devcfg.mbn",
+	[54] = "qcom/aic200/qupv3fw.elf",
 	[57] = "qcom/aic200/cpucp_dtbs.elf",
 	[62] = "qcom/aic200/uefi_dtbs.elf",
 	[63] = "qcom/aic200/xbl_ac_config.mbn",
@@ -213,7 +215,8 @@ static const char * const aic200_image_table[] = {
 	[69] = "qcom/aic200/dcd.mbn",
 	[73] = "qcom/aic200/gearvm.mbn",
 	[74] = "qcom/aic200/sti.bin",
-	[75] = "qcom/aic200/pvs.bin",
+	[76] = "qcom/aic200/tz_qti_config.mbn",
+	[78] = "qcom/aic200/pvs.bin",
 };
 
 static int sahara_find_image(struct sahara_context *context, u32 image_id)
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] accel/qaic: Update the sahara image table for AIC200
  2025-10-17 17:34 [PATCH v2] accel/qaic: Update the sahara image table for AIC200 Youssef Samir
@ 2025-10-20  6:17 ` Karol Wachowski
  2025-10-27 17:51 ` Jeff Hugo
  2025-10-27 18:01 ` Jeff Hugo
  2 siblings, 0 replies; 4+ messages in thread
From: Karol Wachowski @ 2025-10-20  6:17 UTC (permalink / raw)
  To: Youssef Samir, jeff.hugo, carl.vanderlip, troy.hanson,
	zachary.mckevitt
  Cc: ogabbay, lizhi.hou, linux-arm-msm, dri-devel, Zack McKevitt,
	Aswin Venkatesan

On 10/17/2025 7:34 PM, Youssef Samir wrote:
> From: Youssef Samir <quic_yabdulra@quicinc.com>
>
> Update the Sahara image table for the AIC200 to add entries for:
> - qupv3fw.elf at id 54
> - xbl_config.elf at id 38
> - tz_qti_config.mbn at id 76
> And move pvs.bin to id 78 to avoid firmware conflict.
>
> Co-developed-by: Zack McKevitt <zmckevit@qti.qualcomm.com>
> Signed-off-by: Zack McKevitt <zmckevit@qti.qualcomm.com>
> Co-developed-by: Aswin Venkatesan <aswivenk@qti.qualcomm.com>
> Signed-off-by: Aswin Venkatesan <aswivenk@qti.qualcomm.com>
> Signed-off-by: Youssef Samir <quic_yabdulra@quicinc.com>
> Signed-off-by: Youssef Samir <youssef.abdulrahman@oss.qualcomm.com>
> ---
> Changes in V2:
> - Squashed the following patches:
>   * accel/qaic: Add QuPFW image entry for AIC200
>     Link: https://lore.kernel.org/all/20251007161733.424647-1-youssef.abdulrahman@oss.qualcomm.com
>   * accel/qaic: Add tz_qti_config.mbn entry for AIC200
>     Link: https://lore.kernel.org/all/20251007161929.426336-1-youssef.abdulrahman@oss.qualcomm.com
>   * accel/qaic: Add xbl_config image entry for AIC200
>     Link: https://lore.kernel.org/all/20251007221528.561242-1-youssef.abdulrahman@oss.qualcomm.com
> - Moved pvs.bin to id 78
> ---
>  drivers/accel/qaic/sahara.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/accel/qaic/sahara.c b/drivers/accel/qaic/sahara.c
> index 3ebcc1f7ff58..6ac0384c7dc2 100644
> --- a/drivers/accel/qaic/sahara.c
> +++ b/drivers/accel/qaic/sahara.c
> @@ -194,6 +194,7 @@ static const char * const aic200_image_table[] = {
>  	[23] = "qcom/aic200/aop.mbn",
>  	[32] = "qcom/aic200/tz.mbn",
>  	[33] = "qcom/aic200/hypvm.mbn",
> +	[38] = "qcom/aic200/xbl_config.elf",
>  	[39] = "qcom/aic200/aic200_abl.elf",
>  	[40] = "qcom/aic200/apdp.mbn",
>  	[41] = "qcom/aic200/devcfg.mbn",
> @@ -202,6 +203,7 @@ static const char * const aic200_image_table[] = {
>  	[49] = "qcom/aic200/shrm.elf",
>  	[50] = "qcom/aic200/cpucp.elf",
>  	[51] = "qcom/aic200/aop_devcfg.mbn",
> +	[54] = "qcom/aic200/qupv3fw.elf",
>  	[57] = "qcom/aic200/cpucp_dtbs.elf",
>  	[62] = "qcom/aic200/uefi_dtbs.elf",
>  	[63] = "qcom/aic200/xbl_ac_config.mbn",
> @@ -213,7 +215,8 @@ static const char * const aic200_image_table[] = {
>  	[69] = "qcom/aic200/dcd.mbn",
>  	[73] = "qcom/aic200/gearvm.mbn",
>  	[74] = "qcom/aic200/sti.bin",
> -	[75] = "qcom/aic200/pvs.bin",
> +	[76] = "qcom/aic200/tz_qti_config.mbn",
> +	[78] = "qcom/aic200/pvs.bin",
>  };
>  
>  static int sahara_find_image(struct sahara_context *context, u32 image_id)
Reviewed-by: Karol Wachowski <karol.wachowski@linux.intel.com>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] accel/qaic: Update the sahara image table for AIC200
  2025-10-17 17:34 [PATCH v2] accel/qaic: Update the sahara image table for AIC200 Youssef Samir
  2025-10-20  6:17 ` Karol Wachowski
@ 2025-10-27 17:51 ` Jeff Hugo
  2025-10-27 18:01 ` Jeff Hugo
  2 siblings, 0 replies; 4+ messages in thread
From: Jeff Hugo @ 2025-10-27 17:51 UTC (permalink / raw)
  To: Youssef Samir, carl.vanderlip, troy.hanson, zachary.mckevitt
  Cc: ogabbay, lizhi.hou, karol.wachowski, linux-arm-msm, dri-devel,
	Zack McKevitt, Aswin Venkatesan

On 10/17/2025 11:34 AM, Youssef Samir wrote:
> From: Youssef Samir <quic_yabdulra@quicinc.com>
> 
> Update the Sahara image table for the AIC200 to add entries for:
> - qupv3fw.elf at id 54
> - xbl_config.elf at id 38
> - tz_qti_config.mbn at id 76
> And move pvs.bin to id 78 to avoid firmware conflict.
> 
> Co-developed-by: Zack McKevitt <zmckevit@qti.qualcomm.com>
> Signed-off-by: Zack McKevitt <zmckevit@qti.qualcomm.com>
> Co-developed-by: Aswin Venkatesan <aswivenk@qti.qualcomm.com>
> Signed-off-by: Aswin Venkatesan <aswivenk@qti.qualcomm.com>
> Signed-off-by: Youssef Samir <quic_yabdulra@quicinc.com>
> Signed-off-by: Youssef Samir <youssef.abdulrahman@oss.qualcomm.com>

Reviewed-by: Jeff Hugo <jeff.hugo@oss.qualcomm.com>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] accel/qaic: Update the sahara image table for AIC200
  2025-10-17 17:34 [PATCH v2] accel/qaic: Update the sahara image table for AIC200 Youssef Samir
  2025-10-20  6:17 ` Karol Wachowski
  2025-10-27 17:51 ` Jeff Hugo
@ 2025-10-27 18:01 ` Jeff Hugo
  2 siblings, 0 replies; 4+ messages in thread
From: Jeff Hugo @ 2025-10-27 18:01 UTC (permalink / raw)
  To: Youssef Samir, carl.vanderlip, troy.hanson, zachary.mckevitt
  Cc: ogabbay, lizhi.hou, karol.wachowski, linux-arm-msm, dri-devel,
	Zack McKevitt, Aswin Venkatesan

On 10/17/2025 11:34 AM, Youssef Samir wrote:
> From: Youssef Samir <quic_yabdulra@quicinc.com>
> 
> Update the Sahara image table for the AIC200 to add entries for:
> - qupv3fw.elf at id 54
> - xbl_config.elf at id 38
> - tz_qti_config.mbn at id 76
> And move pvs.bin to id 78 to avoid firmware conflict.
> 
> Co-developed-by: Zack McKevitt <zmckevit@qti.qualcomm.com>
> Signed-off-by: Zack McKevitt <zmckevit@qti.qualcomm.com>
> Co-developed-by: Aswin Venkatesan <aswivenk@qti.qualcomm.com>
> Signed-off-by: Aswin Venkatesan <aswivenk@qti.qualcomm.com>
> Signed-off-by: Youssef Samir <quic_yabdulra@quicinc.com>
> Signed-off-by: Youssef Samir <youssef.abdulrahman@oss.qualcomm.com>

Pushed to drm-misc-next.

-Jeff

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-10-27 18:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-17 17:34 [PATCH v2] accel/qaic: Update the sahara image table for AIC200 Youssef Samir
2025-10-20  6:17 ` Karol Wachowski
2025-10-27 17:51 ` Jeff Hugo
2025-10-27 18:01 ` Jeff Hugo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox