796e3668b9
Add TIM device init, fini which are used to attach TIM LF resources to the RVU PF/VF and TIM LF alloc and free. Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com> Acked-by: Nithin Dabilpuram <ndabilpuram@marvell.com>
36 lines
485 B
C
36 lines
485 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"
|
|
|
|
/* NPC */
|
|
#include "roc_npc_priv.h"
|
|
|
|
/* SSO */
|
|
#include "roc_sso_priv.h"
|
|
|
|
/* TIM */
|
|
#include "roc_tim_priv.h"
|
|
|
|
#endif /* _ROC_PRIV_H_ */
|