Linux Media Controller development
 help / color / mirror / Atom feed
From: Sultan Alsawaf <sultan@kerneltoast.com>
To: Bin Du <Bin.Du@amd.com>
Cc: mchehab@kernel.org, hverkuil@xs4all.nl,
	laurent.pinchart+renesas@ideasonboard.com,
	bryan.odonoghue@linaro.org, sakari.ailus@linux.intel.com,
	prabhakar.mahadev-lad.rj@bp.renesas.com,
	linux-media@vger.kernel.org, linux-kernel@vger.kernel.org,
	pratap.nirujogi@amd.com, benjamin.chan@amd.com, king.li@amd.com,
	gjorgji.rosikopulos@amd.com, Phil.Jawich@amd.com,
	Dominic.Antony@amd.com, mario.limonciello@amd.com,
	richard.gong@amd.com, anson.tsao@amd.com
Subject: Re: [PATCH v7 0/7] Add AMD ISP4 driver
Date: Tue, 16 Dec 2025 23:36:21 -0800	[thread overview]
Message-ID: <aUJddaGQTKJnJIJY@sultan-box> (raw)
In-Reply-To: <20251216091326.111977-1-Bin.Du@amd.com>

On Tue, Dec 16, 2025 at 05:13:19PM +0800, Bin Du wrote:
> Hello,
> 
> AMD ISP4 is the AMD image processing gen 4 which can be found in HP ZBook Ultra G1a 14 inch Mobile Workstation PC (Ryzen AI Max 300 Series)
> (https://ubuntu.com/certified/202411-36043)
> This patch series introduces the initial driver support for the AMD ISP4.
> 
> Patch summary:
> - Powers up/off and initializes ISP HW
> - Configures and kicks off ISP FW
> - Interacts with APP using standard V4l2 interface by video node
> - Controls ISP HW and interacts with ISP FW to do image processing
> - Supports enum/set output image format and resolution
> - Supports queueing buffer from app and dequeuing ISP filled buffer to App
> - It is verified on qv4l2, cheese and qcam
> - It is verified together with following patches
> 	platform/x86: Add AMD ISP platform config (https://lore.kernel.org/all/20250514215623.522746-1-pratap.nirujogi@amd.com/)
> 	pinctrl: amd: isp411: Add amdisp GPIO pinctrl (https://github.com/torvalds/linux/commit/e97435ab09f3ad7b6a588dd7c4e45a96699bbb4a)
> 	drm/amd/amdgpu: Add GPIO resources required for amdisp (https://gitlab.freedesktop.org/agd5f/linux/-/commit/ad0f5966ed8297aa47b3184192b00b7379ae0758)
> 	drm/amd/amdgpu: Declare isp firmware binary file (https://gitlab.freedesktop.org/agd5f/linux/-/commit/35345917bc9f7c86152b270d9d93c220230b667f)
> 
> AMD ISP4 Key features:
> - Processes bayer raw data from the connected sensor and output them to different YUV formats
> - Downscale input image to different output image resolution
> - Pipeline to do image processing on the input image including demosaic, denoise, 3A, etc.
> 
> ----------
> 
> Changes v6 -> v7:
> 
> - Added missed blank line after some if statements.
> - Changed the pm_runtime_disable() order in isp4_capture_remove() to align with initialization.
> - Reset buf_sent_cnt and start_stream_cmd_sent on stream stop.
> - Removed duplicate buf_sent_cnt and start_stream_cmd_sent reset in isp4sd_pwron_and_init().
> - Combined isp4sd_reset_stream_info() and isp4sd_reset_camera_info() into isp4sd_uninit_stream() to eliminate redundant stream info reset.
> - Removed always-false status check in isp4sd_uninit_stream().
> - Minor style improvements.
> [snip]

Hi Bin,

v7 looks great to me! :)

For the whole series,

Reviewed-by: Sultan Alsawaf <sultan@kerneltoast.com>

  parent reply	other threads:[~2025-12-17  7:36 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-12-16  9:13 [PATCH v7 0/7] Add AMD ISP4 driver Bin Du
2025-12-16  9:13 ` [PATCH v7 1/7] media: platform: amd: Introduce amd isp4 capture driver Bin Du
2025-12-22  9:23   ` Sakari Ailus
2026-01-06  8:30     ` Du, Bin
2025-12-16  9:13 ` [PATCH v7 2/7] media: platform: amd: low level support for isp4 firmware Bin Du
2025-12-16  9:13 ` [PATCH v7 3/7] media: platform: amd: Add isp4 fw and hw interface Bin Du
2025-12-22  9:37   ` Sakari Ailus
2026-01-07  8:44     ` Du, Bin
2026-01-14 20:55       ` Sakari Ailus
2026-01-15  2:24         ` Du, Bin
2026-01-20  9:22       ` Du, Bin
2026-01-27  8:38         ` Du, Bin
2026-02-02  9:10         ` Sakari Ailus
2026-02-03  6:37           ` Du, Bin
2025-12-16  9:13 ` [PATCH v7 4/7] media: platform: amd: isp4 subdev and firmware loading handling added Bin Du
2025-12-22 10:11   ` Sakari Ailus
2026-01-07  7:33     ` Sultan Alsawaf
2026-01-14 21:03       ` Sakari Ailus
2026-01-14 21:08         ` Mario Limonciello
2026-01-15  5:56           ` Du, Bin
2026-01-15  7:21         ` Sultan Alsawaf
2026-01-20  9:29           ` Du, Bin
2026-01-27  8:39             ` Du, Bin
2026-01-15 10:36         ` Du, Bin
2026-01-14 10:34     ` Du, Bin
2026-01-14 21:07       ` Sakari Ailus
2026-01-15  7:51         ` Du, Bin
2026-01-14  9:45   ` Markus Elfring
2025-12-16  9:13 ` [PATCH v7 5/7] media: platform: amd: isp4 video node and buffers " Bin Du
2025-12-22 17:07   ` Sakari Ailus
2026-01-09 10:08     ` Du, Bin
2026-01-29 21:17       ` Sakari Ailus
2026-02-03  6:32         ` Du, Bin
2025-12-16  9:13 ` [PATCH v7 6/7] media: platform: amd: isp4 debug fs logging and more descriptive errors Bin Du
2025-12-16  9:13 ` [PATCH v7 7/7] Documentation: add documentation of AMD isp 4 driver Bin Du
2025-12-17  7:36 ` Sultan Alsawaf [this message]
2025-12-17  7:47   ` [PATCH v7 0/7] Add AMD ISP4 driver Du, Bin
2025-12-17 10:29 ` Du, Bin
2025-12-17 11:04   ` Sakari Ailus
     [not found] ` <694138dd.050a0220.16a81c.18f1@mx.google.com>
2025-12-18  6:03   ` [v7,0/7] " Du, Bin
2025-12-31  9:03 ` [PATCH v7 0/7] " Kate Hsuan
2026-01-06  5:49   ` Kate Hsuan
2026-01-06  8:35     ` Du, Bin
2026-01-13 14:11       ` Kate Hsuan
2026-01-13 17:14         ` Nirujogi, Pratap
2026-01-14  8:59           ` Kate Hsuan
2026-01-15  6:47             ` Du, Bin

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=aUJddaGQTKJnJIJY@sultan-box \
    --to=sultan@kerneltoast.com \
    --cc=Bin.Du@amd.com \
    --cc=Dominic.Antony@amd.com \
    --cc=Phil.Jawich@amd.com \
    --cc=anson.tsao@amd.com \
    --cc=benjamin.chan@amd.com \
    --cc=bryan.odonoghue@linaro.org \
    --cc=gjorgji.rosikopulos@amd.com \
    --cc=hverkuil@xs4all.nl \
    --cc=king.li@amd.com \
    --cc=laurent.pinchart+renesas@ideasonboard.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=mario.limonciello@amd.com \
    --cc=mchehab@kernel.org \
    --cc=prabhakar.mahadev-lad.rj@bp.renesas.com \
    --cc=pratap.nirujogi@amd.com \
    --cc=richard.gong@amd.com \
    --cc=sakari.ailus@linux.intel.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