blob: 8153a4653316254ed576a10e614a872d91d8abb3 [file] [log] [blame]
/*
**************************************************************************
* Copyright (c) 2019-2020, The Linux Foundation. All rights reserved.
* Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the
* above copyright notice and this permission notice appear in all copies.
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
**************************************************************************
*/
#include "nss_tx_rx_common.h"
#include "nss_igs_stats.h"
#if (LINUX_VERSION_CODE < KERNEL_VERSION(5, 4, 0))
#ifdef CONFIG_NET_CLS_ACT
#include <linux/tc_act/tc_nss_mirred.h>
#endif
#endif
static struct module *nss_igs_module;
/*
* nss_igs_verify_if_num()
* Verify interface number passed to us.
*/
bool nss_igs_verify_if_num(uint32_t if_num)
{
enum nss_dynamic_interface_type if_type;
if_type = nss_dynamic_interface_get_type(nss_igs_get_context(), if_num);
if (if_type == NSS_DYNAMIC_INTERFACE_TYPE_IGS) {
return true;
}
return false;
}
EXPORT_SYMBOL(nss_igs_verify_if_num);
/*
* nss_igs_handler()
* Handle NSS -> HLOS messages for igs device
*/
static void nss_igs_handler(struct nss_ctx_instance *nss_ctx, struct nss_cmn_msg *ncm,
void *app_data)
{
void *ctx;
nss_igs_msg_callback_t cb;
NSS_VERIFY_CTX_MAGIC(nss_ctx);
BUG_ON(!nss_igs_verify_if_num(ncm->interface));
/*
* Is this a valid request/response packet?
*/
if (ncm->type >= NSS_IGS_MSG_MAX) {
nss_warning("%px: received invalid message %d for IGS interface", nss_ctx, ncm->type);
return;
}
if (nss_cmn_get_msg_len(ncm) > sizeof(struct nss_igs_msg)) {
nss_warning("%px: tx request for another interface: %d", nss_ctx, ncm->interface);
return;
}
switch (ncm->type) {
case NSS_IGS_MSG_SYNC_STATS:
/*
* Debug stats embedded in stats msg.
*/
nss_igs_stats_sync(nss_ctx, ncm, ncm->interface);
break;
}
/*
* Update the callback and app_data for NOTIFY messages
*/
if (ncm->response == NSS_CMN_RESPONSE_NOTIFY) {
ncm->cb = (nss_ptr_t)nss_core_get_msg_handler(nss_ctx, ncm->interface);
ncm->app_data = (nss_ptr_t)app_data;
}
/*
* callback
*/
cb = (nss_igs_msg_callback_t)ncm->cb;
ctx = (void *)ncm->app_data;
/*
* call igs callback
*/
if (!cb) {
nss_warning("%px: No callback for igs interface %d",
nss_ctx, ncm->interface);
return;
}
cb(ctx, ncm);
}
/*
* nss_igs_unregister_if()
* Un-registers IGS interface from the NSS firmware.
*/
void nss_igs_unregister_if(uint32_t if_num)
{
struct nss_ctx_instance *nss_ctx = (struct nss_ctx_instance *)&nss_top_main.nss[nss_top_main.igs_handler_id];
uint32_t status;
nss_assert(nss_ctx);
nss_assert(nss_igs_verify_if_num(if_num));
nss_core_unregister_subsys_dp(nss_ctx, if_num);
nss_core_unregister_handler(nss_ctx, if_num);
status = nss_core_unregister_msg_handler(nss_ctx, if_num);
if (status != NSS_CORE_STATUS_SUCCESS) {
nss_warning("%px: Not able to unregister handler for interface %d with NSS core\n", nss_ctx, if_num);
}
nss_igs_stats_reset(if_num);
}
EXPORT_SYMBOL(nss_igs_unregister_if);
/*
* nss_igs_register_if()
* Registers the IGS interface with NSS FW.
*/
struct nss_ctx_instance *nss_igs_register_if(uint32_t if_num, uint32_t type,
nss_igs_msg_callback_t event_callback, struct net_device *netdev,
uint32_t features)
{
struct nss_ctx_instance *nss_ctx = (struct nss_ctx_instance *)&nss_top_main.nss[nss_top_main.igs_handler_id];
uint32_t status;
nss_assert(nss_ctx);
nss_assert(nss_igs_verify_if_num(if_num));
nss_core_register_handler(nss_ctx, if_num, nss_igs_handler, netdev);
status = nss_core_register_msg_handler(nss_ctx, if_num, event_callback);
if (status != NSS_CORE_STATUS_SUCCESS) {
nss_core_unregister_handler(nss_ctx, if_num);
nss_warning("%px: Not able to register handler for interface %d with NSS core\n", nss_ctx, if_num);
return NULL;
}
nss_core_register_subsys_dp(nss_ctx, if_num, NULL, 0, netdev, netdev, features);
nss_core_set_subsys_dp_type(nss_ctx, netdev, if_num, type);
nss_igs_stats_dentry_create();
nss_igs_stats_init(if_num, netdev);
return nss_ctx;
}
EXPORT_SYMBOL(nss_igs_register_if);
/*
* nss_igs_get_context()
* Get the IGS context.
*/
struct nss_ctx_instance *nss_igs_get_context()
{
return (struct nss_ctx_instance *)&nss_top_main.nss[nss_top_main.igs_handler_id];
}
EXPORT_SYMBOL(nss_igs_get_context);
#ifdef CONFIG_NET_CLS_ACT
/*
* nss_igs_module_save()
* Save the ingress shaping module reference.
*/
void nss_igs_module_save(struct tc_action_ops *act, struct module *module)
{
nss_assert(act);
nss_assert(act->type == TCA_ACT_MIRRED_NSS);
nss_igs_module = module;
}
EXPORT_SYMBOL(nss_igs_module_save);
#endif
/*
* nss_igs_module_get()
* Get the ingress shaping module reference.
*/
bool nss_igs_module_get()
{
nss_assert(nss_igs_module);
return try_module_get(nss_igs_module);
}
EXPORT_SYMBOL(nss_igs_module_get);
/*
* nss_igs_module_put()
* Release the ingress shaping module reference.
*/
void nss_igs_module_put()
{
nss_assert(nss_igs_module);
module_put(nss_igs_module);
}
EXPORT_SYMBOL(nss_igs_module_put);