Tushar Mathur | 6650654 | 2014-04-03 22:01:40 +0530 | [diff] [blame] | 1 | /* |
| 2 | ************************************************************************** |
Sundarajan Srinivasan | 30a53d4 | 2015-01-30 10:52:08 -0800 | [diff] [blame] | 3 | * Copyright (c) 2014,2015, The Linux Foundation. All rights reserved. |
Tushar Mathur | 6650654 | 2014-04-03 22:01:40 +0530 | [diff] [blame] | 4 | * Permission to use, copy, modify, and/or distribute this software for |
| 5 | * any purpose with or without fee is hereby granted, provided that the |
| 6 | * above copyright notice and this permission notice appear in all copies. |
| 7 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 8 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 9 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 10 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 11 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 12 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 13 | * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 14 | ************************************************************************** |
| 15 | */ |
| 16 | |
| 17 | /* |
| 18 | * nss_tx_rx_lag.c |
| 19 | * NSS LAG Tx APIs |
| 20 | */ |
| 21 | |
| 22 | #include <linux/if_bonding.h> |
| 23 | |
| 24 | #include "nss_tx_rx_common.h" |
| 25 | |
| 26 | /* |
| 27 | * nss_lag_tx() |
Sol Kavy | cd1bd5c | 2014-04-04 11:09:44 -0700 | [diff] [blame] | 28 | * Transmit a LAG msg to the firmware. |
Tushar Mathur | 6650654 | 2014-04-03 22:01:40 +0530 | [diff] [blame] | 29 | */ |
| 30 | nss_tx_status_t nss_lag_tx(struct nss_ctx_instance *nss_ctx, struct nss_lag_msg *msg) |
| 31 | { |
| 32 | struct sk_buff *nbuf; |
| 33 | int32_t status; |
| 34 | struct nss_lag_msg *nm; |
| 35 | |
| 36 | nss_info("%p: NSS LAG Tx\n", nss_ctx); |
| 37 | |
| 38 | NSS_VERIFY_CTX_MAGIC(nss_ctx); |
| 39 | if (unlikely(nss_ctx->state != NSS_CORE_STATE_INITIALIZED)) { |
Sol Kavy | cd1bd5c | 2014-04-04 11:09:44 -0700 | [diff] [blame] | 40 | nss_warning("%p: LAG msg dropped as core not ready", nss_ctx); |
Tushar Mathur | 6650654 | 2014-04-03 22:01:40 +0530 | [diff] [blame] | 41 | return NSS_TX_FAILURE_NOT_READY; |
| 42 | } |
| 43 | |
Pamidipati, Vijay | b6e3884 | 2014-09-16 10:26:05 +0530 | [diff] [blame] | 44 | nbuf = dev_alloc_skb(NSS_NBUF_PAYLOAD_SIZE); |
Tushar Mathur | 6650654 | 2014-04-03 22:01:40 +0530 | [diff] [blame] | 45 | if (unlikely(!nbuf)) { |
Sundarajan Srinivasan | 62fee7e | 2015-01-22 11:13:10 -0800 | [diff] [blame] | 46 | NSS_PKT_STATS_INCREMENT(nss_ctx, &nss_ctx->nss_top->stats_drv[NSS_STATS_DRV_NBUF_ALLOC_FAILS]); |
Sol Kavy | cd1bd5c | 2014-04-04 11:09:44 -0700 | [diff] [blame] | 47 | nss_warning("%p: LAG msg dropped as command allocation failed", nss_ctx); |
Tushar Mathur | 6650654 | 2014-04-03 22:01:40 +0530 | [diff] [blame] | 48 | return NSS_TX_FAILURE; |
| 49 | } |
| 50 | |
| 51 | nm = (struct nss_lag_msg *)skb_put(nbuf, sizeof(struct nss_lag_msg)); |
| 52 | memcpy(nm, msg, sizeof(struct nss_lag_msg)); |
| 53 | |
| 54 | status = nss_core_send_buffer(nss_ctx, 0, nbuf, NSS_IF_CMD_QUEUE, H2N_BUFFER_CTRL, 0); |
| 55 | if (status != NSS_CORE_STATUS_SUCCESS) { |
Pamidipati, Vijay | b6e3884 | 2014-09-16 10:26:05 +0530 | [diff] [blame] | 56 | dev_kfree_skb_any(nbuf); |
Sol Kavy | cd1bd5c | 2014-04-04 11:09:44 -0700 | [diff] [blame] | 57 | nss_warning("%p: Unable to enqueue LAG msg\n", nss_ctx); |
| 58 | return NSS_TX_FAILURE; |
Tushar Mathur | 6650654 | 2014-04-03 22:01:40 +0530 | [diff] [blame] | 59 | } |
| 60 | nss_hal_send_interrupt(nss_ctx->nmap, nss_ctx->h2n_desc_rings[NSS_IF_CMD_QUEUE].desc_ring.int_bit, |
| 61 | NSS_REGS_H2N_INTR_STATUS_DATA_COMMAND_QUEUE); |
| 62 | |
| 63 | NSS_PKT_STATS_INCREMENT(nss_ctx, &nss_ctx->nss_top->stats_drv[NSS_STATS_DRV_TX_CMD_REQ]); |
| 64 | return NSS_TX_SUCCESS; |
| 65 | } |
| 66 | EXPORT_SYMBOL(nss_lag_tx); |
Tushar Mathur | a3e0305 | 2014-04-07 20:17:28 +0530 | [diff] [blame] | 67 | |
| 68 | /** |
| 69 | * nss_register_lag_if() |
| 70 | */ |
Gareth Williams | b52af51 | 2014-04-25 19:31:15 +0100 | [diff] [blame] | 71 | void *nss_register_lag_if(uint32_t if_num, |
Tushar Mathur | a3e0305 | 2014-04-07 20:17:28 +0530 | [diff] [blame] | 72 | nss_lag_callback_t lag_cb, |
| 73 | nss_lag_event_callback_t lag_ev_cb, |
| 74 | struct net_device *netdev) |
| 75 | { |
Sundarajan Srinivasan | 7037484 | 2014-11-19 15:22:52 -0800 | [diff] [blame] | 76 | uint32_t features = 0; |
| 77 | |
Murat Sezgin | 6bde581 | 2014-04-09 13:58:29 -0700 | [diff] [blame] | 78 | nss_assert((if_num == NSS_LAG0_INTERFACE_NUM) || (if_num == NSS_LAG1_INTERFACE_NUM)); |
Tushar Mathur | a3e0305 | 2014-04-07 20:17:28 +0530 | [diff] [blame] | 79 | |
Sundarajan Srinivasan | 7037484 | 2014-11-19 15:22:52 -0800 | [diff] [blame] | 80 | nss_top_main.subsys_dp_register[if_num].ndev = netdev; |
| 81 | nss_top_main.subsys_dp_register[if_num].cb = lag_cb; |
| 82 | nss_top_main.subsys_dp_register[if_num].app_data = NULL; |
| 83 | nss_top_main.subsys_dp_register[if_num].features = features; |
| 84 | |
Tushar Mathur | a3e0305 | 2014-04-07 20:17:28 +0530 | [diff] [blame] | 85 | nss_top_main.lag_event_callback = lag_ev_cb; |
Gareth Williams | b52af51 | 2014-04-25 19:31:15 +0100 | [diff] [blame] | 86 | |
| 87 | /* |
| 88 | * Return the NSS driver context for LAG (same as for ipv4 functions) |
| 89 | */ |
| 90 | return (void *)&nss_top_main.nss[nss_top_main.ipv4_handler_id]; |
Tushar Mathur | a3e0305 | 2014-04-07 20:17:28 +0530 | [diff] [blame] | 91 | } |
| 92 | EXPORT_SYMBOL(nss_register_lag_if); |
| 93 | |
| 94 | |
| 95 | /** |
| 96 | * nss_unregister_lag_if() |
| 97 | */ |
| 98 | void nss_unregister_lag_if(uint32_t if_num) |
| 99 | { |
Sakthi Vignesh Radhakrishnan | d98ae98 | 2014-04-08 17:35:21 -0700 | [diff] [blame] | 100 | nss_assert((if_num == NSS_LAG0_INTERFACE_NUM) || (if_num == NSS_LAG1_INTERFACE_NUM)); |
Tushar Mathur | a3e0305 | 2014-04-07 20:17:28 +0530 | [diff] [blame] | 101 | |
Sundarajan Srinivasan | 7037484 | 2014-11-19 15:22:52 -0800 | [diff] [blame] | 102 | nss_top_main.subsys_dp_register[if_num].cb = NULL; |
| 103 | nss_top_main.subsys_dp_register[if_num].ndev = NULL; |
| 104 | nss_top_main.subsys_dp_register[if_num].app_data = NULL; |
| 105 | nss_top_main.subsys_dp_register[if_num].features = 0; |
| 106 | |
Tushar Mathur | a3e0305 | 2014-04-07 20:17:28 +0530 | [diff] [blame] | 107 | nss_top_main.lag_event_callback = NULL; |
| 108 | } |
| 109 | EXPORT_SYMBOL(nss_unregister_lag_if); |
| 110 | |
| 111 | |
| 112 | /** |
| 113 | * nss_lag_handler() |
| 114 | */ |
| 115 | void nss_lag_handler(struct nss_ctx_instance *nss_ctx, |
| 116 | struct nss_cmn_msg *ncm, |
| 117 | void *app_data) |
| 118 | { |
| 119 | struct nss_lag_msg *lm = (struct nss_lag_msg *)ncm; |
| 120 | void *ctx = NULL; |
| 121 | nss_lag_event_callback_t cb; |
| 122 | |
| 123 | BUG_ON(ncm->interface != NSS_LAG0_INTERFACE_NUM |
| 124 | && ncm->interface != NSS_LAG1_INTERFACE_NUM); |
| 125 | |
| 126 | if (ncm->type >= NSS_TX_METADATA_LAG_MAX) { |
| 127 | nss_warning("%p: received invalid message %d for LAG interface", nss_ctx, ncm->type); |
| 128 | return; |
| 129 | } |
| 130 | |
| 131 | if (ncm->len > sizeof(struct nss_lag_msg)) { |
| 132 | nss_warning("%p: invalid length for LAG message: %d", nss_ctx, ncm->len); |
| 133 | return; |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * Update the callback and app_data for NOTIFY messages. |
| 138 | * LAG sends all notify messages to the same callback. |
| 139 | */ |
| 140 | if (ncm->response == NSS_CMM_RESPONSE_NOTIFY) { |
| 141 | ncm->cb = (uint32_t)nss_ctx->nss_top->lag_event_callback; |
| 142 | } |
| 143 | |
| 144 | /** |
| 145 | * Log failures |
| 146 | */ |
| 147 | nss_core_log_msg_failures(nss_ctx, ncm); |
| 148 | |
| 149 | /** |
| 150 | * Do we have a call back |
| 151 | */ |
| 152 | if (!ncm->cb) { |
| 153 | return; |
| 154 | } |
| 155 | |
| 156 | /** |
| 157 | * callback |
| 158 | */ |
| 159 | cb = (nss_lag_event_callback_t)ncm->cb; |
Sundarajan Srinivasan | 7037484 | 2014-11-19 15:22:52 -0800 | [diff] [blame] | 160 | ctx = nss_ctx->nss_top->subsys_dp_register[ncm->interface].ndev; |
Tushar Mathur | a3e0305 | 2014-04-07 20:17:28 +0530 | [diff] [blame] | 161 | |
| 162 | cb(ctx, lm); |
| 163 | } |
| 164 | |
| 165 | |
| 166 | /** |
| 167 | * nss_lag_register_handler() |
| 168 | */ |
| 169 | void nss_lag_register_handler(void) |
| 170 | { |
| 171 | nss_core_register_handler(NSS_LAG0_INTERFACE_NUM, nss_lag_handler, NULL); |
| 172 | nss_core_register_handler(NSS_LAG1_INTERFACE_NUM, nss_lag_handler, NULL); |
| 173 | } |
| 174 | |
Sundarajan Srinivasan | 02e6c2b | 2014-10-06 11:51:12 -0700 | [diff] [blame] | 175 | /** |
| 176 | * nss_lag_msg_init() |
| 177 | * Initialize lag message |
| 178 | */ |
| 179 | void nss_lag_msg_init(struct nss_lag_msg *nlm, uint16_t lag_num, uint32_t type, uint32_t len, |
Sundarajan Srinivasan | 30a53d4 | 2015-01-30 10:52:08 -0800 | [diff] [blame] | 180 | nss_lag_callback_t cb, void *app_data) |
Sundarajan Srinivasan | 02e6c2b | 2014-10-06 11:51:12 -0700 | [diff] [blame] | 181 | { |
| 182 | nss_cmn_msg_init(&nlm->cm, lag_num, type, len, (void *)cb, app_data); |
| 183 | } |
| 184 | EXPORT_SYMBOL(nss_lag_msg_init); |