| 
									
										
										
										
											2012-03-18 17:30:52 -07:00
										 |  |  | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-19 10:31:32 +09:00
										 |  |  | #include <linux/device.h>
 | 
					
						
							|  |  |  | #include <linux/pci.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "ath5k.h"
 | 
					
						
							|  |  |  | #include "reg.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define SIMPLE_SHOW_STORE(name, get, set)				\
 | 
					
						
							|  |  |  | static ssize_t ath5k_attr_show_##name(struct device *dev,		\ | 
					
						
							|  |  |  | 			struct device_attribute *attr,			\ | 
					
						
							|  |  |  | 			char *buf)					\ | 
					
						
							|  |  |  | {									\ | 
					
						
							| 
									
										
										
										
											2011-06-29 15:39:37 -04:00
										 |  |  | 	struct ieee80211_hw *hw = dev_get_drvdata(dev);			\ | 
					
						
							| 
									
										
										
										
											2011-07-14 20:21:55 -04:00
										 |  |  | 	struct ath5k_hw *ah = hw->priv;				\ | 
					
						
							| 
									
										
										
										
											2011-07-07 18:13:24 -04:00
										 |  |  | 	return snprintf(buf, PAGE_SIZE, "%d\n", get);			\ | 
					
						
							| 
									
										
										
										
											2010-05-19 10:31:32 +09:00
										 |  |  | }									\ | 
					
						
							|  |  |  | 									\ | 
					
						
							|  |  |  | static ssize_t ath5k_attr_store_##name(struct device *dev,		\ | 
					
						
							|  |  |  | 			struct device_attribute *attr,			\ | 
					
						
							|  |  |  | 			const char *buf, size_t count)			\ | 
					
						
							|  |  |  | {									\ | 
					
						
							| 
									
										
										
										
											2011-06-29 15:39:37 -04:00
										 |  |  | 	struct ieee80211_hw *hw = dev_get_drvdata(dev);			\ | 
					
						
							| 
									
										
										
										
											2011-07-14 20:21:55 -04:00
										 |  |  | 	struct ath5k_hw *ah = hw->priv;				\ | 
					
						
							| 
									
										
										
										
											2011-07-07 18:14:19 -04:00
										 |  |  | 	int val, ret;							\ | 
					
						
							| 
									
										
										
										
											2010-05-19 10:31:32 +09:00
										 |  |  | 									\ | 
					
						
							| 
									
										
										
										
											2011-07-07 18:14:19 -04:00
										 |  |  | 	ret = kstrtoint(buf, 10, &val);					\ | 
					
						
							|  |  |  | 	if (ret < 0)							\ | 
					
						
							|  |  |  | 		return ret;						\ | 
					
						
							| 
									
										
										
										
											2011-07-14 20:21:55 -04:00
										 |  |  | 	set(ah, val);						\ | 
					
						
							| 
									
										
										
										
											2010-05-19 10:31:32 +09:00
										 |  |  | 	return count;							\ | 
					
						
							|  |  |  | }									\ | 
					
						
							|  |  |  | static DEVICE_ATTR(name, S_IRUGO | S_IWUSR,				\ | 
					
						
							|  |  |  | 		   ath5k_attr_show_##name, ath5k_attr_store_##name) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define SIMPLE_SHOW(name, get)						\
 | 
					
						
							|  |  |  | static ssize_t ath5k_attr_show_##name(struct device *dev,		\ | 
					
						
							|  |  |  | 			struct device_attribute *attr,			\ | 
					
						
							|  |  |  | 			char *buf)					\ | 
					
						
							|  |  |  | {									\ | 
					
						
							| 
									
										
										
										
											2011-06-29 15:39:37 -04:00
										 |  |  | 	struct ieee80211_hw *hw = dev_get_drvdata(dev);			\ | 
					
						
							| 
									
										
										
										
											2011-07-14 20:21:55 -04:00
										 |  |  | 	struct ath5k_hw *ah = hw->priv;				\ | 
					
						
							| 
									
										
										
										
											2011-07-07 18:13:24 -04:00
										 |  |  | 	return snprintf(buf, PAGE_SIZE, "%d\n", get);			\ | 
					
						
							| 
									
										
										
										
											2010-05-19 10:31:32 +09:00
										 |  |  | }									\ | 
					
						
							|  |  |  | static DEVICE_ATTR(name, S_IRUGO, ath5k_attr_show_##name, NULL) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*** ANI ***/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-14 20:21:55 -04:00
										 |  |  | SIMPLE_SHOW_STORE(ani_mode, ah->ani_state.ani_mode, ath5k_ani_init); | 
					
						
							|  |  |  | SIMPLE_SHOW_STORE(noise_immunity_level, ah->ani_state.noise_imm_level, | 
					
						
							| 
									
										
										
										
											2010-05-19 10:31:32 +09:00
										 |  |  | 			ath5k_ani_set_noise_immunity_level); | 
					
						
							| 
									
										
										
										
											2011-07-14 20:21:55 -04:00
										 |  |  | SIMPLE_SHOW_STORE(spur_level, ah->ani_state.spur_level, | 
					
						
							| 
									
										
										
										
											2010-05-19 10:31:32 +09:00
										 |  |  | 			ath5k_ani_set_spur_immunity_level); | 
					
						
							| 
									
										
										
										
											2011-07-14 20:21:55 -04:00
										 |  |  | SIMPLE_SHOW_STORE(firstep_level, ah->ani_state.firstep_level, | 
					
						
							| 
									
										
										
										
											2010-05-19 10:31:32 +09:00
										 |  |  | 			ath5k_ani_set_firstep_level); | 
					
						
							| 
									
										
										
										
											2011-07-14 20:21:55 -04:00
										 |  |  | SIMPLE_SHOW_STORE(ofdm_weak_signal_detection, ah->ani_state.ofdm_weak_sig, | 
					
						
							| 
									
										
										
										
											2010-05-19 10:31:32 +09:00
										 |  |  | 			ath5k_ani_set_ofdm_weak_signal_detection); | 
					
						
							| 
									
										
										
										
											2011-07-14 20:21:55 -04:00
										 |  |  | SIMPLE_SHOW_STORE(cck_weak_signal_detection, ah->ani_state.cck_weak_sig, | 
					
						
							| 
									
										
										
										
											2010-05-19 10:31:32 +09:00
										 |  |  | 			ath5k_ani_set_cck_weak_signal_detection); | 
					
						
							| 
									
										
										
										
											2011-07-14 20:21:55 -04:00
										 |  |  | SIMPLE_SHOW(spur_level_max, ah->ani_state.max_spur_level); | 
					
						
							| 
									
										
										
										
											2010-05-19 10:31:32 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | static ssize_t ath5k_attr_show_noise_immunity_level_max(struct device *dev, | 
					
						
							|  |  |  | 			struct device_attribute *attr, | 
					
						
							|  |  |  | 			char *buf) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return snprintf(buf, PAGE_SIZE, "%d\n", ATH5K_ANI_MAX_NOISE_IMM_LVL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | static DEVICE_ATTR(noise_immunity_level_max, S_IRUGO, | 
					
						
							|  |  |  | 		   ath5k_attr_show_noise_immunity_level_max, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static ssize_t ath5k_attr_show_firstep_level_max(struct device *dev, | 
					
						
							|  |  |  | 			struct device_attribute *attr, | 
					
						
							|  |  |  | 			char *buf) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return snprintf(buf, PAGE_SIZE, "%d\n", ATH5K_ANI_MAX_FIRSTEP_LVL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | static DEVICE_ATTR(firstep_level_max, S_IRUGO, | 
					
						
							|  |  |  | 		   ath5k_attr_show_firstep_level_max, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct attribute *ath5k_sysfs_entries_ani[] = { | 
					
						
							|  |  |  | 	&dev_attr_ani_mode.attr, | 
					
						
							|  |  |  | 	&dev_attr_noise_immunity_level.attr, | 
					
						
							|  |  |  | 	&dev_attr_spur_level.attr, | 
					
						
							|  |  |  | 	&dev_attr_firstep_level.attr, | 
					
						
							|  |  |  | 	&dev_attr_ofdm_weak_signal_detection.attr, | 
					
						
							|  |  |  | 	&dev_attr_cck_weak_signal_detection.attr, | 
					
						
							|  |  |  | 	&dev_attr_noise_immunity_level_max.attr, | 
					
						
							|  |  |  | 	&dev_attr_spur_level_max.attr, | 
					
						
							|  |  |  | 	&dev_attr_firstep_level_max.attr, | 
					
						
							|  |  |  | 	NULL | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct attribute_group ath5k_attribute_group_ani = { | 
					
						
							|  |  |  | 	.name = "ani", | 
					
						
							|  |  |  | 	.attrs = ath5k_sysfs_entries_ani, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*** register / unregister ***/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							| 
									
										
										
										
											2011-07-14 20:21:55 -04:00
										 |  |  | ath5k_sysfs_register(struct ath5k_hw *ah) | 
					
						
							| 
									
										
										
										
											2010-05-19 10:31:32 +09:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-07-14 20:21:55 -04:00
										 |  |  | 	struct device *dev = ah->dev; | 
					
						
							| 
									
										
										
										
											2010-05-19 10:31:32 +09:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = sysfs_create_group(&dev->kobj, &ath5k_attribute_group_ani); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							| 
									
										
										
										
											2011-07-14 20:21:55 -04:00
										 |  |  | 		ATH5K_ERR(ah, "failed to create sysfs group\n"); | 
					
						
							| 
									
										
										
										
											2010-05-19 10:31:32 +09:00
										 |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							| 
									
										
										
										
											2011-07-14 20:21:55 -04:00
										 |  |  | ath5k_sysfs_unregister(struct ath5k_hw *ah) | 
					
						
							| 
									
										
										
										
											2010-05-19 10:31:32 +09:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-07-14 20:21:55 -04:00
										 |  |  | 	struct device *dev = ah->dev; | 
					
						
							| 
									
										
										
										
											2010-05-19 10:31:32 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	sysfs_remove_group(&dev->kobj, &ath5k_attribute_group_ani); | 
					
						
							|  |  |  | } |