Re: omap3isp device tree support

2013-12-18 Thread Enrico
On Tue, Dec 17, 2013 at 2:11 PM, Florian Vaussard florian.vauss...@epfl.ch wrote: So I converted the iommu to DT (patches just sent), used pdata quirks for the isp / mtv9032 data, added a few patches from other people (mainly clk to fix a crash when deferring the omap3isp probe), and a few

Re: [PATCH v2 09/16] s5p-jpeg: Split jpeg-hw.h to jpeg-hw-s5p.c and jpeg-hw-s5p.c

2013-12-18 Thread Mauro Carvalho Chehab
Em Mon, 25 Nov 2013 10:58:16 +0100 Jacek Anaszewski j.anaszew...@samsung.com escreveu: Move function definitions from jpeg-hw.h to jpeg-hw-s5p.c and put function declarations in the jpeg-hw-s5p.h. Signed-off-by: Jacek Anaszewski j.anaszew...@samsung.com Signed-off-by: Kyungmin Park

[GIT PULL FOR v3.14] Add support for 'Thanko's Raremono' FM/AM/SW radio receiver

2013-12-18 Thread Hans Verkuil
The following changes since commit 3e6e3b3d3d6877e5b9fe0c2cd9788127a4974a3d: [media] staging: media: davinci_vpfe: Rewrite return statement in vpfe_video.c (2013-12-18 06:28:13 -0200) are available in the git repository at: git://linuxtv.org/hverkuil/media_tree.git thanko for you to fetch

Re: [PATCH REVIEW 03/18] Montage M88DS3103 DVB-S/S2 demodulator driver

2013-12-18 Thread Mauro Carvalho Chehab
Hi Antti, Em Mon, 9 Dec 2013 00:31:20 +0200 Antti Palosaari cr...@iki.fi escreveu: DVB-S/S2 satellite television demodulator driver. Signed-off-by: Antti Palosaari cr...@iki.fi --- drivers/media/dvb-frontends/Kconfig |7 + drivers/media/dvb-frontends/Makefile |1

Re: [PATCH] libdvbv5: more fixes in the T2 delivery descriptor handler

2013-12-18 Thread Mauro Carvalho Chehab
Thanks for the patch! Em Thu, 5 Dec 2013 16:10:03 +0100 Nikolaus Schulz sch...@macnetix.de escreveu: * Fix a couple of memcpy calls, and remove a bogus one That changes look OK to me. * Properly use lengths of centre_frequency loop and subcell_info loop (they count bytes, not entries)

Re: [PATCH REVIEW 03/18] Montage M88DS3103 DVB-S/S2 demodulator driver

2013-12-18 Thread Antti Palosaari
On 18.12.2013 14:35, Mauro Carvalho Chehab wrote: Hi Antti, Em Mon, 9 Dec 2013 00:31:20 +0200 Antti Palosaari cr...@iki.fi escreveu: DVB-S/S2 satellite television demodulator driver. + *You should have received a copy of the GNU General Public License along + *with this program; if

[PATCH v3 2/8] s5p-jpeg: Add hardware API for the exynos4x12 JPEG codec.

2013-12-18 Thread Jacek Anaszewski
Signed-off-by: Jacek Anaszewski j.anaszew...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- drivers/media/platform/s5p-jpeg/Makefile |2 +- drivers/media/platform/s5p-jpeg/jpeg-core.c | 621 ++---

[PATCH v3 0/8] Add support for Exynos4x12 device to the s5p-jpeg driver

2013-12-18 Thread Jacek Anaszewski
This is the third version of the series that adds support for the Exynos4x12 device to the s5p_jpeg driver. It includes following changes (Mauro - thanks for the review): - renamed all occurrences of exynos to more precise exynos4 - added s5p and exynos4 prefixes to the HW API functions

[PATCH v3 1/8] s5p-jpeg: Split jpeg-hw.h to jpeg-hw-s5p.c and jpeg-hw-s5p.c

2013-12-18 Thread Jacek Anaszewski
Move function definitions from jpeg-hw.h to jpeg-hw-s5p.c, add s5p prefix and put function declarations in the jpeg-hw-s5p.h. Signed-off-by: Jacek Anaszewski j.anaszew...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- drivers/media/platform/s5p-jpeg/Makefile |

[PATCH v3 3/8] s5p-jpeg: Retrieve YCbCr subsampling field from the jpeg header

