* Re: [PATCH v14 1/5] dt-bindings: vendor-prefixes: Add Verisilicon [not found] ` <20260415072349.44237-2-benjamin.gaignard@collabora.com> @ 2026-05-09 17:56 ` Diederik de Haas 2026-05-11 7:22 ` Benjamin Gaignard 0 siblings, 1 reply; 4+ messages in thread From: Diederik de Haas @ 2026-05-09 17:56 UTC (permalink / raw) To: Benjamin Gaignard, joro, will, robin.murphy, krzk+dt, conor+dt, heiko Cc: iommu, devicetree, linux-kernel, linux-arm-kernel, linux-rockchip, kernel, Conor Dooley On Wed Apr 15, 2026 at 9:23 AM CEST, Benjamin Gaignard wrote: > Verisilicon Microelectronics is a company based in Shanghai, China, > developping hardware blocks for SoC. > > https://verisilicon.com/ > > Add their name to the list of vendors. > > Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com> > Acked-by: Conor Dooley <conor.dooley@microchip.com> > --- > Documentation/devicetree/bindings/vendor-prefixes.yaml | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/Documentation/devicetree/bindings/vendor-prefixes.yaml b/Documentation/devicetree/bindings/vendor-prefixes.yaml > index ee7fd3cfe203..ebd9072300a8 100644 > --- a/Documentation/devicetree/bindings/vendor-prefixes.yaml > +++ b/Documentation/devicetree/bindings/vendor-prefixes.yaml > @@ -1761,6 +1761,8 @@ patternProperties: > description: Variscite Ltd. > "^vdl,.*": > description: Van der Laan b.v. > + "^verisilicon,.*": > + description: VeriSilicon Microelectronics > "^vertexcom,.*": > description: Vertexcom Technologies, Inc. > "^via,.*": FTR: Another version of this patch is already present in Linus' tree: c131d78840d7 ("dt-bindings: vendor-prefixes: add verisilicon") ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v14 1/5] dt-bindings: vendor-prefixes: Add Verisilicon 2026-05-09 17:56 ` [PATCH v14 1/5] dt-bindings: vendor-prefixes: Add Verisilicon Diederik de Haas @ 2026-05-11 7:22 ` Benjamin Gaignard 0 siblings, 0 replies; 4+ messages in thread From: Benjamin Gaignard @ 2026-05-11 7:22 UTC (permalink / raw) To: Diederik de Haas, joro, will, robin.murphy, krzk+dt, conor+dt, heiko Cc: iommu, devicetree, linux-kernel, linux-arm-kernel, linux-rockchip, kernel, Conor Dooley Le 09/05/2026 à 19:56, Diederik de Haas a écrit : > On Wed Apr 15, 2026 at 9:23 AM CEST, Benjamin Gaignard wrote: >> Verisilicon Microelectronics is a company based in Shanghai, China, >> developping hardware blocks for SoC. >> >> https://verisilicon.com/ >> >> Add their name to the list of vendors. >> >> Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com> >> Acked-by: Conor Dooley <conor.dooley@microchip.com> >> --- >> Documentation/devicetree/bindings/vendor-prefixes.yaml | 2 ++ >> 1 file changed, 2 insertions(+) >> >> diff --git a/Documentation/devicetree/bindings/vendor-prefixes.yaml b/Documentation/devicetree/bindings/vendor-prefixes.yaml >> index ee7fd3cfe203..ebd9072300a8 100644 >> --- a/Documentation/devicetree/bindings/vendor-prefixes.yaml >> +++ b/Documentation/devicetree/bindings/vendor-prefixes.yaml >> @@ -1761,6 +1761,8 @@ patternProperties: >> description: Variscite Ltd. >> "^vdl,.*": >> description: Van der Laan b.v. >> + "^verisilicon,.*": >> + description: VeriSilicon Microelectronics >> "^vertexcom,.*": >> description: Vertexcom Technologies, Inc. >> "^via,.*": > FTR: Another version of this patch is already present in Linus' tree: > c131d78840d7 ("dt-bindings: vendor-prefixes: add verisilicon") It seems it has been merged right 7.0-rc1 that I used for this series. Both are almost identical so we can ignore mine. Regards, Benjamin ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v14 0/5] Add support for Verisilicon IOMMU used by media codec blocks [not found] <20260415072349.44237-1-benjamin.gaignard@collabora.com> [not found] ` <20260415072349.44237-2-benjamin.gaignard@collabora.com> @ 2026-05-11 8:01 ` Jörg Rödel 2026-05-11 8:03 ` Benjamin Gaignard 1 sibling, 1 reply; 4+ messages in thread From: Jörg Rödel @ 2026-05-11 8:01 UTC (permalink / raw) To: Benjamin Gaignard Cc: will, robin.murphy, krzk+dt, conor+dt, heiko, iommu, devicetree, linux-kernel, linux-arm-kernel, linux-rockchip, kernel On Wed, Apr 15, 2026 at 09:23:36AM +0200, Benjamin Gaignard wrote: > Benjamin Gaignard (5): > dt-bindings: vendor-prefixes: Add Verisilicon > dt-bindings: iommu: verisilicon: Add binding for VSI IOMMU > iommu: Add verisilicon IOMMU driver > arm64: dts: rockchip: Add verisilicon IOMMU node on RK3588 > arm64: defconfig: enable Verisilicon IOMMU for Rockchip RK3588 > > .../bindings/iommu/verisilicon,iommu.yaml | 71 ++ > .../devicetree/bindings/vendor-prefixes.yaml | 2 + > MAINTAINERS | 8 + > arch/arm64/boot/dts/rockchip/rk3588-base.dtsi | 11 + > arch/arm64/configs/defconfig | 1 + > drivers/iommu/Kconfig | 11 + > drivers/iommu/Makefile | 1 + > drivers/iommu/vsi-iommu.c | 796 ++++++++++++++++++ > 8 files changed, 901 insertions(+) > create mode 100644 Documentation/devicetree/bindings/iommu/verisilicon,iommu.yaml > create mode 100644 drivers/iommu/vsi-iommu.c Applied to the new verisilicon branch. ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v14 0/5] Add support for Verisilicon IOMMU used by media codec blocks 2026-05-11 8:01 ` [PATCH v14 0/5] Add support for Verisilicon IOMMU used by media codec blocks Jörg Rödel @ 2026-05-11 8:03 ` Benjamin Gaignard 0 siblings, 0 replies; 4+ messages in thread From: Benjamin Gaignard @ 2026-05-11 8:03 UTC (permalink / raw) To: Jörg Rödel Cc: will, robin.murphy, krzk+dt, conor+dt, heiko, iommu, devicetree, linux-kernel, linux-arm-kernel, linux-rockchip, kernel Le 11/05/2026 à 10:01, Jörg Rödel a écrit : > On Wed, Apr 15, 2026 at 09:23:36AM +0200, Benjamin Gaignard wrote: >> Benjamin Gaignard (5): >> dt-bindings: vendor-prefixes: Add Verisilicon >> dt-bindings: iommu: verisilicon: Add binding for VSI IOMMU >> iommu: Add verisilicon IOMMU driver >> arm64: dts: rockchip: Add verisilicon IOMMU node on RK3588 >> arm64: defconfig: enable Verisilicon IOMMU for Rockchip RK3588 >> >> .../bindings/iommu/verisilicon,iommu.yaml | 71 ++ >> .../devicetree/bindings/vendor-prefixes.yaml | 2 + >> MAINTAINERS | 8 + >> arch/arm64/boot/dts/rockchip/rk3588-base.dtsi | 11 + >> arch/arm64/configs/defconfig | 1 + >> drivers/iommu/Kconfig | 11 + >> drivers/iommu/Makefile | 1 + >> drivers/iommu/vsi-iommu.c | 796 ++++++++++++++++++ >> 8 files changed, 901 insertions(+) >> create mode 100644 Documentation/devicetree/bindings/iommu/verisilicon,iommu.yaml >> create mode 100644 drivers/iommu/vsi-iommu.c > Applied to the new verisilicon branch. Thanks a lot. Regards, Benjamin ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-05-11 8:03 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20260415072349.44237-1-benjamin.gaignard@collabora.com>
[not found] ` <20260415072349.44237-2-benjamin.gaignard@collabora.com>
2026-05-09 17:56 ` [PATCH v14 1/5] dt-bindings: vendor-prefixes: Add Verisilicon Diederik de Haas
2026-05-11 7:22 ` Benjamin Gaignard
2026-05-11 8:01 ` [PATCH v14 0/5] Add support for Verisilicon IOMMU used by media codec blocks Jörg Rödel
2026-05-11 8:03 ` Benjamin Gaignard
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox