octeontx2-af: Increase maximum BPID channels
authorRadha Mohan Chintakuntla <radhac@marvell.com>
Tue, 26 Mar 2024 18:45:14 +0000 (11:45 -0700)
committerJakub Kicinski <kuba@kernel.org>
Fri, 29 Mar 2024 19:20:12 +0000 (12:20 -0700)
Any NIX interface type can have maximum 256 channels. So increased the
backpressure ID count to 256 so that it can cover cn9k and cn10k SoCs that
have different NIX interface types with varied maximum channels.

Signed-off-by: Radha Mohan Chintakuntla <radhac@marvell.com>
Link: https://lore.kernel.org/r/20240326184514.1628284-1-radhac@marvell.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/marvell/octeontx2/af/mbox.h

index eb2a20b5a0d0c6c9cb15cbfcf98a45f253eb12fc..3d801a1a4f701895e72ce237710e05505998dfb7 100644 (file)
@@ -1213,10 +1213,8 @@ struct nix_bp_cfg_req {
        /* bpid_per_chan = 1 assigns separate bp id for each channel */
 };
 
-/* PF can be mapped to either CGX or LBK interface,
- * so maximum 64 channels are possible.
- */
-#define NIX_MAX_BPID_CHAN      64
+/* Maximum channels any single NIX interface can have */
+#define NIX_MAX_BPID_CHAN      256
 struct nix_bp_cfg_rsp {
        struct mbox_msghdr hdr;
        u16     chan_bpid[NIX_MAX_BPID_CHAN]; /* Channel and bpid mapping */