linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] platform-drivers-x86 for 5.5-1
@ 2019-11-28 14:42 Andy Shevchenko
  2019-12-02  2:50 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Andy Shevchenko @ 2019-11-28 14:42 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: LKML, Darren Hart, Andy Shevchenko

Hi Linus,

Luckily this cycle is not a busiest one and I had time to handle it.
This is a bunch of PDx86 updates for v5.5. It has the following duplicates
due to earlier sent fixes during v5.4:

- e3008bf46ce0baf617cfd1b68d35e433dc603e43 platform/x86: classmate-laptop: remove unused variable
- da5fb83fb8dc5f95d4ab3a9f4641821fab34ce58 platform/x86: intel_punit_ipc: Avoid error message when retrieving IRQ
- d17f1bbb3aa9631429fa0fe325ad12661d6b226b platform/x86: i2c-multi-instantiate: Fail the probe if no IRQ provided

During test merge no conflicts were found.

Thanks,

With Best Regards,
Andy Shevchenko

The following changes since commit 4f5cafb5cb8471e54afdc9054d973535614f7675:

  Linux 5.4-rc3 (2019-10-13 16:37:36 -0700)

are available in the Git repository at:

  git://git.infradead.org/linux-platform-drivers-x86.git tags/platform-drivers-x86-v5.5-1

for you to fetch changes up to f3e4f3fc8ee9729c4b1b27a478c68b713df53c0c:

  platform/x86: hp-wmi: Fix ACPI errors caused by passing 0 as input size (2019-11-25 12:59:17 +0200)

----------------------------------------------------------------
platform-drivers-x86 for v5.5-1

* New bootctl driver for Mellanox BlueField SoC.

* New driver to support System76 laptops.

* Temperature monitoring and fan control on Acer Aspire 7551
  is now supported.

* Previously the Huawei driver handled only hotkeys.
  After the conversion to WMI it has been expanded
  to support newer laptop models.

* Big refactoring of intel-speed-select tools allows to
  use it on Intel CascadeLake-N systems.

* Touchscreen support for ezpad 6 m4 and
  Schneider SCT101CTM tablets

* Miscellaneous clean ups and fixes here and there.

The following is an automated git shortlog grouped by driver:

acerhdf:
 -  Add support for Acer Aspire 7551
 -  Rename Peter Feuerer to Peter Kaestle

Add System76 ACPI driver:
 - Add System76 ACPI driver

asus-laptop:
 -  switch to using polled mode of input devices

classmate-laptop:
 -  remove unused variable

dell-laptop:
 -  disable kbd backlight on Inspiron 10xx

hdaps:
 -  switch to using polled mode of input devices

hp-wmi:
 -  Fix ACPI errors caused by passing 0 as input size
 -  Fix ACPI errors caused by too small buffer

huawei-wmi:
 -  Remove unnecessary battery mutex
 -  No need to check for battery name
 -  Stricter battery thresholds set
 -  Fix a precision vs width printf bug
 -  Avoid use of global variable when possible
 -  No need to keep pointer to platform device
 -  Don't leak memory on the exit
 -  huawei_wmi can be static
 -  Add debugfs support
 -  Add fn-lock support
 -  Add battery charging thresholds
 -  Implement huawei wmi management
 -  Add quirks and module parameters
 -  Move to platform driver

i2c-multi-instantiate:
 -  Fail the probe if no IRQ provided

intel_cht_int33fe:
 -  Split code to Micro-B and Type-C

intel_int0002_vgpio:
 -  Pass irqchip when adding gpiochip

intel_pmc_core:
 -  Add Comet Lake (CML) platform support to intel_pmc_core driver
 -  Fix the SoC naming inconsistency

intel_punit_ipc:
 -  Drop useless label
 -  use devm_platform_ioremap_resource() to simplify code
 -  Avoid error message when retrieving IRQ

peaq-wmi:
 -  switch to using polled mode of input devices

platform/mellanox:
 -  Fix Kconfig indentation
 -  Add bootctl driver for Mellanox BlueField Soc

tools/power/x86/intel-speed-select:
 -  Display TRL buckets for just base config level
 -  Ignore missing config level
 -  Increment version
 -  Use core count for base-freq mask
 -  Support platform with limited Intel(R) Speed Select
 -  Use Frequency weight for CLOS
 -  Make CLOS frequency in MHz
 -  Use mailbox for CLOS_PM_QOS_CONFIG
 -  Auto mode for CLX
 -  Correct CLX-N frequency units
 -  Change display of "avx" to "avx2"
 -  Extend command set for perf-profile
 -  Implement base-freq commands on CascadeLake-N
 -  Implement 'perf-profile info' on CascadeLake-N
 -  Implement CascadeLake-N help and command functions structures
 -  Add check for CascadeLake-N models
 -  Make process_command generic
 -  Add int argument to command functions
 -  Refuse to disable core-power when getting used
 -  Turbo-freq feature auto mode
 -  Base-freq feature auto mode
 -  Remove warning for unused result

