ARM: Exynos: replace custom MFC reserved memory handling with generic code
authorMarek Szyprowski <m.szyprowski@samsung.com>
Tue, 30 Jul 2013 13:23:55 +0000 (15:23 +0200)
committerChanho Park <chanho61.park@samsung.com>
Tue, 18 Nov 2014 02:42:31 +0000 (11:42 +0900)
MFC driver use custom bindings for managing reserved memory. Those bindings
are not really specific to MFC device and no even well discussed. They can
be easily replaced with generic, platform independent code for handling
reserved and contiguous memory.

Two additional child devices for each memory port (AXI master) are
introduced to let one assign some properties to each of them. Later one
can also use them to assign properties related to SYSMMU controllers,
which can be used to manage the limited dma window provided by those
memory ports.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
13 files changed:
Documentation/devicetree/bindings/media/s5p-mfc.txt
arch/arm/boot/dts/exynos4.dtsi
arch/arm/boot/dts/exynos4210-origen.dts
arch/arm/boot/dts/exynos4210-smdkv310.dts
arch/arm/boot/dts/exynos4412-origen.dts
arch/arm/boot/dts/exynos4412-smdk4412.dts
arch/arm/boot/dts/exynos5250-arndale.dts
arch/arm/boot/dts/exynos5250-smdk5250.dts
arch/arm/boot/dts/exynos5250.dtsi
arch/arm/mach-exynos/mach-exynos4-dt.c
arch/arm/mach-exynos/mach-exynos5-dt.c
arch/arm/plat-samsung/include/plat/mfc.h
arch/arm/plat-samsung/s5p-dev-mfc.c

index bf0182d..a1f6192 100644 (file)
@@ -6,39 +6,84 @@ The MFC device driver is a v4l2 driver which can encode/decode
 video raw/elementary streams and has support for all popular
 video codecs.
 
+The MFC device is connected to system bus with two memory ports (AXI
+masters) for better performance. Those memory ports are modelled as
+separate child devices, so one can assign some properties to them (like
+memory region for dma buffer allocation or sysmmu controller).
+
 Required properties:
   - compatible : value should be either one among the following
        (a) "samsung,mfc-v5" for MFC v5 present in Exynos4 SoCs
        (b) "samsung,mfc-v6" for MFC v6 present in Exynos5 SoCs
+       and additionally "simple-bus" to correctly initialize child
+       devices for memory ports (AXI masters)
 
   - reg : Physical base address of the IP registers and length of memory
          mapped region.
 
   - interrupts : MFC interrupt number to the CPU.
 
-  - samsung,mfc-r : Base address of the first memory bank used by MFC
-                   for DMA contiguous memory allocation and its size.
-
-  - samsung,mfc-l : Base address of the second memory bank used by MFC
-                   for DMA contiguous memory allocation and its size.
-
 Optional properties:
   - samsung,power-domain : power-domain property defined with a phandle
                           to respective power domain.
 
+Two child nodes must be defined for MFC device. Their names must be
+following: "memport-r" and "memport-l" ("right" and "left"). Required
+properties:
+  - compatible : value should be "samsung,memport"
+  - dma-memory-region : optional property with a phandle to respective memory
+                       region (see devicetree/bindings/memory.txt), if no region
+                       is defined, sysmmu controller must be used for managing
+                       limited dma window of each memory port.
+
+
 Example:
 SoC specific DT entry:
 
 mfc: codec@13400000 {
-       compatible = "samsung,mfc-v5";
+       compatible = "samsung,mfc-v5", "simple-bus";
        reg = <0x13400000 0x10000>;
        interrupts = <0 94 0>;
        samsung,power-domain = <&pd_mfc>;
+       status = "disabled";
+
+       mfc_r: memport-r {
+               compatible = "samsung,memport";
+       };
+
+       mfc_l: memport-l {
+               compatible = "samsung,memport";
+       };
 };
 
 Board specific DT entry:
 
+memory {
+       /* ... */
+       reserved-memory {
+               #address-cells = <1>;
+               #size-cells = <1>;
+
+               mfc_l_mem: mfc_l_region@43000000 {
+                       compatible = "contiguous-memory-region", "reserved-memory-region";
+                       reg = <0x43000000 0x1000000>;
+               };
+
+               mfc_r_mem: mfc_r_region@52000000 {
+                       compatible = "contiguous-memory-region", "reserved-memory-region";
+                       reg = <0x52000000 0x1000000>;
+               };
+       };
+};
+
 codec@13400000 {
-       samsung,mfc-r = <0x43000000 0x800000>;
-       samsung,mfc-l = <0x51000000 0x800000>;
+       status = "okay";
+
+       memport-r {
+               dma-memory-region = <&mfc_r_mem>;
+       };
+
+       memport-l {
+               dma-memory-region = <&mfc_l_mem>;
+       };
 };
