| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | /*******************************************************************************
 | 
					
						
							|  |  |  |   STMMAC Ethtool support | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Copyright (C) 2007-2009  STMicroelectronics Ltd | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   This program is free software; you can redistribute it and/or modify it | 
					
						
							|  |  |  |   under the terms and conditions of the GNU General Public License, | 
					
						
							|  |  |  |   version 2, as published by the Free Software Foundation. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   This program is distributed in the hope it will be useful, but WITHOUT | 
					
						
							|  |  |  |   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | 
					
						
							|  |  |  |   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for | 
					
						
							|  |  |  |   more details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   You should have received a copy of the GNU General Public License along with | 
					
						
							|  |  |  |   this program; if not, write to the Free Software Foundation, Inc., | 
					
						
							|  |  |  |   51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   The full GNU General Public License is included in this distribution in | 
					
						
							|  |  |  |   the file called "COPYING". | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Author: Giuseppe Cavallaro <peppe.cavallaro@st.com> | 
					
						
							|  |  |  | *******************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/etherdevice.h>
 | 
					
						
							|  |  |  | #include <linux/ethtool.h>
 | 
					
						
							| 
									
										
										
										
											2011-06-06 10:43:46 +00:00
										 |  |  | #include <linux/interrupt.h>
 | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | #include <linux/mii.h>
 | 
					
						
							|  |  |  | #include <linux/phy.h>
 | 
					
						
							| 
									
										
										
										
											2013-03-26 04:43:10 +00:00
										 |  |  | #include <linux/net_tstamp.h>
 | 
					
						
							| 
									
										
										
										
											2011-06-16 11:01:34 +00:00
										 |  |  | #include <asm/io.h>
 | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "stmmac.h"
 | 
					
						
							| 
									
										
										
										
											2010-01-06 23:07:18 +00:00
										 |  |  | #include "dwmac_dma.h"
 | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define REG_SPACE_SIZE	0x1054
 | 
					
						
							|  |  |  | #define MAC100_ETHTOOL_NAME	"st_mac100"
 | 
					
						
							|  |  |  | #define GMAC_ETHTOOL_NAME	"st_gmac"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct stmmac_stats { | 
					
						
							|  |  |  | 	char stat_string[ETH_GSTRING_LEN]; | 
					
						
							|  |  |  | 	int sizeof_stat; | 
					
						
							|  |  |  | 	int stat_offset; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define STMMAC_STAT(m)	\
 | 
					
						
							|  |  |  | 	{ #m, FIELD_SIZEOF(struct stmmac_extra_stats, m),	\ | 
					
						
							|  |  |  | 	offsetof(struct stmmac_priv, xstats.m)} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:38 +00:00
										 |  |  | static const struct stmmac_stats stmmac_gstrings_stats[] = { | 
					
						
							| 
									
										
										
										
											2012-02-15 00:10:37 +00:00
										 |  |  | 	/* Transmit errors */ | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	STMMAC_STAT(tx_underflow), | 
					
						
							|  |  |  | 	STMMAC_STAT(tx_carrier), | 
					
						
							|  |  |  | 	STMMAC_STAT(tx_losscarrier), | 
					
						
							| 
									
										
										
										
											2011-10-26 19:43:09 +00:00
										 |  |  | 	STMMAC_STAT(vlan_tag), | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	STMMAC_STAT(tx_deferred), | 
					
						
							|  |  |  | 	STMMAC_STAT(tx_vlan), | 
					
						
							|  |  |  | 	STMMAC_STAT(tx_jabber), | 
					
						
							|  |  |  | 	STMMAC_STAT(tx_frame_flushed), | 
					
						
							|  |  |  | 	STMMAC_STAT(tx_payload_error), | 
					
						
							|  |  |  | 	STMMAC_STAT(tx_ip_header_error), | 
					
						
							| 
									
										
										
										
											2012-02-15 00:10:37 +00:00
										 |  |  | 	/* Receive errors */ | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	STMMAC_STAT(rx_desc), | 
					
						
							| 
									
										
										
										
											2011-10-26 19:43:09 +00:00
										 |  |  | 	STMMAC_STAT(sa_filter_fail), | 
					
						
							|  |  |  | 	STMMAC_STAT(overflow_error), | 
					
						
							|  |  |  | 	STMMAC_STAT(ipc_csum_error), | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	STMMAC_STAT(rx_collision), | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_crc), | 
					
						
							| 
									
										
										
										
											2012-02-15 00:10:37 +00:00
										 |  |  | 	STMMAC_STAT(dribbling_bit), | 
					
						
							| 
									
										
										
										
											2010-02-04 09:33:21 -08:00
										 |  |  | 	STMMAC_STAT(rx_length), | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	STMMAC_STAT(rx_mii), | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_multicast), | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_gmac_overflow), | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_watchdog), | 
					
						
							|  |  |  | 	STMMAC_STAT(da_rx_filter_fail), | 
					
						
							|  |  |  | 	STMMAC_STAT(sa_rx_filter_fail), | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_missed_cntr), | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_overflow_cntr), | 
					
						
							| 
									
										
										
										
											2012-02-15 00:10:37 +00:00
										 |  |  | 	STMMAC_STAT(rx_vlan), | 
					
						
							| 
									
										
										
										
											2012-11-25 23:10:43 +00:00
										 |  |  | 	/* Tx/Rx IRQ error info */ | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	STMMAC_STAT(tx_undeflow_irq), | 
					
						
							|  |  |  | 	STMMAC_STAT(tx_process_stopped_irq), | 
					
						
							|  |  |  | 	STMMAC_STAT(tx_jabber_irq), | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_overflow_irq), | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_buf_unav_irq), | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_process_stopped_irq), | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_watchdog_irq), | 
					
						
							|  |  |  | 	STMMAC_STAT(tx_early_irq), | 
					
						
							|  |  |  | 	STMMAC_STAT(fatal_bus_error_irq), | 
					
						
							| 
									
										
										
										
											2012-11-25 23:10:43 +00:00
										 |  |  | 	/* Tx/Rx IRQ Events */ | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_early_irq), | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	STMMAC_STAT(threshold), | 
					
						
							|  |  |  | 	STMMAC_STAT(tx_pkt_n), | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_pkt_n), | 
					
						
							| 
									
										
										
										
											2012-06-27 21:14:37 +00:00
										 |  |  | 	STMMAC_STAT(normal_irq_n), | 
					
						
							| 
									
										
										
										
											2012-11-25 23:10:42 +00:00
										 |  |  | 	STMMAC_STAT(rx_normal_irq_n), | 
					
						
							|  |  |  | 	STMMAC_STAT(napi_poll), | 
					
						
							|  |  |  | 	STMMAC_STAT(tx_normal_irq_n), | 
					
						
							|  |  |  | 	STMMAC_STAT(tx_clean), | 
					
						
							|  |  |  | 	STMMAC_STAT(tx_reset_ic_bit), | 
					
						
							| 
									
										
										
										
											2012-11-25 23:10:43 +00:00
										 |  |  | 	STMMAC_STAT(irq_receive_pmt_irq_n), | 
					
						
							|  |  |  | 	/* MMC info */ | 
					
						
							| 
									
										
										
										
											2012-06-27 21:14:37 +00:00
										 |  |  | 	STMMAC_STAT(mmc_tx_irq_n), | 
					
						
							|  |  |  | 	STMMAC_STAT(mmc_rx_irq_n), | 
					
						
							|  |  |  | 	STMMAC_STAT(mmc_rx_csum_offload_irq_n), | 
					
						
							| 
									
										
										
										
											2012-11-25 23:10:43 +00:00
										 |  |  | 	/* EEE */ | 
					
						
							| 
									
										
										
										
											2012-06-27 21:14:37 +00:00
										 |  |  | 	STMMAC_STAT(irq_tx_path_in_lpi_mode_n), | 
					
						
							|  |  |  | 	STMMAC_STAT(irq_tx_path_exit_lpi_mode_n), | 
					
						
							|  |  |  | 	STMMAC_STAT(irq_rx_path_in_lpi_mode_n), | 
					
						
							|  |  |  | 	STMMAC_STAT(irq_rx_path_exit_lpi_mode_n), | 
					
						
							|  |  |  | 	STMMAC_STAT(phy_eee_wakeup_error_n), | 
					
						
							| 
									
										
										
										
											2013-03-26 04:43:06 +00:00
										 |  |  | 	/* Extended RDES status */ | 
					
						
							|  |  |  | 	STMMAC_STAT(ip_hdr_err), | 
					
						
							|  |  |  | 	STMMAC_STAT(ip_payload_err), | 
					
						
							|  |  |  | 	STMMAC_STAT(ip_csum_bypassed), | 
					
						
							|  |  |  | 	STMMAC_STAT(ipv4_pkt_rcvd), | 
					
						
							|  |  |  | 	STMMAC_STAT(ipv6_pkt_rcvd), | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_msg_type_ext_no_ptp), | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_msg_type_sync), | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_msg_type_follow_up), | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_msg_type_delay_req), | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_msg_type_delay_resp), | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_msg_type_pdelay_req), | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_msg_type_pdelay_resp), | 
					
						
							|  |  |  | 	STMMAC_STAT(rx_msg_type_pdelay_follow_up), | 
					
						
							|  |  |  | 	STMMAC_STAT(ptp_frame_type), | 
					
						
							|  |  |  | 	STMMAC_STAT(ptp_ver), | 
					
						
							|  |  |  | 	STMMAC_STAT(timestamp_dropped), | 
					
						
							|  |  |  | 	STMMAC_STAT(av_pkt_rcvd), | 
					
						
							|  |  |  | 	STMMAC_STAT(av_tagged_pkt_rcvd), | 
					
						
							|  |  |  | 	STMMAC_STAT(vlan_tag_priority_val), | 
					
						
							|  |  |  | 	STMMAC_STAT(l3_filter_match), | 
					
						
							|  |  |  | 	STMMAC_STAT(l4_filter_match), | 
					
						
							|  |  |  | 	STMMAC_STAT(l3_l4_filter_no_match), | 
					
						
							| 
									
										
										
										
											2013-03-26 04:43:07 +00:00
										 |  |  | 	/* PCS */ | 
					
						
							|  |  |  | 	STMMAC_STAT(irq_pcs_ane_n), | 
					
						
							|  |  |  | 	STMMAC_STAT(irq_pcs_link_n), | 
					
						
							|  |  |  | 	STMMAC_STAT(irq_rgmii_n), | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | #define STMMAC_STATS_LEN ARRAY_SIZE(stmmac_gstrings_stats)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:38 +00:00
										 |  |  | /* HW MAC Management counters (if supported) */ | 
					
						
							|  |  |  | #define STMMAC_MMC_STAT(m)	\
 | 
					
						
							|  |  |  | 	{ #m, FIELD_SIZEOF(struct stmmac_counters, m),	\ | 
					
						
							|  |  |  | 	offsetof(struct stmmac_priv, mmc.m)} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-18 00:01:23 +00:00
										 |  |  | static const struct stmmac_stats stmmac_mmc[] = { | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:38 +00:00
										 |  |  | 	STMMAC_MMC_STAT(mmc_tx_octetcount_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_framecount_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_broadcastframe_g), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_multicastframe_g), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_64_octets_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_65_to_127_octets_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_128_to_255_octets_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_256_to_511_octets_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_512_to_1023_octets_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_1024_to_max_octets_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_unicast_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_multicast_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_broadcast_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_underflow_error), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_singlecol_g), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_multicol_g), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_deferred), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_latecol), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_exesscol), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_carrier_error), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_octetcount_g), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_framecount_g), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_excessdef), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_pause_frame), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_tx_vlan_frame_g), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_framecount_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_octetcount_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_octetcount_g), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_broadcastframe_g), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_multicastframe_g), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_crc_errror), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_align_error), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_run_error), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_jabber_error), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_undersize_g), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_oversize_g), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_64_octets_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_65_to_127_octets_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_128_to_255_octets_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_256_to_511_octets_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_512_to_1023_octets_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_1024_to_max_octets_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_unicast_g), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_length_error), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_autofrangetype), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_pause_frames), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_fifo_overflow), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_vlan_frames_gb), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_watchdog_error), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_ipc_intr_mask), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_ipc_intr), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_ipv4_gd), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_ipv4_hderr), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_ipv4_nopay), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_ipv4_frag), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_ipv4_udsbl), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_ipv4_gd_octets), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_ipv4_hderr_octets), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_ipv4_nopay_octets), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_ipv4_frag_octets), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_ipv4_udsbl_octets), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_ipv6_gd_octets), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_ipv6_hderr_octets), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_ipv6_nopay_octets), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_ipv6_gd), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_ipv6_hderr), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_ipv6_nopay), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_udp_gd), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_udp_err), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_tcp_gd), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_tcp_err), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_icmp_gd), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_icmp_err), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_udp_gd_octets), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_udp_err_octets), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_tcp_gd_octets), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_tcp_err_octets), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_icmp_gd_octets), | 
					
						
							|  |  |  | 	STMMAC_MMC_STAT(mmc_rx_icmp_err_octets), | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2011-10-18 00:01:23 +00:00
										 |  |  | #define STMMAC_MMC_STATS_LEN ARRAY_SIZE(stmmac_mmc)
 | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-13 14:50:31 +00:00
										 |  |  | static void stmmac_ethtool_getdrvinfo(struct net_device *dev, | 
					
						
							|  |  |  | 				      struct ethtool_drvinfo *info) | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct stmmac_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:38 +00:00
										 |  |  | 	if (priv->plat->has_gmac) | 
					
						
							| 
									
										
										
										
											2011-11-15 14:59:53 +00:00
										 |  |  | 		strlcpy(info->driver, GMAC_ETHTOOL_NAME, sizeof(info->driver)); | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:38 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2011-11-15 14:59:53 +00:00
										 |  |  | 		strlcpy(info->driver, MAC100_ETHTOOL_NAME, | 
					
						
							|  |  |  | 			sizeof(info->driver)); | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-06 00:44:26 +00:00
										 |  |  | 	strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version)); | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-13 14:50:31 +00:00
										 |  |  | static int stmmac_ethtool_getsettings(struct net_device *dev, | 
					
						
							|  |  |  | 				      struct ethtool_cmd *cmd) | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct stmmac_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	struct phy_device *phy = priv->phydev; | 
					
						
							|  |  |  | 	int rc; | 
					
						
							| 
									
										
										
										
											2013-03-26 04:43:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if ((priv->pcs & STMMAC_PCS_RGMII) || (priv->pcs & STMMAC_PCS_SGMII)) { | 
					
						
							|  |  |  | 		struct rgmii_adv adv; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!priv->xstats.pcs_link) { | 
					
						
							|  |  |  | 			ethtool_cmd_speed_set(cmd, SPEED_UNKNOWN); | 
					
						
							|  |  |  | 			cmd->duplex = DUPLEX_UNKNOWN; | 
					
						
							|  |  |  | 			return 0; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		cmd->duplex = priv->xstats.pcs_duplex; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ethtool_cmd_speed_set(cmd, priv->xstats.pcs_speed); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Get and convert ADV/LP_ADV from the HW AN registers */ | 
					
						
							|  |  |  | 		if (priv->hw->mac->get_adv) | 
					
						
							|  |  |  | 			priv->hw->mac->get_adv(priv->ioaddr, &adv); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			return -EOPNOTSUPP;	/* should never happen indeed */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Encoding of PSE bits is defined in 802.3z, 37.2.1.4 */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (adv.pause & STMMAC_PCS_PAUSE) | 
					
						
							|  |  |  | 			cmd->advertising |= ADVERTISED_Pause; | 
					
						
							|  |  |  | 		if (adv.pause & STMMAC_PCS_ASYM_PAUSE) | 
					
						
							|  |  |  | 			cmd->advertising |= ADVERTISED_Asym_Pause; | 
					
						
							|  |  |  | 		if (adv.lp_pause & STMMAC_PCS_PAUSE) | 
					
						
							|  |  |  | 			cmd->lp_advertising |= ADVERTISED_Pause; | 
					
						
							|  |  |  | 		if (adv.lp_pause & STMMAC_PCS_ASYM_PAUSE) | 
					
						
							|  |  |  | 			cmd->lp_advertising |= ADVERTISED_Asym_Pause; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Reg49[3] always set because ANE is always supported */ | 
					
						
							|  |  |  | 		cmd->autoneg = ADVERTISED_Autoneg; | 
					
						
							|  |  |  | 		cmd->supported |= SUPPORTED_Autoneg; | 
					
						
							|  |  |  | 		cmd->advertising |= ADVERTISED_Autoneg; | 
					
						
							|  |  |  | 		cmd->lp_advertising |= ADVERTISED_Autoneg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (adv.duplex) { | 
					
						
							|  |  |  | 			cmd->supported |= (SUPPORTED_1000baseT_Full | | 
					
						
							|  |  |  | 					   SUPPORTED_100baseT_Full | | 
					
						
							|  |  |  | 					   SUPPORTED_10baseT_Full); | 
					
						
							|  |  |  | 			cmd->advertising |= (ADVERTISED_1000baseT_Full | | 
					
						
							|  |  |  | 					     ADVERTISED_100baseT_Full | | 
					
						
							|  |  |  | 					     ADVERTISED_10baseT_Full); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			cmd->supported |= (SUPPORTED_1000baseT_Half | | 
					
						
							|  |  |  | 					   SUPPORTED_100baseT_Half | | 
					
						
							|  |  |  | 					   SUPPORTED_10baseT_Half); | 
					
						
							|  |  |  | 			cmd->advertising |= (ADVERTISED_1000baseT_Half | | 
					
						
							|  |  |  | 					     ADVERTISED_100baseT_Half | | 
					
						
							|  |  |  | 					     ADVERTISED_10baseT_Half); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (adv.lp_duplex) | 
					
						
							|  |  |  | 			cmd->lp_advertising |= (ADVERTISED_1000baseT_Full | | 
					
						
							|  |  |  | 						ADVERTISED_100baseT_Full | | 
					
						
							|  |  |  | 						ADVERTISED_10baseT_Full); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			cmd->lp_advertising |= (ADVERTISED_1000baseT_Half | | 
					
						
							|  |  |  | 						ADVERTISED_100baseT_Half | | 
					
						
							|  |  |  | 						ADVERTISED_10baseT_Half); | 
					
						
							|  |  |  | 		cmd->port = PORT_OTHER; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	if (phy == NULL) { | 
					
						
							|  |  |  | 		pr_err("%s: %s: PHY is not registered\n", | 
					
						
							|  |  |  | 		       __func__, dev->name); | 
					
						
							|  |  |  | 		return -ENODEV; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (!netif_running(dev)) { | 
					
						
							|  |  |  | 		pr_err("%s: interface is disabled: we cannot track " | 
					
						
							|  |  |  | 		"link speed / duplex setting\n", dev->name); | 
					
						
							|  |  |  | 		return -EBUSY; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	cmd->transceiver = XCVR_INTERNAL; | 
					
						
							|  |  |  | 	spin_lock_irq(&priv->lock); | 
					
						
							|  |  |  | 	rc = phy_ethtool_gset(phy, cmd); | 
					
						
							|  |  |  | 	spin_unlock_irq(&priv->lock); | 
					
						
							|  |  |  | 	return rc; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-13 14:50:31 +00:00
										 |  |  | static int stmmac_ethtool_setsettings(struct net_device *dev, | 
					
						
							|  |  |  | 				      struct ethtool_cmd *cmd) | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct stmmac_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	struct phy_device *phy = priv->phydev; | 
					
						
							|  |  |  | 	int rc; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-26 04:43:08 +00:00
										 |  |  | 	if ((priv->pcs & STMMAC_PCS_RGMII) || (priv->pcs & STMMAC_PCS_SGMII)) { | 
					
						
							|  |  |  | 		u32 mask = ADVERTISED_Autoneg | ADVERTISED_Pause; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Only support ANE */ | 
					
						
							|  |  |  | 		if (cmd->autoneg != AUTONEG_ENABLE) | 
					
						
							|  |  |  | 			return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (cmd->autoneg == AUTONEG_ENABLE) { | 
					
						
							|  |  |  | 			mask &= (ADVERTISED_1000baseT_Half | | 
					
						
							|  |  |  | 			ADVERTISED_1000baseT_Full | | 
					
						
							|  |  |  | 			ADVERTISED_100baseT_Half | | 
					
						
							|  |  |  | 			ADVERTISED_100baseT_Full | | 
					
						
							|  |  |  | 			ADVERTISED_10baseT_Half | | 
					
						
							|  |  |  | 			ADVERTISED_10baseT_Full); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			spin_lock(&priv->lock); | 
					
						
							|  |  |  | 			if (priv->hw->mac->ctrl_ane) | 
					
						
							|  |  |  | 				priv->hw->mac->ctrl_ane(priv->ioaddr, 1); | 
					
						
							|  |  |  | 			spin_unlock(&priv->lock); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	spin_lock(&priv->lock); | 
					
						
							|  |  |  | 	rc = phy_ethtool_sset(phy, cmd); | 
					
						
							|  |  |  | 	spin_unlock(&priv->lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return rc; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-13 14:50:31 +00:00
										 |  |  | static u32 stmmac_ethtool_getmsglevel(struct net_device *dev) | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct stmmac_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	return priv->msg_enable; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-13 14:50:31 +00:00
										 |  |  | static void stmmac_ethtool_setmsglevel(struct net_device *dev, u32 level) | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct stmmac_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	priv->msg_enable = level; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-13 14:50:31 +00:00
										 |  |  | static int stmmac_check_if_running(struct net_device *dev) | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (!netif_running(dev)) | 
					
						
							|  |  |  | 		return -EBUSY; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-13 14:50:31 +00:00
										 |  |  | static int stmmac_ethtool_get_regs_len(struct net_device *dev) | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	return REG_SPACE_SIZE; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-13 14:50:31 +00:00
										 |  |  | static void stmmac_ethtool_gregs(struct net_device *dev, | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 			  struct ethtool_regs *regs, void *space) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 	u32 *reg_space = (u32 *) space; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct stmmac_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(reg_space, 0x0, REG_SPACE_SIZE); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-24 02:37:58 +00:00
										 |  |  | 	if (!priv->plat->has_gmac) { | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 		/* MAC registers */ | 
					
						
							|  |  |  | 		for (i = 0; i < 12; i++) | 
					
						
							| 
									
										
										
										
											2010-08-23 20:40:42 +00:00
										 |  |  | 			reg_space[i] = readl(priv->ioaddr + (i * 4)); | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 		/* DMA registers */ | 
					
						
							|  |  |  | 		for (i = 0; i < 9; i++) | 
					
						
							|  |  |  | 			reg_space[i + 12] = | 
					
						
							| 
									
										
										
										
											2010-08-23 20:40:42 +00:00
										 |  |  | 			    readl(priv->ioaddr + (DMA_BUS_MODE + (i * 4))); | 
					
						
							|  |  |  | 		reg_space[22] = readl(priv->ioaddr + DMA_CUR_TX_BUF_ADDR); | 
					
						
							|  |  |  | 		reg_space[23] = readl(priv->ioaddr + DMA_CUR_RX_BUF_ADDR); | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		/* MAC registers */ | 
					
						
							|  |  |  | 		for (i = 0; i < 55; i++) | 
					
						
							| 
									
										
										
										
											2010-08-23 20:40:42 +00:00
										 |  |  | 			reg_space[i] = readl(priv->ioaddr + (i * 4)); | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 		/* DMA registers */ | 
					
						
							|  |  |  | 		for (i = 0; i < 22; i++) | 
					
						
							|  |  |  | 			reg_space[i + 55] = | 
					
						
							| 
									
										
										
										
											2010-08-23 20:40:42 +00:00
										 |  |  | 			    readl(priv->ioaddr + (DMA_BUS_MODE + (i * 4))); | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | stmmac_get_pauseparam(struct net_device *netdev, | 
					
						
							|  |  |  | 		      struct ethtool_pauseparam *pause) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct stmmac_priv *priv = netdev_priv(netdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-26 04:43:08 +00:00
										 |  |  | 	if (priv->pcs)	/* FIXME */ | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	spin_lock(&priv->lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pause->rx_pause = 0; | 
					
						
							|  |  |  | 	pause->tx_pause = 0; | 
					
						
							|  |  |  | 	pause->autoneg = priv->phydev->autoneg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (priv->flow_ctrl & FLOW_RX) | 
					
						
							|  |  |  | 		pause->rx_pause = 1; | 
					
						
							|  |  |  | 	if (priv->flow_ctrl & FLOW_TX) | 
					
						
							|  |  |  | 		pause->tx_pause = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_unlock(&priv->lock); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | stmmac_set_pauseparam(struct net_device *netdev, | 
					
						
							|  |  |  | 		      struct ethtool_pauseparam *pause) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct stmmac_priv *priv = netdev_priv(netdev); | 
					
						
							|  |  |  | 	struct phy_device *phy = priv->phydev; | 
					
						
							|  |  |  | 	int new_pause = FLOW_OFF; | 
					
						
							|  |  |  | 	int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-26 04:43:08 +00:00
										 |  |  | 	if (priv->pcs)	/* FIXME */ | 
					
						
							|  |  |  | 		return -EOPNOTSUPP; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	spin_lock(&priv->lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (pause->rx_pause) | 
					
						
							|  |  |  | 		new_pause |= FLOW_RX; | 
					
						
							|  |  |  | 	if (pause->tx_pause) | 
					
						
							|  |  |  | 		new_pause |= FLOW_TX; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	priv->flow_ctrl = new_pause; | 
					
						
							| 
									
										
										
										
											2011-05-12 20:28:05 +00:00
										 |  |  | 	phy->autoneg = pause->autoneg; | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (phy->autoneg) { | 
					
						
							| 
									
										
										
										
											2011-05-12 20:28:04 +00:00
										 |  |  | 		if (netif_running(netdev)) | 
					
						
							|  |  |  | 			ret = phy_start_aneg(phy); | 
					
						
							| 
									
										
										
										
											2010-08-23 20:40:42 +00:00
										 |  |  | 	} else | 
					
						
							|  |  |  | 		priv->hw->mac->flow_ctrl(priv->ioaddr, phy->duplex, | 
					
						
							| 
									
										
										
										
											2010-01-06 23:07:17 +00:00
										 |  |  | 					 priv->flow_ctrl, priv->pause); | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	spin_unlock(&priv->lock); | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void stmmac_get_ethtool_stats(struct net_device *dev, | 
					
						
							|  |  |  | 				 struct ethtool_stats *dummy, u64 *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct stmmac_priv *priv = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:38 +00:00
										 |  |  | 	int i, j = 0; | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:38 +00:00
										 |  |  | 	/* Update the DMA HW counters for dwmac10/100 */ | 
					
						
							|  |  |  | 	if (!priv->plat->has_gmac) | 
					
						
							|  |  |  | 		priv->hw->dma->dma_diagnostic_fr(&dev->stats, | 
					
						
							|  |  |  | 						 (void *) &priv->xstats, | 
					
						
							|  |  |  | 						 priv->ioaddr); | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		/* If supported, for new GMAC chips expose the MMC counters */ | 
					
						
							| 
									
										
										
										
											2011-10-18 00:01:23 +00:00
										 |  |  | 		if (priv->dma_cap.rmon) { | 
					
						
							|  |  |  | 			dwmac_mmc_read(priv->ioaddr, &priv->mmc); | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-18 00:01:23 +00:00
										 |  |  | 			for (i = 0; i < STMMAC_MMC_STATS_LEN; i++) { | 
					
						
							|  |  |  | 				char *p; | 
					
						
							|  |  |  | 				p = (char *)priv + stmmac_mmc[i].stat_offset; | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-18 00:01:23 +00:00
										 |  |  | 				data[j++] = (stmmac_mmc[i].sizeof_stat == | 
					
						
							|  |  |  | 					     sizeof(u64)) ? (*(u64 *)p) : | 
					
						
							|  |  |  | 					     (*(u32 *)p); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:38 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-06-27 21:14:37 +00:00
										 |  |  | 		if (priv->eee_enabled) { | 
					
						
							|  |  |  | 			int val = phy_get_eee_err(priv->phydev); | 
					
						
							|  |  |  | 			if (val) | 
					
						
							|  |  |  | 				priv->xstats.phy_eee_wakeup_error_n = val; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:38 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	for (i = 0; i < STMMAC_STATS_LEN; i++) { | 
					
						
							|  |  |  | 		char *p = (char *)priv + stmmac_gstrings_stats[i].stat_offset; | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:38 +00:00
										 |  |  | 		data[j++] = (stmmac_gstrings_stats[i].sizeof_stat == | 
					
						
							|  |  |  | 			     sizeof(u64)) ? (*(u64 *)p) : (*(u32 *)p); | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int stmmac_get_sset_count(struct net_device *netdev, int sset) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:38 +00:00
										 |  |  | 	struct stmmac_priv *priv = netdev_priv(netdev); | 
					
						
							|  |  |  | 	int len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	switch (sset) { | 
					
						
							|  |  |  | 	case ETH_SS_STATS: | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:38 +00:00
										 |  |  | 		len = STMMAC_STATS_LEN; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-18 00:01:23 +00:00
										 |  |  | 		if (priv->dma_cap.rmon) | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:38 +00:00
										 |  |  | 			len += STMMAC_MMC_STATS_LEN; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return len; | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	default: | 
					
						
							|  |  |  | 		return -EOPNOTSUPP; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void stmmac_get_strings(struct net_device *dev, u32 stringset, u8 *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 	u8 *p = data; | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:38 +00:00
										 |  |  | 	struct stmmac_priv *priv = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	switch (stringset) { | 
					
						
							|  |  |  | 	case ETH_SS_STATS: | 
					
						
							| 
									
										
										
										
											2011-10-18 00:01:23 +00:00
										 |  |  | 		if (priv->dma_cap.rmon) | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:38 +00:00
										 |  |  | 			for (i = 0; i < STMMAC_MMC_STATS_LEN; i++) { | 
					
						
							| 
									
										
										
										
											2011-10-18 00:01:23 +00:00
										 |  |  | 				memcpy(p, stmmac_mmc[i].stat_string, | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:38 +00:00
										 |  |  | 				       ETH_GSTRING_LEN); | 
					
						
							|  |  |  | 				p += ETH_GSTRING_LEN; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 		for (i = 0; i < STMMAC_STATS_LEN; i++) { | 
					
						
							|  |  |  | 			memcpy(p, stmmac_gstrings_stats[i].stat_string, | 
					
						
							|  |  |  | 				ETH_GSTRING_LEN); | 
					
						
							|  |  |  | 			p += ETH_GSTRING_LEN; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		WARN_ON(1); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Currently only support WOL through Magic packet. */ | 
					
						
							|  |  |  | static void stmmac_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct stmmac_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_irq(&priv->lock); | 
					
						
							| 
									
										
										
										
											2010-09-24 21:27:41 -07:00
										 |  |  | 	if (device_can_wakeup(priv->device)) { | 
					
						
							| 
									
										
										
										
											2011-04-13 11:51:43 -07:00
										 |  |  | 		wol->supported = WAKE_MAGIC | WAKE_UCAST; | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 		wol->wolopts = priv->wolopts; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	spin_unlock_irq(&priv->lock); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int stmmac_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct stmmac_priv *priv = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2011-04-13 11:51:43 -07:00
										 |  |  | 	u32 support = WAKE_MAGIC | WAKE_UCAST; | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-16 21:58:00 +00:00
										 |  |  | 	/* By default almost all GMAC devices support the WoL via
 | 
					
						
							|  |  |  | 	 * magic frame but we can disable it if the HW capability | 
					
						
							|  |  |  | 	 * register shows no support for pmt_magic_frame. */ | 
					
						
							|  |  |  | 	if ((priv->hw_cap_support) && (!priv->dma_cap.pmt_magic_frame)) | 
					
						
							|  |  |  | 		wol->wolopts &= ~WAKE_MAGIC; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-24 21:27:41 -07:00
										 |  |  | 	if (!device_can_wakeup(priv->device)) | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (wol->wolopts & ~support) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-24 21:27:41 -07:00
										 |  |  | 	if (wol->wolopts) { | 
					
						
							|  |  |  | 		pr_info("stmmac: wakeup enable\n"); | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 		device_set_wakeup_enable(priv->device, 1); | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:37 +00:00
										 |  |  | 		enable_irq_wake(priv->wol_irq); | 
					
						
							| 
									
										
										
										
											2010-09-24 21:27:41 -07:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		device_set_wakeup_enable(priv->device, 0); | 
					
						
							| 
									
										
										
										
											2011-09-01 21:51:37 +00:00
										 |  |  | 		disable_irq_wake(priv->wol_irq); | 
					
						
							| 
									
										
										
										
											2010-09-24 21:27:41 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_irq(&priv->lock); | 
					
						
							|  |  |  | 	priv->wolopts = wol->wolopts; | 
					
						
							|  |  |  | 	spin_unlock_irq(&priv->lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-27 21:14:37 +00:00
										 |  |  | static int stmmac_ethtool_op_get_eee(struct net_device *dev, | 
					
						
							|  |  |  | 				     struct ethtool_eee *edata) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct stmmac_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!priv->dma_cap.eee) | 
					
						
							|  |  |  | 		return -EOPNOTSUPP; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	edata->eee_enabled = priv->eee_enabled; | 
					
						
							|  |  |  | 	edata->eee_active = priv->eee_active; | 
					
						
							|  |  |  | 	edata->tx_lpi_timer = priv->tx_lpi_timer; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return phy_ethtool_get_eee(priv->phydev, edata); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int stmmac_ethtool_op_set_eee(struct net_device *dev, | 
					
						
							|  |  |  | 				     struct ethtool_eee *edata) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct stmmac_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	priv->eee_enabled = edata->eee_enabled; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!priv->eee_enabled) | 
					
						
							|  |  |  | 		stmmac_disable_eee_mode(priv); | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		/* We are asking for enabling the EEE but it is safe
 | 
					
						
							|  |  |  | 		 * to verify all by invoking the eee_init function. | 
					
						
							|  |  |  | 		 * In case of failure it will return an error. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		priv->eee_enabled = stmmac_eee_init(priv); | 
					
						
							|  |  |  | 		if (!priv->eee_enabled) | 
					
						
							|  |  |  | 			return -EOPNOTSUPP; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Do not change tx_lpi_timer in case of failure */ | 
					
						
							|  |  |  | 		priv->tx_lpi_timer = edata->tx_lpi_timer; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return phy_ethtool_set_eee(priv->phydev, edata); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-25 23:10:44 +00:00
										 |  |  | static u32 stmmac_usec2riwt(u32 usec, struct stmmac_priv *priv) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned long clk = clk_get_rate(priv->stmmac_clk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!clk) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return (usec * (clk / 1000000)) / 256; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static u32 stmmac_riwt2usec(u32 riwt, struct stmmac_priv *priv) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned long clk = clk_get_rate(priv->stmmac_clk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!clk) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return (riwt * 256) / (clk / 1000000); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int stmmac_get_coalesce(struct net_device *dev, | 
					
						
							|  |  |  | 			       struct ethtool_coalesce *ec) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct stmmac_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ec->tx_coalesce_usecs = priv->tx_coal_timer; | 
					
						
							|  |  |  | 	ec->tx_max_coalesced_frames = priv->tx_coal_frames; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (priv->use_riwt) | 
					
						
							|  |  |  | 		ec->rx_coalesce_usecs = stmmac_riwt2usec(priv->rx_riwt, priv); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int stmmac_set_coalesce(struct net_device *dev, | 
					
						
							|  |  |  | 			       struct ethtool_coalesce *ec) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct stmmac_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	unsigned int rx_riwt; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Check not supported parameters  */ | 
					
						
							|  |  |  | 	if ((ec->rx_max_coalesced_frames) || (ec->rx_coalesce_usecs_irq) || | 
					
						
							|  |  |  | 	    (ec->rx_max_coalesced_frames_irq) || (ec->tx_coalesce_usecs_irq) || | 
					
						
							|  |  |  | 	    (ec->use_adaptive_rx_coalesce) || (ec->use_adaptive_tx_coalesce) || | 
					
						
							|  |  |  | 	    (ec->pkt_rate_low) || (ec->rx_coalesce_usecs_low) || | 
					
						
							|  |  |  | 	    (ec->rx_max_coalesced_frames_low) || (ec->tx_coalesce_usecs_high) || | 
					
						
							|  |  |  | 	    (ec->tx_max_coalesced_frames_low) || (ec->pkt_rate_high) || | 
					
						
							|  |  |  | 	    (ec->tx_coalesce_usecs_low) || (ec->rx_coalesce_usecs_high) || | 
					
						
							|  |  |  | 	    (ec->rx_max_coalesced_frames_high) || | 
					
						
							|  |  |  | 	    (ec->tx_max_coalesced_frames_irq) || | 
					
						
							|  |  |  | 	    (ec->stats_block_coalesce_usecs) || | 
					
						
							|  |  |  | 	    (ec->tx_max_coalesced_frames_high) || (ec->rate_sample_interval)) | 
					
						
							|  |  |  | 		return -EOPNOTSUPP; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (ec->rx_coalesce_usecs == 0) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((ec->tx_coalesce_usecs == 0) && | 
					
						
							|  |  |  | 	    (ec->tx_max_coalesced_frames == 0)) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((ec->tx_coalesce_usecs > STMMAC_COAL_TX_TIMER) || | 
					
						
							|  |  |  | 	    (ec->tx_max_coalesced_frames > STMMAC_TX_MAX_FRAMES)) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rx_riwt = stmmac_usec2riwt(ec->rx_coalesce_usecs, priv); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((rx_riwt > MAX_DMA_RIWT) || (rx_riwt < MIN_DMA_RIWT)) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	else if (!priv->use_riwt) | 
					
						
							|  |  |  | 		return -EOPNOTSUPP; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Only copy relevant parameters, ignore all others. */ | 
					
						
							|  |  |  | 	priv->tx_coal_frames = ec->tx_max_coalesced_frames; | 
					
						
							|  |  |  | 	priv->tx_coal_timer = ec->tx_coalesce_usecs; | 
					
						
							|  |  |  | 	priv->rx_riwt = rx_riwt; | 
					
						
							|  |  |  | 	priv->hw->dma->rx_watchdog(priv->ioaddr, priv->rx_riwt); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-26 04:43:10 +00:00
										 |  |  | static int stmmac_get_ts_info(struct net_device *dev, | 
					
						
							|  |  |  | 			      struct ethtool_ts_info *info) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct stmmac_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((priv->hwts_tx_en) && (priv->hwts_rx_en)) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		info->so_timestamping = SOF_TIMESTAMPING_TX_HARDWARE | | 
					
						
							|  |  |  | 					SOF_TIMESTAMPING_RX_HARDWARE | | 
					
						
							|  |  |  | 					SOF_TIMESTAMPING_RAW_HARDWARE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-26 04:43:11 +00:00
										 |  |  | 		if (priv->ptp_clock) | 
					
						
							|  |  |  | 			info->phc_index = ptp_clock_index(priv->ptp_clock); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-26 04:43:10 +00:00
										 |  |  | 		info->tx_types = (1 << HWTSTAMP_TX_OFF) | (1 << HWTSTAMP_TX_ON); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		info->rx_filters = ((1 << HWTSTAMP_FILTER_NONE) | | 
					
						
							|  |  |  | 				    (1 << HWTSTAMP_FILTER_PTP_V1_L4_EVENT) | | 
					
						
							|  |  |  | 				    (1 << HWTSTAMP_FILTER_PTP_V1_L4_SYNC) | | 
					
						
							|  |  |  | 				    (1 << HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ) | | 
					
						
							|  |  |  | 				    (1 << HWTSTAMP_FILTER_PTP_V2_L4_EVENT) | | 
					
						
							|  |  |  | 				    (1 << HWTSTAMP_FILTER_PTP_V2_L4_SYNC) | | 
					
						
							|  |  |  | 				    (1 << HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ) | | 
					
						
							|  |  |  | 				    (1 << HWTSTAMP_FILTER_PTP_V2_EVENT) | | 
					
						
							|  |  |  | 				    (1 << HWTSTAMP_FILTER_PTP_V2_SYNC) | | 
					
						
							|  |  |  | 				    (1 << HWTSTAMP_FILTER_PTP_V2_DELAY_REQ) | | 
					
						
							|  |  |  | 				    (1 << HWTSTAMP_FILTER_ALL)); | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} else | 
					
						
							|  |  |  | 		return ethtool_op_get_ts_info(dev, info); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-04 12:59:49 +00:00
										 |  |  | static const struct ethtool_ops stmmac_ethtool_ops = { | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	.begin = stmmac_check_if_running, | 
					
						
							|  |  |  | 	.get_drvinfo = stmmac_ethtool_getdrvinfo, | 
					
						
							|  |  |  | 	.get_settings = stmmac_ethtool_getsettings, | 
					
						
							|  |  |  | 	.set_settings = stmmac_ethtool_setsettings, | 
					
						
							|  |  |  | 	.get_msglevel = stmmac_ethtool_getmsglevel, | 
					
						
							|  |  |  | 	.set_msglevel = stmmac_ethtool_setmsglevel, | 
					
						
							|  |  |  | 	.get_regs = stmmac_ethtool_gregs, | 
					
						
							|  |  |  | 	.get_regs_len = stmmac_ethtool_get_regs_len, | 
					
						
							|  |  |  | 	.get_link = ethtool_op_get_link, | 
					
						
							|  |  |  | 	.get_pauseparam = stmmac_get_pauseparam, | 
					
						
							|  |  |  | 	.set_pauseparam = stmmac_set_pauseparam, | 
					
						
							|  |  |  | 	.get_ethtool_stats = stmmac_get_ethtool_stats, | 
					
						
							|  |  |  | 	.get_strings = stmmac_get_strings, | 
					
						
							|  |  |  | 	.get_wol = stmmac_get_wol, | 
					
						
							|  |  |  | 	.set_wol = stmmac_set_wol, | 
					
						
							| 
									
										
										
										
											2012-06-27 21:14:37 +00:00
										 |  |  | 	.get_eee = stmmac_ethtool_op_get_eee, | 
					
						
							|  |  |  | 	.set_eee = stmmac_ethtool_op_set_eee, | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | 	.get_sset_count	= stmmac_get_sset_count, | 
					
						
							| 
									
										
										
										
											2013-03-26 04:43:10 +00:00
										 |  |  | 	.get_ts_info = stmmac_get_ts_info, | 
					
						
							| 
									
										
										
										
											2012-11-25 23:10:44 +00:00
										 |  |  | 	.get_coalesce = stmmac_get_coalesce, | 
					
						
							|  |  |  | 	.set_coalesce = stmmac_set_coalesce, | 
					
						
							| 
									
										
										
										
											2009-10-14 15:13:45 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void stmmac_set_ethtool_ops(struct net_device *netdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	SET_ETHTOOL_OPS(netdev, &stmmac_ethtool_ops); | 
					
						
							|  |  |  | } |