Re: [RFCv2 PATCH 7/9] vb2: add thread support

2013-12-03 Thread Hans Verkuil
On 12/04/2013 02:17 AM, Laurent Pinchart wrote: > Hi Hans, > > On Tuesday 03 December 2013 10:56:07 Hans Verkuil wrote: >> On 11/29/13 19:21, Laurent Pinchart wrote: >>> On Friday 29 November 2013 10:58:42 Hans Verkuil wrote: From: Hans Verkuil In order to implement vb2 DVB or ALSA

cron job: media_tree daily build: WARNINGS

2013-12-03 Thread Hans Verkuil
This message is generated daily by a cron job that builds media_tree for the kernels and architectures in the list below. Results of the daily build of media_tree: date: Wed Dec 4 04:00:19 CET 2013 git branch: test git hash: 16422f552d4e70fa0953917e05f72033d629bdb8 gcc versio

Re: [RFCv2 PATCH 7/9] vb2: add thread support

2013-12-03 Thread Laurent Pinchart
Hi Hans, On Tuesday 03 December 2013 10:56:07 Hans Verkuil wrote: > On 11/29/13 19:21, Laurent Pinchart wrote: > > On Friday 29 November 2013 10:58:42 Hans Verkuil wrote: > >> From: Hans Verkuil > >> > >> In order to implement vb2 DVB or ALSA support you need to be able to > >> start a kernel th

Re: [RFCv2 PATCH 1/9] vb2: push the mmap semaphore down to __buf_prepare()

2013-12-03 Thread Laurent Pinchart
Hi Hans, On Tuesday 03 December 2013 10:41:34 Hans Verkuil wrote: > On 11/29/13 19:16, Laurent Pinchart wrote: > > On Friday 29 November 2013 10:58:36 Hans Verkuil wrote: > >> From: Hans Verkuil > >> > >> Rather than taking the mmap semaphore at a relatively high-level > >> function, push it dow

[PATCH 05/25] v4l: omap4iss: Define more ISS and ISP IRQ register bits

2013-12-03 Thread Laurent Pinchart
Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss.c | 26 ++-- drivers/staging/media/omap4iss/iss_ipipeif.c | 2 +- drivers/staging/media/omap4iss/iss_regs.h| 36 +--- drivers/staging/media/omap4iss/iss_resizer.c | 4 ++--

[PATCH 04/25] v4l: omap4iss: Remove double semicolon at end of line

2013-12-03 Thread Laurent Pinchart
Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss_video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/media/omap4iss/iss_video.c b/drivers/staging/media/omap4iss/iss_video.c index 0a7137b..7763b8d 100644 --- a/drivers/staging/media/oma

[PATCH 13/25] v4l: omap4iss: Create and use register access functions

2013-12-03 Thread Laurent Pinchart
Replace the direct readl/writel calls with helper functions that take an ISS pointer and compute the register memory address. Also add bit clear, set and update helpers. Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss.c | 96 drivers/staging/media

[PATCH 10/25] v4l: omap4iss: isif: Ignore VD0 interrupts when no buffer is available

2013-12-03 Thread Laurent Pinchart
The ISIF generates VD0 interrupts even when writes are disabled. Disabling the ISIF when no buffer is available is thus not be enough, we need to handle the situation explicitly. Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss_ipipeif.c | 7 +++ 1 file changed, 7 inser

[PATCH 02/25] v4l: omap4iss: Don't split log strings on multiple lines

2013-12-03 Thread Laurent Pinchart
Non-split strings help grepping for messages. Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss.c | 6 +++--- drivers/staging/media/omap4iss/iss_csi2.c| 13 - drivers/staging/media/omap4iss/iss_resizer.c | 5 + drivers/staging/media/omap4iss/iss

[PATCH 06/25] v4l: omap4iss: isif: Define more VDINT registers

2013-12-03 Thread Laurent Pinchart
Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss_ipipeif.c | 4 ++-- drivers/staging/media/omap4iss/iss_regs.h| 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/media/omap4iss/iss_ipipeif.c b/drivers/staging/media/omap4iss/iss_ipipe

