Hi Bruce, Could you please assist with merging code into our linux-yocto repository? The details are as follows:
Repository: linux-yocto Branch: v6.1/standard/preempt-rt/cn-sdkv6.1/octeon Thank you for your help. Best regards, Bo The following changes since commit 658a71fa7dab458b7115e70028660a1fa73b65a0: Merge branch 'v6.1/standard/base' into v6.1/standard/preempt-rt/cn-sdkv6.1/octeon (2024-08-13 10:37:25 -0400) are available in the Git repository at: https://git.sr.ht/~bsun/linux-yocto v6.1/standard/preempt-rt/cn-sdkv6.1/octeon for you to fetch changes up to cdcb802e24bdd89a91a424d81838ee5d39163874: PCI: of_property: Handle interrupt parsing failures (2024-08-24 18:32:50 +0800) ---------------------------------------------------------------- Anshumali Gaur (1): octeontx2-af: Changes to support representor netdev for TC REDIRECT action Baha Mesleh (1): octeontx2-bphy-netdev: fix rsfec stats reading Bharat Bhushan (3): crypto/octeontx2: Initialize cptlfs device info once crypto/octeontx2: Use dynamic allocated memory region for lmtst arm64: errata: Extend Errata-38627 workaround to new affected parts Geetha sowjanya (9): octeontx2-pf: Refactoring RVU 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 Jakub Lewalski (1): spi-cadence-xspi: Fix base address for SPI controllers Lizhi Hou (5): of: dynamic: Add interfaces for creating device node dynamically PCI: Create device tree node for bridge PCI: Add quirks to generate device tree node for Xilinx Alveo U50 of: overlay: Extend of_overlay_fdt_apply() to specify the target node PCI: of_property: Handle interrupt parsing failures Naveen Mamindlapalli (2): octeontx2-af: dbg: Add debug prints for NIX AF interrupts octeontx2-pf: Add NIXLF error/poison interrupt handlers Ricardo Ribalda (1): of: overlay: Fix trivial typo Suman Ghosh (1): octeontx2-pf: Add AF_XDP non-zero copy support Sunil Goutham (1): Add missing License and Copyright texts arch/arm64/kernel/cpu_errata.c | 16 +- drivers/crypto/marvell/Kconfig | 1 + drivers/crypto/marvell/octeontx2/cn10k_cpt.c | 92 +++- drivers/crypto/marvell/octeontx2/cn10k_cpt.h | 1 + drivers/crypto/marvell/octeontx2/otx2_cpt_common.h | 1 + .../marvell/octeontx2/otx2_cpt_mbox_common.c | 25 + drivers/crypto/marvell/octeontx2/otx2_cptlf.c | 5 +- drivers/crypto/marvell/octeontx2/otx2_cptlf.h | 12 +- drivers/crypto/marvell/octeontx2/otx2_cptpf_main.c | 18 +- drivers/crypto/marvell/octeontx2/otx2_cptpf_mbox.c | 6 +- .../crypto/marvell/octeontx2/otx2_cptpf_ucode.c | 2 - drivers/crypto/marvell/octeontx2/otx2_cptvf_main.c | 19 +- drivers/crypto/marvell/octeontx2/otx2_cptvf_mbox.c | 1 + drivers/hwtracing/coresight/coresight-quirks.h | 3 + .../hwtracing/coresight/coresight-tmc-secure-etr.h | 2 + drivers/net/ethernet/cavium/octeontx-83xx/Makefile | 1 + drivers/net/ethernet/marvell/octeontx2/Kconfig | 8 + drivers/net/ethernet/marvell/octeontx2/af/mbox.h | 36 +- drivers/net/ethernet/marvell/octeontx2/af/rvu.h | 1 + .../ethernet/marvell/octeontx2/af/rvu_devlink.c | 9 +- .../net/ethernet/marvell/octeontx2/af/rvu_nix.c | 19 +- .../net/ethernet/marvell/octeontx2/af/rvu_rep.c | 125 ++--- .../marvell/octeontx2/bphy/otx2_bphy_debugfs.c | 19 +- .../net/ethernet/marvell/octeontx2/nic/Makefile | 2 + .../ethernet/marvell/octeontx2/nic/otx2_common.c | 14 +- .../ethernet/marvell/octeontx2/nic/otx2_common.h | 29 +- .../ethernet/marvell/octeontx2/nic/otx2_devlink.c | 49 ++ .../net/ethernet/marvell/octeontx2/nic/otx2_pf.c | 357 ++++++++---- .../net/ethernet/marvell/octeontx2/nic/otx2_tc.c | 21 +- .../net/ethernet/marvell/octeontx2/nic/otx2_txrx.c | 52 +- .../net/ethernet/marvell/octeontx2/nic/otx2_txrx.h | 3 +- .../net/ethernet/marvell/octeontx2/nic/otx2_vf.c | 9 +- drivers/net/ethernet/marvell/octeontx2/nic/rep.c | 611 +++++++++++++++++++++ drivers/net/ethernet/marvell/octeontx2/nic/rep.h | 51 ++ drivers/of/configfs.c | 2 +- drivers/of/dynamic.c | 164 ++++++ drivers/of/overlay.c | 44 +- drivers/of/unittest.c | 22 +- drivers/pci/Kconfig | 12 + drivers/pci/Makefile | 1 + drivers/pci/bus.c | 2 + drivers/pci/of.c | 79 +++ drivers/pci/of_property.c | 366 ++++++++++++ drivers/pci/pci.h | 12 + drivers/pci/quirks.c | 11 + drivers/pci/remove.c | 1 + drivers/soc/marvell/Kconfig | 1 + drivers/spi/spi-cadence-xspi.c | 8 +- include/linux/of.h | 25 +- 49 files changed, 2043 insertions(+), 327 deletions(-) create mode 100644 drivers/net/ethernet/marvell/octeontx2/nic/rep.c create mode 100644 drivers/net/ethernet/marvell/octeontx2/nic/rep.h create mode 100644 drivers/pci/of_property.c
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#14325): https://lists.yoctoproject.org/g/linux-yocto/message/14325 Mute This Topic: https://lists.yoctoproject.org/mt/108070604/21656 Group Owner: linux-yocto+ow...@lists.yoctoproject.org Unsubscribe: https://lists.yoctoproject.org/g/linux-yocto/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-