iwl-led.c 6.0 KB
Newer Older
M
Mohamed Abbas 已提交
1 2
/******************************************************************************
 *
3
 * Copyright(c) 2003 - 2010 Intel Corporation. All rights reserved.
M
Mohamed Abbas 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 *
 * 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:
22
 *  Intel Linux Wireless <ilw@linux.intel.com>
M
Mohamed Abbas 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
 *
 *****************************************************************************/


#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/pci.h>
#include <linux/dma-mapping.h>
#include <linux/delay.h>
#include <linux/skbuff.h>
#include <linux/netdevice.h>
#include <linux/wireless.h>
#include <net/mac80211.h>
#include <linux/etherdevice.h>
#include <asm/unaligned.h>

41
#include "iwl-dev.h"
M
Mohamed Abbas 已提交
42
#include "iwl-core.h"
43
#include "iwl-io.h"
M
Mohamed Abbas 已提交
44

45 46 47
/* default: IWL_LED_BLINK(0) using blinking index table */
static int led_mode;
module_param(led_mode, int, S_IRUGO);
W
Wey-Yi Guy 已提交
48
MODULE_PARM_DESC(led_mode, "0=system default, "
49
		"1=On(RF On)/Off(RF Off), 2=blinking");
T
Tomas Winkler 已提交
50

M
Mohamed Abbas 已提交
51
static const struct {
52
	u16 tpt;	/* Mb/s */
M
Mohamed Abbas 已提交
53
	u8 on_time;
T
Tomas Winkler 已提交
54
	u8 off_time;
M
Mohamed Abbas 已提交
55 56 57 58 59 60 61 62
} blink_tbl[] =
{
	{300, 25, 25},
	{200, 40, 40},
	{100, 55, 55},
	{70, 65, 65},
	{50, 75, 75},
	{20, 85, 85},
W
Wey-Yi Guy 已提交
63 64 65
	{10, 95, 95},
	{5, 110, 110},
	{1, 130, 130},
66
	{0, 167, 167},
J
Johannes Berg 已提交
67
	/* SOLID_ON */
68
	{-1, IWL_LED_SOLID, 0}
M
Mohamed Abbas 已提交
69 70
};

71 72 73 74 75
#define IWL_1MB_RATE (128 * 1024)
#define IWL_LED_THRESHOLD (16)
#define IWL_MAX_BLINK_TBL (ARRAY_SIZE(blink_tbl) - 1) /* exclude SOLID_ON */
#define IWL_SOLID_BLINK_IDX (ARRAY_SIZE(blink_tbl) - 1)

76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
/*
 * Adjust led blink rate to compensate on a MAC Clock difference on every HW
 * Led blink rate analysis showed an average deviation of 0% on 3945,
 * 5% on 4965 HW and 20% on 5000 series and up.
 * 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);
}

99
/* Set led pattern command */
J
Johannes Berg 已提交
100
static int iwl_led_pattern(struct iwl_priv *priv, unsigned int idx)
M
Mohamed Abbas 已提交
101
{
102
	struct iwl_led_cmd led_cmd = {
J
Johannes Berg 已提交
103
		.id = IWL_LED_LINK,
M
Mohamed Abbas 已提交
104 105 106
		.interval = IWL_DEF_LED_INTRVL
	};

107 108
	BUG_ON(idx > IWL_MAX_BLINK_TBL);

109
	IWL_DEBUG_LED(priv, "Led blink time compensation= %u\n",
110
			priv->cfg->base_params->led_compensation);
111 112
	led_cmd.on =
		iwl_blink_compensation(priv, blink_tbl[idx].on_time,
113
				priv->cfg->base_params->led_compensation);
114 115
	led_cmd.off =
		iwl_blink_compensation(priv, blink_tbl[idx].off_time,
116
				priv->cfg->base_params->led_compensation);
117

J
Johannes Berg 已提交
118
	return priv->cfg->ops->led->cmd(priv, &led_cmd);
M
Mohamed Abbas 已提交
119 120
}

J
Johannes Berg 已提交
121
int iwl_led_start(struct iwl_priv *priv)
M
Mohamed Abbas 已提交
122
{
J
Johannes Berg 已提交
123
	return priv->cfg->ops->led->on(priv);
M
Mohamed Abbas 已提交
124
}
J
Johannes Berg 已提交
125
EXPORT_SYMBOL(iwl_led_start);
M
Mohamed Abbas 已提交
126

J
Johannes Berg 已提交
127
int iwl_led_associate(struct iwl_priv *priv)
128
{
129
	IWL_DEBUG_LED(priv, "Associated\n");
130
	if (priv->cfg->led_mode == IWL_LED_BLINK)
131
		priv->allow_blinking = 1;
J
Johannes Berg 已提交
132
	priv->last_blink_time = jiffies;
M
Mohamed Abbas 已提交
133 134 135

	return 0;
}
136
EXPORT_SYMBOL(iwl_led_associate);
M
Mohamed Abbas 已提交
137

J
Johannes Berg 已提交
138
int iwl_led_disassociate(struct iwl_priv *priv)
M
Mohamed Abbas 已提交
139
{
J
Johannes Berg 已提交
140
	priv->allow_blinking = 0;
141

M
Mohamed Abbas 已提交
142 143
	return 0;
}
144
EXPORT_SYMBOL(iwl_led_disassociate);
M
Mohamed Abbas 已提交
145 146

/*
147
 * calculate blink rate according to last second Tx/Rx activities
M
Mohamed Abbas 已提交
148
 */
149
static int iwl_get_blink_rate(struct iwl_priv *priv)
M
Mohamed Abbas 已提交
150 151
{
	int i;
152 153 154
	/* count both tx and rx traffic to be able to
	 * handle traffic in either direction
	 */
155 156
	u64 current_tpt = priv->tx_stats.data_bytes +
			  priv->rx_stats.data_bytes;
M
Mohamed Abbas 已提交
157 158
	s64 tpt = current_tpt - priv->led_tpt;

T
Tomas Winkler 已提交
159
	if (tpt < 0) /* wraparound */
M
Mohamed Abbas 已提交
160 161
		tpt = -tpt;

162
	IWL_DEBUG_LED(priv, "tpt %lld current_tpt %llu\n",
163 164
		(long long)tpt,
		(unsigned long long)current_tpt);
M
Mohamed Abbas 已提交
165 166
	priv->led_tpt = current_tpt;

167
	if (!priv->allow_blinking)
M
Mohamed Abbas 已提交
168
		i = IWL_MAX_BLINK_TBL;
169
	else
M
Mohamed Abbas 已提交
170
		for (i = 0; i < IWL_MAX_BLINK_TBL; i++)
J
Johannes Berg 已提交
171
			if (tpt > (blink_tbl[i].tpt * IWL_1MB_RATE))
M
Mohamed Abbas 已提交
172 173
				break;

174
	IWL_DEBUG_LED(priv, "LED BLINK IDX=%d\n", i);
175
	return i;
M
Mohamed Abbas 已提交
176 177 178 179 180 181 182 183 184
}

/*
 * this function called from handler. Since setting Led command can
 * happen very frequent we postpone led command to be called from
 * REPLY handler so we know ucode is up
 */
void iwl_leds_background(struct iwl_priv *priv)
{
185
	u8 blink_idx;
M
Mohamed Abbas 已提交
186 187 188 189 190

	if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
		priv->last_blink_time = 0;
		return;
	}
191
	if (iwl_is_rfkill(priv)) {
M
Mohamed Abbas 已提交
192 193 194 195 196 197
		priv->last_blink_time = 0;
		return;
	}

	if (!priv->allow_blinking) {
		priv->last_blink_time = 0;
198 199
		if (priv->last_blink_rate != IWL_SOLID_BLINK_IDX) {
			priv->last_blink_rate = IWL_SOLID_BLINK_IDX;
J
Johannes Berg 已提交
200
			iwl_led_pattern(priv, IWL_SOLID_BLINK_IDX);
M
Mohamed Abbas 已提交
201 202 203 204 205 206 207 208
		}
		return;
	}
	if (!priv->last_blink_time ||
	    !time_after(jiffies, priv->last_blink_time +
			msecs_to_jiffies(1000)))
		return;

209
	blink_idx = iwl_get_blink_rate(priv);
M
Mohamed Abbas 已提交
210 211

	/* call only if blink rate change */
212
	if (blink_idx != priv->last_blink_rate)
J
Johannes Berg 已提交
213
		iwl_led_pattern(priv, blink_idx);
M
Mohamed Abbas 已提交
214

T
Tomas Winkler 已提交
215
	priv->last_blink_time = jiffies;
216
	priv->last_blink_rate = blink_idx;
M
Mohamed Abbas 已提交
217
}
J
Johannes Berg 已提交
218
EXPORT_SYMBOL(iwl_leds_background);
M
Mohamed Abbas 已提交
219

J
Johannes Berg 已提交
220
void iwl_leds_init(struct iwl_priv *priv)
M
Mohamed Abbas 已提交
221 222 223 224
{
	priv->last_blink_rate = 0;
	priv->last_blink_time = 0;
	priv->allow_blinking = 0;
225 226 227
	if (led_mode != IWL_LED_DEFAULT &&
	    led_mode != priv->cfg->led_mode)
		priv->cfg->led_mode = led_mode;
M
Mohamed Abbas 已提交
228
}
J
Johannes Berg 已提交
229
EXPORT_SYMBOL(iwl_leds_init);