Re: [GIT PULL] GPIO bulk changes for the v5.4 kernel

2019-09-16 Thread pr-tracker-bot
The pull request you sent on Mon, 16 Sep 2019 05:58:45 +0200:

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

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

Thank you!

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


[GIT PULL] GPIO bulk changes for the v5.4 kernel

2019-09-15 Thread Linus Walleij
Hi Linus,

the following is the bulk of GPIO changes for v5.4. The
main information chunk about the updates is in the signed
tag as always. This cycle has been pretty lively.

You will notice that I merged in v5.3-rc7 at a late point.
This was because the conflicts were really hairy between
the -rc:s and the bulk of development: the kind where
there is a variable rename in one branch and independent
reshuffling of code in the other. This took me some
substantial time to sort out, despite both changes being
my own. I don't know if I'm especially bad at resolving
conflicts but after failing to construct a branch for -next
several times I just sat down and resolved the conflicts
toward -rc7 once and for all. I still had to fix it up with
a patch on top.

Changes hitting Unicore and FMC in MAINTAINERS are
eplained in the signed tag as well.

Please pull it in!

Yours,
Linus Walleij

The following changes since commit 089cf7f6ecb266b6a4164919a2e69bd2f938374a:

  Linux 5.3-rc7 (2019-09-02 09:57:40 -0700)

are available in the Git repository at:

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

for you to fetch changes up to 11c43bb022b373d2fdb84950ebf1911362f3f010:

  gpiolib: of: add a fallback for wlf,reset GPIO name (2019-09-12
10:29:17 +0100)


This is the bulk of changes in the GPIO subsystem for the
v5.4 kernel cycle.

Core changes:

- Support hierarchical GPIO irqchips. We now have three
  consumers that can use this: Intel IXP4xx, ThunderX and
  Qualcomm SPMI GPIO (in the pinctrl subsystem). The support
  code has been long in the making and hashed out so it should
  be easily adaptable for all hierarchical irqchip parents.
  The code only gets compiled in if hierarchical irqchip
  is used at the topmost irq controller at least, as the
  hierarchical irqchip requires strict hierarchy all the
  way up in the system.

- Determine the need for a "valid_mask" for GPIO lines on the
  gpio_chip and conversely for the "valid_mask" for the GPIO
  interrupt chip interrupt lines by looking for a
  .init_valid_mask() callback in the main chip or GPIO interrupt
  chip respectively. Allocate it with bitmap_alloc().

- Isolate the device tree/open firmware GPIO description code
  out in its own file properly.

- Isolate the ACPI GPIO description code out in its own file
  properly.

- Drop a whole lot of #ifdef:s in the main includes: it does
  not hurt to keep the include items around, and we get
  quicker and clearer compile failures if the appropriate
  kernel symbols are not selected for drivers.

New/deleted drivers:

- New driver for Aspeed SGPIO.

- The KS8695 driver is deleted as the platform gets deleted
  from arch/arm in this kernel cycle.

- The Cirrus Logic Madera driver now supports CS47L92 and
  CS47L15.

- The Freescale MPC8xxx now supports LS1028A and LS1088A.

Driver improvements:

- We pass the GPIO irqchip intialization by directly filling
  in the struct instead of using set-up functions (the new
  way) for Intel MID, Lynxpoint, Merrifield, XLP, HLWD, Aspeed,
  ZX, VF610, TQMX86, MT7621, Zynq and EP93xx.

Out-of-band changes:

- Fix a GPIO header inclusion in Unicore - no response from
  maintainer.

- Drop FMC subsystem from MAINTAINERS - was deleted in the
  GPIO tree last cycle so let's mop up the shards.


Andy Shevchenko (8):
  gpiolib: of: Reshuffle contents of consumer.h for new library layout
  gpiolib: acpi: Split ACPI stuff to gpiolib-acpi.h
  gpiolib-acpi: Move acpi_dev_add_driver_gpios() et al to consumer.h
  gpio: pca953x: Switch to use device_get_match_data()
  gpio: pca953x: Use GENMASK() consistently
  gpio: pca953x: Remove explicit comparison with 0
  gpio: pca953x: Drop %s for constant string literals
  MAINTAINERS: Remove stale record for gpio-intel-mid.c

Anson Huang (1):
  gpio: mxc: Use devm_clk_get_optional instead of devm_clk_get

Arnd Bergmann (2):
  gpio: remove ks8695 driver
  gpio: lpc32xx: allow building on non-lpc32xx targets

Bartosz Golaszewski (2):
  gpio: em: use a helper variable for >dev
  gpio: max77650: add MODULE_ALIAS()

Brian Masney (1):
  qcom: spmi-gpio: convert to hierarchical IRQ helpers in gpio core

Charles Keepax (3):
  gpio: arizona: Use local copy of pdata
  gpio: madera: Use local copy of pdata
  gpio: madera: Add support for Cirrus Logic CS47L92

Christophe JAILLET (1):
  gpio: ftgpio: Fix an error handling path in 'ftgpio_gpio_probe()'

Chuhong Yuan (1):
  gpio: pch: Use dev_get_drvdata

Colin Ian King (2):
  gpio: bd70528: fix spelling misstake "debouce" -> "debounce"
  gpio: bd70528: remove redundant assignment to variable ret

Denis Efremov (1):
  MAINTAINERS: Remove FMC subsystem

Ding Xiang (1):
  gpio: ixp4xx: remove redundant dev_err message

Dmitry Torokhov (2):
  gpiolib: acpi: