linux-xiaomi-chiron/arch/arm/boot/dts
Thomas Petazzoni d7d5a43c0d ARM: mvebu: fix overlap of Crypto SRAM with PCIe memory window
When the Crypto SRAM mappings were added to the Device Tree files
describing the Armada XP boards in commit c466d997bb ("ARM: mvebu:
define crypto SRAM ranges for all armada-xp boards"), the fact that
those mappings were overlaping with the PCIe memory aperture was
overlooked. Due to this, we currently have for all Armada XP platforms
a situation that looks like this:

Memory mapping on Armada XP boards with internal registers at
0xf1000000:

 - 0x00000000 -> 0xf0000000	3.75G 	RAM
 - 0xf0000000 -> 0xf1000000	16M	NOR flashes (AXP GP / AXP DB)
 - 0xf1000000 -> 0xf1100000	1M	internal registers
 - 0xf8000000 -> 0xffe0000	126M	PCIe memory aperture
 - 0xf8100000 -> 0xf8110000	64KB	Crypto SRAM #0	=> OVERLAPS WITH PCIE !
 - 0xf8110000 -> 0xf8120000	64KB	Crypto SRAM #1	=> OVERLAPS WITH PCIE !
 - 0xffe00000 -> 0xfff00000	1M	PCIe I/O aperture
 - 0xfff0000  -> 0xffffffff	1M	BootROM

The overlap means that when PCIe devices are added, depending on their
memory window needs, they might or might not be mapped into the
physical address space. Indeed, they will not be mapped if the area
allocated in the PCIe memory aperture by the PCI core overlaps with
one of the Crypto SRAM. Typically, a Intel IGB PCIe NIC that needs 8MB
of PCIe memory will see its PCIe memory window allocated from
0xf80000000 for 8MB, which overlaps with the Crypto SRAM windows. Due
to this, the PCIe window is not created, and any attempt to access the
PCIe window makes the kernel explode:

[    3.302213] igb: Copyright (c) 2007-2014 Intel Corporation.
[    3.307841] pci 0000:00:09.0: enabling device (0140 -> 0143)
[    3.313539] mvebu_mbus: cannot add window '4:f8', conflicts with another window
[    3.320870] mvebu-pcie soc:pcie-controller: Could not create MBus window at [mem 0xf8000000-0xf87fffff]: -22
[    3.330811] Unhandled fault: external abort on non-linefetch (0x1008) at 0xf08c0018

This problem does not occur on Armada 370 boards, because we use the
following memory mapping (for boards that have internal registers at
0xf1000000):

 - 0x00000000 -> 0xf0000000	3.75G 	RAM
 - 0xf0000000 -> 0xf1000000	16M	NOR flashes (AXP GP / AXP DB)
 - 0xf1000000 -> 0xf1100000	1M	internal registers
 - 0xf1100000 -> 0xf1110000	64KB	Crypto SRAM #0 => OK !
 - 0xf8000000 -> 0xffe0000	126M	PCIe memory
 - 0xffe00000 -> 0xfff00000	1M	PCIe I/O
 - 0xfff0000  -> 0xffffffff	1M	BootROM

Obviously, the solution is to align the location of the Crypto SRAM
mappings of Armada XP to be similar with the ones on Armada 370, i.e
have them between the "internal registers" area and the beginning of
the PCIe aperture.

However, we have a special case with the OpenBlocks AX3-4 platform,
which has a 128 MB NOR flash. Currently, this NOR flash is mapped from
0xf0000000 to 0xf8000000. This is possible because on OpenBlocks
AX3-4, the internal registers are not at 0xf1000000. And this explains
why the Crypto SRAM mappings were not configured at the same place on
Armada XP.

Hence, the solution is two-fold:

 (1) Move the NOR flash mapping on Armada XP OpenBlocks AX3-4 from
     0xe8000000 to 0xf0000000. This frees the 0xf0000000 ->
     0xf80000000 space.

 (2) Move the Crypto SRAM mappings on Armada XP to be similar to
     Armada 370 (except of course that Armada XP has two Crypto SRAM
     and not one).

After this patch, the memory mapping on Armada XP boards with
registers at 0xf1 is:

 - 0x00000000 -> 0xf0000000	3.75G 	RAM
 - 0xf0000000 -> 0xf1000000	16M	NOR flashes (AXP GP / AXP DB)
 - 0xf1000000 -> 0xf1100000	1M	internal registers
 - 0xf1100000 -> 0xf1110000	64KB	Crypto SRAM #0
 - 0xf1110000 -> 0xf1120000	64KB	Crypto SRAM #1
 - 0xf8000000 -> 0xffe0000	126M	PCIe memory
 - 0xffe00000 -> 0xfff00000	1M	PCIe I/O
 - 0xfff0000  -> 0xffffffff	1M	BootROM

And the memory mapping for the special case of the OpenBlocks AX3-4
(internal registers at 0xd0000000, NOR of 128 MB):

 - 0x00000000 -> 0xc0000000	3G 	RAM
 - 0xd0000000 -> 0xd1000000	1M	internal registers
 - 0xe800000  -> 0xf0000000	128M	NOR flash
 - 0xf1100000 -> 0xf1110000	64KB	Crypto SRAM #0
 - 0xf1110000 -> 0xf1120000	64KB	Crypto SRAM #1
 - 0xf8000000 -> 0xffe0000	126M	PCIe memory
 - 0xffe00000 -> 0xfff00000	1M	PCIe I/O
 - 0xfff0000  -> 0xffffffff	1M	BootROM

Fixes: c466d997bb ("ARM: mvebu: define crypto SRAM ranges for all armada-xp boards")
Reported-by: Phil Sutter <phil@nwl.cc>
Cc: Phil Sutter <phil@nwl.cc>
Cc: <stable@vger.kernel.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
2016-03-11 11:49:55 -08:00
..
include
aks-cdu.dts ARM: at91/dt: aks-cdu: define slow crytal frequency 2014-07-09 19:05:16 +02:00
alphascale-asm9260-devkit.dts ARM: dts: add DT for Alphascale ASM9260 SoC 2015-01-19 16:29:45 -08:00
alphascale-asm9260.dtsi ARM: dts: add DT for Alphascale ASM9260 SoC 2015-01-19 16:29:45 -08:00
alpine-db.dts ARM: dts: Alpine platform devicetree 2015-03-16 15:34:53 +01:00
alpine.dtsi ARM: dts: alpine: add internal pci 2015-04-14 01:16:13 +02:00
am33xx-clocks.dtsi ARM: SoC late changes for v4.1 2015-04-22 09:24:55 -07:00
am33xx.dtsi Merge branch 'enable-devices' into omap-for-v4.5/fixes 2016-01-25 10:46:21 -08:00
am35xx-clocks.dtsi ARM: dts: AM35xx: fix system control module clocks 2015-06-01 10:29:35 -07:00
am43x-epos-evm.dts ARM: dts: am437x: pixcir_tangoc: use correct flags for irq types 2016-01-27 08:56:24 -08:00
am43xx-clocks.dtsi ARM: dts: am4372: fix clock source for arm twd and global timers 2015-12-09 16:46:25 -08:00
am57xx-beagle-x15.dts ARM: DTS: am57xx-beagle-x15: Select SYS_CLK2 for audio clocks 2016-02-10 16:25:22 -08:00
am57xx-cl-som-am57x.dts ARM: dts: am335x/am57xx: replace gpio-key,wakeup with wakeup-source property 2016-02-10 16:23:58 -08:00
am57xx-sbc-am57x.dts ARM: dts: am57xx: sbc-am57x: fix UART3 pinmux 2016-01-27 09:19:31 -08:00
am335x-baltos-ir5221.dts ARM: dts: am335x-baltos-ir5221: Use AM33XX_IOPAD pinmux macro 2015-11-30 08:43:20 -08:00
am335x-base0033.dts ARM: dts: am335x-base0033: Use IOPAD pinmux macro 2015-10-20 09:28:04 -07:00
am335x-bone-common.dtsi Revert "regulator: tps65217: remove tps65217.dtsi file" 2016-02-19 09:05:53 -08:00
am335x-bone.dts ARM: dts: am335x-bone-common: enable aes and sham 2015-03-06 08:56:01 -08:00
am335x-boneblack.dts ARM: dts: am335x-boneblack: Use pinctrl constants and AM33XX_IOPAD macro 2015-11-30 08:48:52 -08:00
am335x-bonegreen.dts ARM: dts: am335x-bonegreen: Use AM33XX_IOPAD pinmux macro 2015-11-30 08:43:20 -08:00
am335x-chiliboard.dts ARM: dts: am335x-chiliboard: Use AM33XX_IOPAD pinmux macro 2015-11-30 08:43:21 -08:00
am335x-chilisom.dtsi Revert "regulator: tps65217: remove tps65217.dtsi file" 2016-02-19 09:05:53 -08:00
am335x-cm-t335.dts ARM: dts: cm-t335: add support for bluetooth 2015-12-17 10:04:22 -08:00
am335x-evm.dts ARM: dts: am335x: replace gpio-key,wakeup with wakeup-source property 2015-12-17 09:51:48 -08:00
am335x-evmsk.dts ARM: dts: am335x: replace gpio-key,wakeup with wakeup-source property 2015-12-17 09:51:48 -08:00
am335x-igep0033.dtsi ARM: dts: am335x-igep0033: Use IOPAD pinmux macro 2015-10-20 09:28:04 -07:00
am335x-lxm.dts ARM: dts: am335x-lxm: Use AM33XX_IOPAD pinmux macro 2015-11-30 08:43:22 -08:00
am335x-nano.dts Revert "regulator: tps65217: remove tps65217.dtsi file" 2016-02-19 09:05:53 -08:00
am335x-pepper.dts Revert "regulator: tps65217: remove tps65217.dtsi file" 2016-02-19 09:05:53 -08:00
am335x-phycore-som.dtsi ARM: dts: am335x-phycore-som: Use AM33XX_IOPAD pinmux macro 2015-11-30 08:43:23 -08:00
am335x-sbc-t335.dts ARM: dts: cm-t335: add support for DVI/LCD 2015-12-17 10:04:22 -08:00
am335x-shc.dts ARM: dts: am335x/am57xx: replace gpio-key,wakeup with wakeup-source property 2016-02-10 16:23:58 -08:00
am335x-sl50.dts Revert "regulator: tps65217: remove tps65217.dtsi file" 2016-02-19 09:05:53 -08:00
am335x-wega-rdk.dts ARM: dts: Add phyBOARD-WEGA-AM335x rdk 2015-07-21 03:58:26 -07:00
am335x-wega.dtsi ARM: dts: am335x-wega: Use AM33XX_IOPAD pinmux macro 2015-11-30 08:43:23 -08:00
am437x-cm-t43.dts ARM: dts: am437x: cm-t43: add touchscreen support 2015-12-03 08:12:59 -08:00
am437x-gp-evm.dts ARM: dts: am437x: pixcir_tangoc: use correct flags for irq types 2016-01-27 08:56:24 -08:00
am437x-idk-evm.dts ARM: dts: am437x-idk-evm: Use AM4372_IOPAD pinmux macro 2015-11-30 08:43:24 -08:00
am437x-sbc-t43.dts ARM: dts: am437x: cm-t43: add lcd support 2015-12-03 08:13:32 -08:00
am437x-sk-evm.dts ARM: dts: am437x-sk-evm: Use AM4372_IOPAD pinmux macro 2015-11-30 08:43:25 -08:00
am3517-craneboard.dts ARM: dts: am3517-craneboard: Use OMAP3_CORE1_IOPAD pinmux macro 2015-11-30 08:43:24 -08:00
am3517-evm.dts
am3517.dtsi ARM: dts: add core2 padconf region for am3517 2015-05-20 10:10:43 -07:00
am3517_mt_ventoux.dts
am4372.dtsi ARM: dts: am4372: fix irq type for arm twd and global timer 2016-01-27 08:47:13 -08:00
animeo_ip.dts ARM: at91/dt: replace gpio-key,wakeup with wakeup-source property 2015-11-16 15:53:04 +01:00
arm-realview-pb11mp.dts ARM: realview: set up cache correctly on the PB11MPCore 2015-12-31 16:49:17 +01:00
arm-realview-pb1176.dts ARM: dts: update syscons to use simple-mfd 2015-05-11 08:55:03 +02:00
armada-38x-solidrun-microsom.dtsi ARM: dts: Add SolidRun Armada 388 Clearfog A1 DT file 2015-12-08 17:58:01 +01:00
armada-38x.dtsi mvebu: dts: enable IP checksum with jumbo frames for Armada 38x on Port0 2015-12-02 23:35:05 -05:00
armada-39x.dtsi ARM: mvebu: use DT properties to fine-tune the L2 configuration 2015-07-09 14:25:28 +02:00
armada-370-db.dts ARM: mvebu: define crypto SRAM ranges for all armada-370 boards 2015-09-29 16:18:41 +02:00
armada-370-dlink-dns327l.dts ARM: mvebu: define crypto SRAM ranges for all armada-370 boards 2015-09-29 16:18:41 +02:00
armada-370-mirabox.dts ARM: mvebu: define crypto SRAM ranges for all armada-370 boards 2015-09-29 16:18:41 +02:00
armada-370-netgear-rn102.dts ARM: dts: armada: replace isil, irq2-can-wakeup-machine with wakeup-source property 2015-12-15 17:55:35 +01:00
armada-370-netgear-rn104.dts ARM: dts: armada: replace isil, irq2-can-wakeup-machine with wakeup-source property 2015-12-15 17:55:35 +01:00
armada-370-rd.dts ARM: mvebu: define crypto SRAM ranges for all armada-370 boards 2015-09-29 16:18:41 +02:00
armada-370-seagate-nas-2bay.dts ARM: mvebu: add DT support for Seagate NAS 2 and 4-Bay 2015-10-12 16:45:35 +02:00
armada-370-seagate-nas-4bay.dts ARM: mvebu: add DT support for Seagate NAS 2 and 4-Bay 2015-10-12 16:45:35 +02:00
armada-370-seagate-nas-xbay.dtsi ARM: mvebu: add DT support for Seagate NAS 2 and 4-Bay 2015-10-12 16:45:35 +02:00
armada-370-seagate-personal-cloud-2bay.dts ARM: mvebu: add DT support for Seagate Personal Cloud 2015-10-12 16:48:00 +02:00
armada-370-seagate-personal-cloud.dts ARM: mvebu: add DT support for Seagate Personal Cloud 2015-10-12 16:48:00 +02:00
armada-370-seagate-personal-cloud.dtsi ARM: mvebu: add DT support for Seagate Personal Cloud 2015-10-12 16:48:00 +02:00
armada-370-synology-ds213j.dts ARM: mvebu: define crypto SRAM ranges for all armada-370 boards 2015-09-29 16:18:41 +02:00
armada-370-xp.dtsi Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net 2015-07-01 14:58:07 -07:00
armada-370.dtsi ARM: mvebu: add crypto related nodes to armada 370 dtsi 2015-09-29 16:17:43 +02:00
armada-375-db.dts ARM: mvebu: define crypto SRAM ranges in armada-375-db.dts 2015-09-29 16:19:32 +02:00
armada-375.dtsi ARM: mvebu: add crypto related nodes to armada 375 dtsi 2015-09-29 16:19:11 +02:00
armada-380.dtsi ARM: mvebu: armada-380: Relicense the device tree under GPLv2+/X11 2015-01-26 19:28:12 -06:00
armada-385-db-ap.dts ARM: DT updates for v4.4 2015-11-10 15:06:26 -08:00
armada-385-linksys-caiman.dts ARM: mvebu: add support for the new Armada 385 based Linksys boards 2015-05-25 16:42:03 +02:00
armada-385-linksys-cobra.dts ARM: mvebu: add support for the new Armada 385 based Linksys boards 2015-05-25 16:42:03 +02:00
armada-385-linksys.dtsi ARM: mvebu: define crypto SRAM ranges for all armada-38x boards 2015-10-09 17:08:00 +02:00
armada-385.dtsi ARM: mvebu: armada-385: Relicense the device tree under GPLv2+/X11 2015-01-26 19:28:12 -06:00
armada-388-clearfog.dts ARM: dts: Add SolidRun Armada 388 Clearfog A1 DT file 2015-12-08 17:58:01 +01:00
armada-388-db.dts ARM: mvebu: define crypto SRAM ranges for all armada-38x boards 2015-10-09 17:08:00 +02:00
armada-388-gp.dts ARM: mvebu: remove duplicated regulator definition in Armada 388 GP 2015-12-07 18:23:46 +01:00
armada-388-rd.dts ARM: mvebu: define crypto SRAM ranges for all armada-38x boards 2015-10-09 17:08:00 +02:00
armada-388.dtsi ARM: mvebu: Add Device Tree description of the Armada 388 SoC 2015-01-09 09:16:05 -06:00
armada-390.dtsi ARM: mvebu: add Device Tree files for Armada 39x SoC and board 2015-03-04 15:42:34 +01:00
armada-398-db.dts ARM: mvebu: add "jedec,spi-nor" flash compatible binding 2015-05-25 16:53:40 +02:00
armada-398.dtsi ARM: mvebu: add Device Tree files for Armada 39x SoC and board 2015-03-04 15:42:34 +01:00
armada-xp-axpwifiap.dts ARM: mvebu: fix overlap of Crypto SRAM with PCIe memory window 2016-03-11 11:49:55 -08:00
armada-xp-db.dts ARM: mvebu: fix overlap of Crypto SRAM with PCIe memory window 2016-03-11 11:49:55 -08:00
armada-xp-gp.dts ARM: mvebu: fix overlap of Crypto SRAM with PCIe memory window 2016-03-11 11:49:55 -08:00
armada-xp-lenovo-ix4-300d.dts ARM: mvebu: fix overlap of Crypto SRAM with PCIe memory window 2016-03-11 11:49:55 -08:00
armada-xp-linksys-mamba.dts ARM: mvebu: fix overlap of Crypto SRAM with PCIe memory window 2016-03-11 11:49:55 -08:00
armada-xp-matrix.dts ARM: mvebu: fix overlap of Crypto SRAM with PCIe memory window 2016-03-11 11:49:55 -08:00
armada-xp-mv78230.dtsi ARM: mvebu: armada-xp-mv78230: Relicense the device tree under GPLv2+/X11 2015-01-26 19:28:13 -06:00
armada-xp-mv78260.dtsi ARM: mvebu: update Ethernet compatible string for Armada XP 2015-06-30 09:37:09 -07:00
armada-xp-mv78460.dtsi ARM: mvebu: update Ethernet compatible string for Armada XP 2015-06-30 09:37:09 -07:00
armada-xp-netgear-rn2120.dts ARM: mvebu: fix overlap of Crypto SRAM with PCIe memory window 2016-03-11 11:49:55 -08:00
armada-xp-openblocks-ax3-4.dts ARM: mvebu: fix overlap of Crypto SRAM with PCIe memory window 2016-03-11 11:49:55 -08:00
armada-xp-synology-ds414.dts ARM: mvebu: fix overlap of Crypto SRAM with PCIe memory window 2016-03-11 11:49:55 -08:00
armada-xp.dtsi ARM: mvebu: add crypto related nodes to armada-xp.dtsi 2015-09-29 15:45:43 +02:00
armv7-m.dtsi ARM: dts: Add ARM System timer as clocksource in armv7m 2015-05-15 22:16:48 +02:00
at91-ariag25.dts ARM: at91/dt: ariag25: define crystals frequencies 2014-07-09 19:05:10 +02:00
at91-ariettag25.dts ARM: at91/dt: Add Acme Arietta G25 2015-06-04 11:48:43 +02:00
at91-cosino.dtsi ARM: at91/dt: cosino define crystals frequencies 2014-07-09 19:05:20 +02:00
at91-cosino_mega2560.dts ARM: at91/dt: at91-cosino_mega2560 remove useless tsadcc node 2014-05-07 18:28:41 +02:00
at91-foxg20.dts ARM: at91/dt: replace gpio-key,wakeup with wakeup-source property 2015-11-16 15:53:04 +01:00
at91-kizbox.dts ARM: at91/dt: remove leftovers clock definition 2015-11-16 15:53:05 +01:00
at91-kizbox2.dts ARM: at91/dt: replace gpio-key,wakeup with wakeup-source property 2015-11-16 15:53:04 +01:00
at91-kizboxmini.dts ARM: at91/dt: replace gpio-key,wakeup with wakeup-source property 2015-11-16 15:53:04 +01:00
at91-qil_a9260.dts ARM: at91/dt: replace gpio-key,wakeup with wakeup-source property 2015-11-16 15:53:04 +01:00
at91-sama5d2_xplained.dts ARM: dts: at91: sama5d2 xplained: add phy address and IRQ for macb0 2016-01-27 11:14:22 +01:00
at91-sama5d3_xplained.dts ARM: at91/dt: replace gpio-key,wakeup with wakeup-source property 2015-11-16 15:53:04 +01:00
at91-sama5d4_ma5d4.dtsi ARM: at91/dt: sama5d4: Add support for DENX MA5D4 SoM and EVK 2015-12-15 11:07:26 +01:00
at91-sama5d4_ma5d4evk.dts ARM: at91/dt: sama5d4: Add support for DENX MA5D4 SoM and EVK 2015-12-15 11:07:26 +01:00
at91-sama5d4_xplained.dts ARM: dts: at91: sama5d4 xplained: fix phy0 IRQ type 2016-01-27 11:14:25 +01:00
at91-sama5d4ek.dts ARM: dts: at91: sama5d4ek: add phy address and IRQ for macb0 2016-01-27 11:14:23 +01:00
at91-vinco.dts ARM: at91/dt: Add Support for the L+G VInCo platform 2015-12-21 15:19:04 +01:00
at91rm9200.dtsi ARM: at91/dt: fix "disabled" property on at91rm9200 2015-10-19 17:57:41 +02:00
at91rm9200_pqfp.dtsi
at91rm9200ek.dts ARM: at91/dt: remove leftovers clock definition 2015-11-16 15:53:05 +01:00
at91sam9g15.dtsi ARM: at91/dt: include lcd dtsi in at91sam9x5 dtsis 2015-08-07 17:33:06 +02:00
at91sam9g15ek.dts ARM: at91/dt: enable lcd support for at91sam9x5 SoCs 2015-08-07 17:33:47 +02:00
at91sam9g20.dtsi ARM: at91/dt: add SRAM nodes 2015-01-15 15:32:30 +01:00
at91sam9g20ek.dts
at91sam9g20ek_2mmc.dts
at91sam9g20ek_common.dtsi ARM: at91/dt: remove leftovers clock definition 2015-11-16 15:53:05 +01:00
at91sam9g25.dtsi ARM: at91: at91sam9x5/dts: add ISI dt support, include isi node, pinctrls 2015-03-04 18:36:07 +01:00
at91sam9g25ek.dts ARM: at91: at91sam9g25ek/dts: enable ISI and ov2640 2015-03-04 18:36:08 +01:00
at91sam9g35.dtsi ARM: at91/dt: include lcd dtsi in at91sam9x5 dtsis 2015-08-07 17:33:06 +02:00
at91sam9g35ek.dts ARM: at91/dt: enable lcd support for at91sam9x5 SoCs 2015-08-07 17:33:47 +02:00
at91sam9g45.dtsi ARM: at91/dt: use syscon for PMC 2015-10-19 17:57:41 +02:00
at91sam9m10g45ek.dts ARM: at91/dt: remove leftovers clock definition 2015-11-16 15:53:05 +01:00
at91sam9n12.dtsi ARM: at91/dt: use syscon for PMC 2015-10-19 17:57:41 +02:00
at91sam9n12ek.dts ARM: dts: at91: at91sam9n12ek: fix panel compatible string 2016-01-27 11:13:11 +01:00
at91sam9rl.dtsi ARM: at91/dt: use syscon for PMC 2015-10-19 17:57:41 +02:00
at91sam9rlek.dts ARM: at91/dt: remove leftovers clock definition 2015-11-16 15:53:05 +01:00
at91sam9x5.dtsi ARM: at91/dt: use syscon for PMC 2015-10-19 17:57:41 +02:00
at91sam9x5_can.dtsi ARM: at91/dt: at91sam9x5: Add CAN device nodes 2014-11-03 11:34:32 +01:00
at91sam9x5_isi.dtsi ARM: at91: at91sam9x5/dts: add ISI dt support, include isi node, pinctrls 2015-03-04 18:36:07 +01:00
at91sam9x5_lcd.dtsi ARM: at91/dt: define hlcdc node in at91sam9x5_lcd.dtsi 2015-08-07 17:32:45 +02:00
at91sam9x5_macb0.dtsi ARM: at91/dt: fix macb compatible strings 2015-03-07 22:31:21 -05:00
at91sam9x5_macb1.dtsi ARM: at91/dt: fix macb compatible strings 2015-03-07 22:31:21 -05:00
at91sam9x5_usart3.dtsi ARM: at91: at91sam9x5 dt: add usart dma definitions to dt 2014-11-03 11:34:23 +01:00
at91sam9x5cm.dtsi ARM: at91/dt: remove leftovers clock definition 2015-11-16 15:53:05 +01:00
at91sam9x5dm.dtsi ARM: at91/dt: at91sam9x5dm: add QT1070 touch button controller 2015-08-07 17:33:54 +02:00
at91sam9x5ek.dtsi ARM: at91/dt: ov2640: add hsync/vsync-active property 2015-09-21 16:20:25 +02:00
at91sam9x25.dtsi ARM: at91/dt: at91sam9x5: Add CAN device nodes 2014-11-03 11:34:32 +01:00
at91sam9x25ek.dts
at91sam9x35.dtsi ARM: at91/dt: include lcd dtsi in at91sam9x5 dtsis 2015-08-07 17:33:06 +02:00
at91sam9x35ek.dts ARM: at91/dt: enable lcd support for at91sam9x5 SoCs 2015-08-07 17:33:47 +02:00
at91sam9xe.dtsi ARM: at91/dt: Add a dtsi for at91sam9xe 2015-01-15 15:33:20 +01:00
at91sam9260.dtsi ARM: at91/dt: use syscon for PMC 2015-10-19 17:57:41 +02:00
at91sam9261.dtsi ARM: at91/dt: use syscon for PMC 2015-10-19 17:57:41 +02:00
at91sam9261ek.dts ARM: at91/dt: remove leftovers clock definition 2015-11-16 15:53:05 +01:00
at91sam9263.dtsi ARM: at91/dt: use syscon for PMC 2015-10-19 17:57:41 +02:00
at91sam9263ek.dts ARM: at91/dt: remove leftovers clock definition 2015-11-16 15:53:05 +01:00
atlas6-evb.dts
atlas6.dtsi ARM: dts: atlas6: add resets property for SPI nodes 2014-11-25 18:46:43 +08:00
atlas7-evb.dts ARM: dts: atlas7: add a GPIO key for rearview button 2015-08-05 22:44:21 +08:00
atlas7.dtsi ARM: dts: atlas7: put pinctl property to get pinmux for NAND 2015-08-05 22:44:21 +08:00
axm55xx.dtsi ARM: dts: axxia: Add reset controller 2014-05-23 18:18:46 +02:00
axm5516-amarillo.dts ARM: dts: Device tree for AXM55xx. 2014-05-23 18:18:45 +02:00
axm5516-cpus.dtsi ARM: dts: Device tree for AXM55xx. 2014-05-23 18:18:45 +02:00
axp22x.dtsi ARM: dts: sunxi: Add dtsi for AXP22x PMIC 2015-10-12 11:27:10 +02:00
axp152.dtsi ARM: dts: axp152: Add a dtsi file for the axp152 pmic 2015-07-09 10:10:05 +02:00
axp209.dtsi ARM: dts: axp209: Add usb_power_supply child node to the ax209 node 2015-09-29 09:52:50 +02:00
bcm-cygnus-clock.dtsi ARM: dts: enable clock support for Broadcom Cygnus 2015-07-07 18:08:18 -07:00
bcm-cygnus.dtsi ARM: dts: Enable MSI support for Broadcom Cygnus 2015-12-07 14:14:40 -08:00
bcm-nsp.dtsi ARM: dts: Add SMP support for Broadcom NSP 2015-12-07 12:26:54 -08:00
bcm9hmidc.dtsi ARM: dts: enable touchscreen support on Cygnus 2015-09-22 17:50:36 -07:00
bcm283x.dtsi ARM: bcm2835: Add the auxiliary clocks to the device tree. 2015-12-31 17:17:01 +01:00
bcm2835-rpi-a-plus.dts ARM: bcm2835: Move the CPU/peripheral include out of common RPi DT. 2015-12-31 17:16:59 +01:00
bcm2835-rpi-b-plus.dts ARM: bcm2835: Move the CPU/peripheral include out of common RPi DT. 2015-12-31 17:16:59 +01:00
bcm2835-rpi-b-rev2.dts ARM: bcm2835: Move the CPU/peripheral include out of common RPi DT. 2015-12-31 17:16:59 +01:00
bcm2835-rpi-b.dts ARM: bcm2835: Move the CPU/peripheral include out of common RPi DT. 2015-12-31 17:16:59 +01:00
bcm2835-rpi.dtsi ARM: bcm2835: Move the CPU/peripheral include out of common RPi DT. 2015-12-31 17:16:59 +01:00
bcm2835.dtsi ARM: bcm2835: Split the DT for peripherals from the DT for the CPU 2015-12-31 17:16:58 +01:00
bcm2836-rpi-2-b.dts ARM: bcm2835: Add devicetree for bcm2836 and Raspberry Pi 2 B 2015-12-31 17:17:00 +01:00
bcm2836.dtsi ARM: bcm2835: Add devicetree for bcm2836 and Raspberry Pi 2 B 2015-12-31 17:17:00 +01:00
bcm4708-asus-rt-ac56u.dts ARM: BCM5301X: add NAND flash chip description 2015-06-06 16:05:50 -07:00
bcm4708-asus-rt-ac68u.dts ARM: BCM5301X: add NAND flash chip description 2015-06-06 16:05:50 -07:00
bcm4708-buffalo-wzr-1750dhp.dts ARM: BCM5301X: Enable UART0 on tested devices 2015-07-07 18:08:57 -07:00
bcm4708-luxul-xwc-1000.dts ARM: BCM5301X: Enable UART0 on tested devices 2015-07-07 18:08:57 -07:00
bcm4708-netgear-r6250.dts ARM: BCM5301X: Netgear R6250 add USB GPIO 2015-09-21 10:36:53 -07:00
bcm4708-netgear-r6300-v2.dts ARM: BCM5301X: add NAND flash chip description 2015-06-06 16:05:50 -07:00
bcm4708-smartrg-sr400ac.dts ARM: BCM5301X: Enable UART0 on tested devices 2015-07-07 18:08:57 -07:00
bcm4708.dtsi ARM: BCM: Add SMP support for Broadcom 4708 2015-12-07 12:30:51 -08:00
bcm4709-asus-rt-ac87u.dts ARM: BCM5301X: add NAND flash chip description for Asus RT-AC87U 2015-09-14 15:48:03 -07:00
bcm4709-buffalo-wxr-1900dhp.dts ARM: BCM5301X: add NAND flash chip description 2015-06-06 16:05:50 -07:00
bcm4709-netgear-r7000.dts ARM: BCM5301X: Add DT for Netgear R7000 2015-09-14 15:48:03 -07:00
bcm4709-netgear-r8000.dts ARM: BCM5301X: Add missing Netgear R8000 LEDs 2015-12-06 19:45:17 -08:00
bcm5301x-nand-cs0-bch8.dtsi ARM: BCM5301X: add NAND flash chip description 2015-06-06 16:05:50 -07:00
bcm5301x.dtsi ARM: dts: enable clock support for BCM5301X 2015-11-20 10:14:31 -08:00
bcm7445-bcm97445svmb.dts ARM: bcm7445: add NAND to DTS 2015-05-13 10:56:22 -07:00
bcm7445.dtsi ARM: dts: brcmstb: add BCM7445 system PM DT nodes 2015-09-14 15:48:05 -07:00
bcm11351.dtsi ARM: BCM: Clean up SMP support for Broadcom Kona 2015-12-07 12:30:17 -08:00
bcm21664-garnet.dts
bcm21664.dtsi ARM: BCM: Clean up SMP support for Broadcom Kona 2015-12-07 12:30:17 -08:00
bcm28155-ap.dts ARM: dts: Enable the PWM for bcm28155 AP board 2014-04-28 11:14:47 -04:00
bcm47081-asus-rt-n18u.dts ARM: BCM5301X: add NAND flash chip description 2015-06-06 16:05:50 -07:00
bcm47081-buffalo-wzr-600dhp2.dts ARM: BCM5301X: Enable UART0 on tested devices 2015-07-07 18:08:57 -07:00
bcm47081-buffalo-wzr-900dhp.dts ARM: BCM5301X: add NAND flash chip description 2015-06-06 16:05:50 -07:00
bcm47081.dtsi ARM: BCM5301X: Add DT for Asus RT-N18U 2014-12-04 20:58:08 +01:00
bcm59056.dtsi ARM: dts: bcm590xx: add support for GPLDO and VBUS regulators 2014-05-23 08:07:01 -04:00
bcm63138.dtsi ARM: dts: BCM63xx: Add ARMPLL device tree nodes 2015-12-06 19:45:17 -08:00
bcm94708.dts ARM: dts: bcm5301x: Add BCM SVK DT files 2015-11-16 10:48:59 -08:00
bcm94709.dts ARM: dts: bcm5301x: Add BCM SVK DT files 2015-11-16 10:48:59 -08:00
bcm911360_entphn.dts ARM: dts: Enable NAND support on bcm911360_entphn 2015-09-22 17:50:36 -07:00
bcm911360k.dts ARM: dts: move aliases back to .dts in Cygnus 2015-09-24 18:30:10 -07:00
bcm953012k.dts ARM: dts: bcm5301x: Add BCM SVK DT files 2015-11-16 10:48:59 -08:00
bcm958300k.dts ARM: dts: move aliases back to .dts in Cygnus 2015-09-24 18:30:10 -07:00
bcm958305k.dts ARM: dts: move aliases back to .dts in Cygnus 2015-09-24 18:30:10 -07:00
bcm958625k.dts ARM: dts: enable pinctrl for Broadcom NSP 2015-12-06 19:45:19 -08:00
bcm963138dvt.dts ARM: bcm63138: add NAND DT support 2015-05-13 10:56:46 -07:00
berlin2-sony-nsz-gs7.dts arm: dts: berlin: use stdout-path 2015-09-20 12:50:40 +02:00
berlin2.dtsi arm: dts: berlin2: add watchdog nodes 2015-11-28 12:28:04 +01:00
berlin2cd-google-chromecast.dts arm: dts: berlin: use stdout-path 2015-09-20 12:50:40 +02:00
berlin2cd.dtsi arm: dts: berlin2cd: add watchdog nodes 2015-11-28 12:28:00 +01:00
berlin2q-marvell-dmp.dts arm: dts: berlin2q-marvell-dmp: add sdhci1 fully functionality 2015-12-06 10:26:55 +01:00
berlin2q.dtsi ARM: DT updates for v4.5 2016-01-20 18:16:29 -08:00
compulab-sb-som.dtsi ARM: dts: am57xx: compulab-sb-som: add HDMI connector 2015-12-03 08:20:14 -08:00
cros-adc-thermistors.dtsi ARM: dts: Add thermistor dts fragment used by exynos based Peach boards 2014-09-14 00:46:56 +09:00
cros-ec-keyboard.dtsi ARM: dts: cros-ec-keyboard: Add support for some Japanese keys 2015-07-13 23:44:44 +02:00
cros-ec-sbs.dtsi ARM: dts: Add sbs-battery dts fragment used by chromebooks 2015-07-15 15:55:19 +02:00
cx92755.dtsi ARM: digicolor: add pinctrl module device node 2015-10-15 22:37:08 +02:00
cx92755_equinox.dts ARM: digicolor: dts: add uart pin configuration 2015-10-15 22:37:15 +02:00
da850-enbw-cmc.dts ARM: DTS: da850: Enable eDMA1 2015-12-24 16:32:14 +05:30
da850-evm.dts ARM: DTS: da850: Enable eDMA1 2015-12-24 16:32:14 +05:30
da850.dtsi ARM: DTS: da850: Enable DMA for SPI1 2015-12-24 16:32:14 +05:30
dm814x-clocks.dtsi ARM: dts: Fix some mux and divider clocks to get dm814x-evm booting 2015-12-09 16:53:46 -08:00
dm814x.dtsi ARM: dts: Add usb support for dm814x and dra62x 2015-12-22 16:01:11 -08:00
dm816x-clocks.dtsi ARM: dts: Add basic clocks for dm816x 2015-01-19 11:47:35 -08:00
dm816x.dtsi ARM: DT updates for v4.5 2016-01-20 18:16:29 -08:00
dm8148-evm.dts ARM: dts: Add usb support for dm814x-evm 2015-12-22 16:01:16 -08:00
dm8148-t410.dts ARM: dts: Add usb support for hp t410 2015-12-22 16:01:37 -08:00
dm8168-evm.dts ARM: DT updates for v4.1 2015-04-22 09:09:46 -07:00
dove-cm-a510.dtsi ARM: dts: dove: Add proper support for Compulab CM-A510/SBC-A510 2015-05-11 14:56:54 +02:00
dove-cubox-es.dts ARM: dts: mvebu: split SolidRun CuBox into variants 2014-06-20 23:46:25 +00:00
dove-cubox.dts ARM: dts: enable GPU for SolidRun's Cubox 2015-12-15 17:46:34 +01:00
dove-d2plug.dts
dove-d3plug.dts
dove-dove-db.dts
dove-sbc-a510.dts ARM: dts: dove: Add proper support for Compulab CM-A510/SBC-A510 2015-05-11 14:56:54 +02:00
dove.dtsi ARM: dts: dove: add DT GPU support 2015-12-15 17:46:16 +01:00
dra7-evm.dts ARM: dts: DRA7-EVM: Add regulator-allow-bypass property for ldo9 2015-12-18 08:43:30 -08:00
dra7.dtsi ARM: dts: dra7: do not gate cpsw clock due to errata i877 2016-03-07 01:41:22 -07:00
dra7xx-clocks.dtsi arm/dts: dra7xx: add 'ti,set-rate-parent' for dss_dss_clk 2015-06-04 09:01:23 +03:00
dra62x-clocks.dtsi ARM: dts: Add basic support for dra62x j5-eco SoC 2015-12-22 16:00:20 -08:00
dra62x-j5eco-evm.dts ARM: dts: Add usb support for j5-eco evm 2015-12-22 16:01:41 -08:00
dra62x.dtsi ARM: dts: Add basic support for dra62x j5-eco SoC 2015-12-22 16:00:20 -08:00
dra72-evm.dts ARM: dts: DRA72-EVM: Add regulator-allow-bypass property for ldo1 and ldo2 2015-12-18 08:43:04 -08:00
dra72x.dtsi ARM: dts: DRA72x: Add IPC sub-mailbox nodes for IPU1, IPU2 & DSP1 2015-10-12 15:00:37 -07:00
dra74x.dtsi ARM: dts: DRA74x: Add IOMMU nodes for DSP2 2015-10-12 15:53:47 -07:00
ea3250.dts arm: dts: lpc32xx: move USB controller subdevices into own device node 2015-11-18 18:01:27 +02:00
ecx-2000.dts
ecx-common.dtsi
efm32gg-dk3750.dts ARM: efm32: switch to properly namespaced location property 2015-09-10 10:02:31 +02:00
efm32gg.dtsi ARM: efm32: switch to vendor,device compatible strings 2015-09-10 10:02:38 +02:00
elpida_ecb240abacn.dtsi
emev2-kzm9d.dts ARM: dts: fix gpio-keys wakeup-source property 2015-10-22 09:53:57 -07:00
emev2.dtsi ARM: shmobile: emev2 dtsi: Use "arm,pl390" for GIC 2015-12-14 17:26:17 +09:00
ethernut5.dts ARM: at91/dt: ethernut5: use at91sam9xe.dtsi 2015-01-15 15:33:21 +01:00
evk-pro3.dts ARM: at91/dt: evk-pro3: define slow crytal frequency 2014-07-09 19:05:17 +02:00
exynos4-cpu-thermal.dtsi ARM: dts: define default thermal-zones for exynos4 2015-02-27 05:22:58 +09:00
exynos4.dtsi Samsung DeviceTree updates and improvements for 4.5 2015-12-31 17:31:56 +01:00
exynos4x12-pinctrl.dtsi ARM: dts: Add labels to exynos4 nodes 2015-06-03 09:56:21 +09:00
exynos4x12.dtsi ARM: dts: Unify G2D device node with other devices on exynos4 2015-12-29 09:07:44 +09:00
exynos5.dtsi ARM: dts: Add syscon-{reboot, poweroff} nodes for exynos5 2015-11-20 15:57:36 +09:00
exynos3250-monk.dts ARM: dts: Add vbus regulator to USB2 phy nodes on exynos3250, exynos4210 and exynos4412 boards 2015-10-24 04:31:23 +09:00
exynos3250-pinctrl.dtsi ARM: dts: Add sleep mode pin configuration for exynos3250-rinato 2014-11-07 08:10:13 +09:00
exynos3250-rinato.dts ARM: dts: Add vbus regulator to USB2 phy nodes on exynos3250, exynos4210 and exynos4412 boards 2015-10-24 04:31:23 +09:00
exynos3250.dtsi ARM: dts: Add syscon-{reboot, poweroff} nodes for exynos3250 2015-11-20 15:55:17 +09:00
exynos4210-origen.dts ARM: dts: Unify G2D device node with other devices on exynos4 2015-12-29 09:07:44 +09:00
exynos4210-pinctrl.dtsi
exynos4210-smdkv310.dts ARM: dts: Unify G2D device node with other devices on exynos4 2015-12-29 09:07:44 +09:00
exynos4210-trats.dts ARM: dts: Add vbus regulator to USB2 phy nodes on exynos3250, exynos4210 and exynos4412 boards 2015-10-24 04:31:23 +09:00
exynos4210-universal_c210.dts ARM: dts: exynos4210-universal_c210: Disable DMA for UARTs 2015-12-29 09:07:43 +09:00
exynos4210.dtsi ARM: dts: Unify G2D device node with other devices on exynos4 2015-12-29 09:07:44 +09:00
exynos4212.dtsi ARM: dts: add CPU OPP and regulator supply property for exynos4x12 2015-08-14 02:06:15 +09:00
exynos4412-odroid-common.dtsi ARM: dts: Unify G2D device node with other devices on exynos4 2015-12-29 09:07:44 +09:00
exynos4412-odroidu3.dts ARM: dts: Remove unneeded GPIO include in exynos4412-odroidu3 2015-12-29 09:07:43 +09:00
exynos4412-odroidx.dts ARM: dts: Use GPIO constants for flags cells in exynos4412 boards 2015-10-08 07:39:58 +09:00
exynos4412-odroidx2.dts ARM: dts: Switch Odroid X2/U2 to simple-audio-card 2015-02-09 14:18:20 +08:00
exynos4412-origen.dts ARM: dts: Unify G2D device node with other devices on exynos4 2015-12-29 09:07:44 +09:00
exynos4412-smdk4412.dts ARM: dts: Unify G2D device node with other devices on exynos4 2015-12-29 09:07:44 +09:00
exynos4412-tiny4412.dts ARM: dts: Use GPIO constants for flags cells in exynos4412 boards 2015-10-08 07:39:58 +09:00
exynos4412-tmu-sensor-conf.dtsi ARM: dts: add TMU default definitions for exynos4412 2015-02-27 05:22:56 +09:00
exynos4412-trats2.dts ARM: dts: Enable PRNG module on exynos4412-trats2 2015-12-29 09:07:41 +09:00
exynos4412.dtsi ARM: dts: exynos4412: Rename OPP nodes as opp@<opp-hz> 2015-11-23 23:39:49 +01:00
exynos4415-pinctrl.dtsi ARM: dts: Add dts files for exynos4415 SoC 2014-11-07 08:27:24 +09:00
exynos4415.dtsi ARM: dts: add sysmmu nodes for exynos4415 2015-06-04 08:09:41 +09:00
exynos5250-arndale.dts ARM: dts: Move display-timings node from fimd to dp in exynos5250-arndale, smdk5250 and smdk5420 2015-10-06 10:47:08 +09:00
exynos5250-pinctrl.dtsi ARM: dts: Extend exynos5250-pinctrl nodes using labels instead of paths 2015-07-21 12:59:17 +09:00
exynos5250-smdk5250.dts Merge branch 'next/arm64' into next/dt 2015-11-09 16:35:19 -08:00
exynos5250-snow-common.dtsi ARM: dts: Mark eMMC as non-removable in exynos5250-snow-common 2015-12-29 09:07:10 +09:00
exynos5250-snow-rev5.dts ARM: dts: Add Exynos5250 Snow Rev5+ support on exynos5250-snow-rev5 2015-09-30 15:54:14 +09:00
exynos5250-snow.dts ARM: dts: Add Exynos5250 Snow Rev5+ support on exynos5250-snow-rev5 2015-09-30 15:54:14 +09:00
exynos5250-spring.dts ARM: dts: add CPU OPP and regulator supply property for exynos5250 2015-08-14 02:06:02 +09:00
exynos5250.dtsi ARM: dts: Add rotator node on exynos5250 2015-12-29 09:07:42 +09:00
exynos5260-pinctrl.dtsi ARM: dts: add dts files for exynos5260 SoC 2014-05-31 02:09:04 +09:00
exynos5260-xyref5260.dts ARM: Show proper respect for Heinrich Hertz by using the correct unit for frequency 2015-05-14 16:22:05 +01:00
exynos5260.dtsi ARM: SoC device-tree changes for 3.17 2014-08-08 11:16:58 -07:00
exynos5410-smdk5410.dts ARM: dts: Clean up indentation for exynos5410-smdk5410 2015-07-21 12:55:00 +09:00
exynos5410.dtsi ARM: dts: Add syscon-{reboot, poweroff} nodes for exynos5410 2015-11-20 15:58:44 +09:00
exynos5420-arndale-octa.dts ARM: dts: Use GPIO constants for flags cells in exynos5420/5422/5800 boards 2015-10-08 07:39:58 +09:00
exynos5420-peach-pit.dts ARM: dts: Remove broken-cd from eMMC node in exynos5420-peach-pi 2015-12-29 09:07:10 +09:00
exynos5420-pinctrl.dtsi ARM: dts: Extend exynos5420-pinctrl nodes using labels instead of paths 2015-07-21 13:01:23 +09:00
exynos5420-smdk5420.dts ARM: dts: Use GPIO constants for flags cells in exynos5420/5422/5800 boards 2015-10-08 07:39:58 +09:00
exynos5420-trip-points.dtsi ARM: dts: Fix typo in trip point temperature for exynos5420/5440 2015-05-09 03:11:21 +09:00
exynos5420.dtsi ARM: dts: Add rotator node on exynos5420 2015-12-29 09:07:42 +09:00
exynos5422-cpu-thermal.dtsi ARM: dts: Define default thermal-zones for exynos5422 2015-07-21 12:56:59 +09:00
exynos5422-cpus.dtsi ARM: dts: add exynos5422-cpus.dtsi to correct cpu order 2015-08-14 02:08:24 +09:00
exynos5422-odroidxu3-audio.dtsi ARM: dts: Split audio configuration to separate exynos5422-odroidxu3-audio 2015-09-17 07:49:24 +09:00
exynos5422-odroidxu3-common.dtsi ARM: dts: Remove fimd node from exynos5422-odroidxu3-common 2015-12-29 09:07:11 +09:00
exynos5422-odroidxu3-lite.dts ARM: dts: Use peripheral mode for dwc3_1 on exynos5422-odroidxu3 2015-12-29 09:07:43 +09:00
exynos5422-odroidxu3.dts ARM: dts: Use peripheral mode for dwc3_1 on exynos5422-odroidxu3 2015-12-29 09:07:43 +09:00
exynos5422-odroidxu4.dts ARM: dts: Add support Odroid XU4 board for exynos5422-odroidxu4 2015-09-17 07:49:30 +09:00
exynos5440-sd5v1.dts ARM: dts: Use labels for overriding nodes in exynos5440 boards 2015-06-03 09:56:52 +09:00
exynos5440-ssdk5440.dts ARM: dts: Use GPIO constants for flags cells in exynos5440 boards 2015-10-08 07:39:58 +09:00
exynos5440-tmu-sensor-conf.dtsi ARM: dts: Trip points and sensor configuration data for exynos5440 2015-02-27 05:22:58 +09:00
exynos5440-trip-points.dtsi ARM: dts: Fix typo in trip point temperature for exynos5420/5440 2015-05-09 03:11:21 +09:00
exynos5440.dtsi ARM: dts: Add labels to exynos5 nodes 2015-06-03 09:56:47 +09:00
exynos5800-peach-pi.dts ARM: DT updates for v4.5 2016-01-20 18:16:29 -08:00
exynos5800.dtsi ARM: dts: add mfc node for exynos5800 2014-05-31 02:09:17 +09:00
ge863-pro3.dtsi ARM: at91/dt: ge863-pro3: define main crystal frequency 2014-07-09 19:05:16 +02:00
hi3620-hi4511.dts ARM: hisilicon: DT: Drop console= and earlyprintk bootargs parameter 2015-10-09 17:05:57 +01:00
hi3620.dtsi ARM: SoC platform changes for 3.17 2014-08-08 11:14:29 -07:00
highbank.dts
hip01-ca9x2.dts ARM: dts: Add hip01-ca9x2 dts file 2015-01-21 14:35:06 -08:00
hip01.dtsi ARM: dts: Add hip01-ca9x2 dts file 2015-01-21 14:35:06 -08:00
hip04-d01.dts ARM: hisi: revert changes from hisi/hip04-dt branch 2015-06-24 17:30:39 -07:00
hip04.dtsi ARM: hisi: revert changes from hisi/hip04-dt branch 2015-06-24 17:30:39 -07:00
hisi-x5hd2-dkb.dts ARM: hisilicon: DT: Drop console= and earlyprintk bootargs parameter 2015-10-09 17:05:57 +01:00
hisi-x5hd2.dtsi ARM: dts: hix5hd2: add reboot node 2014-11-07 19:29:53 +08:00
imx1-ads.dts ARM: i.MX: dts: Add support for the Freescale i.MX1 ADS board 2014-09-16 10:25:55 +08:00
imx1-apf9328.dts ARM: dts: Add support for the i.MX1 Armadeus APF9328 board 2014-09-16 10:25:59 +08:00
imx1-pinfunc.h ARM: dts: i.MX1: Add i.MX1 template 2014-09-16 10:25:51 +08:00
imx1.dtsi ARM: dts: i.MX1: Add i.MX1 template 2014-09-16 10:25:51 +08:00
imx6dl-apf6dev.dts ARM: dts: Armadeus Systems APF6 family support (i.MX6) 2015-06-03 15:04:00 +08:00
imx6dl-aristainetos2_4.dts ARM: dts: imx6: add DT for aristainetos2 board 2015-06-03 15:04:34 +08:00
imx6dl-aristainetos2_7.dts ARM: dts: imx6: add DT for aristainetos2 board 2015-06-03 15:04:34 +08:00
imx6dl-aristainetos_4.dts ARM: dts: imx6dl-aristainetos: enable backlight PWM explicitly 2015-03-30 16:43:33 +08:00
imx6dl-aristainetos_7.dts ARM: dts: imx6dl-aristainetos: enable backlight PWM explicitly 2015-03-30 16:43:33 +08:00
imx6dl-cubox-i.dts ARM: dts: cubox-i/hummingboard: Fix the license text 2015-06-03 15:04:33 +08:00
imx6dl-dfi-fs700-m60.dts
imx6dl-gw51xx.dts ARM: dts: imx6: ventana: update model to reflect Dual/Solo CPU types 2014-07-18 16:49:32 +08:00
imx6dl-gw52xx.dts ARM: dts: imx6: ventana: update model to reflect Dual/Solo CPU types 2014-07-18 16:49:32 +08:00
imx6dl-gw53xx.dts ARM: dts: imx6: ventana: update model to reflect Dual/Solo CPU types 2014-07-18 16:49:32 +08:00
imx6dl-gw54xx.dts ARM: dts: imx6: ventana: update model to reflect Dual/Solo CPU types 2014-07-18 16:49:32 +08:00
imx6dl-gw551x.dts ARM: dts: Gateworks GW5510 support (i.MX6) 2015-06-03 15:03:59 +08:00
imx6dl-gw552x.dts ARM: dts: Gateworks GW5520 support (i.MX6) 2014-09-16 10:25:56 +08:00
imx6dl-hummingboard.dts ARM: dts: cubox-i/hummingboard: Fix the license text 2015-06-03 15:04:33 +08:00
imx6dl-nit6xlite.dts ARM: dts: imx: add Boundary Devices Nitrogen6_Lite board 2015-10-19 22:45:24 +08:00
imx6dl-nitrogen6x.dts ARM: dts: imx6dl-nitrogen6x: change manufacturer to Boundary Devices 2015-10-19 22:45:23 +08:00
imx6dl-phytec-pbab01.dts ARM: dts: Add Phytec pbab01 with i.MX6 DualLite/Solo 2014-05-16 23:01:53 +08:00
imx6dl-phytec-pfla02.dtsi ARM: dts: Add Phytec pfla02 with i.MX6 DualLite/Solo 2014-05-16 23:01:52 +08:00
imx6dl-pinfunc.h
imx6dl-rex-basic.dts ARM: dts: imx: add "jedec,spi-nor" flash compatible binding 2015-10-19 22:45:12 +08:00
imx6dl-riotboard.dts dts: imx6: fix sd card gpio polarity specified in device tree 2015-07-24 10:18:35 +02:00
imx6dl-sabreauto.dts
imx6dl-sabrelite.dts ARM: dts: imx6qdl-sabrelite: relicense under GPLv2/X11 2015-10-19 22:45:22 +08:00
imx6dl-sabresd.dts
imx6dl-tx6dl-comtft.dts ARM: dts: imx6: add support for Ka-Ro TX6 modules 2014-07-18 16:49:35 +08:00
imx6dl-tx6u-801x.dts ARM: dts: imx6: add support for Ka-Ro TX6 modules 2014-07-18 16:49:35 +08:00
imx6dl-tx6u-811x.dts ARM: dts: imx6: add support for Ka-Ro TX6 modules 2014-07-18 16:49:35 +08:00
imx6dl-udoo.dts ARM: dts: imx6dl-udoo: Add board support based off imx6q-udoo 2015-01-06 19:07:11 +08:00
imx6dl-wandboard-revb1.dts ARM: dts: Restructure imx6qdl-wandboard.dtsi for new rev C1 board. 2014-07-18 16:49:45 +08:00
imx6dl-wandboard.dts ARM: dts: Restructure imx6qdl-wandboard.dtsi for new rev C1 board. 2014-07-18 16:49:45 +08:00
imx6dl.dtsi ARM: dts: imx6: add Vivante GPU nodes 2015-12-22 20:43:41 +08:00
imx6q-apf6dev.dts ARM: dts: Armadeus Systems APF6 family support (i.MX6) 2015-06-03 15:04:00 +08:00
imx6q-arm2.dts dts: imx6: fix sd card gpio polarity specified in device tree 2015-07-24 10:18:35 +02:00
imx6q-cm-fx6.dts
imx6q-cubox-i.dts ARM: dts: cubox-i/hummingboard: Fix the license text 2015-06-03 15:04:33 +08:00
imx6q-dfi-fs700-m60.dts
imx6q-dmo-edmqmx6.dts ARM: dts: imx: add "jedec,spi-nor" flash compatible binding 2015-10-19 22:45:12 +08:00
imx6q-gk802.dts dts: imx6: fix sd card gpio polarity specified in device tree 2015-07-24 10:18:35 +02:00
imx6q-gw51xx.dts ARM: dts: imx6: ventana: update model to reflect Dual/Solo CPU types 2014-07-18 16:49:32 +08:00
imx6q-gw52xx.dts ARM: dts: imx6: ventana: update model to reflect Dual/Solo CPU types 2014-07-18 16:49:32 +08:00
imx6q-gw53xx.dts ARM: dts: imx6: ventana: update model to reflect Dual/Solo CPU types 2014-07-18 16:49:32 +08:00
imx6q-gw54xx.dts ARM: dts: imx6: ventana: update model to reflect Dual/Solo CPU types 2014-07-18 16:49:32 +08:00
imx6q-gw551x.dts ARM: dts: Gateworks GW5510 support (i.MX6) 2015-06-03 15:03:59 +08:00
imx6q-gw552x.dts ARM: dts: Gateworks GW5520 support (i.MX6) 2014-09-16 10:25:56 +08:00
imx6q-gw5400-a.dts ARM: dts: imx6: Fix Ethernet PHY mode on Ventana boards 2015-12-15 16:53:15 +08:00
imx6q-hummingboard.dts ARM: dts: cubox-i/hummingboard: Fix the license text 2015-06-03 15:04:33 +08:00
imx6q-nitrogen6_max.dts ARM: dts: imx: add Boundary Devices Nitrogen6_Max board 2015-10-19 22:45:23 +08:00
imx6q-nitrogen6x.dts ARM: dts: imx6q-nitrogen6x: change manufacturer to Boundary Devices 2015-10-19 22:45:22 +08:00
imx6q-novena.dts ARM: dts: imx6q: add Novena board 2015-12-22 20:43:42 +08:00
imx6q-phytec-pbab01.dts ARM: dts: Add stdout-path property to i.MX boards 2014-05-16 23:02:07 +08:00
imx6q-phytec-pfla02.dtsi ARM: dts: Add Phytec pfla02 with i.MX6 DualLite/Solo 2014-05-16 23:01:52 +08:00
imx6q-pinfunc.h
imx6q-rex-pro.dts ARM: dts: imx: add "jedec,spi-nor" flash compatible binding 2015-10-19 22:45:12 +08:00
imx6q-sabreauto.dts
imx6q-sabrelite.dts ARM: dts: imx6qdl-sabrelite: relicense under GPLv2/X11 2015-10-19 22:45:22 +08:00
imx6q-sabresd.dts
imx6q-sbc6x.dts
imx6q-tbs2910.dts dts: imx6: fix sd card gpio polarity specified in device tree 2015-07-24 10:18:35 +02:00
imx6q-tx6q-1010-comtft.dts ARM: dts: imx6: add support for Ka-Ro TX6 modules 2014-07-18 16:49:35 +08:00
imx6q-tx6q-1010.dts ARM: dts: imx6: add support for Ka-Ro TX6 modules 2014-07-18 16:49:35 +08:00
imx6q-tx6q-1020-comtft.dts ARM: dts: imx6: add support for Ka-Ro TX6 modules 2014-07-18 16:49:35 +08:00
imx6q-tx6q-1020.dts ARM: dts: imx6: add support for Ka-Ro TX6 modules 2014-07-18 16:49:35 +08:00
imx6q-tx6q-1110.dts ARM: dts: imx6: add support for Ka-Ro TX6 modules 2014-07-18 16:49:35 +08:00
imx6q-udoo.dts ARM: dts: imx6dl-udoo: Add board support based off imx6q-udoo 2015-01-06 19:07:11 +08:00
imx6q-wandboard-revb1.dts ARM: dts: Restructure imx6qdl-wandboard.dtsi for new rev C1 board. 2014-07-18 16:49:45 +08:00
imx6q-wandboard.dts ARM: dts: Restructure imx6qdl-wandboard.dtsi for new rev C1 board. 2014-07-18 16:49:45 +08:00
imx6q.dtsi ARM: dts: imx6q: clean up unused ipu2grp 2016-01-07 06:13:32 +01:00
imx6qdl-apf6.dtsi ARM: dts: Armadeus Systems APF6 family support (i.MX6) 2015-06-03 15:04:00 +08:00
imx6qdl-apf6dev.dtsi ARM: dts: Armadeus Systems APF6 family support (i.MX6) 2015-06-03 15:04:00 +08:00
imx6qdl-aristainetos.dtsi ARM: dts: imx: add "jedec,spi-nor" flash compatible binding 2015-10-19 22:45:12 +08:00
imx6qdl-aristainetos2.dtsi ARM: dts: imx: add "jedec,spi-nor" flash compatible binding 2015-10-19 22:45:12 +08:00
imx6qdl-cubox-i.dtsi dts: imx6: fix sd card gpio polarity specified in device tree 2015-07-24 10:18:35 +02:00
imx6qdl-dfi-fs700-m60.dtsi ARM: dts: imx: add "jedec,spi-nor" flash compatible binding 2015-10-19 22:45:12 +08:00
imx6qdl-gw51xx.dtsi ARM: dts: imx: ventana: add PWM nodes for Ventana boards 2015-12-22 20:42:25 +08:00
imx6qdl-gw52xx.dtsi ARM: dts: imx: ventana: Add SPI support for GW52xx 2015-12-22 20:42:25 +08:00
imx6qdl-gw53xx.dtsi ARM: dts: imx: ventana: add PWM nodes for Ventana boards 2015-12-22 20:42:25 +08:00
imx6qdl-gw54xx.dtsi ARM: dts: imx: ventana: add PWM nodes for Ventana boards 2015-12-22 20:42:25 +08:00
imx6qdl-gw551x.dtsi ARM: dts: imx: ventana: add PWM nodes for Ventana boards 2015-12-22 20:42:25 +08:00
imx6qdl-gw552x.dtsi ARM: dts: imx: ventana: add PWM nodes for Ventana boards 2015-12-22 20:42:25 +08:00
imx6qdl-hummingboard.dtsi dts: imx6: fix sd card gpio polarity specified in device tree 2015-07-24 10:18:35 +02:00
imx6qdl-microsom-ar8035.dtsi ARM: dts: cubox-i/hummingboard: Fix the license text 2015-06-03 15:04:33 +08:00
imx6qdl-microsom.dtsi ARM: dts: cubox-i/hummingboard: Fix the license text 2015-06-03 15:04:33 +08:00
imx6qdl-nit6xlite.dtsi ARM: dts: imx: add Boundary Devices Nitrogen6_Lite board 2015-10-19 22:45:24 +08:00
imx6qdl-nitrogen6_max.dtsi ARM: dts: imx: add Boundary Devices Nitrogen6_Max board 2015-10-19 22:45:23 +08:00
imx6qdl-nitrogen6x.dtsi ARM: dts: imx6qdl-nitrogen6x: relicense under GPLv2/X11 2015-10-19 22:45:21 +08:00
imx6qdl-phytec-pbab01.dtsi ARM: dts: imx6: phyFLEX: Add CAN support 2014-11-23 15:08:15 +08:00
imx6qdl-phytec-pfla02.dtsi ARM: dts: imx6: phyFLEX: fix typo in "pinctrl-names" 2015-10-19 22:45:42 +08:00
imx6qdl-rex.dtsi ARM: dts: fix usb pin control for imx-rex dts 2015-09-24 05:13:40 -07:00
imx6qdl-sabreauto.dtsi ARM: dts: imx: Fix the assigned-clock mismatch issue on imx6q/dl 2015-12-15 16:48:56 +08:00
imx6qdl-sabrelite.dtsi ARM: dts: imx6qdl-sabrelite: relicense under GPLv2/X11 2015-10-19 22:45:22 +08:00
imx6qdl-sabresd.dtsi ARM: dts: imx: add "jedec,spi-nor" flash compatible binding 2015-10-19 22:45:12 +08:00
imx6qdl-tx6.dtsi Linux 4.3-rc3 2015-09-29 16:28:52 -07:00
imx6qdl-udoo.dtsi ARM: dts: imx6dl-udoo: Add board support based off imx6q-udoo 2015-01-06 19:07:11 +08:00
imx6qdl-wandboard-revb1.dtsi ARM: dts: Restructure imx6qdl-wandboard.dtsi for new rev C1 board. 2014-07-18 16:49:45 +08:00
imx6qdl-wandboard-revc1.dtsi ARM: dts: Restructure imx6qdl-wandboard.dtsi for new rev C1 board. 2014-07-18 16:49:45 +08:00
imx6qdl-wandboard.dtsi dts: imx6: fix sd card gpio polarity specified in device tree 2015-07-24 10:18:35 +02:00
imx6qdl.dtsi ARM: dts: imx6: remove bogus interrupt-parent from CAAM node 2016-01-28 16:48:15 +08:00
imx6sl-evk.dts ARM: dts: imx: add "jedec,spi-nor" flash compatible binding 2015-10-19 22:45:12 +08:00
imx6sl-pinfunc.h
imx6sl-warp.dts ARM: dts: imx6sl-warp: Add changes for rev1.12 2015-08-11 23:15:11 +08:00
imx6sl.dtsi ARM: dts: imx6: Change the clock name for spba clock 2015-12-22 20:43:36 +08:00
imx6sx-pinfunc.h ARM: dts: imx6sx: fix the pad setting for uart CTS_B 2014-08-19 20:06:59 +08:00
imx6sx-sabreauto.dts dts: imx6: fix sd card gpio polarity specified in device tree 2015-07-24 10:18:35 +02:00
imx6sx-sdb-reva.dts ARM: dts: imx: add "jedec,spi-nor" flash compatible binding 2015-10-19 22:45:12 +08:00
imx6sx-sdb.dts ARM: dts: imx: add "jedec,spi-nor" flash compatible binding 2015-10-19 22:45:12 +08:00
imx6sx-sdb.dtsi ARM: imx6sx-sdb: Fix typo in regulator enable GPIO property 2015-10-19 22:45:43 +08:00
imx6sx.dtsi ARM: dts: imx6: Change the clock name for spba clock 2015-12-22 20:43:36 +08:00
imx6ul-14x14-evk.dts ARM: dts: imx6ul-14x14-evk.dts: add tsc support 2015-10-19 22:45:14 +08:00
imx6ul-pinfunc.h ARM: dts: imx6ul: fix low case define in imx6ul-pinfunc.h 2015-08-11 23:15:20 +08:00
imx6ul.dtsi ARM: dts: imx6ul: Add ADC support 2015-12-22 20:42:22 +08:00
imx7d-cl-som-imx7.dts ARM: dts: imx7d: cl-som-imx7: add basic module support 2015-12-22 20:43:43 +08:00
imx7d-pinfunc.h ARM: dts: imx7d-pinfunc: add gpio1 pad iomux settings 2015-10-19 22:45:17 +08:00
imx7d-sbc-imx7.dts ARM: dts: imx7d: sbc-imx7: add basic board support 2015-12-22 20:43:43 +08:00
imx7d-sdb.dts ARM: dts: imx7d-sdb: add ADC support 2015-12-22 20:43:39 +08:00
imx7d.dtsi ARM: dts: imx7d.dtsi: add ADC support 2015-12-22 20:43:38 +08:00
imx23-evk.dts ARM: dts: imx23-evk: Fix display duplicate name warning 2014-09-16 10:26:01 +08:00
imx23-olinuxino.dts The i.MX device tree changes for 4.2: 2015-06-10 17:01:25 -07:00
imx23-pinfunc.h
imx23-stmp378x_devb.dts
imx23.dtsi ARM: mxs: enable ocotp for i.MX23 and i.MX28 2015-10-19 22:45:12 +08:00
imx25-eukrea-cpuimx25.dtsi
imx25-eukrea-mbimxsd25-baseboard-cmo-qvga.dts ARM: dts: mbimxsd25: cmo-qvga: Fix lcd regulator 2014-07-18 16:49:37 +08:00
imx25-eukrea-mbimxsd25-baseboard-dvi-svga.dts ARM: dts: imx25: mbimxsd25: Add displays support. 2014-07-18 16:49:34 +08:00
imx25-eukrea-mbimxsd25-baseboard-dvi-vga.dts ARM: dts: imx25: mbimxsd25: Add displays support. 2014-07-18 16:49:34 +08:00
imx25-eukrea-mbimxsd25-baseboard.dts ARM: dts: imx: remove ssi fsl,mode for audio cards 2014-07-18 16:49:37 +08:00
imx25-karo-tx25.dts ARM: dts: Karo TX25: use hardware ecc 2014-05-16 23:02:11 +08:00
imx25-pdk.dts dts: imx25: fix sd card gpio polarity specified in device tree 2015-07-24 10:18:36 +02:00
imx25-pinfunc.h ARM: dts: imx25-pinfunc: add some more pin configurations 2015-12-22 20:42:22 +08:00
imx25.dtsi ARM: dts: imx25: add alias for pwm nodes 2015-12-22 20:42:24 +08:00
imx27-apf27.dts
imx27-apf27dev.dts apf27dev: add max5821 to the dts 2015-01-05 20:43:48 +08:00
imx27-eukrea-cpuimx27.dtsi ARM: dts: Add support for the cpuimx27 board from Eukrea and its baseboard 2014-07-18 16:49:31 +08:00
imx27-eukrea-mbimxsd27-baseboard.dts ARM: dts: imx: remove ssi fsl,mode for audio cards 2014-07-18 16:49:37 +08:00
imx27-pdk.dts ARM: i.MX27 clk: dts: Use clock defines in DTS files 2014-07-18 16:49:44 +08:00
imx27-phytec-phycard-s-rdk.dts ARM: dts: Add stdout-path property to i.MX boards 2014-05-16 23:02:07 +08:00
imx27-phytec-phycard-s-som.dtsi
imx27-phytec-phycore-rdk.dts ARM: i.MX27 clk: dts: Use clock defines in DTS files 2014-07-18 16:49:44 +08:00
imx27-phytec-phycore-som.dtsi ARM: i.MX27 clk: dts: Use clock defines in DTS files 2014-07-18 16:49:44 +08:00
imx27-pinfunc.h pinctrl: i.MX27: Remove nonexistent pad definitions 2014-07-11 14:08:26 +02:00
imx27.dtsi ARM: dts: imx27.dtsi: change the clock information for usb 2015-11-18 14:07:54 +08:00
imx28-apf28.dts ARM: dts: imx28-apf28: fix mac0 gpio polarity 2015-03-30 16:38:52 +08:00
imx28-apf28dev.dts ARM: dts: imx28-apf28dev: add wakeup function to user button 2015-03-30 16:43:49 +08:00
imx28-apx4devkit.dts ARM: dts: imx28-apx4devkit: Fix display duplicate name warning 2014-09-16 10:26:02 +08:00
imx28-cfa10036.dts ARM: mxs: fix in tree users of ssd1306 2015-06-03 15:03:57 +08:00
imx28-cfa10037.dts
imx28-cfa10049.dts ARM: dts: imx28-cfa100: Fix display duplicate name warning 2014-09-16 10:26:03 +08:00
imx28-cfa10055.dts ARM: dts: imx28-cfa100: Fix display duplicate name warning 2014-09-16 10:26:03 +08:00
imx28-cfa10056.dts ARM: dts: imx28-cfa100: Fix display duplicate name warning 2014-09-16 10:26:03 +08:00
imx28-cfa10057.dts ARM: mxs: dt: cfa10057: fix backlight PWM 2015-12-22 20:43:38 +08:00
imx28-cfa10058.dts ARM: dts: imx28-cfa100: Fix display duplicate name warning 2014-09-16 10:26:03 +08:00
imx28-duckbill.dts ARM: dts: imx28-duckbill: use symbolic names from gpio.h 2014-05-16 23:01:48 +08:00
imx28-eukrea-mbmx28lc.dtsi
imx28-eukrea-mbmx283lc.dts
imx28-eukrea-mbmx287lc.dts
imx28-evk.dts ARM: dts: imx: add "jedec,spi-nor" flash compatible binding 2015-10-19 22:45:12 +08:00
imx28-m28.dtsi ARM: dts: mxs: Split M28EVK into SoM and EVK parts 2014-07-18 16:49:41 +08:00
imx28-m28cu3.dts ARM: dts: imx28-m28cu: Fix display duplicate name warning 2014-09-16 10:26:03 +08:00
imx28-m28evk.dts ARM: dts: imx: add "jedec,spi-nor" flash compatible binding 2015-10-19 22:45:12 +08:00
imx28-pinfunc.h
imx28-sps1.dts
imx28-tx28.dts ARM: dts: set up trigger type for edt-ft5x06 interrupts 2015-09-27 17:34:01 -07:00
imx28.dtsi ARM: dts: imx28: add alternate auart4 pinmux 2015-12-22 20:43:40 +08:00
imx31-bug.dts
imx31.dtsi ARM: dts: i.MX31: fix cpu compatible value 2015-10-19 22:45:18 +08:00
imx35-eukrea-cpuimx35.dtsi ARM: dts: cpuimx35 Add touchscreen support. 2014-05-16 23:01:50 +08:00
imx35-eukrea-mbimxsd35-baseboard.dts ARM: dts: imx: remove ssi fsl,mode for audio cards 2014-07-18 16:49:37 +08:00
imx35-pdk.dts ARM: dts: imx35-pdk: Fix memory region description 2014-05-16 23:02:13 +08:00
imx35-pinfunc.h
imx35.dtsi ARM: dts: i.MX35: fix cpu compatible value 2015-10-19 22:45:19 +08:00
imx50-evk.dts ARM: dts: imx: add "jedec,spi-nor" flash compatible binding 2015-10-19 22:45:12 +08:00
imx50-pinfunc.h
imx50.dtsi ARM: dts: imx: Add dr_mode host setting to all host-only usb instances 2015-03-30 16:42:23 +08:00
imx51-apf51.dts
imx51-apf51dev.dts dts: imx51: fix sd card gpio polarity specified in device tree 2015-07-24 10:18:34 +02:00
imx51-babbage.dts ARM: dts: imx51-babbage: Fix ULPI PHY reset modelling 2015-01-06 20:25:58 +08:00
imx51-digi-connectcore-jsk.dts ARM i.MX51: Add Digi ConnectCore devicetree 2014-05-16 23:01:51 +08:00
imx51-digi-connectcore-som.dtsi ARM: dts: i.MX51: Allow to define partitions onto NFC 2014-05-16 23:01:56 +08:00
imx51-eukrea-cpuimx51.dtsi ARM: dts: cpuimx51 Add touchscreen support. 2014-05-16 23:01:50 +08:00
imx51-eukrea-mbimxsd51-baseboard.dts ARM: dts: imx: remove ssi fsl,mode for audio cards 2014-07-18 16:49:37 +08:00
imx51-pinfunc.h
imx51-ts4800.dts ARM: dts: TS-4800: add touchscreen support 2015-12-22 20:43:42 +08:00
imx51.dtsi ARM: dts: imx: Add dr_mode host setting to all host-only usb instances 2015-03-30 16:42:23 +08:00
imx53-ard.dts dts: imx53: fix sd card gpio polarity specified in device tree 2015-07-24 10:18:35 +02:00
imx53-m53.dtsi ARM: dts: mx5: Split M53EVK into SoM and EVK parts 2014-07-18 16:49:46 +08:00
imx53-m53evk.dts dts: imx53: fix sd card gpio polarity specified in device tree 2015-07-24 10:18:35 +02:00
imx53-mba53.dts ARM: dts: imx: remove ssi fsl,mode for audio cards 2014-07-18 16:49:37 +08:00
imx53-pinfunc.h
imx53-qsb-common.dtsi ARM: DT updates for v4.3 2015-09-01 13:09:20 -07:00
imx53-qsb.dts
imx53-qsrb.dts ARM: imx53: qsrb: fix PMIC interrupt level 2015-09-17 08:54:13 +08:00
imx53-smd.dts ARM: dts: imx: add "jedec,spi-nor" flash compatible binding 2015-10-19 22:45:12 +08:00
imx53-tqma53.dtsi dts: imx53: fix sd card gpio polarity specified in device tree 2015-07-24 10:18:35 +02:00
imx53-tx53-x03x.dts ARM: dts: set up trigger type for edt-ft5x06 interrupts 2015-09-27 17:34:01 -07:00
imx53-tx53-x13x.dts
imx53-tx53.dtsi dts: imx53: fix sd card gpio polarity specified in device tree 2015-07-24 10:18:35 +02:00
imx53-voipac-bsb.dts dts: imx53: fix sd card gpio polarity specified in device tree 2015-07-24 10:18:35 +02:00
imx53-voipac-dmm-668.dtsi
imx53.dtsi ARM: imx53: include IRQ dt-bindings header 2015-09-17 08:54:13 +08:00
integrator.dtsi ARM: dts: update syscons to use simple-mfd 2015-05-11 08:55:03 +02:00
integratorap.dts ARM: integrator: get rid of <mach/memory.h> 2014-06-27 10:15:22 +02:00
integratorcp.dts
k2e-clocks.dtsi ARM: dts: keystone: fix dt bindings to use post div register for mainpll 2015-07-31 22:30:11 +02:00
k2e-evm.dts ARM: dts: keystone: Update SoC specific compatible flags 2015-10-06 09:51:09 -07:00
k2e-netcp.dtsi ARM: dts: keystone: enable accumulator channels 2015-10-13 13:42:43 -07:00
k2e.dtsi ARM: dts: keystone: Update SoC specific compatible flags 2015-10-06 09:51:09 -07:00
k2hk-clocks.dtsi ARM: dts: keystone: fix dt bindings to use post div register for mainpll 2015-07-31 22:30:11 +02:00
k2hk-evm.dts ARM: dts: keystone: Update SoC specific compatible flags 2015-10-06 09:51:09 -07:00
k2hk-netcp.dtsi ARM: dts: keystone: enable accumulator channels 2015-10-13 13:42:43 -07:00
k2hk.dtsi ARM: dts: keystone: Update SoC specific compatible flags 2015-10-06 09:51:09 -07:00
k2l-clocks.dtsi ARM: dts: keystone: fix dt bindings to use post div register for mainpll 2015-07-31 22:30:11 +02:00
k2l-evm.dts ARM: dts: keystone: Update SoC specific compatible flags 2015-10-06 09:51:09 -07:00
k2l-netcp.dtsi ARM: dts: keystone: k2l: fix kernel crash when clk_ignore_unused is not in bootargs 2015-11-23 10:36:27 -08:00
k2l.dtsi ARM: dts: keystone: Update SoC specific compatible flags 2015-10-06 09:51:09 -07:00
keystone-clocks.dtsi ARM: dts: keystone: fix netcp's clocks definitions 2014-07-08 12:23:42 -04:00
keystone.dtsi ARM: dts: keystone: Update SoC specific compatible flags 2015-10-06 09:51:09 -07:00
kirkwood-98dx4122.dtsi ARM: dts: kirkwood: resynch 98dx4122 dtsi 2014-05-16 17:56:51 +00:00
kirkwood-6192.dtsi ARM: dts: kirkwood: enable phy driver for SATA controller on 88f6192 2014-12-21 06:41:54 -06:00
kirkwood-6281.dtsi ARM: dts: kirkwood: consolidate common pinctrl settings 2014-05-05 00:52:28 +00:00
kirkwood-6282.dtsi ARM: dts: kirkwood: set default pinctrl for I2C1 on 6282 2014-05-05 00:53:24 +00:00
kirkwood-b3.dts ARM: kirkwood: add "jedec,spi-nor" flash compatible binding 2015-05-25 16:53:25 +02:00
kirkwood-blackarmor-nas220.dts Kirkwood: add support for Seagate BlackArmor NAS220 2015-01-05 12:03:38 -06:00
kirkwood-cloudbox.dts ARM: kirkwood: add "jedec,spi-nor" flash compatible binding 2015-05-25 16:53:25 +02:00
kirkwood-d2net.dts ARM: Kirkwood: add modes-map property to ns2-leds nodes 2015-08-28 14:06:16 +02:00
kirkwood-db-88f6281.dts
kirkwood-db-88f6282.dts
kirkwood-db.dtsi ARM: dts: kirkwood: set default pinctrl for NAND 2014-05-05 00:53:06 +00:00
kirkwood-dir665.dts ARM: kirkwood: add "jedec,spi-nor" flash compatible binding 2015-05-25 16:53:25 +02:00
kirkwood-dns320.dts ARM: dts: kirkwood: set default pinctrl for UART0/1 2014-05-05 00:52:45 +00:00
kirkwood-dns325.dts ARM: dts: kirkwood: add stdout-path property to all boards 2014-05-05 00:48:35 +00:00
kirkwood-dnskw.dtsi ARM: dts: kirkwood: set default pinctrl for NAND 2014-05-05 00:53:06 +00:00
kirkwood-dockstar.dts ARM: dts: kirkwood: rename pin-controller nodes 2014-05-05 00:51:33 +00:00
kirkwood-dreamplug.dts ARM: kirkwood: add "jedec,spi-nor" flash compatible binding 2015-05-25 16:53:25 +02:00
kirkwood-ds109.dts ARM: dts: kirkwood: add stdout-path property to all boards 2014-05-05 00:48:35 +00:00
kirkwood-ds110jv10.dts ARM: dts: kirkwood: add stdout-path property to all boards 2014-05-05 00:48:35 +00:00
kirkwood-ds111.dts ARM: dts: kirkwood: add stdout-path property to all boards 2014-05-05 00:48:35 +00:00
kirkwood-ds112.dts ARM: dts: kirkwood: use unique machine name for ds112 2016-02-09 11:17:25 +01:00
kirkwood-ds209.dts ARM: dts: kirkwood: add stdout-path property to all boards 2014-05-05 00:48:35 +00:00
kirkwood-ds210.dts ARM: dts: kirkwood: add stdout-path property to all boards 2014-05-05 00:48:35 +00:00
kirkwood-ds212.dts ARM: dts: kirkwood: add stdout-path property to all boards 2014-05-05 00:48:35 +00:00
kirkwood-ds212j.dts ARM: dts: kirkwood: add stdout-path property to all boards 2014-05-05 00:48:35 +00:00
kirkwood-ds409.dts ARM: dts: kirkwood: add stdout-path property to all boards 2014-05-05 00:48:35 +00:00
kirkwood-ds409slim.dts ARM: dts: kirkwood: add stdout-path property to all boards 2014-05-05 00:48:35 +00:00
kirkwood-ds411.dts ARM: dts: kirkwood: add stdout-path property to all boards 2014-05-05 00:48:35 +00:00
kirkwood-ds411j.dts ARM: dts: kirkwood: add stdout-path property to all boards 2014-05-05 00:48:35 +00:00
kirkwood-ds411slim.dts ARM: dts: kirkwood: add stdout-path property to all boards 2014-05-05 00:48:35 +00:00
kirkwood-goflexnet.dts ARM: dts: kirkwood: rename pin-controller nodes 2014-05-05 00:51:33 +00:00
kirkwood-guruplug-server-plus.dts ARM: dts: kirkwood: fix phy-connection-type for Guruplug 2014-06-23 21:48:16 +00:00
kirkwood-ib62x0.dts ARM: dts: kirkwood: set default pinctrl for NAND 2014-05-05 00:53:06 +00:00
kirkwood-iconnect.dts ARM: dts: kirkwood: rename pin-controller nodes 2014-05-05 00:51:33 +00:00
kirkwood-iomega_ix2_200.dts ARM: dts: add gpio_poweroff support for Iomega ix2-200 2014-12-21 06:38:54 -06:00
kirkwood-is2.dts ARM: Kirkwood: add modes-map property to ns2-leds nodes 2015-08-28 14:06:16 +02:00
kirkwood-km_common.dtsi ARM: dts: kirkwood: add kirkwood-km_common DTSI files 2014-05-16 17:57:19 +00:00
kirkwood-km_fixedeth.dts ARM: dts: kirkwood: add kirkwood-km_fixedeth DTS file 2014-05-16 17:57:27 +00:00
kirkwood-km_kirkwood.dts ARM: dts: kirkwood: add kirkwood-km_common DTSI files 2014-05-16 17:57:19 +00:00
kirkwood-laplug.dts mvebu DT changes for v3.16 2014-05-19 21:55:03 -07:00
kirkwood-lschlv2.dts
kirkwood-lswvl.dts ARM: dts: kirkwood: gpio-leds fixes for linkstation ls-wvl/vl 2016-01-25 15:05:11 +01:00
kirkwood-lswxl.dts ARM: dts: kirkwood: gpio-leds fixes for linkstation ls-wxl/wsxl 2016-01-25 14:49:26 +01:00
kirkwood-lsxhl.dts
kirkwood-lsxl.dtsi ARM: kirkwood: add "jedec,spi-nor" flash compatible binding 2015-05-25 16:53:25 +02:00
kirkwood-mplcec4.dts ARM: dts: kirkwood: set default pinctrl for NAND 2014-05-05 00:53:06 +00:00
kirkwood-mv88f6281gtw-ge.dts ARM: kirkwood: add "jedec,spi-nor" flash compatible binding 2015-05-25 16:53:25 +02:00
kirkwood-nas2big.dts ARM: Kirkwood: add DT description for nas2big 2015-03-11 18:16:03 +01:00
kirkwood-net2big.dts ARM: Kirkwood: enable GPIO fan alarm support for 2Big Network v2 2015-03-04 14:31:34 +01:00
kirkwood-net5big.dts ARM: Kirkwood: add LED DT entries for netxbig boards 2015-11-03 08:59:27 +01:00
kirkwood-netgear_readynas_duo_v2.dts ARM: dts: kirkwood: set default pinctrl for UART0/1 2014-05-05 00:52:45 +00:00
kirkwood-netgear_readynas_nv+_v2.dts ARM: dts: kirkwood: set default pinctrl for UART0/1 2014-05-05 00:52:45 +00:00
kirkwood-netxbig.dtsi ARM: Kirkwood: add LED DT entries for netxbig boards 2015-11-03 08:59:27 +01:00
kirkwood-ns2-common.dtsi ARM: kirkwood: add "jedec,spi-nor" flash compatible binding 2015-05-25 16:53:25 +02:00
kirkwood-ns2.dts ARM: Kirkwood: add modes-map property to ns2-leds nodes 2015-08-28 14:06:16 +02:00
kirkwood-ns2lite.dts
kirkwood-ns2max.dts ARM: Kirkwood: add modes-map property to ns2-leds nodes 2015-08-28 14:06:16 +02:00
kirkwood-ns2mini.dts ARM: Kirkwood: add modes-map property to ns2-leds nodes 2015-08-28 14:06:16 +02:00
kirkwood-nsa3x0-common.dtsi ARM: SoC devicetree updates for 3.16 2014-06-02 16:34:00 -07:00
kirkwood-nsa310.dts mvebu DT changes for v3.16 2014-05-19 21:55:03 -07:00
kirkwood-nsa310a.dts mvebu DT changes for v3.16 2014-05-19 21:55:03 -07:00
kirkwood-nsa320.dts ARM: dts: kirkwood: rename pin-controller nodes 2014-05-05 00:51:33 +00:00
kirkwood-nsa325.dts ARM: dts: kirkwood: Add DTS for Zyxel NSA325 2015-12-15 17:12:55 +01:00
kirkwood-openblocks_a6.dts mvebu DT changes for v3.16 2014-05-19 21:55:03 -07:00
kirkwood-openblocks_a7.dts mvebu DT changes for v3.16 2014-05-19 21:55:03 -07:00
kirkwood-openrd-base.dts ARM: Kirkwood: DT versions of OpenRD boards 2014-05-16 05:20:38 +00:00
kirkwood-openrd-client.dts ARM: Kirkwood: DT versions of OpenRD boards 2014-05-16 05:20:38 +00:00
kirkwood-openrd-ultimate.dts ARM: Kirkwood: DT versions of OpenRD boards 2014-05-16 05:20:38 +00:00
kirkwood-openrd.dtsi ARM: Kirkwood: DT versions of OpenRD boards 2014-05-16 05:20:38 +00:00
kirkwood-pogo_e02.dts ARM: Kirkwood: Added support for pogoplug e02 (pink/gray) 2015-01-21 18:35:26 -06:00
kirkwood-pogoplug-series-4.dts ARM: mvebu: kirkwood: Add compatible property to "partitions" node 2016-01-25 13:16:04 +01:00
kirkwood-rd88f6192.dts ARM: kirkwood: add "jedec,spi-nor" flash compatible binding 2015-05-25 16:53:25 +02:00
kirkwood-rd88f6281-a.dts ARM: Kirkwood: Fix DT based DSA. 2014-09-13 21:03:48 +00:00
kirkwood-rd88f6281-z0.dts ARM: Kirkwood: Fix DT based DSA. 2014-09-13 21:03:48 +00:00
kirkwood-rd88f6281.dtsi ARM: Kirkwood: Fix DT based DSA. 2014-09-13 21:03:48 +00:00
kirkwood-rs212.dts ARM: dts: kirkwood: add stdout-path property to all boards 2014-05-05 00:48:35 +00:00
kirkwood-rs409.dts ARM: dts: kirkwood: add stdout-path property to all boards 2014-05-05 00:48:35 +00:00
kirkwood-rs411.dts ARM: dts: kirkwood: add stdout-path property to all boards 2014-05-05 00:48:35 +00:00
kirkwood-sheevaplug-common.dtsi ARM: dts: kirkwood: set default pinctrl for NAND 2014-05-05 00:53:06 +00:00
kirkwood-sheevaplug-esata.dts
kirkwood-sheevaplug.dts
kirkwood-synology.dtsi ARM: kirkwood: add "jedec,spi-nor" flash compatible binding 2015-05-25 16:53:25 +02:00
kirkwood-t5325.dts ARM: kirkwood: add "jedec,spi-nor" flash compatible binding 2015-05-25 16:53:25 +02:00
kirkwood-topkick.dts ARM: dts: kirkwood: set default pinctrl for I2C0 2014-05-05 00:53:15 +00:00
kirkwood-ts219-6281.dts ARM: dts: kirkwood: rename pin-controller nodes 2014-05-05 00:51:33 +00:00
kirkwood-ts219-6282.dts ARM: dts: kirkwood: rename pin-controller nodes 2014-05-05 00:51:33 +00:00
kirkwood-ts219.dtsi ARM: dts: Kirkwood: Fix QNAP TS219 power-off 2015-11-19 11:21:34 +01:00
kirkwood-ts419-6281.dts
kirkwood-ts419-6282.dts
kirkwood-ts419.dtsi ARM: dts: kirkwood: rename pin-controller nodes 2014-05-05 00:51:33 +00:00
kirkwood.dtsi ARM: mvebu: modify Orion and Kirkwoord crypto compatible strings 2015-10-09 17:08:02 +02:00
logicpd-torpedo-37xx-devkit.dts ARM: OMAP2+: LogicPD Torpedo: Add Touchscreen Support 2015-12-21 11:10:40 -08:00
logicpd-torpedo-som.dtsi ARM: dts: LogicPD Torpedo: Revert Duplicative Entries 2016-01-27 09:15:53 -08:00
lpc18xx.dtsi ARM: dts: lpc18xx: add EEPROM memory node 2015-12-14 23:12:53 +01:00
lpc32xx.dtsi arm: dts: lpc32xx: move USB controller subdevices into own device node 2015-11-18 18:01:27 +02:00
lpc4337-ciaa.dts ARM: dts: lpc4337-ciaa: add i2c0 and devices 2015-12-14 23:13:06 +01:00
lpc4350-hitex-eval.dts ARM: dts: lpc4350-hitex-eval: add joystick, buttons and leds 2015-09-30 22:49:03 +02:00
lpc4350.dtsi ARM: dts: Add DT for Hitex LPC4350 Evaluation Board 2015-05-15 22:28:29 +02:00
lpc4357-ea4357-devkit.dts ARM: dts: lpc4357-ea4357: add mma7455 i2c accelerometer 2015-12-14 23:13:05 +01:00
lpc4357.dtsi ARM: dts: lpc4357: enable EEPROM memory 2015-12-14 23:13:04 +01:00
ls1021a-qds.dts ARM: dts: ls1021a: add sata node to dts 2015-12-22 20:43:40 +08:00
ls1021a-twr.dts ARM: dts: ls1021a: add sata node to dts 2015-12-22 20:43:40 +08:00
ls1021a.dtsi ARM: dts: ls1021a: add sata node to dts 2015-12-22 20:43:40 +08:00
Makefile ARM: bcm2835: Add devicetree for bcm2836 and Raspberry Pi 2 B 2015-12-31 17:17:00 +01:00
meson.dtsi ARM: meson6: DTS: Fix wrong reg mapping and IRQ numbers 2015-10-14 22:13:07 +02:00
meson6-atv1200.dts ARM: dts: meson: enable Ethernet controller 2015-03-02 11:00:55 +01:00
meson6.dtsi ARM: meson: DTS: enable L2 cache 2014-11-18 16:36:14 +01:00
meson8-minix-neo-x8.dts ARM: dts: meson: add DTS file for MINIX NEO-X8 2015-03-02 11:01:03 +01:00
meson8.dtsi ARM: dts: meson8: add pinctrl node 2015-03-02 11:00:59 +01:00
meson8b-mxq.dts ARM: meson: Add DTS for Odroid-C1 and Tronfy MXQ boards 2015-10-08 17:21:55 +02:00
meson8b-odroidc1.dts ARM: meson: Add status LED for Odroid-C1 2016-01-04 10:54:38 +01:00
meson8b.dtsi ARM: dts: meson8b: Add watchdog node 2016-01-04 10:54:45 +01:00
mmp2-brownstone.dts arm: mmp: Make all the dts file to be compiled by Makefile 2014-11-12 16:34:26 -08:00
mmp2.dtsi arm: mmp: Make use of the DT supported clock 2014-11-12 16:34:30 -08:00
moxart-uc7112lx.dts
moxart.dtsi
mpa1600.dts ARM: at91/dt: mpa1600: define crytals frequencies 2014-07-09 19:05:16 +02:00
mt2701-evb.dts ARM: dts: mediatek: add MT2701 basic support 2015-11-20 13:59:05 +01:00
mt2701.dtsi ARM: dts: mediatek: add MT2701 basic support 2015-11-20 13:59:05 +01:00
mt6580-evbp1.dts ARM: dts: mediatek: add mt6580 basic support 2015-07-18 00:22:42 +02:00
mt6580.dtsi ARM: dts: mediatek: add mt6580 basic support 2015-07-18 00:22:42 +02:00
mt6589-aquaris5.dts ARM: mediatek: dts: Add uart to Aquaris5 2015-01-11 21:17:49 +01:00
mt6589.dtsi ARM: DTS: Add watchdog to mt6589 2015-03-30 13:18:23 +02:00
mt6592-evb.dts ARM: mediatek: add dts for mt6592-evb 2014-11-14 13:50:47 +01:00
mt6592.dtsi ARM: mediatek: dts: Add uart to mt6592 2015-01-20 18:09:39 +01:00
mt8127-moose.dts ARM: mediatek: dts: Add UART dts for MT8127 and MT8135 boards 2015-01-08 12:12:43 +01:00
mt8127.dtsi ARM: dts: mt8127: enable basic SMP bringup for mt8127 2015-10-12 19:10:38 +02:00
mt8135-evbp1.dts ARM: dts: mt8135-evbp1: remove regulator-compatible usage 2015-09-27 15:38:43 +02:00
mt8135-pinfunc.h ARM: dts: mt8135: Add pinctrl/GPIO/EINT node for mt8135. 2015-05-04 10:56:07 +02:00
mt8135.dtsi ARM: mediatek: DT: Move reset controller constants into common location 2015-11-24 18:58:12 +01:00
mxs-pinfunc.h
nspire-classic.dtsi devicetree: Add TI-NSPIRE USB OTG support to device tree 2015-03-04 23:44:17 +01:00
nspire-clp.dts
nspire-cx.dts devicetree: Add TI-NSPIRE USB OTG support to device tree 2015-03-04 23:44:17 +01:00
nspire-tp.dts
nspire.dtsi ARM: dts: TI-Nspire: fix cpu compatible value 2015-10-23 21:59:31 +02:00
omap-gpmc-smsc911x.dtsi ARM: dts: Use better omap GPMC timings for LAN9220 2014-11-03 16:48:16 -08:00
omap-gpmc-smsc9221.dtsi
omap-zoom-common.dtsi ARM: dts: Add GPMC timings for omap zoom serial port 2014-10-30 08:50:26 -07:00
omap2.dtsi ARM: dts: omap2: Correct the dma controller's property names 2015-02-24 10:35:43 -08:00
omap3-beagle-xm-ab.dts ARM: dts: Add support for the BeagleBoard xM A/B 2014-04-18 16:50:23 -07:00
omap3-beagle-xm.dts ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap3-beagle.dts ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap3-cm-t3x.dtsi ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap3-cm-t3x30.dtsi ARM: dts: omap3: Remove all references to ti,codec property 2015-03-16 19:24:51 -07:00
omap3-cm-t3517.dts ARM: Show proper respect for Heinrich Hertz by using the correct unit for frequency 2015-05-14 16:22:05 +01:00
omap3-cm-t3530.dts ARM: dts: sbc-t3x: add DVI display data 2014-11-10 14:27:35 -08:00
omap3-cm-t3730.dts ARM: dts: add wl12xx/wl18xx bindings 2015-03-24 09:48:14 -07:00
omap3-devkit8000-common.dtsi ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap3-devkit8000-lcd-common.dtsi ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap3-devkit8000-lcd43.dts ARM: dts: omap3-devkit8000: add LCD panels 2015-08-06 00:37:41 -07:00
omap3-devkit8000-lcd70.dts ARM: dts: omap3-devkit8000: add LCD panels 2015-08-06 00:37:41 -07:00
omap3-devkit8000.dts ARM: dts: omap3-devkit8000: add LCD panels 2015-08-06 00:37:41 -07:00
omap3-evm-37xx.dts ARM: dts: omap3-evm-37xx: Use OMAP3_*_IOPAD pinmux macros 2015-11-30 08:43:27 -08:00
omap3-evm-common.dtsi ARM: dts: Use defined GPIO constants in flags cell for OMAP2+ boards 2015-10-12 15:51:59 -07:00
omap3-evm.dts
omap3-gta04.dtsi ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap3-gta04a3.dts ARM: dts: Add gta04a3 model 2014-07-29 23:50:53 -07:00
omap3-gta04a4.dts ARM: dts: omap3-gta04: Rename gta04.dts to gta04.dtsi and add a4 model 2014-07-29 23:50:23 -07:00
omap3-gta04a5.dts ARM: dts: Use defined GPIO constants in flags cell for OMAP2+ boards 2015-10-12 15:51:59 -07:00
omap3-ha-common.dtsi ARM: dts: omap3: Add HEAD acoustics omap3-ha.dts and omap3-ha-lcd.dts (TAO3530 based) 2014-09-08 17:09:11 -07:00
omap3-ha-lcd.dts ARM: dts: omap3: Add HEAD acoustics omap3-ha.dts and omap3-ha-lcd.dts (TAO3530 based) 2014-09-08 17:09:11 -07:00
omap3-ha.dts ARM: dts: omap3: Add HEAD acoustics omap3-ha.dts and omap3-ha-lcd.dts (TAO3530 based) 2014-09-08 17:09:11 -07:00
omap3-igep.dtsi ARM: dts: Update Javier Martinez Canillas's email 2015-10-20 09:28:04 -07:00
omap3-igep0020-common.dtsi ARM: dts: omap3-igep0020: Use IOPAD pinmux macro 2015-10-20 09:28:04 -07:00
omap3-igep0020-rev-f.dts ARM: dts: Update Javier Martinez Canillas's email 2015-10-20 09:28:04 -07:00
omap3-igep0020.dts ARM: dts: omap3-igep0020: Use MMC pwrseq to init SDIO WiFi 2015-12-07 16:11:10 -08:00
omap3-igep0030-common.dtsi ARM: dts: Update Javier Martinez Canillas's email 2015-10-20 09:28:04 -07:00
omap3-igep0030-rev-g.dts ARM: dts: Update Javier Martinez Canillas's email 2015-10-20 09:28:04 -07:00
omap3-igep0030.dts ARM: dts: omap3-igep0030: Use MMC pwrseq to init SDIO WiFi 2015-12-07 16:11:43 -08:00
omap3-ldp.dts ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap3-lilly-a83x.dtsi ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap3-lilly-dbb056.dts ARM: dts: Use defined GPIO constants in flags cell for OMAP2+ boards 2015-10-12 15:51:59 -07:00
omap3-n9.dts ARM: dts: n950, n9: Add primary camera support 2015-03-19 10:59:28 -07:00
omap3-n900.dts ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap3-n950-n9.dtsi ARM: dts: omap3-n9: Use OMAP3_CORE1_IOPAD pinmux macro 2015-11-30 08:43:28 -08:00
omap3-n950.dts ARM: dts: n950, n9: Add primary camera support 2015-03-19 10:59:28 -07:00
omap3-overo-alto35-common.dtsi ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap3-overo-alto35.dts
omap3-overo-base.dtsi ARM: dts: Use defined GPIO constants in flags cell for OMAP2+ boards 2015-10-12 15:51:59 -07:00
omap3-overo-chestnut43-common.dtsi ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap3-overo-chestnut43.dts
omap3-overo-common-dvi.dtsi ARM: dts: overo: Add support for DVI output 2014-06-03 10:22:22 +03:00
omap3-overo-common-lcd35.dtsi ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap3-overo-common-lcd43.dtsi ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap3-overo-common-peripherals.dtsi ARM: dts: omap3-overo: Fix UART wake-up events 2014-09-18 09:03:36 -07:00
omap3-overo-gallop43-common.dtsi ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap3-overo-gallop43.dts
omap3-overo-palo35-common.dtsi ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap3-overo-palo35.dts ARM: dts: overo: Add device tree for Palo35 board 2015-07-14 04:15:11 -07:00
omap3-overo-palo43-common.dtsi ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap3-overo-palo43.dts
omap3-overo-storm-alto35.dts
omap3-overo-storm-chestnut43.dts
omap3-overo-storm-gallop43.dts
omap3-overo-storm-palo35.dts ARM: dts: overo: Add device tree for Palo35 board 2015-07-14 04:15:11 -07:00
omap3-overo-storm-palo43.dts
omap3-overo-storm-summit.dts
omap3-overo-storm-tobi.dts
omap3-overo-storm-tobiduo.dts ARM: dts: Add DTS for Gumstix TobiDuo expansion board 2015-07-14 04:15:10 -07:00
omap3-overo-storm.dtsi
omap3-overo-summit-common.dtsi ARM: dts: overo: Add support for DVI output 2014-06-03 10:22:22 +03:00
omap3-overo-summit.dts
omap3-overo-tobi-common.dtsi ARM: dts: overo: Add support for DVI output 2014-06-03 10:22:22 +03:00
omap3-overo-tobi.dts
omap3-overo-tobiduo-common.dtsi ARM: dts: Add DTS for Gumstix TobiDuo expansion board 2015-07-14 04:15:10 -07:00
omap3-overo-tobiduo.dts ARM: dts: Add DTS for Gumstix TobiDuo expansion board 2015-07-14 04:15:10 -07:00
omap3-overo.dtsi ARM: dts: overo: Enable McBSP2 for all Overo COMs 2015-07-14 04:15:10 -07:00
omap3-pandora-1ghz.dts ARM: dts: omap3-pandora: miscellaneous corrections 2015-07-21 04:07:41 -07:00
omap3-pandora-600mhz.dts ARM: dts: omap3-pandora: miscellaneous corrections 2015-07-21 04:07:41 -07:00
omap3-pandora-common.dtsi ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap3-panel-sharp-ls037v7dw01.dtsi ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap3-sb-t35.dtsi ARM: dts: sbc-t3x30: add audio support 2014-11-24 07:54:48 -08:00
omap3-sbc-t3517.dts ARM: dts: cm-t3x: add NAND support 2015-01-13 08:00:10 -08:00
omap3-sbc-t3530.dts ARM: dts: cm-t3x: add NAND support 2015-01-13 08:00:10 -08:00
omap3-sbc-t3730.dts ARM: dts: cm-t3x: add NAND support 2015-01-13 08:00:10 -08:00
omap3-tao3530.dtsi ARM: dts: Use defined GPIO constants in flags cell for OMAP2+ boards 2015-10-12 15:51:59 -07:00
omap3-thunder.dts ARM: dts: omap3: Add Technexion Thunder support (TAO3530 SOM based) 2014-09-08 17:09:11 -07:00
omap3-zoom3.dts ARM: dts: omap3-zoom3: Use OMAP3_*_IOPAD pinmux macros 2015-11-30 08:43:28 -08:00
omap3.dtsi ARM: dts: am437x/am33xx/omap/dm816x: Add gpmc dma channel 2015-11-30 11:03:35 -08:00
omap3xxx-clocks.dtsi ARM: dts: omap3: add minimal l4 bus layout with control module support 2015-03-31 21:26:56 +03:00
omap4-cpu-thermal.dtsi ARM: dts: am57xx-beagle-x15: Add thermal map to include fan and tmp102 2015-03-26 12:02:12 -07:00
omap4-duovero-parlor.dts ARM: DT updates for v4.5 2016-01-20 18:16:29 -08:00
omap4-duovero.dtsi ARM: omap: convert wakeupgen to stacked domains 2015-03-15 00:56:13 +00:00
omap4-panda-a4.dts ARM: dts: omap4-panda-a4: Use OMAP4_IOPAD pinmux macro 2015-11-30 08:43:29 -08:00
omap4-panda-common.dtsi ARM: dts: omap4-panda-common: Use OMAP4_IOPAD pinmux macro 2015-11-30 08:43:30 -08:00
omap4-panda-es.dts ARM: dts: omap4-panda-es: Use OMAP4_IOPAD pinmux macro 2015-11-30 08:43:30 -08:00
omap4-panda.dts ARM: dts: omap4-panda: Fix model and SoC family details 2014-09-03 14:23:41 -07:00
omap4-sdp-es23plus.dts ARM: dts: omap4-sdp-es23plus: Use OMAP4_IOPAD pinmux macro 2015-11-30 08:43:31 -08:00
omap4-sdp.dts ARM: dts: omap4-sdp: Use OMAP4_IOPAD pinmux macro 2015-11-30 08:43:30 -08:00
omap4-var-dvk-om44.dts ARM: dts: Add VAR-SOM-OM44 WLAN nodes 2014-05-19 17:20:30 -07:00
omap4-var-om44customboard.dtsi ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap4-var-som-om44-wlan.dtsi ARM: dts: Use defined GPIO constants in flags cell for OMAP2+ boards 2015-10-12 15:51:59 -07:00
omap4-var-som-om44.dtsi ARM: dts: Use defined GPIO constants in flags cell for OMAP2+ boards 2015-10-12 15:51:59 -07:00
omap4-var-stk-om44.dts ARM: dts: Add VAR-SOM-OM44 WLAN nodes 2014-05-19 17:20:30 -07:00
omap4.dtsi ARM: dts: omap4: Add elm node 2015-11-30 14:03:47 -08:00
omap5-board-common.dtsi Merge branch 'enable-devices' into omap-for-v4.5/fixes 2016-01-25 10:46:21 -08:00
omap5-cm-t54.dts ARM: dts: omap: replace legacy *,wakeup property with wakeup-source 2015-12-17 09:52:32 -08:00
omap5-core-thermal.dtsi ARM: dts: OMAP5: fix polling intervals for thermal zones 2015-03-06 09:07:17 -08:00
omap5-gpu-thermal.dtsi ARM: dts: OMAP5: fix polling intervals for thermal zones 2015-03-06 09:07:17 -08:00
omap5-igep0050.dts ARM: dts: Add basic support for isee igepv5 2015-10-16 12:32:33 -07:00
omap5-sbc-t54.dts ARM: dts: sbc-t54: fix mux mode comment style 2014-09-18 09:06:51 -07:00
omap5-uevm.dts ARM: dts: omap5-uevm.dts: Use OMAP5_IOPAD pinmux macro 2015-11-30 08:43:32 -08:00
omap5.dtsi ARM: dts: am437x/am33xx/omap/dm816x: Add gpmc dma channel 2015-11-30 11:03:35 -08:00
omap24xx-clocks.dtsi ARM: dts: omap24xx: add minimal l4 bus layout with control module support 2015-03-31 21:26:55 +03:00
omap34xx-omap36xx-clocks.dtsi
omap34xx.dtsi Merge branch 'omap/dt' into next/late 2015-04-15 21:41:13 +02:00
omap36xx-am35xx-omap3430es2plus-clocks.dtsi
omap36xx-clocks.dtsi ARM: dts: use ti,fixed-factor-clock for dpll4_m5x2_mul_ck 2014-05-16 17:08:57 +03:00
omap36xx-omap3430es2plus-clocks.dtsi
omap36xx.dtsi Merge branch 'omap/dt' into next/late 2015-04-15 21:41:13 +02:00
omap44xx-clocks.dtsi ARM: dts: omap4.dtsi: remove dss_fck 2014-11-19 16:42:00 -07:00
omap54xx-clocks.dtsi ARM: dts: OMAP5: Fix the bypass clock source for dpll_iva and others 2015-03-06 08:36:33 -08:00
omap443x-clocks.dtsi
omap443x.dtsi
omap446x-clocks.dtsi
omap2420-clocks.dtsi ARM: dts: omap2 clock data 2014-05-28 13:11:36 +03:00
omap2420-h4.dts
omap2420-n8x0-common.dtsi ARM: dts: Use defined GPIO constants in flags cell for OMAP2+ boards 2015-10-12 15:51:59 -07:00
omap2420-n800.dts
omap2420-n810-wimax.dts
omap2420-n810.dts arm: omap2: n8x0: move i2c devices to DT 2014-09-16 14:43:11 -07:00
omap2420.dtsi ARM: dts: omap24xx: add minimal l4 bus layout with control module support 2015-03-31 21:26:55 +03:00
omap2430-clocks.dtsi ARM: dts: omap24xx: add minimal l4 bus layout with control module support 2015-03-31 21:26:55 +03:00
omap2430-sdp.dts ARM: dts: Fix gpmc regression for omap 2430sdp smc91x 2014-12-10 08:26:25 -08:00
omap2430.dtsi ARM: dts: fix omap2+ address translation for pbias 2015-09-24 16:28:32 -07:00
omap3430-sdp.dts ARM: dts: Fix wrong GPMC size mappings for omaps 2014-10-30 08:35:17 -07:00
omap3430es1-clocks.dtsi
omap4460.dtsi ARM: dts: Use defined GPIO constants in flags cell for OMAP2+ boards 2015-10-12 15:51:59 -07:00
orion5x-lacie-d2-network.dts ARM: orion5x: convert d2net to Device Tree 2014-04-26 19:45:24 +00:00
orion5x-lacie-ethernet-disk-mini-v2.dts ARM: orion5x: keep TODO list in edmini_v2 DT 2014-04-26 19:45:19 +00:00
orion5x-linkstation-lswtgl.dts ARM: dts: orion5x: fix the missing mtd flash on linkstation lswtgl 2016-02-09 11:17:53 +01:00
orion5x-lswsgl.dts ARM: dts: Convert Linkstation Mini to Device Tree 2015-08-06 18:51:29 +02:00
orion5x-maxtor-shared-storage-2.dts ARM: orion5x: convert Maxtor Shared Storage II to the Device Tree 2014-04-26 19:45:25 +00:00
orion5x-mv88f5182.dtsi ARM: orion5x: add standard pinctrl configs for sata0 and sata1 2014-04-26 19:45:13 +00:00
orion5x-rd88f5182-nas.dts ARM: orion5x: convert RD-88F5182 to Device Tree 2014-04-26 19:45:22 +00:00
orion5x.dtsi ARM: mvebu: use new bindings for existing crypto devices 2015-10-09 17:08:01 +02:00
phy3250.dts arm: dts: lpc32xx: move USB controller subdevices into own device node 2015-11-18 18:01:27 +02:00
picoxcell-pc3x2.dtsi
picoxcell-pc3x3.dtsi
picoxcell-pc7302-pc3x2.dts
picoxcell-pc7302-pc3x3.dts
pm9g45.dts ARM: at91/dt: pm9g45: crystals frequencies 2014-07-09 19:05:20 +02:00
prima2-evb.dts
prima2.dtsi ARM: dts: prima2: add resets property for VPP nodes 2014-11-25 18:46:43 +08:00
pxa2xx.dtsi ARM: dts: pxa: add dma pxamci nodes to pxa3xx 2015-07-10 22:29:22 +02:00
pxa3xx.dtsi ARM: dts: pxa: add the usb host controller 2015-07-10 22:29:22 +02:00
pxa27x.dtsi ARM: dts: pxa: fix power i2c definition 2015-07-10 22:29:22 +02:00
pxa168-aspenite.dts arm: mmp: Make all the dts file to be compiled by Makefile 2014-11-12 16:34:26 -08:00
pxa168.dtsi arm: mmp: Make use of the DT supported clock 2014-11-12 16:34:30 -08:00
pxa910-dkb.dts arm: mmp: Make all the dts file to be compiled by Makefile 2014-11-12 16:34:26 -08:00
pxa910.dtsi arm: mmp: Make use of the DT supported clock 2014-11-12 16:34:30 -08:00
qcom-apq8064-cm-qs600.dts ARM: dts: qcom: apq8064: Declare all pm8921 regulators 2015-12-08 23:33:12 -06:00
qcom-apq8064-ifc6410.dts PCI changes for the v4.5 merge window: 2016-01-21 11:52:16 -08:00
qcom-apq8064-sony-xperia-yuga.dts ARM: dts: qcom: apq8064: Introduce Sony Xperia Z dts 2015-12-08 23:33:12 -06:00
qcom-apq8064-v2.0.dtsi ARM: dts: qcom: Add initial APQ8064 SoC and IFC6410 board device trees 2014-05-29 10:39:07 -05:00
qcom-apq8064.dtsi PCI changes for the v4.5 merge window: 2016-01-21 11:52:16 -08:00
qcom-apq8074-dragonboard.dts arm: dts: qcom: Add aliases for PMICs 2015-12-08 23:33:12 -06:00
qcom-apq8084-ifc6540.dts arm: dts: qcom: Add aliases for PMICs 2015-12-08 23:33:12 -06:00
qcom-apq8084-mtp.dts arm: dts: qcom: Add aliases for PMICs 2015-12-08 23:33:12 -06:00
qcom-apq8084.dtsi arm: dts: Add support for PMA8084 on APQ8084 2015-12-15 23:35:19 -06:00
qcom-ipq8064-ap148.dts ARM: dts: qcom: ipq8064-ap148: Use stdout-path 2015-09-09 14:57:32 -05:00
qcom-ipq8064-v1.0.dtsi ARM: qcom: Add initial IPQ8064 SoC and AP148 device trees 2014-08-21 11:43:34 -05:00
qcom-ipq8064.dtsi ARM: dts: qcom: Label serial nodes for aliasing and stdout-path 2015-09-09 14:56:42 -05:00
qcom-msm8660-surf.dts ARM: dts: qcom: msm8660-surf: Use stdout-path 2015-09-09 14:57:39 -05:00
qcom-msm8660.dtsi ARM: dts: qcom: Label serial nodes for aliasing and stdout-path 2015-09-09 14:56:42 -05:00
qcom-msm8960-cdp.dts ARM: dts: qcom: msm8960-cdp: Use stdout-path 2015-09-09 14:57:46 -05:00
qcom-msm8960.dtsi arm: dts: qcom: Add board clocks 2015-12-08 23:33:12 -06:00
qcom-msm8974-sony-xperia-honami.dts ARM: dts: qcom: msm8974: Disable wled and move it to honami 2015-12-08 23:33:13 -06:00
qcom-msm8974.dtsi ARM: dts: qcom: msm8974: Add i2c8 node 2015-12-08 23:33:13 -06:00
qcom-pm8841.dtsi arm: dts: qcom: Add generic PMIC gpio/MPP compat strings 2015-12-08 23:33:13 -06:00
qcom-pm8941.dtsi ARM: dts: qcom: msm8974: Disable wled and move it to honami 2015-12-08 23:33:13 -06:00
qcom-pma8084.dtsi arm: dts: qcom: Add generic PMIC gpio/MPP compat strings 2015-12-08 23:33:13 -06:00
r7s72100-genmai.dts ARM: shmobile: genmai dts: Replace status value "ok" by "okay" 2014-12-21 16:55:31 +09:00
r7s72100.dtsi ARM: shmobile: r7s72100 dtsi: Use "arm,pl390" for GIC 2015-12-14 17:26:16 +09:00
r8a73a4-ape6evm.dts ARM: shmobile: ape6evm dts: Add serial port config to chosen/stdout-path 2015-12-10 13:33:01 +09:00
r8a73a4.dtsi ARM: shmobile: r8a73a4 dtsi: Add missing "gpio-ranges" to gpio node 2015-08-05 06:39:27 +09:00
r8a77xx-aa104xd12-panel.dtsi ARM: shmobile: dts: Add common file for AA104XD12 panel 2014-10-27 09:53:57 +09:00
r8a77xx-aa121td01-panel.dtsi ARM: shmobile: dts: Add common file for AA121TD01 panel 2015-10-02 15:11:20 +09:00
r8a7740-armadillo800eva.dts ARM: SoC fixes for v4.5 merge window 2016-01-22 17:26:00 -08:00
r8a7740.dtsi ARM: DT updates for v4.5 2016-01-20 18:16:29 -08:00
r8a7778-bockw.dts ARM: dts: bockw: Add compatible property to "partitions" node 2016-01-07 08:38:54 +11:00
r8a7778.dtsi ARM: DT updates for v4.5 2016-01-20 18:16:29 -08:00
r8a7779-marzen.dts ARM: shmobile: marzen: Board specific serial port order 2015-09-14 10:16:36 +09:00
r8a7779.dtsi ARM: shmobile: r8a7779 dtsi: Add CPG/MSTP Clock Domain 2015-08-12 11:15:26 +09:00
r8a7790-lager.dts ARM: dts: lager: Add compatible property to "partitions" node 2016-01-07 08:38:56 +11:00
r8a7790.dtsi ARM: shmobile: r8a779x: use SoC-specific usb-dmac compatibility strings 2015-12-17 10:10:54 +09:00
r8a7791-koelsch.dts ARM: dts: koelsch: Add compatible property to "partitions" node 2016-01-07 08:38:59 +11:00
r8a7791-porter.dts ARM: dts: porter: remove enable prop from HS-USB device node 2016-03-02 09:46:56 +09:00
r8a7791.dtsi ARM: shmobile: r8a779x: use SoC-specific usb-dmac compatibility strings 2015-12-17 10:10:54 +09:00
r8a7793-gose.dts ARM: dts: gose: Add compatible property to "partitions" node 2016-01-07 08:39:04 +11:00
r8a7793.dtsi ARM: shmobile: r8a7793: IPMMU compat string SoC part number update 2015-12-15 18:16:58 +09:00
r8a7794-alt.dts ARM: shmobile: alt dts: Add serial port config to chosen/stdout-path 2015-12-10 13:32:49 +09:00
r8a7794-silk.dts ARM: dts: silk: Add compatible property to "partitions" node 2016-01-07 08:39:06 +11:00
r8a7794.dtsi ARM: shmobile: r8a7794: IPMMU compat string SoC part number update 2015-12-15 18:17:10 +09:00
rk3xxx.dtsi ARM: dts: rockchip: Setup rk3066/rk3188 ethernet0 alias for u-boot 2015-11-19 05:54:58 +01:00
rk3036-evb.dts ARM: dts: rockchip: add rk3036-evb board 2015-11-24 00:10:15 +01:00
rk3036-kylin.dts ARM: dts: rockchip: add the kylin board for rk3036 2015-12-19 18:11:48 +01:00
rk3036.dtsi ARM: dts: rockchip: add the sdio/sdmmc node for rk3036 2015-12-19 18:11:36 +01:00
rk3066a-bqcurie2.dts ARM: dts: rockchip: support highspeed sd-cards on rk3066a boards 2015-10-08 22:38:07 +02:00
rk3066a-marsboard.dts ARM: dts: rockchip: Add support for SD/MMC on MarsBoard-RK3066 2015-10-08 22:37:00 +02:00
rk3066a-rayeager.dts ARM: dts: rockchip: support highspeed sd-cards on rk3066a boards 2015-10-08 22:38:07 +02:00
rk3066a.dtsi ARM: dts: rockchip: add eFuse node for rk3066a SoCs 2015-12-14 14:14:54 +01:00
rk3188-radxarock.dts ARM: dts: rockchip: Add SPDIF optical out on Radxa Rock 2015-10-13 10:58:31 +02:00
rk3188.dtsi ARM: dts: rockchip: add eFuse node for rk3188 SoCs 2015-12-14 14:15:44 +01:00
rk3228-evb.dts ARM: dts: rockchip: add rk3228-evb board 2015-12-12 20:14:30 +01:00
rk3228.dtsi ARM: dts: rockchip: add core rk3228 dtsi 2015-12-12 20:14:25 +01:00
rk3288-evb-act8846.dts ARM: dts: rockchip: fix voltage ranges for rk3288-evb-act8846 board 2015-12-11 14:01:13 +01:00
rk3288-evb-rk808.dts ARM: dts: rockchip: move the public part to rk3288-evb common 2015-12-11 12:30:48 +01:00
rk3288-evb.dtsi ARM: dts: rockchip: move the public part to rk3288-evb common 2015-12-11 12:30:48 +01:00
rk3288-firefly-beta.dts ARM: dts: rockchip: add dts for Firefly Firefly-RK3288 boards 2015-01-26 01:15:02 +01:00
rk3288-firefly.dts ARM: dts: rockchip: add dts for Firefly Firefly-RK3288 boards 2015-01-26 01:15:02 +01:00
rk3288-firefly.dtsi ARM: dts: rockchip: add rk3288-firefly iodomains 2015-10-08 22:40:18 +02:00
rk3288-popmetal.dts ARM: dts: rockchip: add rk3288-popmetal iodomains 2015-10-08 22:40:06 +02:00
rk3288-r89.dts ARM: dts: rockchip: add gpio-ir-receiver to the R89 board 2015-12-04 20:01:27 +01:00
rk3288-rock2-som.dtsi ARM: dts: rockchip: set system-power-controller property on rk3288-rock2 2015-11-19 21:43:31 +01:00
rk3288-rock2-square.dts ARM: dts: rockchip: Add IR receiver to RK3288 Radxa Rock 2 Square 2015-11-23 17:18:45 +01:00
rk3288-thermal.dtsi ARM: dts: rockchip: update the thermal management on rk3288 2015-12-01 14:25:36 +01:00
rk3288-veyron-brain.dts ARM: dts: rockchip: add veyron-brain board 2015-12-03 16:55:37 +01:00
rk3288-veyron-chromebook.dtsi ARM: dts: rockchip: add shared rk3288-veyron files 2015-07-16 13:38:43 +02:00
rk3288-veyron-jaq.dts ARM: dts: rockchip: add veyron-jaq board 2015-10-08 22:37:09 +02:00
rk3288-veyron-jerry.dts ARM: dts: rockchip: correct regulator power states for suspend 2015-08-21 01:40:35 +02:00
rk3288-veyron-mickey.dts ARM: dts: rockchip: add veyron-mickey board 2015-12-03 16:55:40 +01:00
rk3288-veyron-minnie.dts First round of arm devicetree changes. 2015-12-12 00:26:26 +01:00
rk3288-veyron-pinky.dts ARM: dts: rockchip: correct regulator power states for suspend 2015-08-21 01:40:35 +02:00
rk3288-veyron-sdmmc.dtsi ARM: dts: rockchip: add tuning related settings to veyron devices 2015-10-26 16:00:13 +01:00
rk3288-veyron-speedy.dts ARM: dts: rockchip: override thermal settings on veyron-speedy 2015-12-01 14:25:39 +01:00
rk3288-veyron.dtsi ARM: dts: rockchip: make sure edp_24m is associated to xin24m on veyron 2015-12-03 16:55:33 +01:00
rk3288.dtsi Another new soc - the rk3228 quad-core cortex-a7, a new rk3036 board, 2015-12-22 13:07:11 -08:00
s3c24xx.dtsi ARM: dts: SAMSUNG: Add aliases of UART nodes 2014-07-09 17:22:55 -07:00
s3c64xx-pinctrl.dtsi
s3c64xx.dtsi ARM: dts: Enable PWM node by default for s3c64xx 2014-10-21 00:12:40 +09:00
s3c2416-pinctrl.dtsi
s3c2416-smdk2416.dts ARM: dts: s3c2416: Use labels for overriding nodes in SMDK2416 2015-06-03 09:56:54 +09:00
s3c2416.dtsi ARM: dts: Fix cpu compatible value for s3c2416 2015-09-29 15:52:58 +09:00
s3c6400.dtsi
s3c6410-mini6410.dts ARM: dts: Enable PWM node by default for s3c64xx 2014-10-21 00:12:40 +09:00
s3c6410-smdk6410.dts
s3c6410.dtsi
s5pv210-aquila.dts ARM: dts: Fix typo in regulator enable GPIO property in s5pv210-aquila 2015-10-24 04:31:29 +09:00
s5pv210-goni.dts ARM: dts: Fix typo in regulator enable GPIO property in s5pv210-goni 2015-10-24 04:31:35 +09:00
s5pv210-pinctrl.dtsi ARM: dts: Add Device tree for s5pv210 SoC 2014-07-19 04:31:20 +09:00
s5pv210-smdkc110.dts ARM: dts: Add Device tree for s5pc110/s5pv210 boards 2014-07-19 04:31:51 +09:00
s5pv210-smdkv210.dts ARM: dts: add 'dr_mode' property to hsotg devices for exynos boards 2015-01-24 13:24:06 +09:00
s5pv210-torbreck.dts ARM: dts: Add Device tree for s5pc110/s5pv210 boards 2014-07-19 04:31:51 +09:00
s5pv210.dtsi ARM: dts: Add Device tree for s5pv210 SoC 2014-07-19 04:31:20 +09:00
sama5d2-pinfunc.h ARM: at91/dt: fix typo in sama5d2 pinmux descriptions 2016-02-24 00:08:19 -08:00
sama5d2.dtsi ARM: at91/dt: sama5d2: add pdmic node 2015-12-22 10:37:30 +01:00
sama5d3.dtsi ARM: at91/dt: use syscon for PMC 2015-10-19 17:57:41 +02:00
sama5d3_can.dtsi ARM: at91/dt/trivial: correct file headers for SAMA5D3 SoC peripherals 2015-03-04 18:36:10 +01:00
sama5d3_emac.dtsi ARM: DT updates for v4.1 2015-04-22 09:09:46 -07:00
sama5d3_gmac.dtsi ARM: at91/dt/trivial: correct file headers for SAMA5D3 SoC peripherals 2015-03-04 18:36:10 +01:00
sama5d3_lcd.dtsi ARM: at91/dt: define the HLCDC node available on sama5d3 SoCs 2015-03-23 15:37:35 +01:00
sama5d3_mci2.dtsi ARM: at91/dt: add pullup on mmc2 data signals 2015-10-19 17:57:43 +02:00
sama5d3_tcb1.dtsi ARM: at91/dt: sama5d3: use slow clock where necessary 2015-08-07 11:58:45 +02:00
sama5d3_uart.dtsi ARM: at91/dt/trivial: correct file headers for SAMA5D3 SoC peripherals 2015-03-04 18:36:10 +01:00
sama5d3xcm.dtsi ARM: at91/dt: sama5d3xek: use stdout-path 2015-06-04 10:00:39 +02:00
sama5d3xdm.dtsi
sama5d3xmb.dtsi ARM: at91/dt: ov2640: add hsync/vsync-active property 2015-09-21 16:20:25 +02:00
sama5d4.dtsi ARM: dts: at91: sama5d4: fix instance id of DBGU 2016-01-27 11:11:51 +01:00
sama5d31.dtsi ARM: at91/dt: Fix sama5d3x typos 2014-11-16 15:12:04 -08:00
sama5d31ek.dts
sama5d33.dtsi ARM: at91/dt: Fix sama5d3x typos 2014-11-16 15:12:04 -08:00
sama5d33ek.dts
sama5d34.dtsi ARM: at91/dt: Fix sama5d3x typos 2014-11-16 15:12:04 -08:00
sama5d34ek.dts
sama5d35.dtsi ARM: at91/dt: Fix sama5d3x typos 2014-11-16 15:12:04 -08:00
sama5d35ek.dts ARM: at91/dt: replace gpio-key,wakeup with wakeup-source property 2015-11-16 15:53:04 +01:00
sama5d36.dtsi ARM: at91/dt: Fix sama5d3x typos 2014-11-16 15:12:04 -08:00
sama5d36ek.dts
samsung_k3pe0e000b.dtsi
sh73a0-kzm9g.dts ARM: dts: shmobile/r8a7xxx: replace gpio-key, wakeup with wakeup-source property 2015-10-23 09:16:46 +09:00
sh73a0.dtsi ARM: shmobile: sh73a0: Add MSIOF device nodes 2015-12-01 15:35:42 +09:00
skeleton.dtsi
skeleton64.dtsi
socfpga.dtsi ARM: socfpga: dts: Enable MMC support at correct place in the DT 2015-12-21 00:44:21 -06:00
socfpga_arria5.dtsi ARM: dts: socfpga: Add a 3.3V fixed regulator node 2014-10-22 21:00:19 -05:00
socfpga_arria5_socdk.dts ARM: socfpga: dts: Enable MMC support at correct place in the DT 2015-12-21 00:44:21 -06:00
socfpga_arria10.dtsi ARM: socfpga: dts: add clock fields for I2C, UART and USB on Arria10 2015-10-06 04:42:29 -05:00
socfpga_arria10_socdk.dtsi ARM: socfpga: dts: enable USB and I2C on Arria10 SoCDK 2015-10-06 04:42:34 -05:00
socfpga_arria10_socdk_sdmmc.dts ARM: socfpga: dts: rename socdk board file to socdk_sdmmc 2015-05-11 13:14:59 -05:00
socfpga_cyclone5.dtsi arm: dts: socfpga: enable watchdog for socfpga platform 2014-11-20 23:08:39 -06:00
socfpga_cyclone5_de0_sockit.dts ARM: socfpga: dts: Enable MMC support at correct place in the DT 2015-12-21 00:44:21 -06:00
socfpga_cyclone5_mcv.dtsi ARM: socfpga: dts: Enable MMC support at correct place in the DT 2015-12-21 00:44:21 -06:00
socfpga_cyclone5_mcvevk.dts ARM: socfpga: Repair incorrectly applied MCV patch 2015-12-18 06:22:13 -06:00
socfpga_cyclone5_socdk.dts ARM: socfpga: dts: Enable MMC support at correct place in the DT 2015-12-21 00:44:21 -06:00
socfpga_cyclone5_sockit.dts ARM: socfpga: dts: Enable MMC support at correct place in the DT 2015-12-21 00:44:21 -06:00
socfpga_cyclone5_socrates.dts ARM: socfpga: socrates: add gpio-leds 2015-06-02 14:27:11 -05:00
socfpga_vt.dts ARM: dts: socfpga: unuse the slot-node and deprecate the supports-highspeed for 2014-09-04 10:15:13 -05:00
spear3xx.dtsi Update Viresh Kumar's email address 2015-07-17 16:39:53 -07:00
spear13xx.dtsi Update Viresh Kumar's email address 2015-07-17 16:39:53 -07:00
spear300-evb.dts Update Viresh Kumar's email address 2015-07-17 16:39:53 -07:00
spear300.dtsi Update Viresh Kumar's email address 2015-07-17 16:39:53 -07:00
spear310-evb.dts Update Viresh Kumar's email address 2015-07-17 16:39:53 -07:00
spear310.dtsi Update Viresh Kumar's email address 2015-07-17 16:39:53 -07:00
spear320-evb.dts Update Viresh Kumar's email address 2015-07-17 16:39:53 -07:00
spear320-hmi.dts Shiraz has moved 2014-04-18 16:40:08 -07:00
spear320.dtsi Update Viresh Kumar's email address 2015-07-17 16:39:53 -07:00
spear600-evb.dts
spear600.dtsi
spear1310-evb.dts Update Viresh Kumar's email address 2015-07-17 16:39:53 -07:00
spear1310.dtsi Update Viresh Kumar's email address 2015-07-17 16:39:53 -07:00
spear1340-evb.dts Update Viresh Kumar's email address 2015-07-17 16:39:53 -07:00
spear1340.dtsi Update Viresh Kumar's email address 2015-07-17 16:39:53 -07:00
st-pincfg.h
ste-ccu8540-pinctrl.dtsi pinctrl: nomadik: force-convert to generic config bindings 2014-10-20 09:08:26 +02:00
ste-ccu8540.dts ARM: ux500: define serial port aliases 2015-07-14 11:15:42 +02:00
ste-ccu9540.dts ARM: ux500: define serial port aliases 2015-07-14 11:15:42 +02:00
ste-dbx5x0.dtsi ARM: ux500: remove regulator-compatible usage 2015-11-17 14:51:23 +01:00
ste-href-ab8500.dtsi pinctrl: abx500: force-convert to generic config bindings 2014-10-20 09:08:26 +02:00
ste-href-ab8505.dtsi pinctrl: abx500: force-convert to generic config bindings 2014-10-20 09:08:26 +02:00
ste-href-family-pinctrl.dtsi pinctrl: nomadik: force-convert to generic config bindings 2014-10-20 09:08:26 +02:00
ste-href-stuib.dtsi ARM: ux500: push down Rohm TS to STUIB 2015-11-17 09:37:09 +01:00
ste-href-tvk1281618.dtsi ARM: ux500: configure the sensors on the TVK board correctly 2015-12-01 14:48:12 +01:00
ste-href.dtsi ARM: ux500: fix MMC/SD card regression 2015-07-14 11:15:57 +02:00
ste-hrefprev60-stuib.dts ARM: ux500: define serial port aliases 2015-07-14 11:15:42 +02:00
ste-hrefprev60-tvk.dts ARM: ux500: define serial port aliases 2015-07-14 11:15:42 +02:00
ste-hrefprev60.dtsi ARM: ux500: fix MMC/SD card regression 2015-07-14 11:15:57 +02:00
ste-hrefv60plus-stuib.dts ARM: ux500: define serial port aliases 2015-07-14 11:15:42 +02:00
ste-hrefv60plus-tvk.dts ARM: ux500: define serial port aliases 2015-07-14 11:15:42 +02:00
ste-hrefv60plus.dtsi ARM: ux500: push down Rohm TS to STUIB 2015-11-17 09:37:09 +01:00
ste-nomadik-nhk15.dts ARM: nomadik: push accelerometer down to boards 2015-08-11 15:29:59 +02:00
ste-nomadik-pinctrl.dtsi
ste-nomadik-s8815.dts ARM: ux500: replace legacy *,wakeup property with wakeup-source 2015-11-17 09:37:09 +01:00
ste-nomadik-stn8815.dtsi ARM: nomadik: fix up SD/MMC DT settings 2016-02-04 13:24:08 -08:00
ste-snowball.dts ARM: ux500: Assign proper sensor IRQs for Snowball 2015-11-17 09:37:09 +01:00
ste-u300.dts ARM: u300: remove regulator-compatible usage 2015-11-17 14:53:12 +01:00
stih41x-b2000.dtsi ARM: STi: DT: STiH41x: Convert all uppercase non-defines to lowercase 2014-10-31 09:58:57 +01:00
stih41x-b2020.dtsi ARM: STi: DT: Enable mmc0 for both stih415 and stih416 SoCs 2014-10-31 09:59:03 +01:00
stih41x-b2020x.dtsi ARM: STi: DT: Enable mmc0 for both stih415 and stih416 SoCs 2014-10-31 09:59:03 +01:00
stih41x.dtsi ARM: sti: stih41x: Provide a proper header for this DTSI file 2014-05-21 14:27:16 +02:00
stih407-b2120.dts ARM: dts: Enable Ethernet on STi's B2120 boards 2015-10-15 13:45:56 +02:00
stih407-clock.dtsi ARM: STi: DT: Rename st_pll3200c32_407_c0_x into st_pll3200c32_cx_x 2015-07-22 11:41:33 +02:00
stih407-family.dtsi ARM: DT updates for v4.4 2015-11-10 15:06:26 -08:00
stih407-pinctrl.dtsi ARM: dts: Fix RGMII pinctrl timings 2015-10-15 13:45:46 +02:00
stih407.dtsi Highlights: 2015-10-06 16:25:00 +02:00
stih410-b2120.dts ARM: dts: Enable Ethernet on STi's B2120 boards 2015-10-15 13:45:56 +02:00
stih410-clock.dtsi ARM: STi: DT: Rename st_pll3200c32_407_c0_x into st_pll3200c32_cx_x 2015-07-22 11:41:33 +02:00
stih410-pinctrl.dtsi ARM: STi: DT: STiH410: Add pinctl config for usb controllers. 2014-11-18 12:54:55 +01:00
stih410.dtsi Highlights: 2015-10-06 16:25:00 +02:00
stih415-b2000.dts ARM: dts: Fix STi boards compatibles 2014-05-21 14:20:23 +02:00
stih415-b2020.dts ARM: dts: Fix STi boards compatibles 2014-05-21 14:20:23 +02:00
stih415-clock.dtsi ARM: STi: DT: STiH415: 415 DT Entry for clockgen A9 2014-05-21 14:27:14 +02:00
stih415-pinctrl.dtsi ARM: STi: DT: Add sdhci pin configuration for stih415 2014-10-31 09:59:02 +01:00
stih415.dtsi ARM: STi: DT: Move reset controller constants into common location 2015-08-03 13:13:44 +02:00
stih416-b2000.dts ARM: dts: Fix STi boards compatibles 2014-05-21 14:20:23 +02:00
stih416-b2020.dts ARM: STi: DT: STiH416: Change miphy356 node name to phy@fe382000 2014-11-18 12:54:56 +01:00
stih416-b2020e.dts ARM: STi: STiH416-b2020e: Enable PWM on the B2020 Rev-E 2015-05-13 10:41:41 +02:00
stih416-clock.dtsi ARM: STi: DT: STiH416: 416 DT Entry for clockgen A9/DDR/GPU 2014-05-21 14:27:11 +02:00
stih416-pinctrl.dtsi ARM: STi: STiH416: Add Pinctrl settings for PWM 2015-05-13 10:41:40 +02:00
stih416.dtsi ARM: STi: DT: Move reset controller constants into common location 2015-08-03 13:13:44 +02:00
stih418-b2199.dts ARM: dts: Enable Ethernet on STi's B2199 board 2015-10-15 13:45:59 +02:00
stih418-clock.dtsi ARM: STi: DT: Add support for stih418 A9 pll 2015-10-15 13:48:16 +02:00
stih418.dtsi ARM: DT: STi: STiH418: Fix mmc0 clock configuration 2015-09-30 11:18:01 +02:00
stihxxx-b2120.dtsi [media] c8sectpfe: Update binding to reset-gpios 2015-11-18 13:32:58 -02:00
stm32f429-disco.dts ARM: dts: Use stdout-path in STM32F429 Discovery board 2015-07-23 07:07:12 +02:00
stm32f429.dtsi ARM: dts: stm32f429: Adopt STM32 RNG driver 2015-10-14 22:23:37 +08:00
stm32429i-eval.dts ARM: dts: Add STM32429i-EVAL board support 2015-07-23 06:59:50 +02:00
sun4i-a10-a1000.dts ARM: sun4i: Enable audio-codec on Mele A1000 2015-10-22 10:55:52 +02:00
sun4i-a10-ba10-tvbox.dts ARM: dts: sun4i: Enable otg controller on the ba10-tvbox 2015-07-06 13:36:08 +02:00
sun4i-a10-chuwi-v7-cw0825.dts ARM: dts: sun4i: Enable i2c1 and i2c2 on the Chuwi V7-CW0825 tablet 2015-09-13 14:21:17 +02:00
sun4i-a10-cubieboard.dts ARM: sun4i: Enable cubieboard audio codec 2015-10-22 10:57:19 +02:00
sun4i-a10-gemei-g9.dts ARM: dts: sun4i: gemei-g9: Enable PA GPIO pin configuration 2015-12-18 22:19:18 +01:00
sun4i-a10-hackberry.dts ARM: dts: sun4i: Add A10 SRAM and SRAM controller 2015-06-01 11:13:26 +02:00
sun4i-a10-hyundai-a7hd.dts ARM: sunxi: dt: Remove the FSF address 2015-05-10 10:22:23 +02:00
sun4i-a10-inet1.dts ARM: dts: sun4i: Add touchscreen node to iNet1 tablet 2015-11-24 08:36:42 +01:00
sun4i-a10-inet9f-rev03.dts ARM: dts: sun4i: inet9f-rev03: Add support for game buttons / joysticks 2015-11-17 09:40:07 +01:00
sun4i-a10-inet97fv2.dts ARM: dts: sun4i: inet97fv2: Enable i2c1 and i2c2 controllers 2015-09-27 10:21:20 +02:00
sun4i-a10-itead-iteaduino-plus.dts ARM: dts: sun4i: Add Iteaduino Plus A10 2015-07-21 14:36:58 +02:00
sun4i-a10-jesurun-q5.dts ARM: dts: sun4i: Enable otg in host only mode on Jesurun Q5 2015-09-13 14:21:16 +02:00
sun4i-a10-marsboard.dts ARM: dts: sun4i: Enable audio codec on Marsboard A10. 2015-10-22 20:58:12 +02:00
sun4i-a10-mini-xplus.dts ARM: dts: sun4i: Enable otg controller on the mini-x 2015-07-06 13:36:09 +02:00
sun4i-a10-mk802.dts ARM: sunxi: dt: enable audio codec on mk802 2015-12-21 17:04:48 +01:00
sun4i-a10-mk802ii.dts ARM: sunxi: dt: Remove the FSF address 2015-05-10 10:22:23 +02:00
sun4i-a10-olinuxino-lime.dts dts: sunxi: add eeprom to A10 OLinuXino Lime board 2015-09-27 10:21:23 +02:00
sun4i-a10-pcduino.dts ARM: dts: sun4i: Enable USB DRC on pcDuino1/2 2015-10-11 19:06:22 +02:00
sun4i-a10-pcduino2.dts ARM: sun4i: dt: Add new LinkSprite pcDuino2 board 2015-10-11 18:50:55 +02:00
sun4i-a10-pov-protab2-ips9.dts ARM: dts: sun4i: Enable onboard codec used on the pov protab2-ips9 tablet 2015-12-18 22:18:19 +01:00
sun4i-a10.dtsi ARM: dts: sun4i: Add VE (Video Engine) module clock node 2015-12-08 11:06:25 +01:00
sun5i-a10s-auxtek-t003.dts ARM: dts: sun5i: Add support for the Auxtek-T003 HDMI stick 2015-09-27 10:21:18 +02:00
sun5i-a10s-auxtek-t004.dts ARM: dts: sun5i: Add i2c axp152 pmic support for Auxtek T004 boards 2015-11-20 17:41:57 +01:00
sun5i-a10s-mk802.dts ARM: sunxi: dt: Remove the FSF address 2015-05-10 10:22:23 +02:00
sun5i-a10s-olinuxino-micro.dts dts: sunxi: correct vendor prefix on OLinuXino a10s micro 2015-09-27 10:21:24 +02:00
sun5i-a10s-r7-tv-dongle.dts ARM: sunxi: dt: Remove the FSF address 2015-05-10 10:22:23 +02:00
sun5i-a10s-wobo-i5.dts ARM: dts: sun5i: Add dts file for the Wobo i5 top set box 2015-09-27 10:21:26 +02:00
sun5i-a10s.dtsi ARM: dts: sun5i: Add PWM controller node for A13 / A10s 2015-10-12 15:50:20 +02:00
sun5i-a13-empire-electronix-d709.dts ARM: dts: sun5i: Add dts file for the Empire Electronix D709 tablet 2015-12-21 17:10:18 +01:00
sun5i-a13-hsg-h702.dts ARM: dts: sun5i: hsg-h702: Enable USB OTG controller 2015-07-31 18:59:51 +02:00
sun5i-a13-inet-98v-rev2.dts ARM: dts: sun5i: Add dts file for inet98v_rev2 based tablets 2015-09-27 10:21:21 +02:00
sun5i-a13-olinuxino-micro.dts ARM: sunxi: dt: Remove the FSF address 2015-05-10 10:22:23 +02:00
sun5i-a13-olinuxino.dts ARM: dts: sun5i: Enable USB DRC on A13 OLinuxIno 2015-07-31 18:57:48 +02:00
sun5i-a13-q8-tablet.dts ARM: dts: sun5i: Add dts file for q8 formfactor a13 based tablets 2015-09-27 10:21:30 +02:00
sun5i-a13-utoo-p66.dts ARM: dts: sun5i: Enable onboard codec used on the UTOO P66 tablet 2015-12-18 22:18:16 +01:00
sun5i-a13.dtsi ARM: dts: sun5i: Add PWM controller node for A13 / A10s 2015-10-12 15:50:20 +02:00
sun5i-q8-common.dtsi ARM: dts: sun5i: Add backlight node to sun5i-q8-common.dtsi 2015-10-12 15:51:54 +02:00
sun5i-r8-chip.dts ARM: sun5i: chip: Enable the audio codec 2015-10-22 10:55:53 +02:00
sun5i-r8.dtsi ARM: sun5i: Add R8 DTSI 2015-10-11 19:08:49 +02:00
sun5i.dtsi ARM: sun5i: Add the Audio codec DT node 2015-10-21 22:43:27 +02:00
sun6i-a31-app4-evb1.dts ARM: sunxi: dt: Remove the FSF address 2015-05-10 10:22:23 +02:00
sun6i-a31-colombus.dts ARM: dts: sun6i: Turn on gmac on Colombus 2015-10-13 20:41:49 +02:00
sun6i-a31-hummingbird.dts ARM: dts: sun6i: hummingbird: Enable AXP221 DC5LDO regulator as "vdd-cpus" 2015-10-13 20:46:36 +02:00
sun6i-a31-i7.dts ARM: sunxi: dt: Remove the FSF address 2015-05-10 10:22:23 +02:00
sun6i-a31-m9.dts ARM: dts: sun6i: Add a dts file for the Mele A1000G quad top set box 2015-06-02 23:39:46 +02:00
sun6i-a31-mele-a1000g-quad.dts ARM: dts: sun6i: Enable USB DRC on the Mele A1000G quad 2015-07-06 13:35:53 +02:00
sun6i-a31.dtsi ARM: dts: sun6i: Add simplefb node labels to reference at board level 2015-10-23 08:04:49 +02:00
sun6i-a31s-cs908.dts ARM: dts: sun6i: Enable otg controller on the cs908 2015-07-06 13:36:10 +02:00
sun6i-a31s-primo81.dts ARM: dts: sunxi: sun6i-a31s-primo81.dts: add touchscreen axis swapping property 2015-11-17 09:40:49 +01:00
sun6i-a31s-sina31s-core.dtsi ARM: dts: sun6i: Add support for Sinlinx A31s SDK board 2015-10-19 20:04:08 +02:00
sun6i-a31s-sina31s.dts ARM: dts: sun6i: Add support for Sinlinx A31s SDK board 2015-10-19 20:04:08 +02:00
sun6i-a31s-sinovoip-bpi-m2.dts ARM: dts: sun6i: Add a dts file for the Sinovoip BPI-M2 board 2015-10-17 18:24:11 +02:00
sun6i-a31s-yones-toptech-bs1078-v2.dts dts: sun6i: yones toptech bs1078 v2: Add AXP221 support to dts 2015-11-17 09:40:07 +01:00
sun6i-a31s.dtsi ARM: sunxi: dt: Remove the FSF address 2015-05-10 10:22:23 +02:00
sun7i-a20-bananapi.dts ARM: dts: sun7i: Enable audio codec on BananaPi 2015-11-23 20:53:08 +01:00
sun7i-a20-bananapro.dts ARM: dts: sun7i: Add uart4 support for BananaPro, disable uart2 2015-06-01 11:08:29 +02:00
sun7i-a20-cubieboard2.dts ARM: sun7i: Enable cubieboard2 audio codec 2015-10-22 10:55:47 +02:00
sun7i-a20-cubietruck.dts ARM: sun7i: dt: enable audio codec on Cubietruck 2015-10-22 10:55:33 +02:00
sun7i-a20-hummingbird.dts ARM: sunxi: dt: Split the SPI pinctrl groups 2015-05-10 10:23:56 +02:00
sun7i-a20-i12-tvbox.dts ARM: sunxi: dt: Convert users to the PIO interrupts binding 2015-07-28 14:41:50 +02:00
sun7i-a20-icnova-swac.dts arm: sun7i: Add sun7i-a20-icnova-swac.dts 2015-11-17 09:40:07 +01:00
sun7i-a20-m3.dts ARM: sunxi: dt: Remove the FSF address 2015-05-10 10:22:23 +02:00
sun7i-a20-mk808c.dts ARM: dt: sun7i: Enable audio codec on MK808C 2015-12-21 17:05:06 +01:00
sun7i-a20-olimex-som-evb.dts ARM: dts: sun7i: Olimex A20-SOM-EVB: Enable mmc3 (baseboard SD socket) 2015-12-11 09:21:29 +01:00
sun7i-a20-olinuxino-lime.dts dts: sunxi: add eeprom to A20 OLinuXino Lime board 2015-09-27 10:21:24 +02:00
sun7i-a20-olinuxino-lime2.dts dts: sunxi: add eeprom to A20 OLinuXino Lime2 board 2015-09-27 10:21:25 +02:00
sun7i-a20-olinuxino-micro.dts dts: sunxi: add eeprom to A20 OLinuXino micro board 2015-09-27 10:21:25 +02:00
sun7i-a20-orangepi-mini.dts ARM: dts: sun7i: Enable audio codec on OrangePi Mini 2015-11-23 20:53:05 +01:00
sun7i-a20-orangepi.dts ARM: dts: sun7i: Enable USB DRC on the Orange pi 2015-09-29 09:55:00 +02:00
sun7i-a20-pcduino3-nano.dts ARM: sun7i: dt: Enable audio codec on pcDuino V3 Nano 2015-11-17 09:40:07 +01:00
sun7i-a20-pcduino3.dts ARM: dts: sun7i: Enable audio codec on pcDuino 2015-11-17 09:40:07 +01:00
sun7i-a20-wexler-tab7200.dts ARM: dts: sun7i: Add PA gpio pin to Wexler TAB7200 tablet 2015-12-21 16:45:08 +01:00
sun7i-a20-wits-pro-a20-dkt.dts ARM: dts: sun7i: Enable gmac on Wits Pro A20 DKT 2015-12-21 17:08:36 +01:00
sun7i-a20.dtsi ARM: dts: sun7i: Add VE (Video Engine) module clock node 2015-12-08 11:06:28 +01:00
sun8i-a23-a33.dtsi ARM: dts: sun8i: Add simplefb node labels to reference at board level 2015-11-20 12:13:23 +01:00
sun8i-a23-evb.dts ARM: sun8i: Introduce A23 Evaluation Board Support 2015-06-01 11:08:24 +02:00
sun8i-a23-gt90h-v4.dts ARM: dts: sun8i: Add support for qt90h-v4 tablets 2015-09-27 10:21:16 +02:00
sun8i-a23-ippo-q8h-v1.2.dts ARM: dts: sun8i: Make ippo-q8h-v*.dts a symlink to q8-tablet.dts 2015-10-13 20:40:57 +02:00
sun8i-a23-ippo-q8h-v5.dts ARM: dts: sun8i: Make ippo-q8h-v*.dts a symlink to q8-tablet.dts 2015-10-13 20:40:57 +02:00
sun8i-a23-q8-tablet.dts ARM: dts: sun8i: Add sun8i-a23-q8-tablet.dts file 2015-10-13 20:40:17 +02:00
sun8i-a23.dtsi ARM: sun8i: A23: Add missing msgbox gate 2015-09-27 10:21:31 +02:00
sun8i-a33-et-q8-v1.6.dts ARM: dts: sun8i: Make et-q8-v1.6.dts a symlink to q8-tablet.dts 2015-10-13 20:41:28 +02:00
sun8i-a33-ga10h-v1.1.dts ARM: dts: sun8i: Enable USB host on GA10H-A33 tablets 2015-07-06 13:36:01 +02:00
sun8i-a33-ippo-q8h-v1.2.dts ARM: dts: sun8i: Make ippo-q8h-v1.2.dts a symlink to q8-tablet.dts 2015-09-28 10:33:56 +02:00
sun8i-a33-q8-tablet.dts ARM: dts: sun8i: Add sun8i-a33-q8-tablet.dts file 2015-09-28 10:33:44 +02:00
sun8i-a33-sinlinx-sina33.dts ARM: dts: sun8i: sinlinx-sina33: Enable Reduced Serial Bus controller 2015-10-07 10:56:32 +01:00
sun8i-a33.dtsi ARM: dts: sun8i-a33: Add security system crypto engine clock and device nodes 2015-09-27 10:21:32 +02:00
sun8i-h3-orangepi-plus.dts ARM: dts: sun8i: Add Orange Pi Plus support 2015-12-08 09:32:47 +01:00
sun8i-h3.dtsi ARM: dts: sunxi: Add Allwinner H3 DTSI 2015-12-08 09:28:24 +01:00
sun8i-q8-common.dtsi ARM: dts: sun8i: q8-common: Enable RSB controller for A23/A33 Q8 tablets 2015-10-07 10:56:16 +01:00
sun9i-a80-cubieboard4.dts ARM: dts: sun9i: cubieboard4: Enable Reduced Serial Bus controller 2015-12-10 18:04:36 +01:00
sun9i-a80-optimus.dts ARM: dts: sun9i: optimus: Enable Reduced Serial Bus controller 2015-12-01 14:10:16 +01:00
sun9i-a80.dtsi ARM: dts: sun9i: Add NMI controller device node 2015-12-03 10:45:58 +01:00
sunxi-common-regulators.dtsi ARM: dts: sunxi: Add regulator-boot-on to usb host port regulator nodes 2015-07-06 13:36:06 +02:00
sunxi-q8-common.dtsi ARM: dts: sunxi: Enable PWM controller on Q8 format tablets 2015-10-12 15:51:32 +02:00
tango4-common.dtsi ARM: dts: tango4: Initial device trees 2015-12-22 15:12:07 -08:00
tango4-smp8758.dtsi ARM: dts: tango4: Initial device trees 2015-12-22 15:12:07 -08:00
tango4-vantage-1172.dts ARM: dts: tango4: Initial device trees 2015-12-22 15:12:07 -08:00
tegra20-colibri-512.dtsi
tegra20-harmony.dts ARM: dts: tegra: move serial aliases to per-board 2014-11-13 16:58:52 +01:00
tegra20-iris-512.dts ARM: dts: tegra: move serial aliases to per-board 2014-11-13 16:58:52 +01:00
tegra20-medcom-wide.dts ARM: dts: tegra: move serial aliases to per-board 2014-11-13 16:58:52 +01:00
tegra20-paz00.dts ARM: dts: tegra: move serial aliases to per-board 2014-11-13 16:58:52 +01:00
tegra20-plutux.dts ARM: tegra: tamonten: add the base board regulators 2014-07-17 15:02:09 +02:00
tegra20-seaboard.dts ARM: tegra: Add missing HDMI +5V regulator 2015-05-04 14:01:55 +02:00
tegra20-tamonten.dtsi ARM: dts: tegra: move serial aliases to per-board 2014-11-13 16:58:52 +01:00
tegra20-tec.dts ARM: tegra: tamonten: add the base board regulators 2014-07-17 15:02:09 +02:00
tegra20-trimslice.dts ARM: dts: tegra: move serial aliases to per-board 2014-11-13 16:58:52 +01:00
tegra20-ventana.dts ARM: dts: tegra: move serial aliases to per-board 2014-11-13 16:58:52 +01:00
tegra20-whistler.dts ARM: dts: tegra: move serial aliases to per-board 2014-11-13 16:58:52 +01:00
tegra20.dtsi ARM: DT updates for v4.4 2015-11-10 15:06:26 -08:00
tegra30-apalis-eval.dts ARM: tegra: apalis-eval: Fix power/wakeup key 2015-09-15 11:22:38 +02:00
tegra30-apalis.dtsi ARM: tegra: apalis: Properly align pin names 2015-09-15 11:22:36 +02:00
tegra30-beaver.dts ARM: tegra: Use generated pinmux for Beaver board 2015-03-24 10:51:14 +01:00
tegra30-cardhu-a02.dts
tegra30-cardhu-a04.dts
tegra30-cardhu.dtsi ARM: tegra: Cardhu device-tree comment spelling fix 2015-05-05 13:42:56 +02:00
tegra30-colibri-eval-v3.dts ARM: tegra: colibri-eval: Fix power/wakeup key 2015-09-15 11:22:46 +02:00
tegra30-colibri.dtsi ARM: tegra: colibri: Properly align pin names 2015-09-15 11:22:44 +02:00
tegra30.dtsi ARM: DT updates for v4.4 2015-11-10 15:06:26 -08:00
tegra114-dalmore.dts ARM: dts: tegra: move serial aliases to per-board 2014-11-13 16:58:52 +01:00
tegra114-roth.dts ARM: tegra: roth: Fix SD card VDD_IO regulator 2014-11-13 16:58:53 +01:00
tegra114-tn7.dts ARM: tegra: Remove eMMC vmmc property for roth/tn7 2014-11-13 16:58:52 +01:00
tegra114.dtsi ARM: tegra: Comment out gpio-ranges properties 2015-10-15 17:58:43 +02:00
tegra124-jetson-tk1-emc.dtsi ARM: tegra: Add EMC timings to Jetson TK1 device tree 2015-03-30 11:43:38 +02:00
tegra124-jetson-tk1.dts ARM: tegra: jetson-tk1: Add GK20A GPU DT node 2015-08-21 18:44:27 +02:00
tegra124-nyan-big-emc.dtsi ARM: tegra: Add EMC timings to Nyan Big device tree 2015-03-30 11:43:39 +02:00
tegra124-nyan-big.dts ARM: tegra: Add EMC timings to Nyan Big device tree 2015-03-30 11:43:39 +02:00
tegra124-nyan-blaze-emc.dtsi ARM: tegra: Add EMC timings to Nyan Blaze device tree 2015-03-30 11:43:39 +02:00
tegra124-nyan-blaze.dts ARM: tegra: Add EMC timings to Nyan Blaze device tree 2015-03-30 11:43:39 +02:00
tegra124-nyan.dtsi ARM: tegra: Fix suspend hang on Tegra124 Chromebooks 2015-12-22 15:41:37 -08:00
tegra124-venice2.dts ARM: tegra: venice2: Add GK20A GPU DT node 2015-08-21 18:44:26 +02:00
tegra124.dtsi ARM: DT updates for v4.4 2015-11-10 15:06:26 -08:00
tny_a9g20.dts
tny_a9260.dts
tny_a9260_common.dtsi ARM: at91/dt: tny_a9260: define crystals frequencies 2014-07-09 19:05:15 +02:00
tny_a9263.dts ARM: at91/dt: tny_a9263: define crystals frequencies 2014-07-09 19:05:22 +02:00
tps6507x.dtsi
tps65217.dtsi Revert "regulator: tps65217: remove tps65217.dtsi file" 2016-02-19 09:05:53 -08:00
tps65910.dtsi
twl4030.dtsi Revert "ARM: dts: twl4030: Add iio properties for bci subnode" 2015-11-06 21:17:53 +01:00
twl4030_omap3.dtsi ARM: dts: twl4030: Use OMAP3_CORE1_IOPAD pinmux macro 2015-11-30 08:43:29 -08:00
twl6030.dtsi ARM: dts: Remove twl6030 clk32g "regulator" 2014-08-25 16:15:34 -07:00
twl6030_omap4.dtsi ARM: dts: twl6030: Use OMAP4_IOPAD pinmux macro 2015-11-30 08:43:31 -08:00
uniphier-common32.dtsi ARM: dts: uniphier: factor out common nodes to uniphier-common32.dtsi 2015-12-12 00:24:50 +01:00
uniphier-ph1-ld4-ref.dts ARM: dts: uniphier: use stdout-path instead of console 2015-10-23 22:10:42 +02:00
uniphier-ph1-ld4.dtsi ARM: dts: uniphier: factor out common nodes to uniphier-common32.dtsi 2015-12-12 00:24:50 +01:00
uniphier-ph1-ld6b-ref.dts ARM: DT updates for v4.4 2015-11-10 15:06:26 -08:00
uniphier-ph1-ld6b.dtsi ARM: dts: uniphier: fix a typo in comment block 2015-12-31 17:28:19 +01:00
uniphier-ph1-pro4-ref.dts ARM: dts: uniphier: use stdout-path instead of console 2015-10-23 22:10:42 +02:00
uniphier-ph1-pro4.dtsi ARM: dts: uniphier: factor out common nodes to uniphier-common32.dtsi 2015-12-12 00:24:50 +01:00
uniphier-ph1-pro5.dtsi ARM: dts: uniphier: factor out common nodes to uniphier-common32.dtsi 2015-12-12 00:24:50 +01:00
uniphier-ph1-sld3-ref.dts ARM: dts: uniphier: use stdout-path instead of console 2015-10-23 22:10:42 +02:00
uniphier-ph1-sld3.dtsi ARM: dts: uniphier: add system-bus-controller nodes 2015-10-31 01:58:06 +00:00
uniphier-ph1-sld8-ref.dts ARM: dts: uniphier: use stdout-path instead of console 2015-10-23 22:10:42 +02:00
uniphier-ph1-sld8.dtsi ARM: dts: uniphier: factor out common nodes to uniphier-common32.dtsi 2015-12-12 00:24:50 +01:00
uniphier-pinctrl.dtsi ARM: dts: uniphier: add I2C controller device nodes 2015-08-11 15:09:21 +02:00
uniphier-proxstream2-gentil.dts ARM: dts: uniphier: add I2C aliases for ProXstream2 boards 2015-10-26 10:34:40 +09:00
uniphier-proxstream2-vodka.dts ARM: dts: uniphier: add I2C aliases for ProXstream2 boards 2015-10-26 10:34:40 +09:00
uniphier-proxstream2.dtsi ARM: dts: uniphier: factor out common nodes to uniphier-common32.dtsi 2015-12-12 00:24:50 +01:00
uniphier-ref-daughter.dtsi ARM: dts: UniPhier: add reference daughter board 2015-08-11 15:20:56 +02:00
uniphier-support-card.dtsi ARM: dts: UniPhier: add support for UniPhier SoCs and boards 2015-05-12 16:56:27 +02:00
usb_a9g20-dab-mmx.dtsi
usb_a9g20.dts
usb_a9g20_common.dtsi
usb_a9g20_lpw.dts
usb_a9260.dts
usb_a9260_common.dtsi ARM: at91/dt: replace gpio-key,wakeup with wakeup-source property 2015-11-16 15:53:04 +01:00
usb_a9263.dts ARM: at91/dt: replace gpio-key,wakeup with wakeup-source property 2015-11-16 15:53:04 +01:00
versatile-ab.dts ARM: DT updates for v4.5 2016-01-20 18:16:29 -08:00
versatile-pb.dts ARM: versatile: fix MMC/SD interrupt assignment 2016-01-07 06:32:19 +01:00
vexpress-v2m-rs1.dtsi ARM: dts: vexpress: Use assigned-clock-parents for sp810 2015-08-18 13:17:27 -07:00
vexpress-v2m.dtsi ARM: dts: vexpress: Use assigned-clock-parents for sp810 2015-08-18 13:17:27 -07:00
vexpress-v2p-ca5s.dts dts: ca5: add the global timer for the A5 2014-04-22 11:44:26 +02:00
vexpress-v2p-ca9.dts ARM: vexpress/ca9: Add interrupt-affinity to the PMU node 2015-05-12 16:39:43 +02:00
vexpress-v2p-ca15-tc1.dts
vexpress-v2p-ca15_a7.dts arm: dts: vexpress: add missing CCI PMU device node to TC2 2015-07-08 14:44:55 -07:00
vf-colibri-eval-v3.dtsi ARM: dts: vf-colibri: define stdout-path property 2015-08-11 23:15:22 +08:00
vf-colibri.dtsi ARM: dts: vf-colibri: add CAN support 2015-12-22 20:43:38 +08:00
vf500-colibri-eval-v3.dts ARM: dts: vf500-colibri: Add device tree node for touchscreen support 2015-10-19 22:45:19 +08:00
vf500-colibri.dtsi ARM: dts: vf500-colibri: Add device tree node for touchscreen support 2015-10-19 22:45:19 +08:00
vf500.dtsi ARM: dts: vf610: add Miscellaneous System Control Module (MSCM) 2015-03-30 16:43:48 +08:00
vf610-colibri-eval-v3.dts ARM: dts: vf500-colibri: add Colibri VF50 support 2014-11-23 15:08:10 +08:00
vf610-colibri.dtsi ARM: dts: vf610: use reset values for L2 cache latencies 2015-12-11 21:32:47 +08:00
vf610-cosmic.dts ARM: dts: vf610: Nomenclature fixup for PTC12 pin used in RMII mode. 2015-06-03 15:04:00 +08:00
vf610-pinfunc.h ARM: dts: vf610: Nomenclature fixup for PTC12 pin used in RMII mode. 2015-06-03 15:04:00 +08:00
vf610-twr.dts ARM: dts: vf610twr: add NAND flash controller peripherial 2015-10-19 22:45:24 +08:00
vf610.dtsi ARM: dts: vf610: use reset values for L2 cache latencies 2015-12-11 21:32:47 +08:00
vf610m4-colibri.dts ARM: dts: add support for Vybrid running on Cortex-M4 2015-05-20 23:08:11 +02:00
vf610m4-cosmic.dts ARM: dts: vf6xx: Cosmic+: M4(nommu) initial support 2015-12-22 20:42:25 +08:00
vf610m4.dtsi ARM: dts: add support for Vybrid running on Cortex-M4 2015-05-20 23:08:11 +02:00
vfxxx.dtsi ARM: dts: vfxxx: Include support for dspi[23] functionality. 2015-12-22 20:42:24 +08:00
vt8500-bv07.dts
vt8500.dtsi net: via-rhine: add OF bus binding 2014-04-23 15:24:06 -04:00
wm8505-ref.dts
wm8505.dtsi dts: vt8500: Fix errors in SDHC node for WM8505 2016-01-07 16:04:32 +01:00
wm8650-mid.dts
wm8650.dtsi dts: vt8500: Add SDHC node to DTS file for WM8650 2016-01-07 16:02:53 +01:00
wm8750-apc8750.dts
wm8750.dtsi ARM: dts: WM8750: fix cpu compatible value 2015-10-23 21:59:38 +02:00
wm8850-w70v2.dts
wm8850.dtsi net: via-rhine: add OF bus binding 2014-04-23 15:24:06 -04:00
xenvm-4.2.dts
zx296702-ad1.dts ARM: dts: zx: add an initial zx296702 dts and doc 2015-06-11 16:18:30 -07:00
zx296702.dtsi ARM: dts: zx: add an initial zx296702 dts and doc 2015-06-11 16:18:30 -07:00
zynq-7000.dtsi ARM: dt: zynq: Add labels to cpu nodes to allow overriding OPPs. 2015-12-14 09:48:39 +01:00
zynq-parallella.dts ARM: dts: zynq: Fix stdout-path and bootargs 2015-05-28 08:44:56 +02:00
zynq-zc702.dts ARM: dts: zynq: replace gpio-key,wakeup with wakeup-source property 2015-12-14 09:30:03 +01:00
zynq-zc706.dts ARM: dts: zynq: Fix stdout-path and bootargs 2015-05-28 08:44:56 +02:00
zynq-zed.dts ARM: dts: zynq: Fix stdout-path and bootargs 2015-05-28 08:44:56 +02:00
zynq-zybo.dts ARM: dts: zynq: Fix stdout-path and bootargs 2015-05-28 08:44:56 +02:00