public inbox for drm-ai-reviews@public-inbox.freedesktop.org
 help / color / mirror / Atom feed
From: Claude Code Review Bot <claude-review@example.com>
To: dri-devel-reviews@example.com
Subject: Claude review: drm/panthor: Replace cross-component register accesses with helpers
Date: Sun, 12 Apr 2026 09:38:15 +1000	[thread overview]
Message-ID: <review-patch3-20260410164637.549145-4-karunika.choo@arm.com> (raw)
In-Reply-To: <20260410164637.549145-4-karunika.choo@arm.com>

Patch Review

**Issues found:**

1. **Typo in function names**: The new helper functions are misspelled:
   ```c
   u64 panthor_gpu_get_timestap(struct panthor_device *ptdev);
   u64 panthor_gpu_get_timestap_offset(struct panthor_device *ptdev);
   ```
   Should be `panthor_gpu_get_timestamp` and `panthor_gpu_get_timestamp_offset`. This typo propagates through `panthor_gpu.h`, `panthor_gpu.c`, and `panthor_drv.c`.

2. **Stray backslash** in `panthor_fw.c` inside `panthor_fw_ring_csg_doorbells`:
   ```c
   panthor_fw_toggle_reqs(glb_iface, doorbell_req, doorbell_ack, csg_mask);\
   panthor_fw_ring_doorbell(ptdev, CSF_GLB_DOORBELL_ID);
   ```
   The trailing `\` is a stray line-continuation character. While it compiles (the two statements are joined on one logical line, both terminated by `;`), it's clearly unintentional and should be removed.

3. **Incomplete cross-component cleanup**: `panthor_hw.c` still directly accesses `PWR_L2_PRESENT`, `PWR_TILER_PRESENT`, and `PWR_SHADER_PRESENT` via `ptdev->iomem`. Since this patch's stated goal is to replace cross-component register accesses with helpers, these should also be converted (e.g., by adding helpers in `panthor_pwr.c`). Failing to do so causes a **regression bug** when patch 6 makes PWR offsets relative (see patch 6 review below).

The `panthor_gpu_coherency_init` move from `panthor_device.c` to `panthor_gpu.c` is appropriate, and the call site at `panthor_device.c:290` will still work since `panthor_gpu.h` is already included.

---
Generated by Claude Code Patch Reviewer

  parent reply	other threads:[~2026-04-11 23:38 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-10 16:46 [PATCH 0/8] drm/panthor: Localize register access by component Karunika Choo
2026-04-10 16:46 ` [PATCH 1/8] drm/panthor: Pass an iomem pointer to GPU register access helpers Karunika Choo
2026-04-10 18:11   ` Boris Brezillon
2026-04-11 23:38   ` Claude review: " Claude Code Review Bot
2026-04-10 16:46 ` [PATCH 2/8] drm/panthor: Split register definitions by components Karunika Choo
2026-04-10 18:08   ` Boris Brezillon
2026-04-11 23:38   ` Claude review: " Claude Code Review Bot
2026-04-10 16:46 ` [PATCH 3/8] drm/panthor: Replace cross-component register accesses with helpers Karunika Choo
2026-04-10 17:55   ` Boris Brezillon
2026-04-11 23:38   ` Claude Code Review Bot [this message]
2026-04-10 16:46 ` [PATCH 4/8] drm/panthor: Store IRQ register base iomem pointer in panthor_irq Karunika Choo
2026-04-10 17:53   ` Boris Brezillon
2026-04-11 23:38   ` Claude review: " Claude Code Review Bot
2026-04-10 16:46 ` [PATCH 5/8] drm/panthor: Use a local iomem base for GPU registers Karunika Choo
2026-04-10 18:11   ` Boris Brezillon
2026-04-11 23:38   ` Claude review: " Claude Code Review Bot
2026-04-10 16:46 ` [PATCH 6/8] drm/panthor: Use a local iomem base for PWR registers Karunika Choo
2026-04-10 18:12   ` Boris Brezillon
2026-04-11 23:38   ` Claude review: " Claude Code Review Bot
2026-04-10 16:46 ` [PATCH 7/8] drm/panthor: Use a local iomem base for firmware control registers Karunika Choo
2026-04-10 18:12   ` Boris Brezillon
2026-04-11 23:38   ` Claude review: " Claude Code Review Bot
2026-04-10 16:46 ` [PATCH 8/8] drm/panthor: Use a local iomem base for MMU AS registers Karunika Choo
2026-04-10 18:13   ` Boris Brezillon
2026-04-11 23:38   ` Claude review: " Claude Code Review Bot
2026-04-11 23:38 ` Claude review: drm/panthor: Localize register access by component Claude Code Review Bot
  -- strict thread matches above, loose matches on Subject: below --
2026-04-12 14:29 [PATCH v2 0/8] " Karunika Choo
2026-04-12 14:29 ` [PATCH v2 3/8] drm/panthor: Replace cross-component register accesses with helpers Karunika Choo
2026-04-13  9:05   ` Claude review: " Claude Code Review Bot

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=review-patch3-20260410164637.549145-4-karunika.choo@arm.com \
    --to=claude-review@example.com \
    --cc=dri-devel-reviews@example.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