From: Rodrigo Vivi <rodrigo.vivi@kernel.org>
To: Jani Nikula <jani.nikula@intel.com>
Cc: lucas.demarchi@intel.com, intel-xe@lists.freedesktop.org,
rodrigo.vivi@intel.com
Subject: Re: [Intel-xe] [PATCH 11/18] fixup! drm/xe: Introduce a new DRM driver for Intel GPUs
Date: Wed, 3 May 2023 09:59:36 -0400 [thread overview]
Message-ID: <ZFJoyJwtpFak/adU@rdvivi-mobl4> (raw)
In-Reply-To: <20230503131005.1602412-12-jani.nikula@intel.com>
On Wed, May 03, 2023 at 04:09:58PM +0300, Jani Nikula wrote:
> Add the read8 accessor to support intel_de_read8.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
I wonder if we should have this as a new separated patch instead of a fixup?
Then when rebasing with autosquash we make sure to put this before the
xe/display patches...
Oded has already started to review the xe-rev1 branch and I'd like
to avoid changes to the patches that are in that branch already.
But this is really small, probably with his ack we can keep as this fixup!
> ---
> drivers/gpu/drm/xe/xe_mmio.h | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_mmio.h b/drivers/gpu/drm/xe/xe_mmio.h
> index 1a32e0f52261..b72a0a75259f 100644
> --- a/drivers/gpu/drm/xe/xe_mmio.h
> +++ b/drivers/gpu/drm/xe/xe_mmio.h
> @@ -17,6 +17,14 @@ struct xe_device;
>
> int xe_mmio_init(struct xe_device *xe);
>
> +static inline u8 xe_mmio_read8(struct xe_gt *gt, u32 reg)
> +{
> + if (reg < gt->mmio.adj_limit)
> + reg += gt->mmio.adj_offset;
> +
> + return readb(gt->mmio.regs + reg);
> +}
> +
> static inline void xe_mmio_write32(struct xe_gt *gt,
> u32 reg, u32 val)
> {
> --
> 2.39.2
>
next prev parent reply other threads:[~2023-05-03 13:59 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-03 13:09 [Intel-xe] [PATCH 00/18] xe&i915 display integration: add uncore and pcode compat layers Jani Nikula
2023-05-03 13:09 ` [Intel-xe] [PATCH 01/18] fixup! drm/xe/display: Implement display support Jani Nikula
2023-05-03 13:09 ` [Intel-xe] [PATCH 02/18] " Jani Nikula
2023-05-03 15:21 ` Lucas De Marchi
2023-05-03 15:37 ` Lucas De Marchi
2023-05-03 13:09 ` [Intel-xe] [PATCH 03/18] " Jani Nikula
2023-05-05 20:19 ` Rodrigo Vivi
2023-05-03 13:09 ` [Intel-xe] [PATCH 04/18] fixup! drm/xe/display: Rename intel_de.h to xe_de.h Jani Nikula
2023-05-03 13:09 ` [Intel-xe] [PATCH 05/18] fixup! drm/xe/display: Implement display support Jani Nikula
2023-05-03 13:09 ` [Intel-xe] [PATCH 06/18] fixup! drm/i915/display: Remaining changes to make xe compile Jani Nikula
2023-05-03 13:09 ` [Intel-xe] [PATCH 07/18] fixup! drm/xe/display: Implement display support Jani Nikula
2023-05-03 13:09 ` [Intel-xe] [PATCH 08/18] fixup! drm/i915/display: Add more macros to remove all direct calls to uncore Jani Nikula
2023-05-03 13:09 ` [Intel-xe] [PATCH 09/18] fixup! drm/i915/display: Remove all uncore mmio accesses in favor of intel_de Jani Nikula
2023-05-03 13:09 ` [Intel-xe] [PATCH 10/18] fixup! drm/i915/display: Remaining changes to make xe compile Jani Nikula
2023-05-03 13:09 ` [Intel-xe] [PATCH 11/18] fixup! drm/xe: Introduce a new DRM driver for Intel GPUs Jani Nikula
2023-05-03 13:59 ` Rodrigo Vivi [this message]
2023-05-04 6:12 ` Oded Gabbay
2023-05-03 13:09 ` [Intel-xe] [PATCH 12/18] fixup! drm/xe/display: Implement display support Jani Nikula
2023-05-03 13:10 ` [Intel-xe] [PATCH 13/18] fixup! drm/i915/display: Remaining changes to make xe compile Jani Nikula
2023-05-03 13:10 ` [Intel-xe] [PATCH 14/18] " Jani Nikula
2023-05-03 13:10 ` [Intel-xe] [PATCH 15/18] fixup! drm/xe/display: Implement display support Jani Nikula
2023-05-03 13:10 ` [Intel-xe] [PATCH 16/18] " Jani Nikula
2023-05-03 13:10 ` [Intel-xe] [PATCH 17/18] " Jani Nikula
2023-05-03 13:10 ` [Intel-xe] [PATCH 18/18] " Jani Nikula
2023-05-03 13:14 ` [Intel-xe] ✓ CI.Patch_applied: success for xe&i915 display integration: add uncore and pcode compat layers Patchwork
2023-05-03 13:15 ` [Intel-xe] ✓ CI.KUnit: " Patchwork
2023-05-03 13:19 ` [Intel-xe] ✓ CI.Build: " Patchwork
2023-05-03 13:51 ` [Intel-xe] ○ CI.BAT: info " Patchwork
2023-05-03 14:02 ` [Intel-xe] [PATCH 00/18] " Rodrigo Vivi
2023-05-03 19:41 ` Rodrigo Vivi
2023-05-03 21:09 ` Lucas De Marchi
-- strict thread matches above, loose matches on Subject: below --
2023-05-08 14:46 Jani Nikula
2023-05-08 14:46 ` [Intel-xe] [PATCH 11/18] fixup! drm/xe: Introduce a new DRM driver for Intel GPUs Jani Nikula
2023-05-08 20:32 ` Matt Roper
2023-05-09 8:11 ` Jani Nikula
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=ZFJoyJwtpFak/adU@rdvivi-mobl4 \
--to=rodrigo.vivi@kernel.org \
--cc=intel-xe@lists.freedesktop.org \
--cc=jani.nikula@intel.com \
--cc=lucas.demarchi@intel.com \
--cc=rodrigo.vivi@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