linux/Documentation/devicetree/bindings/arm
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
..
altera Documentation: dt: socfpga: Add Arria10 SD-MMC EDAC binding 2016-08-08 15:21:09 +02:00
apm Documentation: arm64: add SCU dts binding documentation to linux kernel 2015-09-16 12:04:23 -07:00
bcm DT: bindings: bcm: Add Raspberry Pi Zero 2016-08-24 13:33:15 -07:00
calxeda dt-bindings: move Calxeda bindings to appropriate subsystems 2015-10-22 09:21:24 -05:00
cpu-enable-method ARM: dts: Alpine platform binding documentation 2015-03-16 15:25:17 +01:00
firmware
freescale irqchip: vf610-mscm: Add Vybrid MSCM bindings 2015-03-08 05:08:51 +00:00
hisilicon dt-bindings: hisilicon: Add Hip05 and Hip06 system controller support 2016-08-24 16:19:37 +01:00
keystone ARM: keystone: Create new binding for K2G SoC 2016-02-25 09:23:34 -08:00
marvell ARM: dts: orion5x: Add description for Netgear WNR854T 2016-09-14 16:47:26 +02:00
mediatek dt-bindings: ARM: Mediatek: Document bindings for MT2701 2016-08-19 12:18:40 -07:00
mrvl dt-bindings: consolidate interrupt controller bindings 2015-10-22 09:21:25 -05:00
msm Merge git://www.linux-watchdog.org/linux-watchdog 2015-04-22 11:22:55 -07:00
nxp dt-bindings: create arm/nxp folder and move LPC32xx SoC description to it 2016-02-11 03:05:54 +02:00
omap ARM: dts: Add LogicPD DM37/AM37 Torpedo and SOM-LV 2016-08-29 13:45:59 -07:00
rockchip dt-bindings: Consolidate SRAM bindings from all vendors 2015-12-09 15:29:37 -06:00
samsung dt-bindings: EXYNOS: Add Exynos5433 PMU compatible 2016-09-16 13:21:04 +02:00
tegra dt-bindings: Add power domain info for NVIDIA PMC 2016-04-19 16:55:04 +02:00
uniphier ARM: uniphier: add outer cache support 2015-10-27 09:20:50 +09:00
ux500 dt-bindings: Correct path for ARM GIC documentation 2016-04-19 17:25:16 -05:00
vt8500 dt-bindings: consolidate interrupt controller bindings 2015-10-22 09:21:25 -05:00
adapteva.txt
al,alpine.txt ARM: dts: Alpine platform binding documentation 2015-03-16 15:25:17 +01:00
altera.txt Documentation: DT bindings: add doc for Altera's SoCFPGA platform 2015-04-22 22:37:22 -05:00
amlogic.txt Documentation: devicetree: amlogic: Document P20x and ODROID-C2 boards 2016-03-30 19:52:33 +02:00
arch_timer.txt clocksource/drivers/arm_arch_timer: Don't assume clock runs in suspend 2016-11-21 11:05:36 +01:00
arm-boards Documentation/DT: add blurb for IB2 syscon to Versatile 2016-04-04 10:55:43 +02:00
arm,scpi.txt Documentation: add DT bindings for ARM SCPI power domains 2016-06-21 10:16:00 +01:00
armadeus.txt
armv7m_systick.txt dt-bindings: Document the ARM System timer bindings 2015-06-02 12:10:13 +02:00
atmel-at91.txt power supply and reset changes for the v4.7 series 2016-05-20 14:06:21 -07:00
atmel-pmc.txt
axis.txt ARM: add device-tree SoC bindings for Axis Artpec-6 2016-02-24 13:56:20 -08:00
axxia.txt
calxeda.txt
cavium-thunder.txt
cci.txt Documentation: dt: arm: fix spelling mistakes 2016-04-25 08:38:54 -05:00
ccn.txt
compulab-boards.txt ARM: dts: compulab: add new board description 2016-01-08 11:49:58 +01:00
coresight.txt coresight: document binding acronyms 2016-07-18 17:18:35 -05:00
cpu-capacity.txt Documentation: arm: define DT cpu capacity-dmips-mhz bindings 2016-11-07 18:15:03 +00:00
cpus.txt Documentation: arm: define DT cpu capacity-dmips-mhz bindings 2016-11-07 18:15:03 +00:00
davinci.txt ARM: dts: da850: Add basic DTS for the LCDK 2016-08-09 15:52:35 +05:30
digicolor.txt ARM: devicetree: document supported Conexant Digicolor SoC 2015-01-27 15:02:38 -08:00
fsl.txt Documentation: DT: Add entry for Freescale LS1043a-QDS board 2016-03-30 21:54:36 +08:00
fw-cfg.txt devicetree: update documentation for fw_cfg ARM bindings 2016-02-09 17:37:39 -08:00
global_timer.txt
idle-states.txt Documentation: arm: Fix typo in the idle-states bindings examples 2015-09-24 17:55:32 -05:00
insignal-boards.txt
l2c2x0.txt Fix spelling errors in Documentation/devicetree 2016-07-22 14:54:05 -05:00
mediatek.txt Document: DT: Add bindings for mediatek MT6755 SoC Platform 2016-07-03 07:57:16 +02:00
moxart.txt
nspire.txt
olimex.txt ARM: dts: at91: Add DT support for Olimex SAM9-L9260 board. 2016-06-07 20:05:44 +02:00
oxnas.txt dt-bindings: Add OXNAS bindings 2016-04-26 09:51:12 +02:00
picoxcell.txt
pmu.txt drivers/perf: arm-pmu: Handle per-interrupt affinity mask 2016-07-08 17:39:55 +01:00
primecell.txt
psci.txt ARM: psci: Fix indentation in DT bindings 2016-01-05 09:28:38 -06:00
qcom.txt devicetree: bindings: Document qcom board compatible format 2016-02-23 23:48:29 -06:00
rockchip.txt ARM: 64-bit DT updates for v4.8 2016-10-07 21:32:39 -07:00
rtsm-dcscb.txt
scu.txt ARM: add DT bindings for the ARM11MPCore CPU cluster 2015-12-15 09:45:29 +01:00
secure.txt Documentation: dt: Add bindings for Secure-only devices 2015-12-09 15:30:44 -06:00
shmobile.txt ARM: SoC: late DT updates for v4.9 2016-10-07 21:34:49 -07:00
sirf.txt
sp810.txt clk: versatile: Switch to assigned clock parents 2015-08-24 16:48:59 -07:00
spear-misc.txt Documentation: dt: arm: fix spelling mistakes 2016-04-25 08:38:54 -05:00
spear-timer.txt
spear.txt
sprd.txt Documentation: DT: Add bindings for Spreadtrum SoC Platform 2015-02-02 10:11:28 -08:00
ste-nomadik.txt
ste-u300.txt
sti.txt ARM: STi: Add STiH410 SoC support 2015-03-11 15:34:45 +01:00
sunxi.txt ARM: sunxi: Support the Nextthing GR8 2016-09-08 14:32:23 +02:00
technologic.txt of: documentation: add bindings documentation for TS-4900 2016-08-15 21:28:42 +08:00
tegra.txt dt-bindings: tegra: Add Apalis TK1 device tree binding documentation 2016-07-01 16:36:58 +02:00
topology.txt
twd.txt ARM: 8441/2: twd: Don't set CLOCK_EVT_FEAT_C3STOP unconditionally 2015-10-09 16:22:53 +01:00
versatile-sysreg.txt dt/bindings: Add binding for Versatile system registers 2015-01-29 14:02:15 +01:00
vexpress-scc.txt
vexpress-sysreg.txt
vexpress.txt
vt8500.txt
xen.txt ARM: Xen: Document UEFI support on Xen ARM virtual platforms 2016-07-06 10:34:45 +01:00
xilinx.txt
zte.txt arm64: dts: Add ZTE ZX296718 SoC dts and Makefile 2016-09-16 10:47:05 +08:00