toshiba_acpi:
 -  do not select INPUT_POLLDEV

touchscreen_dmi:
 -  Add info for the ezpad 6 m4 tablet
 -  Add touchscreen platform data for the Schneider SCT101CTM tablet

----------------------------------------------------------------
Andy Shevchenko (7):
      platform/x86: intel_punit_ipc: Avoid error message when retrieving IRQ
      platform/x86: i2c-multi-instantiate: Fail the probe if no IRQ provided
      platform/x86: huawei-wmi: Don't leak memory on the exit
      platform/x86: huawei-wmi: No need to keep pointer to platform device
      platform/x86: huawei-wmi: Avoid use of global variable when possible
      platform/x86: intel_punit_ipc: use devm_platform_ioremap_resource() to simplify code
      platform/x86: intel_punit_ipc: Drop useless label

Ayman Bagabas (9):
      platform/x86: huawei-wmi: Move to platform driver
      platform/x86: huawei-wmi: Add quirks and module parameters
      platform/x86: huawei-wmi: Implement huawei wmi management
      platform/x86: huawei-wmi: Add battery charging thresholds
      platform/x86: huawei-wmi: Add fn-lock support
      platform/x86: huawei-wmi: Add debugfs support
      platform/x86: huawei-wmi: Stricter battery thresholds set
      platform/x86: huawei-wmi: No need to check for battery name
      platform/x86: huawei-wmi: Remove unnecessary battery mutex

Dan Carpenter (1):
      platform/x86: huawei-wmi: Fix a precision vs width printf bug

Daniel Gorbea Ainz (1):
      Add touchscreen platform data for the Schneider SCT101CTM tablet

Dmitry Torokhov (4):
      platform/x86: asus-laptop: switch to using polled mode of input devices
      platform/x86: hdaps: switch to using polled mode of input devices
      platform/x86: peaq-wmi: switch to using polled mode of input devices
      platform/x86: toshiba_acpi: do not select INPUT_POLLDEV

Gayatri Kammela (2):
      platform/x86: intel_pmc_core: Fix the SoC naming inconsistency
      platform/x86: intel_pmc_core: Add Comet Lake (CML) platform support to intel_pmc_core driver

Hans de Goede (3):
      platform/x86: touchscreen_dmi: Add info for the ezpad 6 m4 tablet
      platform/x86: hp-wmi: Fix ACPI errors caused by too small buffer
      platform/x86: hp-wmi: Fix ACPI errors caused by passing 0 as input size

Jeremy Soller (1):
      platform/x86: Add System76 ACPI driver

Krzysztof Kozlowski (1):
      platform/mellanox: Fix Kconfig indentation

Liming Sun (1):
      platform/mellanox: Add bootctl driver for Mellanox BlueField Soc

Linus Walleij (1):
      platform/x86: intel_int0002_vgpio: Pass irqchip when adding gpiochip

Pacien TRAN-GIRARD (1):
      platform/x86: dell-laptop: disable kbd backlight on Inspiron 10xx

Peter Feuerer (1):
      platform/x86: acerhdf: Add support for Acer Aspire 7551

Peter Kaestle (1):
      treewide: Rename Peter Feuerer to Peter Kaestle

Prarit Bhargava (6):
      tools/power/x86/intel-speed-select: Add int argument to command functions
      tools/power/x86/intel-speed-select: Make process_command generic
      tools/power/x86/intel-speed-select: Add check for CascadeLake-N models
      tools/power/x86/intel-speed-select: Implement CascadeLake-N help and command functions structures
      tools/power/x86/intel-speed-select: Implement 'perf-profile info' on CascadeLake-N
      tools/power/x86/intel-speed-select: Implement base-freq commands on CascadeLake-N

Srinivas Pandruvada (16):
      tools/power/x86/intel-speed-select: Remove warning for unused result
      tools/power/x86/intel-speed-select: Base-freq feature auto mode
      tools/power/x86/intel-speed-select: Turbo-freq feature auto mode
      tools/power/x86/intel-speed-select: Refuse to disable core-power when getting used
      tools/power/x86/intel-speed-select: Extend command set for perf-profile
      tools/power/x86/intel-speed-select: Change display of "avx" to "avx2"
      tools/power/x86/intel-speed-select: Correct CLX-N frequency units
      tools/power/x86/intel-speed-select: Auto mode for CLX
      tools/power/x86/intel-speed-select: Use mailbox for CLOS_PM_QOS_CONFIG
      tools/power/x86/intel-speed-select: Make CLOS frequency in MHz
      tools/power/x86/intel-speed-select: Use Frequency weight for CLOS
      tools/power/x86/intel-speed-select: Support platform with limited Intel(R) Speed Select
      tools/power/x86/intel-speed-select: Use core count for base-freq mask
      tools/power/x86/intel-speed-select: Increment version
      tools/power/x86/intel-speed-select: Ignore missing config level
      tools/power/x86/intel-speed-select: Display TRL buckets for just base config level