[PATCH 11/25] v4l: omap4iss: ipipeif: Shift input data according to the input format

2013-12-03 Thread Laurent Pinchart
Input samples must be left-aligned on the ISIF 16-bit data bus. Configure the 16-to-16-bit selector to shift data according to the input format. Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss_ipipeif.c | 4 +++- drivers/staging/media/omap4iss/iss_regs.h| 2 +- 2 files

[PATCH 18/25] v4l: omap4iss: Make __iss_video_get_format() return a v4l2_mbus_framefmt

2013-12-03 Thread Laurent Pinchart
The function will be used by a caller that needs the media bus format instead of the pixel format currently returned. Move the media bus format to pixel format conversion to the existing caller. Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss_video.c | 25 +++--

[PATCH 14/25] v4l: omap4iss: csi: Create and use register access functions

2013-12-03 Thread Laurent Pinchart
Replace the direct readl/writel calls with helper functions. Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss_csi2.c | 122 +--- drivers/staging/media/omap4iss/iss_csi2.h | 6 +- drivers/staging/media/omap4iss/iss_csiphy.c | 27 +++--- drivers

[PATCH 08/25] v4l: omap4iss: Don't make IRQ debugging functions inline

2013-12-03 Thread Laurent Pinchart
Let the compiler decide. Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/media/omap4iss/iss.c b/drivers/staging/media/omap4iss/iss.c index 65a1680..e6528fa 100644 --- a/drivers/stagi

[PATCH 19/25] v4l: omap4iss: Add enum_fmt_vid_cap ioctl support

2013-12-03 Thread Laurent Pinchart
List the pixel formats compatible with the active format currently configured on the connected pad. Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss_video.c | 36 ++ 1 file changed, 36 insertions(+) diff --git a/drivers/staging/media/omap4iss/is

[PATCH 12/25] v4l: omap4iss: csi2: Enable automatic ULP mode transition

2013-12-03 Thread Laurent Pinchart
Automatically switch between ULP and ON states based on ULPM signal from complex I/O. Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss_csiphy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/media/omap4iss/iss_csiphy.c b/drivers/sta

[PATCH 07/25] v4l: omap4iss: Enhance IRQ debugging

2013-12-03 Thread Laurent Pinchart
Add a pretty print function for ISP IRQs and remove the _INT suffix from interrupt names to enhance readability. Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss.c | 121 +-- 1 file changed, 87 insertions(+), 34 deletions(-) diff --git a/dri

[PATCH 03/25] v4l: omap4iss: Restrict line lengths to 80 characters where possible

2013-12-03 Thread Laurent Pinchart
Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss_csiphy.c | 6 ++- drivers/staging/media/omap4iss/iss_ipipeif.c | 63 drivers/staging/media/omap4iss/iss_resizer.c | 47 - drivers/staging/media/omap4iss/iss_video.c | 11 +++

[PATCH 24/25] v4l: omap4iss: Cancel streaming when a fatal error occurs

2013-12-03 Thread Laurent Pinchart
When a fatal error that prevents any further video streaming occurs in a pipeline, all queued buffers must be marked as erroneous and new buffers must be prevented from being queued. Implement this behaviour with a new omap4iss_pipeline_cancel_stream() function that can be used by submodules to can

[PATCH 25/25] v4l: omap4iss: resizer: Fix comment regarding bypass mode

2013-12-03 Thread Laurent Pinchart
The comment explaining the usage of the bypass bit is wrong, fix it. Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss_resizer.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/staging/media/omap4iss/iss_resizer.c b/drivers/staging/media/omap4

[PATCH 16/25] v4l: omap4iss: Convert hexadecimal constants to lower case

2013-12-03 Thread Laurent Pinchart
The Linux kernel recommends lower case for hexadecimal constants. Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss_csi2.c | 4 +- drivers/staging/media/omap4iss/iss_csiphy.c | 4 +- drivers/staging/media/omap4iss/iss_regs.h | 458 ++-- 3 file

