mirror of
https://github.com/torvalds/linux.git
synced 2026-05-03 22:12:32 -04:00
Add VENC hardware video encoder support to STM32MP255. Signed-off-by: Hugues Fruchet <hugues.fruchet@foss.st.com> Signed-off-by: Alexandre Torgue <alexandre.torgue@foss.st.com>
27 lines
664 B
Plaintext
27 lines
664 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-3-Clause)
|
|
/*
|
|
* Copyright (C) STMicroelectronics 2023 - All Rights Reserved
|
|
* Author: Alexandre Torgue <alexandre.torgue@foss.st.com> for STMicroelectronics.
|
|
*/
|
|
#include "stm32mp253.dtsi"
|
|
|
|
/ {
|
|
soc@0 {
|
|
rifsc: rifsc-bus@42080000 {
|
|
vdec: vdec@480d0000 {
|
|
compatible = "st,stm32mp25-vdec";
|
|
reg = <0x480d0000 0x3c8>;
|
|
interrupts = <GIC_SPI 117 IRQ_TYPE_LEVEL_HIGH>;
|
|
clocks = <&ck_icn_p_vdec>;
|
|
};
|
|
|
|
venc: venc@480e0000 {
|
|
compatible = "st,stm32mp25-venc";
|
|
reg = <0x480e0000 0x800>;
|
|
interrupts = <GIC_SPI 167 IRQ_TYPE_LEVEL_HIGH>;
|
|
clocks = <&ck_icn_ls_mcu>;
|
|
};
|
|
};
|
|
};
|
|
};
|