2013-12-18 Thread Jacek Anaszewski
Make s5p_jpeg_parse_hdr function capable of parsing YCbCr subsampling field of a jpeg file header. Store the parsed value in the context. The information about source JPEG subsampling is required to make validation of destination format possible, which must be conducted for exynos4x12 device as

[PATCH v3 4/8] s5p-jpeg: Ensure correct capture format for Exynos4x12

2013-12-18 Thread Jacek Anaszewski
Adjust capture format to the Exynos4x12 device limitations, according to the subsampling value parsed from the source JPEG image header. If the capture format was set to YUV with subsampling lower than the one of the source JPEG image the decoding process would not succeed. Signed-off-by: Jacek

[PATCH v3 8/8] s5p-jpeg: Adjust g_volatile_ctrl callback to Exynos4x12 needs

2013-12-18 Thread Jacek Anaszewski
Whereas S5PC210 device produces decoded JPEG subsampling values that map on V4L2_JPEG_CHROMA_SUBSAMPLNG values, the Exynos4x12 device doesn't. This patch adds helper function s5p_jpeg_to_user_subsampling, which performs suitable translation. Signed-off-by: Jacek Anaszewski

[PATCH v3 7/8] s5p-jpeg: Ensure setting correct value of the chroma subsampling control

2013-12-18 Thread Jacek Anaszewski
Exynos4x12 has limitations regarding setting chroma subsampling of an output JPEG image. It cannot be lower than the subsampling of the raw source image. Also in case of V4L2_JPEG_CHROMA_SUBSAMPLING_GRAY option the source image fourcc has to be V4L2_PIX_FMT_GREY. This patch implements try_ctrl

[PATCH v3 5/8] s5p-jpeg: Allow for wider JPEG subsampling scope for Exynos4x12 encoder

2013-12-18 Thread Jacek Anaszewski
Exynos4x12 supports wider scope of subsampling modes than S5PC210. Adjust corresponding mask accordingly. Signed-off-by: Jacek Anaszewski j.anaszew...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- drivers/media/platform/s5p-jpeg/jpeg-core.c |3 ++- 1 file changed, 2

[PATCH v3 6/8] s5p-jpeg: Synchronize V4L2_CID_JPEG_CHROMA_SUBSAMPLING control value

2013-12-18 Thread Jacek Anaszewski
When output queue fourcc is set to any flavour of YUV, the V4L2_CID_JPEG_CHROMA_SUBSAMPLING control value as well as its in-driver cached counterpart have to be updated with the subsampling property of the format so as to be able to provide correct information to the user space and preclude

[GIT PULL] s5p-jpeg codec driver update for Exynos4x12 SoCs

2013-12-18 Thread Sylwester Nawrocki
Hi Mauro, These are remaining patches with the namespace issue corrected. The following changes since commit c0ec1c4dd7d6b2bfb1eca116f9df4578d9193623: [media] a8293: add small sleep in order to settle LNB voltage (2013-12-18 07:18:31 -0200) are available in the git repository at:

[GIT PULL v2] PCTV 461e / M88DS3103 / M88TS2022

2013-12-18 Thread Antti Palosaari
It is just same PULL request than earlier, but now with a 2 new patches to correct some brand new checkpatch.pl checks... regards Antti The following changes since commit 675722b0e3917c6c917f1aa5f6d005cd3a0479f5: Merge branch 'upstream-fixes' into patchwork (2013-12-13 05:04:00 -0200) are

em28xx DEADLOCK reported by lock debug

2013-12-18 Thread Antti Palosaari
That same lock debug deadlock is still there (maybe ~4 times I report it during 2 years). Is that possible to fix easily at all? Antti joulu 18 17:56:37 localhost.localdomain kernel: usb 2-2: USB disconnect, device number 2 joulu 18 17:56:37 localhost.localdomain kernel: em28174 #0:

Re: [patch v2] [media] v4l: omap4iss: Restore irq flags correctly in omap4iss_video_buffer_next()

2013-12-18 Thread Laurent Pinchart
Hi Dan, Thank you for the patch. On Wednesday 18 December 2013 10:29:24 Dan Carpenter wrote: The spin_lock_irqsave() macro is not nestable. The second call will overwrite the first record of flags so the IRQs will not be enabled correctly at the end of the function. In the current code,

Re: [ivtv-users] Kernel crash with modprobe cx18

2013-12-18 Thread Andy Walls
On Wed, 2013-12-18 at 13:06 -0600, Scott Robinson wrote: I am running Fedora 18, x86_64, and recently updated the kernel to 3.11.10-100.fc18 from 3.6.10-4.fc18. When I try to install the cx18 module, the kernel crashes with the following: Can you provide the output of $ objdump -d

Re: [PATCH] libdvbv5: more fixes in the T2 delivery descriptor handler

2013-12-18 Thread Nikolaus Schulz
Hi Mauro, I didn't have the time yet to look at your comments and that patch again, but: Please note that my email address sch...@macnetix.de is shut down as of today[1]. Please use my alternate address, n...@htonl.de, for any further replies or followups. Maybe Patchwork[2] should also be

cron job: media_tree daily build: ERRORS

2013-12-18 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: Thu Dec 19 04:00:23 CET 2013 git branch: test git hash: c0ec1c4dd7d6b2bfb1eca116f9df4578d9193623 gcc

[PATCH RFC v4 2/7] v4l: add new tuner types for SDR

2013-12-18 Thread Antti Palosaari
Define tuner types V4L2_TUNER_ADC and V4L2_TUNER_RF for SDR usage. ADC is used for setting sampling rate (sampling frequency) to SDR device. Another tuner type, named as V4L2_TUNER_RF, is possible RF tuner. Is is used to down-convert RF frequency to range ADC could sample. Having RF tuner is

[PATCH RFC v4 7/7] v4l: add device capability flag for SDR receiver

2013-12-18 Thread Antti Palosaari
VIDIOC_QUERYCAP IOCTL is used to query device capabilities. Add new capability flag to inform given device supports SDR capture. Cc: Hans Verkuil hverk...@xs4all.nl Signed-off-by: Antti Palosaari cr...@iki.fi --- include/uapi/linux/videodev2.h | 2 ++ 1 file changed, 2 insertions(+) diff --git

[PATCH RFC v4 0/7] SDR API

2013-12-18 Thread Antti Palosaari
Here is the full set of implementation. But. API Documentation is the really hard part as it is in XML format. I have wasted already quite too much time for it :/ The reason is that I don't have any XML editor, just plain text editor. Is there any WYSIWYG XML editor for Linux? If there is no

[PATCH RFC v4 1/7] v4l: add device type for Software Defined Radio

2013-12-18 Thread Antti Palosaari
Add new V4L device type VFL_TYPE_SDR for Software Defined Radio. It is registered as /dev/swradio0 (/dev/sdr0 was already reserved). Cc: Hans Verkuil hverk...@xs4all.nl Signed-off-by: Antti Palosaari cr...@iki.fi --- drivers/media/v4l2-core/v4l2-dev.c | 5 + include/media/v4l2-dev.h

[PATCH RFC v4 6/7] v4l: enable some IOCTLs for SDR receiver

2013-12-18 Thread Antti Palosaari
Enable stream format (FMT) IOCTLs for SDR use. These are used for negotiate used data stream format. Reorganise some some IOCTL selection logic. Cc: Hans Verkuil hverk...@xs4all.nl Signed-off-by: Antti Palosaari cr...@iki.fi --- drivers/media/v4l2-core/v4l2-dev.c | 21 ++---

[PATCH RFC v4 4/7] v4l: add stream format for SDR receiver

2013-12-18 Thread Antti Palosaari
Add new V4L2 stream format definition, V4L2_BUF_TYPE_SDR_CAPTURE, for SDR receiver. Cc: Hans Verkuil hverk...@xs4all.nl Signed-off-by: Antti Palosaari cr...@iki.fi Acked-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/v4l2-core/v4l2-ioctl.c | 1 + include/trace/events/v4l2.h

[PATCH RFC v4 3/7] v4l: 1 Hz resolution flag for tuners

2013-12-18 Thread Antti Palosaari
Add V4L2_TUNER_CAP_1HZ for 1 Hz resolution. Cc: Hans Verkuil hverk...@xs4all.nl Signed-off-by: Antti Palosaari cr...@iki.fi Acked-by: Hans Verkuil hans.verk...@cisco.com --- include/uapi/linux/videodev2.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/uapi/linux/videodev2.h

[PATCH RFC v4 5/7] v4l: define own IOCTL ops for SDR FMT

2013-12-18 Thread Antti Palosaari
Use own format ops for SDR data: vidioc_enum_fmt_sdr_cap vidioc_g_fmt_sdr_cap vidioc_s_fmt_sdr_cap vidioc_try_fmt_sdr_cap Cc: Hans Verkuil hverk...@xs4all.nl Signed-off-by: Antti Palosaari cr...@iki.fi Acked-by: Hans Verkuil hans.verk...@cisco.com --- include/media/v4l2-ioctl.h | 8 1