This patch series is for the implementation of the platform-profile feature - the ability to determine which mode the platform is in and to change the mode using a sysfs entry. The first patch is an update of the document I've been working on with review and help from the kernel community. Thank you to everybody for their input. The second patch implements the platform-profile sysfs and API's needed. The third patch has Lenovo specific changes in thinkpad_acpi.c to use the new platform-profile implementation and be able to switch between low, medium and high power modes. Thanks Mark Mark Pearson (3): Documentation: Add documentation for new platform_profile sysfs attribute ACPI: platform-profile: Add platform profile support platform/x86: thinkpad_acpi: Add platform profile support .../ABI/testing/sysfs-platform_profile | 66 +++++ MAINTAINERS | 8 + drivers/acpi/Kconfig | 19 ++ drivers/acpi/Makefile | 1 + drivers/acpi/platform_profile.c | 171 ++++++++++++ drivers/platform/x86/thinkpad_acpi.c | 261 +++++++++++++++++- include/linux/platform_profile.h | 36 +++ 7 files changed, 550 insertions(+), 12 deletions(-) create mode 100644 Documentation/ABI/testing/sysfs-platform_profile create mode 100644 drivers/acpi/platform_profile.c create mode 100644 include/linux/platform_profile.h -- 2.28.0