summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorVenkat Gopalakrishnan <venkatg@codeaurora.org>2016-01-19 10:43:11 -0800
committerDavid Keitel <dkeitel@codeaurora.org>2016-03-22 11:00:52 -0700
commit3abbdb57e3f3461646821cb7b56178643261f0b5 (patch)
tree376d437a6c5c3eb7b44a10dd0fabae370c17bec8 /Documentation
parent885a77f0e84d256f08dec8ba07f9f318c395ee5e (diff)
scsi/phy: Remove orphaned files after renaming
Delete renamed orphan files after rebasing 3.18 ufs driver changes onto 4.4 ufs driver. Change-Id: Id241ad01bbb0fa74e209c66f8a2d97c05088e33b Signed-off-by: Venkat Gopalakrishnan <venkatg@codeaurora.org>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/devicetree/bindings/ufs/ufs-msm.txt41
1 files changed, 0 insertions, 41 deletions
diff --git a/Documentation/devicetree/bindings/ufs/ufs-msm.txt b/Documentation/devicetree/bindings/ufs/ufs-msm.txt
deleted file mode 100644
index 1b54b3c50ef3..000000000000
--- a/Documentation/devicetree/bindings/ufs/ufs-msm.txt
+++ /dev/null
@@ -1,41 +0,0 @@
-* MSM Universal Flash Storage (UFS) PHY
-
-UFSPHY nodes are defined to describe on-chip UFS PHY hardware macro.
-Each UFS PHY node should have its own node.
-
-To bind UFS PHY with UFS host controller, the controller node should
-contain a phandle reference to UFS PHY node.
-
-Required properties:
-- compatible : compatible list, contains "qcom,ufs-phy-qmp-28nm"
- or "qcom,ufs-phy-qmp-20nm" according to the relevant
- phy in use
-- reg : should contain PHY register address space (mandatory),
- device PHY control register map (optional).
-- reg-names : indicates various resources passed to driver (via reg proptery) by name.
- Required "reg-names" is "phy_mem" and "dev_ref_clk_ctrl_mem" is optional.
-- #phy-cells : This property shall be set to 0
-- vdda-phy-supply : phandle to main PHY supply for analog domain
-- vdda-pll-supply : phandle to PHY PLL and Power-Gen block power supply
-
-Optional properties:
-- vdda-phy-max-microamp : specifies max. load that can be drawn from phy supply
-- vdda-pll-max-microamp : specifies max. load that can be drawn from pll supply
-
-Example:
-
- ufsphy1: ufsphy@0xfc597000 {
- compatible = "qcom,ufs-phy-qmp-28nm";
- reg = <0xfc597000 0x800>, <0xfd512074 0x4>;
- reg-names = "phy_mem", "dev_ref_clk_ctrl_mem";
- #phy-cells = <0>;
- vdda-phy-supply = <&pma8084_l4>;
- vdda-pll-supply = <&pma8084_l12>;
- vdda-phy-max-microamp = <50000>;
- vdda-pll-max-microamp = <1000>;
- };
-
- ufshc@0xfc598000 {
- ...
- phys = <&ufsphy1>;
- };