[PATCH 17/25] v4l: omap4iss: Add description field to iss_format_info structure

2013-12-03 Thread Laurent Pinchart
The field stores the format description in a human-readable form. Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss_video.c | 38 +++--- drivers/staging/media/omap4iss/iss_video.h | 2 ++ 2 files changed, 21 insertions(+), 19 deletions(-) diff --git

[PATCH 00/25] OMAP4 ISS fixes

2013-12-03 Thread Laurent Pinchart
Hello, Here's a first round of fixes for the OMAP4 ISS driver, based on top of the linuxtv master branch. Given the very diverse nature of the patches, please see the individual commit messages for more information. Laurent Pinchart (25): v4l: omap4iss: Replace printk by dev_err v4l: omap4iss

[PATCH 01/25] v4l: omap4iss: Replace printk by dev_err

2013-12-03 Thread Laurent Pinchart
dev_err is preferred over printk(KERN_ERR) when a device pointer is available. Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss.c| 8 drivers/staging/media/omap4iss/iss_csi2.c | 7 --- drivers/staging/media/omap4iss/iss_csiphy.c | 2 +- drivers/stagin

[PATCH 09/25] v4l: omap4iss: Fix operators precedence in ternary operators

2013-12-03 Thread Laurent Pinchart
The ternary operator ? : has a low precedence. Use parenthesis where needed. Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss_csi2.c| 20 +++- drivers/staging/media/omap4iss/iss_ipipe.c | 2 +- drivers/staging/media/omap4iss/iss_ipipeif.c | 4 ++-- d

[PATCH 21/25] v4l: omap4iss: Enable/disabling the ISP interrupts globally

2013-12-03 Thread Laurent Pinchart
ISP interrupts are enabled/disabled when starting/stopping the IPIPEIF or resizer. This doesn't permit using the two modules in separate pipelines. Fix it by enabling/disabling the ISP interrupts at the same time as the ISS interrupts, in the ISS device get/put operations. Signed-off-by: Laurent P

[PATCH 20/25] v4l: omap4iss: Propagate stop timeouts from submodules to the driver core

2013-12-03 Thread Laurent Pinchart
Return an error from the s_stream handlers when stopping the stream failed instead of just logging the error and ignoring it. While we're at it, move the logging code from submodules to the driver code. Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss.c | 11 +++

[PATCH 15/25] v4l: omap4iss: resizer: Stop the whole resizer to avoid FIFO overflows

2013-12-03 Thread Laurent Pinchart
When stopping the resizer due to a buffer underrun, disabling RZA only produces input FIFO overflows, most probably when the next frame is received. Disable the whole resizer to work around the problem. Signed-off-by: Laurent Pinchart --- drivers/staging/media/omap4iss/iss_resizer.c | 8 +---

[PATCH 23/25] v4l: omap4iss: csi2: Replace manual if statement with a subclk field

2013-12-03 Thread Laurent Pinchart
Instead of manually checking whether the CSI2 module is CSI2a or CSI2b in order to select the right subclock to enable/disable, add a subclk field to the iss_csi2 structure, initialize it with the corresponding subclock value and use it at runtime. Signed-off-by: Laurent Pinchart --- drivers/sta

[PATCH 22/25] v4l: omap4iss: Reset the ISS when the pipeline can't be stopped

2013-12-03 Thread Laurent Pinchart
When a failure to stop a module in the pipeline is detected, the only way to recover is to reset the ISS. However, as other users can be using a different pipeline with other modules, the ISS can't be reset synchronously with the error detection. Keep track of modules that have failed to stop, and

Re: [PATCH -next] [media] media: i2c: lm3560: fix missing unlock error in lm3560_get_ctrl().

