* [U-Boot] [PATCH] net: phy/cortina: Add four phy addresses support
@ 2014-04-30 2:54 Chunhe Lan
2014-07-18 21:12 ` York Sun
0 siblings, 1 reply; 3+ messages in thread
From: Chunhe Lan @ 2014-04-30 2:54 UTC (permalink / raw)
To: u-boot
Before CORTINA driver only supports two phy addresses.
This patch adds the four phy addresses support for
CORTINA PHY module.
Signed-off-by: Chunhe Lan <Chunhe.Lan@freescale.com>
---
drivers/net/phy/cortina.c | 28 ++++++++++++++++++++++------
1 files changed, 22 insertions(+), 6 deletions(-)
diff --git a/drivers/net/phy/cortina.c b/drivers/net/phy/cortina.c
index 7e46679..1b9434f 100644
--- a/drivers/net/phy/cortina.c
+++ b/drivers/net/phy/cortina.c
@@ -289,25 +289,41 @@ int phy_cortina_init(void)
int get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id)
{
int phy_reg;
+ bool cortina_phy = false;
+
+ switch (addr) {
+#ifdef CORTINA_PHY_ADDR1
+ case CORTINA_PHY_ADDR1:
+#endif
+#ifdef CORTINA_PHY_ADDR2
+ case CORTINA_PHY_ADDR2:
+#endif
+#ifdef CORTINA_PHY_ADDR3
+ case CORTINA_PHY_ADDR3:
+#endif
+#ifdef CORTINA_PHY_ADDR4
+ case CORTINA_PHY_ADDR4:
+#endif
+ cortina_phy = true;
+ break;
+ default:
+ break;
+ }
-#if defined(CORTINA_PHY_ADDR1) || defined(CORTINA_PHY_ADDR2)
/* Cortina PHY has non-standard offset of PHY ID registers */
- if (addr == CORTINA_PHY_ADDR1 || addr == CORTINA_PHY_ADDR2)
+ if (cortina_phy)
phy_reg = bus->read(bus, addr, 0, VILLA_GLOBAL_CHIP_ID_LSB);
else
-#endif
phy_reg = bus->read(bus, addr, devad, MII_PHYSID1);
if (phy_reg < 0)
return -EIO;
*phy_id = (phy_reg & 0xffff) << 16;
-#if defined(CORTINA_PHY_ADDR1) || defined(CORTINA_PHY_ADDR2)
/* Cortina PHY has non-standard offset of PHY ID registers */
- if (addr == CORTINA_PHY_ADDR1 || addr == CORTINA_PHY_ADDR2)
+ if (cortina_phy)
phy_reg = bus->read(bus, addr, 0, VILLA_GLOBAL_CHIP_ID_MSB);
else
-#endif
phy_reg = bus->read(bus, addr, devad, MII_PHYSID2);
if (phy_reg < 0)
--
1.7.6.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH] net: phy/cortina: Add four phy addresses support
2014-04-30 2:54 [U-Boot] [PATCH] net: phy/cortina: Add four phy addresses support Chunhe Lan
@ 2014-07-18 21:12 ` York Sun
2014-07-18 21:20 ` York Sun
0 siblings, 1 reply; 3+ messages in thread
From: York Sun @ 2014-07-18 21:12 UTC (permalink / raw)
To: u-boot
On 04/29/2014 07:54 PM, Chunhe Lan wrote:
> Before CORTINA driver only supports two phy addresses.
> This patch adds the four phy addresses support for
> CORTINA PHY module.
>
> Signed-off-by: Chunhe Lan <Chunhe.Lan@freescale.com>
> ---
> drivers/net/phy/cortina.c | 28 ++++++++++++++++++++++------
> 1 files changed, 22 insertions(+), 6 deletions(-)
>
Chunhe,
Does this patch depend on other patches? I don't see cortina.c file.
York
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH] net: phy/cortina: Add four phy addresses support
2014-07-18 21:12 ` York Sun
@ 2014-07-18 21:20 ` York Sun
0 siblings, 0 replies; 3+ messages in thread
From: York Sun @ 2014-07-18 21:20 UTC (permalink / raw)
To: u-boot
On 07/18/2014 02:12 PM, York Sun wrote:
> On 04/29/2014 07:54 PM, Chunhe Lan wrote:
>> Before CORTINA driver only supports two phy addresses.
>> This patch adds the four phy addresses support for
>> CORTINA PHY module.
>>
>> Signed-off-by: Chunhe Lan <Chunhe.Lan@freescale.com>
>> ---
>> drivers/net/phy/cortina.c | 28 ++++++++++++++++++++++------
>> 1 files changed, 22 insertions(+), 6 deletions(-)
>>
>
> Chunhe,
>
> Does this patch depend on other patches? I don't see cortina.c file.
>
Looks like you have this patch consolidated into this one
http://patchwork.ozlabs.org/patch/350162/.
Please confirm so we can drop this.
York
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-07-18 21:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-30 2:54 [U-Boot] [PATCH] net: phy/cortina: Add four phy addresses support Chunhe Lan
2014-07-18 21:12 ` York Sun
2014-07-18 21:20 ` York Sun
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox