From a849d36fb4889a223995ad760074c273c6a21f3e Mon Sep 17 00:00:00 2001 From: Jan200101 Date: Tue, 22 Mar 2022 19:17:25 +0100 Subject: kernel 5.16.16 --- SOURCES/Makefile.rhelver | 2 +- SOURCES/Patchlist.changelog | 3 ++ SOURCES/amdgpu-si-cik-default.patch | 79 +++++++++++++++++++++++++++++++++++++ SOURCES/patch-5.16-redhat.patch | 22 ++++++++++- 4 files changed, 103 insertions(+), 3 deletions(-) create mode 100644 SOURCES/amdgpu-si-cik-default.patch (limited to 'SOURCES') diff --git a/SOURCES/Makefile.rhelver b/SOURCES/Makefile.rhelver index a3e9c2e..8e6ba08 100644 --- a/SOURCES/Makefile.rhelver +++ b/SOURCES/Makefile.rhelver @@ -12,7 +12,7 @@ RHEL_MINOR = 99 # # Use this spot to avoid future merge conflicts. # Do not trim this comment. -RHEL_RELEASE = 1 +RHEL_RELEASE = 0 # # Early y+1 numbering diff --git a/SOURCES/Patchlist.changelog b/SOURCES/Patchlist.changelog index f822909..9dd29db 100644 --- a/SOURCES/Patchlist.changelog +++ b/SOURCES/Patchlist.changelog @@ -1,3 +1,6 @@ +https://gitlab.com/cki-project/kernel-ark/-/commit/dfe21b33039e0c863a4e41a8e8508fa6af46bad8 + dfe21b33039e0c863a4e41a8e8508fa6af46bad8 drm/mgag200: Fix PLL setup for g200wb and g200ew + https://gitlab.com/cki-project/kernel-ark/-/commit/dd24222299c0cc5a6a118f2265fcf3f769a7cfb4 dd24222299c0cc5a6a118f2265fcf3f769a7cfb4 Back out the nfs workaround and just revert the query for fs_location diff --git a/SOURCES/amdgpu-si-cik-default.patch b/SOURCES/amdgpu-si-cik-default.patch new file mode 100644 index 0000000..d78303f --- /dev/null +++ b/SOURCES/amdgpu-si-cik-default.patch @@ -0,0 +1,79 @@ +From 9dba686dfc006716e1cea0e28a7918561cf8a664 Mon Sep 17 00:00:00 2001 +From: Jan200101 +Date: Tue, 22 Mar 2022 17:52:14 +0100 +Subject: [PATCH] drm/amdgpu: enable SI and CIK support by default + +Signed-off-by: Jan200101 +--- + drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 14 ++------------ + drivers/gpu/drm/radeon/radeon_drv.c | 10 ++++++++++ + 2 files changed, 12 insertions(+), 12 deletions(-) + +diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c +index 8c7637233c81..d736cc1a663a 100644 +--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c ++++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c +@@ -573,15 +573,10 @@ module_param_named(timeout_period, amdgpu_watchdog_timer.period, uint, 0644); + */ + #ifdef CONFIG_DRM_AMDGPU_SI + +-#if defined(CONFIG_DRM_RADEON) || defined(CONFIG_DRM_RADEON_MODULE) +-int amdgpu_si_support = 0; +-MODULE_PARM_DESC(si_support, "SI support (1 = enabled, 0 = disabled (default))"); +-#else + int amdgpu_si_support = 1; + MODULE_PARM_DESC(si_support, "SI support (1 = enabled (default), 0 = disabled)"); +-#endif +- + module_param_named(si_support, amdgpu_si_support, int, 0444); ++ + #endif + + /** +@@ -592,15 +587,10 @@ module_param_named(si_support, amdgpu_si_support, int, 0444); + */ + #ifdef CONFIG_DRM_AMDGPU_CIK + +-#if defined(CONFIG_DRM_RADEON) || defined(CONFIG_DRM_RADEON_MODULE) +-int amdgpu_cik_support = 0; +-MODULE_PARM_DESC(cik_support, "CIK support (1 = enabled, 0 = disabled (default))"); +-#else + int amdgpu_cik_support = 1; + MODULE_PARM_DESC(cik_support, "CIK support (1 = enabled (default), 0 = disabled)"); +-#endif +- + module_param_named(cik_support, amdgpu_cik_support, int, 0444); ++ + #endif + + /** +diff --git a/drivers/gpu/drm/radeon/radeon_drv.c b/drivers/gpu/drm/radeon/radeon_drv.c +index b74cebca1f89..5208d50da643 100644 +--- a/drivers/gpu/drm/radeon/radeon_drv.c ++++ b/drivers/gpu/drm/radeon/radeon_drv.c +@@ -273,12 +273,22 @@ module_param_named(uvd, radeon_uvd, int, 0444); + MODULE_PARM_DESC(vce, "vce enable/disable vce support (1 = enable, 0 = disable)"); + module_param_named(vce, radeon_vce, int, 0444); + ++#ifdef CONFIG_DRM_AMDGPU_SI ++int radeon_si_support = 0; ++MODULE_PARM_DESC(si_support, "SI support (1 = enabled, 0 = disabled (default))"); ++#else + int radeon_si_support = 1; + MODULE_PARM_DESC(si_support, "SI support (1 = enabled (default), 0 = disabled)"); ++#endif + module_param_named(si_support, radeon_si_support, int, 0444); + ++#ifdef CONFIG_DRM_AMDGPU_CIK ++int radeon_cik_support = 0; ++MODULE_PARM_DESC(cik_support, "CIK support (1 = enabled, 0 = disabled (default))"); ++#else + int radeon_cik_support = 1; + MODULE_PARM_DESC(cik_support, "CIK support (1 = enabled (default), 0 = disabled)"); ++#endif + module_param_named(cik_support, radeon_cik_support, int, 0444); + + static struct pci_device_id pciidlist[] = { +-- +2.35.1 + diff --git a/SOURCES/patch-5.16-redhat.patch b/SOURCES/patch-5.16-redhat.patch index e1959a1..721733a 100644 --- a/SOURCES/patch-5.16-redhat.patch +++ b/SOURCES/patch-5.16-redhat.patch @@ -16,6 +16,7 @@ drivers/firmware/efi/Makefile | 1 + drivers/firmware/efi/efi.c | 124 +++++++++++++++------ drivers/firmware/efi/secureboot.c | 38 +++++++ + drivers/gpu/drm/mgag200/mgag200_pll.c | 6 +- drivers/gpu/drm/nouveau/nouveau_backlight.c | 3 +- drivers/hid/hid-rmi.c | 64 ----------- drivers/hwtracing/coresight/coresight-etm4x-core.c | 19 ++++ @@ -53,10 +54,10 @@ security/lockdown/lockdown.c | 1 + security/security.c | 6 + tools/testing/selftests/netfilter/nft_nat.sh | 5 +- - 55 files changed, 821 insertions(+), 284 deletions(-) + 56 files changed, 824 insertions(+), 287 deletions(-) diff --git a/Makefile b/Makefile -index 8675dd2a9cc8..fae0fa3f7ed5 100644 +index d625d3aeab2e..6e8bdceb7395 100644 --- a/Makefile +++ b/Makefile @@ -18,6 +18,10 @@ $(if $(filter __%, $(MAKECMDGOALS)), \ @@ -854,6 +855,23 @@ index 000000000000..de0a3714a5d4 + } + } +} +diff --git a/drivers/gpu/drm/mgag200/mgag200_pll.c b/drivers/gpu/drm/mgag200/mgag200_pll.c +index e9ae22b4f813..52be08b744ad 100644 +--- a/drivers/gpu/drm/mgag200/mgag200_pll.c ++++ b/drivers/gpu/drm/mgag200/mgag200_pll.c +@@ -404,9 +404,9 @@ mgag200_pixpll_update_g200wb(struct mgag200_pll *pixpll, const struct mgag200_pl + udelay(50); + + /* program pixel pll register */ +- WREG_DAC(MGA1064_PIX_PLLC_N, xpixpllcn); +- WREG_DAC(MGA1064_PIX_PLLC_M, xpixpllcm); +- WREG_DAC(MGA1064_PIX_PLLC_P, xpixpllcp); ++ WREG_DAC(MGA1064_WB_PIX_PLLC_N, xpixpllcn); ++ WREG_DAC(MGA1064_WB_PIX_PLLC_M, xpixpllcm); ++ WREG_DAC(MGA1064_WB_PIX_PLLC_P, xpixpllcp); + + udelay(50); + diff --git a/drivers/gpu/drm/nouveau/nouveau_backlight.c b/drivers/gpu/drm/nouveau/nouveau_backlight.c index 1cbd71abc80a..9d2513de959b 100644 --- a/drivers/gpu/drm/nouveau/nouveau_backlight.c -- cgit v1.2.3