forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'dt-for-3.17' of git://git.kernel.org/pub/scm/linux/kernel/…
…git/arm/arm-soc Pull ARM SoC device-tree changes from Olof Johansson: "Unlike the board branch, this keeps having large sets of changes for every release, but that's quite expected and is so far working well. Most of this is plumbing for various device bindings and new platforms, but there's also a bit of cleanup and code removal for things that are moved from platform code to DT contents (some OMAP clock code in particular). There's also a pinctrl driver for tegra here (appropriately acked), that's introduced this way to make it more bisectable. I'm happy to say that there were no conflicts at all with this branch this release, which means that changes are flowing through our tree as expected instead of merged through driver maintainers (or at least not done with conflicts). There are several new boards added, and a couple of SoCs. In no particular order: - Rockchip RK3288 SoC support, including DTS for a dev board that they have seeded with some community developers. - Better support for Hardkernel Exynos4-based ODROID boards. - CCF conversions (and dtsi contents) for several Renesas platforms. - Gumstix Pepper (TI AM335x) board support - TI eval board support for AM437x - Allwinner A23 SoC, very similar to existing ones which mostly has resulted in DT changes for support. Also includes support for an Ippo tablet with the chipset. - Allwinner A31 Hummingbird board support, not to be confused with the SolidRun i.MX-based Hummingboard. - Tegra30 Apalis board support" * tag 'dt-for-3.17' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (334 commits) ARM: dts: Enable USB host0 (EHCI) on rk3288-evb ARM: dts: add rk3288 ehci usb devices ARM: dts: Turn on USB host vbus on rk3288-evb ARM: tegra: apalis t30: fix device tree compatible node ARM: tegra: paz00: Fix some indentation inconsistencies ARM: zynq: DT: Clarify Xilinx Zynq platform ARM: dts: rockchip: add watchdog node ARM: dts: rockchip: remove pinctrl setting from radxarock uart2 ARM: dts: Add missing pinctrl for uart0/1 for exynos3250 ARM: dts: Remove duplicate 'interrput-parent' property for exynos3250 ARM: dts: Add TMU dt node to monitor the temperature for exynos3250 ARM: dts: Specify MAX77686 pmic interrupt for exynos5250-smdk5250 ARM: dts: cypress,cyapa trackpad is exynos5250-Snow only ARM: dts: max77686 is exynos5250-snow only ARM: zynq: DT: Remove DMA from board DTs ARM: zynq: DT: Add CAN node ARM: EXYNOS: Add exynos5260 PMU compatible string to DT match table ARM: dts: Add PMU DT node for exynos5260 SoC ARM: EXYNOS: Add support for Exynos5410 PMU ARM: dts: Add PMU to exynos5410 ...
- Loading branch information
Showing
297 changed files
with
20,682 additions
and
6,825 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Adapteva Platforms Device Tree Bindings | ||
--------------------------------------- | ||
|
||
Parallella board | ||
|
||
Required root node properties: | ||
- compatible = "adapteva,parallella"; |
14 changes: 14 additions & 0 deletions
14
Documentation/devicetree/bindings/arm/armada-380-mpcore-soc-ctrl.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Marvell Armada 38x CA9 MPcore SoC Controller | ||
============================================ | ||
|
||
Required properties: | ||
|
||
- compatible: Should be "marvell,armada-380-mpcore-soc-ctrl". | ||
|
||
- reg: should be the register base and length as documented in the | ||
datasheet for the CA9 MPcore SoC Control registers | ||
|
||
mpcore-soc-ctrl@20d20 { | ||
compatible = "marvell,armada-380-mpcore-soc-ctrl"; | ||
reg = <0x20d20 0x6c>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
Documentation/devicetree/bindings/arm/bcm/brcm,bcm11351-cpu-method
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
Broadcom Kona Family CPU Enable Method | ||
-------------------------------------- | ||
This binding defines the enable method used for starting secondary | ||
CPUs in the following Broadcom SoCs: | ||
BCM11130, BCM11140, BCM11351, BCM28145, BCM28155, BCM21664 | ||
|
||
The enable method is specified by defining the following required | ||
properties in the "cpus" device tree node: | ||
- enable-method = "brcm,bcm11351-cpu-method"; | ||
- secondary-boot-reg = <...>; | ||
|
||
The secondary-boot-reg property is a u32 value that specifies the | ||
physical address of the register used to request the ROM holding pen | ||
code release a secondary CPU. The value written to the register is | ||
formed by encoding the target CPU id into the low bits of the | ||
physical start address it should jump to. | ||
|
||
Example: | ||
cpus { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
enable-method = "brcm,bcm11351-cpu-method"; | ||
secondary-boot-reg = <0x3500417c>; | ||
|
||
cpu0: cpu@0 { | ||
device_type = "cpu"; | ||
compatible = "arm,cortex-a9"; | ||
reg = <0>; | ||
}; | ||
|
||
cpu1: cpu@1 { | ||
device_type = "cpu"; | ||
compatible = "arm,cortex-a9"; | ||
reg = <1>; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
ARM Broadcom STB platforms Device Tree Bindings | ||
----------------------------------------------- | ||
Boards with Broadcom Brahma15 ARM-based BCMxxxx (generally BCM7xxx variants) | ||
SoC shall have the following DT organization: | ||
|
||
Required root node properties: | ||
- compatible: "brcm,bcm<chip_id>", "brcm,brcmstb" | ||
|
||
example: | ||
/ { | ||
#address-cells = <2>; | ||
#size-cells = <2>; | ||
model = "Broadcom STB (bcm7445)"; | ||
compatible = "brcm,bcm7445", "brcm,brcmstb"; | ||
|
||
Further, syscon nodes that map platform-specific registers used for general | ||
system control is required: | ||
|
||
- compatible: "brcm,bcm<chip_id>-sun-top-ctrl", "syscon" | ||
- compatible: "brcm,bcm<chip_id>-hif-cpubiuctrl", "syscon" | ||
- compatible: "brcm,bcm<chip_id>-hif-continuation", "syscon" | ||
|
||
example: | ||
rdb { | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
compatible = "simple-bus"; | ||
ranges = <0 0x00 0xf0000000 0x1000000>; | ||
|
||
sun_top_ctrl: syscon@404000 { | ||
compatible = "brcm,bcm7445-sun-top-ctrl", "syscon"; | ||
reg = <0x404000 0x51c>; | ||
}; | ||
|
||
hif_cpubiuctrl: syscon@3e2400 { | ||
compatible = "brcm,bcm7445-hif-cpubiuctrl", "syscon"; | ||
reg = <0x3e2400 0x5b4>; | ||
}; | ||
|
||
hif_continuation: syscon@452000 { | ||
compatible = "brcm,bcm7445-hif-continuation", "syscon"; | ||
reg = <0x452000 0x100>; | ||
}; | ||
}; | ||
|
||
Lastly, nodes that allow for support of SMP initialization and reboot are | ||
required: | ||
|
||
smpboot | ||
------- | ||
Required properties: | ||
|
||
- compatible | ||
The string "brcm,brcmstb-smpboot". | ||
|
||
- syscon-cpu | ||
A phandle / integer array property which lets the BSP know the location | ||
of certain CPU power-on registers. | ||
|
||
The layout of the property is as follows: | ||
o a phandle to the "hif_cpubiuctrl" syscon node | ||
o offset to the base CPU power zone register | ||
o offset to the base CPU reset register | ||
|
||
- syscon-cont | ||
A phandle pointing to the syscon node which describes the CPU boot | ||
continuation registers. | ||
o a phandle to the "hif_continuation" syscon node | ||
|
||
example: | ||
smpboot { | ||
compatible = "brcm,brcmstb-smpboot"; | ||
syscon-cpu = <&hif_cpubiuctrl 0x88 0x178>; | ||
syscon-cont = <&hif_continuation>; | ||
}; | ||
|
||
reboot | ||
------- | ||
Required properties | ||
|
||
- compatible | ||
The string property "brcm,brcmstb-reboot". | ||
|
||
- syscon | ||
A phandle / integer array that points to the syscon node which describes | ||
the general system reset registers. | ||
o a phandle to "sun_top_ctrl" | ||
o offset to the "reset source enable" register | ||
o offset to the "software master reset" register | ||
|
||
example: | ||
reboot { | ||
compatible = "brcm,brcmstb-reboot"; | ||
syscon = <&sun_top_ctrl 0x304 0x308>; | ||
}; |
41 changes: 41 additions & 0 deletions
41
Documentation/devicetree/bindings/arm/cpu-enable-method/marvell,berlin-smp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
======================================================== | ||
Secondary CPU enable-method "marvell,berlin-smp" binding | ||
======================================================== | ||
|
||
This document describes the "marvell,berlin-smp" method for enabling secondary | ||
CPUs. To apply to all CPUs, a single "marvell,berlin-smp" enable method should | ||
be defined in the "cpus" node. | ||
|
||
Enable method name: "marvell,berlin-smp" | ||
Compatible machines: "marvell,berlin2" and "marvell,berlin2q" | ||
Compatible CPUs: "marvell,pj4b" and "arm,cortex-a9" | ||
Related properties: (none) | ||
|
||
Note: | ||
This enable method needs valid nodes compatible with "arm,cortex-a9-scu" and | ||
"marvell,berlin-cpu-ctrl"[1]. | ||
|
||
Example: | ||
|
||
cpus { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
enable-method = "marvell,berlin-smp"; | ||
|
||
cpu@0 { | ||
compatible = "marvell,pj4b"; | ||
device_type = "cpu"; | ||
next-level-cache = <&l2>; | ||
reg = <0>; | ||
}; | ||
|
||
cpu@1 { | ||
compatible = "marvell,pj4b"; | ||
device_type = "cpu"; | ||
next-level-cache = <&l2>; | ||
reg = <1>; | ||
}; | ||
}; | ||
|
||
-- | ||
[1] arm/marvell,berlin.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
OMAP PRCM bindings | ||
|
||
Power Reset and Clock Manager lists the device clocks and clockdomains under | ||
a DT hierarchy. Each TI SoC can have multiple PRCM entities listed for it, | ||
each describing one module and the clock hierarchy under it. see [1] for | ||
documentation about the individual clock/clockdomain nodes. | ||
|
||
[1] Documentation/devicetree/bindings/clock/ti/* | ||
|
||
Required properties: | ||
- compatible: Must be one of: | ||
"ti,am3-prcm" | ||
"ti,am3-scrm" | ||
"ti,am4-prcm" | ||
"ti,am4-scrm" | ||
"ti,omap2-prcm" | ||
"ti,omap2-scrm" | ||
"ti,omap3-prm" | ||
"ti,omap3-cm" | ||
"ti,omap3-scrm" | ||
"ti,omap4-cm1" | ||
"ti,omap4-prm" | ||
"ti,omap4-cm2" | ||
"ti,omap4-scrm" | ||
"ti,omap5-prm" | ||
"ti,omap5-cm-core-aon" | ||
"ti,omap5-scrm" | ||
"ti,omap5-cm-core" | ||
"ti,dra7-prm" | ||
"ti,dra7-cm-core-aon" | ||
"ti,dra7-cm-core" | ||
- reg: Contains PRCM module register address range | ||
(base address and length) | ||
- clocks: clocks for this module | ||
- clockdomains: clockdomains for this module | ||
|
||
Example: | ||
|
||
cm: cm@48004000 { | ||
compatible = "ti,omap3-cm"; | ||
reg = <0x48004000 0x4000>; | ||
|
||
cm_clocks: clocks { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
}; | ||
|
||
cm_clockdomains: clockdomains { | ||
}; | ||
} | ||
|
||
&cm_clocks { | ||
omap2_32k_fck: omap_32k_fck { | ||
#clock-cells = <0>; | ||
compatible = "fixed-clock"; | ||
clock-frequency = <32768>; | ||
}; | ||
}; | ||
|
||
&cm_clockdomains { | ||
core_l3_clkdm: core_l3_clkdm { | ||
compatible = "ti,clockdomain"; | ||
clocks = <&sdrc_ick>; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Xilinx Zynq EP107 Emulation Platform board | ||
Xilinx Zynq Platforms Device Tree Bindings | ||
|
||
This board is an emulation platform for the Zynq product which is | ||
based on an ARM Cortex A9 processor. | ||
Boards with Zynq-7000 SOC based on an ARM Cortex A9 processor | ||
shall have the following properties. | ||
|
||
Required root node properties: | ||
- compatible = "xlnx,zynq-ep107"; | ||
- compatible = "xlnx,zynq-7000"; |
Oops, something went wrong.