-
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: 353471 b: refs/heads/master c: 699ba45 h: refs/heads/master i: 353469: 9aaa935 353467: 76c2fb5 353463: 1e285c5 353455: fed84b4 353439: 7e5b0bd 353407: a731ec7 v: v3
- Loading branch information
Mark Brown
committed
Feb 11, 2013
1 parent
9d20160
commit cb8f757
Showing
2,496 changed files
with
33,332 additions
and
16,633 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: 6757d8cc0c6ff2e61972d84797d358a2f69f2217 | ||
refs/heads/master: 699ba4546cfe3f4eee73aff4f307bf16362f9232 |
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
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
47 changes: 47 additions & 0 deletions
47
trunk/Documentation/devicetree/bindings/pinctrl/pinctrl-sirf.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,47 @@ | ||
CSR SiRFprimaII pinmux controller | ||
|
||
Required properties: | ||
- compatible : "sirf,prima2-pinctrl" | ||
- reg : Address range of the pinctrl registers | ||
- interrupts : Interrupts used by every GPIO group | ||
- gpio-controller : Indicates this device is a GPIO controller | ||
- interrupt-controller : Marks the device node as an interrupt controller | ||
Optional properties: | ||
- sirf,pullups : if n-th bit of m-th bank is set, set a pullup on GPIO-n of bank m | ||
- sirf,pulldowns : if n-th bit of m-th bank is set, set a pulldown on GPIO-n of bank m | ||
|
||
Please refer to pinctrl-bindings.txt in this directory for details of the common | ||
pinctrl bindings used by client devices. | ||
|
||
SiRFprimaII's pinmux nodes act as a container for an abitrary number of subnodes. | ||
Each of these subnodes represents some desired configuration for a group of pins. | ||
|
||
Required subnode-properties: | ||
- sirf,pins : An array of strings. Each string contains the name of a group. | ||
- sirf,function: A string containing the name of the function to mux to the | ||
group. | ||
|
||
Valid values for group and function names can be found from looking at the | ||
group and function arrays in driver files: | ||
drivers/pinctrl/pinctrl-sirf.c | ||
|
||
For example, pinctrl might have subnodes like the following: | ||
uart2_pins_a: uart2@0 { | ||
uart { | ||
sirf,pins = "uart2grp"; | ||
sirf,function = "uart2"; | ||
}; | ||
}; | ||
uart2_noflow_pins_a: uart2@1 { | ||
uart { | ||
sirf,pins = "uart2_nostreamctrlgrp"; | ||
sirf,function = "uart2_nostreamctrl"; | ||
}; | ||
}; | ||
|
||
For a specific board, if it wants to use uart2 without hardware flow control, | ||
it can add the following to its board-specific .dts file. | ||
uart2: uart@0xb0070000 { | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&uart2_noflow_pins_a>; | ||
} |
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 @@ | ||
AK4642 I2C transmitter | ||
|
||
This device supports I2C mode only. | ||
|
||
Required properties: | ||
|
||
- compatible : "asahi-kasei,ak4642" or "asahi-kasei,ak4643" or "asahi-kasei,ak4648" | ||
- reg : The chip select number on the I2C bus | ||
|
||
Example: | ||
|
||
&i2c { | ||
ak4648: ak4648@0x12 { | ||
compatible = "asahi-kasei,ak4642"; | ||
reg = <0x12>; | ||
}; | ||
}; |
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
51 changes: 51 additions & 0 deletions
51
trunk/Documentation/devicetree/bindings/sound/nvidia,tegra-audio-wm9712.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,51 @@ | ||
NVIDIA Tegra audio complex | ||
|
||
Required properties: | ||
- compatible : "nvidia,tegra-audio-wm9712" | ||
- nvidia,model : The user-visible name of this sound complex. | ||
- nvidia,audio-routing : A list of the connections between audio components. | ||
Each entry is a pair of strings, the first being the connection's sink, | ||
the second being the connection's source. Valid names for sources and | ||
sinks are the WM9712's pins, and the jacks on the board: | ||
|
||
WM9712 pins: | ||
|
||
* MONOOUT | ||
* HPOUTL | ||
* HPOUTR | ||
* LOUT2 | ||
* ROUT2 | ||
* OUT3 | ||
* LINEINL | ||
* LINEINR | ||
* PHONE | ||
* PCBEEP | ||
* MIC1 | ||
* MIC2 | ||
* Mic Bias | ||
|
||
Board connectors: | ||
|
||
* Headphone | ||
* LineIn | ||
* Mic | ||
|
||
- nvidia,ac97-controller : The phandle of the Tegra AC97 controller | ||
|
||
|
||
Example: | ||
|
||
sound { | ||
compatible = "nvidia,tegra-audio-wm9712-colibri_t20", | ||
"nvidia,tegra-audio-wm9712"; | ||
nvidia,model = "Toradex Colibri T20"; | ||
|
||
nvidia,audio-routing = | ||
"Headphone", "HPOUTL", | ||
"Headphone", "HPOUTR", | ||
"LineIn", "LINEINL", | ||
"LineIn", "LINEINR", | ||
"Mic", "MIC1"; | ||
|
||
nvidia,ac97-controller = <&ac97>; | ||
}; |
22 changes: 22 additions & 0 deletions
22
trunk/Documentation/devicetree/bindings/sound/nvidia,tegra20-ac97.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,22 @@ | ||
NVIDIA Tegra 20 AC97 controller | ||
|
||
Required properties: | ||
- compatible : "nvidia,tegra20-ac97" | ||
- reg : Should contain AC97 controller registers location and length | ||
- interrupts : Should contain AC97 interrupt | ||
- nvidia,dma-request-selector : The Tegra DMA controller's phandle and | ||
request selector for the AC97 controller | ||
- nvidia,codec-reset-gpio : The Tegra GPIO controller's phandle and the number | ||
of the GPIO used to reset the external AC97 codec | ||
- nvidia,codec-sync-gpio : The Tegra GPIO controller's phandle and the number | ||
of the GPIO corresponding with the AC97 DAP _FS line | ||
Example: | ||
|
||
ac97@70002000 { | ||
compatible = "nvidia,tegra20-ac97"; | ||
reg = <0x70002000 0x200>; | ||
interrupts = <0 81 0x04>; | ||
nvidia,dma-request-selector = <&apbdma 12>; | ||
nvidia,codec-reset-gpio = <&gpio 170 0>; | ||
nvidia,codec-sync-gpio = <&gpio 120 0>; | ||
}; |
Oops, something went wrong.