netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] More ethtool support for sis900
@ 2005-03-05 13:40 Daniele Venzano
  2005-03-05 18:28 ` Jeff Garzik
  0 siblings, 1 reply; 5+ messages in thread
From: Daniele Venzano @ 2005-03-05 13:40 UTC (permalink / raw)
  To: netdev, jgarzik

[-- Attachment #1: Type: text/plain, Size: 203 bytes --]



Add support for using generic mii interface
Add support for the following ethtool ops:
	- get_link
	- get_settings
	- set_settings
	- nway_reset



Signed-off-by: Daniele Venzano <webvenza@libero.it>


[-- Attachment #2: Type: text/plain, Size: 3091 bytes --]

Index: sis900.c
===================================================================
--- a/drivers/net/sis900.c	(revision 95)
+++ b/drivers/net/sis900.c	(revision 97)
@@ -161,6 +161,7 @@
 	struct mii_phy * mii;
 	struct mii_phy * first_mii; /* record the first mii structure */
 	unsigned int cur_phy;
+	struct mii_if_info mii_info;
 
 	struct timer_list timer; /* Link status detection timer. */
 	u8 autong_complete; /* 1: auto-negotiate complete  */
@@ -199,7 +200,7 @@
 static int sis900_mii_probe (struct net_device * net_dev);
 static void sis900_init_rxfilter (struct net_device * net_dev);
 static u16 read_eeprom(long ioaddr, int location);
-static u16 mdio_read(struct net_device *net_dev, int phy_id, int location);
+static int mdio_read(struct net_device *net_dev, int phy_id, int location);
 static void mdio_write(struct net_device *net_dev, int phy_id, int location, int val);
 static void sis900_timer(unsigned long data);
 static void sis900_check_mode (struct net_device *net_dev, struct mii_phy *mii_phy);
@@ -468,7 +469,13 @@
 		sis_priv->msg_enable = sis900_debug;
 	else
 		sis_priv->msg_enable = SIS900_DEF_MSG;
-	
+
+	sis_priv->mii_info.dev = net_dev;
+	sis_priv->mii_info.mdio_read = mdio_read;
+	sis_priv->mii_info.mdio_write = mdio_write;
+	sis_priv->mii_info.phy_id_mask = 0x1f;
+	sis_priv->mii_info.reg_num_mask = 0x1f;
+
 	ret = register_netdev(net_dev);
 	if (ret)
 		goto err_unmap_rx;
@@ -507,6 +514,8 @@
 		goto err_out_unregister;
 	}
 
+	sis_priv->mii_info.phy_id = sis_priv->cur_phy;
+
 	/* save our host bridge revision */
 	dev = pci_get_device(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_630, NULL);
 	if (dev) {
@@ -843,7 +852,7 @@
  *	Please see SiS7014 or ICS spec
  */
 
-static u16 mdio_read(struct net_device *net_dev, int phy_id, int location)
+static int mdio_read(struct net_device *net_dev, int phy_id, int location)
 {
 	long mdio_addr = net_dev->base_addr + mear;
 	int mii_cmd = MIIread|(phy_id<<MIIpmdShift)|(location<<MIIregShift);
@@ -1943,10 +1952,41 @@
 	sis_priv->msg_enable = value;
 }
 
+static u32 sis900_get_link(struct net_device *net_dev)
+{
+	struct sis900_private *sis_priv = net_dev->priv;
+	return mii_link_ok(&sis_priv->mii_info);
+}
+
+static int sis900_get_settings(struct net_device *net_dev,
+				struct ethtool_cmd *cmd)
+{
+	struct sis900_private *sis_priv = net_dev->priv;
+	mii_ethtool_gset(&sis_priv->mii_info, cmd);
+	return 0;
+}
+
+static int sis900_set_settings(struct net_device *net_dev,
+				struct ethtool_cmd *cmd)
+{
+	struct sis900_private *sis_priv = net_dev->priv;
+	return mii_ethtool_sset(&sis_priv->mii_info, cmd);
+}
+
+static int sis900_nway_reset(struct net_device *net_dev)
+{
+	struct sis900_private *sis_priv = net_dev->priv;
+	return mii_nway_restart(&sis_priv->mii_info);
+}
+
 static struct ethtool_ops sis900_ethtool_ops = {
 	.get_drvinfo 	= sis900_get_drvinfo,
 	.get_msglevel	= sis900_get_msglevel,
 	.set_msglevel	= sis900_set_msglevel,
+	.get_link	= sis900_get_link,
+	.get_settings	= sis900_get_settings,
+	.set_settings	= sis900_set_settings,
+	.nway_reset	= sis900_nway_reset,
 };
 
 /**

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/1] More ethtool support for sis900
  2005-03-05 13:40 [PATCH 1/1] More ethtool support for sis900 Daniele Venzano
@ 2005-03-05 18:28 ` Jeff Garzik
  2005-03-05 20:53   ` Daniele Venzano
  0 siblings, 1 reply; 5+ messages in thread
From: Jeff Garzik @ 2005-03-05 18:28 UTC (permalink / raw)
  To: Daniele Venzano; +Cc: netdev

Daniele Venzano wrote:
> 
> Add support for using generic mii interface
> Add support for the following ethtool ops:
> 	- get_link
> 	- get_settings
> 	- set_settings
> 	- nway_reset
> 
> 
> 
> Signed-off-by: Daniele Venzano <webvenza@libero.it>
> 
> 
> ------------------------------------------------------------------------
> 
> Index: sis900.c
> ===================================================================
> --- a/drivers/net/sis900.c	(revision 95)
> +++ b/drivers/net/sis900.c	(revision 97)
> @@ -161,6 +161,7 @@
>  	struct mii_phy * mii;
>  	struct mii_phy * first_mii; /* record the first mii structure */
>  	unsigned int cur_phy;
> +	struct mii_if_info mii_info;
>  
>  	struct timer_list timer; /* Link status detection timer. */
>  	u8 autong_complete; /* 1: auto-negotiate complete  */
> @@ -199,7 +200,7 @@
>  static int sis900_mii_probe (struct net_device * net_dev);
>  static void sis900_init_rxfilter (struct net_device * net_dev);
>  static u16 read_eeprom(long ioaddr, int location);
> -static u16 mdio_read(struct net_device *net_dev, int phy_id, int location);
> +static int mdio_read(struct net_device *net_dev, int phy_id, int location);
>  static void mdio_write(struct net_device *net_dev, int phy_id, int location, int val);
>  static void sis900_timer(unsigned long data);
>  static void sis900_check_mode (struct net_device *net_dev, struct mii_phy *mii_phy);
> @@ -468,7 +469,13 @@
>  		sis_priv->msg_enable = sis900_debug;
>  	else
>  		sis_priv->msg_enable = SIS900_DEF_MSG;
> -	
> +
> +	sis_priv->mii_info.dev = net_dev;
> +	sis_priv->mii_info.mdio_read = mdio_read;
> +	sis_priv->mii_info.mdio_write = mdio_write;
> +	sis_priv->mii_info.phy_id_mask = 0x1f;
> +	sis_priv->mii_info.reg_num_mask = 0x1f;
> +
>  	ret = register_netdev(net_dev);
>  	if (ret)
>  		goto err_unmap_rx;
> @@ -507,6 +514,8 @@
>  		goto err_out_unregister;
>  	}
>  
> +	sis_priv->mii_info.phy_id = sis_priv->cur_phy;
> +
>  	/* save our host bridge revision */
>  	dev = pci_get_device(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_630, NULL);
>  	if (dev) {
> @@ -843,7 +852,7 @@
>   *	Please see SiS7014 or ICS spec
>   */
>  
> -static u16 mdio_read(struct net_device *net_dev, int phy_id, int location)
> +static int mdio_read(struct net_device *net_dev, int phy_id, int location)
>  {
>  	long mdio_addr = net_dev->base_addr + mear;
>  	int mii_cmd = MIIread|(phy_id<<MIIpmdShift)|(location<<MIIregShift);
> @@ -1943,10 +1952,41 @@
>  	sis_priv->msg_enable = value;
>  }
>  
> +static u32 sis900_get_link(struct net_device *net_dev)
> +{
> +	struct sis900_private *sis_priv = net_dev->priv;
> +	return mii_link_ok(&sis_priv->mii_info);
> +}
> +
> +static int sis900_get_settings(struct net_device *net_dev,
> +				struct ethtool_cmd *cmd)
> +{
> +	struct sis900_private *sis_priv = net_dev->priv;
> +	mii_ethtool_gset(&sis_priv->mii_info, cmd);
> +	return 0;
> +}
> +
> +static int sis900_set_settings(struct net_device *net_dev,
> +				struct ethtool_cmd *cmd)
> +{
> +	struct sis900_private *sis_priv = net_dev->priv;
> +	return mii_ethtool_sset(&sis_priv->mii_info, cmd);
> +}
> +
> +static int sis900_nway_reset(struct net_device *net_dev)
> +{
> +	struct sis900_private *sis_priv = net_dev->priv;
> +	return mii_nway_restart(&sis_priv->mii_info);
> +}

I should think you want locking for these, as is present in other drivers...

	Jeff

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/1] More ethtool support for sis900
  2005-03-05 18:28 ` Jeff Garzik
