sonic-buildimage/platform/broadcom/saibcm-modules/sdklt/linux/knet/ngknet_dep.h
Mahesh Maddikayala bc2a13136a [BCMSAI] Update BCMSAI debian to 4.3.0.10 with 6.5.21 SDK, and opennsl module to 6.5.21 (#6526)
BCMSAI 4.3.0.10, 6.5.21 SDK release with enhancements and fixes for vxlan, TD3 MMU, TD4-X9 EA support, etc.
2021-02-05 16:08:04 -08:00

62 lines
1.7 KiB
C

/*! \file ngknet_dep.h
*
* Macro definitions for NGKNET dependence.
*
*/
/*
* $Copyright: Copyright 2018-2020 Broadcom. All rights reserved.
* The term 'Broadcom' refers to Broadcom Inc. and/or its subsidiaries.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* A copy of the GNU General Public License version 2 (GPLv2) can
* be found in the LICENSES folder.$
*/
#ifndef NGKNET_DEP_H
#define NGKNET_DEP_H
#include <shr/shr_error.h>
#include <ngknet_linux.h>
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
/*! Memorry barrier */
#define MEMORY_BARRIER smp_mb()
/*! CNET print uitility */
#define CNET_PR(fmt, args...) printk(fmt, ##args)
struct pdma_dev;
/*! Externs for the required functions. */
#define BCMDRD_DEVLIST_ENTRY(_nm,_vn,_dv,_rv,_md,_pi,_bd,_bc,_fn,_cn,_pf,_pd,_r0,_r1) \
extern int _bd##_cnet_pdma_attach(struct pdma_dev *dev); \
extern int _bd##_cnet_pdma_detach(struct pdma_dev *dev);
#include <bcmdrd/bcmdrd_devlist.h>
/*! Create enumeration values from list of supported devices. */
#define BCMDRD_DEVLIST_ENTRY(_nm,_vn,_dv,_rv,_md,_pi,_bd,_bc,_fn,_cn,_pf,_pd,_r0,_r1) \
NGKNET_DEV_T_##_bd,
/*! Enumeration for all base device types. */
typedef enum {
NGKNET_DEV_T_NONE = 0,
#include <bcmdrd/bcmdrd_devlist.h>
NGKNET_DEV_T_COUNT
} ngknet_dev_type_t;
#endif /* NGKNET_DEP_H */