2013-12-03 Thread Sakari Ailus
Hi Daniel, Thanks for the patch. (Dropping LKML; this isn't relevant there.) On Thu, Nov 14, 2013 at 12:43:27PM +0900, Daniel Jeong wrote: > Add the missing unlock before return from function lm3560_get_ctrl() > to avoid deadlock. Thanks to Dan Carpenter. > > Signed-off-by: Daniel Jeong > --- >

[GIT PULL] git://linuxtv.org/snawrocki/samsung.git v3.14-exynos4-is-fixes

2013-12-03 Thread Sylwester Nawrocki
The following changes since commit fa507e4d32bf6c35eb5fe7dbc0593ae3723c9575: [media] media: marvell-ccic: use devm to release clk (2013-11-29 14:46:47 -0200) are available in the git repository at: git://linuxtv.org/snawrocki/samsung.git v3.14-exynos4-is-fixes for you to fetch changes up

[GIT PULL] git://linuxtv.org/snawrocki/samsung.git v3.14-s5p-tv-clk

2013-12-03 Thread Sylwester Nawrocki
The following changes since commit fa507e4d32bf6c35eb5fe7dbc0593ae3723c9575: [media] media: marvell-ccic: use devm to release clk (2013-11-29 14:46:47 -0200) are available in the git repository at: git://linuxtv.org/snawrocki/samsung.git v3.14-s5p-tv-clk for you to fetch changes up to 929

[GIT PULL] git://linuxtv.org/snawrocki/samsung.git v3.14-m2m-ioctl-helpers

2013-12-03 Thread Sylwester Nawrocki
The following changes since commit fa507e4d32bf6c35eb5fe7dbc0593ae3723c9575: [media] media: marvell-ccic: use devm to release clk (2013-11-29 14:46:47 -0200) are available in the git repository at: git://linuxtv.org/snawrocki/samsung.git v3.14-m2m-ioctl-helpers for you to fetch changes up

Re: [PATCH v2 01/18] v4l: omap4iss: Add support for OMAP4 camera interface - Core

2013-12-03 Thread Laurent Pinchart
Hi Mauro, On Tuesday 03 December 2013 15:02:43 Mauro Carvalho Chehab wrote: > Em Mon, 4 Nov 2013 01:06:26 +0100 > > Laurent Pinchart escreveu: > > From: Sergio Aguirre > > > > This adds a very simplistic driver to utilize the CSI2A interface inside > > the ISS subsystem in OMAP4, and dump the

Re: [REVIEW PATCH 1/9] si4713 : Reorganized drivers/media/radio directory

2013-12-03 Thread Hans Verkuil
On 12/03/2013 04:39 PM, Mauro Carvalho Chehab wrote: > Em Tue, 15 Oct 2013 17:24:37 +0200 > Dinesh Ram escreveu: > >> Added a new si4713 directory which will contain all si4713 related files. >> Also updated Makefile and Kconfig >> >> Signed-off-by: Dinesh Ram >> --- >> drivers/media/radio/Kcon

Re: [REVIEW PATCH 2/9] si4713 : Modified i2c driver to handle cases where interrupts are not used

2013-12-03 Thread Hans Verkuil
On 12/03/2013 04:35 PM, Mauro Carvalho Chehab wrote: > Em Tue, 15 Oct 2013 17:24:38 +0200 > Dinesh Ram escreveu: > >> Checks have been introduced at several places in the code to test if an >> interrupt is set or not. >> For devices which do not use the interrupt, to get a valid response, within

Re: [PATCH v2 01/18] v4l: omap4iss: Add support for OMAP4 camera interface - Core

2013-12-03 Thread Mauro Carvalho Chehab
Em Mon, 4 Nov 2013 01:06:26 +0100 Laurent Pinchart escreveu: > From: Sergio Aguirre > > This adds a very simplistic driver to utilize the CSI2A interface inside > the ISS subsystem in OMAP4, and dump the data to memory. > > Check Documentation/video4linux/omap4_camera.txt for details. > > Th

[GIT PULL 3.13 v2] AF9035/AF9033 stack alloc regression fixes

2013-12-03 Thread Antti Palosaari
And as these stack alloc patches seems to requested for stable too, these 3 fixes should go stable also! I am not very happy to situation that stack alloc patch set was requested to stable, with almost none testing. These patches appeared to media master *only* around one week ago. I tested te

[PATCH v2 0/3] AF9035/AF9033 stack alloc fixes

2013-12-03 Thread Antti Palosaari
Now with a fix from Dan too. Antti Palosaari (2): af9033: fix broken I2C af9035: fix broken I2C and USB I/O Dan Carpenter (1): af9035: unlock on error in af9035_i2c_master_xfer() drivers/media/dvb-frontends/af9033.c | 12 ++-- drivers/media/usb/dvb-usb-v2/af9035.c | 15 +-

[PATCH v2 3/3] af9035: unlock on error in af9035_i2c_master_xfer()

2013-12-03 Thread Antti Palosaari
From: Dan Carpenter We introduced a couple new error paths which are missing unlocks. Fixes: 7760e148350b ('[media] af9035: Don't use dynamic static allocation') Signed-off-by: Dan Carpenter Acked-by: Antti Palosaari Signed-off-by: Antti Palosaari --- drivers/media/usb/dvb-usb-v2/af9035.c |

[PATCH v2 1/3] af9033: fix broken I2C

2013-12-03 Thread Antti Palosaari
Driver did not work anymore since I2C has gone broken due to recent commit: commit 37ebaf6891ee81687bb558e8375c0712d8264ed8 [media] dvb-frontends: Don't use dynamic static allocation Signed-off-by: Antti Palosaari --- drivers/media/dvb-frontends/af9033.c | 12 ++-- 1 file changed, 6 inse

[PATCH v2 2/3] af9035: fix broken I2C and USB I/O

2013-12-03 Thread Antti Palosaari
There was three small buffer len calculation bugs which caused driver non-working. These are coming from recent commit: commit 7760e148350bf6df95662bc0db3734e9d991cb03 [media] af9035: Don't use dynamic static allocation Signed-off-by: Antti Palosaari --- drivers/media/usb/dvb-usb-v2/af9035.c | 8

FW: [REVIEW PATCH 1/9] si4713 : Reorganized drivers/media/radio directory

2013-12-03 Thread Dinesh Ram
Mail to the mailing list from my gmail id bounce back. Trying with this ID. From: d ram [dinesh.ram...@gmail.com] Sent: 03 December 2013 16:57 To: Mauro Carvalho Chehab Cc: Dinesh Ram; Linux-Media; Hans Verkuil; Eduardo Valentin Subject: Re: [REVIEW PATCH 1/9] si4713 : Reorganized drivers/media/ra

Re: [PATCH 2/2] af9035: fix broken I2C and USB I/O

2013-12-03 Thread Antti Palosaari
On 03.12.2013 17:06, Mauro Carvalho Chehab wrote: Em Wed, 27 Nov 2013 22:28:48 +0200 Antti Palosaari escreveu: There was three small buffer len calculation bugs which caused driver non-working. These are coming from recent commit: commit 7760e148350bf6df95662bc0db3734e9d991cb03 [media] af9035:

Re: [REVIEW PATCH 1/9] si4713 : Reorganized drivers/media/radio directory

2013-12-03 Thread Mauro Carvalho Chehab
Em Tue, 15 Oct 2013 17:24:37 +0200 Dinesh Ram escreveu: > Added a new si4713 directory which will contain all si4713 related files. > Also updated Makefile and Kconfig > > Signed-off-by: Dinesh Ram > --- > drivers/media/radio/Kconfig| 29 +- > drivers/media/radio/Make

Re: [REVIEW PATCH 2/9] si4713 : Modified i2c driver to handle cases where interrupts are not used

2013-12-03 Thread Mauro Carvalho Chehab
Em Tue, 15 Oct 2013 17:24:38 +0200 Dinesh Ram escreveu: > Checks have been introduced at several places in the code to test if an > interrupt is set or not. > For devices which do not use the interrupt, to get a valid response, within a > specified timeout, > the device is polled instead. > >

Re: [PATCH 2/2] af9035: fix broken I2C and USB I/O

2013-12-03 Thread Mauro Carvalho Chehab
Em Wed, 27 Nov 2013 22:28:48 +0200 Antti Palosaari escreveu: > There was three small buffer len calculation bugs which caused > driver non-working. These are coming from recent commit: > commit 7760e148350bf6df95662bc0db3734e9d991cb03 > [media] af9035: Don't use dynamic static allocation > > Sig

Re: [PATCH 1/2] af9033: fix broken I2C

2013-12-03 Thread Mauro Carvalho Chehab
Em Wed, 27 Nov 2013 22:28:47 +0200 Antti Palosaari escreveu: > Driver did not work anymore since I2C has gone broken due > to recent commit: > commit 37ebaf6891ee81687bb558e8375c0712d8264ed8 > [media] dvb-frontends: Don't use dynamic static allocation > > Signed-off-by: Antti Palosaari > --- >

Microsoft Account Team

2013-12-03 Thread Corey, Pamela
Dear Webmail User, Your two incoming mails were placed on pending status due to the recent upgrade in our database, In order to receive the messages kindly CLICK HERE Login with your correct Webmail information's and wait for responds from our data base

Re: [PATCH] media: v4l2-dev: fix video device index assignment

2013-12-03 Thread Ricardo Ribalda Delgado
Acked-by: Ricardo Ribalda On Tue, Dec 3, 2013 at 2:23 PM, Sakari Ailus wrote: > Hi, Marek! > > Thanks for the patch. > > On Tue, Dec 03, 2013 at 02:14:29PM +0100, Marek Szyprowski wrote: >> The side effect of commit 1056e4388b045 ("v4l2-dev: Fix race condition on >> __video_register_device") is

Re: [PATCH] media: v4l2-dev: fix video device index assignment

2013-12-03 Thread Sakari Ailus
Hi, Marek! Thanks for the patch. On Tue, Dec 03, 2013 at 02:14:29PM +0100, Marek Szyprowski wrote: > The side effect of commit 1056e4388b045 ("v4l2-dev: Fix race condition on > __video_register_device") is the increased number of index value assigned > on video_device registration. Before that co

[PATCH] media: v4l2-dev: fix video device index assignment

2013-12-03 Thread Marek Szyprowski
The side effect of commit 1056e4388b045 ("v4l2-dev: Fix race condition on __video_register_device") is the increased number of index value assigned on video_device registration. Before that commit video_devices were numbered from 0, after it, the indexes starts from 1, because get_index() always co

[PATCH] media: s5p_mfc: remove s5p_mfc_get_node_type() function

2013-12-03 Thread Marek Szyprowski
s5p_mfc_get_node_type() relies on get_index() helper function, which in turn relies on video_device index numbers assigned on driver registration. All this code is not really needed, because there is already access to respective video_device structures via common s5p_mfc_dev structure. This fixes t

[PATCH 1/2] v4l: ti-vpe: Fix the data_type value for UYVY VPDMA format

2013-12-03 Thread Archit Taneja
The data_type value to be programmed in the data descriptors to fetch/write a UYVY buffer was not mentioned correctly in the older DRA7x documentation. This caused VPE to fail with UYVY color formats. Update the data_type value to fix functionality when UYVY format is used. Signed-off-by: Archit

[PATCH 0/2] v4l: ti-vpe: Some VPE fixes

2013-12-03 Thread Archit Taneja
This series fixes 2 issues in the VPE driver. The first fix allows us to use UYVY color format for source and destination buffers. The second fix makes sure we don't set pixel format widths which the VPDMA HW can't support. None of these fixes are fatal, so they don't necessarily need to go in for

[PATCH 2/2] v4l: ti-vpe: make sure VPDMA line stride constraints are met

2013-12-03 Thread Archit Taneja
When VPDMA fetches or writes to an image buffer, the line stride must be a multiple of 16 bytes. If it isn't, VPDMA HW will write/fetch until the next 16 byte boundry. This causes VPE to work incorrectly for source or destination widths which don't satisfy the above alignment requirement. In order

Request for adding a Driver - TBS 5220

2013-12-03 Thread florian krammel
Hallo, I do have this DVB-X USB Stick: http://www.linuxtv.org/wiki/index.php/TBS5220_USB_DVB-T2/T/C_Freeview_HD_TV_stick There are drivers available now: http://www.tbsdtv.com/download/#tbs5220 How can I request to add this to kernel drivers? Or have I done it now? :) MfG Florian -- To unsub

RE: Can't open mfc v5 encode but decode can

2013-12-03 Thread Kamil Debski
Hi Randy, We also experienced this issue. One of the changes in the v4l2 core affected the MFC driver. A fix for MFC has been prepared by Marek Szyprowski and should be sent out soon. Also another tip - in 3.13 a check on bytesused and length fields in planes array has been implemented. So make s

Re: TeVii S471 issues with HotBird tp.11411h

2013-12-03 Thread Tomasz Bubel
Hi all. Strange, yesterday I ran my HTPC from a HD drive with Win7 and tested transponder 11411h in ProgDVB and works well. 75% of the signal, SNR 99%. I think it is a bug / problem in the Linux driver for TeVii S471. Unfortunately, I lack the skills to improve it. 2013/11/29 Tomasz Bubel : > Hi

Can't open mfc v5 encode but decode can

2013-12-03 Thread randy
The kernel is 3.13-rc2, the mfc has been configured by dts, the dts is attached below. I have placed s5p-mfc.fw in /lib/firmware/ . I can use v4l2-ctl(from v4l2-utils) the encoder in the manufacturer kernel, but I can't in here. What is the problem? Thank you ==log==

Re: [PATCH 6/6] experimental: arm: dts: dra7xx: Add a DT node for VPE

2013-12-03 Thread Archit Taneja
Hi Laurent, On Friday 09 August 2013 03:41 AM, Laurent Pinchart wrote: Hi Archit, Thank you for the patch. On Friday 02 August 2013 19:33:43 Archit Taneja wrote: Add a DT node for VPE in dra7.dtsi. This is experimental because we might need to split the VPE address space a bit more, and also

Re: [RFCv2 PATCH 7/9] vb2: add thread support

2013-12-03 Thread Hans Verkuil
On 11/29/13 19:21, Laurent Pinchart wrote: > Hi Hans, > > Thank you for the patch. > > On Friday 29 November 2013 10:58:42 Hans Verkuil wrote: >> From: Hans Verkuil >> >> In order to implement vb2 DVB or ALSA support you need to be able to start >> a kernel thread that queues and dequeues buffer

Re: [RFCv2 PATCH 1/9] vb2: push the mmap semaphore down to __buf_prepare()

2013-12-03 Thread Hans Verkuil
On 11/29/13 19:16, Laurent Pinchart wrote: > Hi Hans, > > Thank you for the patch. > > On Friday 29 November 2013 10:58:36 Hans Verkuil wrote: >> From: Hans Verkuil >> >> Rather than taking the mmap semaphore at a relatively high-level function, >> push it down to the place where it is really ne

Re: update scan file for ro-DigiTV

2013-12-03 Thread Oliver Schinagl
On 01-12-13 14:56, Adrian Minta wrote: I took the .scm file from my Samsung TV and I use SamyGO-ChanEdit-v54 to look inside. The values where tested with kaffeine and w_scan. All the TV and Radio Channel where detected successfully. Thanks, I have pushed it to the repo's. Oliver This is the c

I expect your urgent response

2013-12-03 Thread Aliman
Greetings from Dr. Ayman Aliman Dear friend, I am DR. AYMAN ALIMAN. THE MANAGER, AUDIT AND ACCOUNTING DEPT.BANK OF AFRICA (B.O.A) Burkina Faso .  I know my message will come to you as a surprise. Don't worry I was totally convinced to write you, I hoped that you will not expose or betray this t