-
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.
- Loading branch information
Arnd Bergmann
committed
Nov 2, 2011
1 parent
4b4f549
commit ed07d60
Showing
635 changed files
with
13,401 additions
and
7,689 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 8bcb97659656042f3132b2814b19709856aa1335 | ||
refs/heads/master: abc3f126ac736280c68db6472eb0040ddf6e1b1f |
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,8 @@ | ||
Calxeda Highbank Platforms Device Tree Bindings | ||
----------------------------------------------- | ||
|
||
Boards with Calxeda Cortex-A9 based Highbank SOC shall have the following | ||
properties. | ||
|
||
Required root node properties: | ||
- compatible = "calxeda,highbank"; |
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,6 +1,26 @@ | ||
Freescale i.MX Platforms Device Tree Bindings | ||
----------------------------------------------- | ||
|
||
i.MX51 Babbage Board | ||
Required root node properties: | ||
- compatible = "fsl,imx51-babbage", "fsl,imx51"; | ||
|
||
i.MX53 Automotive Reference Design Board | ||
Required root node properties: | ||
- compatible = "fsl,imx53-ard", "fsl,imx53"; | ||
|
||
i.MX53 Evaluation Kit | ||
Required root node properties: | ||
- compatible = "fsl,imx53-evk", "fsl,imx53"; | ||
|
||
i.MX53 Quick Start Board | ||
Required root node properties: | ||
- compatible = "fsl,imx53-qsb", "fsl,imx53"; | ||
|
||
i.MX53 Smart Mobile Reference Design Board | ||
Required root node properties: | ||
- compatible = "fsl,imx53-smd", "fsl,imx53"; | ||
|
||
i.MX6 Quad SABRE Automotive Board | ||
Required root node properties: | ||
- compatible = "fsl,imx6q-sabreauto", "fsl,imx6q"; |
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,44 @@ | ||
* ARM L2 Cache Controller | ||
|
||
ARM cores often have a separate level 2 cache controller. There are various | ||
implementations of the L2 cache controller with compatible programming models. | ||
The ARM L2 cache representation in the device tree should be done as follows: | ||
|
||
Required properties: | ||
|
||
- compatible : should be one of: | ||
"arm,pl310-cache" | ||
"arm,l220-cache" | ||
"arm,l210-cache" | ||
- cache-unified : Specifies the cache is a unified cache. | ||
- cache-level : Should be set to 2 for a level 2 cache. | ||
- reg : Physical base address and size of cache controller's memory mapped | ||
registers. | ||
|
||
Optional properties: | ||
|
||
- arm,data-latency : Cycles of latency for Data RAM accesses. Specifies 3 cells of | ||
read, write and setup latencies. Minimum valid values are 1. Controllers | ||
without setup latency control should use a value of 0. | ||
- arm,tag-latency : Cycles of latency for Tag RAM accesses. Specifies 3 cells of | ||
read, write and setup latencies. Controllers without setup latency control | ||
should use 0. Controllers without separate read and write Tag RAM latency | ||
values should only use the first cell. | ||
- arm,dirty-latency : Cycles of latency for Dirty RAMs. This is a single cell. | ||
- arm,filter-ranges : <start length> Starting address and length of window to | ||
filter. Addresses in the filter window are directed to the M1 port. Other | ||
addresses will go to the M0 port. | ||
- interrupts : 1 combined interrupt. | ||
|
||
Example: | ||
|
||
L2: cache-controller { | ||
compatible = "arm,pl310-cache"; | ||
reg = <0xfff12000 0x1000>; | ||
arm,data-latency = <1 1 1>; | ||
arm,tag-latency = <2 2 2>; | ||
arm,filter-latency = <0x80000000 0x8000000>; | ||
cache-unified; | ||
cache-level = <2>; | ||
interrupts = <45>; | ||
}; |
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 @@ | ||
* TI - DSP (Digital Signal Processor) | ||
|
||
TI DSP included in OMAP SoC | ||
|
||
Required properties: | ||
- compatible : Should be "ti,omap3-c64" for OMAP3 & 4 | ||
- ti,hwmods: "dsp" | ||
|
||
Examples: | ||
|
||
dsp { | ||
compatible = "ti,omap3-c64"; | ||
ti,hwmods = "dsp"; | ||
}; |
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,19 @@ | ||
* TI - IVA (Imaging and Video Accelerator) subsystem | ||
|
||
The IVA contain various audio, video or imaging HW accelerator | ||
depending of the version. | ||
|
||
Required properties: | ||
- compatible : Should be: | ||
- "ti,ivahd" for OMAP4 | ||
- "ti,iva2.2" for OMAP3 | ||
- "ti,iva2.1" for OMAP2430 | ||
- "ti,iva1" for OMAP2420 | ||
- ti,hwmods: "iva" | ||
|
||
Examples: | ||
|
||
iva { | ||
compatible = "ti,ivahd", "ti,iva"; | ||
ti,hwmods = "iva"; | ||
}; |
19 changes: 19 additions & 0 deletions
19
trunk/Documentation/devicetree/bindings/arm/omap/l3-noc.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,19 @@ | ||
* TI - L3 Network On Chip (NoC) | ||
|
||
This version is an implementation of the generic NoC IP | ||
provided by Arteris. | ||
|
||
Required properties: | ||
- compatible : Should be "ti,omap3-l3-smx" for OMAP3 family | ||
Should be "ti,omap4-l3-noc" for OMAP4 family | ||
- ti,hwmods: "l3_main_1", ... One hwmod for each noc domain. | ||
|
||
Examples: | ||
|
||
ocp { | ||
compatible = "ti,omap4-l3-noc", "simple-bus"; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
ranges; | ||
ti,hwmods = "l3_main_1", "l3_main_2", "l3_main_3"; | ||
}; |
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,27 @@ | ||
* TI - MPU (Main Processor Unit) subsystem | ||
|
||
The MPU subsystem contain one or several ARM cores | ||
depending of the version. | ||
The MPU contain CPUs, GIC, L2 cache and a local PRCM. | ||
|
||
Required properties: | ||
- compatible : Should be "ti,omap3-mpu" for OMAP3 | ||
Should be "ti,omap4-mpu" for OMAP4 | ||
- ti,hwmods: "mpu" | ||
|
||
Examples: | ||
|
||
- For an OMAP4 SMP system: | ||
|
||
mpu { | ||
compatible = "ti,omap4-mpu"; | ||
ti,hwmods = "mpu"; | ||
}; | ||
|
||
|
||
- For an OMAP3 monocore system: | ||
|
||
mpu { | ||
compatible = "ti,omap3-mpu"; | ||
ti,hwmods = "mpu"; | ||
}; |
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,43 @@ | ||
* Texas Instruments OMAP | ||
|
||
OMAP is currently using a static file per SoC family to describe the | ||
IPs present in the SoC. | ||
On top of that an omap_device is created to extend the platform_device | ||
capabilities and to allow binding with one or several hwmods. | ||
The hwmods will contain all the information to build the device: | ||
adresse range, irq lines, dma lines, interconnect, PRCM register, | ||
clock domain, input clocks. | ||
For the moment just point to the existing hwmod, the next step will be | ||
to move data from hwmod to device-tree representation. | ||
|
||
|
||
Required properties: | ||
- compatible: Every devices present in OMAP SoC should be in the | ||
form: "ti,XXX" | ||
- ti,hwmods: list of hwmod names (ascii strings), that comes from the OMAP | ||
HW documentation, attached to a device. Must contain at least | ||
one hwmod. | ||
|
||
Optional properties: | ||
- ti,no_idle_on_suspend: When present, it prevents the PM to idle the module | ||
during suspend. | ||
|
||
|
||
Example: | ||
|
||
spinlock@1 { | ||
compatible = "ti,omap4-spinlock"; | ||
ti,hwmods = "spinlock"; | ||
}; | ||
|
||
|
||
Boards: | ||
|
||
- OMAP3 BeagleBoard : Low cost community board | ||
compatible = "ti,omap3-beagle", "ti,omap3" | ||
|
||
- OMAP4 SDP : Software Developement Board | ||
compatible = "ti,omap4-sdp", "ti,omap4430" | ||
|
||
- OMAP4 PandaBoard : Low cost community board | ||
compatible = "ti,omap4-panda", "ti,omap4430" |
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,24 @@ | ||
Picochip picoXcell device tree bindings. | ||
======================================== | ||
|
||
Required root node properties: | ||
- compatible: | ||
- "picochip,pc7302-pc3x3" : PC7302 development board with PC3X3 device. | ||
- "picochip,pc7302-pc3x2" : PC7302 development board with PC3X2 device. | ||
- "picochip,pc3x3" : picoXcell PC3X3 device based board. | ||
- "picochip,pc3x2" : picoXcell PC3X2 device based board. | ||
|
||
Timers required properties: | ||
- compatible = "picochip,pc3x2-timer" | ||
- interrupts : The single IRQ line for the timer. | ||
- clock-freq : The frequency in HZ of the timer. | ||
- reg : The register bank for the timer. | ||
|
||
Note: two timers are required - one for the scheduler clock and one for the | ||
event tick/NOHZ. | ||
|
||
VIC required properties: | ||
- compatible = "arm,pl192-vic". | ||
- interrupt-controller. | ||
- reg : The register bank for the device. | ||
- #interrupt-cells : Must be 1. |
27 changes: 27 additions & 0 deletions
27
trunk/Documentation/devicetree/bindings/tty/serial/msm_serial.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,27 @@ | ||
* Qualcomm MSM UART | ||
|
||
Required properties: | ||
- compatible : | ||
- "qcom,msm-uart", and one of "qcom,msm-hsuart" or | ||
"qcom,msm-lsuart". | ||
- reg : offset and length of the register set for the device | ||
for the hsuart operating in compatible mode, there should be a | ||
second pair describing the gsbi registers. | ||
- interrupts : should contain the uart interrupt. | ||
|
||
There are two different UART blocks used in MSM devices, | ||
"qcom,msm-hsuart" and "qcom,msm-lsuart". The msm-serial driver is | ||
able to handle both of these, and matches against the "qcom,msm-uart" | ||
as the compatibility. | ||
|
||
The registers for the "qcom,msm-hsuart" device need to specify both | ||
register blocks, even for the common driver. | ||
|
||
Example: | ||
|
||
uart@19c400000 { | ||
compatible = "qcom,msm-hsuart", "qcom,msm-uart"; | ||
reg = <0x19c40000 0x1000>, | ||
<0x19c00000 0x1000>; | ||
interrupts = <195>; | ||
}; |
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
Oops, something went wrong.