| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-12-30 13:15:54 +02:00
										 |  |  |  * Copyright(c) 2003 - 2014 Intel Corporation. All rights reserved. | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify it | 
					
						
							|  |  |  |  * under the terms of version 2 of the GNU General Public License as | 
					
						
							|  |  |  |  * published by the Free Software Foundation. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that 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 Street, Fifth Floor, Boston, MA 02110, USA | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The full GNU General Public License is included in this distribution in the | 
					
						
							|  |  |  |  * file called LICENSE. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Contact Information: | 
					
						
							| 
									
										
										
										
											2008-12-09 11:28:58 -08:00
										 |  |  |  *  Intel Linux Wireless <ilw@linux.intel.com> | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  |  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *****************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/delay.h>
 | 
					
						
							|  |  |  | #include <linux/skbuff.h>
 | 
					
						
							|  |  |  | #include <linux/netdevice.h>
 | 
					
						
							|  |  |  | #include <net/mac80211.h>
 | 
					
						
							|  |  |  | #include <linux/etherdevice.h>
 | 
					
						
							|  |  |  | #include <asm/unaligned.h>
 | 
					
						
							| 
									
										
										
										
											2008-04-03 16:05:21 -07:00
										 |  |  | #include "iwl-io.h"
 | 
					
						
							| 
									
										
										
										
											2011-07-08 08:46:16 -07:00
										 |  |  | #include "iwl-trans.h"
 | 
					
						
							| 
									
										
										
										
											2012-04-17 07:36:30 -07:00
										 |  |  | #include "iwl-modparams.h"
 | 
					
						
							| 
									
										
										
										
											2012-05-15 12:16:34 +02:00
										 |  |  | #include "dev.h"
 | 
					
						
							|  |  |  | #include "agn.h"
 | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-30 08:38:16 -07:00
										 |  |  | /* Throughput		OFF time(ms)	ON time (ms)
 | 
					
						
							|  |  |  |  *	>300			25		25 | 
					
						
							|  |  |  |  *	>200 to 300		40		40 | 
					
						
							|  |  |  |  *	>100 to 200		55		55 | 
					
						
							|  |  |  |  *	>70 to 100		65		65 | 
					
						
							|  |  |  |  *	>50 to 70		75		75 | 
					
						
							|  |  |  |  *	>20 to 50		85		85 | 
					
						
							|  |  |  |  *	>10 to 20		95		95 | 
					
						
							|  |  |  |  *	>5 to 10		110		110 | 
					
						
							|  |  |  |  *	>1 to 5			130		130 | 
					
						
							|  |  |  |  *	>0 to 1			167		167 | 
					
						
							|  |  |  |  *	<=0					SOLID ON | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | static const struct ieee80211_tpt_blink iwl_blink[] = { | 
					
						
							| 
									
										
										
										
											2011-04-30 08:38:16 -07:00
										 |  |  | 	{ .throughput = 0, .blink_time = 334 }, | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | 	{ .throughput = 1 * 1024 - 1, .blink_time = 260 }, | 
					
						
							|  |  |  | 	{ .throughput = 5 * 1024 - 1, .blink_time = 220 }, | 
					
						
							|  |  |  | 	{ .throughput = 10 * 1024 - 1, .blink_time = 190 }, | 
					
						
							|  |  |  | 	{ .throughput = 20 * 1024 - 1, .blink_time = 170 }, | 
					
						
							|  |  |  | 	{ .throughput = 50 * 1024 - 1, .blink_time = 150 }, | 
					
						
							|  |  |  | 	{ .throughput = 70 * 1024 - 1, .blink_time = 130 }, | 
					
						
							|  |  |  | 	{ .throughput = 100 * 1024 - 1, .blink_time = 110 }, | 
					
						
							|  |  |  | 	{ .throughput = 200 * 1024 - 1, .blink_time = 80 }, | 
					
						
							|  |  |  | 	{ .throughput = 300 * 1024 - 1, .blink_time = 50 }, | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-05 08:30:43 -07:00
										 |  |  | /* Set led register off */ | 
					
						
							|  |  |  | void iwlagn_led_enable(struct iwl_priv *priv) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-12-28 00:10:36 +02:00
										 |  |  | 	iwl_write32(priv->trans, CSR_LED_REG, CSR_LED_REG_TURN_ON); | 
					
						
							| 
									
										
										
										
											2011-04-05 08:30:43 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-11 10:38:14 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Adjust led blink rate to compensate on a MAC Clock difference on every HW | 
					
						
							| 
									
										
										
										
											2011-04-01 16:29:50 -07:00
										 |  |  |  * Led blink rate analysis showed an average deviation of 20% on 5000 series | 
					
						
							|  |  |  |  * and up. | 
					
						
							| 
									
										
										
										
											2009-09-11 10:38:14 -07:00
										 |  |  |  * Need to compensate on the led on/off time per HW according to the deviation | 
					
						
							|  |  |  |  * to achieve the desired led frequency | 
					
						
							|  |  |  |  * The calculation is: (100-averageDeviation)/100 * blinkTime | 
					
						
							|  |  |  |  * For code efficiency the calculation will be: | 
					
						
							|  |  |  |  *     compensation = (100 - averageDeviation) * 64 / 100 | 
					
						
							|  |  |  |  *     NewBlinkTime = (compensation * BlinkTime) / 64 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static inline u8 iwl_blink_compensation(struct iwl_priv *priv, | 
					
						
							|  |  |  | 				    u8 time, u16 compensation) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!compensation) { | 
					
						
							|  |  |  | 		IWL_ERR(priv, "undefined blink compensation: " | 
					
						
							|  |  |  | 			"use pre-defined blinking time\n"); | 
					
						
							|  |  |  | 		return time; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return (u8)((time * compensation) >> 6); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-05 08:30:43 -07:00
										 |  |  | static int iwl_send_led_cmd(struct iwl_priv *priv, struct iwl_led_cmd *led_cmd) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct iwl_host_cmd cmd = { | 
					
						
							|  |  |  | 		.id = REPLY_LEDS_CMD, | 
					
						
							| 
									
										
										
										
											2011-05-04 07:50:38 -07:00
										 |  |  | 		.len = { sizeof(struct iwl_led_cmd), }, | 
					
						
							|  |  |  | 		.data = { led_cmd, }, | 
					
						
							| 
									
										
										
										
											2011-04-05 08:30:43 -07:00
										 |  |  | 		.flags = CMD_ASYNC, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	u32 reg; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-18 07:28:17 -07:00
										 |  |  | 	reg = iwl_read32(priv->trans, CSR_LED_REG); | 
					
						
							| 
									
										
										
										
											2011-04-05 08:30:43 -07:00
										 |  |  | 	if (reg != (reg & CSR_LED_BSM_CTRL_MSK)) | 
					
						
							| 
									
										
										
										
											2012-04-18 07:28:17 -07:00
										 |  |  | 		iwl_write32(priv->trans, CSR_LED_REG, | 
					
						
							| 
									
										
										
										
											2012-01-03 16:56:15 +02:00
										 |  |  | 			    reg & CSR_LED_BSM_CTRL_MSK); | 
					
						
							| 
									
										
										
										
											2011-04-05 08:30:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-06 13:30:39 -08:00
										 |  |  | 	return iwl_dvm_send_cmd(priv, &cmd); | 
					
						
							| 
									
										
										
										
											2011-04-05 08:30:43 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-11 11:53:37 +08:00
										 |  |  | /* Set led pattern command */ | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | static int iwl_led_cmd(struct iwl_priv *priv, | 
					
						
							|  |  |  | 		       unsigned long on, | 
					
						
							|  |  |  | 		       unsigned long off) | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-07-11 11:53:37 +08:00
										 |  |  | 	struct iwl_led_cmd led_cmd = { | 
					
						
							| 
									
										
										
										
											2009-10-02 13:44:03 -07:00
										 |  |  | 		.id = IWL_LED_LINK, | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  | 		.interval = IWL_DEF_LED_INTRVL | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | 	int ret; | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-07 09:52:37 -08:00
										 |  |  | 	if (!test_bit(STATUS_READY, &priv->status)) | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | 		return -EBUSY; | 
					
						
							| 
									
										
										
										
											2008-07-11 11:53:37 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | 	if (priv->blink_on == on && priv->blink_off == off) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-30 08:38:16 -07:00
										 |  |  | 	if (off == 0) { | 
					
						
							|  |  |  | 		/* led is SOLID_ON */ | 
					
						
							|  |  |  | 		on = IWL_LED_SOLID; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | 	IWL_DEBUG_LED(priv, "Led blink time compensation=%u\n", | 
					
						
							| 
									
										
										
										
											2012-03-22 17:51:44 +02:00
										 |  |  | 			priv->cfg->base_params->led_compensation); | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | 	led_cmd.on = iwl_blink_compensation(priv, on, | 
					
						
							| 
									
										
										
										
											2012-03-22 17:51:44 +02:00
										 |  |  | 				priv->cfg->base_params->led_compensation); | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | 	led_cmd.off = iwl_blink_compensation(priv, off, | 
					
						
							| 
									
										
										
										
											2012-03-22 17:51:44 +02:00
										 |  |  | 				priv->cfg->base_params->led_compensation); | 
					
						
							| 
									
										
										
										
											2008-07-11 11:53:37 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-05 08:30:43 -07:00
										 |  |  | 	ret = iwl_send_led_cmd(priv, &led_cmd); | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | 	if (!ret) { | 
					
						
							|  |  |  | 		priv->blink_on = on; | 
					
						
							|  |  |  | 		priv->blink_off = off; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | static void iwl_led_brightness_set(struct led_classdev *led_cdev, | 
					
						
							|  |  |  | 				   enum led_brightness brightness) | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | 	struct iwl_priv *priv = container_of(led_cdev, struct iwl_priv, led); | 
					
						
							|  |  |  | 	unsigned long on = 0; | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | 	if (brightness > 0) | 
					
						
							|  |  |  | 		on = IWL_LED_SOLID; | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | 	iwl_led_cmd(priv, on, 0); | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | static int iwl_led_blink_set(struct led_classdev *led_cdev, | 
					
						
							|  |  |  | 			     unsigned long *delay_on, | 
					
						
							|  |  |  | 			     unsigned long *delay_off) | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | 	struct iwl_priv *priv = container_of(led_cdev, struct iwl_priv, led); | 
					
						
							| 
									
										
										
										
											2008-03-28 16:21:11 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | 	return iwl_led_cmd(priv, *delay_on, *delay_off); | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | void iwl_leds_init(struct iwl_priv *priv) | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-04-17 07:36:30 -07:00
										 |  |  | 	int mode = iwlwifi_mod_params.led_mode; | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-19 12:16:46 -08:00
										 |  |  | 	if (mode == IWL_LED_DISABLE) { | 
					
						
							|  |  |  | 		IWL_INFO(priv, "Led disabled\n"); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | 	if (mode == IWL_LED_DEFAULT) | 
					
						
							| 
									
										
										
										
											2012-03-22 17:51:44 +02:00
										 |  |  | 		mode = priv->cfg->led_mode; | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	priv->led.name = kasprintf(GFP_KERNEL, "%s-led", | 
					
						
							|  |  |  | 				   wiphy_name(priv->hw->wiphy)); | 
					
						
							|  |  |  | 	priv->led.brightness_set = iwl_led_brightness_set; | 
					
						
							|  |  |  | 	priv->led.blink_set = iwl_led_blink_set; | 
					
						
							|  |  |  | 	priv->led.max_brightness = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (mode) { | 
					
						
							|  |  |  | 	case IWL_LED_DEFAULT: | 
					
						
							|  |  |  | 		WARN_ON(1); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case IWL_LED_BLINK: | 
					
						
							|  |  |  | 		priv->led.default_trigger = | 
					
						
							|  |  |  | 			ieee80211_create_tpt_led_trigger(priv->hw, | 
					
						
							|  |  |  | 					IEEE80211_TPT_LEDTRIG_FL_CONNECTED, | 
					
						
							|  |  |  | 					iwl_blink, ARRAY_SIZE(iwl_blink)); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case IWL_LED_RF_STATE: | 
					
						
							|  |  |  | 		priv->led.default_trigger = | 
					
						
							|  |  |  | 			ieee80211_get_radio_led_name(priv->hw); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-18 07:28:17 -07:00
										 |  |  | 	ret = led_classdev_register(priv->trans->dev, &priv->led); | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | 	if (ret) { | 
					
						
							|  |  |  | 		kfree(priv->led.name); | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | 	priv->led_registered = true; | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | void iwl_leds_exit(struct iwl_priv *priv) | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-01-21 15:26:39 -08:00
										 |  |  | 	if (!priv->led_registered) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	led_classdev_unregister(&priv->led); | 
					
						
							|  |  |  | 	kfree(priv->led.name); | 
					
						
							| 
									
										
										
										
											2008-03-25 16:33:36 -07:00
										 |  |  | } |