<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body>
<div style="color: rgb(33, 33, 33); background-color: rgb(255, 255, 255);" dir="auto">
Hi Nicolas,</div>
<div style="color: rgb(33, 33, 33); background-color: rgb(255, 255, 255);" dir="auto">
<br>
</div>
<div style="color: rgb(33, 33, 33); background-color: rgb(255, 255, 255);" dir="auto">
I wanted to take this in RC1 but I was unwell last couple of days. Can we push it to RC2? If not, please ask Thomas if he has time to pick it directly to main?<span></span></div>
<div id="mail-editor-reference-message-container" dir="auto"><br>
</div>
<div id="mail-editor-reference-message-container" dir="auto">Regards,</div>
<div id="mail-editor-reference-message-container" dir="auto">Akhil<br>
<hr style="display:inline-block;width:98%" tabindex="-1">
<div id="divRplyFwdMsg" style="font-size: 11pt;" dir="auto"><strong>From:</strong> Chautru, Nicolas <nicolas.chautru@intel.com><br>
<strong>Sent:</strong> Monday, 6 June, 2022, 8:24 pm<br>
<strong>To:</strong> dev@dpdk.org <dev@dpdk.org>; Akhil Goyal <gakhil@marvell.com>; trix@redhat.com <trix@redhat.com>; maxime.coquelin@redhat.com <maxime.coquelin@redhat.com><br>
<strong>Cc:</strong> thomas@monjalon.net <thomas@monjalon.net>; Kinsella, Ray <ray.kinsella@intel.com>; Richardson, Bruce <bruce.richardson@intel.com>; hemant.agrawal@nxp.com <hemant.agrawal@nxp.com>; Vargas, Hernan <hernan.vargas@intel.com>; david.marchand@redhat.com
<david.marchand@redhat.com><br>
<strong>Subject:</strong> [EXT] RE: [PATCH v7 0/6] drivers/baseband: PMD to support ACC100/ACC101 devices<br>
</div>
<br>
<meta name="Generator" content="Microsoft Exchange Server">
<!-- converted from text --><font size="2"><span style="font-size:11pt;">
<div class="PlainText">External Email<br>
<br>
----------------------------------------------------------------------<br>
Hi Akhil, <br>
Checking that this series on track to be applied. Let me know if anything required from our end.
<br>
<br>
> -----Original Message-----<br>
> From: Chautru, Nicolas <nicolas.chautru@intel.com><br>
> Sent: Tuesday, May 31, 2022 3:32 PM<br>
> To: dev@dpdk.org; gakhil@marvell.com; trix@redhat.com;<br>
> maxime.coquelin@redhat.com<br>
> Cc: thomas@monjalon.net; Kinsella, Ray <ray.kinsella@intel.com>;<br>
> Richardson, Bruce <bruce.richardson@intel.com>;<br>
> hemant.agrawal@nxp.com; Vargas, Hernan <hernan.vargas@intel.com>;<br>
> david.marchand@redhat.com; Chautru, Nicolas<br>
> <nicolas.chautru@intel.com><br>
> Subject: [PATCH v7 0/6] drivers/baseband: PMD to support ACC100/ACC101<br>
> devices<br>
> <br>
> v7: updates suggested by Akhil and Maxime. Removed RTE prefix for internal<br>
> #define, removed build-time single FEC engine configuration mode,<br>
> documentation fix, coding guideline fix, renamed new file without rte prefix.<br>
> <br>
> v6: use formally an unified driver for AC100 and AC101. Exposing single<br>
> unified function for the PF device configuration used by bbdev-test.<br>
> <br>
> v5: minor fix to doc and intermediate commit caught in CI<br>
> <br>
> v4: incremental updates based on reviews Changed order of patchset to<br>
> include two ACC100 specific commits first: updating formally the companion<br>
> configure function from PF and the protection adjustment.<br>
> Then next 3 commits for the actual changes specific to ACC101: the device<br>
> specific function for FCW 5GUL generation used as a local function,<br>
> combined documentations into a single .rst common to both devices,<br>
> updated comments, removed unused #defines.<br>
> <br>
> v3: Feedback from Tom Rix: missing copyright, refactor bbdev-test section<br>
> calling the configure companion function for ACC100/101, taking the Pmon<br>
> commit out which is not directly required.<br>
> <br>
> v2: Based on good feedback from Thomas and David, now implementing the<br>
> ACC101 PMD as a close derivative from existing ACC100 PMD with hooks to<br>
> have different behaviour based on variant.<br>
> This prevents code duplication and only rely on different functions and<br>
> behaviour when hardware requires or support differences.<br>
> Note that these are pending changes for ACC100 which would be specific to<br>
> that device and not ACC101 but these can be managed based on the new<br>
> implementation, ie. is_acc100() etc... (such incremental changes for ACC100<br>
> trending 22.11 but confirming this is future proof).<br>
> The serie also includes commits which were meant for ACC101 but are also<br>
> valuable for ACC100.<br>
> <br>
> v1: This serie introduces the PMD for the new bbdev device ACC101 (aka<br>
> Mount Cirrus).<br>
> This is a derivative from previous Mount Bryce ACC100 which includes silicon<br>
> improvement, bug fixes, capacity improvement for 5GNR and feature<br>
> improvement.<br>
> <br>
> <br>
> Nicolas Chautru (6):<br>
> baseband/acc100: update companion PF configure function<br>
> baseband/acc100: add protection for some negative scenario<br>
> baseband/acc100: remove RTE prefix for internal macro<br>
> baseband/acc100: introduce PMD for ACC101<br>
> baseband/acc100: modify validation code for ACC101<br>
> baseband/acc100: configuration of ACC101 from PF<br>
> <br>
> MAINTAINERS | 1 +<br>
> app/test-bbdev/test_bbdev_perf.c | 6 +-<br>
> doc/guides/bbdevs/acc100.rst | 37 +-<br>
> doc/guides/bbdevs/features/acc101.ini | 13 +<br>
> doc/guides/rel_notes/release_22_07.rst | 3 +<br>
> drivers/baseband/acc100/acc100_pf_enum.h | 18 +<br>
> drivers/baseband/acc100/acc101_pmd.h | 50 +++<br>
> drivers/baseband/acc100/rte_acc100_cfg.h | 4 +-<br>
> drivers/baseband/acc100/rte_acc100_pmd.c | 687<br>
> ++++++++++++++++++++++++++++---<br>
> drivers/baseband/acc100/rte_acc100_pmd.h | 37 +-<br>
> drivers/baseband/acc100/version.map | 3 +-<br>
> 11 files changed, 768 insertions(+), 91 deletions(-) create mode 100644<br>
> doc/guides/bbdevs/features/acc101.ini<br>
> create mode 100644 drivers/baseband/acc100/acc101_pmd.h<br>
> <br>
> --<br>
> 1.8.3.1<br>
<br>
</div>
</span></font><br>
</div>
</body>
</html>