2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-28 23:23:55 +08:00
linux-next/Documentation/devicetree/bindings
Linus Torvalds 5ab356626f Pin control bulk changes for the v4.11 kernel cycle:
Core changes:
 
 - Switch the generic pin config argument from 16 to 24 bits,
   only use 8 bits for the configuration type. We might need to
   encode more information about a certain setting than we need
   to encode different generic settings.
 
 - Add a cross-talk API to the pin control GPIO back-end,
   utilizing pinctrl_gpio_set_config() from GPIO drivers that
   want to set up a certain pin configuration in the back-end.
   This also includes the .set_config() refactoring of the
   GPIO chips, so that they pass a generic configuration for
   things like debouncing and single ended (typically open
   drain). This change has also been merged in an immutable
   branch to the GPIO tree.
 
 - Take hogs with a delayed work, so that we finalize probing
   a pin controller before trying to get any hogs.
 
 - For pin controllers putting all group and function definitions
   into the device tree, we now have generic code to deal with
   this and it is used in two drivers so far.
 
 - Simplifications of the pin request conflict check.
 
 - Make dt_free_map() optional.
 
 Updates to drivers:
 
 - pinctrl-single now use the generic helpers to generate dynamic
   group and function tables from the device tree.
 
 - Texas Instruments IOdelay configuration driver add-on to
   pinctrl-single.
 
 - i.MX: use radix trees to store groups and functions, use the new
   generic group and function helpers to manage them.
 
 - Intel: add support for hardware debouncing and 1K pull-down.
   New subdriver for the Gemini Lake SoC.
 
 - Renesas SH-PFC: drive strength and bias support, CAN bus muxing,
   MSIOF, SDHI, HSCIF for r8a7796. Gyro-ADC supporton r8a7791.
 
 - Aspeed: use syscon cross-dependencies to set up related bits in
   the LPC host controller and display controller.
 
 - Aspeed: finalize G4 and G5 support. Fix mux configuration on
   GPIOs. Add banks Y, Z, AA, AB and AC.
 
 - AMD: support additional GPIO.
 
 - STM32: set this controller to strict muxing mode.
   STM32H743 MCU support.
 
 - Allwinner sunxi: deep simplifications on how to support
   subvariants of SoCs without adding to much SoC-specific data
   for each subvariant, especially for sun5i variants. New driver
   for V3s SoCs. New driver for the H5 SoC. Support A31/A31s
   variants with the new variant framework.
 
 - Mvebu: simplifications to use a MMIO and regmap abstraction.
   New subdrivers for the 98DX3236, 98DX5241 SoCs.
 
 - Samsung Exynos: delete Exynos4415 support. Add crosstalk to the
   SoC driver to access regmaps. Add infrastructure for pin-bank
   retention control. Clean out the pin retention control from
   arch/arm/mach-exynos and arch/arm/mach-s5p and put it properly
   in the Samsung pin control driver(s).
 
 - Meson: add HDMI HPD/DDC pins. Add pwm_ao_b pin.
 
 - Qualcomm: use raw spinlock variants: this makes the qualcomm
   driver realtime-safe.
 -----BEGIN PGP SIGNATURE-----
 
 iQIcBAABAgAGBQJYq/7kAAoJEEEQszewGV1zf4oQALVaN5tuaCbzN4QOq87jzXmk
 K195kKG0nkNvN6o5llNhBszHfCSmX1+oSscxuCF/88kH4mFHeDIbvg0KOk5IZYxA
 YlT8NA75C9+flARE3gQUyL320ulahWbvOthntQprzsVU4RJa0zP38peQsfiUd8W1
 ch8GInJYYkczcsAbmziyUOBu5a2o9tX3u8BF8FaBf2uyrCiBC/ZT2VpzvbOR5NeU
 MvjFvc7bq2fNltzDNHdZZUo/5iCbnPlRNig2umDp5fFa8rZcdPmGMAOl4p6nizHY
 S16xDl38xxDQx8sp1IH4n+th3G2cXoONEj9eZ6woWTJhLbLc13CacYPfleYfqEOe
 +JyrUgBgFBINiFWDHHaebWJeD2M/QF4FnSDGnnJBy/bKWe6lJnknGvSZNcIEvdvB
 QeeKyfrvnKiCyjNY4N+ZNdMLA2vj5o86vG2hSqztPiwYWDePbN76yeZ7l79bFfOo
 ZnCa2ay70Np7xwrQWors4Gl2LV2zJG7AkaNA7vvS9NX6OURu/SkNVePkY1XHCLwu
 lNvYd4iwFJxzXm08TsgtLC080eZfvCot9xqbgzvoapnwx7tBuaAakXI4bh0T3x4n
 pEauKO3oNE/K89mN9QK2jfsD9kDWvm4xvc+ilA6DGU0C37XnDQjF+Q5xy16262Gh
 9w0yWMlqzrr7stUXAjS4
 =IMY0
 -----END PGP SIGNATURE-----

