Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Matt Roper <matthew.d.roper@intel.com>
To: Balasubramani Vivekanandan <balasubramani.vivekanandan@intel.com>
Cc: <intel-xe@lists.freedesktop.org>,
	Lucas De Marchi <lucas.demarchi@intel.com>
Subject: Re: [PATCH 04/11] drm/xe/bmg: Add BMG mocs table
Date: Tue, 2 Apr 2024 06:52:31 -0700	[thread overview]
Message-ID: <20240402135231.GC6574@mdroper-desk1.amr.corp.intel.com> (raw)
In-Reply-To: <20240402124724.1238122-5-balasubramani.vivekanandan@intel.com>

On Tue, Apr 02, 2024 at 06:17:17PM +0530, Balasubramani Vivekanandan wrote:
> BMG uses the same MOCS table as LNL.
> 
> Bpsec: 71582
> CC: Matt Roper <matthew.d.roper@intel.com>
> Signed-off-by: Balasubramani Vivekanandan <balasubramani.vivekanandan@intel.com>

Reviewed-by: Matt Roper <matthew.d.roper@intel.com>

> ---
>  drivers/gpu/drm/xe/xe_mocs.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/gpu/drm/xe/xe_mocs.c b/drivers/gpu/drm/xe/xe_mocs.c
> index bff659d20062..4f836aeeabff 100644
> --- a/drivers/gpu/drm/xe/xe_mocs.c
> +++ b/drivers/gpu/drm/xe/xe_mocs.c
> @@ -375,6 +375,7 @@ static unsigned int get_mocs_settings(struct xe_device *xe,
>  
>  	switch (xe->info.platform) {
>  	case XE_LUNARLAKE:
> +	case XE_BATTLEMAGE:
>  		info->size = ARRAY_SIZE(xe2_mocs_table);
>  		info->table = xe2_mocs_table;
>  		info->n_entries = XE2_NUM_MOCS_ENTRIES;
> -- 
> 2.25.1
> 

-- 
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation

  reply	other threads:[~2024-04-02 13:52 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-02 12:47 [PATCH 00/11] Add Battlemage support Balasubramani Vivekanandan
2024-04-02 12:47 ` [PATCH 01/11] drm/xe/xe2: Recognize Xe2_HPG IP Balasubramani Vivekanandan
2024-04-02 13:21   ` Lucas De Marchi
2024-04-02 12:47 ` [PATCH 02/11] drm/xe/xe2: Recognize Xe2_HPM IP Balasubramani Vivekanandan
2024-04-02 13:22   ` Lucas De Marchi
2024-04-02 12:47 ` [PATCH 03/11] drm/xe/bmg: Add BMG platform definition Balasubramani Vivekanandan
2024-04-02 13:26   ` Lucas De Marchi
2024-04-02 12:47 ` [PATCH 04/11] drm/xe/bmg: Add BMG mocs table Balasubramani Vivekanandan
2024-04-02 13:52   ` Matt Roper [this message]
2024-04-02 12:47 ` [PATCH 05/11] drm/xe/bmg: Program an additional discrete-specific PAT setting Balasubramani Vivekanandan
2024-04-02 12:47 ` [PATCH 06/11] drm/xe/xe2hpg: Determine flat ccs offset for vram Balasubramani Vivekanandan
2024-04-02 14:30   ` Matt Roper
2024-04-03  6:53     ` Vivekanandan, Balasubramani
2024-04-05  9:48       ` Vivekanandan, Balasubramani
2024-04-02 12:47 ` [PATCH 07/11] drm/xe/xe2hpg: Remove extra allocation of CCS pages for dgfx Balasubramani Vivekanandan
2024-04-02 14:40   ` Matt Roper
2024-04-02 12:47 ` [PATCH 08/11] drm/xe/xe2hpg: Limit chunk size to 4MiB for vram Balasubramani Vivekanandan
2024-04-04  0:06   ` Matt Roper
2024-04-06  2:28     ` Jahagirdar, Akshata
2024-04-02 12:47 ` [PATCH 09/11] drm/xe/xe2hpg: Add initial GT workarounds Balasubramani Vivekanandan
2024-04-02 15:45   ` Matt Roper
2024-04-02 19:14     ` Matt Roper
2024-04-02 12:47 ` [PATCH 10/11] drm/xe/xe2hpg: Introduce performance tuning changes for Xe2_HPG Balasubramani Vivekanandan
2024-04-02 15:55   ` Matt Roper
2024-04-02 12:47 ` [PATCH 11/11] drm/xe/xe2hpm: Add initial set of workarounds Balasubramani Vivekanandan
2024-04-02 16:07   ` Matt Roper
2024-04-02 12:53 ` ✓ CI.Patch_applied: success for Add Battlemage support Patchwork
2024-04-02 12:53 ` ✗ CI.checkpatch: warning " Patchwork
2024-04-02 12:54 ` ✓ CI.KUnit: success " Patchwork
2024-04-02 13:05 ` ✓ CI.Build: " Patchwork
2024-04-02 13:08 ` ✓ CI.Hooks: " Patchwork
2024-04-02 13:09 ` ✓ CI.checksparse: " Patchwork
2024-04-02 13:46 ` ✓ CI.BAT: " Patchwork

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=20240402135231.GC6574@mdroper-desk1.amr.corp.intel.com \
    --to=matthew.d.roper@intel.com \
    --cc=balasubramani.vivekanandan@intel.com \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=lucas.demarchi@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