* [PATCH 1/2] chelsio: Use generic XENPAK LASI register definitions
@ 2009-05-19 23:21 Ben Hutchings
2009-05-21 1:51 ` Divy Le Ray
0 siblings, 1 reply; 3+ messages in thread
From: Ben Hutchings @ 2009-05-19 23:21 UTC (permalink / raw)
To: David Miller; +Cc: Divy Le Ray, netdev
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
---
This follows on from:
commit 1c5022eb408e5d9ce48ffbd93d6e34d6f397a1e9
Author: Ben Hutchings <bhutchings@solarflare.com>
Date: Fri May 15 00:47:59 2009 +0100
mdio: Add XENPAK LASI register definitions
These registers were originally defined for XENPAK modules, but are
also implemented by many other 10G PHYs.
Ben.
drivers/net/chelsio/mv88x201x.c | 17 +++++++++--------
1 files changed, 9 insertions(+), 8 deletions(-)
diff --git a/drivers/net/chelsio/mv88x201x.c b/drivers/net/chelsio/mv88x201x.c
index 29e0cba..d50907b 100644
--- a/drivers/net/chelsio/mv88x201x.c
+++ b/drivers/net/chelsio/mv88x201x.c
@@ -86,7 +86,8 @@ static int mv88x201x_reset(struct cphy *cphy, int wait)
static int mv88x201x_interrupt_enable(struct cphy *cphy)
{
/* Enable PHY LASI interrupts. */
- cphy_mdio_write(cphy, MDIO_MMD_PMAPMD, 0x9002, 0x1);
+ cphy_mdio_write(cphy, MDIO_MMD_PMAPMD, MDIO_PMA_LASI_CTRL,
+ MDIO_PMA_LASI_LSALARM);
/* Enable Marvell interrupts through Elmer0. */
if (t1_is_asic(cphy->adapter)) {
@@ -102,7 +103,7 @@ static int mv88x201x_interrupt_enable(struct cphy *cphy)
static int mv88x201x_interrupt_disable(struct cphy *cphy)
{
/* Disable PHY LASI interrupts. */
- cphy_mdio_write(cphy, MDIO_MMD_PMAPMD, 0x9002, 0x0);
+ cphy_mdio_write(cphy, MDIO_MMD_PMAPMD, MDIO_PMA_LASI_CTRL, 0x0);
/* Disable Marvell interrupts through Elmer0. */
if (t1_is_asic(cphy->adapter)) {
@@ -122,9 +123,9 @@ static int mv88x201x_interrupt_clear(struct cphy *cphy)
#ifdef MV88x2010_LINK_STATUS_BUGS
/* Required to read twice before clear takes affect. */
- cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, 0x9003, &val);
- cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, 0x9004, &val);
- cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, 0x9005, &val);
+ cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, MDIO_PMA_LASI_RXSTAT, &val);
+ cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, MDIO_PMA_LASI_TXSTAT, &val);
+ cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, MDIO_PMA_LASI_STAT, &val);
/* Read this register after the others above it else
* the register doesn't clear correctly.
@@ -135,12 +136,12 @@ static int mv88x201x_interrupt_clear(struct cphy *cphy)
/* Clear link status. */
cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, MDIO_STAT1, &val);
/* Clear PHY LASI interrupts. */
- cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, 0x9005, &val);
+ cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, MDIO_PMA_LASI_STAT, &val);
#ifdef MV88x2010_LINK_STATUS_BUGS
/* Do it again. */
- cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, 0x9003, &val);
- cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, 0x9004, &val);
+ cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, MDIO_PMA_LASI_RXSTAT, &val);
+ cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, MDIO_PMA_LASI_TXSTAT, &val);
#endif
/* Clear Marvell interrupts through Elmer0. */
--
Ben Hutchings, Senior Software Engineer, Solarflare Communications
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] chelsio: Use generic XENPAK LASI register definitions
2009-05-19 23:21 [PATCH 1/2] chelsio: Use generic XENPAK LASI register definitions Ben Hutchings
@ 2009-05-21 1:51 ` Divy Le Ray
2009-05-21 3:52 ` David Miller
0 siblings, 1 reply; 3+ messages in thread
From: Divy Le Ray @ 2009-05-21 1:51 UTC (permalink / raw)
To: Ben Hutchings; +Cc: David Miller, netdev
Ben Hutchings wrote:
> Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
>
Acked-by: Divy Le Ray <divy@chelsio.com>
> ---
> This follows on from:
>
> commit 1c5022eb408e5d9ce48ffbd93d6e34d6f397a1e9
> Author: Ben Hutchings <bhutchings@solarflare.com>
> Date: Fri May 15 00:47:59 2009 +0100
>
> mdio: Add XENPAK LASI register definitions
>
> These registers were originally defined for XENPAK modules, but are
> also implemented by many other 10G PHYs.
>
> Ben.
>
> drivers/net/chelsio/mv88x201x.c | 17 +++++++++--------
> 1 files changed, 9 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/net/chelsio/mv88x201x.c b/drivers/net/chelsio/mv88x201x.c
> index 29e0cba..d50907b 100644
> --- a/drivers/net/chelsio/mv88x201x.c
> +++ b/drivers/net/chelsio/mv88x201x.c
> @@ -86,7 +86,8 @@ static int mv88x201x_reset(struct cphy *cphy, int wait)
> static int mv88x201x_interrupt_enable(struct cphy *cphy)
> {
> /* Enable PHY LASI interrupts. */
> - cphy_mdio_write(cphy, MDIO_MMD_PMAPMD, 0x9002, 0x1);
> + cphy_mdio_write(cphy, MDIO_MMD_PMAPMD, MDIO_PMA_LASI_CTRL,
> + MDIO_PMA_LASI_LSALARM);
>
> /* Enable Marvell interrupts through Elmer0. */
> if (t1_is_asic(cphy->adapter)) {
> @@ -102,7 +103,7 @@ static int mv88x201x_interrupt_enable(struct cphy *cphy)
> static int mv88x201x_interrupt_disable(struct cphy *cphy)
> {
> /* Disable PHY LASI interrupts. */
> - cphy_mdio_write(cphy, MDIO_MMD_PMAPMD, 0x9002, 0x0);
> + cphy_mdio_write(cphy, MDIO_MMD_PMAPMD, MDIO_PMA_LASI_CTRL, 0x0);
>
> /* Disable Marvell interrupts through Elmer0. */
> if (t1_is_asic(cphy->adapter)) {
> @@ -122,9 +123,9 @@ static int mv88x201x_interrupt_clear(struct cphy *cphy)
>
> #ifdef MV88x2010_LINK_STATUS_BUGS
> /* Required to read twice before clear takes affect. */
> - cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, 0x9003, &val);
> - cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, 0x9004, &val);
> - cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, 0x9005, &val);
> + cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, MDIO_PMA_LASI_RXSTAT, &val);
> + cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, MDIO_PMA_LASI_TXSTAT, &val);
> + cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, MDIO_PMA_LASI_STAT, &val);
>
> /* Read this register after the others above it else
> * the register doesn't clear correctly.
> @@ -135,12 +136,12 @@ static int mv88x201x_interrupt_clear(struct cphy *cphy)
> /* Clear link status. */
> cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, MDIO_STAT1, &val);
> /* Clear PHY LASI interrupts. */
> - cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, 0x9005, &val);
> + cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, MDIO_PMA_LASI_STAT, &val);
>
> #ifdef MV88x2010_LINK_STATUS_BUGS
> /* Do it again. */
> - cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, 0x9003, &val);
> - cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, 0x9004, &val);
> + cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, MDIO_PMA_LASI_RXSTAT, &val);
> + cphy_mdio_read(cphy, MDIO_MMD_PMAPMD, MDIO_PMA_LASI_TXSTAT, &val);
> #endif
>
> /* Clear Marvell interrupts through Elmer0. */
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] chelsio: Use generic XENPAK LASI register definitions
2009-05-21 1:51 ` Divy Le Ray
@ 2009-05-21 3:52 ` David Miller
0 siblings, 0 replies; 3+ messages in thread
From: David Miller @ 2009-05-21 3:52 UTC (permalink / raw)
To: divy; +Cc: bhutchings, netdev
From: Divy Le Ray <divy@chelsio.com>
Date: Wed, 20 May 2009 18:51:36 -0700
> Ben Hutchings wrote:
>> Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
>>
>
> Acked-by: Divy Le Ray <divy@chelsio.com>
Applied.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-05-21 3:52 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-19 23:21 [PATCH 1/2] chelsio: Use generic XENPAK LASI register definitions Ben Hutchings
2009-05-21 1:51 ` Divy Le Ray
2009-05-21 3:52 ` David Miller
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).