linux/Documentation/devicetree/bindings
Linus Torvalds f4000cd997 arm64 updates for 4.10:
- struct thread_info moved off-stack (also touching
   include/linux/thread_info.h and include/linux/restart_block.h)
 
 - cpus_have_cap() reworked to avoid __builtin_constant_p() for static
   key use (also touching drivers/irqchip/irq-gic-v3.c)
 
 - Uprobes support (currently only for native 64-bit tasks)
 
 - Emulation of kernel Privileged Access Never (PAN) using TTBR0_EL1
   switching to a reserved page table
 
 - CPU capacity information passing via DT or sysfs (used by the
   scheduler)
 
 - Support for systems without FP/SIMD (IOW, kernel avoids touching these
   registers; there is no soft-float ABI, nor kernel emulation for
   AArch64 FP/SIMD)
 
 - Handling of hardware watchpoint with unaligned addresses, varied
   lengths and offsets from base
 
 - Use of the page table contiguous hint for kernel mappings
 
 - Hugetlb fixes for sizes involving the contiguous hint
 
 - Remove unnecessary I-cache invalidation in flush_cache_range()
 
 - CNTHCTL_EL2 access fix for CPUs with VHE support (ARMv8.1)
 
 - Boot-time checks for writable+executable kernel mappings
 
 - Simplify asm/opcodes.h and avoid including the 32-bit ARM counterpart
   and make the arm64 kernel headers self-consistent (Xen headers patch
   merged separately)
 
 - Workaround for broken .inst support in certain binutils versions
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1
 
 iQIcBAABAgAGBQJYUEd0AAoJEGvWsS0AyF7xLpIP/AvSZgtz6/N+UcJ70r1oPwZ/
 wIZl5OJ1hpfIEs+9XPU71TJbfETOusyOYwDUQmp8lXFDICk3snB4PvXFpLHOSytL
 N05eYnV2de+gyKstC3ysg0mZdpIrazjKQbmHPc1KeNHuf6ZPSuIqRFINr3rnpziY
 TeOVmFplgKnbDYcF4ejqcaEFEn5BkkpNNfqhX4mOHJIC4BMmglT/KefzHtK/39AT
 EdZWrsA9UTEA+ccgolYtq55YcZD9kQFmEy2BRhZLbOamH5UrsUOVl9sS6fRvA3Qs
 eSbnHBsdJ7n/ym6w/CK+KXKo3M/02H0JNXqhPlHaAqb+djlp7N74wyiERISR6GL9
 s+7Fh/uNhfMg7vYtWkN3TlXth9HmNXdpaouNe/m8seBvwdKH+KfC0IBhXCl0NziB
 hxwMI+OtV4wxzPgXTSkYlbqVEC49dAq9GnRtR+Bi5tY4a9+jeNwG/uIRcFMaRHJe
 Wq48050mHMlmOjnmr3N+0l7dNhda8/ZO03ZlPfqrccBccX0idqVypkG6Wj75ZK1b
 TTBvQ2A2Hqi7YtSqZNrUnTDx5O4IlywQpXLzIsDJPph8mrZ4h06lRr2fkh4FcKgH
 NQrr9tjTD9XLOJfl3u0VwSbWYucWrgMHYI1r5SA5xl1Xqp6YJ8Kfod3sdA+uxS3P
 SK03zJP1LM+e1HidQhKN
 =8Uk9
 -----END PGP SIGNATURE-----

Merge tag 'arm64-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux

Pull arm64 updates from Catalin Marinas:

 - struct thread_info moved off-stack (also touching
   include/linux/thread_info.h and include/linux/restart_block.h)

 - cpus_have_cap() reworked to avoid __builtin_constant_p() for static
   key use (also touching drivers/irqchip/irq-gic-v3.c)

 - uprobes support (currently only for native 64-bit tasks)

 - Emulation of kernel Privileged Access Never (PAN) using TTBR0_EL1
   switching to a reserved page table

 - CPU capacity information passing via DT or sysfs (used by the
   scheduler)

 - support for systems without FP/SIMD (IOW, kernel avoids touching
   these registers; there is no soft-float ABI, nor kernel emulation for
   AArch64 FP/SIMD)

 - handling of hardware watchpoint with unaligned addresses, varied
   lengths and offsets from base

 - use of the page table contiguous hint for kernel mappings

 - hugetlb fixes for sizes involving the contiguous hint

 - remove unnecessary I-cache invalidation in flush_cache_range()

 - CNTHCTL_EL2 access fix for CPUs with VHE support (ARMv8.1)

 - boot-time checks for writable+executable kernel mappings

 - simplify asm/opcodes.h and avoid including the 32-bit ARM counterpart
   and make the arm64 kernel headers self-consistent (Xen headers patch
   merged separately)

 - Workaround for broken .inst support in certain binutils versions

* tag 'arm64-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux: (60 commits)
  arm64: Disable PAN on uaccess_enable()
  arm64: Work around broken .inst when defective gas is detected
  arm64: Add detection code for broken .inst support in binutils
  arm64: Remove reference to asm/opcodes.h
  arm64: Get rid of asm/opcodes.h
  arm64: smp: Prevent raw_smp_processor_id() recursion
  arm64: head.S: Fix CNTHCTL_EL2 access on VHE system
  arm64: Remove I-cache invalidation from flush_cache_range()
  arm64: Enable HIBERNATION in defconfig
  arm64: Enable CONFIG_ARM64_SW_TTBR0_PAN
  arm64: xen: Enable user access before a privcmd hvc call
  arm64: Handle faults caused by inadvertent user access with PAN enabled
  arm64: Disable TTBR0_EL1 during normal kernel execution
  arm64: Introduce uaccess_{disable,enable} functionality based on TTBR0_EL1
  arm64: Factor out TTBR0_EL1 post-update workaround into a specific asm macro
  arm64: Factor out PAN enabling/disabling into separate uaccess_* macros
  arm64: Update the synchronous external abort fault description
  selftests: arm64: add test for unaligned/inexact watchpoint handling
  arm64: Allow hw watchpoint of length 3,5,6 and 7
  arm64: hw_breakpoint: Handle inexact watchpoint addresses
  ...
2016-12-13 16:39:21 -08:00
..
arc
arm arm64 updates for 4.10: 2016-12-13 16:39:21 -08:00
ata
auxdisplay dt-bindings: img-ascii-lcd: Document a binding for simple ASCII LCDs 2016-10-06 17:00:50 +02:00
board
bus bus: qcom: add EBI2 device tree bindings 2016-09-08 15:26:21 +02:00
c6x
clock Merge tag 'v4.10-rockchip-clk2' of git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip into clk-next 2016-12-06 15:17:26 -08:00
cpufreq dt: cpufreq: brcm: New binding document for brcmstb-avs-cpufreq 2016-11-01 06:07:37 +01:00
cris
crypto
devfreq Documentation: bindings: add dt documentation for rk3399 dmc 2016-09-06 13:25:36 +09:00
display Char/Misc driver patches for 4.10-rc1 2016-12-13 12:11:01 -08:00
dma dmaengine: st_fdma: Add STMicroelectronics FDMA DT binding documentation 2016-10-18 20:12:05 +05:30
edac
eeprom
extcon extcon: usb-gpio: Add VBUS detection support 2016-11-20 21:22:39 +09:00
firmware documentation: Add secure monitor bindings documentation 2016-09-01 15:27:06 -07:00
fpga fpga: add bindings document for fpga region 2016-11-10 17:03:35 +01:00
fuse
goldfish
gpio Merge branch 'ib-sx150x' into devel 2016-10-24 16:30:55 +02:00
gpu
h8300
hsi
hwlock
hwmon devicetree: hwmon: Add documentation for TMP108 driver. 2016-12-09 21:54:26 -08:00
i2c hwmon updates for v4.10 2016-12-13 15:43:56 -08:00
iio Documentation: dt-bindings: Document STM32 ADC DT bindings 2016-11-19 11:41:29 +00:00
infiniband IB/hns: Add node_guid definition to the bindings document 2016-10-03 11:43:10 -04:00
input Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input 2016-10-14 13:19:30 -07:00
interrupt-controller DeviceTree updates for 4.9: 2016-10-05 11:56:38 -07:00
iommu Docs: dt: document ARM SMMU generic binding usage 2016-09-16 09:34:21 +01:00
ipmi ipmi/bt-bmc: change compatible node to 'aspeed, ast2400-ibt-bmc' 2016-11-17 16:31:09 -08:00
leds leds: pca963x: workaround group blink scaling issue 2016-11-22 12:07:04 +01:00
lpddr2
mailbox dt-bindings: mailbox: Add Amlogic Meson MHU Bindings 2016-09-07 13:07:18 +05:30
media media updates for v4.9-rc1 2016-10-11 13:22:22 -07:00
memory-controllers EDAC, fsl_ddr: Add support for little endian 2016-09-01 10:28:02 +02:00
metag
mfd Merge remote-tracking branches 'regulator/topic/gpio', 'regulator/topic/lp873x', 'regulator/topic/max77620', 'regulator/topic/pwm' and 'regulator/topic/tps6507x' into regulator-next 2016-12-12 12:17:27 +00:00
mips MIPS: BMIPS: Add BCM6362 support 2016-10-04 16:13:57 +02:00
misc
mmc mmc: sdhci-cadence: add Cadence SD4HC support 2016-12-08 15:02:52 +01:00
mtd mtd: nand: Add an option to maximize the ECC strength 2016-09-23 09:35:16 +02:00
net net: smmac: allow configuring lower pbl values 2016-12-08 13:07:10 -05: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 PCI: rockchip: Add three new resets as required properties 2016-11-10 11:14:37 -06:00
perf Documentation: Add documentation for APM X-Gene SoC PMU DTS binding 2016-09-15 11:20:52 -07:00
phy Documentation: dt-bindings: rename meson-usb2-phy to meson8b-usb2-phy 2016-11-18 18:19:14 +05:30
pinctrl Bulk pin control changes for the v4.10 kernel cycle: 2016-12-13 07:59:10 -08:00
power PM / Domains: Fix compatible for domain idle state 2016-12-06 22:05:38 +01:00
powerpc dt: bindings: move guts devicetree doc out of powerpc directory 2016-11-29 09:17:20 +01:00
pps
pwm dt-bindings: pwm: sti: Update DT bindings for capture support 2016-09-08 10:55:06 +02:00
regmap
regulator regulator: pwm: Add missing quotes to DT example 2016-11-15 15:22:10 +00: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 This is a fairly quiet release. We don't have any patches to the core 2016-12-13 08:54:27 -08:00
rng
rtc docs: fix locations of several documents that got moved 2016-10-24 08:12:35 -02:00
scsi
security/tpm
serial sh-sci: document R8A7743/5 support 2016-10-27 16:41:56 +02:00
serio
soc remoteproc updates for v4.10 2016-12-13 08:49:12 -08:00
sound ASoC: omap-abe-twl6040: fix typo in bindings documentation 2016-11-07 16:28:53 -07:00
spi Merge remote-tracking branches 'spi/topic/spidev', 'spi/topic/sunxi', 'spi/topic/ti-qspi', 'spi/topic/topcliff-pch' and 'spi/topic/xlp' into spi-next 2016-12-12 15:54:20 +00:00
spmi
sram
staging
thermal dt-bindings: rockchip-thermal: fix the misleading description 2016-11-23 10:07:35 +08:00
timer of: Add J-Core timer bindings 2016-10-20 20:10:17 +02:00
ufs
usb dt-bindings: usb: add DT binding for s3c2410 USB OHCI controller 2016-11-29 17:31:36 +01:00
video/bridge dt-bindings: add Silicon Image SiI8620 bridge bindings 2016-10-26 10:30:21 +05:30
virtio
w1
watchdog watchdog: bindings: Remove obsolete platforms from dt doc. 2016-09-24 08:59:39 +02:00
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 Char/Misc driver patches for 4.10-rc1 2016-12-13 12:11:01 -08:00
xilinx.txt