* [PATCH v2 0/4] PHY driver for Marvell SATA
@ 2013-12-05 16:50 Andrew Lunn
[not found] ` <1386262263-18956-1-git-send-email-andrew-g2DYL2Zd6BY@public.gmane.org>
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Andrew Lunn @ 2013-12-05 16:50 UTC (permalink / raw)
To: Jason Cooper, kishon
Cc: devicetree, linux-ide, Gregory Clement, Sebastian Hesselbarth,
linux ARM, Andrew Lunn
This second version addresses most of the points raised during review.
What has not been changed is the phy-names property. This is awaiting
feedback on my comment that the naming follows how clocks are named in
the driver & DT binding. For this reason i've also not added the
Ack-by: received in the review comments.
Andrew Lunn (4):
Phy: DT binding documentation for Marvell MVEBU SATA phy.
Phy: Add a PHY driver for Marvell MVEBU SATA PHY.
SATA: MV: Add support for the optional PHYs
Phy: Add DT nodes on kirkwood and Dove for the SATA PHY
Documentation/devicetree/bindings/ata/marvell.txt | 6 +
.../devicetree/bindings/phy/phy-mvebu.txt | 22 ++++
arch/arm/boot/dts/dove.dtsi | 11 ++
arch/arm/boot/dts/kirkwood-6281.dtsi | 2 +
arch/arm/boot/dts/kirkwood-6282.dtsi | 2 +
arch/arm/boot/dts/kirkwood.dtsi | 18 +++
drivers/ata/sata_mv.c | 19 +++
drivers/phy/Kconfig | 6 +
drivers/phy/Makefile | 1 +
drivers/phy/phy-mvebu-sata.c | 137 +++++++++++++++++++++
10 files changed, 224 insertions(+)
create mode 100644 Documentation/devicetree/bindings/phy/phy-mvebu.txt
create mode 100644 drivers/phy/phy-mvebu-sata.c
--
1.8.5
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2 1/4] Phy: DT binding documentation for Marvell MVEBU SATA phy.
[not found] ` <1386262263-18956-1-git-send-email-andrew-g2DYL2Zd6BY@public.gmane.org>
@ 2013-12-05 16:51 ` Andrew Lunn
2013-12-05 18:16 ` Jason Cooper
0 siblings, 1 reply; 8+ messages in thread
From: Andrew Lunn @ 2013-12-05 16:51 UTC (permalink / raw)
To: Jason Cooper, kishon-l0cyMroinI0
Cc: devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-ide-u79uwXL29TY76Z2rM5mHXA, Gregory Clement,
Sebastian Hesselbarth, linux ARM, Andrew Lunn
Describe the binding for the Marvell MVEBU SATA phy. This driver
can be used at least with Kirkwood, Dove and maybe others.
Additionally, update the SATA binding with the properties to link
to the phy nodes.
Signed-off-by: Andrew Lunn <andrew-g2DYL2Zd6BY@public.gmane.org>
---
v1->v2:
Correct #phy-cells
Correct number after @ to match first reg address.
Rename to mvebu-phy.txt
---
Documentation/devicetree/bindings/ata/marvell.txt | 6 ++++++
.../devicetree/bindings/phy/phy-mvebu.txt | 22 ++++++++++++++++++++++
2 files changed, 28 insertions(+)
create mode 100644 Documentation/devicetree/bindings/phy/phy-mvebu.txt
diff --git a/Documentation/devicetree/bindings/ata/marvell.txt b/Documentation/devicetree/bindings/ata/marvell.txt
index b5cdd20cde9c..e072fa105b49 100644
--- a/Documentation/devicetree/bindings/ata/marvell.txt
+++ b/Documentation/devicetree/bindings/ata/marvell.txt
@@ -6,11 +6,17 @@ Required Properties:
- interrupts : Interrupt controller is using
- nr-ports : Number of SATA ports in use.
+Optional Properties:
+- phys : List of phandles to sata phys
+- phy-names : Should be "0", "1", etc, one number per phandle
+
Example:
sata@80000 {
compatible = "marvell,orion-sata";
reg = <0x80000 0x5000>;
interrupts = <21>;
+ phys = <&sata_phy0>, <&sata_phy1>;
+ phy-names = "0", "1";
nr-ports = <2>;
}
diff --git a/Documentation/devicetree/bindings/phy/phy-mvebu.txt b/Documentation/devicetree/bindings/phy/phy-mvebu.txt
new file mode 100644
index 000000000000..6cb3364aeafb
--- /dev/null
+++ b/Documentation/devicetree/bindings/phy/phy-mvebu.txt
@@ -0,0 +1,22 @@
+* Marvell MVEBU SATA PHY
+
+Power control for the SATA phy found on Marvell MVEBU SoCs.
+
+This document extends the binding described in phy-bindings.txt
+
+Required properties :
+
+ - reg : Offset and length of the register set for the SATA device
+ - compatible : Should be "marvell,mvebu-sata-phy"
+ - clocks : phandle of clock and specifier that supplies the device
+ - clock-names : Should be "sata"
+
+Example:
+ sata-phy@84000 {
+ compatible = "marvell,mvebu-sata-phy";
+ reg = <0x84000 0x0334>;
+ clocks = <&gate_clk 15>;
+ clock-names = "sata";
+ #phy-cells = <0>;
+ status = "ok";
+ };
--
1.8.5
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v2 2/4] Phy: Add a PHY driver for Marvell MVEBU SATA PHY.
2013-12-05 16:50 [PATCH v2 0/4] PHY driver for Marvell SATA Andrew Lunn
[not found] ` <1386262263-18956-1-git-send-email-andrew-g2DYL2Zd6BY@public.gmane.org>
@ 2013-12-05 16:51 ` Andrew Lunn
2013-12-05 16:51 ` [PATCH v2 3/4] SATA: MV: Add support for the optional PHYs Andrew Lunn
` (2 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Andrew Lunn @ 2013-12-05 16:51 UTC (permalink / raw)
To: Jason Cooper, kishon
Cc: devicetree, linux-ide, Gregory Clement, Sebastian Hesselbarth,
linux ARM, Andrew Lunn
Kirkwood and Dove can turn the SATA phy on and off. Add a PHY driver
to control this.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
---
v1->v2:
Use #defines instead of magic values
select GENERIC_PHY in Kconfig.
---
drivers/phy/Kconfig | 6 ++
drivers/phy/Makefile | 1 +
drivers/phy/phy-mvebu-sata.c | 137 +++++++++++++++++++++++++++++++++++++++++++
3 files changed, 144 insertions(+)
create mode 100644 drivers/phy/phy-mvebu-sata.c
diff --git a/drivers/phy/Kconfig b/drivers/phy/Kconfig
index a344f3d52361..7464d31fcbd1 100644
--- a/drivers/phy/Kconfig
+++ b/drivers/phy/Kconfig
@@ -21,6 +21,12 @@ config PHY_EXYNOS_MIPI_VIDEO
Support for MIPI CSI-2 and MIPI DSI DPHY found on Samsung S5P
and EXYNOS SoCs.
+config PHY_MVEBU_SATA
+ def_bool y
+ depends on ARCH_KIRKWOOD || ARCH_DOVE
+ depends on OF
+ select GENERIC_PHY
+
config OMAP_USB2
tristate "OMAP USB2 PHY Driver"
depends on ARCH_OMAP2PLUS
diff --git a/drivers/phy/Makefile b/drivers/phy/Makefile
index d0caae9cfb83..4e4adc96f753 100644
--- a/drivers/phy/Makefile
+++ b/drivers/phy/Makefile
@@ -5,5 +5,6 @@
obj-$(CONFIG_GENERIC_PHY) += phy-core.o
obj-$(CONFIG_PHY_EXYNOS_DP_VIDEO) += phy-exynos-dp-video.o
obj-$(CONFIG_PHY_EXYNOS_MIPI_VIDEO) += phy-exynos-mipi-video.o
+obj-$(CONFIG_PHY_MVEBU_SATA) += phy-mvebu-sata.o
obj-$(CONFIG_OMAP_USB2) += phy-omap-usb2.o
obj-$(CONFIG_TWL4030_USB) += phy-twl4030-usb.o
diff --git a/drivers/phy/phy-mvebu-sata.c b/drivers/phy/phy-mvebu-sata.c
new file mode 100644
index 000000000000..d43786f62437
--- /dev/null
+++ b/drivers/phy/phy-mvebu-sata.c
@@ -0,0 +1,137 @@
+/*
+ * phy-mvebu-sata.c: SATA Phy driver for the Marvell mvebu SoCs.
+ *
+ * Copyright (C) 2013 Andrew Lunn <andrew@lunn.ch>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version
+ * 2 of the License, or (at your option) any later version.
+ */
+
+#include <linux/kernel.h>
+#include <linux/module.h>
+#include <linux/clk.h>
+#include <linux/phy/phy.h>
+#include <linux/io.h>
+#include <linux/platform_device.h>
+
+struct priv {
+ struct clk *clk;
+ void __iomem *base;
+};
+
+#define SATA_PHY_MODE_2 0x0330
+#define MODE_2_FORCE_PU_TX BIT(0)
+#define MODE_2_FORCE_PU_RX BIT(1)
+#define MODE_2_PU_PLL BIT(2)
+#define MODE_2_PU_IVREF BIT(3)
+#define SATA_IF_CTRL 0x0050
+#define CTRL_PHY_SHUTDOWN BIT(9)
+
+static int phy_mvebu_sata_power_on(struct phy *phy)
+{
+ struct priv *priv = phy_get_drvdata(phy);
+ u32 reg;
+
+ clk_prepare_enable(priv->clk);
+
+ /* Enable PLL and IVREF */
+ reg = readl(priv->base + SATA_PHY_MODE_2);
+ reg |= (MODE_2_FORCE_PU_TX | MODE_2_FORCE_PU_RX |
+ MODE_2_PU_PLL | MODE_2_PU_IVREF);
+ writel(reg , priv->base + SATA_PHY_MODE_2);
+
+ /* Enable PHY */
+ reg = readl(priv->base + SATA_IF_CTRL);
+ reg &= ~CTRL_PHY_SHUTDOWN;
+ writel(reg, priv->base + SATA_IF_CTRL);
+
+ clk_disable_unprepare(priv->clk);
+
+ return 0;
+}
+
+static int phy_mvebu_sata_power_off(struct phy *phy)
+{
+ struct priv *priv = phy_get_drvdata(phy);
+ u32 reg;
+
+ clk_prepare_enable(priv->clk);
+
+ /* Disable PLL and IVREF */
+ reg = readl(priv->base + SATA_PHY_MODE_2);
+ reg &= ~(MODE_2_FORCE_PU_TX | MODE_2_FORCE_PU_RX |
+ MODE_2_PU_PLL | MODE_2_PU_IVREF);
+ writel(reg, priv->base + SATA_PHY_MODE_2);
+
+ /* Disable PHY */
+ reg = readl(priv->base + SATA_IF_CTRL);
+ reg |= CTRL_PHY_SHUTDOWN;
+ writel(reg, priv->base + SATA_IF_CTRL);
+
+ clk_disable_unprepare(priv->clk);
+
+ return 0;
+}
+
+static struct phy_ops phy_mvebu_sata_ops = {
+ .power_on = phy_mvebu_sata_power_on,
+ .power_off = phy_mvebu_sata_power_off,
+ .owner = THIS_MODULE,
+};
+
+static int phy_mvebu_sata_probe(struct platform_device *pdev)
+{
+ struct phy_provider *phy_provider;
+ struct resource *res;
+ struct priv *priv;
+ struct phy *phy;
+
+ priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
+
+ res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
+ priv->base = devm_ioremap_resource(&pdev->dev, res);
+ if (IS_ERR(priv->base))
+ return PTR_ERR(priv->base);
+
+ priv->clk = devm_clk_get(&pdev->dev, "sata");
+ if (IS_ERR(priv->clk))
+ return PTR_ERR(priv->clk);
+
+ phy_provider = devm_of_phy_provider_register(&pdev->dev,
+ of_phy_simple_xlate);
+ if (IS_ERR(phy_provider))
+ return PTR_ERR(phy_provider);
+
+ phy = devm_phy_create(&pdev->dev, &phy_mvebu_sata_ops, NULL);
+ if (IS_ERR(phy))
+ return PTR_ERR(phy);
+
+ phy_set_drvdata(phy, priv);
+
+ /* The boot loader may of left it on. Turn it off. */
+ phy_mvebu_sata_power_off(phy);
+
+ return 0;
+}
+
+static const struct of_device_id phy_mvebu_sata_of_match[] = {
+ { .compatible = "marvell,mvebu-sata-phy" },
+ { },
+};
+MODULE_DEVICE_TABLE(of, phy_mvebu_sata_of_match);
+
+static struct platform_driver phy_mvebu_sata_driver = {
+ .probe = phy_mvebu_sata_probe,
+ .driver = {
+ .name = "phy-mvebu-sata",
+ .owner = THIS_MODULE,
+ .of_match_table = phy_mvebu_sata_of_match,
+ }
+};
+module_platform_driver(phy_mvebu_sata_driver);
+
+MODULE_AUTHOR("Andrew Lunn <andrew@lunn.ch>");
+MODULE_DESCRIPTION("Marvell MVEBU SATA PHY driver");
+MODULE_LICENSE("GPL v2");
--
1.8.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v2 3/4] SATA: MV: Add support for the optional PHYs
2013-12-05 16:50 [PATCH v2 0/4] PHY driver for Marvell SATA Andrew Lunn
[not found] ` <1386262263-18956-1-git-send-email-andrew-g2DYL2Zd6BY@public.gmane.org>
2013-12-05 16:51 ` [PATCH v2 2/4] Phy: Add a PHY driver for Marvell MVEBU SATA PHY Andrew Lunn
@ 2013-12-05 16:51 ` Andrew Lunn
2013-12-05 16:51 ` [PATCH v2 4/4] Phy: Add DT nodes on kirkwood and Dove for the SATA PHY Andrew Lunn
2013-12-08 1:09 ` [PATCH v2 0/4] PHY driver for Marvell SATA Jason Cooper
4 siblings, 0 replies; 8+ messages in thread
From: Andrew Lunn @ 2013-12-05 16:51 UTC (permalink / raw)
To: Jason Cooper, kishon
Cc: devicetree, linux-ide, Gregory Clement, Sebastian Hesselbarth,
linux ARM, Andrew Lunn
Some Marvell SoCs have a SATA PHY which can be powered off, in order
to save power. Make use of the generic phy framework to control these
phys.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
---
drivers/ata/sata_mv.c | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/drivers/ata/sata_mv.c b/drivers/ata/sata_mv.c
index 56be31819897..9a728bcfbb9a 100644
--- a/drivers/ata/sata_mv.c
+++ b/drivers/ata/sata_mv.c
@@ -60,6 +60,7 @@
#include <linux/dma-mapping.h>
#include <linux/device.h>
#include <linux/clk.h>
+#include <linux/phy/phy.h>
#include <linux/platform_device.h>
#include <linux/ata_platform.h>
#include <linux/mbus.h>
@@ -563,6 +564,12 @@ struct mv_host_priv {
struct clk *clk;
struct clk **port_clks;
/*
+ * Some devices have a SATA PHY which can be enabled/disabled
+ * in order to save power. These are optional: if the platform
+ * devices does not have any phy, they won't be used.
+ */
+ struct phy **port_phys;
+ /*
* These consistent DMA memory pools give us guaranteed
* alignment for hardware-accessed data structures,
* and less memory waste in accomplishing the alignment.
@@ -4076,6 +4083,11 @@ static int mv_platform_probe(struct platform_device *pdev)
GFP_KERNEL);
if (!hpriv->port_clks)
return -ENOMEM;
+ hpriv->port_phys = devm_kzalloc(&pdev->dev,
+ sizeof(struct phy *) * n_ports,
+ GFP_KERNEL);
+ if (!hpriv->port_phys)
+ return -ENOMEM;
host->private_data = hpriv;
hpriv->n_ports = n_ports;
hpriv->board_idx = chip_soc;
@@ -4097,6 +4109,9 @@ static int mv_platform_probe(struct platform_device *pdev)
hpriv->port_clks[port] = clk_get(&pdev->dev, port_number);
if (!IS_ERR(hpriv->port_clks[port]))
clk_prepare_enable(hpriv->port_clks[port]);
+ hpriv->port_phys[port] = devm_phy_get(&pdev->dev, port_number);
+ if (!IS_ERR(hpriv->port_phys[port]))
+ phy_power_on(hpriv->port_phys[port]);
}
/*
@@ -4132,6 +4147,8 @@ err:
clk_disable_unprepare(hpriv->port_clks[port]);
clk_put(hpriv->port_clks[port]);
}
+ if (!IS_ERR(hpriv->port_phys[port]))
+ phy_power_off(hpriv->port_phys[port]);
}
return rc;
@@ -4161,6 +4178,8 @@ static int mv_platform_remove(struct platform_device *pdev)
clk_disable_unprepare(hpriv->port_clks[port]);
clk_put(hpriv->port_clks[port]);
}
+ if (!IS_ERR(hpriv->port_phys[port]))
+ phy_power_off(hpriv->port_phys[port]);
}
return 0;
}
--
1.8.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v2 4/4] Phy: Add DT nodes on kirkwood and Dove for the SATA PHY
2013-12-05 16:50 [PATCH v2 0/4] PHY driver for Marvell SATA Andrew Lunn
` (2 preceding siblings ...)
2013-12-05 16:51 ` [PATCH v2 3/4] SATA: MV: Add support for the optional PHYs Andrew Lunn
@ 2013-12-05 16:51 ` Andrew Lunn
2013-12-05 18:18 ` Jason Cooper
2013-12-08 1:09 ` [PATCH v2 0/4] PHY driver for Marvell SATA Jason Cooper
4 siblings, 1 reply; 8+ messages in thread
From: Andrew Lunn @ 2013-12-05 16:51 UTC (permalink / raw)
To: Jason Cooper, kishon
Cc: devicetree, linux-ide, Gregory Clement, Sebastian Hesselbarth,
linux ARM, Andrew Lunn
Add nodes for the two SATA PHYs on kirkewood.
Add node for the one SATA PHY on Dove.
Add pHandles to the PHYs in the sata nodes.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
---
v1->v2:
sata_phy@... ->sata-phy@
value after '@' matching the first address in the reg.
---
arch/arm/boot/dts/dove.dtsi | 11 +++++++++++
arch/arm/boot/dts/kirkwood-6281.dtsi | 2 ++
arch/arm/boot/dts/kirkwood-6282.dtsi | 2 ++
arch/arm/boot/dts/kirkwood.dtsi | 18 ++++++++++++++++++
4 files changed, 33 insertions(+)
diff --git a/arch/arm/boot/dts/dove.dtsi b/arch/arm/boot/dts/dove.dtsi
index 113a8bc7bee7..0d786f868760 100644
--- a/arch/arm/boot/dts/dove.dtsi
+++ b/arch/arm/boot/dts/dove.dtsi
@@ -490,10 +490,21 @@
reg = <0xa0000 0x2400>;
interrupts = <62>;
clocks = <&gate_clk 3>;
+ phys = <&sata_phy0>;
+ phy-names = "0";
nr-ports = <1>;
status = "disabled";
};
+ sata_phy0: sata-phy@a2000 {
+ compatible = "marvell,mvebu-sata-phy";
+ reg = <0xa2000 0x0334>;
+ clocks = <&gate_clk 3>;
+ clock-names = "sata";
+ #phy-cells = <0>;
+ status = "ok";
+ };
+
rtc: real-time-clock@d8500 {
compatible = "marvell,orion-rtc";
reg = <0xd8500 0x20>;
diff --git a/arch/arm/boot/dts/kirkwood-6281.dtsi b/arch/arm/boot/dts/kirkwood-6281.dtsi
index 650ef30e1856..92a1c747456a 100644
--- a/arch/arm/boot/dts/kirkwood-6281.dtsi
+++ b/arch/arm/boot/dts/kirkwood-6281.dtsi
@@ -89,6 +89,8 @@
interrupts = <21>;
clocks = <&gate_clk 14>, <&gate_clk 15>;
clock-names = "0", "1";
+ phys = <&sata_phy0>, <&sata_phy1>;
+ phy-names = "0", "1";
status = "disabled";
};
diff --git a/arch/arm/boot/dts/kirkwood-6282.dtsi b/arch/arm/boot/dts/kirkwood-6282.dtsi
index 3933a331ddc2..dfa6b073cf00 100644
--- a/arch/arm/boot/dts/kirkwood-6282.dtsi
+++ b/arch/arm/boot/dts/kirkwood-6282.dtsi
@@ -117,6 +117,8 @@
interrupts = <21>;
clocks = <&gate_clk 14>, <&gate_clk 15>;
clock-names = "0", "1";
+ phys = <&sata_phy0>, <&sata_phy1>;
+ phy-names = "0", "1";
status = "disabled";
};
diff --git a/arch/arm/boot/dts/kirkwood.dtsi b/arch/arm/boot/dts/kirkwood.dtsi
index 8b73c80f1dad..ee06951721c4 100644
--- a/arch/arm/boot/dts/kirkwood.dtsi
+++ b/arch/arm/boot/dts/kirkwood.dtsi
@@ -282,5 +282,23 @@
/* set phy-handle property in board file */
};
};
+
+ sata_phy0: sata-phy@82000 {
+ compatible = "marvell,mvebu-sata-phy";
+ reg = <0x82000 0x0334>;
+ clocks = <&gate_clk 14>;
+ clock-names = "sata";
+ #phy-cells = <0>;
+ status = "ok";
+ };
+
+ sata_phy1: sata-phy@84000 {
+ compatible = "marvell,mvebu-sata-phy";
+ reg = <0x84000 0x0334>;
+ clocks = <&gate_clk 15>;
+ clock-names = "sata";
+ #phy-cells = <0>;
+ status = "ok";
+ };
};
};
--
1.8.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v2 1/4] Phy: DT binding documentation for Marvell MVEBU SATA phy.
2013-12-05 16:51 ` [PATCH v2 1/4] Phy: DT binding documentation for Marvell MVEBU SATA phy Andrew Lunn
@ 2013-12-05 18:16 ` Jason Cooper
0 siblings, 0 replies; 8+ messages in thread
From: Jason Cooper @ 2013-12-05 18:16 UTC (permalink / raw)
To: Andrew Lunn
Cc: kishon, devicetree, linux-ide, Gregory Clement,
Sebastian Hesselbarth, linux ARM
On Thu, Dec 05, 2013 at 05:51:00PM +0100, Andrew Lunn wrote:
> Describe the binding for the Marvell MVEBU SATA phy. This driver
> can be used at least with Kirkwood, Dove and maybe others.
> Additionally, update the SATA binding with the properties to link
> to the phy nodes.
>
> Signed-off-by: Andrew Lunn <andrew@lunn.ch>
> ---
> v1->v2:
> Correct #phy-cells
> Correct number after @ to match first reg address.
> Rename to mvebu-phy.txt
Ok, this follows samsung-phy.txt.
> ---
> Documentation/devicetree/bindings/ata/marvell.txt | 6 ++++++
> .../devicetree/bindings/phy/phy-mvebu.txt | 22 ++++++++++++++++++++++
but this does not... ?
thx,
Jason.
> 2 files changed, 28 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/phy/phy-mvebu.txt
>
> diff --git a/Documentation/devicetree/bindings/ata/marvell.txt b/Documentation/devicetree/bindings/ata/marvell.txt
> index b5cdd20cde9c..e072fa105b49 100644
> --- a/Documentation/devicetree/bindings/ata/marvell.txt
> +++ b/Documentation/devicetree/bindings/ata/marvell.txt
> @@ -6,11 +6,17 @@ Required Properties:
> - interrupts : Interrupt controller is using
> - nr-ports : Number of SATA ports in use.
>
> +Optional Properties:
> +- phys : List of phandles to sata phys
> +- phy-names : Should be "0", "1", etc, one number per phandle
> +
> Example:
>
> sata@80000 {
> compatible = "marvell,orion-sata";
> reg = <0x80000 0x5000>;
> interrupts = <21>;
> + phys = <&sata_phy0>, <&sata_phy1>;
> + phy-names = "0", "1";
> nr-ports = <2>;
> }
> diff --git a/Documentation/devicetree/bindings/phy/phy-mvebu.txt b/Documentation/devicetree/bindings/phy/phy-mvebu.txt
> new file mode 100644
> index 000000000000..6cb3364aeafb
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/phy/phy-mvebu.txt
> @@ -0,0 +1,22 @@
> +* Marvell MVEBU SATA PHY
> +
> +Power control for the SATA phy found on Marvell MVEBU SoCs.
> +
> +This document extends the binding described in phy-bindings.txt
> +
> +Required properties :
> +
> + - reg : Offset and length of the register set for the SATA device
> + - compatible : Should be "marvell,mvebu-sata-phy"
> + - clocks : phandle of clock and specifier that supplies the device
> + - clock-names : Should be "sata"
> +
> +Example:
> + sata-phy@84000 {
> + compatible = "marvell,mvebu-sata-phy";
> + reg = <0x84000 0x0334>;
> + clocks = <&gate_clk 15>;
> + clock-names = "sata";
> + #phy-cells = <0>;
> + status = "ok";
> + };
> --
> 1.8.5
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 4/4] Phy: Add DT nodes on kirkwood and Dove for the SATA PHY
2013-12-05 16:51 ` [PATCH v2 4/4] Phy: Add DT nodes on kirkwood and Dove for the SATA PHY Andrew Lunn
@ 2013-12-05 18:18 ` Jason Cooper
0 siblings, 0 replies; 8+ messages in thread
From: Jason Cooper @ 2013-12-05 18:18 UTC (permalink / raw)
To: Andrew Lunn
Cc: kishon, devicetree, linux-ide, Gregory Clement,
Sebastian Hesselbarth, linux ARM
On Thu, Dec 05, 2013 at 05:51:03PM +0100, Andrew Lunn wrote:
> Add nodes for the two SATA PHYs on kirkewood.
s/kirkewood/kirkwood/ but only if you do a respin. Otherwise, I can
patch it up when I pull it in.
thx,
Jason.
> Add node for the one SATA PHY on Dove.
> Add pHandles to the PHYs in the sata nodes.
>
> Signed-off-by: Andrew Lunn <andrew@lunn.ch>
> ---
> v1->v2:
> sata_phy@... ->sata-phy@
> value after '@' matching the first address in the reg.
> ---
> arch/arm/boot/dts/dove.dtsi | 11 +++++++++++
> arch/arm/boot/dts/kirkwood-6281.dtsi | 2 ++
> arch/arm/boot/dts/kirkwood-6282.dtsi | 2 ++
> arch/arm/boot/dts/kirkwood.dtsi | 18 ++++++++++++++++++
> 4 files changed, 33 insertions(+)
>
> diff --git a/arch/arm/boot/dts/dove.dtsi b/arch/arm/boot/dts/dove.dtsi
> index 113a8bc7bee7..0d786f868760 100644
> --- a/arch/arm/boot/dts/dove.dtsi
> +++ b/arch/arm/boot/dts/dove.dtsi
> @@ -490,10 +490,21 @@
> reg = <0xa0000 0x2400>;
> interrupts = <62>;
> clocks = <&gate_clk 3>;
> + phys = <&sata_phy0>;
> + phy-names = "0";
> nr-ports = <1>;
> status = "disabled";
> };
>
> + sata_phy0: sata-phy@a2000 {
> + compatible = "marvell,mvebu-sata-phy";
> + reg = <0xa2000 0x0334>;
> + clocks = <&gate_clk 3>;
> + clock-names = "sata";
> + #phy-cells = <0>;
> + status = "ok";
> + };
> +
> rtc: real-time-clock@d8500 {
> compatible = "marvell,orion-rtc";
> reg = <0xd8500 0x20>;
> diff --git a/arch/arm/boot/dts/kirkwood-6281.dtsi b/arch/arm/boot/dts/kirkwood-6281.dtsi
> index 650ef30e1856..92a1c747456a 100644
> --- a/arch/arm/boot/dts/kirkwood-6281.dtsi
> +++ b/arch/arm/boot/dts/kirkwood-6281.dtsi
> @@ -89,6 +89,8 @@
> interrupts = <21>;
> clocks = <&gate_clk 14>, <&gate_clk 15>;
> clock-names = "0", "1";
> + phys = <&sata_phy0>, <&sata_phy1>;
> + phy-names = "0", "1";
> status = "disabled";
> };
>
> diff --git a/arch/arm/boot/dts/kirkwood-6282.dtsi b/arch/arm/boot/dts/kirkwood-6282.dtsi
> index 3933a331ddc2..dfa6b073cf00 100644
> --- a/arch/arm/boot/dts/kirkwood-6282.dtsi
> +++ b/arch/arm/boot/dts/kirkwood-6282.dtsi
> @@ -117,6 +117,8 @@
> interrupts = <21>;
> clocks = <&gate_clk 14>, <&gate_clk 15>;
> clock-names = "0", "1";
> + phys = <&sata_phy0>, <&sata_phy1>;
> + phy-names = "0", "1";
> status = "disabled";
> };
>
> diff --git a/arch/arm/boot/dts/kirkwood.dtsi b/arch/arm/boot/dts/kirkwood.dtsi
> index 8b73c80f1dad..ee06951721c4 100644
> --- a/arch/arm/boot/dts/kirkwood.dtsi
> +++ b/arch/arm/boot/dts/kirkwood.dtsi
> @@ -282,5 +282,23 @@
> /* set phy-handle property in board file */
> };
> };
> +
> + sata_phy0: sata-phy@82000 {
> + compatible = "marvell,mvebu-sata-phy";
> + reg = <0x82000 0x0334>;
> + clocks = <&gate_clk 14>;
> + clock-names = "sata";
> + #phy-cells = <0>;
> + status = "ok";
> + };
> +
> + sata_phy1: sata-phy@84000 {
> + compatible = "marvell,mvebu-sata-phy";
> + reg = <0x84000 0x0334>;
> + clocks = <&gate_clk 15>;
> + clock-names = "sata";
> + #phy-cells = <0>;
> + status = "ok";
> + };
> };
> };
> --
> 1.8.5
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 0/4] PHY driver for Marvell SATA
2013-12-05 16:50 [PATCH v2 0/4] PHY driver for Marvell SATA Andrew Lunn
` (3 preceding siblings ...)
2013-12-05 16:51 ` [PATCH v2 4/4] Phy: Add DT nodes on kirkwood and Dove for the SATA PHY Andrew Lunn
@ 2013-12-08 1:09 ` Jason Cooper
4 siblings, 0 replies; 8+ messages in thread
From: Jason Cooper @ 2013-12-08 1:09 UTC (permalink / raw)
To: Andrew Lunn
Cc: devicetree, Sebastian Hesselbarth, kishon, linux-ide,
Gregory Clement, linux ARM
Andrew,
wrt merging...
On Thu, Dec 05, 2013 at 05:50:59PM +0100, Andrew Lunn wrote:
> This second version addresses most of the points raised during review.
>
> What has not been changed is the phy-names property. This is awaiting
> feedback on my comment that the naming follows how clocks are named in
> the driver & DT binding. For this reason i've also not added the
> Ack-by: received in the review comments.
>
> Andrew Lunn (4):
> Phy: DT binding documentation for Marvell MVEBU SATA phy.
> Phy: Add a PHY driver for Marvell MVEBU SATA PHY.
> SATA: MV: Add support for the optional PHYs
> Phy: Add DT nodes on kirkwood and Dove for the SATA PHY
>
This is actually really easy.
> Documentation/devicetree/bindings/ata/marvell.txt | 6 +
> .../devicetree/bindings/phy/phy-mvebu.txt | 22 ++++
Keep this with the phy driver patch.
> arch/arm/boot/dts/dove.dtsi | 11 ++
> arch/arm/boot/dts/kirkwood-6281.dtsi | 2 +
> arch/arm/boot/dts/kirkwood-6282.dtsi | 2 +
> arch/arm/boot/dts/kirkwood.dtsi | 18 +++
I'll take this.
> drivers/ata/sata_mv.c | 19 +++
This uses the phy if it's available, so this can go through ata. No
dependency problems there.
> drivers/phy/Kconfig | 6 +
> drivers/phy/Makefile | 1 +
> drivers/phy/phy-mvebu-sata.c | 137 +++++++++++++++++++++
And this can go through Kishon with the binding docs.
thx,
Jason.
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2013-12-08 1:09 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-05 16:50 [PATCH v2 0/4] PHY driver for Marvell SATA Andrew Lunn
[not found] ` <1386262263-18956-1-git-send-email-andrew-g2DYL2Zd6BY@public.gmane.org>
2013-12-05 16:51 ` [PATCH v2 1/4] Phy: DT binding documentation for Marvell MVEBU SATA phy Andrew Lunn
2013-12-05 18:16 ` Jason Cooper
2013-12-05 16:51 ` [PATCH v2 2/4] Phy: Add a PHY driver for Marvell MVEBU SATA PHY Andrew Lunn
2013-12-05 16:51 ` [PATCH v2 3/4] SATA: MV: Add support for the optional PHYs Andrew Lunn
2013-12-05 16:51 ` [PATCH v2 4/4] Phy: Add DT nodes on kirkwood and Dove for the SATA PHY Andrew Lunn
2013-12-05 18:18 ` Jason Cooper
2013-12-08 1:09 ` [PATCH v2 0/4] PHY driver for Marvell SATA Jason Cooper
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).