8dcdf319dd
Add base nix support as ROC(Rest of Chip) API which will be used by generic ETHDEV PMD(net/cnxk). This patch adds support to device init, fini, resource alloc and free API which sets up a ETHDEV PCI device of either CN9K or CN10K Marvell SoC. Signed-off-by: Jerin Jacob <jerinj@marvell.com> Signed-off-by: Sunil Kumar Kori <skori@marvell.com> Signed-off-by: Satha Rao <skoteshwar@marvell.com>
27 lines
374 B
C
27 lines
374 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(C) 2021 Marvell.
|
|
*/
|
|
|
|
#ifndef _ROC_PRIV_H_
|
|
#define _ROC_PRIV_H_
|
|
|
|
/* Utils */
|
|
#include "roc_util_priv.h"
|
|
|
|
/* Mbox */
|
|
#include "roc_mbox_priv.h"
|
|
|
|
/* NPA */
|
|
#include "roc_npa_priv.h"
|
|
|
|
/* Dev */
|
|
#include "roc_dev_priv.h"
|
|
|
|
/* idev */
|
|
#include "roc_idev_priv.h"
|
|
|
|
/* NIX */
|
|
#include "roc_nix_priv.h"
|
|
|
|
#endif /* _ROC_PRIV_H_ */
|