1* Samsung Multi Format Codec (MFC) 2 3Multi Format Codec (MFC) is the IP present in Samsung SoCs which 4supports high resolution decoding and encoding functionalities. 5The MFC device driver is a v4l2 driver which can encode/decode 6video raw/elementary streams and has support for all popular 7video codecs. 8 9Required properties: 10 - compatible : value should be either one among the following 11 (a) "samsung,mfc-v5" for MFC v5 present in Exynos4 SoCs 12 (b) "samsung,mfc-v6" for MFC v6 present in Exynos5 SoCs 13 (c) "samsung,mfc-v7" for MFC v7 present in Exynos5420 SoC 14 (d) "samsung,mfc-v8" for MFC v8 present in Exynos5800 SoC 15 (e) "samsung,exynos5433-mfc" for MFC v8 present in Exynos5433 SoC 16 17 - reg : Physical base address of the IP registers and length of memory 18 mapped region. 19 20 - interrupts : MFC interrupt number to the CPU. 21 - clocks : from common clock binding: handle to mfc clock. 22 - clock-names : from common clock binding: must contain "mfc", 23 corresponding to entry in the clocks property. 24 25Optional properties: 26 - power-domains : power-domain property defined with a phandle 27 to respective power domain. 28 - memory-region : from reserved memory binding: phandles to two reserved 29 memory regions, first is for "left" mfc memory bus interfaces, 30 second if for the "right" mfc memory bus, used when no SYSMMU 31 support is available 32 33Obsolete properties: 34 - samsung,mfc-r, samsung,mfc-l : support removed, please use memory-region 35 property instead 36 37 38Example: 39SoC specific DT entry: 40 41mfc: codec@13400000 { 42 compatible = "samsung,mfc-v5"; 43 reg = <0x13400000 0x10000>; 44 interrupts = <0 94 0>; 45 power-domains = <&pd_mfc>; 46 clocks = <&clock 273>; 47 clock-names = "mfc"; 48}; 49 50Reserved memory specific DT entry for given board (see reserved memory binding 51for more information): 52 53reserved-memory { 54 #address-cells = <1>; 55 #size-cells = <1>; 56 ranges; 57 58 mfc_left: region@51000000 { 59 compatible = "shared-dma-pool"; 60 no-map; 61 reg = <0x51000000 0x800000>; 62 }; 63 64 mfc_right: region@43000000 { 65 compatible = "shared-dma-pool"; 66 no-map; 67 reg = <0x43000000 0x800000>; 68 }; 69}; 70 71Board specific DT entry: 72 73codec@13400000 { 74 memory-region = <&mfc_left>, <&mfc_right>; 75}; 76