Linux Samsung SOC development
 help / color / mirror / Atom feed
From: Marek Szyprowski <m.szyprowski@samsung.com>
To: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: linux-media@vger.kernel.org, linux-samsung-soc@vger.kernel.org,
	devicetree@vger.kernel.org,
	Sylwester Nawrocki <s.nawrocki@samsung.com>,
	Kamil Debski <k.debski@samsung.com>,
	Andrzej Hajda <a.hajda@samsung.com>,
	Kukjin Kim <kgene@kernel.org>,
	Krzysztof Kozlowski <k.kozlowski@samsung.com>,
	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Subject: Re: [PATCH v2 0/7] Exynos: MFC driver: reserved memory cleanup and IOMMU support
Date: Mon, 14 Dec 2015 10:42:10 +0100	[thread overview]
Message-ID: <566E8EF2.9020601@samsung.com> (raw)
In-Reply-To: <1849454.x4mBhJHn1l@avalon>

Hello,

On 2015-12-13 20:52, Laurent Pinchart wrote:
> Hi Marek,
>
> Thank you for the patches.
>
> On Wednesday 09 December 2015 14:58:15 Marek Szyprowski wrote:
>> Hello,
>>
>> This patchset finally perform cleanup of custom code in s5p-mfc codec
>> driver. The first part is removal of custom, driver specific code for
>> intializing and handling of reserved memory. Instead, a generic code for
>> reserved memory regions is used.
> Should you update the reserved memory bindings documentation
> (Documentation/devicetree/bindings/reserved-memory/reserved-memory.txt) to
> document usage of the memory-region-names property ?

Okay, I will update documentation as well.

>> Then, once it is done, the proper setup
>> of DMA parameters (max segment size) is applied for all multimedia
>> devices found on Exynos SoCs to let them properly handle shared buffers
>> mapped into contiguous DMA address space. The last patch adds support
>> for IOMMU to MFC driver. Some additional code is needed because of
>> specific requirements of MFC device firmware (see patch 7 for more
>> details). When no IOMMU is available, the code fallbacks to generic
>> reserved memory regions.
>>
>> After applying this patchset, MFC device works correctly when IOMMU is
>> either enabled or disabled.
>>
>> Patches have been tested on top of linux-next from 20151207. I would
>> prefer to merge patches 1-2 via Samsung tree and patches 3-7 via media
>> tree (there are no compile-time dependencies between patches 1-2 and
>> 3-7). Patches have been tested on Odroid U3 (Exynos 4412 based) and
>> Odroid XU3 (Exynos 5422 based) boards.
>>
>> Best regards
>> Marek Szyprowski
>> Samsung R&D Institute Poland
>>
>>
>> Changelog:
>> v2:
>> - reworked of_reserved_mem_init* functions on request from Rob Herring,
>>    added separate index and name based selection of reserved region
>> - adapted for of_reserved_mem_init* related changes
>>
>> v1: https://www.mail-archive.com/linux-media@vger.kernel.org/msg94100.html
>> - initial version of another approach for this problem, rewrote driver code
>>    for new reserved memory bindings, which finally have been merged some
>>    time ago
>>
>> v0:
>> http://lists.infradead.org/pipermail/linux-arm-kernel/2013-August/189259.ht
>> ml - old patchset solving the same problem, abandoned due to other tasks and
>> long time of merging reserved memory bindings and support code for it
>>
>> Patch summary:
>>
>> Marek Szyprowski (7):
>>    ARM: Exynos: convert MFC device to generic reserved memory bindings
>>    ARM: dts: exynos4412-odroid*: enable MFC device
>>    of: reserved_mem: add support for named reserved mem nodes
>>    media: vb2-dma-contig: add helper for setting dma max seg size
>>    media: set proper max seg size for devices on Exynos SoCs
>>    media: s5p-mfc: replace custom reserved memory init code with generic
>>      one
>>    media: s5p-mfc: add iommu support
>>
>>   .../devicetree/bindings/media/s5p-mfc.txt          |  16 +--
>>   arch/arm/boot/dts/exynos4210-origen.dts            |  22 ++-
>>   arch/arm/boot/dts/exynos4210-smdkv310.dts          |  22 ++-
>>   arch/arm/boot/dts/exynos4412-odroid-common.dtsi    |  24 ++++
>>   arch/arm/boot/dts/exynos4412-origen.dts            |  22 ++-
>>   arch/arm/boot/dts/exynos4412-smdk4412.dts          |  22 ++-
>>   arch/arm/boot/dts/exynos5250-arndale.dts           |  22 ++-
>>   arch/arm/boot/dts/exynos5250-smdk5250.dts          |  22 ++-
>>   arch/arm/boot/dts/exynos5250-spring.dts            |  22 ++-
>>   arch/arm/boot/dts/exynos5420-arndale-octa.dts      |  22 ++-
>>   arch/arm/boot/dts/exynos5420-smdk5420.dts          |  22 ++-
>>   arch/arm/boot/dts/exynos5422-odroidxu3-common.dtsi |  22 ++-
>>   arch/arm/mach-exynos/Makefile                      |   2 -
>>   arch/arm/mach-exynos/exynos.c                      |  19 ---
>>   arch/arm/mach-exynos/mfc.h                         |  16 ---
>>   arch/arm/mach-exynos/s5p-dev-mfc.c                 |  94 -------------
>>   drivers/media/platform/exynos-gsc/gsc-core.c       |   1 +
>>   drivers/media/platform/exynos4-is/fimc-core.c      |   1 +
>>   drivers/media/platform/exynos4-is/fimc-is.c        |   1 +
>>   drivers/media/platform/exynos4-is/fimc-lite.c      |   1 +
>>   drivers/media/platform/s5p-g2d/g2d.c               |   1 +
>>   drivers/media/platform/s5p-jpeg/jpeg-core.c        |   1 +
>>   drivers/media/platform/s5p-mfc/s5p_mfc.c           | 153 ++++++++++--------
>>   drivers/media/platform/s5p-mfc/s5p_mfc_iommu.h     |  79 +++++++++++
>>   drivers/media/platform/s5p-tv/mixer_video.c        |   1 +
>>   drivers/media/v4l2-core/videobuf2-dma-contig.c     |  15 ++
>>   drivers/of/of_reserved_mem.c                       | 104 +++++++++++---
>>   include/linux/of_reserved_mem.h                    |  31 ++++-
>>   include/media/videobuf2-dma-contig.h               |   1 +
>>   29 files changed, 533 insertions(+), 248 deletions(-)
>>   delete mode 100644 arch/arm/mach-exynos/mfc.h
>>   delete mode 100644 arch/arm/mach-exynos/s5p-dev-mfc.c
>>   create mode 100644 drivers/media/platform/s5p-mfc/s5p_mfc_iommu.h

