iwl-led.c 5.3 KB
Newer Older
M
Mohamed Abbas 已提交
1 2
/******************************************************************************
 *
W
Wey-Yi Guy 已提交
3
 * Copyright(c) 2003 - 2011 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

51 52 53 54 55 56 57 58 59 60 61
static const struct ieee80211_tpt_blink iwl_blink[] = {
	{ .throughput = 0 * 1024 - 1, .blink_time = 334 },
	{ .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 },
M
Mohamed Abbas 已提交
62 63
};

64 65
/*
 * Adjust led blink rate to compensate on a MAC Clock difference on every HW
66 67
 * Led blink rate analysis showed an average deviation of 20% on 5000 series
 * and up.
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
 * 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);
}

87
/* Set led pattern command */
88 89 90
static int iwl_led_cmd(struct iwl_priv *priv,
		       unsigned long on,
		       unsigned long off)
M
Mohamed Abbas 已提交
91
{
92
	struct iwl_led_cmd led_cmd = {
J
Johannes Berg 已提交
93
		.id = IWL_LED_LINK,
M
Mohamed Abbas 已提交
94 95
		.interval = IWL_DEF_LED_INTRVL
	};
96
	int ret;
M
Mohamed Abbas 已提交
97

98 99
	if (!test_bit(STATUS_READY, &priv->status))
		return -EBUSY;
100

101 102 103 104
	if (priv->blink_on == on && priv->blink_off == off)
		return 0;

	IWL_DEBUG_LED(priv, "Led blink time compensation=%u\n",
105
			priv->cfg->base_params->led_compensation);
106
	led_cmd.on = iwl_blink_compensation(priv, on,
107
				priv->cfg->base_params->led_compensation);
108
	led_cmd.off = iwl_blink_compensation(priv, off,
109
				priv->cfg->base_params->led_compensation);
110

111 112 113 114 115 116
	ret = priv->cfg->ops->led->cmd(priv, &led_cmd);
	if (!ret) {
		priv->blink_on = on;
		priv->blink_off = off;
	}
	return ret;
M
Mohamed Abbas 已提交
117 118
}

119 120
static void iwl_led_brightness_set(struct led_classdev *led_cdev,
				   enum led_brightness brightness)
M
Mohamed Abbas 已提交
121
{
122 123
	struct iwl_priv *priv = container_of(led_cdev, struct iwl_priv, led);
	unsigned long on = 0;
M
Mohamed Abbas 已提交
124

125 126
	if (brightness > 0)
		on = IWL_LED_SOLID;
M
Mohamed Abbas 已提交
127

128
	iwl_led_cmd(priv, on, 0);
M
Mohamed Abbas 已提交
129 130
}

131 132 133
static int iwl_led_blink_set(struct led_classdev *led_cdev,
			     unsigned long *delay_on,
			     unsigned long *delay_off)
M
Mohamed Abbas 已提交
134
{
135
	struct iwl_priv *priv = container_of(led_cdev, struct iwl_priv, led);
136

137
	return iwl_led_cmd(priv, *delay_on, *delay_off);
M
Mohamed Abbas 已提交
138 139
}

140
void iwl_leds_init(struct iwl_priv *priv)
M
Mohamed Abbas 已提交
141
{
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
	int mode = led_mode;
	int ret;

	if (mode == IWL_LED_DEFAULT)
		mode = priv->cfg->led_mode;

	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;
M
Mohamed Abbas 已提交
168 169
	}

170 171 172
	ret = led_classdev_register(&priv->pci_dev->dev, &priv->led);
	if (ret) {
		kfree(priv->led.name);
M
Mohamed Abbas 已提交
173 174 175
		return;
	}

176
	priv->led_registered = true;
M
Mohamed Abbas 已提交
177 178
}

179
void iwl_leds_exit(struct iwl_priv *priv)
M
Mohamed Abbas 已提交
180
{
181 182 183 184 185
	if (!priv->led_registered)
		return;

	led_classdev_unregister(&priv->led);
	kfree(priv->led.name);
M
Mohamed Abbas 已提交
186
}