> Оригинално писмо
>От: "N. D." nam...@abv.bg
>Относно: stv090x: possible bug with 8psk,fec=5/6
>До: linux-media@vger.kernel.org
>Изпратено на: Четвъртък, 2012, Юни 14 22:33:06 EEST
> I own a Skystar USB HD which I use with vdr. Ever since I bought the card I
Hi Laurent,
On Thu, Nov 22, 2012 at 06:58:09PM +0100, Laurent Pinchart wrote:
> Hi Steffen,
>
> On Thursday 22 November 2012 17:00:13 Steffen Trumtrar wrote:
> > Add helper to get fb_videomode from devicetree.
> >
> > Signed-off-by: Steffen Trumtrar
> > Reviewed-by: Thierry Reding
> > Acked-by
On Mon, 19 Nov 2012, Bill Pemberton wrote:
> CONFIG_HOTPLUG is going away as an option so __devexit is no
> longer needed.
> drivers/media/platform/sh_vou.c | 2 +-
> drivers/media/platform/soc_camera/atmel-isi.c| 2 +-
> drivers/media/platform/soc_camera/mx2
Fixes the following warning:
WARNING: space prohibited between function name and open parenthesis '('
FILE: media/platform/exynos-gsc/gsc-m2m.c:606:
ctx = kzalloc(sizeof (*ctx), GFP_KERNEL);
Cc: Shaik Ameer Basha
Signed-off-by: Sachin Kamat
---
drivers/media/platform/exynos-gsc/gsc-m2m.
devm_clk_get() is a device managed function and makes error handling
a bit simpler.
Cc: Shaik Ameer Basha
Signed-off-by: Sachin Kamat
---
drivers/media/platform/exynos-gsc/gsc-core.c |6 +-
1 files changed, 1 insertions(+), 5 deletions(-)
diff --git a/drivers/media/platform/exynos-gsc/
In case of clk_prepare failure, the function gsc_clk_get also prints
"failed to get clock" which is not correct. Hence move the error
messages to their respective blocks. While at it, also renamed the labels
meaningfully.
Cc: Shaik Ameer Basha
Signed-off-by: Sachin Kamat
---
drivers/media/platf
Since this function just returns (since gsc->clock is NULL),
remove it and make the exit code simpler.
Cc: Shaik Ameer Basha
Signed-off-by: Sachin Kamat
---
drivers/media/platform/exynos-gsc/gsc-core.c |8 +++-
1 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/drivers/media
Patch series build tested and based on samsung/for_v3.8 branch of
git://linuxtv.org/snawrocki/media.git.
Sachin Kamat (4):
[media] exynos-gsc: Rearrange error messages for valid prints
[media] exynos-gsc: Remove gsc_clk_put call from gsc_clk_get
[media] exynos-gsc: Use devm_clk_get()
[medi
Hi Prabhakar and others,
On Fri, Nov 16, 2012 at 08:15:02PM +0530, Prabhakar Lad wrote:
> From: Manjunath Hadli
>
> This patch set adds media controller based capture driver for
> DM365.
>
> This driver bases its design on Laurent Pinchart's Media Controller Design
> whose patches for Media Con
On Friday 23 November 2012 00:09:49 Steffen Trumtrar wrote:
> On Thu, Nov 22, 2012 at 07:31:39PM +0100, Laurent Pinchart wrote:
> > On Thursday 22 November 2012 17:00:12 Steffen Trumtrar wrote:
> > > Add a function to convert from the generic videomode to a fb_videomode.
> > >
> > > Signed-off-by:
The following changes since commit 304a0807a22852fe3095a62c24b25c4d0e16d003:
[media] drivers/media/usb/hdpvr/hdpvr-core.c: fix error return code
(2012-11-22 14:22:31 -0200)
are available in the git repository at:
git://linuxtv.org/anttip/media_tree.git for_v3.8-rtl28xxu
for you to fetch
On 11/13/2012 08:09 PM, Juergen Lock wrote:
This just adds the usbid to the rtl28xxu driver, that's all that's
needed to make the stick work for DVB.
Signed-off-by: Juergen Lock
--- a/drivers/media/dvb-core/dvb-usb-ids.h
+++ b/drivers/media/dvb-core/dvb-usb-ids.h
@@ -250,6 +250,7 @@
#define
On Thu, Nov 22, 2012 at 07:31:39PM +0100, Laurent Pinchart wrote:
> Hi Steffen,
>
> On Thursday 22 November 2012 17:00:12 Steffen Trumtrar wrote:
> > Add a function to convert from the generic videomode to a fb_videomode.
> >
> > Signed-off-by: Steffen Trumtrar
> > Reviewed-by: Thierry Reding
>
The following changes since commit 304a0807a22852fe3095a62c24b25c4d0e16d003:
[media] drivers/media/usb/hdpvr/hdpvr-core.c: fix error return code
(2012-11-22 14:22:31 -0200)
are available in the git repository at:
git://linuxtv.org/anttip/media_tree.git for_v3.8-fc2580
for you to fetch ch
It was a bad idea, as comment also says, to write some "don't care"
registers as 0xff value. Fix it.
Signed-off-by: Antti Palosaari
---
drivers/media/tuners/fc2580.c | 61 +--
1 file changed, 35 insertions(+), 26 deletions(-)
diff --git a/drivers/media/tu
On Mon, 19 Nov 2012, Bill Pemberton wrote:
> drivers/media/platform/sh_vou.c| 2 +-
> drivers/media/platform/soc_camera/atmel-isi.c | 2 +-
> drivers/media/platform/soc_camera/mx2_camera.c | 4 ++--
> drivers/media/platform/soc_camera/mx3_camera.c | 2 +-
> dr
Hi All,
On 11/14/2012 02:06 PM, Laurent Pinchart wrote:
...
+
+static DEFINE_MUTEX(clk_lock);
+static LIST_HEAD(v4l2_clk);
As Sylwester mentioned, what about s/v4l2_clk/v4l2_clks/ ?
Don't you think naming of a static variable isn't important enough?
;-) I think code authors should have enoug
From: Jean-François Moine
Setting the H and V flip controls at webcam connection time prevents
the webcam to work correctly.
This patch checks if the webcam is streaming before setting the flips.
It does not set the flips (nor other controls) at webcam start time.
Tested-by: Philippe ROUBACH
S
Hi Mauro,
this is what I've just sent (this time from the office my samsung.com account)
to linux-media@vger.kernel.org. And can't see it neither on the mailing list
nor at the patchwork.
Regards,
Sylwester
On 11/22/2012 07:15 PM, Sylwester Nawrocki wrote:
> Hi Mauro,
>
> The following changes
Hi Steffen,
On Thursday 22 November 2012 17:00:12 Steffen Trumtrar wrote:
> Add a function to convert from the generic videomode to a fb_videomode.
>
> Signed-off-by: Steffen Trumtrar
> Reviewed-by: Thierry Reding
> Acked-by: Thierry Reding
> Tested-by: Thierry Reding
> Tested-by: Philipp Zab
Use uninterruptible mutex_lock in the release() file op to make
sure all resources are properly freed when a process is being
terminated. Returning -ERESTARTSYS has no effect for a terminating
process and this may cause driver resources not to be released.
This patch is required for stable kernels
The struct display_timing is specific to the via subsystem. The naming leads to
collisions with the new struct display_timing, that is supposed to be a shared
struct between different subsystems.
To clean this up, prepend the existing struct with the subsystem it is specific
to.
Signed-off-by: Ste
Hi!
Changes since v12:
- rename struct display_timing to via_display_timing in via subsystem
- fix refreshrate calculation
- fix "const struct *" warnings
(reported by: "Manjunathappa, Prakash" )
- some CodingStyle fixes
- rewrite parts of co
Add helper to get drm_display_mode from devicetree.
Signed-off-by: Steffen Trumtrar
Reviewed-by: Thierry Reding
Acked-by: Thierry Reding
Tested-by: Thierry Reding
Tested-by: Philipp Zabel
Reviewed-by: Laurent Pinchart
Acked-by: Laurent Pinchart
---
drivers/gpu/drm/drm_modes.c | 34 ++
Add a function to convert from the generic videomode to a fb_videomode.
Signed-off-by: Steffen Trumtrar
Reviewed-by: Thierry Reding
Acked-by: Thierry Reding
Tested-by: Thierry Reding
Tested-by: Philipp Zabel
Reviewed-by: Laurent Pinchart
Acked-by: Laurent Pinchart
Signed-off-by: Steffen Tru
On Thu, Nov 22, 2012 at 10:07:07AM +0100, Laurent Pinchart wrote:
> On Thursday 22 November 2012 09:53:42 Sascha Hauer wrote:
> > On Thu, Nov 22, 2012 at 09:50:10AM +0100, Laurent Pinchart wrote:
> > > On Thursday 22 November 2012 07:20:00 Sascha Hauer wrote:
> > > > On Wed, Nov 21, 2012 at 11:02:4
Hi!
On Wed, Nov 21, 2012 at 09:03:38AM -0600, Rob Herring wrote:
> On 11/21/2012 05:52 AM, Thierry Reding wrote:
> > On Wed, Nov 21, 2012 at 12:48:43PM +0100, Steffen Trumtrar wrote:
> >> Hi!
> >>
> >> On Wed, Nov 21, 2012 at 10:12:43AM +, Manjunathappa, Prakash wrote:
> >>> Hi Steffen,
> >>>
Hi Shaik,
On 11/22/2012 06:25 AM, Shaik Ameer Basha wrote:
Make gsc-m2m propagate the timestamp field from source to destination
buffers
Signed-off-by: John Sheu
Signed-off-by: Shaik Ameer Basha
I've applied this patch to my tree for v3.8.
Thanks,
Sylwester
--
To unsubscribe from this list:
From: Laurent Pinchart
Signed-off-by: Laurent Pinchart
---
drivers/video/display/Kconfig | 13 +++
drivers/video/display/Makefile|1 +
drivers/video/display/panel-dpi.c | 147 +
include/video/panel-dpi.h | 24 ++
4 files changed,
From: Laurent Pinchart
Signed-off-by: Laurent Pinchart
---
drivers/video/display/Kconfig|4 +
drivers/video/display/Makefile |1 +
drivers/video/display/mipi-dbi-bus.c | 228 ++
include/video/display.h |5 +
include/video/m
From: Laurent Pinchart
The R61517 is a MIPI DBI panel controller from Renesas.
Signed-off-by: Laurent Pinchart
---
drivers/video/display/Kconfig|9 +
drivers/video/display/Makefile |1 +
drivers/video/display/panel-r61517.c | 447 ++
inclu
From: Laurent Pinchart
The R61505 is a SYS-80 bus panel controller from Renesas.
Signed-off-by: Laurent Pinchart
---
drivers/video/display/Kconfig|9 +
drivers/video/display/Makefile |1 +
drivers/video/display/panel-r61505.c | 554 ++
inc
From: Laurent Pinchart
Signed-off-by: Laurent Pinchart
---
drivers/video/Kconfig|1 +
drivers/video/Makefile |1 +
drivers/video/display/Kconfig|4 +
drivers/video/display/Makefile |1 +
drivers/video/display/display-core.c | 362
From: Laurent Pinchart
Hi everybody,
Here's the second RFC of what was previously known as the Generic Panel
Framework.
I won't repeat all the background information from the first version here, you
can read it at http://lwn.net/Articles/512363/.
Many developers showed interest in the first RF
Hi Sakari,
On 11/21/2012 08:39 PM, Sakari Ailus wrote:
Hi Sylwester and Shaik,
On Mon, Nov 19, 2012 at 11:06:34PM +0100, Sylwester Nawrocki wrote:
On 11/07/2012 07:40 AM, Shaik Ameer Basha wrote:
Make gsc-m2m propagate the timestamp field from source to destination
buffers
We probably need
From: Jean-François Moine
The exchanges relative to the light frequency filter were adapted
from a description found in a ms-windows driver. It seems that the
registers were the ones of some other sensor.
This patch was done thanks to the documentation of the right
OmniVision sensors.
Note: The
Hi Kamil,
On Thu, Nov 22, 2012 at 10:32:09AM +0100, Kamil Debski wrote:
> Hi Sakari,
>
> > From: Sakari Ailus [mailto:sakari.ai...@iki.fi]
> > Sent: Wednesday, November 21, 2012 8:40 PM
> >
> > Hi Sylwester and Shaik,
> >
> > On Mon, Nov 19, 2012 at 11:06:34PM +0100, Sylwester Nawrocki wrote:
>
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 Nov 22 19:00:22 CET 2012
git hash:304a0807a22852fe3095a62c24b25c4d0e16d003
gcc version: i686-linux-gcc (GCC
Hi Laurent.
On 11/22/2012 07:55 PM, Laurent Pinchart wrote:
On Thursday 22 November 2012 19:21:42 Sylwester Nawrocki wrote:
Hi Mauro,
this is what I've just sent (this time from the office my samsung.com
account) to linux-media@vger.kernel.org. And can't see it neither on the
mailing list nor
Hi Mauro,
On 11/21/2012 10:31 PM, Sylwester Nawrocki wrote:
The following changes since commit
2c4e11b7c15af70580625657a154ea7ea70b8c76:
[media] siano: fix RC compilation (2012-11-07 11:09:08 +0100)
are available in the git repository at:
git://linuxtv.org/snawrocki/media.git mainline/s3c-cami
On Wed November 21 2012 20:13:22 Sakari Ailus wrote:
> Define video buffer flags for different timestamp types. Everything up to
> now have used either realtime clock or monotonic clock, without a way to
> tell which clock the timestamp was taken from.
>
> Also document that the clock source of th
On Thursday 22 November 2012 09:53:42 Sascha Hauer wrote:
> On Thu, Nov 22, 2012 at 09:50:10AM +0100, Laurent Pinchart wrote:
> > On Thursday 22 November 2012 07:20:00 Sascha Hauer wrote:
> > > On Wed, Nov 21, 2012 at 11:02:44PM +0100, Laurent Pinchart wrote:
> > > > Hi Steffen,
> > > >
> > > > >
Hi Sascha,
On Thursday 22 November 2012 07:20:00 Sascha Hauer wrote:
> On Wed, Nov 21, 2012 at 11:02:44PM +0100, Laurent Pinchart wrote:
> > Hi Steffen,
> >
> > > +
> > > + htotal = vm->hactive + vm->hfront_porch + vm->hback_porch +
> > > + vm->hsync_len;
> > > + vtotal = vm->vactive + v
Signed-off-by: Kamil Debski
Signed-off-by: Kyungmin Park
---
drivers/media/platform/s5p-mfc/s5p_mfc.c |4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc.c
b/drivers/media/platform/s5p-mfc/s5p_mfc.c
index d5182d6..31eeb03 100644
---
Flushing of delay DPB buffers have to be done during stream off.
In MFC v6, it is done with a risc to host command.
Signed-off-by: Arun Kumar K
Signed-off-by: Arun Mankuzhi
---
drivers/media/platform/s5p-mfc/s5p_mfc.c|6 ++
drivers/media/platform/s5p-mfc/s5p_mfc_common.h |1
Hi Sylwester,
On Wed, Nov 7, 2012 at 3:52 AM, Sylwester Nawrocki
wrote:
> Hi All,
>
> I'd like to clarify the meaning of selection targets on a mem-to-mem video
> device, in order to document it and to make sure new m2m drivers get it
> right, and also that the existing ones, using originally the
On Mon, Nov 19, 2012 at 11:51 PM, Bill Pemberton wrote:
> CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
> needed.
>
[snip]
> drivers/media/platform/davinci/dm355_ccdc.c | 2 +-
> drivers/media/platform/davinci/dm644x_ccdc.c | 2 +-
> drivers/media
On 16 November 2012 13:48, Sascha Hauer wrote:
> On Mon, Nov 05, 2012 at 04:59:44PM +0100, Javier Martin wrote:
>> Add support for IRAM to i.MX27 non-DT platforms using
>> iram_init() function.
>>
>> Signed-off-by: Javier Martin
>> ---
>> arch/arm/mach-imx/mm-imx27.c |3 +++
>> 1 file change
Hi Mauro,
The following changes since commit 2c4e11b7c15af70580625657a154ea7ea70b8c76:
[media] siano: fix RC compilation (2012-11-07 11:09:08 +0100)
are available in the git repository at:
git://linuxtv.org/snawrocki/media.git mainline/s3c-camif
This is a V4L2 driver for camera host interf
Hi Mauro,
(resending as it seems the original message didn't make it through
to the mailing list)
The following changes since commit 2c4e11b7c15af70580625657a154ea7ea70b8c76:
[media] siano: fix RC compilation (2012-11-07 11:09:08 +0100)
are available in the git repository at:
git://linuxt
Hi Sakari,
> From: Sakari Ailus [mailto:sakari.ai...@iki.fi]
> Sent: Wednesday, November 21, 2012 8:40 PM
>
> Hi Sylwester and Shaik,
>
> On Mon, Nov 19, 2012 at 11:06:34PM +0100, Sylwester Nawrocki wrote:
> > On 11/07/2012 07:40 AM, Shaik Ameer Basha wrote:
> > >Make gsc-m2m propagate the times
Em Thu, 22 Nov 2012 11:41:05 -0200
Mauro Carvalho Chehab escreveu:
> Em Wed, 31 Oct 2012 13:01:19 +0100 (CET)
> Guennadi Liakhovetski escreveu:
>
> > Hi Mauro
> >
> > Please pull driver updates for 3.8. Apart from usual soc-camera
> > development this pull request also includes a new VEU MEM2
Hi Hans,
On Wed, Nov 21, 2012 at 11:53:02PM +0100, Hans Verkuil wrote:
> On Wed November 21 2012 20:13:22 Sakari Ailus wrote:
> > Define video buffer flags for different timestamp types. Everything up to
> > now have used either realtime clock or monotonic clock, without a way to
> > tell which cl
Hi Laurent,
On Wed, Nov 21, 2012 at 11:02:44PM +0100, Laurent Pinchart wrote:
> Hi Steffen,
>
> > +
> > + htotal = vm->hactive + vm->hfront_porch + vm->hback_porch +
> > +vm->hsync_len;
> > + vtotal = vm->vactive + vm->vfront_porch + vm->vback_porch +
> > +vm->vsync_le
On Thu, Nov 22, 2012 at 09:50:10AM +0100, Laurent Pinchart wrote:
> Hi Sascha,
>
> On Thursday 22 November 2012 07:20:00 Sascha Hauer wrote:
> > On Wed, Nov 21, 2012 at 11:02:44PM +0100, Laurent Pinchart wrote:
> > > Hi Steffen,
> > >
> > > > +
> > > > + htotal = vm->hactive + vm->hfront_po
I have a PVR-500 in a machine here where one of the /dev/video* devices
can successfully be opened and return data while the other can be
opened but returns to data to a read(2). i.e.:
open("/dev/video3", O_RDONLY|O_LARGEFILE) = 3
dup3(3, 0, 0) = 0
close(3)
Em Wed, 31 Oct 2012 13:01:19 +0100 (CET)
Guennadi Liakhovetski escreveu:
> Hi Mauro
>
> Please pull driver updates for 3.8. Apart from usual soc-camera
> development this pull request also includes a new VEU MEM2MEM driver.
>
> The following changes since commit 016e804df1632fa99b1d96825df4c0d
Make gsc-m2m propagate the timestamp field from source to destination
buffers
Signed-off-by: John Sheu
Signed-off-by: Shaik Ameer Basha
---
drivers/media/platform/exynos-gsc/gsc-m2m.c | 20 +---
1 files changed, 13 insertions(+), 7 deletions(-)
diff --git a/drivers/media/plat
On Friday 16 November 2012 22:51:44 Sakari Ailus wrote:
> Correct a typo. v4l2_plane.m.userptr is unsigned long, not __unsigned long.
>
> Signed-off-by: Sakari Ailus
Acked-by: Laurent Pinchart
> ---
> Documentation/DocBook/media/v4l/io.xml |2 +-
> 1 files changed, 1 insertions(+), 1 dele
(fix lack of signature)
From: Jean-François Moine
The exchanges relative to the light frequency filter were adapted
from a description found in a ms-windows driver. It seems that the
registers were the ones of some other sensor.
This patch was done thanks to the documentation of the right
OmniVi
Hi Sylwester,
On Thursday 22 November 2012 19:21:42 Sylwester Nawrocki wrote:
> Hi Mauro,
>
> this is what I've just sent (this time from the office my samsung.com
> account) to linux-media@vger.kernel.org. And can't see it neither on the
> mailing list nor at the patchwork.
Nothing like that co
On Monday 19 November 2012 13:21:22 Bill Pemberton wrote:
> CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
> needed.
[snip]
> drivers/media/platform/omap3isp/isp.c| 2 +-
Acked-by: Laurent Pinchart
--
Regards,
Laurent Pinchart
--
To unsubscribe fro
Hi Steffen,
On Thursday 22 November 2012 17:00:13 Steffen Trumtrar wrote:
> Add helper to get fb_videomode from devicetree.
>
> Signed-off-by: Steffen Trumtrar
> Reviewed-by: Thierry Reding
> Acked-by: Thierry Reding
> Tested-by: Thierry Reding
> Tested-by: Philipp Zabel
> Reviewed-by: Laure
Hi Mauro,
The following changes since commit 30677fd9ac7b9a06555318ec4f9a0db39804f9b2:
s5p-fimc: Fix potential NULL pointer dereference (2012-11-22 10:15:40 +0100)
are available in the git repository at:
git://git.infradead.org/users/kmpark/linux-samsung media_fixes_for_v3.7
for you to fet
Make sure when fimc and fimc-lite capture video node is registered
it has valid pipeline_ops assigned to it. Otherwise when a video
node is opened right after is was registered there, might be an
attempt to use ops that are just being assigned, after function
v4l2_device_register_subdev() returns.
Add conversion from videomode to drm_display_mode
Signed-off-by: Steffen Trumtrar
Reviewed-by: Thierry Reding
Acked-by: Thierry Reding
Tested-by: Thierry Reding
Tested-by: Philipp Zabel
Reviewed-by: Laurent Pinchart
Acked-by: Laurent Pinchart
---
drivers/gpu/drm/drm_modes.c | 37
Add helper to get fb_videomode from devicetree.
Signed-off-by: Steffen Trumtrar
Reviewed-by: Thierry Reding
Acked-by: Thierry Reding
Tested-by: Thierry Reding
Tested-by: Philipp Zabel
Reviewed-by: Laurent Pinchart
Acked-by: Laurent Pinchart
---
drivers/video/fbmon.c | 42
Add display_timing structure and the according helper functions. This allows
the description of a display via its supported timing parameters.
Also, add helper functions to convert from display timings to a generic
videomode
structure.
The struct display_timing specifies all needed parameters to
This adds support for reading display timings from DT into a struct
display_timings. The of_display_timing implementation supports multiple
subnodes. All children are read into an array, that can be queried.
If no native mode is specified, the first subnode will be used.
For cases, where the grap
Hi Steffen,
Sorry, I've just found another small bug below.
On Tuesday 20 November 2012 16:54:53 Steffen Trumtrar wrote:
> Add a function to convert from the generic videomode to a fb_videomode.
>
> Signed-off-by: Steffen Trumtrar
> Reviewed-by: Thierry Reding
> Acked-by: Thierry Reding
> Tes
Use uninterruptible mutex_lock in the release() file op to make
sure all resources are properly freed when a process is being
terminated. Returning -ERESTARTSYS has no effect for a terminating
process and this caused driver resources not to be released. Not
releasing the buffer queue also prevented
My logfiles and dmesg output have become almost unreadable due to
repeated, almost empty lines.
[ 3606.212316] >
[ 3606.212738] >
...
[ 3627.177280] >
[ 3627.15] >
...
They start one hour after vdr daemon is launched. Each section contains
13 lines and is repeated every 21 seconds. Kernel dri
72 matches
Mail list logo