lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Wed, 22 Oct 2014 20:26:45 +0200 From: Sebastian Hesselbarth <sebastian.hesselbarth@...il.com> To: Sebastian Hesselbarth <sebastian.hesselbarth@...il.com> Cc: "David S. Miller" <davem@...emloft.net>, Antoine Ténart <antoine.tenart@...e-electrons.com>, Florian Fainelli <f.fainelli@...il.com>, Eric Miao <eric.y.miao@...il.com>, Haojian Zhuang <haojian.zhuang@...il.com>, linux-arm-kernel@...ts.infradead.org, netdev@...r.kernel.org, linux-kernel@...r.kernel.org Subject: [PATCH v2 2/9] net: pxa168_eth: Provide phy_interface mode on platform_data The PXA168 Ethernet IP support MII and RMII connection to its PHY. Currently, pxa168 platform_data does not provide a way to pass that and there is one user of pxa168 platform_data (mach-mmp/gplug). Given the pinctrl settings of gplug it uses RMII, so add and pass a corresponding phy_interface_t. Tested-by: Antoine Ténart <antoine.tenart@...e-electrons.com> Reviewed-by: Florian Fainelli <f.fainelli@...il.com> Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@...il.com> --- Cc: "David S. Miller" <davem@...emloft.net> Cc: "Antoine Ténart" <antoine.tenart@...e-electrons.com> Cc: Florian Fainelli <f.fainelli@...il.com> Cc: Eric Miao <eric.y.miao@...il.com> Cc: Haojian Zhuang <haojian.zhuang@...il.com> Cc: linux-arm-kernel@...ts.infradead.org Cc: netdev@...r.kernel.org Cc: linux-kernel@...r.kernel.org --- arch/arm/mach-mmp/gplugd.c | 2 ++ include/linux/pxa168_eth.h | 1 + 2 files changed, 3 insertions(+) diff --git a/arch/arm/mach-mmp/gplugd.c b/arch/arm/mach-mmp/gplugd.c index d81b2475e67e..3b5794cd0357 100644 --- a/arch/arm/mach-mmp/gplugd.c +++ b/arch/arm/mach-mmp/gplugd.c @@ -12,6 +12,7 @@ #include <linux/platform_device.h> #include <linux/gpio.h> #include <linux/gpio-pxa.h> +#include <linux/phy.h> #include <asm/mach/arch.h> #include <asm/mach-types.h> @@ -158,6 +159,7 @@ struct pxa168_eth_platform_data gplugd_eth_platform_data = { .port_number = 0, .phy_addr = 0, .speed = 0, /* Autonagotiation */ + .intf = PHY_INTERFACE_MODE_RMII, .init = gplugd_eth_init, }; diff --git a/include/linux/pxa168_eth.h b/include/linux/pxa168_eth.h index 18d75e795606..37c381120bc8 100644 --- a/include/linux/pxa168_eth.h +++ b/include/linux/pxa168_eth.h @@ -13,6 +13,7 @@ struct pxa168_eth_platform_data { */ int speed; /* 0, SPEED_10, SPEED_100 */ int duplex; /* DUPLEX_HALF or DUPLEX_FULL */ + phy_interface_t intf; /* * Override default RX/TX queue sizes if nonzero. -- 2.1.1 -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists