On Mon, Jan 18, 2021 at 3:08 PM Nalla Pradeep <pna...@marvell.com> wrote: > > Adding bare minimum PMD library and doc build infrastructure > and claim the maintainership for octeontx end point PMD. > > Signed-off-by: Nalla Pradeep <pna...@marvell.com> > --- > MAINTAINERS | 9 +++++++ > doc/guides/nics/features/octeontx_ep.ini | 8 ++++++ > doc/guides/nics/index.rst | 1 + > doc/guides/nics/octeontx_ep.rst | 32 ++++++++++++++++++++++++ > drivers/net/meson.build | 1 + > drivers/net/octeontx_ep/meson.build | 8 ++++++ > drivers/net/octeontx_ep/otx_ep_ethdev.c | 3 +++ > drivers/net/octeontx_ep/version.map | 4 +++ > 8 files changed, 66 insertions(+)
> + > +The following options may be modified in the ``config`` file. > + > +- ``CONFIG_RTE_LIBRTE_OCTEONTX_EP_PMD`` (default ``y``) Stale stuff. Not valid for meson. > + > + Toggle compilation of the ``librte_pmd_octeontx_ep`` driver. > diff --git a/drivers/net/meson.build b/drivers/net/meson.build > index 4948500aef..007f6d889b 100644 > --- a/drivers/net/meson.build > +++ b/drivers/net/meson.build > @@ -39,6 +39,7 @@ drivers = ['af_packet', > 'null', > 'octeontx', > 'octeontx2', > + 'octeontx_ep', > 'pcap', > 'pfe', > 'qede', > diff --git a/drivers/net/octeontx_ep/meson.build > b/drivers/net/octeontx_ep/meson.build > new file mode 100644 > index 0000000000..83ffbad7b6 > --- /dev/null > +++ b/drivers/net/octeontx_ep/meson.build > @@ -0,0 +1,8 @@ > +# SPDX-License-Identifier: BSD-3-Clause > +# Copyright(C) 2020 Marvell. Change the copyright to 2021 > +# > + > +sources = files( > + 'otx_ep_ethdev.c', > + ) > + > diff --git a/drivers/net/octeontx_ep/otx_ep_ethdev.c > b/drivers/net/octeontx_ep/otx_ep_ethdev.c > new file mode 100644 > index 0000000000..2b2d684a0b > --- /dev/null > +++ b/drivers/net/octeontx_ep/otx_ep_ethdev.c > @@ -0,0 +1,3 @@ > +/* SPDX-License-Identifier: BSD-3-Clause > + * Copyright(C) 2020 Marvell. > + */ > diff --git a/drivers/net/octeontx_ep/version.map > b/drivers/net/octeontx_ep/version.map > new file mode 100644 > index 0000000000..f4db678dd5 > --- /dev/null > +++ b/drivers/net/octeontx_ep/version.map > @@ -0,0 +1,4 @@ > +DPDK_20.0 { 21 > + > + local: *; > +}; > -- > 2.17.1 >