ethdev: add namespace
[dpdk.git] / doc / guides / eventdevs / cnxk.rst
1 .. SPDX-License-Identifier: BSD-3-Clause
2    Copyright(c) 2021 Marvell.
3
4 Marvell cnxk SSO Eventdev Driver
5 ================================
6
7 The SSO PMD (**librte_event_cnxk**) and provides poll mode
8 eventdev driver support for the inbuilt event device found in the
9 **Marvell OCTEON cnxk** SoC family.
10
11 More information about OCTEON cnxk SoC can be found at `Marvell Official Website
12 <https://www.marvell.com/embedded-processors/infrastructure-processors/>`_.
13
14 Supported OCTEON cnxk SoCs
15 --------------------------
16
17 - CN9XX
18 - CN10XX
19
20 Features
21 --------
22
23 Features of the OCTEON cnxk SSO PMD are:
24
25 - 256 Event queues
26 - 26 (dual) and 52 (single) Event ports on CN9XX
27 - 52 Event ports on CN10XX
28 - HW event scheduler
29 - Supports 1M flows per event queue
30 - Flow based event pipelining
31 - Flow pinning support in flow based event pipelining
32 - Queue based event pipelining
33 - Supports ATOMIC, ORDERED, PARALLEL schedule types per flow
34 - Event scheduling QoS based on event queue priority
35 - Open system with configurable amount of outstanding events limited only by
36   DRAM
37 - HW accelerated dequeue timeout support to enable power management
38 - HW managed event timers support through TIM, with high precision and
39   time granularity of 2.5us on CN9K and 1us on CN10K.
40 - Up to 256 TIM rings a.k.a event timer adapters.
41 - Up to 8 rings traversed in parallel.
42 - HW managed packets enqueued from ethdev to eventdev exposed through event eth
43   RX adapter.
44 - N:1 ethernet device Rx queue to Event queue mapping.
45 - Lockfree Tx from event eth Tx adapter using ``RTE_ETH_TX_OFFLOAD_MT_LOCKFREE``
46   capability while maintaining receive packet order.
47 - Full Rx/Tx offload support defined through ethdev queue configuration.
48 - HW managed event vectorization on CN10K for packets enqueued from ethdev to
49   eventdev configurable per each Rx queue in Rx adapter.
50 - Event vector transmission via Tx adapter.
51
52 Prerequisites and Compilation procedure
53 ---------------------------------------
54
55    See :doc:`../platform/cnxk` for setup information.
56
57
58 Runtime Config Options
59 ----------------------
60
61 - ``Maximum number of in-flight events`` (default ``8192``)
62
63   In **Marvell OCTEON cnxk** the max number of in-flight events are only limited
64   by DRAM size, the ``xae_cnt`` devargs parameter is introduced to provide
65   upper limit for in-flight events.
66
67   For example::
68
69     -a 0002:0e:00.0,xae_cnt=16384
70
71 - ``CN9K Getwork mode``
72
73   CN9K ``single_ws`` devargs parameter is introduced to select single workslot
74   mode in SSO and disable the default dual workslot mode.
75
76   For example::
77
78     -a 0002:0e:00.0,single_ws=1
79
80 - ``CN10K Getwork mode``
81
82   CN10K supports multiple getwork prefetch modes, by default the prefetch
83   mode is set to none.
84
85   For example::
86
87     -a 0002:0e:00.0,gw_mode=1
88
89 - ``Event Group QoS support``
90
91   SSO GGRPs i.e. queue uses DRAM & SRAM buffers to hold in-flight
92   events. By default the buffers are assigned to the SSO GGRPs to
93   satisfy minimum HW requirements. SSO is free to assign the remaining
94   buffers to GGRPs based on a preconfigured threshold.
95   We can control the QoS of SSO GGRP by modifying the above mentioned
96   thresholds. GGRPs that have higher importance can be assigned higher
97   thresholds than the rest. The dictionary format is as follows
98   [Qx-XAQ-TAQ-IAQ][Qz-XAQ-TAQ-IAQ] expressed in percentages, 0 represents
99   default.
100
101   For example::
102
103     -a 0002:0e:00.0,qos=[1-50-50-50]
104
105 - ``Force Rx Back pressure``
106
107    Force Rx back pressure when same mempool is used across ethernet device
108    connected to event device.
109
110    For example::
111
112       -a 0002:0e:00.0,force_rx_bp=1
113
114 - ``TIM disable NPA``
115
116   By default chunks are allocated from NPA then TIM can automatically free
117   them when traversing the list of chunks. The ``tim_disable_npa`` devargs
118   parameter disables NPA and uses software mempool to manage chunks
119
120   For example::
121
122     -a 0002:0e:00.0,tim_disable_npa=1
123
124 - ``TIM modify chunk slots``
125
126   The ``tim_chnk_slots`` devargs can be used to modify number of chunk slots.
127   Chunks are used to store event timers, a chunk can be visualised as an array
128   where the last element points to the next chunk and rest of them are used to
129   store events. TIM traverses the list of chunks and enqueues the event timers
130   to SSO. The default value is 255 and the max value is 4095.
131
132   For example::
133
134     -a 0002:0e:00.0,tim_chnk_slots=1023
135
136 - ``TIM enable arm/cancel statistics``
137
138   The ``tim_stats_ena`` devargs can be used to enable arm and cancel stats of
139   event timer adapter.
140
141   For example::
142
143     -a 0002:0e:00.0,tim_stats_ena=1
144
145 - ``TIM limit max rings reserved``
146
147   The ``tim_rings_lmt`` devargs can be used to limit the max number of TIM
148   rings i.e. event timer adapter reserved on probe. Since, TIM rings are HW
149   resources we can avoid starving other applications by not grabbing all the
150   rings.
151
152   For example::
153
154     -a 0002:0e:00.0,tim_rings_lmt=5
155
156 - ``TIM ring control internal parameters``
157
158   When using multiple TIM rings the ``tim_ring_ctl`` devargs can be used to
159   control each TIM rings internal parameters uniquely. The following dict
160   format is expected [ring-chnk_slots-disable_npa-stats_ena]. 0 represents
161   default values.
162
163   For Example::
164
165     -a 0002:0e:00.0,tim_ring_ctl=[2-1023-1-0]
166
167 Debugging Options
168 -----------------
169
170 .. _table_octeon_cnxk_event_debug_options:
171
172 .. table:: OCTEON cnxk event device debug options
173
174    +---+------------+-------------------------------------------------------+
175    | # | Component  | EAL log command                                       |
176    +===+============+=======================================================+
177    | 1 | SSO        | --log-level='pmd\.event\.cnxk,8'                      |
178    +---+------------+-------------------------------------------------------+
179    | 2 | TIM        | --log-level='pmd\.event\.cnxk\.timer,8'               |
180    +---+------------+-------------------------------------------------------+
181
182 Limitations
183 -----------
184
185 Rx adapter support
186 ~~~~~~~~~~~~~~~~~~
187
188 Using the same mempool for all the ethernet device ports connected to
189 event device would cause back pressure to be asserted only on the first
190 ethernet device.
191 Back pressure is automatically disabled when using same mempool for all the
192 ethernet devices connected to event device to override this applications can
193 use `force_rx_bp=1` device arguments.
194 Using unique mempool per each ethernet device is recommended when they are
195 connected to event device.