@ 2005-03-05 20:53   ` Daniele Venzano
  2005-03-06  0:15     ` Francois Romieu
  0 siblings, 1 reply; 5+ messages in thread
From: Daniele Venzano @ 2005-03-05 20:53 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: netdev

On 05/mar/05, at 19:28, Jeff Garzik wrote:
>> +static int sis900_set_settings(struct net_device *net_dev,
>> +				struct ethtool_cmd *cmd)
>> +{
>> +	struct sis900_private *sis_priv = net_dev->priv;
>> +	return mii_ethtool_sset(&sis_priv->mii_info, cmd);
>> +}
>> +
>> +static int sis900_nway_reset(struct net_device *net_dev)
>> +{
>> +	struct sis900_private *sis_priv = net_dev->priv;
>> +	return mii_nway_restart(&sis_priv->mii_info);
>> +}
>
> I should think you want locking for these, as is present in other 
> drivers...
I saw the locking, but I couldn't come up with a reason for it. Is it 
needed because of kernel wide preemption ?
I don't like copying blindly and the documentation for the mii 
interface is a bit lacking...

Will follow up with a new patch in a few minutes...

--
Daniele Venzano
http://www.brownhat.org

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/1] More ethtool support for sis900
  2005-03-05 20:53   ` Daniele Venzano
@ 2005-03-06  0:15     ` Francois Romieu
  2005-03-06 10:03       ` Daniele Venzano
  0 siblings, 1 reply; 5+ messages in thread
From: Francois Romieu @ 2005-03-06  0:15 UTC (permalink / raw)
  To: Daniele Venzano; +Cc: Jeff Garzik, netdev

Daniele Venzano <webvenza@libero.it> :
[...]
> I saw the locking, but I couldn't come up with a reason for it. Is it 
> needed because of kernel wide preemption ?

Usually you do not want simultaneous accesses to the mii interface
(link events, Tx timeout recovery or so).

>From a quick glance at the sis900 driver, I would expect the lock to
protect against sis900_timer() (assuming you add a simple spinlock to
it as well).

--
Ueimor

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/1] More ethtool support for sis900
  2005-03-06  0:15     ` Francois Romieu
@ 2005-03-06 10:03       ` Daniele Venzano
  0 siblings, 0 replies; 5+ messages in thread
From: Daniele Venzano @ 2005-03-06 10:03 UTC (permalink / raw)
  To: Francois Romieu; +Cc: netdev


On 06/mar/05, at 01:15, Francois Romieu wrote:

> Daniele Venzano <webvenza@libero.it> :
> [...]
>> I saw the locking, but I couldn't come up with a reason for it. Is it
>> needed because of kernel wide preemption ?
>
> Usually you do not want simultaneous accesses to the mii interface
> (link events, Tx timeout recovery or so).
>
> From a quick glance at the sis900 driver, I would expect the lock to
> protect against sis900_timer() (assuming you add a simple spinlock to
> it as well).
Yes, that makes sense. Will do.

Thanks.

--
Daniele Venzano
http://www.brownhat.org

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-03-06 10:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-05 13:40 [PATCH 1/1] More ethtool support for sis900 Daniele Venzano
2005-03-05 18:28 ` Jeff Garzik
2005-03-05 20:53   ` Daniele Venzano
2005-03-06  0:15     ` Francois Romieu
2005-03-06 10:03       ` Daniele Venzano

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).