diff options
author | Michael Tretter <[email protected]> | 2020-11-09 14:48:18 +0100 |
---|---|---|
committer | Michal Simek <[email protected]> | 2020-12-09 19:36:33 +0100 |
commit | 7b1c9b8441aa94a549a90fa3d42687ccbad3eade (patch) | |
tree | 5b480981982ae40f6f6273a3656a11e2c6df72c3 | |
parent | 30b79eb1f92ed5974885d374a4107c94e2dd3e03 (diff) |
soc: xilinx: vcu: add missing register NUM_CORE
The H.264/H.265 Video Codec Unit v1.2 documentation describes this
register as follows:
Number of encoders core used for the provided configuration
This is required for configuring the VCU encoder buffer.
Signed-off-by: Michael Tretter <[email protected]>
Reviewed-by: Hyun Kwon <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Michal Simek <[email protected]>
-rw-r--r-- | include/linux/mfd/syscon/xlnx-vcu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/mfd/syscon/xlnx-vcu.h b/include/linux/mfd/syscon/xlnx-vcu.h index d3edec4b7b1d..ff7bc3656f6e 100644 --- a/include/linux/mfd/syscon/xlnx-vcu.h +++ b/include/linux/mfd/syscon/xlnx-vcu.h @@ -32,6 +32,7 @@ #define VCU_BUFFER_B_FRAME 0x5c #define VCU_WPP_EN 0x60 #define VCU_PLL_CLK_DEC 0x64 +#define VCU_NUM_CORE 0x6c #define VCU_GASKET_INIT 0x74 #define VCU_GASKET_VALUE 0x03 |