* [PATCH] net/phy: add driver for National Semiconductor DP83865 PHY
@ 2014-01-13 8:39 Antony Pavlov
2014-01-14 16:24 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Antony Pavlov @ 2014-01-13 8:39 UTC (permalink / raw)
To: barebox
Based on Linux kernel 3.12 driver.
Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
---
drivers/net/phy/Kconfig | 5 +++
drivers/net/phy/Makefile | 1 +
drivers/net/phy/national.c | 95 ++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 101 insertions(+)
create mode 100644 drivers/net/phy/national.c
diff --git a/drivers/net/phy/Kconfig b/drivers/net/phy/Kconfig
index 7ebdaa0..260774e 100644
--- a/drivers/net/phy/Kconfig
+++ b/drivers/net/phy/Kconfig
@@ -23,6 +23,11 @@ config MICREL_PHY
---help---
Supports the KSZ9021, VSC8201, KS8001 PHYs.
+config NATIONAL_PHY
+ bool "Driver for National Semiconductor PHYs"
+ ---help---
+ Currently supports the DP83865 PHY.
+
config SMSC_PHY
bool "Drivers for SMSC PHYs"
---help---
diff --git a/drivers/net/phy/Makefile b/drivers/net/phy/Makefile
index 451573e..a00cc76 100644
--- a/drivers/net/phy/Makefile
+++ b/drivers/net/phy/Makefile
@@ -2,4 +2,5 @@ obj-y += phy.o mdio_bus.o
obj-$(CONFIG_AT803X_PHY) += at803x.o
obj-$(CONFIG_LXT_PHY) += lxt.o
obj-$(CONFIG_MICREL_PHY) += micrel.o
+obj-$(CONFIG_NATIONAL_PHY) += national.o
obj-$(CONFIG_SMSC_PHY) += smsc.o
diff --git a/drivers/net/phy/national.c b/drivers/net/phy/national.c
new file mode 100644
index 0000000..e46d587
--- /dev/null
+++ b/drivers/net/phy/national.c
@@ -0,0 +1,95 @@
+/*
+ * drivers/net/phy/national.c
+ *
+ * Driver for National Semiconductor PHYs
+ *
+ * based on Stuart Menefy's linux national.c driver
+ *
+ * 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 <common.h>
+#include <init.h>
+#include <linux/phy.h>
+
+/* Advanced proprietary configuration */
+#define NS_EXP_MEM_CTL 0x16
+#define NS_EXP_MEM_DATA 0x1d
+#define NS_EXP_MEM_ADD 0x1e
+
+#define LED_CTRL_REG 0x13
+#define AN_FALLBACK_AN 0x0001
+#define AN_FALLBACK_CRC 0x0002
+#define AN_FALLBACK_IE 0x0004
+#define ALL_FALLBACK_ON (AN_FALLBACK_AN | AN_FALLBACK_CRC | AN_FALLBACK_IE)
+
+enum hdx_loopback {
+ hdx_loopback_on = 0,
+ hdx_loopback_off = 1,
+};
+
+static u8 ns_exp_read(struct phy_device *phydev, u16 reg)
+{
+ phy_write(phydev, NS_EXP_MEM_ADD, reg);
+ return phy_read(phydev, NS_EXP_MEM_DATA);
+}
+
+static void ns_exp_write(struct phy_device *phydev, u16 reg, u8 data)
+{
+ phy_write(phydev, NS_EXP_MEM_ADD, reg);
+ phy_write(phydev, NS_EXP_MEM_DATA, data);
+}
+
+static void ns_giga_speed_fallback(struct phy_device *phydev, int mode)
+{
+ int bmcr = phy_read(phydev, MII_BMCR);
+
+ phy_write(phydev, MII_BMCR, (bmcr | BMCR_PDOWN));
+
+ /* Enable 8 bit expended memory read/write (no auto increment) */
+ phy_write(phydev, NS_EXP_MEM_CTL, 0);
+ phy_write(phydev, NS_EXP_MEM_ADD, 0x1C0);
+ phy_write(phydev, NS_EXP_MEM_DATA, 0x0008);
+ phy_write(phydev, MII_BMCR, (bmcr & ~BMCR_PDOWN));
+ phy_write(phydev, LED_CTRL_REG, mode);
+}
+
+static void ns_10_base_t_hdx_loopack(struct phy_device *phydev, int disable)
+{
+ if (disable)
+ ns_exp_write(phydev, 0x1c0, ns_exp_read(phydev, 0x1c0) | 1);
+ else
+ ns_exp_write(phydev, 0x1c0,
+ ns_exp_read(phydev, 0x1c0) & 0xfffe);
+
+ pr_debug("10BASE-T HDX loopback %s\n",
+ (ns_exp_read(phydev, 0x1c0) & 0x0001) ? "off" : "on");
+}
+
+static int ns_config_init(struct phy_device *phydev)
+{
+ ns_giga_speed_fallback(phydev, ALL_FALLBACK_ON);
+ /* In the latest MAC or switches design, the 10 Mbps loopback
+ is desired to be turned off. */
+ ns_10_base_t_hdx_loopack(phydev, hdx_loopback_off);
+
+ return 0;
+}
+
+static struct phy_driver dp83865_driver = {
+ .phy_id = 0x20005c70,
+ .phy_id_mask = 0xfffffff0,
+ .drv.name = "NatSemi DP83865",
+ .features = PHY_GBIT_FEATURES |
+ SUPPORTED_Pause | SUPPORTED_Asym_Pause,
+ .config_init = ns_config_init,
+};
+
+static int ns_phy_init(void)
+{
+ return phy_driver_register(&dp83865_driver);
+}
+fs_initcall(ns_phy_init);
--
1.8.5.2
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] net/phy: add driver for National Semiconductor DP83865 PHY
2014-01-13 8:39 [PATCH] net/phy: add driver for National Semiconductor DP83865 PHY Antony Pavlov
@ 2014-01-14 16:24 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2014-01-14 16:24 UTC (permalink / raw)
To: Antony Pavlov; +Cc: barebox
On Mon, Jan 13, 2014 at 12:39:59PM +0400, Antony Pavlov wrote:
> Based on Linux kernel 3.12 driver.
>
> Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
Applied, thanks
Sascha
> ---
> drivers/net/phy/Kconfig | 5 +++
> drivers/net/phy/Makefile | 1 +
> drivers/net/phy/national.c | 95 ++++++++++++++++++++++++++++++++++++++++++++++
> 3 files changed, 101 insertions(+)
> create mode 100644 drivers/net/phy/national.c
>
> diff --git a/drivers/net/phy/Kconfig b/drivers/net/phy/Kconfig
> index 7ebdaa0..260774e 100644
> --- a/drivers/net/phy/Kconfig
> +++ b/drivers/net/phy/Kconfig
> @@ -23,6 +23,11 @@ config MICREL_PHY
> ---help---
> Supports the KSZ9021, VSC8201, KS8001 PHYs.
>
> +config NATIONAL_PHY
> + bool "Driver for National Semiconductor PHYs"
> + ---help---
> + Currently supports the DP83865 PHY.
> +
> config SMSC_PHY
> bool "Drivers for SMSC PHYs"
> ---help---
> diff --git a/drivers/net/phy/Makefile b/drivers/net/phy/Makefile
> index 451573e..a00cc76 100644
> --- a/drivers/net/phy/Makefile
> +++ b/drivers/net/phy/Makefile
> @@ -2,4 +2,5 @@ obj-y += phy.o mdio_bus.o
> obj-$(CONFIG_AT803X_PHY) += at803x.o
> obj-$(CONFIG_LXT_PHY) += lxt.o
> obj-$(CONFIG_MICREL_PHY) += micrel.o
> +obj-$(CONFIG_NATIONAL_PHY) += national.o
> obj-$(CONFIG_SMSC_PHY) += smsc.o
> diff --git a/drivers/net/phy/national.c b/drivers/net/phy/national.c
> new file mode 100644
> index 0000000..e46d587
> --- /dev/null
> +++ b/drivers/net/phy/national.c
> @@ -0,0 +1,95 @@
> +/*
> + * drivers/net/phy/national.c
> + *
> + * Driver for National Semiconductor PHYs
> + *
> + * based on Stuart Menefy's linux national.c driver
> + *
> + * 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 <common.h>
> +#include <init.h>
> +#include <linux/phy.h>
> +
> +/* Advanced proprietary configuration */
> +#define NS_EXP_MEM_CTL 0x16
> +#define NS_EXP_MEM_DATA 0x1d
> +#define NS_EXP_MEM_ADD 0x1e
> +
> +#define LED_CTRL_REG 0x13
> +#define AN_FALLBACK_AN 0x0001
> +#define AN_FALLBACK_CRC 0x0002
> +#define AN_FALLBACK_IE 0x0004
> +#define ALL_FALLBACK_ON (AN_FALLBACK_AN | AN_FALLBACK_CRC | AN_FALLBACK_IE)
> +
> +enum hdx_loopback {
> + hdx_loopback_on = 0,
> + hdx_loopback_off = 1,
> +};
> +
> +static u8 ns_exp_read(struct phy_device *phydev, u16 reg)
> +{
> + phy_write(phydev, NS_EXP_MEM_ADD, reg);
> + return phy_read(phydev, NS_EXP_MEM_DATA);
> +}
> +
> +static void ns_exp_write(struct phy_device *phydev, u16 reg, u8 data)
> +{
> + phy_write(phydev, NS_EXP_MEM_ADD, reg);
> + phy_write(phydev, NS_EXP_MEM_DATA, data);
> +}
> +
> +static void ns_giga_speed_fallback(struct phy_device *phydev, int mode)
> +{
> + int bmcr = phy_read(phydev, MII_BMCR);
> +
> + phy_write(phydev, MII_BMCR, (bmcr | BMCR_PDOWN));
> +
> + /* Enable 8 bit expended memory read/write (no auto increment) */
> + phy_write(phydev, NS_EXP_MEM_CTL, 0);
> + phy_write(phydev, NS_EXP_MEM_ADD, 0x1C0);
> + phy_write(phydev, NS_EXP_MEM_DATA, 0x0008);
> + phy_write(phydev, MII_BMCR, (bmcr & ~BMCR_PDOWN));
> + phy_write(phydev, LED_CTRL_REG, mode);
> +}
> +
> +static void ns_10_base_t_hdx_loopack(struct phy_device *phydev, int disable)
> +{
> + if (disable)
> + ns_exp_write(phydev, 0x1c0, ns_exp_read(phydev, 0x1c0) | 1);
> + else
> + ns_exp_write(phydev, 0x1c0,
> + ns_exp_read(phydev, 0x1c0) & 0xfffe);
> +
> + pr_debug("10BASE-T HDX loopback %s\n",
> + (ns_exp_read(phydev, 0x1c0) & 0x0001) ? "off" : "on");
> +}
> +
> +static int ns_config_init(struct phy_device *phydev)
> +{
> + ns_giga_speed_fallback(phydev, ALL_FALLBACK_ON);
> + /* In the latest MAC or switches design, the 10 Mbps loopback
> + is desired to be turned off. */
> + ns_10_base_t_hdx_loopack(phydev, hdx_loopback_off);
> +
> + return 0;
> +}
> +
> +static struct phy_driver dp83865_driver = {
> + .phy_id = 0x20005c70,
> + .phy_id_mask = 0xfffffff0,
> + .drv.name = "NatSemi DP83865",
> + .features = PHY_GBIT_FEATURES |
> + SUPPORTED_Pause | SUPPORTED_Asym_Pause,
> + .config_init = ns_config_init,
> +};
> +
> +static int ns_phy_init(void)
> +{
> + return phy_driver_register(&dp83865_driver);
> +}
> +fs_initcall(ns_phy_init);
> --
> 1.8.5.2
>
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-01-14 16:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-13 8:39 [PATCH] net/phy: add driver for National Semiconductor DP83865 PHY Antony Pavlov
2014-01-14 16:24 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox