Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright Gavin Shan, IBM Corporation 2016. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License as published by |
| 6 | * the Free Software Foundation; either version 2 of the License, or |
| 7 | * (at your option) any later version. |
| 8 | */ |
| 9 | |
| 10 | #include <linux/module.h> |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/netdevice.h> |
| 14 | #include <linux/skbuff.h> |
| 15 | #include <linux/netlink.h> |
| 16 | |
| 17 | #include <net/ncsi.h> |
| 18 | #include <net/net_namespace.h> |
| 19 | #include <net/sock.h> |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 20 | #include <net/addrconf.h> |
| 21 | #include <net/ipv6.h> |
| 22 | #include <net/if_inet6.h> |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 23 | |
| 24 | #include "internal.h" |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 25 | #include "ncsi-pkt.h" |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 26 | |
| 27 | LIST_HEAD(ncsi_dev_list); |
| 28 | DEFINE_SPINLOCK(ncsi_dev_lock); |
| 29 | |
| 30 | static inline int ncsi_filter_size(int table) |
| 31 | { |
| 32 | int sizes[] = { 2, 6, 6, 6 }; |
| 33 | |
| 34 | BUILD_BUG_ON(ARRAY_SIZE(sizes) != NCSI_FILTER_MAX); |
| 35 | if (table < NCSI_FILTER_BASE || table >= NCSI_FILTER_MAX) |
| 36 | return -EINVAL; |
| 37 | |
| 38 | return sizes[table]; |
| 39 | } |
| 40 | |
Samuel Mendoza-Jonas | 21acf63 | 2017-08-28 16:18:42 +1000 | [diff] [blame] | 41 | u32 *ncsi_get_filter(struct ncsi_channel *nc, int table, int index) |
| 42 | { |
| 43 | struct ncsi_channel_filter *ncf; |
| 44 | int size; |
| 45 | |
| 46 | ncf = nc->filters[table]; |
| 47 | if (!ncf) |
| 48 | return NULL; |
| 49 | |
| 50 | size = ncsi_filter_size(table); |
| 51 | if (size < 0) |
| 52 | return NULL; |
| 53 | |
| 54 | return ncf->data + size * index; |
| 55 | } |
| 56 | |
| 57 | /* Find the first active filter in a filter table that matches the given |
| 58 | * data parameter. If data is NULL, this returns the first active filter. |
| 59 | */ |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 60 | int ncsi_find_filter(struct ncsi_channel *nc, int table, void *data) |
| 61 | { |
| 62 | struct ncsi_channel_filter *ncf; |
| 63 | void *bitmap; |
| 64 | int index, size; |
| 65 | unsigned long flags; |
| 66 | |
| 67 | ncf = nc->filters[table]; |
| 68 | if (!ncf) |
| 69 | return -ENXIO; |
| 70 | |
| 71 | size = ncsi_filter_size(table); |
| 72 | if (size < 0) |
| 73 | return size; |
| 74 | |
| 75 | spin_lock_irqsave(&nc->lock, flags); |
| 76 | bitmap = (void *)&ncf->bitmap; |
| 77 | index = -1; |
| 78 | while ((index = find_next_bit(bitmap, ncf->total, index + 1)) |
| 79 | < ncf->total) { |
Samuel Mendoza-Jonas | 21acf63 | 2017-08-28 16:18:42 +1000 | [diff] [blame] | 80 | if (!data || !memcmp(ncf->data + size * index, data, size)) { |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 81 | spin_unlock_irqrestore(&nc->lock, flags); |
| 82 | return index; |
| 83 | } |
| 84 | } |
| 85 | spin_unlock_irqrestore(&nc->lock, flags); |
| 86 | |
| 87 | return -ENOENT; |
| 88 | } |
| 89 | |
| 90 | int ncsi_add_filter(struct ncsi_channel *nc, int table, void *data) |
| 91 | { |
| 92 | struct ncsi_channel_filter *ncf; |
| 93 | int index, size; |
| 94 | void *bitmap; |
| 95 | unsigned long flags; |
| 96 | |
| 97 | size = ncsi_filter_size(table); |
| 98 | if (size < 0) |
| 99 | return size; |
| 100 | |
| 101 | index = ncsi_find_filter(nc, table, data); |
| 102 | if (index >= 0) |
| 103 | return index; |
| 104 | |
| 105 | ncf = nc->filters[table]; |
| 106 | if (!ncf) |
| 107 | return -ENODEV; |
| 108 | |
| 109 | spin_lock_irqsave(&nc->lock, flags); |
| 110 | bitmap = (void *)&ncf->bitmap; |
| 111 | do { |
| 112 | index = find_next_zero_bit(bitmap, ncf->total, 0); |
| 113 | if (index >= ncf->total) { |
| 114 | spin_unlock_irqrestore(&nc->lock, flags); |
| 115 | return -ENOSPC; |
| 116 | } |
| 117 | } while (test_and_set_bit(index, bitmap)); |
| 118 | |
| 119 | memcpy(ncf->data + size * index, data, size); |
| 120 | spin_unlock_irqrestore(&nc->lock, flags); |
| 121 | |
| 122 | return index; |
| 123 | } |
| 124 | |
| 125 | int ncsi_remove_filter(struct ncsi_channel *nc, int table, int index) |
| 126 | { |
| 127 | struct ncsi_channel_filter *ncf; |
| 128 | int size; |
| 129 | void *bitmap; |
| 130 | unsigned long flags; |
| 131 | |
| 132 | size = ncsi_filter_size(table); |
| 133 | if (size < 0) |
| 134 | return size; |
| 135 | |
| 136 | ncf = nc->filters[table]; |
| 137 | if (!ncf || index >= ncf->total) |
| 138 | return -ENODEV; |
| 139 | |
| 140 | spin_lock_irqsave(&nc->lock, flags); |
| 141 | bitmap = (void *)&ncf->bitmap; |
| 142 | if (test_and_clear_bit(index, bitmap)) |
| 143 | memset(ncf->data + size * index, 0, size); |
| 144 | spin_unlock_irqrestore(&nc->lock, flags); |
| 145 | |
| 146 | return 0; |
| 147 | } |
| 148 | |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 149 | static void ncsi_report_link(struct ncsi_dev_priv *ndp, bool force_down) |
| 150 | { |
| 151 | struct ncsi_dev *nd = &ndp->ndev; |
| 152 | struct ncsi_package *np; |
| 153 | struct ncsi_channel *nc; |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 154 | unsigned long flags; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 155 | |
| 156 | nd->state = ncsi_dev_state_functional; |
| 157 | if (force_down) { |
| 158 | nd->link_up = 0; |
| 159 | goto report; |
| 160 | } |
| 161 | |
| 162 | nd->link_up = 0; |
| 163 | NCSI_FOR_EACH_PACKAGE(ndp, np) { |
| 164 | NCSI_FOR_EACH_CHANNEL(np, nc) { |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 165 | spin_lock_irqsave(&nc->lock, flags); |
| 166 | |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 167 | if (!list_empty(&nc->link) || |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 168 | nc->state != NCSI_CHANNEL_ACTIVE) { |
| 169 | spin_unlock_irqrestore(&nc->lock, flags); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 170 | continue; |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 171 | } |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 172 | |
| 173 | if (nc->modes[NCSI_MODE_LINK].data[2] & 0x1) { |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 174 | spin_unlock_irqrestore(&nc->lock, flags); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 175 | nd->link_up = 1; |
| 176 | goto report; |
| 177 | } |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 178 | |
| 179 | spin_unlock_irqrestore(&nc->lock, flags); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 180 | } |
| 181 | } |
| 182 | |
| 183 | report: |
| 184 | nd->handler(nd); |
| 185 | } |
| 186 | |
| 187 | static void ncsi_channel_monitor(unsigned long data) |
| 188 | { |
| 189 | struct ncsi_channel *nc = (struct ncsi_channel *)data; |
| 190 | struct ncsi_package *np = nc->package; |
| 191 | struct ncsi_dev_priv *ndp = np->ndp; |
| 192 | struct ncsi_cmd_arg nca; |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 193 | bool enabled, chained; |
Gavin Shan | 83afdc6 | 2016-10-04 11:25:52 +1100 | [diff] [blame] | 194 | unsigned int monitor_state; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 195 | unsigned long flags; |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 196 | int state, ret; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 197 | |
| 198 | spin_lock_irqsave(&nc->lock, flags); |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 199 | state = nc->state; |
| 200 | chained = !list_empty(&nc->link); |
Gavin Shan | 83afdc6 | 2016-10-04 11:25:52 +1100 | [diff] [blame] | 201 | enabled = nc->monitor.enabled; |
| 202 | monitor_state = nc->monitor.state; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 203 | spin_unlock_irqrestore(&nc->lock, flags); |
| 204 | |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 205 | if (!enabled || chained) |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 206 | return; |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 207 | if (state != NCSI_CHANNEL_INACTIVE && |
| 208 | state != NCSI_CHANNEL_ACTIVE) |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 209 | return; |
| 210 | |
Gavin Shan | 83afdc6 | 2016-10-04 11:25:52 +1100 | [diff] [blame] | 211 | switch (monitor_state) { |
| 212 | case NCSI_CHANNEL_MONITOR_START: |
| 213 | case NCSI_CHANNEL_MONITOR_RETRY: |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 214 | nca.ndp = ndp; |
| 215 | nca.package = np->id; |
| 216 | nca.channel = nc->id; |
| 217 | nca.type = NCSI_PKT_CMD_GLS; |
Gavin Shan | a0509cb | 2016-10-04 11:25:51 +1100 | [diff] [blame] | 218 | nca.req_flags = 0; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 219 | ret = ncsi_xmit_cmd(&nca); |
| 220 | if (ret) { |
| 221 | netdev_err(ndp->ndev.dev, "Error %d sending GLS\n", |
| 222 | ret); |
| 223 | return; |
| 224 | } |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 225 | |
Gavin Shan | 83afdc6 | 2016-10-04 11:25:52 +1100 | [diff] [blame] | 226 | break; |
| 227 | case NCSI_CHANNEL_MONITOR_WAIT ... NCSI_CHANNEL_MONITOR_WAIT_MAX: |
| 228 | break; |
| 229 | default: |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 230 | if (!(ndp->flags & NCSI_DEV_HWA) && |
Gavin Shan | 83afdc6 | 2016-10-04 11:25:52 +1100 | [diff] [blame] | 231 | state == NCSI_CHANNEL_ACTIVE) { |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 232 | ncsi_report_link(ndp, true); |
Gavin Shan | 83afdc6 | 2016-10-04 11:25:52 +1100 | [diff] [blame] | 233 | ndp->flags |= NCSI_DEV_RESHUFFLE; |
| 234 | } |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 235 | |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 236 | spin_lock_irqsave(&nc->lock, flags); |
| 237 | nc->state = NCSI_CHANNEL_INVISIBLE; |
| 238 | spin_unlock_irqrestore(&nc->lock, flags); |
| 239 | |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 240 | spin_lock_irqsave(&ndp->lock, flags); |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 241 | nc->state = NCSI_CHANNEL_INACTIVE; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 242 | list_add_tail_rcu(&nc->link, &ndp->channel_queue); |
| 243 | spin_unlock_irqrestore(&ndp->lock, flags); |
| 244 | ncsi_process_next_channel(ndp); |
| 245 | return; |
| 246 | } |
| 247 | |
| 248 | spin_lock_irqsave(&nc->lock, flags); |
Gavin Shan | 83afdc6 | 2016-10-04 11:25:52 +1100 | [diff] [blame] | 249 | nc->monitor.state++; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 250 | spin_unlock_irqrestore(&nc->lock, flags); |
Gavin Shan | 83afdc6 | 2016-10-04 11:25:52 +1100 | [diff] [blame] | 251 | mod_timer(&nc->monitor.timer, jiffies + HZ); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | void ncsi_start_channel_monitor(struct ncsi_channel *nc) |
| 255 | { |
| 256 | unsigned long flags; |
| 257 | |
| 258 | spin_lock_irqsave(&nc->lock, flags); |
Gavin Shan | 83afdc6 | 2016-10-04 11:25:52 +1100 | [diff] [blame] | 259 | WARN_ON_ONCE(nc->monitor.enabled); |
| 260 | nc->monitor.enabled = true; |
| 261 | nc->monitor.state = NCSI_CHANNEL_MONITOR_START; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 262 | spin_unlock_irqrestore(&nc->lock, flags); |
| 263 | |
Gavin Shan | 83afdc6 | 2016-10-04 11:25:52 +1100 | [diff] [blame] | 264 | mod_timer(&nc->monitor.timer, jiffies + HZ); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | void ncsi_stop_channel_monitor(struct ncsi_channel *nc) |
| 268 | { |
| 269 | unsigned long flags; |
| 270 | |
| 271 | spin_lock_irqsave(&nc->lock, flags); |
Gavin Shan | 83afdc6 | 2016-10-04 11:25:52 +1100 | [diff] [blame] | 272 | if (!nc->monitor.enabled) { |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 273 | spin_unlock_irqrestore(&nc->lock, flags); |
| 274 | return; |
| 275 | } |
Gavin Shan | 83afdc6 | 2016-10-04 11:25:52 +1100 | [diff] [blame] | 276 | nc->monitor.enabled = false; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 277 | spin_unlock_irqrestore(&nc->lock, flags); |
| 278 | |
Gavin Shan | 83afdc6 | 2016-10-04 11:25:52 +1100 | [diff] [blame] | 279 | del_timer_sync(&nc->monitor.timer); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 280 | } |
| 281 | |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 282 | struct ncsi_channel *ncsi_find_channel(struct ncsi_package *np, |
| 283 | unsigned char id) |
| 284 | { |
| 285 | struct ncsi_channel *nc; |
| 286 | |
| 287 | NCSI_FOR_EACH_CHANNEL(np, nc) { |
| 288 | if (nc->id == id) |
| 289 | return nc; |
| 290 | } |
| 291 | |
| 292 | return NULL; |
| 293 | } |
| 294 | |
| 295 | struct ncsi_channel *ncsi_add_channel(struct ncsi_package *np, unsigned char id) |
| 296 | { |
| 297 | struct ncsi_channel *nc, *tmp; |
| 298 | int index; |
| 299 | unsigned long flags; |
| 300 | |
| 301 | nc = kzalloc(sizeof(*nc), GFP_ATOMIC); |
| 302 | if (!nc) |
| 303 | return NULL; |
| 304 | |
| 305 | nc->id = id; |
| 306 | nc->package = np; |
| 307 | nc->state = NCSI_CHANNEL_INACTIVE; |
Gavin Shan | 83afdc6 | 2016-10-04 11:25:52 +1100 | [diff] [blame] | 308 | nc->monitor.enabled = false; |
| 309 | setup_timer(&nc->monitor.timer, |
| 310 | ncsi_channel_monitor, (unsigned long)nc); |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 311 | spin_lock_init(&nc->lock); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 312 | INIT_LIST_HEAD(&nc->link); |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 313 | for (index = 0; index < NCSI_CAP_MAX; index++) |
| 314 | nc->caps[index].index = index; |
| 315 | for (index = 0; index < NCSI_MODE_MAX; index++) |
| 316 | nc->modes[index].index = index; |
| 317 | |
| 318 | spin_lock_irqsave(&np->lock, flags); |
| 319 | tmp = ncsi_find_channel(np, id); |
| 320 | if (tmp) { |
| 321 | spin_unlock_irqrestore(&np->lock, flags); |
| 322 | kfree(nc); |
| 323 | return tmp; |
| 324 | } |
| 325 | |
| 326 | list_add_tail_rcu(&nc->node, &np->channels); |
| 327 | np->channel_num++; |
| 328 | spin_unlock_irqrestore(&np->lock, flags); |
| 329 | |
| 330 | return nc; |
| 331 | } |
| 332 | |
| 333 | static void ncsi_remove_channel(struct ncsi_channel *nc) |
| 334 | { |
| 335 | struct ncsi_package *np = nc->package; |
| 336 | struct ncsi_channel_filter *ncf; |
| 337 | unsigned long flags; |
| 338 | int i; |
| 339 | |
| 340 | /* Release filters */ |
| 341 | spin_lock_irqsave(&nc->lock, flags); |
| 342 | for (i = 0; i < NCSI_FILTER_MAX; i++) { |
| 343 | ncf = nc->filters[i]; |
| 344 | if (!ncf) |
| 345 | continue; |
| 346 | |
| 347 | nc->filters[i] = NULL; |
| 348 | kfree(ncf); |
| 349 | } |
| 350 | |
| 351 | nc->state = NCSI_CHANNEL_INACTIVE; |
| 352 | spin_unlock_irqrestore(&nc->lock, flags); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 353 | ncsi_stop_channel_monitor(nc); |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 354 | |
| 355 | /* Remove and free channel */ |
| 356 | spin_lock_irqsave(&np->lock, flags); |
| 357 | list_del_rcu(&nc->node); |
| 358 | np->channel_num--; |
| 359 | spin_unlock_irqrestore(&np->lock, flags); |
| 360 | |
| 361 | kfree(nc); |
| 362 | } |
| 363 | |
| 364 | struct ncsi_package *ncsi_find_package(struct ncsi_dev_priv *ndp, |
| 365 | unsigned char id) |
| 366 | { |
| 367 | struct ncsi_package *np; |
| 368 | |
| 369 | NCSI_FOR_EACH_PACKAGE(ndp, np) { |
| 370 | if (np->id == id) |
| 371 | return np; |
| 372 | } |
| 373 | |
| 374 | return NULL; |
| 375 | } |
| 376 | |
| 377 | struct ncsi_package *ncsi_add_package(struct ncsi_dev_priv *ndp, |
| 378 | unsigned char id) |
| 379 | { |
| 380 | struct ncsi_package *np, *tmp; |
| 381 | unsigned long flags; |
| 382 | |
| 383 | np = kzalloc(sizeof(*np), GFP_ATOMIC); |
| 384 | if (!np) |
| 385 | return NULL; |
| 386 | |
| 387 | np->id = id; |
| 388 | np->ndp = ndp; |
| 389 | spin_lock_init(&np->lock); |
| 390 | INIT_LIST_HEAD(&np->channels); |
| 391 | |
| 392 | spin_lock_irqsave(&ndp->lock, flags); |
| 393 | tmp = ncsi_find_package(ndp, id); |
| 394 | if (tmp) { |
| 395 | spin_unlock_irqrestore(&ndp->lock, flags); |
| 396 | kfree(np); |
| 397 | return tmp; |
| 398 | } |
| 399 | |
| 400 | list_add_tail_rcu(&np->node, &ndp->packages); |
| 401 | ndp->package_num++; |
| 402 | spin_unlock_irqrestore(&ndp->lock, flags); |
| 403 | |
| 404 | return np; |
| 405 | } |
| 406 | |
| 407 | void ncsi_remove_package(struct ncsi_package *np) |
| 408 | { |
| 409 | struct ncsi_dev_priv *ndp = np->ndp; |
| 410 | struct ncsi_channel *nc, *tmp; |
| 411 | unsigned long flags; |
| 412 | |
| 413 | /* Release all child channels */ |
| 414 | list_for_each_entry_safe(nc, tmp, &np->channels, node) |
| 415 | ncsi_remove_channel(nc); |
| 416 | |
| 417 | /* Remove and free package */ |
| 418 | spin_lock_irqsave(&ndp->lock, flags); |
| 419 | list_del_rcu(&np->node); |
| 420 | ndp->package_num--; |
| 421 | spin_unlock_irqrestore(&ndp->lock, flags); |
| 422 | |
| 423 | kfree(np); |
| 424 | } |
| 425 | |
| 426 | void ncsi_find_package_and_channel(struct ncsi_dev_priv *ndp, |
| 427 | unsigned char id, |
| 428 | struct ncsi_package **np, |
| 429 | struct ncsi_channel **nc) |
| 430 | { |
| 431 | struct ncsi_package *p; |
| 432 | struct ncsi_channel *c; |
| 433 | |
| 434 | p = ncsi_find_package(ndp, NCSI_PACKAGE_INDEX(id)); |
| 435 | c = p ? ncsi_find_channel(p, NCSI_CHANNEL_INDEX(id)) : NULL; |
| 436 | |
| 437 | if (np) |
| 438 | *np = p; |
| 439 | if (nc) |
| 440 | *nc = c; |
| 441 | } |
| 442 | |
| 443 | /* For two consecutive NCSI commands, the packet IDs shouldn't |
| 444 | * be same. Otherwise, the bogus response might be replied. So |
| 445 | * the available IDs are allocated in round-robin fashion. |
| 446 | */ |
Gavin Shan | a0509cb | 2016-10-04 11:25:51 +1100 | [diff] [blame] | 447 | struct ncsi_request *ncsi_alloc_request(struct ncsi_dev_priv *ndp, |
| 448 | unsigned int req_flags) |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 449 | { |
| 450 | struct ncsi_request *nr = NULL; |
| 451 | int i, limit = ARRAY_SIZE(ndp->requests); |
| 452 | unsigned long flags; |
| 453 | |
| 454 | /* Check if there is one available request until the ceiling */ |
| 455 | spin_lock_irqsave(&ndp->lock, flags); |
Gavin Shan | a15af54 | 2016-10-04 11:25:50 +1100 | [diff] [blame] | 456 | for (i = ndp->request_id; i < limit; i++) { |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 457 | if (ndp->requests[i].used) |
| 458 | continue; |
| 459 | |
| 460 | nr = &ndp->requests[i]; |
| 461 | nr->used = true; |
Gavin Shan | a0509cb | 2016-10-04 11:25:51 +1100 | [diff] [blame] | 462 | nr->flags = req_flags; |
Gavin Shan | a15af54 | 2016-10-04 11:25:50 +1100 | [diff] [blame] | 463 | ndp->request_id = i + 1; |
| 464 | goto found; |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 465 | } |
| 466 | |
| 467 | /* Fail back to check from the starting cursor */ |
Gavin Shan | a15af54 | 2016-10-04 11:25:50 +1100 | [diff] [blame] | 468 | for (i = NCSI_REQ_START_IDX; i < ndp->request_id; i++) { |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 469 | if (ndp->requests[i].used) |
| 470 | continue; |
| 471 | |
| 472 | nr = &ndp->requests[i]; |
| 473 | nr->used = true; |
Gavin Shan | a0509cb | 2016-10-04 11:25:51 +1100 | [diff] [blame] | 474 | nr->flags = req_flags; |
Gavin Shan | a15af54 | 2016-10-04 11:25:50 +1100 | [diff] [blame] | 475 | ndp->request_id = i + 1; |
| 476 | goto found; |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 477 | } |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 478 | |
Gavin Shan | a15af54 | 2016-10-04 11:25:50 +1100 | [diff] [blame] | 479 | found: |
| 480 | spin_unlock_irqrestore(&ndp->lock, flags); |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 481 | return nr; |
| 482 | } |
| 483 | |
| 484 | void ncsi_free_request(struct ncsi_request *nr) |
| 485 | { |
| 486 | struct ncsi_dev_priv *ndp = nr->ndp; |
| 487 | struct sk_buff *cmd, *rsp; |
| 488 | unsigned long flags; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 489 | bool driven; |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 490 | |
| 491 | if (nr->enabled) { |
| 492 | nr->enabled = false; |
| 493 | del_timer_sync(&nr->timer); |
| 494 | } |
| 495 | |
| 496 | spin_lock_irqsave(&ndp->lock, flags); |
| 497 | cmd = nr->cmd; |
| 498 | rsp = nr->rsp; |
| 499 | nr->cmd = NULL; |
| 500 | nr->rsp = NULL; |
| 501 | nr->used = false; |
Gavin Shan | a0509cb | 2016-10-04 11:25:51 +1100 | [diff] [blame] | 502 | driven = !!(nr->flags & NCSI_REQ_FLAG_EVENT_DRIVEN); |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 503 | spin_unlock_irqrestore(&ndp->lock, flags); |
| 504 | |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 505 | if (driven && cmd && --ndp->pending_req_num == 0) |
| 506 | schedule_work(&ndp->work); |
| 507 | |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 508 | /* Release command and response */ |
| 509 | consume_skb(cmd); |
| 510 | consume_skb(rsp); |
| 511 | } |
| 512 | |
| 513 | struct ncsi_dev *ncsi_find_dev(struct net_device *dev) |
| 514 | { |
| 515 | struct ncsi_dev_priv *ndp; |
| 516 | |
| 517 | NCSI_FOR_EACH_DEV(ndp) { |
| 518 | if (ndp->ndev.dev == dev) |
| 519 | return &ndp->ndev; |
| 520 | } |
| 521 | |
| 522 | return NULL; |
| 523 | } |
| 524 | |
| 525 | static void ncsi_request_timeout(unsigned long data) |
| 526 | { |
| 527 | struct ncsi_request *nr = (struct ncsi_request *)data; |
| 528 | struct ncsi_dev_priv *ndp = nr->ndp; |
| 529 | unsigned long flags; |
| 530 | |
| 531 | /* If the request already had associated response, |
| 532 | * let the response handler to release it. |
| 533 | */ |
| 534 | spin_lock_irqsave(&ndp->lock, flags); |
| 535 | nr->enabled = false; |
| 536 | if (nr->rsp || !nr->cmd) { |
| 537 | spin_unlock_irqrestore(&ndp->lock, flags); |
| 538 | return; |
| 539 | } |
| 540 | spin_unlock_irqrestore(&ndp->lock, flags); |
| 541 | |
| 542 | /* Release the request */ |
| 543 | ncsi_free_request(nr); |
| 544 | } |
| 545 | |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 546 | static void ncsi_suspend_channel(struct ncsi_dev_priv *ndp) |
| 547 | { |
| 548 | struct ncsi_dev *nd = &ndp->ndev; |
| 549 | struct ncsi_package *np = ndp->active_package; |
| 550 | struct ncsi_channel *nc = ndp->active_channel; |
| 551 | struct ncsi_cmd_arg nca; |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 552 | unsigned long flags; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 553 | int ret; |
| 554 | |
| 555 | nca.ndp = ndp; |
Gavin Shan | a0509cb | 2016-10-04 11:25:51 +1100 | [diff] [blame] | 556 | nca.req_flags = NCSI_REQ_FLAG_EVENT_DRIVEN; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 557 | switch (nd->state) { |
| 558 | case ncsi_dev_state_suspend: |
| 559 | nd->state = ncsi_dev_state_suspend_select; |
| 560 | /* Fall through */ |
| 561 | case ncsi_dev_state_suspend_select: |
Gavin Shan | 7ba5c00 | 2016-10-20 11:45:49 +1100 | [diff] [blame] | 562 | ndp->pending_req_num = 1; |
| 563 | |
| 564 | nca.type = NCSI_PKT_CMD_SP; |
| 565 | nca.package = np->id; |
| 566 | nca.channel = NCSI_RESERVED_CHANNEL; |
| 567 | if (ndp->flags & NCSI_DEV_HWA) |
| 568 | nca.bytes[0] = 0; |
| 569 | else |
| 570 | nca.bytes[0] = 1; |
| 571 | |
Gavin Shan | 008a424 | 2016-10-20 11:45:50 +1100 | [diff] [blame] | 572 | /* To retrieve the last link states of channels in current |
| 573 | * package when current active channel needs fail over to |
| 574 | * another one. It means we will possibly select another |
| 575 | * channel as next active one. The link states of channels |
| 576 | * are most important factor of the selection. So we need |
| 577 | * accurate link states. Unfortunately, the link states on |
| 578 | * inactive channels can't be updated with LSC AEN in time. |
| 579 | */ |
| 580 | if (ndp->flags & NCSI_DEV_RESHUFFLE) |
| 581 | nd->state = ncsi_dev_state_suspend_gls; |
| 582 | else |
| 583 | nd->state = ncsi_dev_state_suspend_dcnt; |
Gavin Shan | 7ba5c00 | 2016-10-20 11:45:49 +1100 | [diff] [blame] | 584 | ret = ncsi_xmit_cmd(&nca); |
| 585 | if (ret) |
| 586 | goto error; |
| 587 | |
| 588 | break; |
Gavin Shan | 008a424 | 2016-10-20 11:45:50 +1100 | [diff] [blame] | 589 | case ncsi_dev_state_suspend_gls: |
| 590 | ndp->pending_req_num = np->channel_num; |
| 591 | |
| 592 | nca.type = NCSI_PKT_CMD_GLS; |
| 593 | nca.package = np->id; |
| 594 | |
| 595 | nd->state = ncsi_dev_state_suspend_dcnt; |
| 596 | NCSI_FOR_EACH_CHANNEL(np, nc) { |
| 597 | nca.channel = nc->id; |
| 598 | ret = ncsi_xmit_cmd(&nca); |
| 599 | if (ret) |
| 600 | goto error; |
| 601 | } |
| 602 | |
| 603 | break; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 604 | case ncsi_dev_state_suspend_dcnt: |
Gavin Shan | 7ba5c00 | 2016-10-20 11:45:49 +1100 | [diff] [blame] | 605 | ndp->pending_req_num = 1; |
| 606 | |
| 607 | nca.type = NCSI_PKT_CMD_DCNT; |
| 608 | nca.package = np->id; |
| 609 | nca.channel = nc->id; |
| 610 | |
| 611 | nd->state = ncsi_dev_state_suspend_dc; |
| 612 | ret = ncsi_xmit_cmd(&nca); |
| 613 | if (ret) |
| 614 | goto error; |
| 615 | |
| 616 | break; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 617 | case ncsi_dev_state_suspend_dc: |
Gavin Shan | 7ba5c00 | 2016-10-20 11:45:49 +1100 | [diff] [blame] | 618 | ndp->pending_req_num = 1; |
| 619 | |
| 620 | nca.type = NCSI_PKT_CMD_DC; |
| 621 | nca.package = np->id; |
| 622 | nca.channel = nc->id; |
| 623 | nca.bytes[0] = 1; |
| 624 | |
| 625 | nd->state = ncsi_dev_state_suspend_deselect; |
| 626 | ret = ncsi_xmit_cmd(&nca); |
| 627 | if (ret) |
| 628 | goto error; |
| 629 | |
| 630 | break; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 631 | case ncsi_dev_state_suspend_deselect: |
| 632 | ndp->pending_req_num = 1; |
| 633 | |
Gavin Shan | 7ba5c00 | 2016-10-20 11:45:49 +1100 | [diff] [blame] | 634 | nca.type = NCSI_PKT_CMD_DP; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 635 | nca.package = np->id; |
Gavin Shan | 7ba5c00 | 2016-10-20 11:45:49 +1100 | [diff] [blame] | 636 | nca.channel = NCSI_RESERVED_CHANNEL; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 637 | |
Gavin Shan | 7ba5c00 | 2016-10-20 11:45:49 +1100 | [diff] [blame] | 638 | nd->state = ncsi_dev_state_suspend_done; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 639 | ret = ncsi_xmit_cmd(&nca); |
Gavin Shan | 7ba5c00 | 2016-10-20 11:45:49 +1100 | [diff] [blame] | 640 | if (ret) |
| 641 | goto error; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 642 | |
| 643 | break; |
| 644 | case ncsi_dev_state_suspend_done: |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 645 | spin_lock_irqsave(&nc->lock, flags); |
| 646 | nc->state = NCSI_CHANNEL_INACTIVE; |
| 647 | spin_unlock_irqrestore(&nc->lock, flags); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 648 | ncsi_process_next_channel(ndp); |
| 649 | |
| 650 | break; |
| 651 | default: |
| 652 | netdev_warn(nd->dev, "Wrong NCSI state 0x%x in suspend\n", |
| 653 | nd->state); |
| 654 | } |
Gavin Shan | 7ba5c00 | 2016-10-20 11:45:49 +1100 | [diff] [blame] | 655 | |
| 656 | return; |
| 657 | error: |
| 658 | nd->state = ncsi_dev_state_functional; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 659 | } |
| 660 | |
Samuel Mendoza-Jonas | 21acf63 | 2017-08-28 16:18:42 +1000 | [diff] [blame] | 661 | /* Check the VLAN filter bitmap for a set filter, and construct a |
| 662 | * "Set VLAN Filter - Disable" packet if found. |
| 663 | */ |
| 664 | static int clear_one_vid(struct ncsi_dev_priv *ndp, struct ncsi_channel *nc, |
| 665 | struct ncsi_cmd_arg *nca) |
| 666 | { |
| 667 | int index; |
| 668 | u32 *data; |
| 669 | u16 vid; |
| 670 | |
| 671 | index = ncsi_find_filter(nc, NCSI_FILTER_VLAN, NULL); |
| 672 | if (index < 0) { |
| 673 | /* Filter table empty */ |
| 674 | return -1; |
| 675 | } |
| 676 | |
| 677 | data = ncsi_get_filter(nc, NCSI_FILTER_VLAN, index); |
| 678 | if (!data) { |
| 679 | netdev_err(ndp->ndev.dev, |
| 680 | "ncsi: failed to retrieve filter %d\n", index); |
| 681 | /* Set the VLAN id to 0 - this will still disable the entry in |
| 682 | * the filter table, but we won't know what it was. |
| 683 | */ |
| 684 | vid = 0; |
| 685 | } else { |
| 686 | vid = *(u16 *)data; |
| 687 | } |
| 688 | |
| 689 | netdev_printk(KERN_DEBUG, ndp->ndev.dev, |
| 690 | "ncsi: removed vlan tag %u at index %d\n", |
| 691 | vid, index + 1); |
| 692 | ncsi_remove_filter(nc, NCSI_FILTER_VLAN, index); |
| 693 | |
| 694 | nca->type = NCSI_PKT_CMD_SVF; |
| 695 | nca->words[1] = vid; |
| 696 | /* HW filter index starts at 1 */ |
| 697 | nca->bytes[6] = index + 1; |
| 698 | nca->bytes[7] = 0x00; |
| 699 | return 0; |
| 700 | } |
| 701 | |
| 702 | /* Find an outstanding VLAN tag and constuct a "Set VLAN Filter - Enable" |
| 703 | * packet. |
| 704 | */ |
| 705 | static int set_one_vid(struct ncsi_dev_priv *ndp, struct ncsi_channel *nc, |
| 706 | struct ncsi_cmd_arg *nca) |
| 707 | { |
| 708 | struct vlan_vid *vlan = NULL; |
| 709 | int index = 0; |
| 710 | |
| 711 | list_for_each_entry_rcu(vlan, &ndp->vlan_vids, list) { |
| 712 | index = ncsi_find_filter(nc, NCSI_FILTER_VLAN, &vlan->vid); |
| 713 | if (index < 0) { |
| 714 | /* New tag to add */ |
| 715 | netdev_printk(KERN_DEBUG, ndp->ndev.dev, |
| 716 | "ncsi: new vlan id to set: %u\n", |
| 717 | vlan->vid); |
| 718 | break; |
| 719 | } |
| 720 | netdev_printk(KERN_DEBUG, ndp->ndev.dev, |
| 721 | "vid %u already at filter pos %d\n", |
| 722 | vlan->vid, index); |
| 723 | } |
| 724 | |
| 725 | if (!vlan || index >= 0) { |
| 726 | netdev_printk(KERN_DEBUG, ndp->ndev.dev, |
| 727 | "no vlan ids left to set\n"); |
| 728 | return -1; |
| 729 | } |
| 730 | |
| 731 | index = ncsi_add_filter(nc, NCSI_FILTER_VLAN, &vlan->vid); |
| 732 | if (index < 0) { |
| 733 | netdev_err(ndp->ndev.dev, |
| 734 | "Failed to add new VLAN tag, error %d\n", index); |
Samuel Mendoza-Jonas | 6e9c007 | 2017-10-11 16:54:27 +1100 | [diff] [blame^] | 735 | if (index == -ENOSPC) |
| 736 | netdev_err(ndp->ndev.dev, |
| 737 | "Channel %u already has all VLAN filters set\n", |
| 738 | nc->id); |
Samuel Mendoza-Jonas | 21acf63 | 2017-08-28 16:18:42 +1000 | [diff] [blame] | 739 | return -1; |
| 740 | } |
| 741 | |
| 742 | netdev_printk(KERN_DEBUG, ndp->ndev.dev, |
| 743 | "ncsi: set vid %u in packet, index %u\n", |
| 744 | vlan->vid, index + 1); |
| 745 | nca->type = NCSI_PKT_CMD_SVF; |
| 746 | nca->words[1] = vlan->vid; |
| 747 | /* HW filter index starts at 1 */ |
| 748 | nca->bytes[6] = index + 1; |
| 749 | nca->bytes[7] = 0x01; |
| 750 | |
| 751 | return 0; |
| 752 | } |
| 753 | |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 754 | static void ncsi_configure_channel(struct ncsi_dev_priv *ndp) |
| 755 | { |
| 756 | struct ncsi_dev *nd = &ndp->ndev; |
| 757 | struct net_device *dev = nd->dev; |
| 758 | struct ncsi_package *np = ndp->active_package; |
| 759 | struct ncsi_channel *nc = ndp->active_channel; |
Gavin Shan | bbc7c01 | 2016-10-20 11:45:51 +1100 | [diff] [blame] | 760 | struct ncsi_channel *hot_nc = NULL; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 761 | struct ncsi_cmd_arg nca; |
| 762 | unsigned char index; |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 763 | unsigned long flags; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 764 | int ret; |
| 765 | |
| 766 | nca.ndp = ndp; |
Gavin Shan | a0509cb | 2016-10-04 11:25:51 +1100 | [diff] [blame] | 767 | nca.req_flags = NCSI_REQ_FLAG_EVENT_DRIVEN; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 768 | switch (nd->state) { |
| 769 | case ncsi_dev_state_config: |
| 770 | case ncsi_dev_state_config_sp: |
| 771 | ndp->pending_req_num = 1; |
| 772 | |
| 773 | /* Select the specific package */ |
| 774 | nca.type = NCSI_PKT_CMD_SP; |
| 775 | if (ndp->flags & NCSI_DEV_HWA) |
| 776 | nca.bytes[0] = 0; |
| 777 | else |
| 778 | nca.bytes[0] = 1; |
| 779 | nca.package = np->id; |
Gavin Shan | bc7e0f5 | 2016-10-04 11:25:48 +1100 | [diff] [blame] | 780 | nca.channel = NCSI_RESERVED_CHANNEL; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 781 | ret = ncsi_xmit_cmd(&nca); |
| 782 | if (ret) |
| 783 | goto error; |
| 784 | |
| 785 | nd->state = ncsi_dev_state_config_cis; |
| 786 | break; |
| 787 | case ncsi_dev_state_config_cis: |
| 788 | ndp->pending_req_num = 1; |
| 789 | |
| 790 | /* Clear initial state */ |
| 791 | nca.type = NCSI_PKT_CMD_CIS; |
| 792 | nca.package = np->id; |
| 793 | nca.channel = nc->id; |
| 794 | ret = ncsi_xmit_cmd(&nca); |
| 795 | if (ret) |
| 796 | goto error; |
| 797 | |
Samuel Mendoza-Jonas | 21acf63 | 2017-08-28 16:18:42 +1000 | [diff] [blame] | 798 | nd->state = ncsi_dev_state_config_clear_vids; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 799 | break; |
Samuel Mendoza-Jonas | 21acf63 | 2017-08-28 16:18:42 +1000 | [diff] [blame] | 800 | case ncsi_dev_state_config_clear_vids: |
| 801 | case ncsi_dev_state_config_svf: |
| 802 | case ncsi_dev_state_config_ev: |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 803 | case ncsi_dev_state_config_sma: |
| 804 | case ncsi_dev_state_config_ebf: |
| 805 | #if IS_ENABLED(CONFIG_IPV6) |
| 806 | case ncsi_dev_state_config_egmf: |
| 807 | #endif |
| 808 | case ncsi_dev_state_config_ecnt: |
| 809 | case ncsi_dev_state_config_ec: |
| 810 | case ncsi_dev_state_config_ae: |
| 811 | case ncsi_dev_state_config_gls: |
| 812 | ndp->pending_req_num = 1; |
| 813 | |
| 814 | nca.package = np->id; |
| 815 | nca.channel = nc->id; |
| 816 | |
Samuel Mendoza-Jonas | 21acf63 | 2017-08-28 16:18:42 +1000 | [diff] [blame] | 817 | /* Clear any active filters on the channel before setting */ |
| 818 | if (nd->state == ncsi_dev_state_config_clear_vids) { |
| 819 | ret = clear_one_vid(ndp, nc, &nca); |
| 820 | if (ret) { |
| 821 | nd->state = ncsi_dev_state_config_svf; |
| 822 | schedule_work(&ndp->work); |
| 823 | break; |
| 824 | } |
| 825 | /* Repeat */ |
| 826 | nd->state = ncsi_dev_state_config_clear_vids; |
| 827 | /* Add known VLAN tags to the filter */ |
| 828 | } else if (nd->state == ncsi_dev_state_config_svf) { |
| 829 | ret = set_one_vid(ndp, nc, &nca); |
| 830 | if (ret) { |
| 831 | nd->state = ncsi_dev_state_config_ev; |
| 832 | schedule_work(&ndp->work); |
| 833 | break; |
| 834 | } |
| 835 | /* Repeat */ |
| 836 | nd->state = ncsi_dev_state_config_svf; |
| 837 | /* Enable/Disable the VLAN filter */ |
| 838 | } else if (nd->state == ncsi_dev_state_config_ev) { |
| 839 | if (list_empty(&ndp->vlan_vids)) { |
| 840 | nca.type = NCSI_PKT_CMD_DV; |
| 841 | } else { |
| 842 | nca.type = NCSI_PKT_CMD_EV; |
| 843 | nca.bytes[3] = NCSI_CAP_VLAN_NO; |
| 844 | } |
| 845 | nd->state = ncsi_dev_state_config_sma; |
| 846 | } else if (nd->state == ncsi_dev_state_config_sma) { |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 847 | /* Use first entry in unicast filter table. Note that |
| 848 | * the MAC filter table starts from entry 1 instead of |
| 849 | * 0. |
| 850 | */ |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 851 | nca.type = NCSI_PKT_CMD_SMA; |
| 852 | for (index = 0; index < 6; index++) |
| 853 | nca.bytes[index] = dev->dev_addr[index]; |
| 854 | nca.bytes[6] = 0x1; |
| 855 | nca.bytes[7] = 0x1; |
| 856 | nd->state = ncsi_dev_state_config_ebf; |
| 857 | } else if (nd->state == ncsi_dev_state_config_ebf) { |
| 858 | nca.type = NCSI_PKT_CMD_EBF; |
| 859 | nca.dwords[0] = nc->caps[NCSI_CAP_BC].cap; |
| 860 | nd->state = ncsi_dev_state_config_ecnt; |
| 861 | #if IS_ENABLED(CONFIG_IPV6) |
| 862 | if (ndp->inet6_addr_num > 0 && |
| 863 | (nc->caps[NCSI_CAP_GENERIC].cap & |
| 864 | NCSI_CAP_GENERIC_MC)) |
| 865 | nd->state = ncsi_dev_state_config_egmf; |
| 866 | else |
| 867 | nd->state = ncsi_dev_state_config_ecnt; |
| 868 | } else if (nd->state == ncsi_dev_state_config_egmf) { |
| 869 | nca.type = NCSI_PKT_CMD_EGMF; |
| 870 | nca.dwords[0] = nc->caps[NCSI_CAP_MC].cap; |
| 871 | nd->state = ncsi_dev_state_config_ecnt; |
| 872 | #endif /* CONFIG_IPV6 */ |
| 873 | } else if (nd->state == ncsi_dev_state_config_ecnt) { |
| 874 | nca.type = NCSI_PKT_CMD_ECNT; |
| 875 | nd->state = ncsi_dev_state_config_ec; |
| 876 | } else if (nd->state == ncsi_dev_state_config_ec) { |
| 877 | /* Enable AEN if it's supported */ |
| 878 | nca.type = NCSI_PKT_CMD_EC; |
| 879 | nd->state = ncsi_dev_state_config_ae; |
| 880 | if (!(nc->caps[NCSI_CAP_AEN].cap & NCSI_CAP_AEN_MASK)) |
| 881 | nd->state = ncsi_dev_state_config_gls; |
| 882 | } else if (nd->state == ncsi_dev_state_config_ae) { |
| 883 | nca.type = NCSI_PKT_CMD_AE; |
| 884 | nca.bytes[0] = 0; |
| 885 | nca.dwords[1] = nc->caps[NCSI_CAP_AEN].cap; |
| 886 | nd->state = ncsi_dev_state_config_gls; |
| 887 | } else if (nd->state == ncsi_dev_state_config_gls) { |
| 888 | nca.type = NCSI_PKT_CMD_GLS; |
| 889 | nd->state = ncsi_dev_state_config_done; |
| 890 | } |
| 891 | |
| 892 | ret = ncsi_xmit_cmd(&nca); |
| 893 | if (ret) |
| 894 | goto error; |
| 895 | break; |
| 896 | case ncsi_dev_state_config_done: |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 897 | spin_lock_irqsave(&nc->lock, flags); |
Samuel Mendoza-Jonas | 21acf63 | 2017-08-28 16:18:42 +1000 | [diff] [blame] | 898 | if (nc->reconfigure_needed) { |
| 899 | /* This channel's configuration has been updated |
| 900 | * part-way during the config state - start the |
| 901 | * channel configuration over |
| 902 | */ |
| 903 | nc->reconfigure_needed = false; |
| 904 | nc->state = NCSI_CHANNEL_INACTIVE; |
| 905 | spin_unlock_irqrestore(&nc->lock, flags); |
| 906 | |
| 907 | spin_lock_irqsave(&ndp->lock, flags); |
| 908 | list_add_tail_rcu(&nc->link, &ndp->channel_queue); |
| 909 | spin_unlock_irqrestore(&ndp->lock, flags); |
| 910 | |
| 911 | netdev_printk(KERN_DEBUG, dev, |
| 912 | "Dirty NCSI channel state reset\n"); |
| 913 | ncsi_process_next_channel(ndp); |
| 914 | break; |
| 915 | } |
| 916 | |
Gavin Shan | bbc7c01 | 2016-10-20 11:45:51 +1100 | [diff] [blame] | 917 | if (nc->modes[NCSI_MODE_LINK].data[2] & 0x1) { |
| 918 | hot_nc = nc; |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 919 | nc->state = NCSI_CHANNEL_ACTIVE; |
Gavin Shan | bbc7c01 | 2016-10-20 11:45:51 +1100 | [diff] [blame] | 920 | } else { |
| 921 | hot_nc = NULL; |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 922 | nc->state = NCSI_CHANNEL_INACTIVE; |
Gavin Shan | bbc7c01 | 2016-10-20 11:45:51 +1100 | [diff] [blame] | 923 | } |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 924 | spin_unlock_irqrestore(&nc->lock, flags); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 925 | |
Gavin Shan | bbc7c01 | 2016-10-20 11:45:51 +1100 | [diff] [blame] | 926 | /* Update the hot channel */ |
| 927 | spin_lock_irqsave(&ndp->lock, flags); |
| 928 | ndp->hot_channel = hot_nc; |
| 929 | spin_unlock_irqrestore(&ndp->lock, flags); |
| 930 | |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 931 | ncsi_start_channel_monitor(nc); |
| 932 | ncsi_process_next_channel(ndp); |
| 933 | break; |
| 934 | default: |
| 935 | netdev_warn(dev, "Wrong NCSI state 0x%x in config\n", |
| 936 | nd->state); |
| 937 | } |
| 938 | |
| 939 | return; |
| 940 | |
| 941 | error: |
| 942 | ncsi_report_link(ndp, true); |
| 943 | } |
| 944 | |
| 945 | static int ncsi_choose_active_channel(struct ncsi_dev_priv *ndp) |
| 946 | { |
| 947 | struct ncsi_package *np; |
Gavin Shan | bbc7c01 | 2016-10-20 11:45:51 +1100 | [diff] [blame] | 948 | struct ncsi_channel *nc, *found, *hot_nc; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 949 | struct ncsi_channel_mode *ncm; |
| 950 | unsigned long flags; |
| 951 | |
Gavin Shan | bbc7c01 | 2016-10-20 11:45:51 +1100 | [diff] [blame] | 952 | spin_lock_irqsave(&ndp->lock, flags); |
| 953 | hot_nc = ndp->hot_channel; |
| 954 | spin_unlock_irqrestore(&ndp->lock, flags); |
| 955 | |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 956 | /* The search is done once an inactive channel with up |
| 957 | * link is found. |
| 958 | */ |
| 959 | found = NULL; |
| 960 | NCSI_FOR_EACH_PACKAGE(ndp, np) { |
| 961 | NCSI_FOR_EACH_CHANNEL(np, nc) { |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 962 | spin_lock_irqsave(&nc->lock, flags); |
| 963 | |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 964 | if (!list_empty(&nc->link) || |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 965 | nc->state != NCSI_CHANNEL_INACTIVE) { |
| 966 | spin_unlock_irqrestore(&nc->lock, flags); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 967 | continue; |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 968 | } |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 969 | |
| 970 | if (!found) |
| 971 | found = nc; |
| 972 | |
Gavin Shan | bbc7c01 | 2016-10-20 11:45:51 +1100 | [diff] [blame] | 973 | if (nc == hot_nc) |
| 974 | found = nc; |
| 975 | |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 976 | ncm = &nc->modes[NCSI_MODE_LINK]; |
| 977 | if (ncm->data[2] & 0x1) { |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 978 | spin_unlock_irqrestore(&nc->lock, flags); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 979 | found = nc; |
| 980 | goto out; |
| 981 | } |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 982 | |
| 983 | spin_unlock_irqrestore(&nc->lock, flags); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 984 | } |
| 985 | } |
| 986 | |
| 987 | if (!found) { |
| 988 | ncsi_report_link(ndp, true); |
| 989 | return -ENODEV; |
| 990 | } |
| 991 | |
| 992 | out: |
| 993 | spin_lock_irqsave(&ndp->lock, flags); |
| 994 | list_add_tail_rcu(&found->link, &ndp->channel_queue); |
| 995 | spin_unlock_irqrestore(&ndp->lock, flags); |
| 996 | |
| 997 | return ncsi_process_next_channel(ndp); |
| 998 | } |
| 999 | |
| 1000 | static bool ncsi_check_hwa(struct ncsi_dev_priv *ndp) |
| 1001 | { |
| 1002 | struct ncsi_package *np; |
| 1003 | struct ncsi_channel *nc; |
| 1004 | unsigned int cap; |
| 1005 | |
| 1006 | /* The hardware arbitration is disabled if any one channel |
| 1007 | * doesn't support explicitly. |
| 1008 | */ |
| 1009 | NCSI_FOR_EACH_PACKAGE(ndp, np) { |
| 1010 | NCSI_FOR_EACH_CHANNEL(np, nc) { |
| 1011 | cap = nc->caps[NCSI_CAP_GENERIC].cap; |
| 1012 | if (!(cap & NCSI_CAP_GENERIC_HWA) || |
| 1013 | (cap & NCSI_CAP_GENERIC_HWA_MASK) != |
| 1014 | NCSI_CAP_GENERIC_HWA_SUPPORT) { |
| 1015 | ndp->flags &= ~NCSI_DEV_HWA; |
| 1016 | return false; |
| 1017 | } |
| 1018 | } |
| 1019 | } |
| 1020 | |
| 1021 | ndp->flags |= NCSI_DEV_HWA; |
| 1022 | return true; |
| 1023 | } |
| 1024 | |
| 1025 | static int ncsi_enable_hwa(struct ncsi_dev_priv *ndp) |
| 1026 | { |
| 1027 | struct ncsi_package *np; |
| 1028 | struct ncsi_channel *nc; |
| 1029 | unsigned long flags; |
| 1030 | |
| 1031 | /* Move all available channels to processing queue */ |
| 1032 | spin_lock_irqsave(&ndp->lock, flags); |
| 1033 | NCSI_FOR_EACH_PACKAGE(ndp, np) { |
| 1034 | NCSI_FOR_EACH_CHANNEL(np, nc) { |
| 1035 | WARN_ON_ONCE(nc->state != NCSI_CHANNEL_INACTIVE || |
| 1036 | !list_empty(&nc->link)); |
| 1037 | ncsi_stop_channel_monitor(nc); |
| 1038 | list_add_tail_rcu(&nc->link, &ndp->channel_queue); |
| 1039 | } |
| 1040 | } |
| 1041 | spin_unlock_irqrestore(&ndp->lock, flags); |
| 1042 | |
| 1043 | /* We can have no channels in extremely case */ |
| 1044 | if (list_empty(&ndp->channel_queue)) { |
| 1045 | ncsi_report_link(ndp, false); |
| 1046 | return -ENOENT; |
| 1047 | } |
| 1048 | |
| 1049 | return ncsi_process_next_channel(ndp); |
| 1050 | } |
| 1051 | |
| 1052 | static void ncsi_probe_channel(struct ncsi_dev_priv *ndp) |
| 1053 | { |
| 1054 | struct ncsi_dev *nd = &ndp->ndev; |
| 1055 | struct ncsi_package *np; |
| 1056 | struct ncsi_channel *nc; |
| 1057 | struct ncsi_cmd_arg nca; |
| 1058 | unsigned char index; |
| 1059 | int ret; |
| 1060 | |
| 1061 | nca.ndp = ndp; |
Gavin Shan | a0509cb | 2016-10-04 11:25:51 +1100 | [diff] [blame] | 1062 | nca.req_flags = NCSI_REQ_FLAG_EVENT_DRIVEN; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1063 | switch (nd->state) { |
| 1064 | case ncsi_dev_state_probe: |
| 1065 | nd->state = ncsi_dev_state_probe_deselect; |
| 1066 | /* Fall through */ |
| 1067 | case ncsi_dev_state_probe_deselect: |
| 1068 | ndp->pending_req_num = 8; |
| 1069 | |
| 1070 | /* Deselect all possible packages */ |
| 1071 | nca.type = NCSI_PKT_CMD_DP; |
Gavin Shan | bc7e0f5 | 2016-10-04 11:25:48 +1100 | [diff] [blame] | 1072 | nca.channel = NCSI_RESERVED_CHANNEL; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1073 | for (index = 0; index < 8; index++) { |
| 1074 | nca.package = index; |
| 1075 | ret = ncsi_xmit_cmd(&nca); |
| 1076 | if (ret) |
| 1077 | goto error; |
| 1078 | } |
| 1079 | |
| 1080 | nd->state = ncsi_dev_state_probe_package; |
| 1081 | break; |
| 1082 | case ncsi_dev_state_probe_package: |
| 1083 | ndp->pending_req_num = 16; |
| 1084 | |
| 1085 | /* Select all possible packages */ |
| 1086 | nca.type = NCSI_PKT_CMD_SP; |
| 1087 | nca.bytes[0] = 1; |
Gavin Shan | bc7e0f5 | 2016-10-04 11:25:48 +1100 | [diff] [blame] | 1088 | nca.channel = NCSI_RESERVED_CHANNEL; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1089 | for (index = 0; index < 8; index++) { |
| 1090 | nca.package = index; |
| 1091 | ret = ncsi_xmit_cmd(&nca); |
| 1092 | if (ret) |
| 1093 | goto error; |
| 1094 | } |
| 1095 | |
| 1096 | /* Disable all possible packages */ |
| 1097 | nca.type = NCSI_PKT_CMD_DP; |
| 1098 | for (index = 0; index < 8; index++) { |
| 1099 | nca.package = index; |
| 1100 | ret = ncsi_xmit_cmd(&nca); |
| 1101 | if (ret) |
| 1102 | goto error; |
| 1103 | } |
| 1104 | |
| 1105 | nd->state = ncsi_dev_state_probe_channel; |
| 1106 | break; |
| 1107 | case ncsi_dev_state_probe_channel: |
| 1108 | if (!ndp->active_package) |
| 1109 | ndp->active_package = list_first_or_null_rcu( |
| 1110 | &ndp->packages, struct ncsi_package, node); |
| 1111 | else if (list_is_last(&ndp->active_package->node, |
| 1112 | &ndp->packages)) |
| 1113 | ndp->active_package = NULL; |
| 1114 | else |
| 1115 | ndp->active_package = list_next_entry( |
| 1116 | ndp->active_package, node); |
| 1117 | |
| 1118 | /* All available packages and channels are enumerated. The |
| 1119 | * enumeration happens for once when the NCSI interface is |
| 1120 | * started. So we need continue to start the interface after |
| 1121 | * the enumeration. |
| 1122 | * |
| 1123 | * We have to choose an active channel before configuring it. |
| 1124 | * Note that we possibly don't have active channel in extreme |
| 1125 | * situation. |
| 1126 | */ |
| 1127 | if (!ndp->active_package) { |
| 1128 | ndp->flags |= NCSI_DEV_PROBED; |
| 1129 | if (ncsi_check_hwa(ndp)) |
| 1130 | ncsi_enable_hwa(ndp); |
| 1131 | else |
| 1132 | ncsi_choose_active_channel(ndp); |
| 1133 | return; |
| 1134 | } |
| 1135 | |
| 1136 | /* Select the active package */ |
| 1137 | ndp->pending_req_num = 1; |
| 1138 | nca.type = NCSI_PKT_CMD_SP; |
| 1139 | nca.bytes[0] = 1; |
| 1140 | nca.package = ndp->active_package->id; |
Gavin Shan | bc7e0f5 | 2016-10-04 11:25:48 +1100 | [diff] [blame] | 1141 | nca.channel = NCSI_RESERVED_CHANNEL; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1142 | ret = ncsi_xmit_cmd(&nca); |
| 1143 | if (ret) |
| 1144 | goto error; |
| 1145 | |
| 1146 | nd->state = ncsi_dev_state_probe_cis; |
| 1147 | break; |
| 1148 | case ncsi_dev_state_probe_cis: |
Gavin Shan | 55e02d0 | 2016-10-04 11:25:49 +1100 | [diff] [blame] | 1149 | ndp->pending_req_num = NCSI_RESERVED_CHANNEL; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1150 | |
| 1151 | /* Clear initial state */ |
| 1152 | nca.type = NCSI_PKT_CMD_CIS; |
| 1153 | nca.package = ndp->active_package->id; |
Gavin Shan | 55e02d0 | 2016-10-04 11:25:49 +1100 | [diff] [blame] | 1154 | for (index = 0; index < NCSI_RESERVED_CHANNEL; index++) { |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1155 | nca.channel = index; |
| 1156 | ret = ncsi_xmit_cmd(&nca); |
| 1157 | if (ret) |
| 1158 | goto error; |
| 1159 | } |
| 1160 | |
| 1161 | nd->state = ncsi_dev_state_probe_gvi; |
| 1162 | break; |
| 1163 | case ncsi_dev_state_probe_gvi: |
| 1164 | case ncsi_dev_state_probe_gc: |
| 1165 | case ncsi_dev_state_probe_gls: |
| 1166 | np = ndp->active_package; |
| 1167 | ndp->pending_req_num = np->channel_num; |
| 1168 | |
| 1169 | /* Retrieve version, capability or link status */ |
| 1170 | if (nd->state == ncsi_dev_state_probe_gvi) |
| 1171 | nca.type = NCSI_PKT_CMD_GVI; |
| 1172 | else if (nd->state == ncsi_dev_state_probe_gc) |
| 1173 | nca.type = NCSI_PKT_CMD_GC; |
| 1174 | else |
| 1175 | nca.type = NCSI_PKT_CMD_GLS; |
| 1176 | |
| 1177 | nca.package = np->id; |
| 1178 | NCSI_FOR_EACH_CHANNEL(np, nc) { |
| 1179 | nca.channel = nc->id; |
| 1180 | ret = ncsi_xmit_cmd(&nca); |
| 1181 | if (ret) |
| 1182 | goto error; |
| 1183 | } |
| 1184 | |
| 1185 | if (nd->state == ncsi_dev_state_probe_gvi) |
| 1186 | nd->state = ncsi_dev_state_probe_gc; |
| 1187 | else if (nd->state == ncsi_dev_state_probe_gc) |
| 1188 | nd->state = ncsi_dev_state_probe_gls; |
| 1189 | else |
| 1190 | nd->state = ncsi_dev_state_probe_dp; |
| 1191 | break; |
| 1192 | case ncsi_dev_state_probe_dp: |
| 1193 | ndp->pending_req_num = 1; |
| 1194 | |
| 1195 | /* Deselect the active package */ |
| 1196 | nca.type = NCSI_PKT_CMD_DP; |
| 1197 | nca.package = ndp->active_package->id; |
Gavin Shan | bc7e0f5 | 2016-10-04 11:25:48 +1100 | [diff] [blame] | 1198 | nca.channel = NCSI_RESERVED_CHANNEL; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1199 | ret = ncsi_xmit_cmd(&nca); |
| 1200 | if (ret) |
| 1201 | goto error; |
| 1202 | |
| 1203 | /* Scan channels in next package */ |
| 1204 | nd->state = ncsi_dev_state_probe_channel; |
| 1205 | break; |
| 1206 | default: |
| 1207 | netdev_warn(nd->dev, "Wrong NCSI state 0x%0x in enumeration\n", |
| 1208 | nd->state); |
| 1209 | } |
| 1210 | |
| 1211 | return; |
| 1212 | error: |
| 1213 | ncsi_report_link(ndp, true); |
| 1214 | } |
| 1215 | |
| 1216 | static void ncsi_dev_work(struct work_struct *work) |
| 1217 | { |
| 1218 | struct ncsi_dev_priv *ndp = container_of(work, |
| 1219 | struct ncsi_dev_priv, work); |
| 1220 | struct ncsi_dev *nd = &ndp->ndev; |
| 1221 | |
| 1222 | switch (nd->state & ncsi_dev_state_major) { |
| 1223 | case ncsi_dev_state_probe: |
| 1224 | ncsi_probe_channel(ndp); |
| 1225 | break; |
| 1226 | case ncsi_dev_state_suspend: |
| 1227 | ncsi_suspend_channel(ndp); |
| 1228 | break; |
| 1229 | case ncsi_dev_state_config: |
| 1230 | ncsi_configure_channel(ndp); |
| 1231 | break; |
| 1232 | default: |
| 1233 | netdev_warn(nd->dev, "Wrong NCSI state 0x%x in workqueue\n", |
| 1234 | nd->state); |
| 1235 | } |
| 1236 | } |
| 1237 | |
| 1238 | int ncsi_process_next_channel(struct ncsi_dev_priv *ndp) |
| 1239 | { |
| 1240 | struct ncsi_channel *nc; |
| 1241 | int old_state; |
| 1242 | unsigned long flags; |
| 1243 | |
| 1244 | spin_lock_irqsave(&ndp->lock, flags); |
| 1245 | nc = list_first_or_null_rcu(&ndp->channel_queue, |
| 1246 | struct ncsi_channel, link); |
Arnd Bergmann | a1b43ed | 2016-07-21 21:28:34 +0200 | [diff] [blame] | 1247 | if (!nc) { |
| 1248 | spin_unlock_irqrestore(&ndp->lock, flags); |
| 1249 | goto out; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1250 | } |
Arnd Bergmann | a1b43ed | 2016-07-21 21:28:34 +0200 | [diff] [blame] | 1251 | |
Arnd Bergmann | a1b43ed | 2016-07-21 21:28:34 +0200 | [diff] [blame] | 1252 | list_del_init(&nc->link); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1253 | spin_unlock_irqrestore(&ndp->lock, flags); |
| 1254 | |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 1255 | spin_lock_irqsave(&nc->lock, flags); |
| 1256 | old_state = nc->state; |
| 1257 | nc->state = NCSI_CHANNEL_INVISIBLE; |
| 1258 | spin_unlock_irqrestore(&nc->lock, flags); |
| 1259 | |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1260 | ndp->active_channel = nc; |
Arnd Bergmann | a1b43ed | 2016-07-21 21:28:34 +0200 | [diff] [blame] | 1261 | ndp->active_package = nc->package; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1262 | |
| 1263 | switch (old_state) { |
| 1264 | case NCSI_CHANNEL_INACTIVE: |
| 1265 | ndp->ndev.state = ncsi_dev_state_config; |
| 1266 | ncsi_configure_channel(ndp); |
| 1267 | break; |
| 1268 | case NCSI_CHANNEL_ACTIVE: |
| 1269 | ndp->ndev.state = ncsi_dev_state_suspend; |
| 1270 | ncsi_suspend_channel(ndp); |
| 1271 | break; |
| 1272 | default: |
| 1273 | netdev_err(ndp->ndev.dev, "Invalid state 0x%x on %d:%d\n", |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 1274 | old_state, nc->package->id, nc->id); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1275 | ncsi_report_link(ndp, false); |
| 1276 | return -EINVAL; |
| 1277 | } |
| 1278 | |
| 1279 | return 0; |
Arnd Bergmann | a1b43ed | 2016-07-21 21:28:34 +0200 | [diff] [blame] | 1280 | |
| 1281 | out: |
| 1282 | ndp->active_channel = NULL; |
| 1283 | ndp->active_package = NULL; |
| 1284 | if (ndp->flags & NCSI_DEV_RESHUFFLE) { |
| 1285 | ndp->flags &= ~NCSI_DEV_RESHUFFLE; |
| 1286 | return ncsi_choose_active_channel(ndp); |
| 1287 | } |
| 1288 | |
| 1289 | ncsi_report_link(ndp, false); |
| 1290 | return -ENODEV; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1291 | } |
| 1292 | |
| 1293 | #if IS_ENABLED(CONFIG_IPV6) |
| 1294 | static int ncsi_inet6addr_event(struct notifier_block *this, |
| 1295 | unsigned long event, void *data) |
| 1296 | { |
| 1297 | struct inet6_ifaddr *ifa = data; |
| 1298 | struct net_device *dev = ifa->idev->dev; |
| 1299 | struct ncsi_dev *nd = ncsi_find_dev(dev); |
| 1300 | struct ncsi_dev_priv *ndp = nd ? TO_NCSI_DEV_PRIV(nd) : NULL; |
| 1301 | struct ncsi_package *np; |
| 1302 | struct ncsi_channel *nc; |
| 1303 | struct ncsi_cmd_arg nca; |
| 1304 | bool action; |
| 1305 | int ret; |
| 1306 | |
| 1307 | if (!ndp || (ipv6_addr_type(&ifa->addr) & |
| 1308 | (IPV6_ADDR_LINKLOCAL | IPV6_ADDR_LOOPBACK))) |
| 1309 | return NOTIFY_OK; |
| 1310 | |
| 1311 | switch (event) { |
| 1312 | case NETDEV_UP: |
| 1313 | action = (++ndp->inet6_addr_num) == 1; |
| 1314 | nca.type = NCSI_PKT_CMD_EGMF; |
| 1315 | break; |
| 1316 | case NETDEV_DOWN: |
| 1317 | action = (--ndp->inet6_addr_num == 0); |
| 1318 | nca.type = NCSI_PKT_CMD_DGMF; |
| 1319 | break; |
| 1320 | default: |
| 1321 | return NOTIFY_OK; |
| 1322 | } |
| 1323 | |
| 1324 | /* We might not have active channel or packages. The IPv6 |
| 1325 | * required multicast will be enabled when active channel |
| 1326 | * or packages are chosen. |
| 1327 | */ |
| 1328 | np = ndp->active_package; |
| 1329 | nc = ndp->active_channel; |
| 1330 | if (!action || !np || !nc) |
| 1331 | return NOTIFY_OK; |
| 1332 | |
| 1333 | /* We needn't enable or disable it if the function isn't supported */ |
| 1334 | if (!(nc->caps[NCSI_CAP_GENERIC].cap & NCSI_CAP_GENERIC_MC)) |
| 1335 | return NOTIFY_OK; |
| 1336 | |
| 1337 | nca.ndp = ndp; |
Gavin Shan | a0509cb | 2016-10-04 11:25:51 +1100 | [diff] [blame] | 1338 | nca.req_flags = 0; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1339 | nca.package = np->id; |
| 1340 | nca.channel = nc->id; |
| 1341 | nca.dwords[0] = nc->caps[NCSI_CAP_MC].cap; |
| 1342 | ret = ncsi_xmit_cmd(&nca); |
| 1343 | if (ret) { |
| 1344 | netdev_warn(dev, "Fail to %s global multicast filter (%d)\n", |
| 1345 | (event == NETDEV_UP) ? "enable" : "disable", ret); |
| 1346 | return NOTIFY_DONE; |
| 1347 | } |
| 1348 | |
| 1349 | return NOTIFY_OK; |
| 1350 | } |
| 1351 | |
| 1352 | static struct notifier_block ncsi_inet6addr_notifier = { |
| 1353 | .notifier_call = ncsi_inet6addr_event, |
| 1354 | }; |
| 1355 | #endif /* CONFIG_IPV6 */ |
| 1356 | |
Samuel Mendoza-Jonas | 21acf63 | 2017-08-28 16:18:42 +1000 | [diff] [blame] | 1357 | static int ncsi_kick_channels(struct ncsi_dev_priv *ndp) |
| 1358 | { |
| 1359 | struct ncsi_dev *nd = &ndp->ndev; |
| 1360 | struct ncsi_channel *nc; |
| 1361 | struct ncsi_package *np; |
| 1362 | unsigned long flags; |
| 1363 | unsigned int n = 0; |
| 1364 | |
| 1365 | NCSI_FOR_EACH_PACKAGE(ndp, np) { |
| 1366 | NCSI_FOR_EACH_CHANNEL(np, nc) { |
| 1367 | spin_lock_irqsave(&nc->lock, flags); |
| 1368 | |
| 1369 | /* Channels may be busy, mark dirty instead of |
| 1370 | * kicking if; |
| 1371 | * a) not ACTIVE (configured) |
| 1372 | * b) in the channel_queue (to be configured) |
| 1373 | * c) it's ndev is in the config state |
| 1374 | */ |
| 1375 | if (nc->state != NCSI_CHANNEL_ACTIVE) { |
| 1376 | if ((ndp->ndev.state & 0xff00) == |
| 1377 | ncsi_dev_state_config || |
| 1378 | !list_empty(&nc->link)) { |
| 1379 | netdev_printk(KERN_DEBUG, nd->dev, |
| 1380 | "ncsi: channel %p marked dirty\n", |
| 1381 | nc); |
| 1382 | nc->reconfigure_needed = true; |
| 1383 | } |
| 1384 | spin_unlock_irqrestore(&nc->lock, flags); |
| 1385 | continue; |
| 1386 | } |
| 1387 | |
| 1388 | spin_unlock_irqrestore(&nc->lock, flags); |
| 1389 | |
| 1390 | ncsi_stop_channel_monitor(nc); |
| 1391 | spin_lock_irqsave(&nc->lock, flags); |
| 1392 | nc->state = NCSI_CHANNEL_INACTIVE; |
| 1393 | spin_unlock_irqrestore(&nc->lock, flags); |
| 1394 | |
| 1395 | spin_lock_irqsave(&ndp->lock, flags); |
| 1396 | list_add_tail_rcu(&nc->link, &ndp->channel_queue); |
| 1397 | spin_unlock_irqrestore(&ndp->lock, flags); |
| 1398 | |
| 1399 | netdev_printk(KERN_DEBUG, nd->dev, |
| 1400 | "ncsi: kicked channel %p\n", nc); |
| 1401 | n++; |
| 1402 | } |
| 1403 | } |
| 1404 | |
| 1405 | return n; |
| 1406 | } |
| 1407 | |
| 1408 | int ncsi_vlan_rx_add_vid(struct net_device *dev, __be16 proto, u16 vid) |
| 1409 | { |
Samuel Mendoza-Jonas | 21acf63 | 2017-08-28 16:18:42 +1000 | [diff] [blame] | 1410 | struct ncsi_dev_priv *ndp; |
| 1411 | unsigned int n_vids = 0; |
| 1412 | struct vlan_vid *vlan; |
| 1413 | struct ncsi_dev *nd; |
| 1414 | bool found = false; |
| 1415 | |
| 1416 | if (vid == 0) |
| 1417 | return 0; |
| 1418 | |
| 1419 | nd = ncsi_find_dev(dev); |
| 1420 | if (!nd) { |
| 1421 | netdev_warn(dev, "ncsi: No net_device?\n"); |
| 1422 | return 0; |
| 1423 | } |
| 1424 | |
| 1425 | ndp = TO_NCSI_DEV_PRIV(nd); |
Samuel Mendoza-Jonas | 21acf63 | 2017-08-28 16:18:42 +1000 | [diff] [blame] | 1426 | |
| 1427 | /* Add the VLAN id to our internal list */ |
| 1428 | list_for_each_entry_rcu(vlan, &ndp->vlan_vids, list) { |
| 1429 | n_vids++; |
| 1430 | if (vlan->vid == vid) { |
| 1431 | netdev_printk(KERN_DEBUG, dev, |
| 1432 | "vid %u already registered\n", vid); |
| 1433 | return 0; |
| 1434 | } |
| 1435 | } |
Samuel Mendoza-Jonas | 6e9c007 | 2017-10-11 16:54:27 +1100 | [diff] [blame^] | 1436 | if (n_vids >= NCSI_MAX_VLAN_VIDS) { |
| 1437 | netdev_warn(dev, |
| 1438 | "tried to add vlan id %u but NCSI max already registered (%u)\n", |
| 1439 | vid, NCSI_MAX_VLAN_VIDS); |
| 1440 | return -ENOSPC; |
Samuel Mendoza-Jonas | 21acf63 | 2017-08-28 16:18:42 +1000 | [diff] [blame] | 1441 | } |
| 1442 | |
| 1443 | vlan = kzalloc(sizeof(*vlan), GFP_KERNEL); |
| 1444 | if (!vlan) |
| 1445 | return -ENOMEM; |
| 1446 | |
| 1447 | vlan->proto = proto; |
| 1448 | vlan->vid = vid; |
| 1449 | list_add_rcu(&vlan->list, &ndp->vlan_vids); |
| 1450 | |
| 1451 | netdev_printk(KERN_DEBUG, dev, "Added new vid %u\n", vid); |
| 1452 | |
| 1453 | found = ncsi_kick_channels(ndp) != 0; |
| 1454 | |
| 1455 | return found ? ncsi_process_next_channel(ndp) : 0; |
| 1456 | } |
Arnd Bergmann | fd0c88b | 2017-09-05 10:05:47 +0200 | [diff] [blame] | 1457 | EXPORT_SYMBOL_GPL(ncsi_vlan_rx_add_vid); |
Samuel Mendoza-Jonas | 21acf63 | 2017-08-28 16:18:42 +1000 | [diff] [blame] | 1458 | |
| 1459 | int ncsi_vlan_rx_kill_vid(struct net_device *dev, __be16 proto, u16 vid) |
| 1460 | { |
| 1461 | struct vlan_vid *vlan, *tmp; |
| 1462 | struct ncsi_dev_priv *ndp; |
| 1463 | struct ncsi_dev *nd; |
| 1464 | bool found = false; |
| 1465 | |
| 1466 | if (vid == 0) |
| 1467 | return 0; |
| 1468 | |
| 1469 | nd = ncsi_find_dev(dev); |
| 1470 | if (!nd) { |
| 1471 | netdev_warn(dev, "ncsi: no net_device?\n"); |
| 1472 | return 0; |
| 1473 | } |
| 1474 | |
| 1475 | ndp = TO_NCSI_DEV_PRIV(nd); |
| 1476 | |
| 1477 | /* Remove the VLAN id from our internal list */ |
| 1478 | list_for_each_entry_safe(vlan, tmp, &ndp->vlan_vids, list) |
| 1479 | if (vlan->vid == vid) { |
| 1480 | netdev_printk(KERN_DEBUG, dev, |
| 1481 | "vid %u found, removing\n", vid); |
| 1482 | list_del_rcu(&vlan->list); |
| 1483 | found = true; |
| 1484 | kfree(vlan); |
| 1485 | } |
| 1486 | |
| 1487 | if (!found) { |
| 1488 | netdev_err(dev, "ncsi: vid %u wasn't registered!\n", vid); |
| 1489 | return -EINVAL; |
| 1490 | } |
| 1491 | |
| 1492 | found = ncsi_kick_channels(ndp) != 0; |
| 1493 | |
| 1494 | return found ? ncsi_process_next_channel(ndp) : 0; |
| 1495 | } |
Arnd Bergmann | fd0c88b | 2017-09-05 10:05:47 +0200 | [diff] [blame] | 1496 | EXPORT_SYMBOL_GPL(ncsi_vlan_rx_kill_vid); |
Samuel Mendoza-Jonas | 21acf63 | 2017-08-28 16:18:42 +1000 | [diff] [blame] | 1497 | |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 1498 | struct ncsi_dev *ncsi_register_dev(struct net_device *dev, |
| 1499 | void (*handler)(struct ncsi_dev *ndev)) |
| 1500 | { |
| 1501 | struct ncsi_dev_priv *ndp; |
| 1502 | struct ncsi_dev *nd; |
| 1503 | unsigned long flags; |
| 1504 | int i; |
| 1505 | |
| 1506 | /* Check if the device has been registered or not */ |
| 1507 | nd = ncsi_find_dev(dev); |
| 1508 | if (nd) |
| 1509 | return nd; |
| 1510 | |
| 1511 | /* Create NCSI device */ |
| 1512 | ndp = kzalloc(sizeof(*ndp), GFP_ATOMIC); |
| 1513 | if (!ndp) |
| 1514 | return NULL; |
| 1515 | |
| 1516 | nd = &ndp->ndev; |
| 1517 | nd->state = ncsi_dev_state_registered; |
| 1518 | nd->dev = dev; |
| 1519 | nd->handler = handler; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1520 | ndp->pending_req_num = 0; |
| 1521 | INIT_LIST_HEAD(&ndp->channel_queue); |
Samuel Mendoza-Jonas | 21acf63 | 2017-08-28 16:18:42 +1000 | [diff] [blame] | 1522 | INIT_LIST_HEAD(&ndp->vlan_vids); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1523 | INIT_WORK(&ndp->work, ncsi_dev_work); |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 1524 | |
| 1525 | /* Initialize private NCSI device */ |
| 1526 | spin_lock_init(&ndp->lock); |
| 1527 | INIT_LIST_HEAD(&ndp->packages); |
Gavin Shan | a15af54 | 2016-10-04 11:25:50 +1100 | [diff] [blame] | 1528 | ndp->request_id = NCSI_REQ_START_IDX; |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 1529 | for (i = 0; i < ARRAY_SIZE(ndp->requests); i++) { |
| 1530 | ndp->requests[i].id = i; |
| 1531 | ndp->requests[i].ndp = ndp; |
| 1532 | setup_timer(&ndp->requests[i].timer, |
| 1533 | ncsi_request_timeout, |
| 1534 | (unsigned long)&ndp->requests[i]); |
| 1535 | } |
| 1536 | |
| 1537 | spin_lock_irqsave(&ncsi_dev_lock, flags); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1538 | #if IS_ENABLED(CONFIG_IPV6) |
| 1539 | ndp->inet6_addr_num = 0; |
| 1540 | if (list_empty(&ncsi_dev_list)) |
| 1541 | register_inet6addr_notifier(&ncsi_inet6addr_notifier); |
| 1542 | #endif |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 1543 | list_add_tail_rcu(&ndp->node, &ncsi_dev_list); |
| 1544 | spin_unlock_irqrestore(&ncsi_dev_lock, flags); |
| 1545 | |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1546 | /* Register NCSI packet Rx handler */ |
| 1547 | ndp->ptype.type = cpu_to_be16(ETH_P_NCSI); |
| 1548 | ndp->ptype.func = ncsi_rcv_rsp; |
| 1549 | ndp->ptype.dev = dev; |
| 1550 | dev_add_pack(&ndp->ptype); |
| 1551 | |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 1552 | return nd; |
| 1553 | } |
| 1554 | EXPORT_SYMBOL_GPL(ncsi_register_dev); |
| 1555 | |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1556 | int ncsi_start_dev(struct ncsi_dev *nd) |
| 1557 | { |
| 1558 | struct ncsi_dev_priv *ndp = TO_NCSI_DEV_PRIV(nd); |
Gavin Shan | c0cd1ba | 2016-10-04 11:25:53 +1100 | [diff] [blame] | 1559 | int ret; |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1560 | |
| 1561 | if (nd->state != ncsi_dev_state_registered && |
| 1562 | nd->state != ncsi_dev_state_functional) |
| 1563 | return -ENOTTY; |
| 1564 | |
| 1565 | if (!(ndp->flags & NCSI_DEV_PROBED)) { |
| 1566 | nd->state = ncsi_dev_state_probe; |
| 1567 | schedule_work(&ndp->work); |
| 1568 | return 0; |
| 1569 | } |
| 1570 | |
Gavin Shan | c0cd1ba | 2016-10-04 11:25:53 +1100 | [diff] [blame] | 1571 | if (ndp->flags & NCSI_DEV_HWA) |
| 1572 | ret = ncsi_enable_hwa(ndp); |
| 1573 | else |
| 1574 | ret = ncsi_choose_active_channel(ndp); |
| 1575 | |
| 1576 | return ret; |
| 1577 | } |
| 1578 | EXPORT_SYMBOL_GPL(ncsi_start_dev); |
| 1579 | |
| 1580 | void ncsi_stop_dev(struct ncsi_dev *nd) |
| 1581 | { |
| 1582 | struct ncsi_dev_priv *ndp = TO_NCSI_DEV_PRIV(nd); |
| 1583 | struct ncsi_package *np; |
| 1584 | struct ncsi_channel *nc; |
| 1585 | bool chained; |
| 1586 | int old_state; |
| 1587 | unsigned long flags; |
| 1588 | |
| 1589 | /* Stop the channel monitor and reset channel's state */ |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1590 | NCSI_FOR_EACH_PACKAGE(ndp, np) { |
| 1591 | NCSI_FOR_EACH_CHANNEL(np, nc) { |
Gavin Shan | c0cd1ba | 2016-10-04 11:25:53 +1100 | [diff] [blame] | 1592 | ncsi_stop_channel_monitor(nc); |
| 1593 | |
Gavin Shan | d8cedaa | 2016-10-04 11:25:47 +1100 | [diff] [blame] | 1594 | spin_lock_irqsave(&nc->lock, flags); |
| 1595 | chained = !list_empty(&nc->link); |
| 1596 | old_state = nc->state; |
| 1597 | nc->state = NCSI_CHANNEL_INACTIVE; |
| 1598 | spin_unlock_irqrestore(&nc->lock, flags); |
| 1599 | |
| 1600 | WARN_ON_ONCE(chained || |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1601 | old_state == NCSI_CHANNEL_INVISIBLE); |
| 1602 | } |
| 1603 | } |
| 1604 | |
Gavin Shan | c0cd1ba | 2016-10-04 11:25:53 +1100 | [diff] [blame] | 1605 | ncsi_report_link(ndp, true); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1606 | } |
Gavin Shan | c0cd1ba | 2016-10-04 11:25:53 +1100 | [diff] [blame] | 1607 | EXPORT_SYMBOL_GPL(ncsi_stop_dev); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1608 | |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 1609 | void ncsi_unregister_dev(struct ncsi_dev *nd) |
| 1610 | { |
| 1611 | struct ncsi_dev_priv *ndp = TO_NCSI_DEV_PRIV(nd); |
| 1612 | struct ncsi_package *np, *tmp; |
| 1613 | unsigned long flags; |
| 1614 | |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1615 | dev_remove_pack(&ndp->ptype); |
| 1616 | |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 1617 | list_for_each_entry_safe(np, tmp, &ndp->packages, node) |
| 1618 | ncsi_remove_package(np); |
| 1619 | |
| 1620 | spin_lock_irqsave(&ncsi_dev_lock, flags); |
| 1621 | list_del_rcu(&ndp->node); |
Gavin Shan | e6f44ed | 2016-07-19 11:54:19 +1000 | [diff] [blame] | 1622 | #if IS_ENABLED(CONFIG_IPV6) |
| 1623 | if (list_empty(&ncsi_dev_list)) |
| 1624 | unregister_inet6addr_notifier(&ncsi_inet6addr_notifier); |
| 1625 | #endif |
Gavin Shan | 2d283bd | 2016-07-19 11:54:16 +1000 | [diff] [blame] | 1626 | spin_unlock_irqrestore(&ncsi_dev_lock, flags); |
| 1627 | |
| 1628 | kfree(ndp); |
| 1629 | } |
| 1630 | EXPORT_SYMBOL_GPL(ncsi_unregister_dev); |