* [PATCH 0/3] Add hantro g1 video decoder support for RK3588
@ 2023-12-27 17:39 Jianfeng Liu
2023-12-27 17:39 ` [PATCH 1/3] media: verisilicon: Add support for Hantro G1 on RK3588 Jianfeng Liu
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: Jianfeng Liu @ 2023-12-27 17:39 UTC (permalink / raw)
To: linux-media, linux-rockchip; +Cc: liujianfeng1994
RK3588 has Hantro G1 video decoder capable to decode MPEG2/H.264/VP8
video formats just like rockchip's former socs like rk3399 and rk356x.
Tested with FFmpeg v4l2_request code taken from [1]
with MPEG2, H.264 and VP8 samples.
[1] https://github.com/LibreELEC/LibreELEC.tv/blob/master/packages/multimedia/ffmpeg/patches/v4l2-request/ffmpeg-001-v4l2-request.patch
Jianfeng Liu (3):
media: verisilicon: Add support for Hantro G1 on RK3588
arm64: dts: rockchip: Add Hantro G1 VPU support for RK3588
dt-bindings: media: rockchip-vpu: Add RK3588 compatible
.../bindings/media/rockchip-vpu.yaml | 1 +
arch/arm64/boot/dts/rockchip/rk3588s.dtsi | 20 +++++++++++++++++++
.../media/platform/verisilicon/hantro_drv.c | 1 +
.../media/platform/verisilicon/hantro_hw.h | 1 +
.../platform/verisilicon/rockchip_vpu_hw.c | 14 +++++++++++++
5 files changed, 37 insertions(+)
--
2.34.1
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 1/3] media: verisilicon: Add support for Hantro G1 on RK3588
2023-12-27 17:39 [PATCH 0/3] Add hantro g1 video decoder support for RK3588 Jianfeng Liu
@ 2023-12-27 17:39 ` Jianfeng Liu
2023-12-27 23:08 ` Heiko Stübner
2023-12-27 17:39 ` [PATCH 2/3] arm64: dts: rockchip: Add Hantro G1 VPU support for RK3588 Jianfeng Liu
2023-12-27 17:39 ` [PATCH 3/3] dt-bindings: media: rockchip-vpu: Add RK3588 compatible Jianfeng Liu
2 siblings, 1 reply; 9+ messages in thread
From: Jianfeng Liu @ 2023-12-27 17:39 UTC (permalink / raw)
To: linux-media, linux-rockchip; +Cc: liujianfeng1994
This patch adds support for RK3588 in existing Hantro
video decoder kernel driver.
Tested with FFmpeg v4l2_request code taken from [1]
with MPEG2, H.264 and VP8 samples.
[1] https://github.com/LibreELEC/LibreELEC.tv/blob/master/packages/multimedia/ffmpeg/patches/v4l2-request/ffmpeg-001-v4l2-request.patch
Signed-off-by: Jianfeng Liu <liujianfeng1994@gmail.com>
---
drivers/media/platform/verisilicon/hantro_drv.c | 1 +
drivers/media/platform/verisilicon/hantro_hw.h | 1 +
.../media/platform/verisilicon/rockchip_vpu_hw.c | 14 ++++++++++++++
3 files changed, 16 insertions(+)
diff --git a/drivers/media/platform/verisilicon/hantro_drv.c b/drivers/media/platform/verisilicon/hantro_drv.c
index db3df6cc4..4c988f272 100644
--- a/drivers/media/platform/verisilicon/hantro_drv.c
+++ b/drivers/media/platform/verisilicon/hantro_drv.c
@@ -722,6 +722,7 @@ static const struct of_device_id of_hantro_match[] = {
{ .compatible = "rockchip,rk3399-vpu", .data = &rk3399_vpu_variant, },
{ .compatible = "rockchip,rk3568-vepu", .data = &rk3568_vepu_variant, },
{ .compatible = "rockchip,rk3568-vpu", .data = &rk3568_vpu_variant, },
+ { .compatible = "rockchip,rk3588-vpu", .data = &rk3588_vpu_variant, },
{ .compatible = "rockchip,rk3588-av1-vpu", .data = &rk3588_vpu981_variant, },
#endif
#ifdef CONFIG_VIDEO_HANTRO_IMX8M
diff --git a/drivers/media/platform/verisilicon/hantro_hw.h b/drivers/media/platform/verisilicon/hantro_hw.h
index 9aec8a79a..276f09a7a 100644
--- a/drivers/media/platform/verisilicon/hantro_hw.h
+++ b/drivers/media/platform/verisilicon/hantro_hw.h
@@ -405,6 +405,7 @@ extern const struct hantro_variant rk3328_vpu_variant;
extern const struct hantro_variant rk3399_vpu_variant;
extern const struct hantro_variant rk3568_vepu_variant;
extern const struct hantro_variant rk3568_vpu_variant;
+extern const struct hantro_variant rk3588_vpu_variant;
extern const struct hantro_variant rk3588_vpu981_variant;
extern const struct hantro_variant sama5d4_vdec_variant;
extern const struct hantro_variant sunxi_vpu_variant;
diff --git a/drivers/media/platform/verisilicon/rockchip_vpu_hw.c b/drivers/media/platform/verisilicon/rockchip_vpu_hw.c
index f97527670..4ee8d64eb 100644
--- a/drivers/media/platform/verisilicon/rockchip_vpu_hw.c
+++ b/drivers/media/platform/verisilicon/rockchip_vpu_hw.c
@@ -797,6 +797,20 @@ const struct hantro_variant px30_vpu_variant = {
.num_clocks = ARRAY_SIZE(rockchip_vpu_clk_names)
};
+const struct hantro_variant rk3588_vpu_variant = {
+ .dec_offset = 0x400,
+ .dec_fmts = rockchip_vdpu2_dec_fmts,
+ .num_dec_fmts = ARRAY_SIZE(rockchip_vdpu2_dec_fmts),
+ .codec = HANTRO_MPEG2_DECODER |
+ HANTRO_VP8_DECODER | HANTRO_H264_DECODER,
+ .codec_ops = rk3399_vpu_codec_ops,
+ .irqs = rockchip_vdpu2_irqs,
+ .num_irqs = ARRAY_SIZE(rockchip_vdpu2_irqs),
+ .init = rockchip_vpu_hw_init,
+ .clk_names = rockchip_vpu_clk_names,
+ .num_clocks = ARRAY_SIZE(rockchip_vpu_clk_names)
+};
+
const struct hantro_variant rk3588_vpu981_variant = {
.dec_offset = 0x0,
.dec_fmts = rockchip_vpu981_dec_fmts,
--
2.34.1
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 2/3] arm64: dts: rockchip: Add Hantro G1 VPU support for RK3588
2023-12-27 17:39 [PATCH 0/3] Add hantro g1 video decoder support for RK3588 Jianfeng Liu
2023-12-27 17:39 ` [PATCH 1/3] media: verisilicon: Add support for Hantro G1 on RK3588 Jianfeng Liu
@ 2023-12-27 17:39 ` Jianfeng Liu
2023-12-27 23:12 ` Heiko Stübner
2023-12-27 17:39 ` [PATCH 3/3] dt-bindings: media: rockchip-vpu: Add RK3588 compatible Jianfeng Liu
2 siblings, 1 reply; 9+ messages in thread
From: Jianfeng Liu @ 2023-12-27 17:39 UTC (permalink / raw)
To: linux-media, linux-rockchip; +Cc: liujianfeng1994
This patch enables Hantro G1 video decoder in RK3588's
device-tree
Tested with FFmpeg v4l2_request code taken from [1]
with MPEG2, H.264 and VP8 samples.
[1] https://github.com/LibreELEC/LibreELEC.tv/blob/master/packages/multimedia/ffmpeg/patches/v4l2-request/ffmpeg-001-v4l2-request.patch
Signed-off-by: Jianfeng Liu <liujianfeng1994@gmail.com>
---
arch/arm64/boot/dts/rockchip/rk3588s.dtsi | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/arch/arm64/boot/dts/rockchip/rk3588s.dtsi b/arch/arm64/boot/dts/rockchip/rk3588s.dtsi
index 5fb0baf8a..b3536e097 100644
--- a/arch/arm64/boot/dts/rockchip/rk3588s.dtsi
+++ b/arch/arm64/boot/dts/rockchip/rk3588s.dtsi
@@ -708,6 +708,26 @@ vop_mmu: iommu@fdd97e00 {
status = "disabled";
};
+ vpu: video-codec@fdb50400 {
+ compatible = "rockchip,rk3588-vpu";
+ reg = <0x0 0xfdb50000 0x0 0x800>;
+ interrupts = <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH 0>;
+ clocks = <&cru ACLK_VPU>, <&cru HCLK_VPU>;
+ clock-names = "aclk", "hclk";
+ iommus = <&vdpu_mmu>;
+ power-domains = <&power RK3588_PD_VDPU>;
+ };
+
+ vdpu_mmu: iommu@fdb50800 {
+ compatible = "rockchip,rk3588-iommu", "rockchip,rk3568-iommu";
+ reg = <0x0 0xfdb50800 0x0 0x40>;
+ interrupts = <GIC_SPI 118 IRQ_TYPE_LEVEL_HIGH 0>;
+ clock-names = "aclk", "iface";
+ clocks = <&cru ACLK_VPU>, <&cru HCLK_VPU>;
+ power-domains = <&power RK3588_PD_VDPU>;
+ #iommu-cells = <0>;
+ };
+
uart0: serial@fd890000 {
compatible = "rockchip,rk3588-uart", "snps,dw-apb-uart";
reg = <0x0 0xfd890000 0x0 0x100>;
--
2.34.1
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 3/3] dt-bindings: media: rockchip-vpu: Add RK3588 compatible
2023-12-27 17:39 [PATCH 0/3] Add hantro g1 video decoder support for RK3588 Jianfeng Liu
2023-12-27 17:39 ` [PATCH 1/3] media: verisilicon: Add support for Hantro G1 on RK3588 Jianfeng Liu
2023-12-27 17:39 ` [PATCH 2/3] arm64: dts: rockchip: Add Hantro G1 VPU support for RK3588 Jianfeng Liu
@ 2023-12-27 17:39 ` Jianfeng Liu
2023-12-27 23:13 ` Heiko Stübner
2023-12-28 7:46 ` Krzysztof Kozlowski
2 siblings, 2 replies; 9+ messages in thread
From: Jianfeng Liu @ 2023-12-27 17:39 UTC (permalink / raw)
To: linux-media, linux-rockchip; +Cc: liujianfeng1994
This patch adds RK3588 compatible in rockchip-vpu dt-bindings.
Signed-off-by: Jianfeng Liu <liujianfeng1994@gmail.com>
---
Documentation/devicetree/bindings/media/rockchip-vpu.yaml | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/media/rockchip-vpu.yaml b/Documentation/devicetree/bindings/media/rockchip-vpu.yaml
index c57e1f488..600ad351e 100644
--- a/Documentation/devicetree/bindings/media/rockchip-vpu.yaml
+++ b/Documentation/devicetree/bindings/media/rockchip-vpu.yaml
@@ -24,6 +24,7 @@ properties:
- rockchip,rk3399-vpu
- rockchip,px30-vpu
- rockchip,rk3568-vpu
+ - rockchip,rk3588-vpu
- rockchip,rk3588-av1-vpu
- items:
- const: rockchip,rk3188-vpu
--
2.34.1
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH 1/3] media: verisilicon: Add support for Hantro G1 on RK3588
2023-12-27 17:39 ` [PATCH 1/3] media: verisilicon: Add support for Hantro G1 on RK3588 Jianfeng Liu
@ 2023-12-27 23:08 ` Heiko Stübner
0 siblings, 0 replies; 9+ messages in thread
From: Heiko Stübner @ 2023-12-27 23:08 UTC (permalink / raw)
To: linux-media, linux-rockchip; +Cc: liujianfeng1994, Jianfeng Liu
Hi,
Am Mittwoch, 27. Dezember 2023, 18:39:09 CET schrieb Jianfeng Liu:
> This patch adds support for RK3588 in existing Hantro
> video decoder kernel driver.
>
> Tested with FFmpeg v4l2_request code taken from [1]
> with MPEG2, H.264 and VP8 samples.
>
> [1] https://github.com/LibreELEC/LibreELEC.tv/blob/master/packages/multimedia/ffmpeg/patches/v4l2-request/ffmpeg-001-v4l2-request.patch
>
thanks so much for looking into this :-) .
But please use scripts/get_maintainers.pl when submitting patches, because
not everyone reads mailing lists all the time.
Most of the time people enjoy being able to read the whole series, so also
please don't do per-patch recipients.
Especially when adding devicetree bindings you need to add the devicetree
maintainers and lists.
So running for example
# scripts/get_maintainer.pl -f Documentation/devicetree/bindings/media/rockchip-vpu.yaml
will get you this pretty correct list of recipients for your series:
Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Philipp Zabel <p.zabel@pengutronix.de>
Mauro Carvalho Chehab <mchehab@kernel.org>
Rob Herring <robh+dt@kernel.org>
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
Conor Dooley <conor+dt@kernel.org>
Heiko Stuebner <heiko@sntech.de>
linux-media@vger.kernel.org
linux-rockchip@lists.infradead.org
devicetree@vger.kernel.org
linux-arm-kernel@lists.infradead.org
linux-kernel@vger.kernel.org
> Signed-off-by: Jianfeng Liu <liujianfeng1994@gmail.com>
> ---
> drivers/media/platform/verisilicon/hantro_drv.c | 1 +
> drivers/media/platform/verisilicon/hantro_hw.h | 1 +
> .../media/platform/verisilicon/rockchip_vpu_hw.c | 14 ++++++++++++++
> 3 files changed, 16 insertions(+)
>
> diff --git a/drivers/media/platform/verisilicon/hantro_drv.c b/drivers/media/platform/verisilicon/hantro_drv.c
> index db3df6cc4..4c988f272 100644
> --- a/drivers/media/platform/verisilicon/hantro_drv.c
> +++ b/drivers/media/platform/verisilicon/hantro_drv.c
> @@ -722,6 +722,7 @@ static const struct of_device_id of_hantro_match[] = {
> { .compatible = "rockchip,rk3399-vpu", .data = &rk3399_vpu_variant, },
> { .compatible = "rockchip,rk3568-vepu", .data = &rk3568_vepu_variant, },
> { .compatible = "rockchip,rk3568-vpu", .data = &rk3568_vpu_variant, },
> + { .compatible = "rockchip,rk3588-vpu", .data = &rk3588_vpu_variant, },
> { .compatible = "rockchip,rk3588-av1-vpu", .data = &rk3588_vpu981_variant, },
I do think this list is sorted alphabetically, so rk3588-vpu would be _after_ rk3588-a...
Thanks
Heiko
> #endif
> #ifdef CONFIG_VIDEO_HANTRO_IMX8M
> diff --git a/drivers/media/platform/verisilicon/hantro_hw.h b/drivers/media/platform/verisilicon/hantro_hw.h
> index 9aec8a79a..276f09a7a 100644
> --- a/drivers/media/platform/verisilicon/hantro_hw.h
> +++ b/drivers/media/platform/verisilicon/hantro_hw.h
> @@ -405,6 +405,7 @@ extern const struct hantro_variant rk3328_vpu_variant;
> extern const struct hantro_variant rk3399_vpu_variant;
> extern const struct hantro_variant rk3568_vepu_variant;
> extern const struct hantro_variant rk3568_vpu_variant;
> +extern const struct hantro_variant rk3588_vpu_variant;
> extern const struct hantro_variant rk3588_vpu981_variant;
> extern const struct hantro_variant sama5d4_vdec_variant;
> extern const struct hantro_variant sunxi_vpu_variant;
> diff --git a/drivers/media/platform/verisilicon/rockchip_vpu_hw.c b/drivers/media/platform/verisilicon/rockchip_vpu_hw.c
> index f97527670..4ee8d64eb 100644
> --- a/drivers/media/platform/verisilicon/rockchip_vpu_hw.c
> +++ b/drivers/media/platform/verisilicon/rockchip_vpu_hw.c
> @@ -797,6 +797,20 @@ const struct hantro_variant px30_vpu_variant = {
> .num_clocks = ARRAY_SIZE(rockchip_vpu_clk_names)
> };
>
> +const struct hantro_variant rk3588_vpu_variant = {
> + .dec_offset = 0x400,
> + .dec_fmts = rockchip_vdpu2_dec_fmts,
> + .num_dec_fmts = ARRAY_SIZE(rockchip_vdpu2_dec_fmts),
> + .codec = HANTRO_MPEG2_DECODER |
> + HANTRO_VP8_DECODER | HANTRO_H264_DECODER,
> + .codec_ops = rk3399_vpu_codec_ops,
> + .irqs = rockchip_vdpu2_irqs,
> + .num_irqs = ARRAY_SIZE(rockchip_vdpu2_irqs),
> + .init = rockchip_vpu_hw_init,
> + .clk_names = rockchip_vpu_clk_names,
> + .num_clocks = ARRAY_SIZE(rockchip_vpu_clk_names)
> +};
> +
> const struct hantro_variant rk3588_vpu981_variant = {
> .dec_offset = 0x0,
> .dec_fmts = rockchip_vpu981_dec_fmts,
> --
> 2.34.1
>
>
> _______________________________________________
> Linux-rockchip mailing list
> Linux-rockchip@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-rockchip
>
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/3] arm64: dts: rockchip: Add Hantro G1 VPU support for RK3588
2023-12-27 17:39 ` [PATCH 2/3] arm64: dts: rockchip: Add Hantro G1 VPU support for RK3588 Jianfeng Liu
@ 2023-12-27 23:12 ` Heiko Stübner
0 siblings, 0 replies; 9+ messages in thread
From: Heiko Stübner @ 2023-12-27 23:12 UTC (permalink / raw)
To: linux-media, linux-rockchip; +Cc: liujianfeng1994, Jianfeng Liu
Hi,
Am Mittwoch, 27. Dezember 2023, 18:39:10 CET schrieb Jianfeng Liu:
> This patch enables Hantro G1 video decoder in RK3588's
> device-tree
>
> Tested with FFmpeg v4l2_request code taken from [1]
> with MPEG2, H.264 and VP8 samples.
>
> [1] https://github.com/LibreELEC/LibreELEC.tv/blob/master/packages/multimedia/ffmpeg/patches/v4l2-request/ffmpeg-001-v4l2-request.patch
>
> Signed-off-by: Jianfeng Liu <liujianfeng1994@gmail.com>
> ---
> arch/arm64/boot/dts/rockchip/rk3588s.dtsi | 20 ++++++++++++++++++++
> 1 file changed, 20 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/rockchip/rk3588s.dtsi b/arch/arm64/boot/dts/rockchip/rk3588s.dtsi
> index 5fb0baf8a..b3536e097 100644
> --- a/arch/arm64/boot/dts/rockchip/rk3588s.dtsi
> +++ b/arch/arm64/boot/dts/rockchip/rk3588s.dtsi
> @@ -708,6 +708,26 @@ vop_mmu: iommu@fdd97e00 {
> status = "disabled";
> };
>
> + vpu: video-codec@fdb50400 {
please sort nodes by bus-address. According to the current rk3588s.dtsi,
both nodes should be between
- i2c@fd880000
+ video-codec@fdb50400
+ iommu@fdb50800
- vop@fdd90000
Otherwise this looks nice :-) .
Thanks
Heiko
> + compatible = "rockchip,rk3588-vpu";
> + reg = <0x0 0xfdb50000 0x0 0x800>;
> + interrupts = <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH 0>;
> + clocks = <&cru ACLK_VPU>, <&cru HCLK_VPU>;
> + clock-names = "aclk", "hclk";
> + iommus = <&vdpu_mmu>;
> + power-domains = <&power RK3588_PD_VDPU>;
> + };
> +
> + vdpu_mmu: iommu@fdb50800 {
> + compatible = "rockchip,rk3588-iommu", "rockchip,rk3568-iommu";
> + reg = <0x0 0xfdb50800 0x0 0x40>;
> + interrupts = <GIC_SPI 118 IRQ_TYPE_LEVEL_HIGH 0>;
> + clock-names = "aclk", "iface";
> + clocks = <&cru ACLK_VPU>, <&cru HCLK_VPU>;
> + power-domains = <&power RK3588_PD_VDPU>;
> + #iommu-cells = <0>;
> + };
> +
> uart0: serial@fd890000 {
> compatible = "rockchip,rk3588-uart", "snps,dw-apb-uart";
> reg = <0x0 0xfd890000 0x0 0x100>;
> --
> 2.34.1
>
>
> _______________________________________________
> Linux-rockchip mailing list
> Linux-rockchip@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-rockchip
>
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 3/3] dt-bindings: media: rockchip-vpu: Add RK3588 compatible
2023-12-27 17:39 ` [PATCH 3/3] dt-bindings: media: rockchip-vpu: Add RK3588 compatible Jianfeng Liu
@ 2023-12-27 23:13 ` Heiko Stübner
2023-12-28 7:46 ` Krzysztof Kozlowski
1 sibling, 0 replies; 9+ messages in thread
From: Heiko Stübner @ 2023-12-27 23:13 UTC (permalink / raw)
To: linux-media, linux-rockchip; +Cc: liujianfeng1994, Jianfeng Liu
Am Mittwoch, 27. Dezember 2023, 18:39:11 CET schrieb Jianfeng Liu:
> This patch adds RK3588 compatible in rockchip-vpu dt-bindings.
>
> Signed-off-by: Jianfeng Liu <liujianfeng1994@gmail.com>
> ---
> Documentation/devicetree/bindings/media/rockchip-vpu.yaml | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/Documentation/devicetree/bindings/media/rockchip-vpu.yaml b/Documentation/devicetree/bindings/media/rockchip-vpu.yaml
> index c57e1f488..600ad351e 100644
> --- a/Documentation/devicetree/bindings/media/rockchip-vpu.yaml
> +++ b/Documentation/devicetree/bindings/media/rockchip-vpu.yaml
> @@ -24,6 +24,7 @@ properties:
> - rockchip,rk3399-vpu
> - rockchip,px30-vpu
> - rockchip,rk3568-vpu
> + - rockchip,rk3588-vpu
> - rockchip,rk3588-av1-vpu
Same thing about the alphabetical ordering and including dt-people
as mentioned in patch1.
Thanks
Heiko
> - items:
> - const: rockchip,rk3188-vpu
> --
> 2.34.1
>
>
> _______________________________________________
> Linux-rockchip mailing list
> Linux-rockchip@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-rockchip
>
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 3/3] dt-bindings: media: rockchip-vpu: Add RK3588 compatible
2023-12-27 17:39 ` [PATCH 3/3] dt-bindings: media: rockchip-vpu: Add RK3588 compatible Jianfeng Liu
2023-12-27 23:13 ` Heiko Stübner
@ 2023-12-28 7:46 ` Krzysztof Kozlowski
2023-12-30 8:08 ` amazingfate
1 sibling, 1 reply; 9+ messages in thread
From: Krzysztof Kozlowski @ 2023-12-28 7:46 UTC (permalink / raw)
To: Jianfeng Liu, linux-media, linux-rockchip
On 27/12/2023 18:39, Jianfeng Liu wrote:
> This patch adds RK3588 compatible in rockchip-vpu dt-bindings.
>
> Signed-off-by: Jianfeng Liu <liujianfeng1994@gmail.com>
> ---
Please use scripts/get_maintainers.pl to get a list of necessary people
and lists to CC. It might happen, that command when run on an older
kernel, gives you outdated entries. Therefore please be sure you base
your patches on recent Linux kernel.
You missed at least devicetree list (maybe more), so this won't be
tested by automated tooling. Performing review on untested code might be
a waste of time, thus I will skip this patch entirely till you follow
the process allowing the patch to be tested.
Please kindly resend and include all necessary To/Cc entries.
Best regards,
Krzysztof
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 3/3] dt-bindings: media: rockchip-vpu: Add RK3588 compatible
2023-12-28 7:46 ` Krzysztof Kozlowski
@ 2023-12-30 8:08 ` amazingfate
0 siblings, 0 replies; 9+ messages in thread
From: amazingfate @ 2023-12-30 8:08 UTC (permalink / raw)
To: krzk, heiko; +Cc: linux-media, linux-rockchip, liujianfeng1994
Many thanks for your kindly review. Please forgive my newbee actions.
I just learned how to reply mails with git send-email so forgive me
again for my late reply.
I have just sent v2 of this series to maintainerers and I will send
v3 later.
Many thanks to you guys,
Jianfeng
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-12-30 8:08 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-27 17:39 [PATCH 0/3] Add hantro g1 video decoder support for RK3588 Jianfeng Liu
2023-12-27 17:39 ` [PATCH 1/3] media: verisilicon: Add support for Hantro G1 on RK3588 Jianfeng Liu
2023-12-27 23:08 ` Heiko Stübner
2023-12-27 17:39 ` [PATCH 2/3] arm64: dts: rockchip: Add Hantro G1 VPU support for RK3588 Jianfeng Liu
2023-12-27 23:12 ` Heiko Stübner
2023-12-27 17:39 ` [PATCH 3/3] dt-bindings: media: rockchip-vpu: Add RK3588 compatible Jianfeng Liu
2023-12-27 23:13 ` Heiko Stübner
2023-12-28 7:46 ` Krzysztof Kozlowski
2023-12-30 8:08 ` amazingfate
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox