Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

media: arm64: dts: st: add video decoder support to stm32mp255

Add VDEC hardware video decoder support to STM32MP255.

Signed-off-by: Hugues Fruchet <hugues.fruchet@foss.st.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>

authored by

Hugues Fruchet and committed by
Mauro Carvalho Chehab
d96a6119 b0fb9ca3

+16
+6
arch/arm64/boot/dts/st/stm32mp251.dtsi
··· 52 52 compatible = "fixed-clock"; 53 53 clock-frequency = <200000000>; 54 54 }; 55 + 56 + ck_icn_p_vdec: ck-icn-p-vdec { 57 + #clock-cells = <0>; 58 + compatible = "fixed-clock"; 59 + clock-frequency = <200000000>; 60 + }; 55 61 }; 56 62 57 63 firmware {
+10
arch/arm64/boot/dts/st/stm32mp255.dtsi
··· 6 6 #include "stm32mp253.dtsi" 7 7 8 8 / { 9 + soc@0 { 10 + rifsc: rifsc-bus@42080000 { 11 + vdec: vdec@480d0000 { 12 + compatible = "st,stm32mp25-vdec"; 13 + reg = <0x480d0000 0x3c8>; 14 + interrupts = <GIC_SPI 117 IRQ_TYPE_LEVEL_HIGH>; 15 + clocks = <&ck_icn_p_vdec>; 16 + }; 17 + }; 18 + }; 9 19 };