All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Deucher, Alexander" <Alexander.Deucher@amd.com>
To: "Brol, Eryk" <Eryk.Brol@amd.com>,
	"amd-gfx@lists.freedesktop.org" <amd-gfx@lists.freedesktop.org>
Cc: "Liu, Charlene" <Charlene.Liu@amd.com>,
	"Li, Sun peng \(Leo\)" <Sunpeng.Li@amd.com>,
	"Lakha, Bhawanpreet" <Bhawanpreet.Lakha@amd.com>,
	"Zhuo,  Qingqing" <Qingqing.Zhuo@amd.com>,
	"Siqueira, Rodrigo" <Rodrigo.Siqueira@amd.com>,
	"Pillai, Aurabindo" <Aurabindo.Pillai@amd.com>,
	"Sun, Yongqiang" <Yongqiang.Sun@amd.com>,
	"Wentland, Harry" <Harry.Wentland@amd.com>,
	"R, Bindu" <Bindu.R@amd.com>
Subject: Re: [PATCH 14/17] drm/amd/display: Enable gpu_vm_support for dcn3.01
Date: Mon, 7 Dec 2020 14:40:06 +0000	[thread overview]
Message-ID: <MN2PR12MB4488879965A579F764B05367F7CE0@MN2PR12MB4488.namprd12.prod.outlook.com> (raw)
In-Reply-To: <20201204212850.224596-15-eryk.brol@amd.com>


[-- Attachment #1.1: Type: text/plain, Size: 2497 bytes --]

[AMD Official Use Only - Internal Distribution Only]

We've dropped the CONFIG_DRM_AMD_DC_DCN3* kconfig options recently.

Alex

________________________________
From: amd-gfx <amd-gfx-bounces@lists.freedesktop.org> on behalf of Eryk Brol <eryk.brol@amd.com>
Sent: Friday, December 4, 2020 4:28 PM
To: amd-gfx@lists.freedesktop.org <amd-gfx@lists.freedesktop.org>
Cc: Liu, Charlene <Charlene.Liu@amd.com>; Brol, Eryk <Eryk.Brol@amd.com>; Li, Sun peng (Leo) <Sunpeng.Li@amd.com>; Wentland, Harry <Harry.Wentland@amd.com>; Zhuo, Qingqing <Qingqing.Zhuo@amd.com>; Siqueira, Rodrigo <Rodrigo.Siqueira@amd.com>; Pillai, Aurabindo <Aurabindo.Pillai@amd.com>; Sun, Yongqiang <Yongqiang.Sun@amd.com>; Lakha, Bhawanpreet <Bhawanpreet.Lakha@amd.com>; R, Bindu <Bindu.R@amd.com>
Subject: [PATCH 14/17] drm/amd/display: Enable gpu_vm_support for dcn3.01

From: Charlene Liu <Charlene.Liu@amd.com>

[Why]
dcn3_01 supports gpu_vm, but this is not enabled in amdgpu_dm

Signed-off-by: Charlene Liu <Charlene.Liu@amd.com>
Reviewed-by: Yongqiang Sun <yongqiang.sun@amd.com>
Acked-by: Eryk Brol <eryk.brol@amd.com>
---
 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
index 59f738008734..53a7cb21f603 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
@@ -1035,6 +1035,11 @@ static int amdgpu_dm_init(struct amdgpu_device *adev)
                 if (ASICREV_IS_GREEN_SARDINE(adev->external_rev_id))
                         init_data.flags.disable_dmcu = true;
                 break;
+#if defined(CONFIG_DRM_AMD_DC_DCN3_01)
+       case CHIP_VANGOGH:
+               init_data.flags.gpu_vm_support = true;
+               break;
+#endif
         default:
                 break;
         }
--
2.25.1

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.freedesktop.org%2Fmailman%2Flistinfo%2Famd-gfx&amp;data=04%7C01%7Calexander.deucher%40amd.com%7C93575bd3247e42f848bc08d8989bee3e%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637427142787650359%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=wf2Tl4Qz9IzTZVvfBRYcFHZ8Cr464ZEZ%2B1Pb1GP5W9E%3D&amp;reserved=0

[-- Attachment #1.2: Type: text/html, Size: 5062 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

  reply	other threads:[~2020-12-07 14:40 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-04 21:28 [PATCH 00/17] DC Patches Dec 7, 2020 Eryk Brol
2020-12-04 21:28 ` [PATCH 01/17] drm/amd/display: Implement VSIF V3 extended refresh rate feature Eryk Brol
2020-12-04 21:28 ` [PATCH 02/17] drm/amd/display: Set FixRate bit in VSIF V3 Eryk Brol
2020-12-04 21:28 ` [PATCH 03/17] drm/amd/display: NULL pointer error during compliance test Eryk Brol
2020-12-04 21:28 ` [PATCH 04/17] drm/amd/display: Expose clk_mgr functions for reuse Eryk Brol
2020-12-04 21:28 ` [PATCH 05/17] drm/amd/display: Add support for runtime feature detection command Eryk Brol
2020-12-04 21:28 ` [PATCH 06/17] drm/amd/display: Set default bits per channel Eryk Brol
2020-12-04 21:28 ` [PATCH 07/17] drm/amd/display: Don't check seamless boot in power down HW by timeout Eryk Brol
2020-12-04 21:28 ` [PATCH 08/17] drm/amd/display: Change to IMMEDIATE mode from FRAME mode Eryk Brol
2020-12-04 21:28 ` [PATCH 09/17] drm/amd/display: Use provided offset for DPG generation Eryk Brol
2020-12-04 21:28 ` [PATCH 10/17] drm/amd/display: Only one display lights up while using MST hub Eryk Brol
2020-12-04 21:28 ` [PATCH 11/17] drm/amd/display: Prevent bandwidth overflow Eryk Brol
2020-12-04 21:28 ` [PATCH 12/17] drm/amd/display: Add wm table for Renoir Eryk Brol
2020-12-04 21:28 ` [PATCH 13/17] drm/amd/display: Fixed the audio noise during mode switching with HDCP mode on Eryk Brol
2020-12-04 21:28 ` [PATCH 14/17] drm/amd/display: Enable gpu_vm_support for dcn3.01 Eryk Brol
2020-12-07 14:40   ` Deucher, Alexander [this message]
2020-12-07 16:16     ` Brol, Eryk
2020-12-04 21:28 ` [PATCH 15/17] drm/amd/display: Revert DCN2.1 dram_clock_change_latency update Eryk Brol
2020-12-04 21:28 ` [PATCH 16/17] drm/amd/display: [FW Promotion] Release 0.0.45 Eryk Brol
2020-12-04 21:28 ` [PATCH 17/17] drm/amd/display: 3.2.115 Eryk Brol
2020-12-07 16:05 ` [PATCH 00/17] DC Patches Dec 7, 2020 Harry Wentland

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=MN2PR12MB4488879965A579F764B05367F7CE0@MN2PR12MB4488.namprd12.prod.outlook.com \
    --to=alexander.deucher@amd.com \
    --cc=Aurabindo.Pillai@amd.com \
    --cc=Bhawanpreet.Lakha@amd.com \
    --cc=Bindu.R@amd.com \
    --cc=Charlene.Liu@amd.com \
    --cc=Eryk.Brol@amd.com \
    --cc=Harry.Wentland@amd.com \
    --cc=Qingqing.Zhuo@amd.com \
    --cc=Rodrigo.Siqueira@amd.com \
    --cc=Sunpeng.Li@amd.com \
    --cc=Yongqiang.Sun@amd.com \
    --cc=amd-gfx@lists.freedesktop.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.