linux-stable/Documentation/devicetree/bindings
Linus Torvalds 8148c17b17 This is the bulk of the GPIO changes for the v5.2 kernel cycle:
Core changes:
 - The gpiolib MMIO driver has been enhanced to handle two direction
   registers, i.e. one register to set lines as input and one register
   to set lines as output. It turns out some silicon engineer thinks
   the ability to configure a line as input and output at the same
   time makes sense, this can be debated but includes a lot of analog
   electronics reasoning, and the registers are there and need to
   be handled consistently. Unsurprisingly, we enforce the lines to
   be either inputs or outputs in such schemes.
 - Send in the proper argument value to .set_config() dispatched to
   the pin control subsystem. Nobody used it before, now someone
   does, so fix it to work as expected.
 - The ACPI gpiolib portions can now handle pin bias setting (pull up
   or pull down). This has been in the ACPI spec for years and we
   finally have it properly integrated with Linux GPIOs. It was based
   on an observation from Andy Schevchenko that Thomas Petazzoni's
   changes to the core for biasing the PCA950x GPIO expander actually
   happen to fit hand-in-glove with what the ACPI core needed.
   Such nice synergies happen sometimes.
 
 New drivers:
 - A new driver for the Mellanox BlueField GPIO controller. This is
   using 64bit MMIO registers and can configure lines as inputs
   and outputs at the same time and after improving the MMIO library
   we handle it just fine. Interesting.
 - A new IXP4xx proper gpiochip driver with hierarchical interrupts
   should be coming in from the ARM SoC tree as well.
 
 Driver enhancements:
 - The PCA053x driver handles the CAT9554 GPIO expander.
 - The PCA053x driver handles the NXP PCAL6416 GPIO expander.
 - Wake-up support on PCA053x GPIO lines.
 - OMAP now does a nice asynchronous IRQ handling on wake-ups by
   letting everything wake up on edges, and this makes runtime PM
   work as expected too.
 
 Misc:
 - Several cleanups such as devres fixes.
 - Get rid of some languager comstructs that cause problems when
   compiling with LLVMs clang.
 - Documentation review and update.
 -----BEGIN PGP SIGNATURE-----
 
 iQIcBAABAgAGBQJc1olZAAoJEEEQszewGV1zEU4P/RmTf3hG8xmNPS3MDTmR6gAy
 /YJOXjXBf3CD/dmEAyyaNLnUQismrtRNvHSoEGbno7gkU+htzp9UfUJkj6+HIXs2
 RpF+Hi78HzZNDxGWuBLu6OZolpmBtx+sRKOhHk/XfNS45qd1FgXWDuulzsYa9Xsr
 hYMXdtdv9wY/vcc68q1rtKAbzlu5ZNCa3Zj1iNOr/XQt3Nl2BW66hGLgjK4mOvgx
 fJy4rFXuDIMfDvo69U1Opz2b39sfE7XMhfZS/MOgg4yEV9zGRgDoI1tyMcTqGb8Q
 8LQbp5dXkP+3dJQB8tgbu3Vk4WC1Rd/pmIli5sMgsk0HYQ6XegfT6HJKozSmwN9r
 0s8jKlrocWZvdPo1aJwQgtRS56t2rFWcrcRye8bLqxkkW5cYIq9CwkE8USwB31Kv
 PFpoOwRuCtj0gkCxf7WIEcC5NAkYPow3K1KPdk3E0Si6I3pj0NqqlaAD0JAlkC2V
 aPq3xbTuFCAdmcADEt2Z+dUJ7WIs5Y9oQgosMAx+A2AD4K3QDBMu3pZsT6SCu4XZ
 mK0eWJi9/CvOj/s7bA0BEJVxQA+p8KYsNRBOULg/8aAOqGcLnSydQjqrxDTE8YrL
 xmmRG7i7ht0B9CchZuIB5hqdvjbCgvcVa5OnCUDfLxE0GdCx8iJ9y9OrsMXbabYq
 8FcPDo1N38cTYLnLqvKI
 =rhto
 -----END PGP SIGNATURE-----

Merge tag 'gpio-v5.2-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio

Pull gpio updates from Linus Walleij:
 "This is the bulk of the GPIO changes for the v5.2 kernel cycle. A bit
  later than usual because I was ironing out my own mistakes. I'm
  holding some stuff back for the next kernel as a result, and this
  should be a healthy and well tested batch.

  Core changes:

   - The gpiolib MMIO driver has been enhanced to handle two direction
     registers, i.e. one register to set lines as input and one register
     to set lines as output. It turns out some silicon engineer thinks
     the ability to configure a line as input and output at the same
     time makes sense, this can be debated but includes a lot of analog
     electronics reasoning, and the registers are there and need to be
     handled consistently. Unsurprisingly, we enforce the lines to be
     either inputs or outputs in such schemes.

   - Send in the proper argument value to .set_config() dispatched to
     the pin control subsystem. Nobody used it before, now someone does,
     so fix it to work as expected.

   - The ACPI gpiolib portions can now handle pin bias setting (pull up
     or pull down). This has been in the ACPI spec for years and we
     finally have it properly integrated with Linux GPIOs. It was based
     on an observation from Andy Schevchenko that Thomas Petazzoni's
     changes to the core for biasing the PCA950x GPIO expander actually
     happen to fit hand-in-glove with what the ACPI core needed. Such
     nice synergies happen sometimes.

  New drivers:

   - A new driver for the Mellanox BlueField GPIO controller. This is
     using 64bit MMIO registers and can configure lines as inputs and
     outputs at the same time and after improving the MMIO library we
     handle it just fine. Interesting.

   - A new IXP4xx proper gpiochip driver with hierarchical interrupts
     should be coming in from the ARM SoC tree as well.

  Driver enhancements:

   - The PCA053x driver handles the CAT9554 GPIO expander.

   - The PCA053x driver handles the NXP PCAL6416 GPIO expander.

   - Wake-up support on PCA053x GPIO lines.

   - OMAP now does a nice asynchronous IRQ handling on wake-ups by
     letting everything wake up on edges, and this makes runtime PM work
     as expected too.

  Misc:

   - Several cleanups such as devres fixes.

   - Get rid of some languager comstructs that cause problems when
     compiling with LLVMs clang.

   - Documentation review and update"

* tag 'gpio-v5.2-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio: (85 commits)
  gpio: Update documentation
  docs: gpio: convert docs to ReST and rename to *.rst
  gpio: sch: Remove write-only core_base
  gpio: pxa: Make two symbols static
  gpiolib: acpi: Respect pin bias setting
  gpiolib: acpi: Add acpi_gpio_update_gpiod_lookup_flags() helper
  gpiolib: acpi: Set pin value, based on bias, more accurately
  gpiolib: acpi: Change type of dflags
  gpiolib: Introduce GPIO_LOOKUP_FLAGS_DEFAULT
  gpiolib: Make use of enum gpio_lookup_flags consistent
  gpiolib: Indent entry values of enum gpio_lookup_flags
  gpio: pca953x: add support for pca6416
  dt-bindings: gpio: pca953x: document the nxp,pca6416
  gpio: pca953x: add pcal6416 to the of_device_id table
  gpio: gpio-omap: Remove conditional pm_runtime handling for GPIO interrupts
  gpio: gpio-omap: configure edge detection for level IRQs for idle wakeup
  tracing: stop making gpio tracing configurable
  gpio: pca953x: Configure wake-up path when wake-up is enabled
  gpio: of: Optimize quirk checks
  gpio: mmio: Drop bgpio_dir_inverted
  ...
2019-05-11 10:54:43 -04:00
..
arc
arm We have a couple new features and changes in the core clk framework this time 2019-05-09 14:50:09 -07:00
ata
auxdisplay
board
bus dt-bindings: bus: imx-weim: document multiple address ranges per child node 2019-01-11 15:16:28 +08:00
c6x
clock Merge branches 'clk-stm32f4', 'clk-tegra', 'clk-at91', 'clk-sifive-fu540' and 'clk-spdx' into clk-next 2019-05-07 11:45:29 -07:00
connector dt-bindings: connector: Spelling mistake 2019-04-10 16:33:48 -05:00
counter dt-bindings: counter: ftm-quaddec 2019-04-25 21:33:41 +02:00
cpufreq dt-bindings: cpufreq: tegra124: remove cpu_lp clock from required properties 2019-02-06 14:27:52 +01:00
crypto dt-bindings: crypto: document Exynos5433 SlimSSS 2019-02-28 14:37:35 +08:00
csky dt-bindings: csky CPU Bindings 2018-10-26 00:54:27 +08:00
devfreq
display drm pull request for 5.2 2019-05-08 21:35:19 -07:00
dma Documentation: DT: Add compatibility binding for Tegra186 2019-05-04 16:13:41 +05:30
edac Documentation: dt: edac: Add Stratix10 Peripheral bindings 2019-04-10 21:01:54 +02:00
eeprom dt-bindings: at24: add Renesas R1EX24016 2019-03-21 09:57:48 +01:00
extcon extcon: Add support for ptn5150 extcon driver 2019-02-11 17:21:38 +09:00
fieldbus dt-bindings: anybus-controller: document devicetree binding 2019-04-17 12:07:31 +02:00
firmware dt-bindings: firmware: tegra186-bpmp: Remove name property 2019-01-25 15:51:16 +01:00
fpga dt-bindings: fpga: add Stratix10 SoC FPGA manager binding 2018-11-26 20:15:07 +01:00
fsi dt-bindings: fsi: Add P9 OCC device documentation 2018-12-02 16:25:28 -08:00
fuse
gnss dt-bindings: gnss: add u-blox,neo-6m compatible 2019-04-04 12:43:13 +02:00
goldfish
gpio dt-bindings: gpio: pca953x: document the nxp,pca6416 2019-04-11 15:34:24 +02:00
gpu drm-misc-next for 5.2: 2019-04-12 14:27:45 +10:00
h8300
hsi
hwlock dt-bindings: hwlock: Document STM32 hwspinlock bindings 2018-12-05 12:45:08 -08:00
hwmon dt-bindings: hwmon: Add tmp75b to lm75.txt 2019-05-03 13:13:15 -07:00
i2c dt-bindings: i2c: riic: document r7s9210 support 2019-05-03 16:53:31 +02:00
i3c dt-binding: i3c: Document Synopsys DesignWare I3C 2018-12-05 17:22:58 +01:00
iio dt-bindings: counter: Adjust dt-bindings for STM32 lptimer move 2019-04-25 21:33:41 +02:00
infiniband
input Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input 2019-03-11 10:57:11 -07:00
interconnect dt-bindings: interconnect: Add a dma interconnect name 2019-04-10 16:33:47 -05:00
interrupt-controller dt-bindings: Require child nodes type to be 'object' 2019-04-10 09:03:03 -05:00
iommu dt-bindings: memory: tegra: Squash tegra20-gart into tegra20-mc 2019-01-16 13:54:09 +01:00
ipmi
leds dt: lm3532: Add lm3532 dt doc and update ti_lmu doc 2019-04-07 20:45:48 +02:00
lpddr2
mailbox dt-bindings: mailbox: Document armada-3700-rwtm-mailbox binding 2019-05-09 00:41:00 -05:00
media media: dt-bindings: aspeed-video: Add missing memory-region property 2019-04-30 13:53:12 -04:00
memory-controllers dt-bindings: memory: tegra: Squash tegra20-gart into tegra20-mc 2019-01-16 13:54:09 +01:00
mfd Devicetree for 5.2: 2019-05-07 21:55:37 -07:00
mips MIPS: lantiq: Remove separate GPHY Firmware loader 2019-02-25 14:17:10 -08:00
misc dt-bindings: misc: aspeed-p2a-ctrl: add support 2019-04-25 19:33:33 +02:00
mmc dt-bindings: mmc: add DT bindings for ls1028a eSDHC host controller 2019-05-06 12:33:03 +02:00
mtd spi: Updates for v5.1 2019-03-04 19:23:56 -08:00
mux
nds32
net Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net 2019-05-07 17:22:09 -07:00
nios2
nvmem dt-bindings: imx-ocotp: Add i.MX8MQ compatible 2019-04-25 22:23:06 +02:00
openrisc/opencores
opp dt-bindings: opp: Introduce opp-level bindings 2019-01-22 15:06:11 -06:00
pci Merge branch 'remotes/lorenzo/pci/endpoint' 2019-03-06 15:30:21 -06:00
perf nds32: Add document for NDS32 PMU. 2018-11-06 18:01:40 +08:00
phy dt-bindings: phy-qcom-qmp: Tweak qcom,msm8998-qmp-ufs-phy 2019-04-22 17:14:39 +05:30
pinctrl Pin control changes for v5.2: 2019-05-08 10:23:54 -07:00
pmem
power power supply and reset changes for the v5.1 series 2019-03-08 09:24:00 -08:00
powerpc
pps
ptp dt-binding: ptp_qoriq: add little-endian support 2019-02-12 12:58:48 -05:00
pwm dt-bindings: pwm: Update bindings for the Meson G12A Family 2019-05-09 17:29:30 +02:00
regmap
regulator dt-bindings: regulator: Add stm32mp1 pwr regulators 2019-04-15 10:58:05 +01:00
remoteproc dt-binding: remoteproc: Remove lpass_aon clock from adsp pil clock list 2019-02-17 23:01:31 -08:00
reserved-memory devicetree,xen: add xen,shared-memory binding 2018-12-10 15:35:51 -06:00
reset Reset controller changes for v5.1 2019-02-15 17:21:32 +01:00
riscv
rng dt-bindings: rng: update bindings for MT7629 SoC 2018-11-16 16:31:20 -06:00
rtc rtc: pcf85063: add Micro Crystal RV8263 support 2019-04-04 10:07:11 +02:00
scsi
security/tpm
serial dt-bindings: serial: add documentation for the SiFive UART driver 2019-04-29 16:30:59 +02:00
serio Revert "Input: olpc_apsp - enable the SP clock" 2019-01-24 10:54:42 -08:00
siox
slimbus
soc This pull request contains Broadcom ARM/ARM64/MIPS based SoCs changes 2019-02-15 18:01:17 +01:00
sound ASoC: fsl_audmix: remove "model" attribute from DT document 2019-05-02 10:46:15 +09:00
spi dt-bindings: spi: spi-mt65xx: add support for MT8516 2019-05-02 10:37:54 +09:00
spmi
sram ARM: New SoC family support 2019-03-06 10:15:42 -08:00
staging/iio/adc dt-bindings: iio: adc: move lpc32xx-adc out of staging 2019-02-09 18:46:03 +00:00
thermal dt-bindings: thermal: add binding document for mt8183 thermal controller 2019-02-05 17:01:47 -08:00
timer dt-bindings: Require child nodes type to be 'object' 2019-04-10 09:03:03 -05:00
ufs SCSI misc on 20190507 2019-05-08 10:12:46 -07:00
usb USB: changes for v5.2 merge window 2019-05-03 18:05:27 +02:00
virtio
w1
watchdog linux-watchdog 5.1-rc1 tag 2019-03-11 11:22:15 -07:00
x86
xillybus
.gitignore kbuild: Add support for DT binding schema checks 2018-12-13 09:41:32 -06:00
ABI.txt
chosen.txt
common-properties.txt
example-schema.yaml dt-bindings: Add a writing DT schemas how-to and annotated example 2018-12-13 09:41:49 -06:00
graph.txt
jailhouse.txt
Makefile Kbuild updates for v5.1 2019-03-10 17:48:21 -07:00
numa.txt
property-units.txt devicetree: property-units: Add femtofarads unit 2019-01-22 18:55:33 +01:00
resource-names.txt
submitting-patches.txt
trivial-devices.yaml dt-bindings: Add isl68137 as a trivial device 2019-04-29 19:42:15 -05:00
unittest.txt
vendor-prefixes.txt drm pull request for 5.2 2019-05-08 21:35:19 -07:00
writing-bindings.txt dt-bindings: Add a guide of do's and don't's for writing bindings 2019-04-10 09:03:02 -05:00
xilinx.txt