-
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
Linus Torvalds
committed
May 23, 2012
1 parent
5dec05e
commit f25e16f
Showing
756 changed files
with
49,973 additions
and
14,226 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: cad19fa66469d2a745fae0c168833d5d33d64489 | ||
refs/heads/master: 0b87da68a0f0a7bf7f7446cf64f92e672bd68ef8 |
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,45 @@ | ||
What: /sys/kernel/debug/nx-crypto/* | ||
Date: March 2012 | ||
KernelVersion: 3.4 | ||
Contact: Kent Yoder <key@linux.vnet.ibm.com> | ||
Description: | ||
|
||
These debugfs interfaces are built by the nx-crypto driver, built in | ||
arch/powerpc/crypto/nx. | ||
|
||
Error Detection | ||
=============== | ||
|
||
errors: | ||
- A u32 providing a total count of errors since the driver was loaded. The | ||
only errors counted here are those returned from the hcall, H_COP_OP. | ||
|
||
last_error: | ||
- The most recent non-zero return code from the H_COP_OP hcall. -EBUSY is not | ||
recorded here (the hcall will retry until -EBUSY goes away). | ||
|
||
last_error_pid: | ||
- The process ID of the process who received the most recent error from the | ||
hcall. | ||
|
||
Device Use | ||
========== | ||
|
||
aes_bytes: | ||
- The total number of bytes encrypted using AES in any of the driver's | ||
supported modes. | ||
|
||
aes_ops: | ||
- The total number of AES operations submitted to the hardware. | ||
|
||
sha256_bytes: | ||
- The total number of bytes hashed by the hardware using SHA-256. | ||
|
||
sha256_ops: | ||
- The total number of SHA-256 operations submitted to the hardware. | ||
|
||
sha512_bytes: | ||
- The total number of bytes hashed by the hardware using SHA-512. | ||
|
||
sha512_ops: | ||
- The total number of SHA-512 operations submitted to the hardware. |
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
49 changes: 49 additions & 0 deletions
49
trunk/Documentation/devicetree/bindings/sound/imx-audio-sgtl5000.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,49 @@ | ||
Freescale i.MX audio complex with SGTL5000 codec | ||
|
||
Required properties: | ||
- compatible : "fsl,imx-audio-sgtl5000" | ||
- model : The user-visible name of this sound complex | ||
- ssi-controller : The phandle of the i.MX SSI controller | ||
- audio-codec : The phandle of the SGTL5000 audio codec | ||
- 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 could be power | ||
supplies, SGTL5000 pins, and the jacks on the board: | ||
|
||
Power supplies: | ||
* Mic Bias | ||
|
||
SGTL5000 pins: | ||
* MIC_IN | ||
* LINE_IN | ||
* HP_OUT | ||
* LINE_OUT | ||
|
||
Board connectors: | ||
* Mic Jack | ||
* Line In Jack | ||
* Headphone Jack | ||
* Line Out Jack | ||
* Ext Spk | ||
|
||
- mux-int-port : The internal port of the i.MX audio muxer (AUDMUX) | ||
- mux-ext-port : The external port of the i.MX audio muxer | ||
|
||
Note: The AUDMUX port numbering should start at 1, which is consistent with | ||
hardware manual. | ||
|
||
Example: | ||
|
||
sound { | ||
compatible = "fsl,imx51-babbage-sgtl5000", | ||
"fsl,imx-audio-sgtl5000"; | ||
model = "imx51-babbage-sgtl5000"; | ||
ssi-controller = <&ssi1>; | ||
audio-codec = <&sgtl5000>; | ||
audio-routing = | ||
"MIC_IN", "Mic Jack", | ||
"Mic Jack", "Mic Bias", | ||
"Headphone Jack", "HP_OUT"; | ||
mux-int-port = <1>; | ||
mux-ext-port = <3>; | ||
}; |
17 changes: 17 additions & 0 deletions
17
trunk/Documentation/devicetree/bindings/sound/mxs-audio-sgtl5000.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 @@ | ||
* Freescale MXS audio complex with SGTL5000 codec | ||
|
||
Required properties: | ||
- compatible: "fsl,mxs-audio-sgtl5000" | ||
- model: The user-visible name of this sound complex | ||
- saif-controllers: The phandle list of the MXS SAIF controller | ||
- audio-codec: The phandle of the SGTL5000 audio codec | ||
|
||
Example: | ||
|
||
sound { | ||
compatible = "fsl,imx28-evk-sgtl5000", | ||
"fsl,mxs-audio-sgtl5000"; | ||
model = "imx28-evk-sgtl5000"; | ||
saif-controllers = <&saif0 &saif1>; | ||
audio-codec = <&sgtl5000>; | ||
}; |
36 changes: 36 additions & 0 deletions
36
trunk/Documentation/devicetree/bindings/sound/mxs-saif.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,36 @@ | ||
* Freescale MXS Serial Audio Interface (SAIF) | ||
|
||
Required properties: | ||
- compatible: Should be "fsl,<chip>-saif" | ||
- reg: Should contain registers location and length | ||
- interrupts: Should contain ERROR and DMA interrupts | ||
- fsl,saif-dma-channel: APBX DMA channel for the SAIF | ||
|
||
Optional properties: | ||
- fsl,saif-master: phandle to the master SAIF. It's only required for | ||
the slave SAIF. | ||
|
||
Note: Each SAIF controller should have an alias correctly numbered | ||
in "aliases" node. | ||
|
||
Example: | ||
|
||
aliases { | ||
saif0 = &saif0; | ||
saif1 = &saif1; | ||
}; | ||
|
||
saif0: saif@80042000 { | ||
compatible = "fsl,imx28-saif"; | ||
reg = <0x80042000 2000>; | ||
interrupts = <59 80>; | ||
fsl,saif-dma-channel = <4>; | ||
}; | ||
|
||
saif1: saif@80046000 { | ||
compatible = "fsl,imx28-saif"; | ||
reg = <0x80046000 2000>; | ||
interrupts = <58 81>; | ||
fsl,saif-dma-channel = <5>; | ||
fsl,saif-master = <&saif0>; | ||
}; |
32 changes: 32 additions & 0 deletions
32
trunk/Documentation/devicetree/bindings/sound/nvidia,tegra30-ahub.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,32 @@ | ||
NVIDIA Tegra30 AHUB (Audio Hub) | ||
|
||
Required properties: | ||
- compatible : "nvidia,tegra30-ahub" | ||
- reg : Should contain the register physical address and length for each of | ||
the AHUB's APBIF registers and the AHUB's own registers. | ||
- interrupts : Should contain AHUB interrupt | ||
- nvidia,dma-request-selector : The Tegra DMA controller's phandle and | ||
request selector for the first APBIF channel. | ||
- ranges : The bus address mapping for the configlink register bus. | ||
Can be empty since the mapping is 1:1. | ||
- #address-cells : For the configlink bus. Should be <1>; | ||
- #size-cells : For the configlink bus. Should be <1>. | ||
|
||
AHUB client modules need to specify the IDs of their CIFs (Client InterFaces). | ||
For RX CIFs, the numbers indicate the register number within AHUB routing | ||
register space (APBIF 0..3 RX, I2S 0..5 RX, DAM 0..2 RX 0..1, SPDIF RX 0..1). | ||
For TX CIFs, the numbers indicate the bit position within the AHUB routing | ||
registers (APBIF 0..3 TX, I2S 0..5 TX, DAM 0..2 TX, SPDIF TX 0..1). | ||
|
||
Example: | ||
|
||
ahub@70080000 { | ||
compatible = "nvidia,tegra30-ahub"; | ||
reg = <0x70080000 0x200 0x70080200 0x100>; | ||
interrupts = < 0 103 0x04 >; | ||
nvidia,dma-request-selector = <&apbdma 1>; | ||
|
||
ranges; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
}; |
15 changes: 15 additions & 0 deletions
15
trunk/Documentation/devicetree/bindings/sound/nvidia,tegra30-i2s.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 @@ | ||
NVIDIA Tegra30 I2S controller | ||
|
||
Required properties: | ||
- compatible : "nvidia,tegra30-i2s" | ||
- reg : Should contain I2S registers location and length | ||
- nvidia,ahub-cif-ids : The list of AHUB CIF IDs for this port, rx (playback) | ||
first, tx (capture) second. See nvidia,tegra30-ahub.txt for values. | ||
|
||
Example: | ||
|
||
i2s@70002800 { | ||
compatible = "nvidia,tegra30-i2s"; | ||
reg = <0x70080300 0x100>; | ||
nvidia,ahub-cif-ids = <4 4>; | ||
}; |
14 changes: 14 additions & 0 deletions
14
trunk/Documentation/devicetree/bindings/sound/tegra-audio-trimslice.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 @@ | ||
NVIDIA Tegra audio complex for TrimSlice | ||
|
||
Required properties: | ||
- compatible : "nvidia,tegra-audio-trimslice" | ||
- nvidia,i2s-controller : The phandle of the Tegra I2S1 controller | ||
- nvidia,audio-codec : The phandle of the WM8903 audio codec | ||
|
||
Example: | ||
|
||
sound { | ||
compatible = "nvidia,tegra-audio-trimslice"; | ||
nvidia,i2s-controller = <&tegra_i2s1>; | ||
nvidia,audio-codec = <&codec>; | ||
}; |
54 changes: 54 additions & 0 deletions
54
trunk/Documentation/devicetree/bindings/sound/tegra-audio-wm8753.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,54 @@ | ||
NVIDIA Tegra audio complex | ||
|
||
Required properties: | ||
- compatible : "nvidia,tegra-audio-wm8753" | ||
- 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 WM8753's pins, and the jacks on the board: | ||
|
||
WM8753 pins: | ||
|
||
* LOUT1 | ||
* LOUT2 | ||
* ROUT1 | ||
* ROUT2 | ||
* MONO1 | ||
* MONO2 | ||
* OUT3 | ||
* OUT4 | ||
* LINE1 | ||
* LINE2 | ||
* RXP | ||
* RXN | ||
* ACIN | ||
* ACOP | ||
* MIC1N | ||
* MIC1 | ||
* MIC2N | ||
* MIC2 | ||
* Mic Bias | ||
|
||
Board connectors: | ||
|
||
* Headphone Jack | ||
* Mic Jack | ||
|
||
- nvidia,i2s-controller : The phandle of the Tegra I2S1 controller | ||
- nvidia,audio-codec : The phandle of the WM8753 audio codec | ||
Example: | ||
|
||
sound { | ||
compatible = "nvidia,tegra-audio-wm8753-whistler", | ||
"nvidia,tegra-audio-wm8753" | ||
nvidia,model = "tegra-wm8753-harmony"; | ||
|
||
nvidia,audio-routing = | ||
"Headphone Jack", "LOUT1", | ||
"Headphone Jack", "ROUT1"; | ||
|
||
nvidia,i2s-controller = <&i2s1>; | ||
nvidia,audio-codec = <&wm8753>; | ||
}; | ||
|
Oops, something went wrong.