Merge tag 'pinctrl-v4.11-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl

Pull pin control updates from Linus Walleij:
 "Pin control bulk changes for the v4.11 kernel cycle.

  Core changes:

   - Switch the generic pin config argument from 16 to 24 bits, only use
     8 bits for the configuration type. We might need to encode more
     information about a certain setting than we need to encode
     different generic settings.

   - Add a cross-talk API to the pin control GPIO back-end, utilizing
     pinctrl_gpio_set_config() from GPIO drivers that want to set up a
     certain pin configuration in the back-end.

     This also includes the .set_config() refactoring of the GPIO chips,
     so that they pass a generic configuration for things like
     debouncing and single ended (typically open drain). This change has
     also been merged in an immutable branch to the GPIO tree.

   - Take hogs with a delayed work, so that we finalize probing a pin
     controller before trying to get any hogs.

   - For pin controllers putting all group and function definitions into
     the device tree, we now have generic code to deal with this and it
     is used in two drivers so far.

   - Simplifications of the pin request conflict check.

   - Make dt_free_map() optional.

  Updates to drivers:

   - pinctrl-single now use the generic helpers to generate dynamic
     group and function tables from the device tree.

   - Texas Instruments IOdelay configuration driver add-on to
     pinctrl-single.

   - i.MX: use radix trees to store groups and functions, use the new
     generic group and function helpers to manage them.

   - Intel: add support for hardware debouncing and 1K pull-down. New
     subdriver for the Gemini Lake SoC.

   - Renesas SH-PFC: drive strength and bias support, CAN bus muxing,
     MSIOF, SDHI, HSCIF for r8a7796. Gyro-ADC supporton r8a7791.

   - Aspeed: use syscon cross-dependencies to set up related bits in the
     LPC host controller and display controller.

   - Aspeed: finalize G4 and G5 support. Fix mux configuration on GPIOs.
     Add banks Y, Z, AA, AB and AC.

   - AMD: support additional GPIO.

   - STM32: set this controller to strict muxing mode. STM32H743 MCU
     support.

   - Allwinner sunxi: deep simplifications on how to support subvariants
     of SoCs without adding to much SoC-specific data for each
     subvariant, especially for sun5i variants. New driver for V3s SoCs.
     New driver for the H5 SoC. Support A31/A31s variants with the new
     variant framework.

   - Mvebu: simplifications to use a MMIO and regmap abstraction. New
     subdrivers for the 98DX3236, 98DX5241 SoCs.

   - Samsung Exynos: delete Exynos4415 support. Add crosstalk to the SoC
     driver to access regmaps. Add infrastructure for pin-bank retention
     control. Clean out the pin retention control from
     arch/arm/mach-exynos and arch/arm/mach-s5p and put it properly in
     the Samsung pin control driver(s).

   - Meson: add HDMI HPD/DDC pins. Add pwm_ao_b pin.

   - Qualcomm: use raw spinlock variants: this makes the qualcomm driver
     realtime-safe"

* tag 'pinctrl-v4.11-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl: (111 commits)
  pinctrl: samsung: Fix return value check in samsung_pinctrl_get_soc_data()
  pinctrl: intel: unlock on error in intel_config_set_pull()
  pinctrl: berlin: make bool drivers explicitly non-modular
  pinctrl: spear: make bool drivers explicitly non-modular
  pinctrl: mvebu: make bool drivers explicitly non-modular
  pinctrl: sunxi: make sun5i explicitly non-modular
  pinctrl: sunxi: Remove stray printk call in sun5i driver's probe function
  pinctrl: samsung: mark PM functions as __maybe_unused
  pinctrl: sunxi: Remove redundant A31s pinctrl driver
  pinctrl: sunxi: Support A31/A31s with pinctrl variants
  pinctrl: Amend bindings for STM32 pinctrl
  pinctrl: Add STM32 pinctrl driver DT bindings
  pinctrl: stm32: Add STM32H743 MCU support
  include: dt-bindings: Add STM32H7 pinctrl DT defines
  gpio: aspeed: Remove dependence on GPIOF_* macros
  pinctrl: stm32: fix bad location of gpiochip_lock_as_irq
  drivers: pinctrl: add driver for Allwinner H5 SoC
  pinctrl: intel: Add Intel Gemini Lake pin controller support
  pinctrl: intel: Add support for 1k additional pull-down
  pinctrl: intel: Add support for hardware debouncer
  ...
