Hi Shyam, On 8/11/23 13:21, Shyam Sundar S K wrote: > This patch series includes: > > - Move PMC driver to separate directory This one seems to rely on the state of the amd-pmc code in pdx86/fixes which is also the state in Linus' master but not the state in pdx86/for-next which is based on 6.5-rc1 where as e.g. : https://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git/commit/?h=fixes&id=e8ef8dd28c4c4b86cd3010ff42c79582f766862e Which adds the pmc-quirks.c file was added later in the fixes branch. So it is best to do this moving into a separate dir directly after 6.6-rc1 is out, at which point fixes and for-next will have both been merged. > - Read SMU version at the time of probe to avoid duplication of code Please address the comments made on this patch (or drop it). I assume the rest relies on this patch, so I'm going to drop this entire series from my queue now. Regards, Hans > - Add a Firmware command that can force flush the Spill to DRAM contents. > - override the STB dump size with a custom one using a module_param > > > Shyam Sundar S K (4): > platform/x86/amd/pmc: Move PMC driver to separate directory > platform/x86/amd/pmc: Read SMU version at the time of probe > platform/x86/amd/pmc: Add PMFW command id to support S2D force flush > platform/x86/amd/pmc: Add dump_custom_stb module parameter > > MAINTAINERS | 2 +- > drivers/platform/x86/amd/Kconfig | 16 +--- > drivers/platform/x86/amd/Makefile | 3 +- > drivers/platform/x86/amd/pmc/Kconfig | 19 +++++ > drivers/platform/x86/amd/pmc/Makefile | 8 ++ > .../platform/x86/amd/{ => pmc}/pmc-quirks.c | 0 > drivers/platform/x86/amd/{ => pmc}/pmc.c | 80 ++++++++----------- > drivers/platform/x86/amd/{ => pmc}/pmc.h | 1 + > 8 files changed, 66 insertions(+), 63 deletions(-) > create mode 100644 drivers/platform/x86/amd/pmc/Kconfig > create mode 100644 drivers/platform/x86/amd/pmc/Makefile > rename drivers/platform/x86/amd/{ => pmc}/pmc-quirks.c (100%) > rename drivers/platform/x86/amd/{ => pmc}/pmc.c (96%) > rename drivers/platform/x86/amd/{ => pmc}/pmc.h (98%) >