This patch series includes: - Move PMC driver to separate directory - Read SMU version at the time of probe to avoid duplication of code - 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%) -- 2.25.1