linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] GPIO fixes for v5.5
@ 2020-01-09 22:00 Linus Walleij
  2020-01-10  0:15 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Linus Walleij @ 2020-01-09 22:00 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: open list:GPIO SUBSYSTEM, Bartosz Golaszewski, linux-kernel,
	Hans de Goede

Hi Linus,

here is a host of GPIO fixes for the v5.5 series. The
ACPI fix is especially important, see the signed tag
and commit for details.

There is also a coding whitespace style fix on the
mockup device maybe I shouldn't have merged that here
for fixes, it was more of a -rc1 thing, it just slipped
in through the winter vacation returning to duties window.
So sorry about that, if you insist I can rebase the lot and
take it out.

Please pull it in!

Yours,
Linus Walleij

The following changes since commit fd6988496e79a6a4bdb514a4655d2920209eb85d:

  Linux 5.5-rc4 (2019-12-29 15:29:16 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
tags/gpio-v5.5-3

for you to fetch changes up to aa23ca3d98f756d5b1e503fb140665fb24a41a38:

  gpiolib: acpi: Add honor_wakeup module-option + quirk mechanism
(2020-01-07 12:58:15 +0100)

----------------------------------------------------------------
GPIO fixes for the v5.5 kernel cycle:

- Select GPIOLIB_IRQCHIP on the max77620 GPIO expander
- Fix context restore in the Zynq driver
- Create a new ACPI quirk handler for disabling wakeups on
  problematic hardware.
- Fix a coding style issue on the mockup device.

----------------------------------------------------------------
Bartosz Golaszewski (1):
      gpio: mockup: fix coding style

Dmitry Osipenko (1):
      gpio: max77620: Add missing dependency on GPIOLIB_IRQCHIP

Hans de Goede (2):
      gpiolib: acpi: Turn dmi_system_id table into a generic quirk table
      gpiolib: acpi: Add honor_wakeup module-option + quirk mechanism

Linus Walleij (1):
      Merge tag 'gpio-fixes-for-v5.5-rc5' of
git://git.kernel.org/.../brgl/linux into fixes

Swapna Manupati (1):
      gpio: zynq: Fix for bug in zynq_gpio_restore_context API

 drivers/gpio/Kconfig        |  1 +
 drivers/gpio/gpio-mockup.c  |  4 ++--
 drivers/gpio/gpio-zynq.c    |  8 ++++---
 drivers/gpio/gpiolib-acpi.c | 51 ++++++++++++++++++++++++++++++++++++++++-----
 4 files changed, 54 insertions(+), 10 deletions(-)

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

* Re: [GIT PULL] GPIO fixes for v5.5
  2020-01-09 22:00 [GIT PULL] GPIO fixes for v5.5 Linus Walleij
@ 2020-01-10  0:15 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2020-01-10  0:15 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Linus Torvalds, open list:GPIO SUBSYSTEM, Bartosz Golaszewski,
	linux-kernel, Hans de Goede

The pull request you sent on Thu, 9 Jan 2020 23:00:49 +0100:

> git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git tags/gpio-v5.5-3

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/4a3033ef6e6bb4c566bd1d556de69b494d76976c

Thank you!

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

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

* Re: [GIT PULL] gpio fixes for v5.5
  2020-01-17  7:57 [GIT PULL] gpio " Linus Walleij
@ 2020-01-17 14:05 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2020-01-17 14:05 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Linus Torvalds, linux-kernel, open list:GPIO SUBSYSTEM, Kevin Hao

The pull request you sent on Fri, 17 Jan 2020 08:57:27 +0100:

> git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git tags/gpio-v5.5-4

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/13b2668d6fc95dcecd11e4f86f47be24fda7da1f

Thank you!

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

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

* [GIT PULL] gpio fixes for v5.5
@ 2020-01-17  7:57 Linus Walleij
  2020-01-17 14:05 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Linus Walleij @ 2020-01-17  7:57 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel, open list:GPIO SUBSYSTEM, Kevin Hao

Hi Linus,

a GPIO fix for the ThunderX is all that appeared in the last week(s).
The revert affects a single driver on a rare piece
of silicon.

Please pull it in!

Yours,
Linus Walleij

The following changes since commit b3a987b0264d3ddbb24293ebff10eddfc472f653:

  Linux 5.5-rc6 (2020-01-12 16:55:08 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
tags/gpio-v5.5-4

for you to fetch changes up to a564ac35d60564dd5b509e32afdc04e7aafee40e:

  Revert "gpio: thunderx: Switch to GPIOLIB_IRQCHIP" (2020-01-15 11:17:21 +0100)

----------------------------------------------------------------
GPIO fixes for the v5.5 series:

This reverts the GPIOLIB_IRQCHIP in the ThunderX driver.
ThunderX is a piece of Arm-based server chip. I converted the driver to
hierarchical gpiochip without access to real silicon and failed miserably
since I didn't take MSI's into account.

Kevin Hao helpfully stepped in and fixed it properly, let's revert it for
v5.5 and put the proper conversion into v5.6.

----------------------------------------------------------------
Kevin Hao (1):
      Revert "gpio: thunderx: Switch to GPIOLIB_IRQCHIP"

 drivers/gpio/Kconfig         |   1 -
 drivers/gpio/gpio-thunderx.c | 163 ++++++++++++++++++++++++++++---------------
 2 files changed, 107 insertions(+), 57 deletions(-)

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

end of thread, other threads:[~2020-01-17 14:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-09 22:00 [GIT PULL] GPIO fixes for v5.5 Linus Walleij
2020-01-10  0:15 ` pr-tracker-bot
2020-01-17  7:57 [GIT PULL] gpio " Linus Walleij
2020-01-17 14:05 ` 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).