All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/32] drm/amdgpu: add VEGAM ASIC type
@ 2018-04-26  2:18 Alex Deucher
       [not found] ` <20180426021837.17758-1-alexander.deucher-5C7GfCeVMHo@public.gmane.org>
  0 siblings, 1 reply; 33+ messages in thread
From: Alex Deucher @ 2018-04-26  2:18 UTC (permalink / raw)
  To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Alex Deucher, Leo Liu

From: Leo Liu <leo.liu@amd.com>

Signed-off-by: Leo Liu <leo.liu@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 1 +
 include/drm/amd_asic_type.h                | 1 +
 2 files changed, 2 insertions(+)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
index f509d322bed4..1ccb1df97600 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
@@ -83,6 +83,7 @@ static const char *amdgpu_asic_name[] = {
 	"POLARIS10",
 	"POLARIS11",
 	"POLARIS12",
+	"VEGAM",
 	"VEGA10",
 	"VEGA12",
 	"RAVEN",
diff --git a/include/drm/amd_asic_type.h b/include/drm/amd_asic_type.h
index 6c731c52c071..695bde7eb055 100644
--- a/include/drm/amd_asic_type.h
+++ b/include/drm/amd_asic_type.h
@@ -44,6 +44,7 @@ enum amd_asic_type {
 	CHIP_POLARIS10,
 	CHIP_POLARIS11,
 	CHIP_POLARIS12,
+	CHIP_VEGAM,
 	CHIP_VEGA10,
 	CHIP_VEGA12,
 	CHIP_RAVEN,
-- 
2.13.6

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

^ permalink raw reply related	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2018-04-26  2:30 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-26  2:18 [PATCH 01/32] drm/amdgpu: add VEGAM ASIC type Alex Deucher
     [not found] ` <20180426021837.17758-1-alexander.deucher-5C7GfCeVMHo@public.gmane.org>
2018-04-26  2:18   ` [PATCH 02/32] drm/amdgpu: bypass GPU info firmware load for VEGAM Alex Deucher
2018-04-26  2:18   ` [PATCH 03/32] drm/amdgpu: set VEGAM to ASIC family and ip blocks Alex Deucher
2018-04-26  2:18   ` [PATCH 04/32] drm/amdgpu: specify VEGAM ucode SMU load method Alex Deucher
2018-04-26  2:18   ` [PATCH 05/32] drm/amdgpu: add VEGAM SMU firmware support Alex Deucher
2018-04-26  2:18   ` [PATCH 06/32] drm/amdgpu/virtual_dce: add VEGAM support Alex Deucher
2018-04-26  2:18   ` [PATCH 07/32] drm/amdgpu: add VEGAM dc support check Alex Deucher
2018-04-26  2:18   ` [PATCH 08/32] drm/amdgpu: skip VEGAM MC firmware load Alex Deucher
2018-04-26  2:18   ` [PATCH 09/32] drm/amdgpu: add VEGAM GMC golden settings Alex Deucher
2018-04-26  2:18   ` [PATCH 10/32] drm/amdgpu: initialize VEGAM GMC (v2) Alex Deucher
2018-04-26  2:18   ` [PATCH 11/32] drm/amdgpu: add VEGAM SDMA firmware support Alex Deucher
2018-04-26  2:18   ` [PATCH 12/32] drm/amdgpu: add VEGAM SDMA golden settings Alex Deucher
2018-04-26  2:18   ` [PATCH 13/32] drm/amdgpu: add VEGAM GFX firmware support Alex Deucher
2018-04-26  2:18   ` [PATCH 14/32] drm/amdgpu: add VEGAM GFX golden settings Alex Deucher
2018-04-26  2:18   ` [PATCH 15/32] drm/amdgpu: initialize VEGAM GFX Alex Deucher
2018-04-26  2:18   ` [PATCH 16/32] drm/amdgpu: add VEGAM UVD firmware support Alex Deucher
2018-04-26  2:18   ` [PATCH 17/32] drm/amdgpu: add VEGAM UVD encode support Alex Deucher
2018-04-26  2:18   ` [PATCH 18/32] drm/amdgpu: add VEGAM VCE firmware support Alex Deucher
2018-04-26  2:18   ` [PATCH 19/32] drm/amdgpu: add VEGAM to VCE harvest config Alex Deucher
2018-04-26  2:18   ` [PATCH 20/32] drm/amdgpu: add VEGAM support to vi Alex Deucher
2018-04-26  2:18   ` [PATCH 21/32] drm/amdgpu: add VEGAM pci ids Alex Deucher
2018-04-26  2:18   ` [PATCH 22/32] drm/amd/display: Implement VEGAM device IDs in DC Alex Deucher
2018-04-26  2:18   ` [PATCH 23/32] drm/amd/display: Implement VEGAM device IDs in DM Alex Deucher
2018-04-26  2:18   ` [PATCH 24/32] drm/amdgpu: Add VEGAM support to the legacy DCE 11 module Alex Deucher
2018-04-26  2:18   ` [PATCH 25/32] drm/amd/display: Use HBR2 if eDP monitor it doesn't advertise link rate Alex Deucher
2018-04-26  2:18   ` [PATCH 26/32] drm/amd/powerplay: add smu75 header files Alex Deucher
2018-04-26  2:18   ` [PATCH 27/32] drm/amd: add a new struct in atombios.h Alex Deucher
2018-04-26  2:18   ` [PATCH 28/32] drm/amd/powerplay: update ppatomctrl.c (v2) Alex Deucher
2018-04-26  2:18   ` [PATCH 29/32] drm/amd/powerplay: update process pptables Alex Deucher
2018-04-26  2:18   ` [PATCH 30/32] drm/amd/powerplay: add smumgr support for VEGAM (v2) Alex Deucher
2018-04-26  2:18   ` [PATCH 31/32] drm/amd/powerplay: add specific changes for VEGAM in smu7_hwmgr.c Alex Deucher
2018-04-26  2:18   ` [PATCH 32/32] drm/powerplay: Add powertune table for VEGAM Alex Deucher
2018-04-26  2:30   ` [PATCH 01/32] drm/amdgpu: add VEGAM ASIC type Zhang, Jerry (Junwei)

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.