Yauhen Kharuzhy (1):
      platform/x86: intel_cht_int33fe: Split code to Micro-B and Type-C

kbuild test robot (1):
      platform/x86: huawei-wmi: huawei_wmi can be static

yu kuai (1):
      platform/x86: classmate-laptop: remove unused variable

 .../ABI/testing/sysfs-platform-mellanox-bootctl    |   58 ++
 MAINTAINERS                                        |   10 +-
 drivers/platform/mellanox/Kconfig                  |   16 +-
 drivers/platform/mellanox/Makefile                 |    1 +
 drivers/platform/mellanox/mlxbf-bootctl.c          |  321 +++++++
 drivers/platform/mellanox/mlxbf-bootctl.h          |  103 ++
 drivers/platform/x86/Kconfig                       |   35 +-
 drivers/platform/x86/Makefile                      |    5 +
 drivers/platform/x86/acerhdf.c                     |    7 +-
 drivers/platform/x86/asus-laptop.c                 |   71 +-
 drivers/platform/x86/classmate-laptop.c            |   12 -
 drivers/platform/x86/dell-laptop.c                 |   26 +
 drivers/platform/x86/hdaps.c                       |   40 +-
 drivers/platform/x86/hp-wmi.c                      |   10 +-
 drivers/platform/x86/huawei-wmi.c                  |  876 +++++++++++++++--
 drivers/platform/x86/i2c-multi-instantiate.c       |    1 +
 drivers/platform/x86/intel_cht_int33fe_common.c    |  147 +++
 drivers/platform/x86/intel_cht_int33fe_common.h    |   41 +
 drivers/platform/x86/intel_cht_int33fe_microb.c    |   57 ++
 ...tel_cht_int33fe.c => intel_cht_int33fe_typec.c} |   78 +-
 drivers/platform/x86/intel_int0002_vgpio.c         |   28 +-
 drivers/platform/x86/intel_pmc_core.c              |   17 +-
 drivers/platform/x86/intel_punit_ipc.c             |   51 +-
 drivers/platform/x86/peaq-wmi.c                    |   66 +-
 drivers/platform/x86/system76_acpi.c               |  384 ++++++++
 drivers/platform/x86/touchscreen_dmi.c             |   52 +
 drivers/thermal/gov_bang_bang.c                    |    2 +-
 tools/power/x86/intel-speed-select/isst-config.c   | 1014 ++++++++++++++++----
 tools/power/x86/intel-speed-select/isst-core.c     |  176 +++-
 tools/power/x86/intel-speed-select/isst-display.c  |  156 ++-
 tools/power/x86/intel-speed-select/isst.h          |    5 +
 31 files changed, 3274 insertions(+), 592 deletions(-)
 create mode 100644 Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
 create mode 100644 drivers/platform/mellanox/mlxbf-bootctl.c
 create mode 100644 drivers/platform/mellanox/mlxbf-bootctl.h
 create mode 100644 drivers/platform/x86/intel_cht_int33fe_common.c
 create mode 100644 drivers/platform/x86/intel_cht_int33fe_common.h
 create mode 100644 drivers/platform/x86/intel_cht_int33fe_microb.c
 rename drivers/platform/x86/{intel_cht_int33fe.c => intel_cht_int33fe_typec.c} (82%)
 create mode 100644 drivers/platform/x86/system76_acpi.c

-- 
With Best Regards,
Andy Shevchenko



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

* Re: [GIT PULL] platform-drivers-x86 for 5.5-1
  2019-11-28 14:42 [GIT PULL] platform-drivers-x86 for 5.5-1 Andy Shevchenko
@ 2019-12-02  2:50 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2019-12-02  2:50 UTC (permalink / raw)
  To: Andy Shevchenko; +Cc: Linus Torvalds, LKML, Darren Hart, Andy Shevchenko

The pull request you sent on Thu, 28 Nov 2019 16:42:38 +0200:

> git://git.infradead.org/linux-platform-drivers-x86.git tags/platform-drivers-x86-v5.5-1

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/67b8ed29e0d472bda2f3afe48d6ff99e127eff0c

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/prtracker

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

end of thread, other threads:[~2019-12-02  2:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-28 14:42 [GIT PULL] platform-drivers-x86 for 5.5-1 Andy Shevchenko
2019-12-02  2:50 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).