mbox series

[v5,0/4] introduces the enetc PMD driver

Message ID 20181003133608.3605-1-g.singh@nxp.com (mailing list archive)
Headers
Series introduces the enetc PMD driver |

Message

Gagandeep Singh Oct. 3, 2018, 1:36 p.m. UTC
  *ENETC* PMD driver which integrates with the existing PCI bus.
Document is also part of the set

v4->v5 Change-log:
* missing commit info added in patch [3/4]
* dev_close API implemented
* link_update API updated
* all comments handled

v3->v4 Change-log:
* fixed patch set

v2->v3 Change-log:
* Added a release note
* commom part of documentation is removed
* cflag Werror added in Makefile
* private list of RX/TX queues removed
* added the dev_start and dev_stop APIs
* added rx/tx queue release APIs
* packet parse type feature enabled

v1->v2 Change-log:
* document improvement
* checkpatch warnings removed

Gagandeep Singh (4):
  net/enetc: add ENETC PMD with basic operations
  net/enetc: enable Rx and Tx
  net/enetc: support packet parse type
  doc: add usage doc for ENETC PMD

 MAINTAINERS                                 |   7 +
 config/common_base                          |   5 +
 config/common_linuxapp                      |   5 +
 doc/guides/nics/enetc.rst                   | 110 ++++
 doc/guides/nics/features/enetc.ini          |  11 +
 doc/guides/nics/index.rst                   |   1 +
 doc/guides/rel_notes/release_18_11.rst      |   5 +
 drivers/net/Makefile                        |   1 +
 drivers/net/enetc/Makefile                  |  23 +
 drivers/net/enetc/base/enetc_hw.h           | 226 +++++++
 drivers/net/enetc/enetc.h                   | 113 ++++
 drivers/net/enetc/enetc_ethdev.c            | 631 ++++++++++++++++++++
 drivers/net/enetc/enetc_logs.h              |  40 ++
 drivers/net/enetc/enetc_rxtx.c              | 239 ++++++++
 drivers/net/enetc/meson.build               |  11 +
 drivers/net/enetc/rte_pmd_enetc_version.map |   4 +
 drivers/net/meson.build                     |   1 +
 mk/rte.app.mk                               |   1 +
 18 files changed, 1434 insertions(+)
 create mode 100644 doc/guides/nics/enetc.rst
 create mode 100644 doc/guides/nics/features/enetc.ini
 create mode 100644 drivers/net/enetc/Makefile
 create mode 100644 drivers/net/enetc/base/enetc_hw.h
 create mode 100644 drivers/net/enetc/enetc.h
 create mode 100644 drivers/net/enetc/enetc_ethdev.c
 create mode 100644 drivers/net/enetc/enetc_logs.h
 create mode 100644 drivers/net/enetc/enetc_rxtx.c
 create mode 100644 drivers/net/enetc/meson.build
 create mode 100644 drivers/net/enetc/rte_pmd_enetc_version.map
  

Comments

Ferruh Yigit Oct. 3, 2018, 7:48 p.m. UTC | #1
On 10/3/2018 2:36 PM, Gagandeep Singh wrote:
> *ENETC* PMD driver which integrates with the existing PCI bus.
> Document is also part of the set
> 
> v4->v5 Change-log:
> * missing commit info added in patch [3/4]
> * dev_close API implemented
> * link_update API updated
> * all comments handled
> 
> v3->v4 Change-log:
> * fixed patch set
> 
> v2->v3 Change-log:
> * Added a release note
> * commom part of documentation is removed
> * cflag Werror added in Makefile
> * private list of RX/TX queues removed
> * added the dev_start and dev_stop APIs
> * added rx/tx queue release APIs
> * packet parse type feature enabled
> 
> v1->v2 Change-log:
> * document improvement
> * checkpatch warnings removed
> 
> Gagandeep Singh (4):
>   net/enetc: add ENETC PMD with basic operations
>   net/enetc: enable Rx and Tx
>   net/enetc: support packet parse type
>   doc: add usage doc for ENETC PMD

For series,
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>

Acked-by: Shreyansh Jain <shreyansh.jain@nxp.com>

Series applied to dpdk-next-net/master, thanks.
  
Ferruh Yigit Nov. 21, 2018, 5:36 p.m. UTC | #2
On 10/3/2018 8:48 PM, Ferruh Yigit wrote:
> On 10/3/2018 2:36 PM, Gagandeep Singh wrote:
>> *ENETC* PMD driver which integrates with the existing PCI bus.
>> Document is also part of the set
>>
>> v4->v5 Change-log:
>> * missing commit info added in patch [3/4]
>> * dev_close API implemented
>> * link_update API updated
>> * all comments handled
>>
>> v3->v4 Change-log:
>> * fixed patch set
>>
>> v2->v3 Change-log:
>> * Added a release note
>> * commom part of documentation is removed
>> * cflag Werror added in Makefile
>> * private list of RX/TX queues removed
>> * added the dev_start and dev_stop APIs
>> * added rx/tx queue release APIs
>> * packet parse type feature enabled
>>
>> v1->v2 Change-log:
>> * document improvement
>> * checkpatch warnings removed
>>
>> Gagandeep Singh (4):
>>   net/enetc: add ENETC PMD with basic operations
>>   net/enetc: enable Rx and Tx
>>   net/enetc: support packet parse type
>>   doc: add usage doc for ENETC PMD
> 
> For series,
> Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
> 
> Acked-by: Shreyansh Jain <shreyansh.jain@nxp.com>
> 
> Series applied to dpdk-next-net/master, thanks.
> 

Can you please send a web page patch [1], to announce NIC support [2]?

You can benefit from recent samples like 'Marvell NETA' [3] or 'Aquantia
Atlantic' [4].

Thanks,
ferruh


[1]
https://git.dpdk.org/tools/dpdk-web/

[2]
https://core.dpdk.org/supported/

[3]
https://mails.dpdk.org/archives/web/2018-October/000908.html

[4]
https://mails.dpdk.org/archives/web/2018-November/000922.html
  
Shreyansh Jain Nov. 22, 2018, 10:34 a.m. UTC | #3
Hello Ferruh,

On Wednesday 21 November 2018 11:06 PM, Ferruh Yigit wrote:
> On 10/3/2018 8:48 PM, Ferruh Yigit wrote:
>> On 10/3/2018 2:36 PM, Gagandeep Singh wrote:
>>> *ENETC* PMD driver which integrates with the existing PCI bus.
>>> Document is also part of the set
>>>
...
...
>>> Gagandeep Singh (4):
>>>    net/enetc: add ENETC PMD with basic operations
>>>    net/enetc: enable Rx and Tx
>>>    net/enetc: support packet parse type
>>>    doc: add usage doc for ENETC PMD
>>
>> For series,
>> Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
>>
>> Acked-by: Shreyansh Jain <shreyansh.jain@nxp.com>
>>
>> Series applied to dpdk-next-net/master, thanks.
>>
> 
> Can you please send a web page patch [1], to announce NIC support [2]?
> 
> You can benefit from recent samples like 'Marvell NETA' [3] or 'Aquantia
> Atlantic' [4].

I have sent a patch for this here [5] - which also fixes/elaborates 
existing device names.

[5] https://mails.dpdk.org/archives/web/2018-November/000948.html

> 
> Thanks,
> ferruh
> 
> 
> [1]
> https://git.dpdk.org/tools/dpdk-web/
> 
> [2]
> https://core.dpdk.org/supported/
> 
> [3]
> https://mails.dpdk.org/archives/web/2018-October/000908.html
> 
> [4]
> https://mails.dpdk.org/archives/web/2018-November/000922.html
>
  
Ferruh Yigit Nov. 22, 2018, 12:08 p.m. UTC | #4
On 11/22/2018 10:34 AM, Shreyansh Jain wrote:
> Hello Ferruh,
> 
> On Wednesday 21 November 2018 11:06 PM, Ferruh Yigit wrote:
>> On 10/3/2018 8:48 PM, Ferruh Yigit wrote:
>>> On 10/3/2018 2:36 PM, Gagandeep Singh wrote:
>>>> *ENETC* PMD driver which integrates with the existing PCI bus.
>>>> Document is also part of the set
>>>>
> ...
> ...
>>>> Gagandeep Singh (4):
>>>>    net/enetc: add ENETC PMD with basic operations
>>>>    net/enetc: enable Rx and Tx
>>>>    net/enetc: support packet parse type
>>>>    doc: add usage doc for ENETC PMD
>>>
>>> For series,
>>> Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
>>>
>>> Acked-by: Shreyansh Jain <shreyansh.jain@nxp.com>
>>>
>>> Series applied to dpdk-next-net/master, thanks.
>>>
>>
>> Can you please send a web page patch [1], to announce NIC support [2]?
>>
>> You can benefit from recent samples like 'Marvell NETA' [3] or 'Aquantia
>> Atlantic' [4].
> 
> I have sent a patch for this here [5] - which also fixes/elaborates 
> existing device names.

Great, thanks.

> 
> [5] https://mails.dpdk.org/archives/web/2018-November/000948.html
> 
>>
>> Thanks,
>> ferruh
>>
>>
>> [1]
>> https://git.dpdk.org/tools/dpdk-web/
>>
>> [2]
>> https://core.dpdk.org/supported/
>>
>> [3]
>> https://mails.dpdk.org/archives/web/2018-October/000908.html
>>
>> [4]
>> https://mails.dpdk.org/archives/web/2018-November/000922.html
>>
>