blob: ca04b6df134197d907f6ae33f979ad660e899655 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Gavin Shan2d283bd2016-07-19 11:54:16 +10002/*
3 * Copyright Gavin Shan, IBM Corporation 2016.
Gavin Shan2d283bd2016-07-19 11:54:16 +10004 */
5
6#include <linux/module.h>
7#include <linux/kernel.h>
8#include <linux/init.h>
9#include <linux/netdevice.h>
10#include <linux/skbuff.h>
Vijay Khemka5e0fcc12020-01-08 15:43:40 -080011#include <linux/of.h>
12#include <linux/platform_device.h>
Gavin Shan2d283bd2016-07-19 11:54:16 +100013
14#include <net/ncsi.h>
15#include <net/net_namespace.h>
16#include <net/sock.h>
Gavin Shane6f44ed2016-07-19 11:54:19 +100017#include <net/addrconf.h>
18#include <net/ipv6.h>
Justin.Lee1@Dell.com9771b8c2018-10-11 18:07:37 +000019#include <net/genetlink.h>
Gavin Shan2d283bd2016-07-19 11:54:16 +100020
21#include "internal.h"
Gavin Shane6f44ed2016-07-19 11:54:19 +100022#include "ncsi-pkt.h"
Samuel Mendoza-Jonas955dc682018-03-05 11:39:05 +110023#include "ncsi-netlink.h"
Gavin Shan2d283bd2016-07-19 11:54:16 +100024
25LIST_HEAD(ncsi_dev_list);
26DEFINE_SPINLOCK(ncsi_dev_lock);
27
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +110028bool ncsi_channel_has_link(struct ncsi_channel *channel)
29{
30 return !!(channel->modes[NCSI_MODE_LINK].data[2] & 0x1);
31}
32
33bool ncsi_channel_is_last(struct ncsi_dev_priv *ndp,
34 struct ncsi_channel *channel)
35{
36 struct ncsi_package *np;
37 struct ncsi_channel *nc;
38
39 NCSI_FOR_EACH_PACKAGE(ndp, np)
40 NCSI_FOR_EACH_CHANNEL(np, nc) {
41 if (nc == channel)
42 continue;
43 if (nc->state == NCSI_CHANNEL_ACTIVE &&
44 ncsi_channel_has_link(nc))
45 return false;
46 }
47
48 return true;
49}
50
Gavin Shane6f44ed2016-07-19 11:54:19 +100051static void ncsi_report_link(struct ncsi_dev_priv *ndp, bool force_down)
52{
53 struct ncsi_dev *nd = &ndp->ndev;
54 struct ncsi_package *np;
55 struct ncsi_channel *nc;
Gavin Shand8cedaa2016-10-04 11:25:47 +110056 unsigned long flags;
Gavin Shane6f44ed2016-07-19 11:54:19 +100057
58 nd->state = ncsi_dev_state_functional;
59 if (force_down) {
60 nd->link_up = 0;
61 goto report;
62 }
63
64 nd->link_up = 0;
65 NCSI_FOR_EACH_PACKAGE(ndp, np) {
66 NCSI_FOR_EACH_CHANNEL(np, nc) {
Gavin Shand8cedaa2016-10-04 11:25:47 +110067 spin_lock_irqsave(&nc->lock, flags);
68
Gavin Shane6f44ed2016-07-19 11:54:19 +100069 if (!list_empty(&nc->link) ||
Gavin Shand8cedaa2016-10-04 11:25:47 +110070 nc->state != NCSI_CHANNEL_ACTIVE) {
71 spin_unlock_irqrestore(&nc->lock, flags);
Gavin Shane6f44ed2016-07-19 11:54:19 +100072 continue;
Gavin Shand8cedaa2016-10-04 11:25:47 +110073 }
Gavin Shane6f44ed2016-07-19 11:54:19 +100074
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +110075 if (ncsi_channel_has_link(nc)) {
Gavin Shand8cedaa2016-10-04 11:25:47 +110076 spin_unlock_irqrestore(&nc->lock, flags);
Gavin Shane6f44ed2016-07-19 11:54:19 +100077 nd->link_up = 1;
78 goto report;
79 }
Gavin Shand8cedaa2016-10-04 11:25:47 +110080
81 spin_unlock_irqrestore(&nc->lock, flags);
Gavin Shane6f44ed2016-07-19 11:54:19 +100082 }
83 }
84
85report:
86 nd->handler(nd);
87}
88
Kees Cook86cb30e2017-10-17 20:21:24 -070089static void ncsi_channel_monitor(struct timer_list *t)
Gavin Shane6f44ed2016-07-19 11:54:19 +100090{
Kees Cook86cb30e2017-10-17 20:21:24 -070091 struct ncsi_channel *nc = from_timer(nc, t, monitor.timer);
Gavin Shane6f44ed2016-07-19 11:54:19 +100092 struct ncsi_package *np = nc->package;
93 struct ncsi_dev_priv *ndp = np->ndp;
Gavin Shan52b4c862017-10-19 13:43:08 +110094 struct ncsi_channel_mode *ncm;
Gavin Shane6f44ed2016-07-19 11:54:19 +100095 struct ncsi_cmd_arg nca;
Gavin Shand8cedaa2016-10-04 11:25:47 +110096 bool enabled, chained;
Gavin Shan83afdc62016-10-04 11:25:52 +110097 unsigned int monitor_state;
Gavin Shane6f44ed2016-07-19 11:54:19 +100098 unsigned long flags;
Gavin Shand8cedaa2016-10-04 11:25:47 +110099 int state, ret;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000100
101 spin_lock_irqsave(&nc->lock, flags);
Gavin Shand8cedaa2016-10-04 11:25:47 +1100102 state = nc->state;
103 chained = !list_empty(&nc->link);
Gavin Shan83afdc62016-10-04 11:25:52 +1100104 enabled = nc->monitor.enabled;
105 monitor_state = nc->monitor.state;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000106 spin_unlock_irqrestore(&nc->lock, flags);
107
Milton Miller03cb4d02021-03-29 10:20:39 -0500108 if (!enabled)
109 return; /* expected race disabling timer */
110 if (WARN_ON_ONCE(chained))
111 goto bad_state;
112
Gavin Shand8cedaa2016-10-04 11:25:47 +1100113 if (state != NCSI_CHANNEL_INACTIVE &&
Samuel Mendoza-Jonas0795fb22017-10-19 13:43:06 +1100114 state != NCSI_CHANNEL_ACTIVE) {
Milton Miller03cb4d02021-03-29 10:20:39 -0500115bad_state:
116 netdev_warn(ndp->ndev.dev,
117 "Bad NCSI monitor state channel %d 0x%x %s queue\n",
118 nc->id, state, chained ? "on" : "off");
119 spin_lock_irqsave(&nc->lock, flags);
120 nc->monitor.enabled = false;
121 spin_unlock_irqrestore(&nc->lock, flags);
Gavin Shane6f44ed2016-07-19 11:54:19 +1000122 return;
Samuel Mendoza-Jonas0795fb22017-10-19 13:43:06 +1100123 }
Gavin Shane6f44ed2016-07-19 11:54:19 +1000124
Gavin Shan83afdc62016-10-04 11:25:52 +1100125 switch (monitor_state) {
126 case NCSI_CHANNEL_MONITOR_START:
127 case NCSI_CHANNEL_MONITOR_RETRY:
Gavin Shane6f44ed2016-07-19 11:54:19 +1000128 nca.ndp = ndp;
129 nca.package = np->id;
130 nca.channel = nc->id;
131 nca.type = NCSI_PKT_CMD_GLS;
Gavin Shana0509cb2016-10-04 11:25:51 +1100132 nca.req_flags = 0;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000133 ret = ncsi_xmit_cmd(&nca);
Samuel Mendoza-Jonas0795fb22017-10-19 13:43:06 +1100134 if (ret)
Gavin Shane6f44ed2016-07-19 11:54:19 +1000135 netdev_err(ndp->ndev.dev, "Error %d sending GLS\n",
136 ret);
Gavin Shan83afdc62016-10-04 11:25:52 +1100137 break;
138 case NCSI_CHANNEL_MONITOR_WAIT ... NCSI_CHANNEL_MONITOR_WAIT_MAX:
139 break;
140 default:
Samuel Mendoza-Jonas9ef86902017-11-08 16:30:44 +1100141 netdev_err(ndp->ndev.dev, "NCSI Channel %d timed out!\n",
142 nc->id);
Samuel Mendoza-Jonas60ab49b2018-11-16 15:51:54 +1100143 ncsi_report_link(ndp, true);
144 ndp->flags |= NCSI_DEV_RESHUFFLE;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000145
Gavin Shan52b4c862017-10-19 13:43:08 +1100146 ncm = &nc->modes[NCSI_MODE_LINK];
Gavin Shand8cedaa2016-10-04 11:25:47 +1100147 spin_lock_irqsave(&nc->lock, flags);
Milton Miller03cb4d02021-03-29 10:20:39 -0500148 nc->monitor.enabled = false;
Gavin Shand8cedaa2016-10-04 11:25:47 +1100149 nc->state = NCSI_CHANNEL_INVISIBLE;
Gavin Shan52b4c862017-10-19 13:43:08 +1100150 ncm->data[2] &= ~0x1;
Gavin Shand8cedaa2016-10-04 11:25:47 +1100151 spin_unlock_irqrestore(&nc->lock, flags);
152
Gavin Shane6f44ed2016-07-19 11:54:19 +1000153 spin_lock_irqsave(&ndp->lock, flags);
Gavin Shan52b4c862017-10-19 13:43:08 +1100154 nc->state = NCSI_CHANNEL_ACTIVE;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000155 list_add_tail_rcu(&nc->link, &ndp->channel_queue);
156 spin_unlock_irqrestore(&ndp->lock, flags);
157 ncsi_process_next_channel(ndp);
158 return;
159 }
160
161 spin_lock_irqsave(&nc->lock, flags);
Gavin Shan83afdc62016-10-04 11:25:52 +1100162 nc->monitor.state++;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000163 spin_unlock_irqrestore(&nc->lock, flags);
Gavin Shan83afdc62016-10-04 11:25:52 +1100164 mod_timer(&nc->monitor.timer, jiffies + HZ);
Gavin Shane6f44ed2016-07-19 11:54:19 +1000165}
166
167void ncsi_start_channel_monitor(struct ncsi_channel *nc)
168{
169 unsigned long flags;
170
171 spin_lock_irqsave(&nc->lock, flags);
Gavin Shan83afdc62016-10-04 11:25:52 +1100172 WARN_ON_ONCE(nc->monitor.enabled);
173 nc->monitor.enabled = true;
174 nc->monitor.state = NCSI_CHANNEL_MONITOR_START;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000175 spin_unlock_irqrestore(&nc->lock, flags);
176
Gavin Shan83afdc62016-10-04 11:25:52 +1100177 mod_timer(&nc->monitor.timer, jiffies + HZ);
Gavin Shane6f44ed2016-07-19 11:54:19 +1000178}
179
180void ncsi_stop_channel_monitor(struct ncsi_channel *nc)
181{
182 unsigned long flags;
183
184 spin_lock_irqsave(&nc->lock, flags);
Gavin Shan83afdc62016-10-04 11:25:52 +1100185 if (!nc->monitor.enabled) {
Gavin Shane6f44ed2016-07-19 11:54:19 +1000186 spin_unlock_irqrestore(&nc->lock, flags);
187 return;
188 }
Gavin Shan83afdc62016-10-04 11:25:52 +1100189 nc->monitor.enabled = false;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000190 spin_unlock_irqrestore(&nc->lock, flags);
191
Gavin Shan83afdc62016-10-04 11:25:52 +1100192 del_timer_sync(&nc->monitor.timer);
Gavin Shane6f44ed2016-07-19 11:54:19 +1000193}
194
Gavin Shan2d283bd2016-07-19 11:54:16 +1000195struct ncsi_channel *ncsi_find_channel(struct ncsi_package *np,
196 unsigned char id)
197{
198 struct ncsi_channel *nc;
199
200 NCSI_FOR_EACH_CHANNEL(np, nc) {
201 if (nc->id == id)
202 return nc;
203 }
204
205 return NULL;
206}
207
208struct ncsi_channel *ncsi_add_channel(struct ncsi_package *np, unsigned char id)
209{
210 struct ncsi_channel *nc, *tmp;
211 int index;
212 unsigned long flags;
213
214 nc = kzalloc(sizeof(*nc), GFP_ATOMIC);
215 if (!nc)
216 return NULL;
217
218 nc->id = id;
219 nc->package = np;
220 nc->state = NCSI_CHANNEL_INACTIVE;
Gavin Shan83afdc62016-10-04 11:25:52 +1100221 nc->monitor.enabled = false;
Kees Cook86cb30e2017-10-17 20:21:24 -0700222 timer_setup(&nc->monitor.timer, ncsi_channel_monitor, 0);
Gavin Shan2d283bd2016-07-19 11:54:16 +1000223 spin_lock_init(&nc->lock);
Gavin Shane6f44ed2016-07-19 11:54:19 +1000224 INIT_LIST_HEAD(&nc->link);
Gavin Shan2d283bd2016-07-19 11:54:16 +1000225 for (index = 0; index < NCSI_CAP_MAX; index++)
226 nc->caps[index].index = index;
227 for (index = 0; index < NCSI_MODE_MAX; index++)
228 nc->modes[index].index = index;
229
230 spin_lock_irqsave(&np->lock, flags);
231 tmp = ncsi_find_channel(np, id);
232 if (tmp) {
233 spin_unlock_irqrestore(&np->lock, flags);
234 kfree(nc);
235 return tmp;
236 }
237
238 list_add_tail_rcu(&nc->node, &np->channels);
239 np->channel_num++;
240 spin_unlock_irqrestore(&np->lock, flags);
241
242 return nc;
243}
244
245static void ncsi_remove_channel(struct ncsi_channel *nc)
246{
247 struct ncsi_package *np = nc->package;
Gavin Shan2d283bd2016-07-19 11:54:16 +1000248 unsigned long flags;
Samuel Mendoza-Jonas062b3e12018-04-17 14:23:23 +1000249
250 spin_lock_irqsave(&nc->lock, flags);
Gavin Shan2d283bd2016-07-19 11:54:16 +1000251
252 /* Release filters */
Samuel Mendoza-Jonas062b3e12018-04-17 14:23:23 +1000253 kfree(nc->mac_filter.addrs);
254 kfree(nc->vlan_filter.vids);
Gavin Shan2d283bd2016-07-19 11:54:16 +1000255
256 nc->state = NCSI_CHANNEL_INACTIVE;
257 spin_unlock_irqrestore(&nc->lock, flags);
Gavin Shane6f44ed2016-07-19 11:54:19 +1000258 ncsi_stop_channel_monitor(nc);
Gavin Shan2d283bd2016-07-19 11:54:16 +1000259
260 /* Remove and free channel */
261 spin_lock_irqsave(&np->lock, flags);
262 list_del_rcu(&nc->node);
263 np->channel_num--;
264 spin_unlock_irqrestore(&np->lock, flags);
265
266 kfree(nc);
267}
268
269struct ncsi_package *ncsi_find_package(struct ncsi_dev_priv *ndp,
270 unsigned char id)
271{
272 struct ncsi_package *np;
273
274 NCSI_FOR_EACH_PACKAGE(ndp, np) {
275 if (np->id == id)
276 return np;
277 }
278
279 return NULL;
280}
281
282struct ncsi_package *ncsi_add_package(struct ncsi_dev_priv *ndp,
283 unsigned char id)
284{
285 struct ncsi_package *np, *tmp;
286 unsigned long flags;
287
288 np = kzalloc(sizeof(*np), GFP_ATOMIC);
289 if (!np)
290 return NULL;
291
292 np->id = id;
293 np->ndp = ndp;
294 spin_lock_init(&np->lock);
295 INIT_LIST_HEAD(&np->channels);
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +1100296 np->channel_whitelist = UINT_MAX;
Gavin Shan2d283bd2016-07-19 11:54:16 +1000297
298 spin_lock_irqsave(&ndp->lock, flags);
299 tmp = ncsi_find_package(ndp, id);
300 if (tmp) {
301 spin_unlock_irqrestore(&ndp->lock, flags);
302 kfree(np);
303 return tmp;
304 }
305
306 list_add_tail_rcu(&np->node, &ndp->packages);
307 ndp->package_num++;
308 spin_unlock_irqrestore(&ndp->lock, flags);
309
310 return np;
311}
312
313void ncsi_remove_package(struct ncsi_package *np)
314{
315 struct ncsi_dev_priv *ndp = np->ndp;
316 struct ncsi_channel *nc, *tmp;
317 unsigned long flags;
318
319 /* Release all child channels */
320 list_for_each_entry_safe(nc, tmp, &np->channels, node)
321 ncsi_remove_channel(nc);
322
323 /* Remove and free package */
324 spin_lock_irqsave(&ndp->lock, flags);
325 list_del_rcu(&np->node);
326 ndp->package_num--;
327 spin_unlock_irqrestore(&ndp->lock, flags);
328
329 kfree(np);
330}
331
332void ncsi_find_package_and_channel(struct ncsi_dev_priv *ndp,
333 unsigned char id,
334 struct ncsi_package **np,
335 struct ncsi_channel **nc)
336{
337 struct ncsi_package *p;
338 struct ncsi_channel *c;
339
340 p = ncsi_find_package(ndp, NCSI_PACKAGE_INDEX(id));
341 c = p ? ncsi_find_channel(p, NCSI_CHANNEL_INDEX(id)) : NULL;
342
343 if (np)
344 *np = p;
345 if (nc)
346 *nc = c;
347}
348
349/* For two consecutive NCSI commands, the packet IDs shouldn't
350 * be same. Otherwise, the bogus response might be replied. So
351 * the available IDs are allocated in round-robin fashion.
352 */
Gavin Shana0509cb2016-10-04 11:25:51 +1100353struct ncsi_request *ncsi_alloc_request(struct ncsi_dev_priv *ndp,
354 unsigned int req_flags)
Gavin Shan2d283bd2016-07-19 11:54:16 +1000355{
356 struct ncsi_request *nr = NULL;
357 int i, limit = ARRAY_SIZE(ndp->requests);
358 unsigned long flags;
359
360 /* Check if there is one available request until the ceiling */
361 spin_lock_irqsave(&ndp->lock, flags);
Gavin Shana15af542016-10-04 11:25:50 +1100362 for (i = ndp->request_id; i < limit; i++) {
Gavin Shan2d283bd2016-07-19 11:54:16 +1000363 if (ndp->requests[i].used)
364 continue;
365
366 nr = &ndp->requests[i];
367 nr->used = true;
Gavin Shana0509cb2016-10-04 11:25:51 +1100368 nr->flags = req_flags;
Gavin Shana15af542016-10-04 11:25:50 +1100369 ndp->request_id = i + 1;
370 goto found;
Gavin Shan2d283bd2016-07-19 11:54:16 +1000371 }
372
373 /* Fail back to check from the starting cursor */
Gavin Shana15af542016-10-04 11:25:50 +1100374 for (i = NCSI_REQ_START_IDX; i < ndp->request_id; i++) {
Gavin Shan2d283bd2016-07-19 11:54:16 +1000375 if (ndp->requests[i].used)
376 continue;
377
378 nr = &ndp->requests[i];
379 nr->used = true;
Gavin Shana0509cb2016-10-04 11:25:51 +1100380 nr->flags = req_flags;
Gavin Shana15af542016-10-04 11:25:50 +1100381 ndp->request_id = i + 1;
382 goto found;
Gavin Shan2d283bd2016-07-19 11:54:16 +1000383 }
Gavin Shan2d283bd2016-07-19 11:54:16 +1000384
Gavin Shana15af542016-10-04 11:25:50 +1100385found:
386 spin_unlock_irqrestore(&ndp->lock, flags);
Gavin Shan2d283bd2016-07-19 11:54:16 +1000387 return nr;
388}
389
390void ncsi_free_request(struct ncsi_request *nr)
391{
392 struct ncsi_dev_priv *ndp = nr->ndp;
393 struct sk_buff *cmd, *rsp;
394 unsigned long flags;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000395 bool driven;
Gavin Shan2d283bd2016-07-19 11:54:16 +1000396
397 if (nr->enabled) {
398 nr->enabled = false;
399 del_timer_sync(&nr->timer);
400 }
401
402 spin_lock_irqsave(&ndp->lock, flags);
403 cmd = nr->cmd;
404 rsp = nr->rsp;
405 nr->cmd = NULL;
406 nr->rsp = NULL;
407 nr->used = false;
Gavin Shana0509cb2016-10-04 11:25:51 +1100408 driven = !!(nr->flags & NCSI_REQ_FLAG_EVENT_DRIVEN);
Gavin Shan2d283bd2016-07-19 11:54:16 +1000409 spin_unlock_irqrestore(&ndp->lock, flags);
410
Gavin Shane6f44ed2016-07-19 11:54:19 +1000411 if (driven && cmd && --ndp->pending_req_num == 0)
412 schedule_work(&ndp->work);
413
Gavin Shan2d283bd2016-07-19 11:54:16 +1000414 /* Release command and response */
415 consume_skb(cmd);
416 consume_skb(rsp);
417}
418
419struct ncsi_dev *ncsi_find_dev(struct net_device *dev)
420{
421 struct ncsi_dev_priv *ndp;
422
423 NCSI_FOR_EACH_DEV(ndp) {
424 if (ndp->ndev.dev == dev)
425 return &ndp->ndev;
426 }
427
428 return NULL;
429}
430
Kees Cooke99e88a2017-10-16 14:43:17 -0700431static void ncsi_request_timeout(struct timer_list *t)
Gavin Shan2d283bd2016-07-19 11:54:16 +1000432{
Kees Cooke99e88a2017-10-16 14:43:17 -0700433 struct ncsi_request *nr = from_timer(nr, t, timer);
Gavin Shan2d283bd2016-07-19 11:54:16 +1000434 struct ncsi_dev_priv *ndp = nr->ndp;
Justin.Lee1@Dell.com9771b8c2018-10-11 18:07:37 +0000435 struct ncsi_cmd_pkt *cmd;
436 struct ncsi_package *np;
437 struct ncsi_channel *nc;
Gavin Shan2d283bd2016-07-19 11:54:16 +1000438 unsigned long flags;
439
440 /* If the request already had associated response,
441 * let the response handler to release it.
442 */
443 spin_lock_irqsave(&ndp->lock, flags);
444 nr->enabled = false;
445 if (nr->rsp || !nr->cmd) {
446 spin_unlock_irqrestore(&ndp->lock, flags);
447 return;
448 }
449 spin_unlock_irqrestore(&ndp->lock, flags);
450
Justin.Lee1@Dell.com9771b8c2018-10-11 18:07:37 +0000451 if (nr->flags == NCSI_REQ_FLAG_NETLINK_DRIVEN) {
452 if (nr->cmd) {
453 /* Find the package */
454 cmd = (struct ncsi_cmd_pkt *)
455 skb_network_header(nr->cmd);
456 ncsi_find_package_and_channel(ndp,
457 cmd->cmd.common.channel,
458 &np, &nc);
459 ncsi_send_netlink_timeout(nr, np, nc);
460 }
461 }
462
Gavin Shan2d283bd2016-07-19 11:54:16 +1000463 /* Release the request */
464 ncsi_free_request(nr);
465}
466
Gavin Shane6f44ed2016-07-19 11:54:19 +1000467static void ncsi_suspend_channel(struct ncsi_dev_priv *ndp)
468{
469 struct ncsi_dev *nd = &ndp->ndev;
Samuel Mendoza-Jonascd09ab02018-11-16 15:51:56 +1100470 struct ncsi_package *np;
471 struct ncsi_channel *nc, *tmp;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000472 struct ncsi_cmd_arg nca;
Gavin Shand8cedaa2016-10-04 11:25:47 +1100473 unsigned long flags;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000474 int ret;
475
Samuel Mendoza-Jonascd09ab02018-11-16 15:51:56 +1100476 np = ndp->active_package;
477 nc = ndp->active_channel;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000478 nca.ndp = ndp;
Gavin Shana0509cb2016-10-04 11:25:51 +1100479 nca.req_flags = NCSI_REQ_FLAG_EVENT_DRIVEN;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000480 switch (nd->state) {
481 case ncsi_dev_state_suspend:
482 nd->state = ncsi_dev_state_suspend_select;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500483 fallthrough;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000484 case ncsi_dev_state_suspend_select:
Gavin Shan7ba5c002016-10-20 11:45:49 +1100485 ndp->pending_req_num = 1;
486
487 nca.type = NCSI_PKT_CMD_SP;
488 nca.package = np->id;
489 nca.channel = NCSI_RESERVED_CHANNEL;
490 if (ndp->flags & NCSI_DEV_HWA)
491 nca.bytes[0] = 0;
492 else
493 nca.bytes[0] = 1;
494
Gavin Shan008a4242016-10-20 11:45:50 +1100495 /* To retrieve the last link states of channels in current
496 * package when current active channel needs fail over to
497 * another one. It means we will possibly select another
498 * channel as next active one. The link states of channels
499 * are most important factor of the selection. So we need
500 * accurate link states. Unfortunately, the link states on
501 * inactive channels can't be updated with LSC AEN in time.
502 */
503 if (ndp->flags & NCSI_DEV_RESHUFFLE)
504 nd->state = ncsi_dev_state_suspend_gls;
505 else
506 nd->state = ncsi_dev_state_suspend_dcnt;
Gavin Shan7ba5c002016-10-20 11:45:49 +1100507 ret = ncsi_xmit_cmd(&nca);
508 if (ret)
509 goto error;
510
511 break;
Gavin Shan008a4242016-10-20 11:45:50 +1100512 case ncsi_dev_state_suspend_gls:
513 ndp->pending_req_num = np->channel_num;
514
515 nca.type = NCSI_PKT_CMD_GLS;
516 nca.package = np->id;
517
518 nd->state = ncsi_dev_state_suspend_dcnt;
519 NCSI_FOR_EACH_CHANNEL(np, nc) {
520 nca.channel = nc->id;
521 ret = ncsi_xmit_cmd(&nca);
522 if (ret)
523 goto error;
524 }
525
526 break;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000527 case ncsi_dev_state_suspend_dcnt:
Gavin Shan7ba5c002016-10-20 11:45:49 +1100528 ndp->pending_req_num = 1;
529
530 nca.type = NCSI_PKT_CMD_DCNT;
531 nca.package = np->id;
532 nca.channel = nc->id;
533
534 nd->state = ncsi_dev_state_suspend_dc;
535 ret = ncsi_xmit_cmd(&nca);
536 if (ret)
537 goto error;
538
539 break;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000540 case ncsi_dev_state_suspend_dc:
Gavin Shan7ba5c002016-10-20 11:45:49 +1100541 ndp->pending_req_num = 1;
542
543 nca.type = NCSI_PKT_CMD_DC;
544 nca.package = np->id;
545 nca.channel = nc->id;
546 nca.bytes[0] = 1;
547
548 nd->state = ncsi_dev_state_suspend_deselect;
549 ret = ncsi_xmit_cmd(&nca);
550 if (ret)
551 goto error;
552
Samuel Mendoza-Jonascd09ab02018-11-16 15:51:56 +1100553 NCSI_FOR_EACH_CHANNEL(np, tmp) {
554 /* If there is another channel active on this package
555 * do not deselect the package.
556 */
557 if (tmp != nc && tmp->state == NCSI_CHANNEL_ACTIVE) {
558 nd->state = ncsi_dev_state_suspend_done;
559 break;
560 }
561 }
Gavin Shan7ba5c002016-10-20 11:45:49 +1100562 break;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000563 case ncsi_dev_state_suspend_deselect:
564 ndp->pending_req_num = 1;
565
Gavin Shan7ba5c002016-10-20 11:45:49 +1100566 nca.type = NCSI_PKT_CMD_DP;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000567 nca.package = np->id;
Gavin Shan7ba5c002016-10-20 11:45:49 +1100568 nca.channel = NCSI_RESERVED_CHANNEL;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000569
Gavin Shan7ba5c002016-10-20 11:45:49 +1100570 nd->state = ncsi_dev_state_suspend_done;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000571 ret = ncsi_xmit_cmd(&nca);
Gavin Shan7ba5c002016-10-20 11:45:49 +1100572 if (ret)
573 goto error;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000574
575 break;
576 case ncsi_dev_state_suspend_done:
Gavin Shand8cedaa2016-10-04 11:25:47 +1100577 spin_lock_irqsave(&nc->lock, flags);
578 nc->state = NCSI_CHANNEL_INACTIVE;
579 spin_unlock_irqrestore(&nc->lock, flags);
Samuel Mendoza-Jonas2878a2c2018-11-16 15:51:58 +1100580 if (ndp->flags & NCSI_DEV_RESET)
581 ncsi_reset_dev(nd);
582 else
583 ncsi_process_next_channel(ndp);
Gavin Shane6f44ed2016-07-19 11:54:19 +1000584 break;
585 default:
586 netdev_warn(nd->dev, "Wrong NCSI state 0x%x in suspend\n",
587 nd->state);
588 }
Gavin Shan7ba5c002016-10-20 11:45:49 +1100589
590 return;
591error:
592 nd->state = ncsi_dev_state_functional;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000593}
594
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +1000595/* Check the VLAN filter bitmap for a set filter, and construct a
596 * "Set VLAN Filter - Disable" packet if found.
597 */
598static int clear_one_vid(struct ncsi_dev_priv *ndp, struct ncsi_channel *nc,
599 struct ncsi_cmd_arg *nca)
600{
Samuel Mendoza-Jonas062b3e12018-04-17 14:23:23 +1000601 struct ncsi_channel_vlan_filter *ncf;
602 unsigned long flags;
603 void *bitmap;
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +1000604 int index;
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +1000605 u16 vid;
606
Samuel Mendoza-Jonas062b3e12018-04-17 14:23:23 +1000607 ncf = &nc->vlan_filter;
608 bitmap = &ncf->bitmap;
609
610 spin_lock_irqsave(&nc->lock, flags);
611 index = find_next_bit(bitmap, ncf->n_vids, 0);
612 if (index >= ncf->n_vids) {
613 spin_unlock_irqrestore(&nc->lock, flags);
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +1000614 return -1;
615 }
Samuel Mendoza-Jonas062b3e12018-04-17 14:23:23 +1000616 vid = ncf->vids[index];
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +1000617
Samuel Mendoza-Jonas062b3e12018-04-17 14:23:23 +1000618 clear_bit(index, bitmap);
619 ncf->vids[index] = 0;
620 spin_unlock_irqrestore(&nc->lock, flags);
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +1000621
622 nca->type = NCSI_PKT_CMD_SVF;
623 nca->words[1] = vid;
624 /* HW filter index starts at 1 */
625 nca->bytes[6] = index + 1;
626 nca->bytes[7] = 0x00;
627 return 0;
628}
629
Zheng Yongjun4fb3ebb2021-06-07 23:01:18 +0800630/* Find an outstanding VLAN tag and construct a "Set VLAN Filter - Enable"
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +1000631 * packet.
632 */
633static int set_one_vid(struct ncsi_dev_priv *ndp, struct ncsi_channel *nc,
634 struct ncsi_cmd_arg *nca)
635{
Samuel Mendoza-Jonas062b3e12018-04-17 14:23:23 +1000636 struct ncsi_channel_vlan_filter *ncf;
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +1000637 struct vlan_vid *vlan = NULL;
Samuel Mendoza-Jonas062b3e12018-04-17 14:23:23 +1000638 unsigned long flags;
639 int i, index;
640 void *bitmap;
641 u16 vid;
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +1000642
Samuel Mendoza-Jonas062b3e12018-04-17 14:23:23 +1000643 if (list_empty(&ndp->vlan_vids))
644 return -1;
645
646 ncf = &nc->vlan_filter;
647 bitmap = &ncf->bitmap;
648
649 spin_lock_irqsave(&nc->lock, flags);
650
651 rcu_read_lock();
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +1000652 list_for_each_entry_rcu(vlan, &ndp->vlan_vids, list) {
Samuel Mendoza-Jonas062b3e12018-04-17 14:23:23 +1000653 vid = vlan->vid;
654 for (i = 0; i < ncf->n_vids; i++)
655 if (ncf->vids[i] == vid) {
656 vid = 0;
657 break;
658 }
659 if (vid)
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +1000660 break;
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +1000661 }
Samuel Mendoza-Jonas062b3e12018-04-17 14:23:23 +1000662 rcu_read_unlock();
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +1000663
Samuel Mendoza-Jonas062b3e12018-04-17 14:23:23 +1000664 if (!vid) {
665 /* No VLAN ID is not set */
666 spin_unlock_irqrestore(&nc->lock, flags);
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +1000667 return -1;
668 }
669
Samuel Mendoza-Jonas062b3e12018-04-17 14:23:23 +1000670 index = find_next_zero_bit(bitmap, ncf->n_vids, 0);
671 if (index < 0 || index >= ncf->n_vids) {
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +1000672 netdev_err(ndp->ndev.dev,
Samuel Mendoza-Jonas062b3e12018-04-17 14:23:23 +1000673 "Channel %u already has all VLAN filters set\n",
674 nc->id);
675 spin_unlock_irqrestore(&nc->lock, flags);
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +1000676 return -1;
677 }
678
Samuel Mendoza-Jonas062b3e12018-04-17 14:23:23 +1000679 ncf->vids[index] = vid;
680 set_bit(index, bitmap);
681 spin_unlock_irqrestore(&nc->lock, flags);
682
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +1000683 nca->type = NCSI_PKT_CMD_SVF;
Samuel Mendoza-Jonas062b3e12018-04-17 14:23:23 +1000684 nca->words[1] = vid;
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +1000685 /* HW filter index starts at 1 */
686 nca->bytes[6] = index + 1;
687 nca->bytes[7] = 0x01;
688
689 return 0;
690}
691
Vijay Khemkacb10c7c2018-10-16 12:13:19 -0700692#if IS_ENABLED(CONFIG_NCSI_OEM_CMD_GET_MAC)
693
694/* NCSI OEM Command APIs */
695static int ncsi_oem_gma_handler_bcm(struct ncsi_cmd_arg *nca)
696{
697 unsigned char data[NCSI_OEM_BCM_CMD_GMA_LEN];
698 int ret = 0;
699
700 nca->payload = NCSI_OEM_BCM_CMD_GMA_LEN;
701
702 memset(data, 0, NCSI_OEM_BCM_CMD_GMA_LEN);
703 *(unsigned int *)data = ntohl(NCSI_OEM_MFR_BCM_ID);
704 data[5] = NCSI_OEM_BCM_CMD_GMA;
705
706 nca->data = data;
707
708 ret = ncsi_xmit_cmd(nca);
709 if (ret)
710 netdev_err(nca->ndp->ndev.dev,
711 "NCSI: Failed to transmit cmd 0x%x during configure\n",
712 nca->type);
713 return ret;
714}
715
Vijay Khemka16e8c4c2018-11-26 13:49:04 -0800716static int ncsi_oem_gma_handler_mlx(struct ncsi_cmd_arg *nca)
717{
718 union {
719 u8 data_u8[NCSI_OEM_MLX_CMD_GMA_LEN];
720 u32 data_u32[NCSI_OEM_MLX_CMD_GMA_LEN / sizeof(u32)];
721 } u;
722 int ret = 0;
723
724 nca->payload = NCSI_OEM_MLX_CMD_GMA_LEN;
725
726 memset(&u, 0, sizeof(u));
727 u.data_u32[0] = ntohl(NCSI_OEM_MFR_MLX_ID);
728 u.data_u8[5] = NCSI_OEM_MLX_CMD_GMA;
729 u.data_u8[6] = NCSI_OEM_MLX_CMD_GMA_PARAM;
730
731 nca->data = u.data_u8;
732
733 ret = ncsi_xmit_cmd(nca);
734 if (ret)
735 netdev_err(nca->ndp->ndev.dev,
736 "NCSI: Failed to transmit cmd 0x%x during configure\n",
737 nca->type);
738 return ret;
739}
740
Vijay Khemka5e0fcc12020-01-08 15:43:40 -0800741static int ncsi_oem_smaf_mlx(struct ncsi_cmd_arg *nca)
742{
743 union {
744 u8 data_u8[NCSI_OEM_MLX_CMD_SMAF_LEN];
745 u32 data_u32[NCSI_OEM_MLX_CMD_SMAF_LEN / sizeof(u32)];
746 } u;
747 int ret = 0;
748
749 memset(&u, 0, sizeof(u));
750 u.data_u32[0] = ntohl(NCSI_OEM_MFR_MLX_ID);
751 u.data_u8[5] = NCSI_OEM_MLX_CMD_SMAF;
752 u.data_u8[6] = NCSI_OEM_MLX_CMD_SMAF_PARAM;
753 memcpy(&u.data_u8[MLX_SMAF_MAC_ADDR_OFFSET],
754 nca->ndp->ndev.dev->dev_addr, ETH_ALEN);
755 u.data_u8[MLX_SMAF_MED_SUPPORT_OFFSET] =
756 (MLX_MC_RBT_AVL | MLX_MC_RBT_SUPPORT);
757
758 nca->payload = NCSI_OEM_MLX_CMD_SMAF_LEN;
759 nca->data = u.data_u8;
760
761 ret = ncsi_xmit_cmd(nca);
762 if (ret)
763 netdev_err(nca->ndp->ndev.dev,
764 "NCSI: Failed to transmit cmd 0x%x during probe\n",
765 nca->type);
766 return ret;
767}
768
Vijay Khemkacb10c7c2018-10-16 12:13:19 -0700769/* OEM Command handlers initialization */
770static struct ncsi_oem_gma_handler {
771 unsigned int mfr_id;
772 int (*handler)(struct ncsi_cmd_arg *nca);
773} ncsi_oem_gma_handlers[] = {
Vijay Khemka16e8c4c2018-11-26 13:49:04 -0800774 { NCSI_OEM_MFR_BCM_ID, ncsi_oem_gma_handler_bcm },
775 { NCSI_OEM_MFR_MLX_ID, ncsi_oem_gma_handler_mlx }
Vijay Khemkacb10c7c2018-10-16 12:13:19 -0700776};
777
778static int ncsi_gma_handler(struct ncsi_cmd_arg *nca, unsigned int mf_id)
779{
780 struct ncsi_oem_gma_handler *nch = NULL;
781 int i;
782
783 /* This function should only be called once, return if flag set */
784 if (nca->ndp->gma_flag == 1)
785 return -1;
786
787 /* Find gma handler for given manufacturer id */
788 for (i = 0; i < ARRAY_SIZE(ncsi_oem_gma_handlers); i++) {
789 if (ncsi_oem_gma_handlers[i].mfr_id == mf_id) {
790 if (ncsi_oem_gma_handlers[i].handler)
791 nch = &ncsi_oem_gma_handlers[i];
792 break;
793 }
794 }
795
796 if (!nch) {
797 netdev_err(nca->ndp->ndev.dev,
798 "NCSI: No GMA handler available for MFR-ID (0x%x)\n",
799 mf_id);
800 return -1;
801 }
802
Vijay Khemkacb10c7c2018-10-16 12:13:19 -0700803 /* Get Mac address from NCSI device */
804 return nch->handler(nca);
805}
806
807#endif /* CONFIG_NCSI_OEM_CMD_GET_MAC */
808
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +1100809/* Determine if a given channel from the channel_queue should be used for Tx */
810static bool ncsi_channel_is_tx(struct ncsi_dev_priv *ndp,
811 struct ncsi_channel *nc)
812{
813 struct ncsi_channel_mode *ncm;
814 struct ncsi_channel *channel;
815 struct ncsi_package *np;
816
817 /* Check if any other channel has Tx enabled; a channel may have already
818 * been configured and removed from the channel queue.
819 */
820 NCSI_FOR_EACH_PACKAGE(ndp, np) {
821 if (!ndp->multi_package && np != nc->package)
822 continue;
823 NCSI_FOR_EACH_CHANNEL(np, channel) {
824 ncm = &channel->modes[NCSI_MODE_TX_ENABLE];
825 if (ncm->enable)
826 return false;
827 }
828 }
829
830 /* This channel is the preferred channel and has link */
831 list_for_each_entry_rcu(channel, &ndp->channel_queue, link) {
832 np = channel->package;
833 if (np->preferred_channel &&
834 ncsi_channel_has_link(np->preferred_channel)) {
835 return np->preferred_channel == nc;
836 }
837 }
838
839 /* This channel has link */
840 if (ncsi_channel_has_link(nc))
841 return true;
842
843 list_for_each_entry_rcu(channel, &ndp->channel_queue, link)
844 if (ncsi_channel_has_link(channel))
845 return false;
846
847 /* No other channel has link; default to this one */
848 return true;
849}
850
851/* Change the active Tx channel in a multi-channel setup */
852int ncsi_update_tx_channel(struct ncsi_dev_priv *ndp,
853 struct ncsi_package *package,
854 struct ncsi_channel *disable,
855 struct ncsi_channel *enable)
856{
857 struct ncsi_cmd_arg nca;
858 struct ncsi_channel *nc;
859 struct ncsi_package *np;
860 int ret = 0;
861
862 if (!package->multi_channel && !ndp->multi_package)
863 netdev_warn(ndp->ndev.dev,
864 "NCSI: Trying to update Tx channel in single-channel mode\n");
865 nca.ndp = ndp;
866 nca.req_flags = 0;
867
868 /* Find current channel with Tx enabled */
869 NCSI_FOR_EACH_PACKAGE(ndp, np) {
870 if (disable)
871 break;
872 if (!ndp->multi_package && np != package)
873 continue;
874
875 NCSI_FOR_EACH_CHANNEL(np, nc)
876 if (nc->modes[NCSI_MODE_TX_ENABLE].enable) {
877 disable = nc;
878 break;
879 }
880 }
881
882 /* Find a suitable channel for Tx */
883 NCSI_FOR_EACH_PACKAGE(ndp, np) {
884 if (enable)
885 break;
886 if (!ndp->multi_package && np != package)
887 continue;
888 if (!(ndp->package_whitelist & (0x1 << np->id)))
889 continue;
890
891 if (np->preferred_channel &&
892 ncsi_channel_has_link(np->preferred_channel)) {
893 enable = np->preferred_channel;
894 break;
895 }
896
897 NCSI_FOR_EACH_CHANNEL(np, nc) {
898 if (!(np->channel_whitelist & 0x1 << nc->id))
899 continue;
900 if (nc->state != NCSI_CHANNEL_ACTIVE)
901 continue;
902 if (ncsi_channel_has_link(nc)) {
903 enable = nc;
904 break;
905 }
906 }
907 }
908
909 if (disable == enable)
910 return -1;
911
912 if (!enable)
913 return -1;
914
915 if (disable) {
916 nca.channel = disable->id;
917 nca.package = disable->package->id;
918 nca.type = NCSI_PKT_CMD_DCNT;
919 ret = ncsi_xmit_cmd(&nca);
920 if (ret)
921 netdev_err(ndp->ndev.dev,
922 "Error %d sending DCNT\n",
923 ret);
924 }
925
926 netdev_info(ndp->ndev.dev, "NCSI: channel %u enables Tx\n", enable->id);
927
928 nca.channel = enable->id;
929 nca.package = enable->package->id;
930 nca.type = NCSI_PKT_CMD_ECNT;
931 ret = ncsi_xmit_cmd(&nca);
932 if (ret)
933 netdev_err(ndp->ndev.dev,
934 "Error %d sending ECNT\n",
935 ret);
936
937 return ret;
938}
939
Gavin Shane6f44ed2016-07-19 11:54:19 +1000940static void ncsi_configure_channel(struct ncsi_dev_priv *ndp)
941{
Gavin Shane6f44ed2016-07-19 11:54:19 +1000942 struct ncsi_package *np = ndp->active_package;
943 struct ncsi_channel *nc = ndp->active_channel;
Gavin Shanbbc7c012016-10-20 11:45:51 +1100944 struct ncsi_channel *hot_nc = NULL;
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +1100945 struct ncsi_dev *nd = &ndp->ndev;
946 struct net_device *dev = nd->dev;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000947 struct ncsi_cmd_arg nca;
948 unsigned char index;
Gavin Shand8cedaa2016-10-04 11:25:47 +1100949 unsigned long flags;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000950 int ret;
951
952 nca.ndp = ndp;
Gavin Shana0509cb2016-10-04 11:25:51 +1100953 nca.req_flags = NCSI_REQ_FLAG_EVENT_DRIVEN;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000954 switch (nd->state) {
955 case ncsi_dev_state_config:
956 case ncsi_dev_state_config_sp:
957 ndp->pending_req_num = 1;
958
959 /* Select the specific package */
960 nca.type = NCSI_PKT_CMD_SP;
961 if (ndp->flags & NCSI_DEV_HWA)
962 nca.bytes[0] = 0;
963 else
964 nca.bytes[0] = 1;
965 nca.package = np->id;
Gavin Shanbc7e0f52016-10-04 11:25:48 +1100966 nca.channel = NCSI_RESERVED_CHANNEL;
Gavin Shane6f44ed2016-07-19 11:54:19 +1000967 ret = ncsi_xmit_cmd(&nca);
Samuel Mendoza-Jonas9ef86902017-11-08 16:30:44 +1100968 if (ret) {
969 netdev_err(ndp->ndev.dev,
970 "NCSI: Failed to transmit CMD_SP\n");
Gavin Shane6f44ed2016-07-19 11:54:19 +1000971 goto error;
Samuel Mendoza-Jonas9ef86902017-11-08 16:30:44 +1100972 }
Gavin Shane6f44ed2016-07-19 11:54:19 +1000973
974 nd->state = ncsi_dev_state_config_cis;
975 break;
976 case ncsi_dev_state_config_cis:
977 ndp->pending_req_num = 1;
978
979 /* Clear initial state */
980 nca.type = NCSI_PKT_CMD_CIS;
981 nca.package = np->id;
982 nca.channel = nc->id;
983 ret = ncsi_xmit_cmd(&nca);
Samuel Mendoza-Jonas9ef86902017-11-08 16:30:44 +1100984 if (ret) {
985 netdev_err(ndp->ndev.dev,
986 "NCSI: Failed to transmit CMD_CIS\n");
Gavin Shane6f44ed2016-07-19 11:54:19 +1000987 goto error;
Samuel Mendoza-Jonas9ef86902017-11-08 16:30:44 +1100988 }
Gavin Shane6f44ed2016-07-19 11:54:19 +1000989
Vijay Khemkacb10c7c2018-10-16 12:13:19 -0700990 nd->state = ncsi_dev_state_config_oem_gma;
991 break;
992 case ncsi_dev_state_config_oem_gma:
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +1000993 nd->state = ncsi_dev_state_config_clear_vids;
Vijay Khemkacb10c7c2018-10-16 12:13:19 -0700994 ret = -1;
995
996#if IS_ENABLED(CONFIG_NCSI_OEM_CMD_GET_MAC)
997 nca.type = NCSI_PKT_CMD_OEM;
998 nca.package = np->id;
999 nca.channel = nc->id;
1000 ndp->pending_req_num = 1;
1001 ret = ncsi_gma_handler(&nca, nc->version.mf_id);
1002#endif /* CONFIG_NCSI_OEM_CMD_GET_MAC */
1003
1004 if (ret < 0)
1005 schedule_work(&ndp->work);
1006
Gavin Shane6f44ed2016-07-19 11:54:19 +10001007 break;
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +10001008 case ncsi_dev_state_config_clear_vids:
1009 case ncsi_dev_state_config_svf:
1010 case ncsi_dev_state_config_ev:
Gavin Shane6f44ed2016-07-19 11:54:19 +10001011 case ncsi_dev_state_config_sma:
1012 case ncsi_dev_state_config_ebf:
Vijay Khemkacf0eba32019-09-12 12:04:50 -07001013 case ncsi_dev_state_config_dgmf:
Gavin Shane6f44ed2016-07-19 11:54:19 +10001014 case ncsi_dev_state_config_ecnt:
1015 case ncsi_dev_state_config_ec:
1016 case ncsi_dev_state_config_ae:
1017 case ncsi_dev_state_config_gls:
1018 ndp->pending_req_num = 1;
1019
1020 nca.package = np->id;
1021 nca.channel = nc->id;
1022
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +10001023 /* Clear any active filters on the channel before setting */
1024 if (nd->state == ncsi_dev_state_config_clear_vids) {
1025 ret = clear_one_vid(ndp, nc, &nca);
1026 if (ret) {
1027 nd->state = ncsi_dev_state_config_svf;
1028 schedule_work(&ndp->work);
1029 break;
1030 }
1031 /* Repeat */
1032 nd->state = ncsi_dev_state_config_clear_vids;
1033 /* Add known VLAN tags to the filter */
1034 } else if (nd->state == ncsi_dev_state_config_svf) {
1035 ret = set_one_vid(ndp, nc, &nca);
1036 if (ret) {
1037 nd->state = ncsi_dev_state_config_ev;
1038 schedule_work(&ndp->work);
1039 break;
1040 }
1041 /* Repeat */
1042 nd->state = ncsi_dev_state_config_svf;
1043 /* Enable/Disable the VLAN filter */
1044 } else if (nd->state == ncsi_dev_state_config_ev) {
1045 if (list_empty(&ndp->vlan_vids)) {
1046 nca.type = NCSI_PKT_CMD_DV;
1047 } else {
1048 nca.type = NCSI_PKT_CMD_EV;
1049 nca.bytes[3] = NCSI_CAP_VLAN_NO;
1050 }
1051 nd->state = ncsi_dev_state_config_sma;
1052 } else if (nd->state == ncsi_dev_state_config_sma) {
Gavin Shane6f44ed2016-07-19 11:54:19 +10001053 /* Use first entry in unicast filter table. Note that
1054 * the MAC filter table starts from entry 1 instead of
1055 * 0.
1056 */
Gavin Shane6f44ed2016-07-19 11:54:19 +10001057 nca.type = NCSI_PKT_CMD_SMA;
1058 for (index = 0; index < 6; index++)
1059 nca.bytes[index] = dev->dev_addr[index];
1060 nca.bytes[6] = 0x1;
1061 nca.bytes[7] = 0x1;
1062 nd->state = ncsi_dev_state_config_ebf;
1063 } else if (nd->state == ncsi_dev_state_config_ebf) {
1064 nca.type = NCSI_PKT_CMD_EBF;
1065 nca.dwords[0] = nc->caps[NCSI_CAP_BC].cap;
Vijay Khemkacf0eba32019-09-12 12:04:50 -07001066 /* if multicast global filtering is supported then
1067 * disable it so that all multicast packet will be
1068 * forwarded to management controller
1069 */
1070 if (nc->caps[NCSI_CAP_GENERIC].cap &
1071 NCSI_CAP_GENERIC_MC)
1072 nd->state = ncsi_dev_state_config_dgmf;
1073 else if (ncsi_channel_is_tx(ndp, nc))
1074 nd->state = ncsi_dev_state_config_ecnt;
1075 else
1076 nd->state = ncsi_dev_state_config_ec;
1077 } else if (nd->state == ncsi_dev_state_config_dgmf) {
1078 nca.type = NCSI_PKT_CMD_DGMF;
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +11001079 if (ncsi_channel_is_tx(ndp, nc))
1080 nd->state = ncsi_dev_state_config_ecnt;
1081 else
1082 nd->state = ncsi_dev_state_config_ec;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001083 } else if (nd->state == ncsi_dev_state_config_ecnt) {
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +11001084 if (np->preferred_channel &&
1085 nc != np->preferred_channel)
1086 netdev_info(ndp->ndev.dev,
1087 "NCSI: Tx failed over to channel %u\n",
1088 nc->id);
Gavin Shane6f44ed2016-07-19 11:54:19 +10001089 nca.type = NCSI_PKT_CMD_ECNT;
1090 nd->state = ncsi_dev_state_config_ec;
1091 } else if (nd->state == ncsi_dev_state_config_ec) {
1092 /* Enable AEN if it's supported */
1093 nca.type = NCSI_PKT_CMD_EC;
1094 nd->state = ncsi_dev_state_config_ae;
1095 if (!(nc->caps[NCSI_CAP_AEN].cap & NCSI_CAP_AEN_MASK))
1096 nd->state = ncsi_dev_state_config_gls;
1097 } else if (nd->state == ncsi_dev_state_config_ae) {
1098 nca.type = NCSI_PKT_CMD_AE;
1099 nca.bytes[0] = 0;
1100 nca.dwords[1] = nc->caps[NCSI_CAP_AEN].cap;
1101 nd->state = ncsi_dev_state_config_gls;
1102 } else if (nd->state == ncsi_dev_state_config_gls) {
1103 nca.type = NCSI_PKT_CMD_GLS;
1104 nd->state = ncsi_dev_state_config_done;
1105 }
1106
1107 ret = ncsi_xmit_cmd(&nca);
Samuel Mendoza-Jonas9ef86902017-11-08 16:30:44 +11001108 if (ret) {
1109 netdev_err(ndp->ndev.dev,
1110 "NCSI: Failed to transmit CMD %x\n",
1111 nca.type);
Gavin Shane6f44ed2016-07-19 11:54:19 +10001112 goto error;
Samuel Mendoza-Jonas9ef86902017-11-08 16:30:44 +11001113 }
Gavin Shane6f44ed2016-07-19 11:54:19 +10001114 break;
1115 case ncsi_dev_state_config_done:
Joel Stanley6e42a3f2018-06-19 15:08:33 +09301116 netdev_dbg(ndp->ndev.dev, "NCSI: channel %u config done\n",
1117 nc->id);
Gavin Shand8cedaa2016-10-04 11:25:47 +11001118 spin_lock_irqsave(&nc->lock, flags);
Samuel Mendoza-Jonas2878a2c2018-11-16 15:51:58 +11001119 nc->state = NCSI_CHANNEL_ACTIVE;
1120
1121 if (ndp->flags & NCSI_DEV_RESET) {
1122 /* A reset event happened during config, start it now */
1123 nc->reconfigure_needed = false;
1124 spin_unlock_irqrestore(&nc->lock, flags);
1125 ncsi_reset_dev(nd);
1126 break;
1127 }
1128
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +10001129 if (nc->reconfigure_needed) {
1130 /* This channel's configuration has been updated
1131 * part-way during the config state - start the
1132 * channel configuration over
1133 */
1134 nc->reconfigure_needed = false;
1135 nc->state = NCSI_CHANNEL_INACTIVE;
1136 spin_unlock_irqrestore(&nc->lock, flags);
1137
1138 spin_lock_irqsave(&ndp->lock, flags);
1139 list_add_tail_rcu(&nc->link, &ndp->channel_queue);
1140 spin_unlock_irqrestore(&ndp->lock, flags);
1141
Joel Stanley6e42a3f2018-06-19 15:08:33 +09301142 netdev_dbg(dev, "Dirty NCSI channel state reset\n");
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +10001143 ncsi_process_next_channel(ndp);
1144 break;
1145 }
1146
Gavin Shanbbc7c012016-10-20 11:45:51 +11001147 if (nc->modes[NCSI_MODE_LINK].data[2] & 0x1) {
1148 hot_nc = nc;
Gavin Shanbbc7c012016-10-20 11:45:51 +11001149 } else {
1150 hot_nc = NULL;
Joel Stanley87975a02018-06-19 15:08:31 +09301151 netdev_dbg(ndp->ndev.dev,
1152 "NCSI: channel %u link down after config\n",
1153 nc->id);
Gavin Shanbbc7c012016-10-20 11:45:51 +11001154 }
Gavin Shand8cedaa2016-10-04 11:25:47 +11001155 spin_unlock_irqrestore(&nc->lock, flags);
Gavin Shane6f44ed2016-07-19 11:54:19 +10001156
Gavin Shanbbc7c012016-10-20 11:45:51 +11001157 /* Update the hot channel */
1158 spin_lock_irqsave(&ndp->lock, flags);
1159 ndp->hot_channel = hot_nc;
1160 spin_unlock_irqrestore(&ndp->lock, flags);
1161
Gavin Shane6f44ed2016-07-19 11:54:19 +10001162 ncsi_start_channel_monitor(nc);
1163 ncsi_process_next_channel(ndp);
1164 break;
1165 default:
Samuel Mendoza-Jonas9ef86902017-11-08 16:30:44 +11001166 netdev_alert(dev, "Wrong NCSI state 0x%x in config\n",
1167 nd->state);
Gavin Shane6f44ed2016-07-19 11:54:19 +10001168 }
1169
1170 return;
1171
1172error:
1173 ncsi_report_link(ndp, true);
1174}
1175
1176static int ncsi_choose_active_channel(struct ncsi_dev_priv *ndp)
1177{
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +11001178 struct ncsi_channel *nc, *found, *hot_nc;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001179 struct ncsi_channel_mode *ncm;
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +11001180 unsigned long flags, cflags;
1181 struct ncsi_package *np;
1182 bool with_link;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001183
Gavin Shanbbc7c012016-10-20 11:45:51 +11001184 spin_lock_irqsave(&ndp->lock, flags);
1185 hot_nc = ndp->hot_channel;
1186 spin_unlock_irqrestore(&ndp->lock, flags);
1187
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +11001188 /* By default the search is done once an inactive channel with up
1189 * link is found, unless a preferred channel is set.
1190 * If multi_package or multi_channel are configured all channels in the
1191 * whitelist are added to the channel queue.
Gavin Shane6f44ed2016-07-19 11:54:19 +10001192 */
1193 found = NULL;
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +11001194 with_link = false;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001195 NCSI_FOR_EACH_PACKAGE(ndp, np) {
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +11001196 if (!(ndp->package_whitelist & (0x1 << np->id)))
Samuel Mendoza-Jonas955dc682018-03-05 11:39:05 +11001197 continue;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001198 NCSI_FOR_EACH_CHANNEL(np, nc) {
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +11001199 if (!(np->channel_whitelist & (0x1 << nc->id)))
1200 continue;
1201
1202 spin_lock_irqsave(&nc->lock, cflags);
Gavin Shand8cedaa2016-10-04 11:25:47 +11001203
Gavin Shane6f44ed2016-07-19 11:54:19 +10001204 if (!list_empty(&nc->link) ||
Gavin Shand8cedaa2016-10-04 11:25:47 +11001205 nc->state != NCSI_CHANNEL_INACTIVE) {
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +11001206 spin_unlock_irqrestore(&nc->lock, cflags);
Gavin Shane6f44ed2016-07-19 11:54:19 +10001207 continue;
Gavin Shand8cedaa2016-10-04 11:25:47 +11001208 }
Gavin Shane6f44ed2016-07-19 11:54:19 +10001209
1210 if (!found)
1211 found = nc;
1212
Gavin Shanbbc7c012016-10-20 11:45:51 +11001213 if (nc == hot_nc)
1214 found = nc;
1215
Gavin Shane6f44ed2016-07-19 11:54:19 +10001216 ncm = &nc->modes[NCSI_MODE_LINK];
1217 if (ncm->data[2] & 0x1) {
1218 found = nc;
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +11001219 with_link = true;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001220 }
Gavin Shand8cedaa2016-10-04 11:25:47 +11001221
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +11001222 /* If multi_channel is enabled configure all valid
1223 * channels whether or not they currently have link
1224 * so they will have AENs enabled.
1225 */
1226 if (with_link || np->multi_channel) {
1227 spin_lock_irqsave(&ndp->lock, flags);
1228 list_add_tail_rcu(&nc->link,
1229 &ndp->channel_queue);
1230 spin_unlock_irqrestore(&ndp->lock, flags);
1231
1232 netdev_dbg(ndp->ndev.dev,
1233 "NCSI: Channel %u added to queue (link %s)\n",
1234 nc->id,
1235 ncm->data[2] & 0x1 ? "up" : "down");
1236 }
1237
1238 spin_unlock_irqrestore(&nc->lock, cflags);
1239
1240 if (with_link && !np->multi_channel)
1241 break;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001242 }
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +11001243 if (with_link && !ndp->multi_package)
1244 break;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001245 }
1246
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +11001247 if (list_empty(&ndp->channel_queue) && found) {
1248 netdev_info(ndp->ndev.dev,
1249 "NCSI: No channel with link found, configuring channel %u\n",
1250 found->id);
1251 spin_lock_irqsave(&ndp->lock, flags);
1252 list_add_tail_rcu(&found->link, &ndp->channel_queue);
1253 spin_unlock_irqrestore(&ndp->lock, flags);
1254 } else if (!found) {
Samuel Mendoza-Jonas9ef86902017-11-08 16:30:44 +11001255 netdev_warn(ndp->ndev.dev,
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +11001256 "NCSI: No channel found to configure!\n");
Gavin Shane6f44ed2016-07-19 11:54:19 +10001257 ncsi_report_link(ndp, true);
1258 return -ENODEV;
1259 }
1260
Gavin Shane6f44ed2016-07-19 11:54:19 +10001261 return ncsi_process_next_channel(ndp);
1262}
1263
1264static bool ncsi_check_hwa(struct ncsi_dev_priv *ndp)
1265{
1266 struct ncsi_package *np;
1267 struct ncsi_channel *nc;
1268 unsigned int cap;
Gavin Shan100ef012017-10-19 13:43:07 +11001269 bool has_channel = false;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001270
1271 /* The hardware arbitration is disabled if any one channel
1272 * doesn't support explicitly.
1273 */
1274 NCSI_FOR_EACH_PACKAGE(ndp, np) {
1275 NCSI_FOR_EACH_CHANNEL(np, nc) {
Gavin Shan100ef012017-10-19 13:43:07 +11001276 has_channel = true;
1277
Gavin Shane6f44ed2016-07-19 11:54:19 +10001278 cap = nc->caps[NCSI_CAP_GENERIC].cap;
1279 if (!(cap & NCSI_CAP_GENERIC_HWA) ||
1280 (cap & NCSI_CAP_GENERIC_HWA_MASK) !=
1281 NCSI_CAP_GENERIC_HWA_SUPPORT) {
1282 ndp->flags &= ~NCSI_DEV_HWA;
1283 return false;
1284 }
1285 }
1286 }
1287
Gavin Shan100ef012017-10-19 13:43:07 +11001288 if (has_channel) {
1289 ndp->flags |= NCSI_DEV_HWA;
1290 return true;
1291 }
1292
1293 ndp->flags &= ~NCSI_DEV_HWA;
1294 return false;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001295}
1296
Gavin Shane6f44ed2016-07-19 11:54:19 +10001297static void ncsi_probe_channel(struct ncsi_dev_priv *ndp)
1298{
1299 struct ncsi_dev *nd = &ndp->ndev;
1300 struct ncsi_package *np;
1301 struct ncsi_channel *nc;
1302 struct ncsi_cmd_arg nca;
1303 unsigned char index;
1304 int ret;
1305
1306 nca.ndp = ndp;
Gavin Shana0509cb2016-10-04 11:25:51 +11001307 nca.req_flags = NCSI_REQ_FLAG_EVENT_DRIVEN;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001308 switch (nd->state) {
1309 case ncsi_dev_state_probe:
1310 nd->state = ncsi_dev_state_probe_deselect;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001311 fallthrough;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001312 case ncsi_dev_state_probe_deselect:
1313 ndp->pending_req_num = 8;
1314
1315 /* Deselect all possible packages */
1316 nca.type = NCSI_PKT_CMD_DP;
Gavin Shanbc7e0f52016-10-04 11:25:48 +11001317 nca.channel = NCSI_RESERVED_CHANNEL;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001318 for (index = 0; index < 8; index++) {
1319 nca.package = index;
1320 ret = ncsi_xmit_cmd(&nca);
1321 if (ret)
1322 goto error;
1323 }
1324
1325 nd->state = ncsi_dev_state_probe_package;
1326 break;
1327 case ncsi_dev_state_probe_package:
Gavin Shane6f44ed2016-07-19 11:54:19 +10001328 ndp->pending_req_num = 1;
Samuel Mendoza-Jonas8e13f702018-11-16 15:51:55 +11001329
Gavin Shane6f44ed2016-07-19 11:54:19 +10001330 nca.type = NCSI_PKT_CMD_SP;
1331 nca.bytes[0] = 1;
Samuel Mendoza-Jonas8e13f702018-11-16 15:51:55 +11001332 nca.package = ndp->package_probe_id;
Gavin Shanbc7e0f52016-10-04 11:25:48 +11001333 nca.channel = NCSI_RESERVED_CHANNEL;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001334 ret = ncsi_xmit_cmd(&nca);
1335 if (ret)
1336 goto error;
Samuel Mendoza-Jonas8e13f702018-11-16 15:51:55 +11001337 nd->state = ncsi_dev_state_probe_channel;
1338 break;
1339 case ncsi_dev_state_probe_channel:
1340 ndp->active_package = ncsi_find_package(ndp,
1341 ndp->package_probe_id);
1342 if (!ndp->active_package) {
1343 /* No response */
1344 nd->state = ncsi_dev_state_probe_dp;
1345 schedule_work(&ndp->work);
1346 break;
1347 }
Gavin Shane6f44ed2016-07-19 11:54:19 +10001348 nd->state = ncsi_dev_state_probe_cis;
Vijay Khemka5e0fcc12020-01-08 15:43:40 -08001349 if (IS_ENABLED(CONFIG_NCSI_OEM_CMD_GET_MAC) &&
1350 ndp->mlx_multi_host)
1351 nd->state = ncsi_dev_state_probe_mlx_gma;
1352
Samuel Mendoza-Jonas8e13f702018-11-16 15:51:55 +11001353 schedule_work(&ndp->work);
Gavin Shane6f44ed2016-07-19 11:54:19 +10001354 break;
Vijay Khemka5e0fcc12020-01-08 15:43:40 -08001355#if IS_ENABLED(CONFIG_NCSI_OEM_CMD_GET_MAC)
1356 case ncsi_dev_state_probe_mlx_gma:
1357 ndp->pending_req_num = 1;
1358
1359 nca.type = NCSI_PKT_CMD_OEM;
1360 nca.package = ndp->active_package->id;
1361 nca.channel = 0;
1362 ret = ncsi_oem_gma_handler_mlx(&nca);
1363 if (ret)
1364 goto error;
1365
1366 nd->state = ncsi_dev_state_probe_mlx_smaf;
1367 break;
1368 case ncsi_dev_state_probe_mlx_smaf:
1369 ndp->pending_req_num = 1;
1370
1371 nca.type = NCSI_PKT_CMD_OEM;
1372 nca.package = ndp->active_package->id;
1373 nca.channel = 0;
1374 ret = ncsi_oem_smaf_mlx(&nca);
1375 if (ret)
1376 goto error;
1377
1378 nd->state = ncsi_dev_state_probe_cis;
1379 break;
1380#endif /* CONFIG_NCSI_OEM_CMD_GET_MAC */
Gavin Shane6f44ed2016-07-19 11:54:19 +10001381 case ncsi_dev_state_probe_cis:
Gavin Shan55e02d02016-10-04 11:25:49 +11001382 ndp->pending_req_num = NCSI_RESERVED_CHANNEL;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001383
1384 /* Clear initial state */
1385 nca.type = NCSI_PKT_CMD_CIS;
1386 nca.package = ndp->active_package->id;
Gavin Shan55e02d02016-10-04 11:25:49 +11001387 for (index = 0; index < NCSI_RESERVED_CHANNEL; index++) {
Gavin Shane6f44ed2016-07-19 11:54:19 +10001388 nca.channel = index;
1389 ret = ncsi_xmit_cmd(&nca);
1390 if (ret)
1391 goto error;
1392 }
1393
1394 nd->state = ncsi_dev_state_probe_gvi;
1395 break;
1396 case ncsi_dev_state_probe_gvi:
1397 case ncsi_dev_state_probe_gc:
1398 case ncsi_dev_state_probe_gls:
1399 np = ndp->active_package;
1400 ndp->pending_req_num = np->channel_num;
1401
1402 /* Retrieve version, capability or link status */
1403 if (nd->state == ncsi_dev_state_probe_gvi)
1404 nca.type = NCSI_PKT_CMD_GVI;
1405 else if (nd->state == ncsi_dev_state_probe_gc)
1406 nca.type = NCSI_PKT_CMD_GC;
1407 else
1408 nca.type = NCSI_PKT_CMD_GLS;
1409
1410 nca.package = np->id;
1411 NCSI_FOR_EACH_CHANNEL(np, nc) {
1412 nca.channel = nc->id;
1413 ret = ncsi_xmit_cmd(&nca);
1414 if (ret)
1415 goto error;
1416 }
1417
1418 if (nd->state == ncsi_dev_state_probe_gvi)
1419 nd->state = ncsi_dev_state_probe_gc;
1420 else if (nd->state == ncsi_dev_state_probe_gc)
1421 nd->state = ncsi_dev_state_probe_gls;
1422 else
1423 nd->state = ncsi_dev_state_probe_dp;
1424 break;
1425 case ncsi_dev_state_probe_dp:
1426 ndp->pending_req_num = 1;
1427
Samuel Mendoza-Jonas8e13f702018-11-16 15:51:55 +11001428 /* Deselect the current package */
Gavin Shane6f44ed2016-07-19 11:54:19 +10001429 nca.type = NCSI_PKT_CMD_DP;
Samuel Mendoza-Jonas8e13f702018-11-16 15:51:55 +11001430 nca.package = ndp->package_probe_id;
Gavin Shanbc7e0f52016-10-04 11:25:48 +11001431 nca.channel = NCSI_RESERVED_CHANNEL;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001432 ret = ncsi_xmit_cmd(&nca);
1433 if (ret)
1434 goto error;
1435
Samuel Mendoza-Jonas8e13f702018-11-16 15:51:55 +11001436 /* Probe next package */
1437 ndp->package_probe_id++;
1438 if (ndp->package_probe_id >= 8) {
1439 /* Probe finished */
1440 ndp->flags |= NCSI_DEV_PROBED;
1441 break;
1442 }
1443 nd->state = ncsi_dev_state_probe_package;
1444 ndp->active_package = NULL;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001445 break;
1446 default:
1447 netdev_warn(nd->dev, "Wrong NCSI state 0x%0x in enumeration\n",
1448 nd->state);
1449 }
1450
Samuel Mendoza-Jonas8e13f702018-11-16 15:51:55 +11001451 if (ndp->flags & NCSI_DEV_PROBED) {
1452 /* Check if all packages have HWA support */
1453 ncsi_check_hwa(ndp);
1454 ncsi_choose_active_channel(ndp);
1455 }
1456
Gavin Shane6f44ed2016-07-19 11:54:19 +10001457 return;
1458error:
Samuel Mendoza-Jonas9ef86902017-11-08 16:30:44 +11001459 netdev_err(ndp->ndev.dev,
1460 "NCSI: Failed to transmit cmd 0x%x during probe\n",
1461 nca.type);
Gavin Shane6f44ed2016-07-19 11:54:19 +10001462 ncsi_report_link(ndp, true);
1463}
1464
1465static void ncsi_dev_work(struct work_struct *work)
1466{
1467 struct ncsi_dev_priv *ndp = container_of(work,
1468 struct ncsi_dev_priv, work);
1469 struct ncsi_dev *nd = &ndp->ndev;
1470
1471 switch (nd->state & ncsi_dev_state_major) {
1472 case ncsi_dev_state_probe:
1473 ncsi_probe_channel(ndp);
1474 break;
1475 case ncsi_dev_state_suspend:
1476 ncsi_suspend_channel(ndp);
1477 break;
1478 case ncsi_dev_state_config:
1479 ncsi_configure_channel(ndp);
1480 break;
1481 default:
1482 netdev_warn(nd->dev, "Wrong NCSI state 0x%x in workqueue\n",
1483 nd->state);
1484 }
1485}
1486
1487int ncsi_process_next_channel(struct ncsi_dev_priv *ndp)
1488{
1489 struct ncsi_channel *nc;
1490 int old_state;
1491 unsigned long flags;
1492
1493 spin_lock_irqsave(&ndp->lock, flags);
1494 nc = list_first_or_null_rcu(&ndp->channel_queue,
1495 struct ncsi_channel, link);
Arnd Bergmanna1b43ed2016-07-21 21:28:34 +02001496 if (!nc) {
1497 spin_unlock_irqrestore(&ndp->lock, flags);
1498 goto out;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001499 }
Arnd Bergmanna1b43ed2016-07-21 21:28:34 +02001500
Arnd Bergmanna1b43ed2016-07-21 21:28:34 +02001501 list_del_init(&nc->link);
Gavin Shane6f44ed2016-07-19 11:54:19 +10001502 spin_unlock_irqrestore(&ndp->lock, flags);
1503
Gavin Shand8cedaa2016-10-04 11:25:47 +11001504 spin_lock_irqsave(&nc->lock, flags);
1505 old_state = nc->state;
1506 nc->state = NCSI_CHANNEL_INVISIBLE;
1507 spin_unlock_irqrestore(&nc->lock, flags);
1508
Gavin Shane6f44ed2016-07-19 11:54:19 +10001509 ndp->active_channel = nc;
Arnd Bergmanna1b43ed2016-07-21 21:28:34 +02001510 ndp->active_package = nc->package;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001511
1512 switch (old_state) {
1513 case NCSI_CHANNEL_INACTIVE:
1514 ndp->ndev.state = ncsi_dev_state_config;
Joel Stanley87975a02018-06-19 15:08:31 +09301515 netdev_dbg(ndp->ndev.dev, "NCSI: configuring channel %u\n",
1516 nc->id);
Gavin Shane6f44ed2016-07-19 11:54:19 +10001517 ncsi_configure_channel(ndp);
1518 break;
1519 case NCSI_CHANNEL_ACTIVE:
1520 ndp->ndev.state = ncsi_dev_state_suspend;
Joel Stanley87975a02018-06-19 15:08:31 +09301521 netdev_dbg(ndp->ndev.dev, "NCSI: suspending channel %u\n",
1522 nc->id);
Gavin Shane6f44ed2016-07-19 11:54:19 +10001523 ncsi_suspend_channel(ndp);
1524 break;
1525 default:
1526 netdev_err(ndp->ndev.dev, "Invalid state 0x%x on %d:%d\n",
Gavin Shand8cedaa2016-10-04 11:25:47 +11001527 old_state, nc->package->id, nc->id);
Gavin Shane6f44ed2016-07-19 11:54:19 +10001528 ncsi_report_link(ndp, false);
1529 return -EINVAL;
1530 }
1531
1532 return 0;
Arnd Bergmanna1b43ed2016-07-21 21:28:34 +02001533
1534out:
1535 ndp->active_channel = NULL;
1536 ndp->active_package = NULL;
1537 if (ndp->flags & NCSI_DEV_RESHUFFLE) {
1538 ndp->flags &= ~NCSI_DEV_RESHUFFLE;
1539 return ncsi_choose_active_channel(ndp);
1540 }
1541
1542 ncsi_report_link(ndp, false);
1543 return -ENODEV;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001544}
1545
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +10001546static int ncsi_kick_channels(struct ncsi_dev_priv *ndp)
1547{
1548 struct ncsi_dev *nd = &ndp->ndev;
1549 struct ncsi_channel *nc;
1550 struct ncsi_package *np;
1551 unsigned long flags;
1552 unsigned int n = 0;
1553
1554 NCSI_FOR_EACH_PACKAGE(ndp, np) {
1555 NCSI_FOR_EACH_CHANNEL(np, nc) {
1556 spin_lock_irqsave(&nc->lock, flags);
1557
1558 /* Channels may be busy, mark dirty instead of
1559 * kicking if;
1560 * a) not ACTIVE (configured)
1561 * b) in the channel_queue (to be configured)
1562 * c) it's ndev is in the config state
1563 */
1564 if (nc->state != NCSI_CHANNEL_ACTIVE) {
1565 if ((ndp->ndev.state & 0xff00) ==
1566 ncsi_dev_state_config ||
1567 !list_empty(&nc->link)) {
Joel Stanley6e42a3f2018-06-19 15:08:33 +09301568 netdev_dbg(nd->dev,
1569 "NCSI: channel %p marked dirty\n",
1570 nc);
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +10001571 nc->reconfigure_needed = true;
1572 }
1573 spin_unlock_irqrestore(&nc->lock, flags);
1574 continue;
1575 }
1576
1577 spin_unlock_irqrestore(&nc->lock, flags);
1578
1579 ncsi_stop_channel_monitor(nc);
1580 spin_lock_irqsave(&nc->lock, flags);
1581 nc->state = NCSI_CHANNEL_INACTIVE;
1582 spin_unlock_irqrestore(&nc->lock, flags);
1583
1584 spin_lock_irqsave(&ndp->lock, flags);
1585 list_add_tail_rcu(&nc->link, &ndp->channel_queue);
1586 spin_unlock_irqrestore(&ndp->lock, flags);
1587
Joel Stanley6e42a3f2018-06-19 15:08:33 +09301588 netdev_dbg(nd->dev, "NCSI: kicked channel %p\n", nc);
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +10001589 n++;
1590 }
1591 }
1592
1593 return n;
1594}
1595
1596int ncsi_vlan_rx_add_vid(struct net_device *dev, __be16 proto, u16 vid)
1597{
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +10001598 struct ncsi_dev_priv *ndp;
1599 unsigned int n_vids = 0;
1600 struct vlan_vid *vlan;
1601 struct ncsi_dev *nd;
1602 bool found = false;
1603
1604 if (vid == 0)
1605 return 0;
1606
1607 nd = ncsi_find_dev(dev);
1608 if (!nd) {
Samuel Mendoza-Jonas9ef86902017-11-08 16:30:44 +11001609 netdev_warn(dev, "NCSI: No net_device?\n");
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +10001610 return 0;
1611 }
1612
1613 ndp = TO_NCSI_DEV_PRIV(nd);
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +10001614
1615 /* Add the VLAN id to our internal list */
1616 list_for_each_entry_rcu(vlan, &ndp->vlan_vids, list) {
1617 n_vids++;
1618 if (vlan->vid == vid) {
Joel Stanley6e42a3f2018-06-19 15:08:33 +09301619 netdev_dbg(dev, "NCSI: vid %u already registered\n",
1620 vid);
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +10001621 return 0;
1622 }
1623 }
Samuel Mendoza-Jonas6e9c0072017-10-11 16:54:27 +11001624 if (n_vids >= NCSI_MAX_VLAN_VIDS) {
1625 netdev_warn(dev,
1626 "tried to add vlan id %u but NCSI max already registered (%u)\n",
1627 vid, NCSI_MAX_VLAN_VIDS);
1628 return -ENOSPC;
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +10001629 }
1630
1631 vlan = kzalloc(sizeof(*vlan), GFP_KERNEL);
1632 if (!vlan)
1633 return -ENOMEM;
1634
1635 vlan->proto = proto;
1636 vlan->vid = vid;
1637 list_add_rcu(&vlan->list, &ndp->vlan_vids);
1638
Joel Stanley6e42a3f2018-06-19 15:08:33 +09301639 netdev_dbg(dev, "NCSI: Added new vid %u\n", vid);
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +10001640
1641 found = ncsi_kick_channels(ndp) != 0;
1642
1643 return found ? ncsi_process_next_channel(ndp) : 0;
1644}
Arnd Bergmannfd0c88b2017-09-05 10:05:47 +02001645EXPORT_SYMBOL_GPL(ncsi_vlan_rx_add_vid);
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +10001646
1647int ncsi_vlan_rx_kill_vid(struct net_device *dev, __be16 proto, u16 vid)
1648{
1649 struct vlan_vid *vlan, *tmp;
1650 struct ncsi_dev_priv *ndp;
1651 struct ncsi_dev *nd;
1652 bool found = false;
1653
1654 if (vid == 0)
1655 return 0;
1656
1657 nd = ncsi_find_dev(dev);
1658 if (!nd) {
Samuel Mendoza-Jonas9ef86902017-11-08 16:30:44 +11001659 netdev_warn(dev, "NCSI: no net_device?\n");
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +10001660 return 0;
1661 }
1662
1663 ndp = TO_NCSI_DEV_PRIV(nd);
1664
1665 /* Remove the VLAN id from our internal list */
1666 list_for_each_entry_safe(vlan, tmp, &ndp->vlan_vids, list)
1667 if (vlan->vid == vid) {
Joel Stanley6e42a3f2018-06-19 15:08:33 +09301668 netdev_dbg(dev, "NCSI: vid %u found, removing\n", vid);
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +10001669 list_del_rcu(&vlan->list);
1670 found = true;
1671 kfree(vlan);
1672 }
1673
1674 if (!found) {
Samuel Mendoza-Jonas9ef86902017-11-08 16:30:44 +11001675 netdev_err(dev, "NCSI: vid %u wasn't registered!\n", vid);
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +10001676 return -EINVAL;
1677 }
1678
1679 found = ncsi_kick_channels(ndp) != 0;
1680
1681 return found ? ncsi_process_next_channel(ndp) : 0;
1682}
Arnd Bergmannfd0c88b2017-09-05 10:05:47 +02001683EXPORT_SYMBOL_GPL(ncsi_vlan_rx_kill_vid);
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +10001684
Gavin Shan2d283bd2016-07-19 11:54:16 +10001685struct ncsi_dev *ncsi_register_dev(struct net_device *dev,
1686 void (*handler)(struct ncsi_dev *ndev))
1687{
1688 struct ncsi_dev_priv *ndp;
1689 struct ncsi_dev *nd;
Vijay Khemka5e0fcc12020-01-08 15:43:40 -08001690 struct platform_device *pdev;
1691 struct device_node *np;
Gavin Shan2d283bd2016-07-19 11:54:16 +10001692 unsigned long flags;
1693 int i;
1694
1695 /* Check if the device has been registered or not */
1696 nd = ncsi_find_dev(dev);
1697 if (nd)
1698 return nd;
1699
1700 /* Create NCSI device */
1701 ndp = kzalloc(sizeof(*ndp), GFP_ATOMIC);
1702 if (!ndp)
1703 return NULL;
1704
1705 nd = &ndp->ndev;
1706 nd->state = ncsi_dev_state_registered;
1707 nd->dev = dev;
1708 nd->handler = handler;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001709 ndp->pending_req_num = 0;
1710 INIT_LIST_HEAD(&ndp->channel_queue);
Samuel Mendoza-Jonas21acf632017-08-28 16:18:42 +10001711 INIT_LIST_HEAD(&ndp->vlan_vids);
Gavin Shane6f44ed2016-07-19 11:54:19 +10001712 INIT_WORK(&ndp->work, ncsi_dev_work);
Samuel Mendoza-Jonas8d951a72018-11-16 15:51:59 +11001713 ndp->package_whitelist = UINT_MAX;
Gavin Shan2d283bd2016-07-19 11:54:16 +10001714
1715 /* Initialize private NCSI device */
1716 spin_lock_init(&ndp->lock);
1717 INIT_LIST_HEAD(&ndp->packages);
Gavin Shana15af542016-10-04 11:25:50 +11001718 ndp->request_id = NCSI_REQ_START_IDX;
Gavin Shan2d283bd2016-07-19 11:54:16 +10001719 for (i = 0; i < ARRAY_SIZE(ndp->requests); i++) {
1720 ndp->requests[i].id = i;
1721 ndp->requests[i].ndp = ndp;
Kees Cooke99e88a2017-10-16 14:43:17 -07001722 timer_setup(&ndp->requests[i].timer, ncsi_request_timeout, 0);
Gavin Shan2d283bd2016-07-19 11:54:16 +10001723 }
1724
1725 spin_lock_irqsave(&ncsi_dev_lock, flags);
1726 list_add_tail_rcu(&ndp->node, &ncsi_dev_list);
1727 spin_unlock_irqrestore(&ncsi_dev_lock, flags);
1728
Gavin Shane6f44ed2016-07-19 11:54:19 +10001729 /* Register NCSI packet Rx handler */
1730 ndp->ptype.type = cpu_to_be16(ETH_P_NCSI);
1731 ndp->ptype.func = ncsi_rcv_rsp;
1732 ndp->ptype.dev = dev;
1733 dev_add_pack(&ndp->ptype);
1734
Vijay Khemka5e0fcc12020-01-08 15:43:40 -08001735 pdev = to_platform_device(dev->dev.parent);
1736 if (pdev) {
1737 np = pdev->dev.of_node;
1738 if (np && of_get_property(np, "mlx,multi-host", NULL))
1739 ndp->mlx_multi_host = true;
1740 }
1741
Gavin Shan2d283bd2016-07-19 11:54:16 +10001742 return nd;
1743}
1744EXPORT_SYMBOL_GPL(ncsi_register_dev);
1745
Gavin Shane6f44ed2016-07-19 11:54:19 +10001746int ncsi_start_dev(struct ncsi_dev *nd)
1747{
1748 struct ncsi_dev_priv *ndp = TO_NCSI_DEV_PRIV(nd);
Gavin Shane6f44ed2016-07-19 11:54:19 +10001749
1750 if (nd->state != ncsi_dev_state_registered &&
1751 nd->state != ncsi_dev_state_functional)
1752 return -ENOTTY;
1753
1754 if (!(ndp->flags & NCSI_DEV_PROBED)) {
Samuel Mendoza-Jonas8e13f702018-11-16 15:51:55 +11001755 ndp->package_probe_id = 0;
Gavin Shane6f44ed2016-07-19 11:54:19 +10001756 nd->state = ncsi_dev_state_probe;
1757 schedule_work(&ndp->work);
1758 return 0;
1759 }
1760
Samuel Mendoza-Jonas2878a2c2018-11-16 15:51:58 +11001761 return ncsi_reset_dev(nd);
Gavin Shanc0cd1ba2016-10-04 11:25:53 +11001762}
1763EXPORT_SYMBOL_GPL(ncsi_start_dev);
1764
1765void ncsi_stop_dev(struct ncsi_dev *nd)
1766{
1767 struct ncsi_dev_priv *ndp = TO_NCSI_DEV_PRIV(nd);
1768 struct ncsi_package *np;
1769 struct ncsi_channel *nc;
1770 bool chained;
1771 int old_state;
1772 unsigned long flags;
1773
Samuel Mendoza-Jonas2878a2c2018-11-16 15:51:58 +11001774 /* Stop the channel monitor on any active channels. Don't reset the
1775 * channel state so we know which were active when ncsi_start_dev()
1776 * is next called.
1777 */
Gavin Shane6f44ed2016-07-19 11:54:19 +10001778 NCSI_FOR_EACH_PACKAGE(ndp, np) {
1779 NCSI_FOR_EACH_CHANNEL(np, nc) {
Gavin Shanc0cd1ba2016-10-04 11:25:53 +11001780 ncsi_stop_channel_monitor(nc);
1781
Gavin Shand8cedaa2016-10-04 11:25:47 +11001782 spin_lock_irqsave(&nc->lock, flags);
1783 chained = !list_empty(&nc->link);
1784 old_state = nc->state;
Gavin Shand8cedaa2016-10-04 11:25:47 +11001785 spin_unlock_irqrestore(&nc->lock, flags);
1786
1787 WARN_ON_ONCE(chained ||
Gavin Shane6f44ed2016-07-19 11:54:19 +10001788 old_state == NCSI_CHANNEL_INVISIBLE);
1789 }
1790 }
1791
Joel Stanley6e42a3f2018-06-19 15:08:33 +09301792 netdev_dbg(ndp->ndev.dev, "NCSI: Stopping device\n");
Gavin Shanc0cd1ba2016-10-04 11:25:53 +11001793 ncsi_report_link(ndp, true);
Gavin Shane6f44ed2016-07-19 11:54:19 +10001794}
Gavin Shanc0cd1ba2016-10-04 11:25:53 +11001795EXPORT_SYMBOL_GPL(ncsi_stop_dev);
Gavin Shane6f44ed2016-07-19 11:54:19 +10001796
Samuel Mendoza-Jonas2878a2c2018-11-16 15:51:58 +11001797int ncsi_reset_dev(struct ncsi_dev *nd)
1798{
1799 struct ncsi_dev_priv *ndp = TO_NCSI_DEV_PRIV(nd);
1800 struct ncsi_channel *nc, *active, *tmp;
1801 struct ncsi_package *np;
1802 unsigned long flags;
1803
1804 spin_lock_irqsave(&ndp->lock, flags);
1805
1806 if (!(ndp->flags & NCSI_DEV_RESET)) {
1807 /* Haven't been called yet, check states */
1808 switch (nd->state & ncsi_dev_state_major) {
1809 case ncsi_dev_state_registered:
1810 case ncsi_dev_state_probe:
1811 /* Not even probed yet - do nothing */
1812 spin_unlock_irqrestore(&ndp->lock, flags);
1813 return 0;
1814 case ncsi_dev_state_suspend:
1815 case ncsi_dev_state_config:
1816 /* Wait for the channel to finish its suspend/config
1817 * operation; once it finishes it will check for
1818 * NCSI_DEV_RESET and reset the state.
1819 */
1820 ndp->flags |= NCSI_DEV_RESET;
1821 spin_unlock_irqrestore(&ndp->lock, flags);
1822 return 0;
1823 }
1824 } else {
1825 switch (nd->state) {
1826 case ncsi_dev_state_suspend_done:
1827 case ncsi_dev_state_config_done:
1828 case ncsi_dev_state_functional:
1829 /* Ok */
1830 break;
1831 default:
1832 /* Current reset operation happening */
1833 spin_unlock_irqrestore(&ndp->lock, flags);
1834 return 0;
1835 }
1836 }
1837
1838 if (!list_empty(&ndp->channel_queue)) {
1839 /* Clear any channel queue we may have interrupted */
1840 list_for_each_entry_safe(nc, tmp, &ndp->channel_queue, link)
1841 list_del_init(&nc->link);
1842 }
1843 spin_unlock_irqrestore(&ndp->lock, flags);
1844
1845 active = NULL;
1846 NCSI_FOR_EACH_PACKAGE(ndp, np) {
1847 NCSI_FOR_EACH_CHANNEL(np, nc) {
1848 spin_lock_irqsave(&nc->lock, flags);
1849
1850 if (nc->state == NCSI_CHANNEL_ACTIVE) {
1851 active = nc;
1852 nc->state = NCSI_CHANNEL_INVISIBLE;
1853 spin_unlock_irqrestore(&nc->lock, flags);
1854 ncsi_stop_channel_monitor(nc);
1855 break;
1856 }
1857
1858 spin_unlock_irqrestore(&nc->lock, flags);
1859 }
1860 if (active)
1861 break;
1862 }
1863
1864 if (!active) {
1865 /* Done */
1866 spin_lock_irqsave(&ndp->lock, flags);
1867 ndp->flags &= ~NCSI_DEV_RESET;
1868 spin_unlock_irqrestore(&ndp->lock, flags);
1869 return ncsi_choose_active_channel(ndp);
1870 }
1871
1872 spin_lock_irqsave(&ndp->lock, flags);
1873 ndp->flags |= NCSI_DEV_RESET;
1874 ndp->active_channel = active;
1875 ndp->active_package = active->package;
1876 spin_unlock_irqrestore(&ndp->lock, flags);
1877
1878 nd->state = ncsi_dev_state_suspend;
1879 schedule_work(&ndp->work);
1880 return 0;
1881}
1882
Gavin Shan2d283bd2016-07-19 11:54:16 +10001883void ncsi_unregister_dev(struct ncsi_dev *nd)
1884{
1885 struct ncsi_dev_priv *ndp = TO_NCSI_DEV_PRIV(nd);
1886 struct ncsi_package *np, *tmp;
1887 unsigned long flags;
1888
Gavin Shane6f44ed2016-07-19 11:54:19 +10001889 dev_remove_pack(&ndp->ptype);
1890
Gavin Shan2d283bd2016-07-19 11:54:16 +10001891 list_for_each_entry_safe(np, tmp, &ndp->packages, node)
1892 ncsi_remove_package(np);
1893
1894 spin_lock_irqsave(&ncsi_dev_lock, flags);
1895 list_del_rcu(&ndp->node);
Gavin Shan2d283bd2016-07-19 11:54:16 +10001896 spin_unlock_irqrestore(&ncsi_dev_lock, flags);
1897
Gavin Shan2d283bd2016-07-19 11:54:16 +10001898 kfree(ndp);
1899}
1900EXPORT_SYMBOL_GPL(ncsi_unregister_dev);