From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751601AbcGaTnX (ORCPT ); Sun, 31 Jul 2016 15:43:23 -0400 Received: from mail-pf0-f175.google.com ([209.85.192.175]:35779 "EHLO mail-pf0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750886AbcGaTnT (ORCPT ); Sun, 31 Jul 2016 15:43:19 -0400 From: Steve Longerbeam X-Google-Original-From: Steve Longerbeam To: p.zabel@pengutronix.de, plagnioj@jcrosoft.com, tomi.valkeinen@ti.com Cc: dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, linux-fbdev@vger.kernel.org, Steve Longerbeam Subject: [PATCH v3 00/12] IPUv3 prep for i.MX5/6 v4l2 staging drivers, v3 Date: Sun, 31 Jul 2016 12:42:15 -0700 Message-Id: <1469994147-17549-1-git-send-email-steve_longerbeam@mentor.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org In this version: - API changes to ipu-vdi.c in "gpu: ipu-v3: Add Video Deinterlacer unit". - "gpu: ipu-v3: Add FSU channel linking support" is new but based on previous patch "gpu: ipu-v3: Add IDMA channel linking support". No other changes from previous version. Steve Longerbeam (12): gpu: ipu-cpmem: Add ipu_cpmem_set_uv_offset() gpu: ipu-cpmem: Add ipu_cpmem_get_burstsize() gpu: ipu-v3: Add ipu_get_num() gpu: ipu-v3: Add VDI input IDMAC channels gpu: ipu-v3: set correct full sensor frame for PAL/NTSC gpu: ipu-v3: Fix CSI data format for 16-bit media bus formats gpu: ipu-v3: Fix IRT usage gpu: ipu-v3: rename CSI client device gpu: ipu-v3: Add Video Deinterlacer unit gpu: ipu-v3: Add FSU channel linking support gpu: ipu-ic: Add complete image conversion support with tiling gpu: ipu-ic: allow multiple handles to ic drivers/gpu/ipu-v3/Makefile | 2 +- drivers/gpu/ipu-v3/ipu-common.c | 154 +++- drivers/gpu/ipu-v3/ipu-cpmem.c | 13 + drivers/gpu/ipu-v3/ipu-csi.c | 26 +- drivers/gpu/ipu-v3/ipu-ic.c | 1756 ++++++++++++++++++++++++++++++++++++++- drivers/gpu/ipu-v3/ipu-prv.h | 34 + drivers/gpu/ipu-v3/ipu-vdi.c | 254 ++++++ include/video/imx-ipu-v3.h | 99 ++- 8 files changed, 2278 insertions(+), 60 deletions(-) create mode 100644 drivers/gpu/ipu-v3/ipu-vdi.c -- 1.9.1 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Steve Longerbeam Date: Sun, 31 Jul 2016 19:42:15 +0000 Subject: [PATCH v3 00/12] IPUv3 prep for i.MX5/6 v4l2 staging drivers, v3 Message-Id: <1469994147-17549-1-git-send-email-steve_longerbeam@mentor.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: p.zabel@pengutronix.de, plagnioj@jcrosoft.com, tomi.valkeinen@ti.com Cc: dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, linux-fbdev@vger.kernel.org, Steve Longerbeam In this version: - API changes to ipu-vdi.c in "gpu: ipu-v3: Add Video Deinterlacer unit". - "gpu: ipu-v3: Add FSU channel linking support" is new but based on previous patch "gpu: ipu-v3: Add IDMA channel linking support". No other changes from previous version. Steve Longerbeam (12): gpu: ipu-cpmem: Add ipu_cpmem_set_uv_offset() gpu: ipu-cpmem: Add ipu_cpmem_get_burstsize() gpu: ipu-v3: Add ipu_get_num() gpu: ipu-v3: Add VDI input IDMAC channels gpu: ipu-v3: set correct full sensor frame for PAL/NTSC gpu: ipu-v3: Fix CSI data format for 16-bit media bus formats gpu: ipu-v3: Fix IRT usage gpu: ipu-v3: rename CSI client device gpu: ipu-v3: Add Video Deinterlacer unit gpu: ipu-v3: Add FSU channel linking support gpu: ipu-ic: Add complete image conversion support with tiling gpu: ipu-ic: allow multiple handles to ic drivers/gpu/ipu-v3/Makefile | 2 +- drivers/gpu/ipu-v3/ipu-common.c | 154 +++- drivers/gpu/ipu-v3/ipu-cpmem.c | 13 + drivers/gpu/ipu-v3/ipu-csi.c | 26 +- drivers/gpu/ipu-v3/ipu-ic.c | 1756 ++++++++++++++++++++++++++++++++++++++- drivers/gpu/ipu-v3/ipu-prv.h | 34 + drivers/gpu/ipu-v3/ipu-vdi.c | 254 ++++++ include/video/imx-ipu-v3.h | 99 ++- 8 files changed, 2278 insertions(+), 60 deletions(-) create mode 100644 drivers/gpu/ipu-v3/ipu-vdi.c -- 1.9.1