blob: a39bd366e8e6342e5248e34ff593eeb24107dd10 [file] [log] [blame]
Tushar Mathur66506542014-04-03 22:01:40 +05301/*
2 **************************************************************************
3 * Copyright (c) 2014, The Linux Foundation. All rights reserved.
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 Kavycd1bd5c2014-04-04 11:09:44 -070028 * Transmit a LAG msg to the firmware.
Tushar Mathur66506542014-04-03 22:01:40 +053029 */
30nss_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 Kavycd1bd5c2014-04-04 11:09:44 -070040 nss_warning("%p: LAG msg dropped as core not ready", nss_ctx);
Tushar Mathur66506542014-04-03 22:01:40 +053041 return NSS_TX_FAILURE_NOT_READY;
42 }
43
44 nbuf = dev_alloc_skb(NSS_NBUF_PAYLOAD_SIZE);
45 if (unlikely(!nbuf)) {
46 spin_lock_bh(&nss_ctx->nss_top->stats_lock);
47 nss_ctx->nss_top->stats_drv[NSS_STATS_DRV_NBUF_ALLOC_FAILS]++;
48 spin_unlock_bh(&nss_ctx->nss_top->stats_lock);
Sol Kavycd1bd5c2014-04-04 11:09:44 -070049 nss_warning("%p: LAG msg dropped as command allocation failed", nss_ctx);
Tushar Mathur66506542014-04-03 22:01:40 +053050 return NSS_TX_FAILURE;
51 }
52
53 nm = (struct nss_lag_msg *)skb_put(nbuf, sizeof(struct nss_lag_msg));
54 memcpy(nm, msg, sizeof(struct nss_lag_msg));
55
56 status = nss_core_send_buffer(nss_ctx, 0, nbuf, NSS_IF_CMD_QUEUE, H2N_BUFFER_CTRL, 0);
57 if (status != NSS_CORE_STATUS_SUCCESS) {
58 dev_kfree_skb_any(nbuf);
Sol Kavycd1bd5c2014-04-04 11:09:44 -070059 nss_warning("%p: Unable to enqueue LAG msg\n", nss_ctx);
60 return NSS_TX_FAILURE;
Tushar Mathur66506542014-04-03 22:01:40 +053061 }
62 nss_hal_send_interrupt(nss_ctx->nmap, nss_ctx->h2n_desc_rings[NSS_IF_CMD_QUEUE].desc_ring.int_bit,
63 NSS_REGS_H2N_INTR_STATUS_DATA_COMMAND_QUEUE);
64
65 NSS_PKT_STATS_INCREMENT(nss_ctx, &nss_ctx->nss_top->stats_drv[NSS_STATS_DRV_TX_CMD_REQ]);
66 return NSS_TX_SUCCESS;
67}
68EXPORT_SYMBOL(nss_lag_tx);