spi-topcliff-pch: supports a spi mode setup and bit order setup by IO control
[zen-stable.git] / drivers / net / wireless / wl12xx / testmode.c
blob25093c0cb0edf654ad04f603e3c1b7eb47603a1b
1 /*
2 * This file is part of wl1271
4 * Copyright (C) 2010 Nokia Corporation
6 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
23 #include "testmode.h"
25 #include <linux/slab.h>
26 #include <net/genetlink.h>
28 #include "wl12xx.h"
29 #include "debug.h"
30 #include "acx.h"
31 #include "reg.h"
32 #include "ps.h"
34 #define WL1271_TM_MAX_DATA_LENGTH 1024
36 enum wl1271_tm_commands {
37 WL1271_TM_CMD_UNSPEC,
38 WL1271_TM_CMD_TEST,
39 WL1271_TM_CMD_INTERROGATE,
40 WL1271_TM_CMD_CONFIGURE,
41 WL1271_TM_CMD_NVS_PUSH, /* Not in use. Keep to not break ABI */
42 WL1271_TM_CMD_SET_PLT_MODE,
43 WL1271_TM_CMD_RECOVER,
45 __WL1271_TM_CMD_AFTER_LAST
47 #define WL1271_TM_CMD_MAX (__WL1271_TM_CMD_AFTER_LAST - 1)
49 enum wl1271_tm_attrs {
50 WL1271_TM_ATTR_UNSPEC,
51 WL1271_TM_ATTR_CMD_ID,
52 WL1271_TM_ATTR_ANSWER,
53 WL1271_TM_ATTR_DATA,
54 WL1271_TM_ATTR_IE_ID,
55 WL1271_TM_ATTR_PLT_MODE,
57 __WL1271_TM_ATTR_AFTER_LAST
59 #define WL1271_TM_ATTR_MAX (__WL1271_TM_ATTR_AFTER_LAST - 1)
61 static struct nla_policy wl1271_tm_policy[WL1271_TM_ATTR_MAX + 1] = {
62 [WL1271_TM_ATTR_CMD_ID] = { .type = NLA_U32 },
63 [WL1271_TM_ATTR_ANSWER] = { .type = NLA_U8 },
64 [WL1271_TM_ATTR_DATA] = { .type = NLA_BINARY,
65 .len = WL1271_TM_MAX_DATA_LENGTH },
66 [WL1271_TM_ATTR_IE_ID] = { .type = NLA_U32 },
67 [WL1271_TM_ATTR_PLT_MODE] = { .type = NLA_U32 },
71 static int wl1271_tm_cmd_test(struct wl1271 *wl, struct nlattr *tb[])
73 int buf_len, ret, len;
74 struct sk_buff *skb;
75 void *buf;
76 u8 answer = 0;
78 wl1271_debug(DEBUG_TESTMODE, "testmode cmd test");
80 if (!tb[WL1271_TM_ATTR_DATA])
81 return -EINVAL;
83 buf = nla_data(tb[WL1271_TM_ATTR_DATA]);
84 buf_len = nla_len(tb[WL1271_TM_ATTR_DATA]);
86 if (tb[WL1271_TM_ATTR_ANSWER])
87 answer = nla_get_u8(tb[WL1271_TM_ATTR_ANSWER]);
89 if (buf_len > sizeof(struct wl1271_command))
90 return -EMSGSIZE;
92 mutex_lock(&wl->mutex);
94 if (wl->state == WL1271_STATE_OFF) {
95 ret = -EINVAL;
96 goto out;
99 ret = wl1271_ps_elp_wakeup(wl);
100 if (ret < 0)
101 goto out;
103 ret = wl1271_cmd_test(wl, buf, buf_len, answer);
104 if (ret < 0) {
105 wl1271_warning("testmode cmd test failed: %d", ret);
106 goto out_sleep;
109 if (answer) {
110 len = nla_total_size(buf_len);
111 skb = cfg80211_testmode_alloc_reply_skb(wl->hw->wiphy, len);
112 if (!skb) {
113 ret = -ENOMEM;
114 goto out_sleep;
117 NLA_PUT(skb, WL1271_TM_ATTR_DATA, buf_len, buf);
118 ret = cfg80211_testmode_reply(skb);
119 if (ret < 0)
120 goto out_sleep;
123 out_sleep:
124 wl1271_ps_elp_sleep(wl);
125 out:
126 mutex_unlock(&wl->mutex);
128 return ret;
130 nla_put_failure:
131 kfree_skb(skb);
132 ret = -EMSGSIZE;
133 goto out_sleep;
136 static int wl1271_tm_cmd_interrogate(struct wl1271 *wl, struct nlattr *tb[])
138 int ret;
139 struct wl1271_command *cmd;
140 struct sk_buff *skb;
141 u8 ie_id;
143 wl1271_debug(DEBUG_TESTMODE, "testmode cmd interrogate");
145 if (!tb[WL1271_TM_ATTR_IE_ID])
146 return -EINVAL;
148 ie_id = nla_get_u8(tb[WL1271_TM_ATTR_IE_ID]);
150 mutex_lock(&wl->mutex);
152 if (wl->state == WL1271_STATE_OFF) {
153 ret = -EINVAL;
154 goto out;
157 ret = wl1271_ps_elp_wakeup(wl);
158 if (ret < 0)
159 goto out;
161 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
162 if (!cmd) {
163 ret = -ENOMEM;
164 goto out_sleep;
167 ret = wl1271_cmd_interrogate(wl, ie_id, cmd, sizeof(*cmd));
168 if (ret < 0) {
169 wl1271_warning("testmode cmd interrogate failed: %d", ret);
170 goto out_free;
173 skb = cfg80211_testmode_alloc_reply_skb(wl->hw->wiphy, sizeof(*cmd));
174 if (!skb) {
175 ret = -ENOMEM;
176 goto out_free;
179 NLA_PUT(skb, WL1271_TM_ATTR_DATA, sizeof(*cmd), cmd);
180 ret = cfg80211_testmode_reply(skb);
181 if (ret < 0)
182 goto out_free;
184 out_free:
185 kfree(cmd);
186 out_sleep:
187 wl1271_ps_elp_sleep(wl);
188 out:
189 mutex_unlock(&wl->mutex);
191 return ret;
193 nla_put_failure:
194 kfree_skb(skb);
195 ret = -EMSGSIZE;
196 goto out_free;
199 static int wl1271_tm_cmd_configure(struct wl1271 *wl, struct nlattr *tb[])
201 int buf_len, ret;
202 void *buf;
203 u8 ie_id;
205 wl1271_debug(DEBUG_TESTMODE, "testmode cmd configure");
207 if (!tb[WL1271_TM_ATTR_DATA])
208 return -EINVAL;
209 if (!tb[WL1271_TM_ATTR_IE_ID])
210 return -EINVAL;
212 ie_id = nla_get_u8(tb[WL1271_TM_ATTR_IE_ID]);
213 buf = nla_data(tb[WL1271_TM_ATTR_DATA]);
214 buf_len = nla_len(tb[WL1271_TM_ATTR_DATA]);
216 if (buf_len > sizeof(struct wl1271_command))
217 return -EMSGSIZE;
219 mutex_lock(&wl->mutex);
220 ret = wl1271_cmd_configure(wl, ie_id, buf, buf_len);
221 mutex_unlock(&wl->mutex);
223 if (ret < 0) {
224 wl1271_warning("testmode cmd configure failed: %d", ret);
225 return ret;
228 return 0;
231 static int wl1271_tm_cmd_set_plt_mode(struct wl1271 *wl, struct nlattr *tb[])
233 u32 val;
234 int ret;
236 wl1271_debug(DEBUG_TESTMODE, "testmode cmd set plt mode");
238 if (!tb[WL1271_TM_ATTR_PLT_MODE])
239 return -EINVAL;
241 val = nla_get_u32(tb[WL1271_TM_ATTR_PLT_MODE]);
243 switch (val) {
244 case 0:
245 ret = wl1271_plt_stop(wl);
246 break;
247 case 1:
248 ret = wl1271_plt_start(wl);
249 break;
250 default:
251 ret = -EINVAL;
252 break;
255 return ret;
258 static int wl1271_tm_cmd_recover(struct wl1271 *wl, struct nlattr *tb[])
260 wl1271_debug(DEBUG_TESTMODE, "testmode cmd recover");
262 wl12xx_queue_recovery_work(wl);
264 return 0;
267 int wl1271_tm_cmd(struct ieee80211_hw *hw, void *data, int len)
269 struct wl1271 *wl = hw->priv;
270 struct nlattr *tb[WL1271_TM_ATTR_MAX + 1];
271 int err;
273 err = nla_parse(tb, WL1271_TM_ATTR_MAX, data, len, wl1271_tm_policy);
274 if (err)
275 return err;
277 if (!tb[WL1271_TM_ATTR_CMD_ID])
278 return -EINVAL;
280 switch (nla_get_u32(tb[WL1271_TM_ATTR_CMD_ID])) {
281 case WL1271_TM_CMD_TEST:
282 return wl1271_tm_cmd_test(wl, tb);
283 case WL1271_TM_CMD_INTERROGATE:
284 return wl1271_tm_cmd_interrogate(wl, tb);
285 case WL1271_TM_CMD_CONFIGURE:
286 return wl1271_tm_cmd_configure(wl, tb);
287 case WL1271_TM_CMD_SET_PLT_MODE:
288 return wl1271_tm_cmd_set_plt_mode(wl, tb);
289 case WL1271_TM_CMD_RECOVER:
290 return wl1271_tm_cmd_recover(wl, tb);
291 default:
292 return -EOPNOTSUPP;