-
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: 303836 b: refs/heads/master c: a5c708e h: refs/heads/master v: v3
- Loading branch information
Greg Kroah-Hartman
committed
May 7, 2012
1 parent
e4f58cb
commit 832ab75
Showing
729 changed files
with
13,815 additions
and
8,795 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: fa296528835c66284c90457a2e20d9e8d9dc686e | ||
refs/heads/master: a5c708e84140bb19553303531316c540396a3a33 |
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 @@ | ||
What: /sys/bus/hsi | ||
Date: April 2012 | ||
KernelVersion: 3.4 | ||
Contact: Carlos Chinea <carlos.chinea@nokia.com> | ||
Description: | ||
High Speed Synchronous Serial Interface (HSI) is a | ||
serial interface mainly used for connecting application | ||
engines (APE) with cellular modem engines (CMT) in cellular | ||
handsets. | ||
The bus will be populated with devices (hsi_clients) representing | ||
the protocols available in the system. Bus drivers implement | ||
those protocols. | ||
|
||
What: /sys/bus/hsi/devices/.../modalias | ||
Date: April 2012 | ||
KernelVersion: 3.4 | ||
Contact: Carlos Chinea <carlos.chinea@nokia.com> | ||
Description: Stores the same MODALIAS value emitted by uevent | ||
Format: hsi:<hsi_client device name> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
* NXP ISP1301 USB transceiver | ||
|
||
Required properties: | ||
- compatible: must be "nxp,isp1301" | ||
- reg: I2C address of the ISP1301 device | ||
|
||
Optional properties of devices using ISP1301: | ||
- transceiver: phandle of isp1301 - this helps the ISP1301 driver to find the | ||
ISP1301 instance associated with the respective USB driver | ||
|
||
Example: | ||
|
||
isp1301: usb-transceiver@2c { | ||
compatible = "nxp,isp1301"; | ||
reg = <0x2c>; | ||
}; | ||
|
||
usbd@31020000 { | ||
compatible = "nxp,lpc3220-udc"; | ||
reg = <0x31020000 0x300>; | ||
interrupt-parent = <&mic>; | ||
interrupts = <0x3d 0>, <0x3e 0>, <0x3c 0>, <0x3a 0>; | ||
transceiver = <&isp1301>; | ||
status = "okay"; | ||
}; |
28 changes: 28 additions & 0 deletions
28
trunk/Documentation/devicetree/bindings/usb/lpc32xx-udc.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,28 @@ | ||
* NXP LPC32xx SoC USB Device Controller (UDC) | ||
|
||
Required properties: | ||
- compatible: Must be "nxp,lpc3220-udc" | ||
- reg: Physical base address of the controller and length of memory mapped | ||
region. | ||
- interrupts: The USB interrupts: | ||
* USB Device Low Priority Interrupt | ||
* USB Device High Priority Interrupt | ||
* USB Device DMA Interrupt | ||
* External USB Transceiver Interrupt (OTG ATX) | ||
- transceiver: phandle of the associated ISP1301 device - this is necessary for | ||
the UDC controller for connecting to the USB physical layer | ||
|
||
Example: | ||
|
||
isp1301: usb-transceiver@2c { | ||
compatible = "nxp,isp1301"; | ||
reg = <0x2c>; | ||
}; | ||
|
||
usbd@31020000 { | ||
compatible = "nxp,lpc3220-udc"; | ||
reg = <0x31020000 0x300>; | ||
interrupt-parent = <&mic>; | ||
interrupts = <0x3d 0>, <0x3e 0>, <0x3c 0>, <0x3a 0>; | ||
transceiver = <&isp1301>; | ||
}; |
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 @@ | ||
* OHCI controller, NXP ohci-nxp variant | ||
|
||
Required properties: | ||
- compatible: must be "nxp,ohci-nxp" | ||
- reg: physical base address of the controller and length of memory mapped | ||
region. | ||
- interrupts: The OHCI interrupt | ||
- transceiver: phandle of the associated ISP1301 device - this is necessary for | ||
the UDC controller for connecting to the USB physical layer | ||
|
||
Example (LPC32xx): | ||
|
||
isp1301: usb-transceiver@2c { | ||
compatible = "nxp,isp1301"; | ||
reg = <0x2c>; | ||
}; | ||
|
||
ohci@31020000 { | ||
compatible = "nxp,ohci-nxp"; | ||
reg = <0x31020000 0x300>; | ||
interrupt-parent = <&mic>; | ||
interrupts = <0x3b 0>; | ||
transceiver = <&isp1301>; | ||
}; |
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,39 @@ | ||
ST SPEAr SoC USB controllers: | ||
----------------------------- | ||
|
||
EHCI: | ||
----- | ||
|
||
Required properties: | ||
- compatible: "st,spear600-ehci" | ||
- interrupt-parent: Should be the phandle for the interrupt controller | ||
that services interrupts for this device | ||
- interrupts: Should contain the EHCI interrupt | ||
|
||
Example: | ||
|
||
ehci@e1800000 { | ||
compatible = "st,spear600-ehci", "usb-ehci"; | ||
reg = <0xe1800000 0x1000>; | ||
interrupt-parent = <&vic1>; | ||
interrupts = <27>; | ||
}; | ||
|
||
|
||
OHCI: | ||
----- | ||
|
||
Required properties: | ||
- compatible: "st,spear600-ohci" | ||
- interrupt-parent: Should be the phandle for the interrupt controller | ||
that services interrupts for this device | ||
- interrupts: Should contain the OHCI interrupt | ||
|
||
Example: | ||
|
||
ohci@e1900000 { | ||
compatible = "st,spear600-ohci", "usb-ohci"; | ||
reg = <0xe1800000 0x1000>; | ||
interrupt-parent = <&vic1>; | ||
interrupts = <26>; | ||
}; |
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
Oops, something went wrong.