net: microchip: sparx5: Adding IS2 VCAP model to VCAP API
This provides the Sparx5 Ingress Stage 2 (IS2) model and adds it to the VCAP control instance that will be provided to the VCAP API. The Sparx5 IS2 C code model is generated from the Sparx5 RTL design model. Signed-off-by: Steen Hegelund <steen.hegelund@microchip.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8beef08f46
commit
e8145e0685
@ -9,7 +9,7 @@ sparx5-switch-y := sparx5_main.o sparx5_packet.o \
|
||||
sparx5_netdev.o sparx5_phylink.o sparx5_port.o sparx5_mactable.o sparx5_vlan.o \
|
||||
sparx5_switchdev.o sparx5_calendar.o sparx5_ethtool.o sparx5_fdma.o \
|
||||
sparx5_ptp.o sparx5_pgid.o sparx5_tc.o sparx5_qos.o \
|
||||
sparx5_vcap_impl.o
|
||||
sparx5_vcap_impl.o sparx5_vcap_ag_api.o
|
||||
|
||||
# Provide include files
|
||||
ccflags-y += -I$(srctree)/drivers/net/ethernet/microchip/vcap
|
||||
|
1351
drivers/net/ethernet/microchip/sparx5/sparx5_vcap_ag_api.c
Normal file
1351
drivers/net/ethernet/microchip/sparx5/sparx5_vcap_ag_api.c
Normal file
File diff suppressed because it is too large
Load Diff
18
drivers/net/ethernet/microchip/sparx5/sparx5_vcap_ag_api.h
Normal file
18
drivers/net/ethernet/microchip/sparx5/sparx5_vcap_ag_api.h
Normal file
@ -0,0 +1,18 @@
|
||||
/* SPDX-License-Identifier: BSD-3-Clause */
|
||||
/* Copyright (C) 2022 Microchip Technology Inc. and its subsidiaries.
|
||||
* Microchip VCAP API
|
||||
*/
|
||||
|
||||
/* This file is autogenerated by cml-utils 2022-10-13 10:04:41 +0200.
|
||||
* Commit ID: fd7cafd175899f0672c73afb3a30fc872500ae86
|
||||
*/
|
||||
|
||||
#ifndef __SPARX5_VCAP_AG_API_H__
|
||||
#define __SPARX5_VCAP_AG_API_H__
|
||||
|
||||
/* VCAPs */
|
||||
extern const struct vcap_info sparx5_vcaps[];
|
||||
extern const struct vcap_statistics sparx5_vcap_stats;
|
||||
|
||||
#endif /* __SPARX5_VCAP_AG_API_H__ */
|
||||
|
@ -13,6 +13,7 @@
|
||||
#include "vcap_api.h"
|
||||
#include "sparx5_main_regs.h"
|
||||
#include "sparx5_main.h"
|
||||
#include "sparx5_vcap_ag_api.h"
|
||||
|
||||
/* Allocate a vcap control and vcap instances and configure the system */
|
||||
int sparx5_vcap_init(struct sparx5 *sparx5)
|
||||
@ -28,6 +29,9 @@ int sparx5_vcap_init(struct sparx5 *sparx5)
|
||||
return -ENOMEM;
|
||||
|
||||
sparx5->vcap_ctrl = ctrl;
|
||||
/* select the sparx5 VCAP model */
|
||||
ctrl->vcaps = sparx5_vcaps;
|
||||
ctrl->stats = &sparx5_vcap_stats;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user