-
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: 342780 b: refs/heads/master c: 9f82b04 h: refs/heads/master v: v3
- Loading branch information
Mark Brown
committed
Dec 2, 2012
1 parent
8073172
commit d70ad7a
Showing
776 changed files
with
13,602 additions
and
5,322 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: 1858fe97c87c33c4975e291ecbbd6c1a20315674 | ||
refs/heads/master: 9f82b0440eb5fda4d7c4e4b5adf3be8c325ed578 |
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
19 changes: 19 additions & 0 deletions
19
trunk/Documentation/devicetree/bindings/input/touchscreen/egalax-ts.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 @@ | ||
* EETI eGalax Multiple Touch Controller | ||
|
||
Required properties: | ||
- compatible: must be "eeti,egalax_ts" | ||
- reg: i2c slave address | ||
- interrupt-parent: the phandle for the interrupt controller | ||
- interrupts: touch controller interrupt | ||
- wakeup-gpios: the gpio pin to be used for waking up the controller | ||
as well as uased as irq pin | ||
|
||
Example: | ||
|
||
egalax_ts@04 { | ||
compatible = "eeti,egalax_ts"; | ||
reg = <0x04>; | ||
interrupt-parent = <&gpio1>; | ||
interrupts = <9 2>; | ||
wakeup-gpios = <&gpio1 9 0>; | ||
}; |
15 changes: 15 additions & 0 deletions
15
trunk/Documentation/devicetree/bindings/misc/atmel-ssc.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,15 @@ | ||
* Atmel SSC driver. | ||
|
||
Required properties: | ||
- compatible: "atmel,at91rm9200-ssc" or "atmel,at91sam9g45-ssc" | ||
- atmel,at91rm9200-ssc: support pdc transfer | ||
- atmel,at91sam9g45-ssc: support dma transfer | ||
- reg: Should contain SSC registers location and length | ||
- interrupts: Should contain SSC interrupt | ||
|
||
Example: | ||
ssc0: ssc@fffbc000 { | ||
compatible = "atmel,at91rm9200-ssc"; | ||
reg = <0xfffbc000 0x4000>; | ||
interrupts = <14 4 5>; | ||
}; |
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,22 @@ | ||
AK4104 S/PDIF transmitter | ||
|
||
This device supports SPI mode only. | ||
|
||
Required properties: | ||
|
||
- compatible : "asahi-kasei,ak4104" | ||
|
||
- reg : The chip select number on the SPI bus | ||
|
||
Optional properties: | ||
|
||
- reset-gpio : a GPIO spec for the reset pin. If specified, it will be | ||
deasserted before communication to the device starts. | ||
|
||
Example: | ||
|
||
spdif: ak4104@0 { | ||
compatible = "asahi-kasei,ak4104"; | ||
reg = <0>; | ||
spi-max-frequency = <5000000>; | ||
}; |
26 changes: 26 additions & 0 deletions
26
trunk/Documentation/devicetree/bindings/sound/atmel-at91sam9g20ek-wm8731-audio.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,26 @@ | ||
* Atmel at91sam9g20ek wm8731 audio complex | ||
|
||
Required properties: | ||
- compatible: "atmel,at91sam9g20ek-wm8731-audio" | ||
- atmel,model: The user-visible name of this sound complex. | ||
- atmel,audio-routing: A list of the connections between audio components. | ||
- atmel,ssc-controller: The phandle of the SSC controller | ||
- atmel,audio-codec: The phandle of the WM8731 audio codec | ||
Optional properties: | ||
- pinctrl-names, pinctrl-0: Please refer to pinctrl-bindings.txt | ||
|
||
Example: | ||
sound { | ||
compatible = "atmel,at91sam9g20ek-wm8731-audio"; | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&pinctrl_pck0_as_mck>; | ||
|
||
atmel,model = "wm8731 @ AT91SAMG20EK"; | ||
|
||
atmel,audio-routing = | ||
"Ext Spk", "LHPOUT", | ||
"Int MIC", "MICIN"; | ||
|
||
atmel,ssc-controller = <&ssc0>; | ||
atmel,audio-codec = <&wm8731>; | ||
}; |
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
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.