This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from ae8b53aac327 Merge tag 'efi-next-for-v6.14' of git://git.kernel.org/pub [...] new b75439c945b9 i3c: dw: Fix use-after-free in dw_i3c_master driver due to [...] new 0d2c022ffa7c i3c: fix kdoc parameter description for module_i3c_i2c_driver() new ccdb2e0e3b00 i3c: mipi-i3c-hci: Add Intel specific quirk to ring resuming new 30bb1ce71215 i3c: mipi-i3c-hci: Add support for MIPI I3C HCI on PCI bus new c320592f3f2a bitops: add generic parity calculation for u8 new 32a8d362b515 hwmon: (spd5118) Use generic parity calculation new e89cc14e96a9 i3c: dw: use parity8 helper instead of open coding it new e55905a3f33c i3c: mipi-i3c-hci: use parity8 helper instead of open coding it new 5e8c732357ce i3c: cdns: use parity8 helper instead of open coding it new b266e0d4dac0 i3c: master: Fix missing 'ret' assignment in set_speed() new 5eb6d3561f6c i3c: master: Improve initialization of numbered I2C adapters new 9d5db4e3fcb1 Merge tag 'i3c/for-6.14' of git://git.kernel.org/pub/scm/l [...] new d0f98e14c010 mailbox: th1520: Fix a NULL vs IS_ERR() bug new f055feb49c1c mailbox: mpfs: fix copy and paste bug in probe new 0b7f8328f988 mailbox: tegra-hsp: Clear mailbox before using message new af33bd58c244 dt-bindings: mailbox: add binding for Microchip IPC mailbo [...] new e4b1d67e7141 mailbox: add Microchip IPC support new 16274d7e51bd mailbox: qcom-ipcc: Reset CLEAR_ON_RECV_RD if set from boo [...] new 112287032575 dt-bindings: mailbox: qcom: Add IPQ5424 APCS compatible new 443a5cae7e61 mailbox: qcom: Add support for IPQ5424 APCS IPC new 56cf1209f61c dt-bindings: mailbox: add google,gs101-mbox new fbf7e5ce408e mailbox: add Samsung Exynos driver new 06e6994f0361 MAINTAINERS: add entry for Samsung Exynos mailbox driver new 170a264d2611 mailbox: zynqmp: Remove invalid __percpu annotation in zyn [...] new db049866943a mailbox: th1520: Fix memory corruption due to incorrect ar [...] new c1382852330e riscv: sbi: vendorid_list: Add Microchip Technology to the [...] new 4783ce32b080 riscv: export __cpuid_to_hartid_map new 917846e9f005 Merge tag 'mailbox-v6.14' of git://git.kernel.org/pub/scm/ [...] new a07eb4f67ed0 spi: omap2-mcspi: Correctly handle devm_clk_get_optional() errors new b46c89c08f41 Merge tag 'spi-fix-v6.14-merge-window' of git://git.kernel [...]
The 30 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: .../bindings/mailbox/google,gs101-mbox.yaml | 69 +++ .../bindings/mailbox/microchip,sbi-ipc.yaml | 123 +++++ .../bindings/mailbox/qcom,apcs-kpss-global.yaml | 1 + MAINTAINERS | 10 + arch/riscv/include/asm/vendorid_list.h | 1 + arch/riscv/kernel/smp.c | 1 + drivers/hwmon/spd5118.c | 8 +- drivers/i3c/master.c | 14 +- drivers/i3c/master/Kconfig | 11 + drivers/i3c/master/dw-i3c-master.c | 15 +- drivers/i3c/master/i3c-master-cdns.c | 3 +- drivers/i3c/master/mipi-i3c-hci/Makefile | 1 + drivers/i3c/master/mipi-i3c-hci/dat_v1.c | 11 +- drivers/i3c/master/mipi-i3c-hci/dma.c | 17 + drivers/i3c/master/mipi-i3c-hci/mipi-i3c-hci-pci.c | 148 ++++++ drivers/mailbox/Kconfig | 24 + drivers/mailbox/Makefile | 4 + drivers/mailbox/exynos-mailbox.c | 157 +++++++ drivers/mailbox/mailbox-mchp-ipc-sbi.c | 504 +++++++++++++++++++++ drivers/mailbox/mailbox-mpfs.c | 2 +- drivers/mailbox/mailbox-th1520.c | 6 +- drivers/mailbox/qcom-apcs-ipc-mailbox.c | 1 + drivers/mailbox/qcom-ipcc.c | 16 + drivers/mailbox/tegra-hsp.c | 6 +- drivers/mailbox/zynqmp-ipi-mailbox.c | 2 +- drivers/spi/spi-omap2-mcspi.c | 11 +- include/linux/bitops.h | 31 ++ include/linux/i3c/device.h | 2 +- include/linux/mailbox/exynos-message.h | 19 + include/linux/mailbox/mchp-ipc.h | 33 ++ 30 files changed, 1208 insertions(+), 43 deletions(-) create mode 100644 Documentation/devicetree/bindings/mailbox/google,gs101-mbox.yaml create mode 100644 Documentation/devicetree/bindings/mailbox/microchip,sbi-ipc.yaml create mode 100644 drivers/i3c/master/mipi-i3c-hci/mipi-i3c-hci-pci.c create mode 100644 drivers/mailbox/exynos-mailbox.c create mode 100644 drivers/mailbox/mailbox-mchp-ipc-sbi.c create mode 100644 include/linux/mailbox/exynos-message.h create mode 100644 include/linux/mailbox/mchp-ipc.h