-
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.
yaml --- r: 372327 b: refs/heads/master c: dc2d3db h: refs/heads/master i: 372325: d9f96d9 372323: aef84d7 372319: 68a67f3 v: v3
- Loading branch information
Arnd Bergmann
committed
Apr 8, 2013
1 parent
af4915b
commit 7af3b73
Showing
210 changed files
with
6,821 additions
and
3,138 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: 7f585bbfc54fec9dcf387fd2edb2d6f4908badf8 | ||
refs/heads/master: dc2d3db8137fba0f62d7517e1bea8a47f69fcbc4 |
24 changes: 0 additions & 24 deletions
24
trunk/Documentation/devicetree/bindings/gpio/gpio-vt8500.txt
This file was deleted.
Oops, something went wrong.
57 changes: 57 additions & 0 deletions
57
trunk/Documentation/devicetree/bindings/pinctrl/pinctrl-vt8500.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,57 @@ | ||
VIA VT8500 and Wondermedia WM8xxx-series pinmux/gpio controller | ||
|
||
These SoCs contain a combined Pinmux/GPIO module. Each pin may operate as | ||
either a GPIO in, GPIO out or as an alternate function (I2C, SPI etc). | ||
|
||
Required properties: | ||
- compatible: "via,vt8500-pinctrl", "wm,wm8505-pinctrl", "wm,wm8650-pinctrl", | ||
"wm8750-pinctrl" or "wm,wm8850-pinctrl" | ||
- reg: Should contain the physical address of the module's registers. | ||
- interrupt-controller: Marks the device node as an interrupt controller. | ||
- #interrupt-cells: Should be two. | ||
- gpio-controller: Marks the device node as a GPIO controller. | ||
- #gpio-cells : Should be two. The first cell is the pin number and the | ||
second cell is used to specify optional parameters. | ||
bit 0 - active low | ||
|
||
Please refer to ../gpio/gpio.txt for a general description of GPIO bindings. | ||
|
||
Please refer to pinctrl-bindings.txt in this directory for details of the | ||
common pinctrl bindings used by client devices, including the meaning of the | ||
phrase "pin configuration node". | ||
|
||
Each pin configuration node lists the pin(s) to which it applies, and one or | ||
more of the mux functions to select on those pin(s), and pull-up/down | ||
configuration. Each subnode only affects those parameters that are explicitly | ||
listed. In other words, a subnode that lists only a mux function implies no | ||
information about any pull configuration. Similarly, a subnode that lists only | ||
a pull parameter implies no information about the mux function. | ||
|
||
Required subnode-properties: | ||
- wm,pins: An array of cells. Each cell contains the ID of a pin. | ||
|
||
Optional subnode-properties: | ||
- wm,function: Integer, containing the function to mux to the pin(s): | ||
0: GPIO in | ||
1: GPIO out | ||
2: alternate | ||
|
||
- wm,pull: Integer, representing the pull-down/up to apply to the pin(s): | ||
0: none | ||
1: down | ||
2: up | ||
|
||
Each of wm,function and wm,pull may contain either a single value which | ||
will be applied to all pins in wm,pins, or one value for each entry in | ||
wm,pins. | ||
|
||
Example: | ||
|
||
pinctrl: pinctrl { | ||
compatible = "wm,wm8505-pinctrl"; | ||
reg = <0xD8110000 0x10000>; | ||
interrupt-controller; | ||
#interrupt-cells = <2>; | ||
gpio-controller; | ||
#gpio-cells = <2>; | ||
}; |
17 changes: 17 additions & 0 deletions
17
trunk/Documentation/devicetree/bindings/timer/cadence,ttc-timer.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,17 @@ | ||
Cadence TTC - Triple Timer Counter | ||
|
||
Required properties: | ||
- compatible : Should be "cdns,ttc". | ||
- reg : Specifies base physical address and size of the registers. | ||
- interrupts : A list of 3 interrupts; one per timer channel. | ||
- clocks: phandle to the source clock | ||
|
||
Example: | ||
|
||
ttc0: ttc0@f8001000 { | ||
interrupt-parent = <&intc>; | ||
interrupts = < 0 10 4 0 11 4 0 12 4 >; | ||
compatible = "cdns,ttc"; | ||
reg = <0xF8001000 0x1000>; | ||
clocks = <&cpu_clk 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
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.