Best regards
-- 
Marek Szyprowski, PhD
Samsung R&D Institute Poland

      reply	other threads:[~2015-12-14  9:42 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-09 13:58 [PATCH v2 0/7] Exynos: MFC driver: reserved memory cleanup and IOMMU support Marek Szyprowski
     [not found] ` <1449669502-24601-1-git-send-email-m.szyprowski-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2015-12-09 13:58   ` [PATCH v2 1/7] ARM: Exynos: convert MFC device to generic reserved memory bindings Marek Szyprowski
2015-12-09 13:58 ` [PATCH v2 2/7] ARM: dts: exynos4412-odroid*: enable MFC device Marek Szyprowski
2015-12-10  7:44   ` Krzysztof Kozlowski
2015-12-10  7:45     ` Krzysztof Kozlowski
2015-12-09 13:58 ` [PATCH v2 3/7] of: reserved_mem: add support for named reserved mem nodes Marek Szyprowski
2015-12-09 13:58 ` [PATCH v2 4/7] media: vb2-dma-contig: add helper for setting dma max seg size Marek Szyprowski
2015-12-13 19:57   ` Laurent Pinchart
2015-12-14  9:20     ` Marek Szyprowski
2015-12-14 15:50       ` Laurent Pinchart
2015-12-15  8:40         ` Marek Szyprowski
2015-12-09 13:58 ` [PATCH v2 5/7] media: set proper max seg size for devices on Exynos SoCs Marek Szyprowski
2015-12-09 13:58 ` [PATCH v2 6/7] media: s5p-mfc: replace custom reserved memory init code with generic one Marek Szyprowski
2015-12-09 13:58 ` [PATCH v2 7/7] media: s5p-mfc: add iommu support Marek Szyprowski
2015-12-13 19:52 ` [PATCH v2 0/7] Exynos: MFC driver: reserved memory cleanup and IOMMU support Laurent Pinchart
2015-12-14  9:42   ` Marek Szyprowski [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=566E8EF2.9020601@samsung.com \
    --to=m.szyprowski@samsung.com \
    --cc=a.hajda@samsung.com \
    --cc=b.zolnierkie@samsung.com \
    --cc=devicetree@vger.kernel.org \
    --cc=k.debski@samsung.com \
    --cc=k.kozlowski@samsung.com \
    --cc=kgene@kernel.org \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-media@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=s.nawrocki@samsung.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox