* [PATCH 2/4] Phy: Add a PHY driver for Marvell MVEBU SATA PHY.
2013-12-17 20:21 [PATCH 1/4] Phy: DT binding documentation for Marvell MVEBU SATA phy Andrew Lunn
@ 2013-12-17 20:21 ` Andrew Lunn
2013-12-19 10:40 ` Kishon Vijay Abraham I
2013-12-17 20:21 ` [PATCH 3/4] SATA: MV: Add support for the optional PHYs Andrew Lunn
` (3 subsequent siblings)
4 siblings, 1 reply; 15+ messages in thread
From: Andrew Lunn @ 2013-12-17 20:21 UTC (permalink / raw)
To: linux-arm-kernel
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.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 2/4] Phy: Add a PHY driver for Marvell MVEBU SATA PHY.
2013-12-17 20:21 ` [PATCH 2/4] Phy: Add a PHY driver for Marvell MVEBU SATA PHY Andrew Lunn
@ 2013-12-19 10:40 ` Kishon Vijay Abraham I
0 siblings, 0 replies; 15+ messages in thread
From: Kishon Vijay Abraham I @ 2013-12-19 10:40 UTC (permalink / raw)
To: linux-arm-kernel
Hi,
On Wednesday 18 December 2013 01:51 AM, Andrew Lunn wrote:
> 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);
recently Felipe found a bug and phy_provider should be registered as the last
step. If you can fix that up, I can queue it.
Thanks
Kishon
> +
> + /* 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");
>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 3/4] SATA: MV: Add support for the optional PHYs
2013-12-17 20:21 [PATCH 1/4] Phy: DT binding documentation for Marvell MVEBU SATA phy Andrew Lunn
2013-12-17 20:21 ` [PATCH 2/4] Phy: Add a PHY driver for Marvell MVEBU SATA PHY Andrew Lunn
@ 2013-12-17 20:21 ` Andrew Lunn
2013-12-18 6:30 ` Kishon Vijay Abraham I
2013-12-17 20:21 ` [PATCH 4/4] Phy: Add DT nodes on kirkwood and Dove for the SATA PHY Andrew Lunn
` (2 subsequent siblings)
4 siblings, 1 reply; 15+ messages in thread
From: Andrew Lunn @ 2013-12-17 20:21 UTC (permalink / raw)
To: linux-arm-kernel
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>
---
v2->v3
Look for phys using name "port0", "port1", etc.
---
drivers/ata/sata_mv.c | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/drivers/ata/sata_mv.c b/drivers/ata/sata_mv.c
index 56be31819897..896725bb5e34 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,10 @@ 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]);
+ sprintf(port_number, "port%d", 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 +4148,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 +4179,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.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 3/4] SATA: MV: Add support for the optional PHYs
2013-12-17 20:21 ` [PATCH 3/4] SATA: MV: Add support for the optional PHYs Andrew Lunn
@ 2013-12-18 6:30 ` Kishon Vijay Abraham I
2013-12-18 12:13 ` Tejun Heo
2013-12-19 19:03 ` Andrew Lunn
0 siblings, 2 replies; 15+ messages in thread
From: Kishon Vijay Abraham I @ 2013-12-18 6:30 UTC (permalink / raw)
To: linux-arm-kernel
Hi Tejun,
On Wednesday 18 December 2013 01:51 AM, Andrew Lunn wrote:
> 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.
I can queue this patch along with the other patches in this series if you don't
expect any merge issues. If you want to take this patch by yourself, you can add my
Acked-by: Kishon Vijay Abraham I <kishon@ti.com>
Either ways let me know.
Cheers
Kishon
>
> Signed-off-by: Andrew Lunn <andrew@lunn.ch>
> ---
> v2->v3
> Look for phys using name "port0", "port1", etc.
> ---
> drivers/ata/sata_mv.c | 20 ++++++++++++++++++++
> 1 file changed, 20 insertions(+)
>
> diff --git a/drivers/ata/sata_mv.c b/drivers/ata/sata_mv.c
> index 56be31819897..896725bb5e34 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,10 @@ 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]);
> + sprintf(port_number, "port%d", 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 +4148,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 +4179,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;
> }
>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 3/4] SATA: MV: Add support for the optional PHYs
2013-12-18 6:30 ` Kishon Vijay Abraham I
@ 2013-12-18 12:13 ` Tejun Heo
2013-12-19 19:10 ` Andrew Lunn
2013-12-19 19:03 ` Andrew Lunn
1 sibling, 1 reply; 15+ messages in thread
From: Tejun Heo @ 2013-12-18 12:13 UTC (permalink / raw)
To: linux-arm-kernel
Hello,
On Wed, Dec 18, 2013 at 12:00:10PM +0530, Kishon Vijay Abraham I wrote:
> > @@ -4097,6 +4109,10 @@ 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]);
> > + sprintf(port_number, "port%d", 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]);
Shouldn't it distinguish between failures and at least produce
warning? ie. phy not available and phy init failed due to memory
pressure or whatnot shouldn't be handled the same.
> > @@ -4132,6 +4148,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]);
And I'd much prefer the array holds either NULL or valid pointer.
Thanks.
--
tejun
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 3/4] SATA: MV: Add support for the optional PHYs
2013-12-18 12:13 ` Tejun Heo
@ 2013-12-19 19:10 ` Andrew Lunn
2013-12-19 19:42 ` Tejun Heo
0 siblings, 1 reply; 15+ messages in thread
From: Andrew Lunn @ 2013-12-19 19:10 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, Dec 18, 2013 at 07:13:13AM -0500, Tejun Heo wrote:
> Hello,
>
> On Wed, Dec 18, 2013 at 12:00:10PM +0530, Kishon Vijay Abraham I wrote:
> > > @@ -4097,6 +4109,10 @@ 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]);
> > > + sprintf(port_number, "port%d", 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]);
>
> Shouldn't it distinguish between failures and at least produce
> warning? ie. phy not available and phy init failed due to memory
> pressure or whatnot shouldn't be handled the same.
Phy not available is not an error, since not all variants of the SATA
IP block have the ability to control the phy. I can however add a
warning for real errors.
> > > @@ -4132,6 +4148,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]);
>
> And I'd much prefer the array holds either NULL or valid pointer.
I was trying to keep the code similar to the clk handling. However now
that it is diverging more and more from how clk is handled, i can add
yet more divergence and overwrite the error with a NULL.
Andrew
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 3/4] SATA: MV: Add support for the optional PHYs
2013-12-19 19:10 ` Andrew Lunn
@ 2013-12-19 19:42 ` Tejun Heo
0 siblings, 0 replies; 15+ messages in thread
From: Tejun Heo @ 2013-12-19 19:42 UTC (permalink / raw)
To: linux-arm-kernel
Hello,
On Thu, Dec 19, 2013 at 08:10:27PM +0100, Andrew Lunn wrote:
> > Shouldn't it distinguish between failures and at least produce
> > warning? ie. phy not available and phy init failed due to memory
> > pressure or whatnot shouldn't be handled the same.
>
> Phy not available is not an error, since not all variants of the SATA
^
always
> IP block have the ability to control the phy. I can however add a
> warning for real errors.
Yes, please.
> > > > @@ -4132,6 +4148,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]);
> >
> > And I'd much prefer the array holds either NULL or valid pointer.
>
> I was trying to keep the code similar to the clk handling. However now
> that it is diverging more and more from how clk is handled, i can add
> yet more divergence and overwrite the error with a NULL.
Thanks.
--
tejun
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 3/4] SATA: MV: Add support for the optional PHYs
2013-12-18 6:30 ` Kishon Vijay Abraham I
2013-12-18 12:13 ` Tejun Heo
@ 2013-12-19 19:03 ` Andrew Lunn
2013-12-20 3:25 ` Jason Cooper
1 sibling, 1 reply; 15+ messages in thread
From: Andrew Lunn @ 2013-12-19 19:03 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, Dec 18, 2013 at 12:00:10PM +0530, Kishon Vijay Abraham I wrote:
> Hi Tejun,
>
> On Wednesday 18 December 2013 01:51 AM, Andrew Lunn wrote:
> > 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.
>
> I can queue this patch along with the other patches in this series if you don't
> expect any merge issues.
Hi Kishon
I expect merge issues with the DT and the DT binding documentation. It
would be best if Jason took those parts.
Andrew
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 3/4] SATA: MV: Add support for the optional PHYs
2013-12-19 19:03 ` Andrew Lunn
@ 2013-12-20 3:25 ` Jason Cooper
0 siblings, 0 replies; 15+ messages in thread
From: Jason Cooper @ 2013-12-20 3:25 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Dec 19, 2013 at 08:03:29PM +0100, Andrew Lunn wrote:
> On Wed, Dec 18, 2013 at 12:00:10PM +0530, Kishon Vijay Abraham I wrote:
> > Hi Tejun,
> >
> > On Wednesday 18 December 2013 01:51 AM, Andrew Lunn wrote:
> > > 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.
> >
> > I can queue this patch along with the other patches in this series if you don't
> > expect any merge issues.
>
> Hi Kishon
>
> I expect merge issues with the DT and the DT binding documentation. It
> would be best if Jason took those parts.
I'd prefer to keep the DT binding docs with the driver patches.
thx,
Jason.
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 4/4] Phy: Add DT nodes on kirkwood and Dove for the SATA PHY
2013-12-17 20:21 [PATCH 1/4] Phy: DT binding documentation for Marvell MVEBU SATA phy Andrew Lunn
2013-12-17 20:21 ` [PATCH 2/4] Phy: Add a PHY driver for Marvell MVEBU SATA PHY Andrew Lunn
2013-12-17 20:21 ` [PATCH 3/4] SATA: MV: Add support for the optional PHYs Andrew Lunn
@ 2013-12-17 20:21 ` Andrew Lunn
2013-12-18 6:32 ` Kishon Vijay Abraham I
2013-12-22 17:21 ` Jason Cooper
2013-12-17 20:27 ` [PATCH 1/4] Phy: DT binding documentation for Marvell MVEBU SATA phy Andrew Lunn
2013-12-20 3:21 ` Jason Cooper
4 siblings, 2 replies; 15+ messages in thread
From: Andrew Lunn @ 2013-12-17 20:21 UTC (permalink / raw)
To: linux-arm-kernel
Add nodes for the two SATA PHYs on kirkwood.
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 at ... ->sata-phy@
value after '@' matching the first address in the reg.
v2->v3:
"0" -> "port0", etc.
kirkewood -> kirkwood
---
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..198d03625832 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 = "port0";
nr-ports = <1>;
status = "disabled";
};
+ sata_phy0: sata-phy at 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 at 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..18400e74e0de 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 = "port0", "port1";
status = "disabled";
};
diff --git a/arch/arm/boot/dts/kirkwood-6282.dtsi b/arch/arm/boot/dts/kirkwood-6282.dtsi
index 3933a331ddc2..69c622bbbfb5 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 = "port0", "port1";
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 at 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 at 84000 {
+ compatible = "marvell,mvebu-sata-phy";
+ reg = <0x84000 0x0334>;
+ clocks = <&gate_clk 15>;
+ clock-names = "sata";
+ #phy-cells = <0>;
+ status = "ok";
+ };
};
};
--
1.8.5.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 4/4] Phy: Add DT nodes on kirkwood and Dove for the SATA PHY
2013-12-17 20:21 ` [PATCH 4/4] Phy: Add DT nodes on kirkwood and Dove for the SATA PHY Andrew Lunn
@ 2013-12-18 6:32 ` Kishon Vijay Abraham I
2013-12-22 17:21 ` Jason Cooper
1 sibling, 0 replies; 15+ messages in thread
From: Kishon Vijay Abraham I @ 2013-12-18 6:32 UTC (permalink / raw)
To: linux-arm-kernel
On Wednesday 18 December 2013 01:51 AM, Andrew Lunn wrote:
> Add nodes for the two SATA PHYs on kirkwood.
> 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>
Acked-by: Kishon Vijay Abraham I <kishon@ti.com>
> ---
> v1->v2:
> sata_phy at ... ->sata-phy@
> value after '@' matching the first address in the reg.
>
> v2->v3:
> "0" -> "port0", etc.
> kirkewood -> kirkwood
> ---
> 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..198d03625832 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 = "port0";
> nr-ports = <1>;
> status = "disabled";
> };
>
> + sata_phy0: sata-phy at 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 at 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..18400e74e0de 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 = "port0", "port1";
> status = "disabled";
> };
>
> diff --git a/arch/arm/boot/dts/kirkwood-6282.dtsi b/arch/arm/boot/dts/kirkwood-6282.dtsi
> index 3933a331ddc2..69c622bbbfb5 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 = "port0", "port1";
> 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 at 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 at 84000 {
> + compatible = "marvell,mvebu-sata-phy";
> + reg = <0x84000 0x0334>;
> + clocks = <&gate_clk 15>;
> + clock-names = "sata";
> + #phy-cells = <0>;
> + status = "ok";
> + };
> };
> };
>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 4/4] Phy: Add DT nodes on kirkwood and Dove for the SATA PHY
2013-12-17 20:21 ` [PATCH 4/4] Phy: Add DT nodes on kirkwood and Dove for the SATA PHY Andrew Lunn
2013-12-18 6:32 ` Kishon Vijay Abraham I
@ 2013-12-22 17:21 ` Jason Cooper
1 sibling, 0 replies; 15+ messages in thread
From: Jason Cooper @ 2013-12-22 17:21 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Dec 17, 2013 at 09:21:52PM +0100, Andrew Lunn wrote:
> Add nodes for the two SATA PHYs on kirkwood.
> 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 at ... ->sata-phy@
> value after '@' matching the first address in the reg.
>
> v2->v3:
> "0" -> "port0", etc.
> kirkewood -> kirkwood
> ---
> 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(+)
Applied to mvebu/dt with Kishon's Ack.
Please double check me, I had to shuffle dove.dtsi since I recently
sorted the nodes under the ocp bus.
thx,
Jason.
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 1/4] Phy: DT binding documentation for Marvell MVEBU SATA phy.
2013-12-17 20:21 [PATCH 1/4] Phy: DT binding documentation for Marvell MVEBU SATA phy Andrew Lunn
` (2 preceding siblings ...)
2013-12-17 20:21 ` [PATCH 4/4] Phy: Add DT nodes on kirkwood and Dove for the SATA PHY Andrew Lunn
@ 2013-12-17 20:27 ` Andrew Lunn
2013-12-20 3:21 ` Jason Cooper
4 siblings, 0 replies; 15+ messages in thread
From: Andrew Lunn @ 2013-12-17 20:27 UTC (permalink / raw)
To: linux-arm-kernel
Hi Folks
Sorry, forgot the --subject. This is version 3 of the patchset.
Andrew
On Tue, Dec 17, 2013 at 09:21:49PM +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 phy-mvebu.txt
>
> v2->v3:
> Renamed to mvebu-phy.txt
> Use "port0", "port1" instead of "0", "1"
> ---
> Documentation/devicetree/bindings/ata/marvell.txt | 6 ++++++
> .../devicetree/bindings/phy/mvebu-phy.txt | 22 ++++++++++++++++++++++
> 2 files changed, 28 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/phy/mvebu-phy.txt
>
> diff --git a/Documentation/devicetree/bindings/ata/marvell.txt b/Documentation/devicetree/bindings/ata/marvell.txt
> index b5cdd20cde9c..4c5447f1068d 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 "port0", "port1", etc, one per phandle
> +
> Example:
>
> sata at 80000 {
> compatible = "marvell,orion-sata";
> reg = <0x80000 0x5000>;
> interrupts = <21>;
> + phys = <&sata_phy0>, <&sata_phy1>;
> + phy-names = "port0", "port1";
> nr-ports = <2>;
> }
> diff --git a/Documentation/devicetree/bindings/phy/mvebu-phy.txt b/Documentation/devicetree/bindings/phy/mvebu-phy.txt
> new file mode 100644
> index 000000000000..6cb3364aeafb
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/phy/mvebu-phy.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 at 84000 {
> + compatible = "marvell,mvebu-sata-phy";
> + reg = <0x84000 0x0334>;
> + clocks = <&gate_clk 15>;
> + clock-names = "sata";
> + #phy-cells = <0>;
> + status = "ok";
> + };
> --
> 1.8.5.1
>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 1/4] Phy: DT binding documentation for Marvell MVEBU SATA phy.
2013-12-17 20:21 [PATCH 1/4] Phy: DT binding documentation for Marvell MVEBU SATA phy Andrew Lunn
` (3 preceding siblings ...)
2013-12-17 20:27 ` [PATCH 1/4] Phy: DT binding documentation for Marvell MVEBU SATA phy Andrew Lunn
@ 2013-12-20 3:21 ` Jason Cooper
4 siblings, 0 replies; 15+ messages in thread
From: Jason Cooper @ 2013-12-20 3:21 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Dec 17, 2013 at 09:21:49PM +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 phy-mvebu.txt
>
> v2->v3:
> Renamed to mvebu-phy.txt
> Use "port0", "port1" instead of "0", "1"
> ---
> Documentation/devicetree/bindings/ata/marvell.txt | 6 ++++++
> .../devicetree/bindings/phy/mvebu-phy.txt | 22 ++++++++++++++++++++++
> 2 files changed, 28 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/phy/mvebu-phy.txt
Acked-by: Jason Cooper <jason@lakedaemon.net>
thx,
Jason.
^ permalink raw reply [flat|nested] 15+ messages in thread