Hi Bruce, Could you please assist with merging code into our linux-yocto repository? The details are as follows:
Repository: linux-yocto Branch: v5.15/standard/cn-sdkv5.15/octeon Thank you for your help. Best regards, Bo The following changes since commit afe24341cbf68ec297adc300aa133e6b9a15fa12: Merge branch 'v5.15/standard/base' into v5.15/standard/cn-sdkv5.15/octeon (2024-10-27 23:24:53 -0400) are available in the Git repository at: https://git.sr.ht/~bsun/linux-yocto v5.15/standard/cn-sdkv5.15/octeon for you to fetch changes up to 58c9bc0b909c0010f0fa5b1aba8915176c939ed1: octeontx2-af: add SSO HW info mbox (2024-11-01 13:30:11 +0000) ---------------------------------------------------------------- Aaron Williams (1): spi: cadence-xspi: Fix locking with ATF Anshumali Gaur (1): octeontx2-af: Changes to support representor netdev for TC REDIRECT action Baha Mesleh (4): octeontx2-bphy-netdev: handle cpri fifo overrun octeontx2-bphy-netdev: Detect DL circular buffer full octeontx2-bphy-netdev: fix debugfs memleak octeontx2-bphy-netdev: protect psm queue access Chandrakala Chavva (1): xspi: Update lock mechanism Geetha sowjanya (14): octeontx2-af: Add representor mbox definitions octeontx2-af: Add support to get REE status for REP octeontx2-af: Add REP and REE link state change support octeontx2-af: Fix PF/VF internal packet switching rules octeontx2-af: Use ews_rules value to update REP tcam rules octeontx2-pf: Refactoring RVU NIC driver octeontx2-pf: RVU representor driver octeontx2-pf: Create representor netdev octeontx2-pf: Add basic net_device_ops octeontx2-pf: Add packet path between representor and VF octeontx2-pf: Get VF stats via representor octeontx2-pf: Add support to sync link state between representor and VFs octeontx2-pf: Configure VF mtu via representor octeontx2-af: Use rep_cnt instead rep_mode Hariprasad Kelam (3): octeontx2-af: NPC: Clear Unicast rule on nixlf detach octeontx2-af: RPM: fix ethtool FEC counters support Octeontx2-af: Dont enable interface unicast rule Harman Kalra (1): octeontx2-af: Implement represetee state notification Naveen Mamindlapalli (1): octeontx2-af: Fix the issue of infinite loop in nix_aq_reset Pavan Nikhilesh (2): octeontx2-af: add TIM HWWQE mbox support octeontx2-af: add SSO HW info mbox Ratheesh Kannoth (1): octeontx2-af: Fix out of bound access in entry2counter array Sai Krishna (2): octeontx2-af: Set representor MTU from representee octeontx2-bphy-netdev: Fix kernel crash by using proper max PSM queue count drivers/net/ethernet/marvell/octeontx2/Kconfig | 8 + drivers/net/ethernet/marvell/octeontx2/af/Makefile | 2 +- drivers/net/ethernet/marvell/octeontx2/af/mbox.h | 131 ++++- drivers/net/ethernet/marvell/octeontx2/af/npc.h | 1 + drivers/net/ethernet/marvell/octeontx2/af/rpm.c | 4 +- drivers/net/ethernet/marvell/octeontx2/af/rpm.h | 3 +- drivers/net/ethernet/marvell/octeontx2/af/rvu.c | 6 +- drivers/net/ethernet/marvell/octeontx2/af/rvu.h | 38 +- .../ethernet/marvell/octeontx2/af/rvu_debugfs.c | 27 - .../ethernet/marvell/octeontx2/af/rvu_devlink.c | 6 + .../net/ethernet/marvell/octeontx2/af/rvu_nix.c | 136 ++++- .../net/ethernet/marvell/octeontx2/af/rvu_npc.c | 47 +- .../net/ethernet/marvell/octeontx2/af/rvu_npc_fs.c | 43 +- .../net/ethernet/marvell/octeontx2/af/rvu_reg.h | 9 +- .../net/ethernet/marvell/octeontx2/af/rvu_rep.c | 433 +++++++++++++++ .../net/ethernet/marvell/octeontx2/af/rvu_sso.c | 36 +- .../net/ethernet/marvell/octeontx2/af/rvu_struct.h | 27 + .../net/ethernet/marvell/octeontx2/af/rvu_switch.c | 31 +- .../net/ethernet/marvell/octeontx2/af/rvu_tim.c | 98 +++- .../net/ethernet/marvell/octeontx2/bphy/Makefile | 2 +- .../ethernet/marvell/octeontx2/bphy/cnf10k_cpri.c | 133 ++++- .../ethernet/marvell/octeontx2/bphy/cnf10k_cpri.h | 4 + .../ethernet/marvell/octeontx2/bphy/cnf10k_rfoe.c | 17 +- .../marvell/octeontx2/bphy/otx2_bphy_debugfs.c | 3 + .../ethernet/marvell/octeontx2/bphy/otx2_cpri.c | 124 ++++- .../ethernet/marvell/octeontx2/bphy/otx2_cpri.h | 4 + .../ethernet/marvell/octeontx2/bphy/otx2_rfoe.c | 39 +- .../ethernet/marvell/octeontx2/bphy/rfoe_common.c | 58 ++ .../ethernet/marvell/octeontx2/bphy/rfoe_common.h | 5 + .../net/ethernet/marvell/octeontx2/nic/Makefile | 2 + .../ethernet/marvell/octeontx2/nic/otx2_common.c | 15 +- .../ethernet/marvell/octeontx2/nic/otx2_common.h | 56 +- .../ethernet/marvell/octeontx2/nic/otx2_devlink.c | 49 ++ .../net/ethernet/marvell/octeontx2/nic/otx2_pf.c | 277 ++++++---- .../net/ethernet/marvell/octeontx2/nic/otx2_tc.c | 21 +- .../net/ethernet/marvell/octeontx2/nic/otx2_txrx.c | 41 +- .../net/ethernet/marvell/octeontx2/nic/otx2_txrx.h | 3 +- .../net/ethernet/marvell/octeontx2/nic/otx2_vf.c | 7 +- drivers/net/ethernet/marvell/octeontx2/nic/rep.c | 614 +++++++++++++++++++++ drivers/net/ethernet/marvell/octeontx2/nic/rep.h | 51 ++ drivers/spi/spi-cadence-xspi.c | 129 +++-- 41 files changed, 2423 insertions(+), 317 deletions(-) create mode 100644 drivers/net/ethernet/marvell/octeontx2/af/rvu_rep.c create mode 100644 drivers/net/ethernet/marvell/octeontx2/bphy/rfoe_common.c create mode 100644 drivers/net/ethernet/marvell/octeontx2/nic/rep.c create mode 100644 drivers/net/ethernet/marvell/octeontx2/nic/rep.h
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#14533): https://lists.yoctoproject.org/g/linux-yocto/message/14533 Mute This Topic: https://lists.yoctoproject.org/mt/109366355/21656 Group Owner: linux-yocto+ow...@lists.yoctoproject.org Unsubscribe: https://lists.yoctoproject.org/g/linux-yocto/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-