2017-02-21 16:34:22 -08:00
..
arc
arm clocksource/drivers/arm_arch_timer: Add dt binding for hisilicon-161010101 erratum 2017-02-08 00:13:57 +01:00
ata ARM: 64-bit DT updates for v4.10 2016-12-15 15:58:28 -08:00
auxdisplay dt-bindings: img-ascii-lcd: Document a binding for simple ASCII LCDs 2016-10-06 17:00:50 +02:00
board
bus bus: Add Tegra GMI support 2016-11-18 18:32:57 -08:00
c6x
clock ARM: 64-bit DT updates for v4.10 2016-12-15 15:58:28 -08:00
cpufreq Documentation: dt: add bindings for ti-cpufreq 2017-02-09 22:53:54 +01:00
cris
crypto crypto: caam - add support for iMX6UL 2016-10-25 11:08:15 +08:00
devfreq PM / devfreq: exynos-bus: Add the detailed correlation for Exynos5433 2017-01-31 14:12:18 +09:00
display Char/Misc driver patches for 4.10-rc1 2016-12-13 12:11:01 -08:00
dma Merge branch 'topic/st_fdma' into for-linus 2016-12-14 09:07:07 +05:30
edac
eeprom
extcon extcon: usb-gpio: Add VBUS detection support 2016-11-20 21:22:39 +09:00
firmware Qualcomm ARM Based Driver Updates for v4.10 - Part 2 2016-11-30 22:49:14 +01:00
fpga DeviceTree updates for 4.10: 2016-12-15 11:49:41 -08:00
fuse
goldfish
gpio ARM: DT updates for v4.10 2016-12-15 15:50:24 -08:00
gpu
h8300
hsi
hwlock
hwmon hwmon: (sht15) Add device tree support 2017-02-16 06:49:05 -08:00
i2c i2c: do not enable fall back to Host Notify by default 2017-01-12 20:06:15 +01:00
iio Documentation: dt-bindings: Document STM32 ADC DT bindings 2016-11-19 11:41:29 +00:00
infiniband
input dt-bindings: input: Specify the interrupt number of TPS65217 power button 2016-12-27 10:06:00 -08:00
interrupt-controller irqchip: DT bindings for Cortina Gemini irqchip 2017-02-08 14:06:21 +00:00
iommu
ipmi ipmi/bt-bmc: change compatible node to 'aspeed, ast2400-ibt-bmc' 2016-11-17 16:31:09 -08:00
leds DT: leds: Improve examples by adding some context 2017-01-05 23:00:54 +01:00
lpddr2
mailbox ARM: SoC driver updates for v4.10 2016-12-15 16:03:25 -08:00
media media updates for v4.10-rc1 2016-12-16 09:39:16 -08:00
memory-controllers memory: davinci: add support for da8xx DDR2/mDDR controller 2016-11-14 17:18:34 +05:30
metag
mfd - New Device Support 2016-12-19 08:16:26 -08:00
mips MIPS: DTS: img: add device tree for Marduk board 2017-01-03 16:34:41 +01:00
misc
mmc dt-bindings: mmc: sunxi: Document A64 eMMC compatible 2017-02-13 13:20:54 +01:00
mtd dt-bindings: mtd: add a common label property to all mtd devices 2017-02-10 10:16:49 -08:00
net devicetree: document new marvell-8xxx and pwrseq-sd8787 options 2017-02-13 13:20:33 +01:00
nios2
nvmem dt-bindings: Document Broadcom OTP controller driver 2016-11-10 15:34:55 +01:00
opp PM / OPP: Reword binding supporting multiple regulators per device 2016-12-06 02:27:58 +01:00
pci Merge branch 'pci/host-tegra' into next 2016-12-12 11:25:12 -06:00
perf
phy Documentation: dt-bindings: rename meson-usb2-phy to meson8b-usb2-phy 2016-11-18 18:19:14 +05:30
pinctrl pinctrl: Amend bindings for STM32 pinctrl 2017-02-06 09:47:17 +01:00
power dt-bindings: power: supply: add AXP20X/AXP22X AC power supply 2017-01-29 23:15:18 +01:00
power_supply dt-bindings: power: supply: Add max14656_charger_detector 2017-01-16 23:02:52 +01:00
powerpc dt: bindings: move guts devicetree doc out of powerpc directory 2016-11-29 09:17:20 +01:00
pps
pwm DeviceTree updates for 4.10: 2016-12-15 11:49:41 -08:00
regmap
regulator regulator: Updates for v4.11 2017-02-20 17:23:57 -08:00
remoteproc dt-binding: remoteproc: Introduce ADSP loader binding 2016-11-15 18:43:12 -08:00
reserved-memory ramoops: Split ftrace buffer space into per-CPU zones 2016-11-15 16:34:26 -08:00
reset ARM: SoC driver updates for v4.10 2016-12-15 16:03:25 -08:00
rng dt-bindings: omap-rng: Document SafeXcel IP-76 device variant 2016-10-21 10:26:20 +08:00
rtc RTC for 4.10 2016-12-18 18:18:03 -08:00
scsi scsi: devicetree: bindings: hisi_sas: add hip07 support 2016-11-08 17:29:46 -05:00
security/tpm tpm_tis: Allow tpm_tis to be bound using DT 2016-11-28 01:31:31 +02:00
serial dt-bindings: Cleanups and additions for v4.10-rc1 2016-11-18 18:35:39 -08:00
serio
soc ARM: DT updates for v4.10 2016-12-15 15:50:24 -08:00
sound Merge remote-tracking branches 'asoc/topic/wm8580', 'asoc/topic/wm8753', 'asoc/topic/wm8978', 'asoc/topic/wm9081' and 'asoc/topic/wm9705' into asoc-next 2016-12-12 15:53:29 +00:00
spi Merge remote-tracking branches 'spi/topic/rockchip', 'spi/topic/rspi', 'spi/topic/s3c64xx', 'spi/topic/sh-msiof' and 'spi/topic/slave' into spi-next 2017-02-19 16:41:05 +00:00
spmi
sram misc: sram: document new compatible 2016-11-07 23:43:28 +01:00
staging
thermal ARM: DT updates for v4.10 2016-12-15 15:50:24 -08:00
timer clocksource/drivers/ostm: Document renesas-ostm timer DT bindings 2017-02-07 20:58:30 +01:00
ufs phy: qcom-ufs-14nm: Add new compatible for msm8996 based phy 2016-11-08 18:05:45 -05:00
usb ARM: DT updates for v4.10 2016-12-15 15:50:24 -08:00
video/bridge dt-bindings: add Silicon Image SiI8620 bridge bindings 2016-10-26 10:30:21 +05:30
virtio
w1
watchdog
x86
xillybus
ABI.txt
chosen.txt
common-properties.txt
graph.txt
marvell.txt
numa.txt
property-units.txt
resource-names.txt
sparc_sun_oracle_rng.txt
submitting-patches.txt docs: fix locations of several documents that got moved 2016-10-24 08:12:35 -02:00
unittest.txt
vendor-prefixes.txt ARM: 64-bit DT updates for v4.10 2016-12-15 15:58:28 -08:00
xilinx.txt