-
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.
Merge tag 'phy-for-4.6' of git://git.kernel.org/pub/scm/linux/kernel/…
…git/kishon/linux-phy into usb-testing Kishon writes: phy: for 4.6 *) Add driver for rockchip Display Port PHY *) Add driver for the Rockchip SoC internal eMMC PHY *) Add usb-uart functionality in rockchip-usb *) cleanup rcar usb2 PHY driver *) Fix for randconfig error Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
- Loading branch information
Showing
10 changed files
with
656 additions
and
120 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
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 @@ | ||
Rockchip specific extensions to the Analogix Display Port PHY | ||
------------------------------------ | ||
|
||
Required properties: | ||
- compatible : should be one of the following supported values: | ||
- "rockchip.rk3288-dp-phy" | ||
- clocks: from common clock binding: handle to dp clock. | ||
of memory mapped region. | ||
- clock-names: from common clock binding: | ||
Required elements: "24m" | ||
- rockchip,grf: phandle to the syscon managing the "general register files" | ||
- #phy-cells : from the generic PHY bindings, must be 0; | ||
|
||
Example: | ||
|
||
edp_phy: edp-phy { | ||
compatible = "rockchip,rk3288-dp-phy"; | ||
rockchip,grf = <&grf>; | ||
clocks = <&cru SCLK_EDP_24M>; | ||
clock-names = "24m"; | ||
#phy-cells = <0>; | ||
}; |
19 changes: 19 additions & 0 deletions
19
Documentation/devicetree/bindings/phy/rockchip-emmc-phy.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 @@ | ||
Rockchip EMMC PHY | ||
----------------------- | ||
|
||
Required properties: | ||
- compatible: rockchip,rk3399-emmc-phy | ||
- rockchip,grf : phandle to the syscon managing the "general | ||
register files" | ||
- #phy-cells: must be 0 | ||
- reg: PHY configure reg address offset in "general | ||
register files" | ||
|
||
Example: | ||
|
||
emmcphy: phy { | ||
compatible = "rockchip,rk3399-emmc-phy"; | ||
rockchip,grf = <&grf>; | ||
reg = <0xf780>; | ||
#phy-cells = <0>; | ||
}; |
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.