index 758e321..f54231d 100644 (file)
                samsung,power-domain = <&pd_mfc>;
                clocks = <&clock 273>, <&clock 170>;
                clock-names = "mfc", "sclk_mfc";
+               #address-cells = <1>;
+               #size-cells = <0>;
                status = "disabled";
                iommu = <&sysmmu_mfc_l>, <&sysmmu_mfc_r>;
+
+               mfc_l: memport@0 {
+                       compatible = "samsung,memport";
+                       reg = <0>;
+               };
+
+               mfc_r: memport@1 {
+                       compatible = "samsung,memport";
+                       reg = <1>;
+               };
        };
 
        serial@13800000 {
index 524b908..ab598e9 100644 (file)
                       0x50000000 0x10000000
                       0x60000000 0x10000000
                       0x70000000 0x10000000>;
+
+               reserved-memory {
+                       #address-cells = <1>;
+                       #size-cells = <1>;
+
+                       mfc_l_mem: mfc_l_region@43000000 {
+                               compatible = "linux,contiguous-memory-region", "reserved-memory-region";
+                               reg = <0x43000000 0x1000000>;
+                       };
+
+                       mfc_r_mem: mfc_r_region@51000000 {
+                               compatible = "linux,contiguous-memory-region", "reserved-memory-region";
+                               reg = <0x51000000 0x1000000>;
+                       };
+               };
        };
 
        chosen {
        };
 
        codec@13400000 {
-               samsung,mfc-r = <0x43000000 0x800000>;
-               samsung,mfc-l = <0x51000000 0x800000>;
                status = "okay";
+
+               memport@0 {
+                       memory-region = <&mfc_l_mem>;
+               };
+
+               memport@1 {
+                       memory-region = <&mfc_r_mem>;
+               };
        };
 
        serial@13800000 {
index 91332b7..85672ea 100644 (file)
 
        memory {
                reg = <0x40000000 0x80000000>;
+
+               reserved-memory {
+                       #address-cells = <1>;
+                       #size-cells = <1>;
+
+                       mfc_l_mem: mfc_l_region@43000000 {
+                               compatible = "linux,contiguous-memory-region", "reserved-memory-region";
+                               reg = <0x43000000 0x1000000>;
+                       };
+
+                       mfc_r_mem: mfc_r_region@51000000 {
+                               compatible = "linux,contiguous-memory-region", "reserved-memory-region";
+                               reg = <0x51000000 0x1000000>;
+                       };
+               };
        };
 
        chosen {
        };
 
        codec@13400000 {
-               samsung,mfc-r = <0x43000000 0x800000>;
-               samsung,mfc-l = <0x51000000 0x800000>;
                status = "okay";
+
+               memport@0 {
+                       memory-region = <&mfc_l_mem>;
+               };
+
+               memport@1 {
+                       memory-region = <&mfc_r_mem>;
+               };
        };
 
        serial@13800000 {
index 1c21bad..5d43b7d 100644 (file)
 
        memory {
                reg = <0x40000000 0x40000000>;
+
+               reserved-memory {
+                       #address-cells = <1>;
+                       #size-cells = <1>;
+
+                       mfc_l_mem: mfc_l_region@43000000 {
+                               compatible = "linux,contiguous-memory-region", "reserved-memory-region";
+                               reg = <0x43000000 0x1000000>;
+                       };
+
+                       mfc_r_mem: mfc_r_region@51000000 {
+                               compatible = "linux,contiguous-memory-region", "reserved-memory-region";
+                               reg = <0x51000000 0x1000000>;
+                       };
+               };
        };
 
        chosen {
        };
 
        codec@13400000 {
-               samsung,mfc-r = <0x43000000 0x800000>;
-               samsung,mfc-l = <0x51000000 0x800000>;
                status = "okay";
+
+               memport@0 {
+                       memory-region = <&mfc_l_mem>;
+               };
+
+               memport@1 {
+                       memory-region = <&mfc_r_mem>;
+               };
        };
 
        fimd@11c00000 {
index dd56431..591212a 100644 (file)
 
        memory {
                reg = <0x40000000 0x40000000>;
+
+               reserved-memory {
+                       #address-cells = <1>;
+                       #size-cells = <1>;
+
+                       mfc_l_mem: mfc_l_region@43000000 {
+                               compatible = "linux,contiguous-memory-region", "reserved-memory-region";
+                               reg = <0x43000000 0x1000000>;
+                       };
+
+                       mfc_r_mem: mfc_r_region@51000000 {
+                               compatible = "linux,contiguous-memory-region", "reserved-memory-region";
+                               reg = <0x51000000 0x1000000>;
+                       };
+               };
        };
 
        chosen {
        };
 
        codec@13400000 {
-               samsung,mfc-r = <0x43000000 0x800000>;
-               samsung,mfc-l = <0x51000000 0x800000>;
                status = "okay";
+
+               memport@0 {
+                       memory-region = <&mfc_l_mem>;
+               };
+
+               memport@1 {
+                       memory-region = <&mfc_r_mem>;
+               };
        };
 
        serial@13800000 {
index b64cb43..dfda4fa 100644 (file)
 
        memory {
                reg = <0x40000000 0x80000000>;
+
+               reserved-memory {
+                       #address-cells = <1>;
+                       #size-cells = <1>;
+
+                       mfc_l_mem: mfc_l_region@43000000 {
+                               compatible = "linux,contiguous-memory-region", "reserved-memory-region";
+                               reg = <0x43000000 0x1000000>;
+                       };
+
+                       mfc_r_mem: mfc_r_region@51000000 {
+                               compatible = "linux,contiguous-memory-region", "reserved-memory-region";
+                               reg = <0x51000000 0x1000000>;
+                       };
+               };
        };
 
        chosen {
        };
 
        codec@11000000 {
-               samsung,mfc-r = <0x43000000 0x800000>;
-               samsung,mfc-l = <0x51000000 0x800000>;
+               status = "okay";
+
+               memport@0 {
+                       memory-region = <&mfc_l_mem>;
+               };
+
+               memport@1 {
+                       memory-region = <&mfc_r_mem>;
+               };
        };
 
        i2c@12C60000 {
index 3e0c792..da6860e 100644 (file)
 
        memory {
                reg = <0x40000000 0x80000000>;
+
+               reserved-memory {
+                       #address-cells = <1>;
+                       #size-cells = <1>;
+
+                       mfc_l_mem: mfc_l_region@43000000 {
+                               compatible = "linux,contiguous-memory-region", "reserved-memory-region";
+                               reg = <0x43000000 0x1000000>;
+                       };
+
+                       mfc_r_mem: mfc_r_region@51000000 {
+                               compatible = "linux,contiguous-memory-region", "reserved-memory-region";
+                               reg = <0x51000000 0x1000000>;
+                       };
+               };
        };
 
        chosen {
        };
 
        codec@11000000 {
-               samsung,mfc-r = <0x43000000 0x800000>;
-               samsung,mfc-l = <0x51000000 0x800000>;
+               status = "okay";
+
+               memport@0 {
+                       memory-region = <&mfc_l_mem>;
+               };
+
+               memport@1 {
+                       memory-region = <&mfc_r_mem>;
+               };
        };
 
        i2s0: i2s@03830000 {
index 9c0000f..2f66571 100644 (file)
                interrupts = <0 96 0>;
                samsung,power-domain = <&pd_mfc>;
                iommu = <&sysmmu_mfc_l &sysmmu_mfc_l>;
+               #address-cells = <1>;
+               #size-cells = <0>;
+               status = "disabled";
+
+               mfc_l: memport@0 {
+                       compatible = "samsung,memport";
+                       reg = <0>;
+               };
+
+               mfc_r: memport@1 {
+                       compatible = "samsung,memport";
+                       reg = <1>;
+               };
        };
 
        rtc {
index b9ed834..5a609a4 100644 (file)
 
 #include <linux/kernel.h>
 #include <linux/of_platform.h>
-#include <linux/of_fdt.h>
 #include <linux/serial_core.h>
-#include <linux/memblock.h>
 #include <linux/clocksource.h>
 
 #include <asm/mach/arch.h>
-#include <plat/mfc.h>
 
 #include "common.h"
 
@@ -40,18 +37,6 @@ static char const *exynos4_dt_compat[] __initdata = {
        NULL
 };
 
-static void __init exynos4_reserve(void)
-{
-#ifdef CONFIG_S5P_DEV_MFC
-       struct s5p_mfc_dt_meminfo mfc_mem;
-
-       /* Reserve memory for MFC only if it's available */
-       mfc_mem.compatible = "samsung,mfc-v5";
-       if (of_scan_flat_dt(s5p_fdt_find_mfc_mem, &mfc_mem))
-               s5p_mfc_reserve_mem(mfc_mem.roff, mfc_mem.rsize, mfc_mem.loff,
-                               mfc_mem.lsize);
-#endif
-}
 DT_MACHINE_START(EXYNOS4210_DT, "Samsung Exynos4 (Flattened Device Tree)")
        /* Maintainer: Thomas Abraham <thomas.abraham@linaro.org> */
        .smp            = smp_ops(exynos_smp_ops),
@@ -63,5 +48,4 @@ DT_MACHINE_START(EXYNOS4210_DT, "Samsung Exynos4 (Flattened Device Tree)")
        .init_time      = exynos_init_time,
        .dt_compat      = exynos4_dt_compat,
        .restart        = exynos4_restart,
-       .reserve        = exynos4_reserve,
 MACHINE_END
index 753b94f..45d4c19 100644 (file)
 */
 
 #include <linux/of_platform.h>
-#include <linux/of_fdt.h>
 #include <linux/memblock.h>
-#include <linux/io.h>
 #include <linux/clocksource.h>
 
 #include <asm/mach/arch.h>
 #include <mach/regs-pmu.h>
 
 #include <plat/cpu.h>
-#include <plat/mfc.h>
 
 #include "common.h"
 
@@ -61,19 +58,6 @@ static char const *exynos5_dt_compat[] __initdata = {
        NULL
 };
 
-static void __init exynos5_reserve(void)
-{
-#ifdef CONFIG_S5P_DEV_MFC
-       struct s5p_mfc_dt_meminfo mfc_mem;
-
-       /* Reserve memory for MFC only if it's available */
-       mfc_mem.compatible = "samsung,mfc-v6";
-       if (of_scan_flat_dt(s5p_fdt_find_mfc_mem, &mfc_mem))
-               s5p_mfc_reserve_mem(mfc_mem.roff, mfc_mem.rsize, mfc_mem.loff,
-                               mfc_mem.lsize);
-#endif
-}
-
 DT_MACHINE_START(EXYNOS5_DT, "SAMSUNG EXYNOS5 (Flattened Device Tree)")
        /* Maintainer: Kukjin Kim <kgene.kim@samsung.com> */
        .init_irq       = exynos5_init_irq,
@@ -84,5 +68,4 @@ DT_MACHINE_START(EXYNOS5_DT, "SAMSUNG EXYNOS5 (Flattened Device Tree)")
        .init_time      = exynos_init_time,
        .dt_compat      = exynos5_dt_compat,
        .restart        = exynos5_restart,
-       .reserve        = exynos5_reserve,
 MACHINE_END
index e6d7c42..ac13227 100644 (file)
 #ifndef __PLAT_SAMSUNG_MFC_H
 #define __PLAT_SAMSUNG_MFC_H __FILE__
 
-struct s5p_mfc_dt_meminfo {
-       unsigned long   loff;
-       unsigned long   lsize;
-       unsigned long   roff;
-       unsigned long   rsize;
-       char            *compatible;
-};
-
 /**
  * s5p_mfc_reserve_mem - function to early reserve memory for MFC driver
  * @rbase:     base address for MFC 'right' memory interface
@@ -32,7 +24,4 @@ struct s5p_mfc_dt_meminfo {
 void __init s5p_mfc_reserve_mem(phys_addr_t rbase, unsigned int rsize,
                                phys_addr_t lbase, unsigned int lsize);
 
-int __init s5p_fdt_find_mfc_mem(unsigned long node, const char *uname,
-                               int depth, void *data);
-
 #endif /* __PLAT_SAMSUNG_MFC_H */
index a93fb6f..c941175 100644 (file)
@@ -111,35 +111,3 @@ static int __init s5p_mfc_memory_init(void)
        return 0;
 }
 device_initcall(s5p_mfc_memory_init);
-
-#ifdef CONFIG_OF
-int __init s5p_fdt_find_mfc_mem(unsigned long node, const char *uname,
-                               int depth, void *data)
-{
-       __be32 *prop;
-       unsigned long len;
-       struct s5p_mfc_dt_meminfo *mfc_mem = data;
-
-       if (!data)
-               return 0;
-
-       if (!of_flat_dt_is_compatible(node, mfc_mem->compatible))
-               return 0;
-
-       prop = of_get_flat_dt_prop(node, "samsung,mfc-l", &len);
-       if (!prop || (len != 2 * sizeof(unsigned long)))
-               return 0;
-
-       mfc_mem->loff = be32_to_cpu(prop[0]);
-       mfc_mem->lsize = be32_to_cpu(prop[1]);
-
-       prop = of_get_flat_dt_prop(node, "samsung,mfc-r", &len);
-       if (!prop || (len != 2 * sizeof(unsigned long)))
-               return 0;
-
-       mfc_mem->roff = be32_to_cpu(prop[0]);
-       mfc_mem->rsize = be32_to_cpu(prop[1]);
-
-       return 1;
-}
-#endif