| 
									
										
										
										
											2009-09-30 14:50:17 -04:00
										 |  |  | #include <linux/utsname.h>
 | 
					
						
							|  |  |  | #include <net/cfg80211.h>
 | 
					
						
							| 
									
										
										
										
											2011-03-07 16:17:59 -05:00
										 |  |  | #include "core.h"
 | 
					
						
							| 
									
										
										
										
											2009-09-30 14:50:17 -04:00
										 |  |  | #include "ethtool.h"
 | 
					
						
							| 
									
										
										
										
											2012-06-27 17:19:42 +03:00
										 |  |  | #include "rdev-ops.h"
 | 
					
						
							| 
									
										
										
										
											2009-09-30 14:50:17 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | static void cfg80211_get_drvinfo(struct net_device *dev, | 
					
						
							|  |  |  | 					struct ethtool_drvinfo *info) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct wireless_dev *wdev = dev->ieee80211_ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	strlcpy(info->driver, wiphy_dev(wdev->wiphy)->driver->name, | 
					
						
							|  |  |  | 		sizeof(info->driver)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	strlcpy(info->version, init_utsname()->release, sizeof(info->version)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 11:02:42 -07:00
										 |  |  | 	if (wdev->wiphy->fw_version[0]) | 
					
						
							| 
									
										
										
										
											2013-01-06 00:44:26 +00:00
										 |  |  | 		strlcpy(info->fw_version, wdev->wiphy->fw_version, | 
					
						
							| 
									
										
										
										
											2009-09-24 11:02:42 -07:00
										 |  |  | 			sizeof(info->fw_version)); | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											2013-01-06 00:44:26 +00:00
										 |  |  | 		strlcpy(info->fw_version, "N/A", sizeof(info->fw_version)); | 
					
						
							| 
									
										
										
										
											2009-09-30 14:50:17 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	strlcpy(info->bus_info, dev_name(wiphy_dev(wdev->wiphy)), | 
					
						
							|  |  |  | 		sizeof(info->bus_info)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 11:02:42 -07:00
										 |  |  | static int cfg80211_get_regs_len(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* For now, return 0... */ | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void cfg80211_get_regs(struct net_device *dev, struct ethtool_regs *regs, | 
					
						
							|  |  |  | 			void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct wireless_dev *wdev = dev->ieee80211_ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	regs->version = wdev->wiphy->hw_version; | 
					
						
							|  |  |  | 	regs->len = 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-07 16:17:59 -05:00
										 |  |  | static void cfg80211_get_ringparam(struct net_device *dev, | 
					
						
							|  |  |  | 				   struct ethtool_ringparam *rp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct wireless_dev *wdev = dev->ieee80211_ptr; | 
					
						
							|  |  |  | 	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(rp, 0, sizeof(*rp)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (rdev->ops->get_ringparam) | 
					
						
							| 
									
										
										
										
											2012-06-27 17:19:42 +03:00
										 |  |  | 		rdev_get_ringparam(rdev, &rp->tx_pending, &rp->tx_max_pending, | 
					
						
							|  |  |  | 				   &rp->rx_pending, &rp->rx_max_pending); | 
					
						
							| 
									
										
										
										
											2011-03-07 16:17:59 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int cfg80211_set_ringparam(struct net_device *dev, | 
					
						
							|  |  |  | 				  struct ethtool_ringparam *rp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct wireless_dev *wdev = dev->ieee80211_ptr; | 
					
						
							|  |  |  | 	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (rp->rx_mini_pending != 0 || rp->rx_jumbo_pending != 0) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (rdev->ops->set_ringparam) | 
					
						
							| 
									
										
										
										
											2012-06-27 17:19:42 +03:00
										 |  |  | 		return rdev_set_ringparam(rdev, rp->tx_pending, rp->rx_pending); | 
					
						
							| 
									
										
										
										
											2011-03-07 16:17:59 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return -ENOTSUPP; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-23 12:50:29 -07:00
										 |  |  | static int cfg80211_get_sset_count(struct net_device *dev, int sset) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct wireless_dev *wdev = dev->ieee80211_ptr; | 
					
						
							|  |  |  | 	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy); | 
					
						
							|  |  |  | 	if (rdev->ops->get_et_sset_count) | 
					
						
							| 
									
										
										
										
											2012-06-27 17:19:42 +03:00
										 |  |  | 		return rdev_get_et_sset_count(rdev, dev, sset); | 
					
						
							| 
									
										
										
										
											2012-04-23 12:50:29 -07:00
										 |  |  | 	return -EOPNOTSUPP; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void cfg80211_get_stats(struct net_device *dev, | 
					
						
							|  |  |  | 			       struct ethtool_stats *stats, u64 *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct wireless_dev *wdev = dev->ieee80211_ptr; | 
					
						
							|  |  |  | 	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy); | 
					
						
							|  |  |  | 	if (rdev->ops->get_et_stats) | 
					
						
							| 
									
										
										
										
											2012-06-27 17:19:42 +03:00
										 |  |  | 		rdev_get_et_stats(rdev, dev, stats, data); | 
					
						
							| 
									
										
										
										
											2012-04-23 12:50:29 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void cfg80211_get_strings(struct net_device *dev, u32 sset, u8 *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct wireless_dev *wdev = dev->ieee80211_ptr; | 
					
						
							|  |  |  | 	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy); | 
					
						
							|  |  |  | 	if (rdev->ops->get_et_strings) | 
					
						
							| 
									
										
										
										
											2012-06-27 17:19:42 +03:00
										 |  |  | 		rdev_get_et_strings(rdev, dev, sset, data); | 
					
						
							| 
									
										
										
										
											2012-04-23 12:50:29 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 14:50:17 -04:00
										 |  |  | const struct ethtool_ops cfg80211_ethtool_ops = { | 
					
						
							|  |  |  | 	.get_drvinfo = cfg80211_get_drvinfo, | 
					
						
							| 
									
										
										
										
											2009-09-24 11:02:42 -07:00
										 |  |  | 	.get_regs_len = cfg80211_get_regs_len, | 
					
						
							|  |  |  | 	.get_regs = cfg80211_get_regs, | 
					
						
							| 
									
										
										
										
											2009-09-30 14:50:17 -04:00
										 |  |  | 	.get_link = ethtool_op_get_link, | 
					
						
							| 
									
										
										
										
											2011-03-07 16:17:59 -05:00
										 |  |  | 	.get_ringparam = cfg80211_get_ringparam, | 
					
						
							|  |  |  | 	.set_ringparam = cfg80211_set_ringparam, | 
					
						
							| 
									
										
										
										
											2012-04-23 12:50:29 -07:00
										 |  |  | 	.get_strings = cfg80211_get_strings, | 
					
						
							|  |  |  | 	.get_ethtool_stats = cfg80211_get_stats, | 
					
						
							|  |  |  | 	.get_sset_count = cfg80211_get_sset_count, | 
					
						
							| 
									
										
										
										
											2009-09-30 14:50:17 -04:00
										 |  |  | }; |