[PATCH 2/3] radio: Add support for SAA7706H Car Radio DSP

2010-01-20 Thread Richard Röjfors
. Signed-off-by: Richard Röjfors richard.rojf...@pelagicore.com --- diff --git a/drivers/media/radio/saa7706h.c b/drivers/media/radio/saa7706h.c new file mode 100644 index 000..278de06 --- /dev/null +++ b/drivers/media/radio/saa7706h.c @@ -0,0 +1,491 @@ +/* + * saa7706.c Philips SAA7706H Car Radio

[PATCH 3/3] radio: Add SAA7706H to Kconfig and Makefile

2010-01-20 Thread Richard Röjfors
This patch adds the SAA7706H to Kconfig and Makefile, it points out the source code added in the previous patch. Signed-off-by: Richard Röjfors richard.rojf...@pelagicore.com --- diff --git a/drivers/media/radio/Kconfig b/drivers/media/radio/Kconfig index 3f40f37..1716e52 100644 --- a/drivers

[PATCH 0/3] radio: Add support for SAA7706H Car Radio DSP

2010-01-20 Thread Richard Röjfors
These sets of patches added support for the SAA7706H Car Radio DSP. Patch 1: Add The saa7706h to the v4l2-chip-ident.h Patch 2: Add the actual source code Patch 3: Add the saa7706h to the Kconfig and Makefile --Richard -- To unsubscribe from this list: send the line unsubscribe linux-media

[PATCH v2 0/3] radio: Add support for SAA7706H Car Radio DSP

2010-01-22 Thread Richard Röjfors
These sets of patches added support for the SAA7706H Car Radio DSP. Patch 2 is updated after feedback from Hans Verkuil. Thanks Hans! Patch 1: Add The saa7706h to the v4l2-chip-ident.h Patch 2: Add the actual source code Patch 3: Add the saa7706h to the Kconfig and Makefile --Richard

[PATCH v2 3/3] radio: Add SAA7706H to Kconfig and Makefile

2010-01-22 Thread Richard Röjfors
This patch adds the SAA7706H to Kconfig and Makefile, it points out the source code added in the previous patch. Signed-off-by: Richard Röjfors richard.rojf...@pelagicore.com --- diff --git a/drivers/media/radio/Kconfig b/drivers/media/radio/Kconfig index 3f40f37..1716e52 100644 --- a/drivers

[PATCH v2 2/3] radio: Add support for SAA7706H Car Radio DSP

2010-01-22 Thread Richard Röjfors
. Signed-off-by: Richard Röjfors richard.rojf...@pelagicore.com --- diff --git a/drivers/media/radio/saa7706h.c b/drivers/media/radio/saa7706h.c new file mode 100644 index 000..3396f8f --- /dev/null +++ b/drivers/media/radio/saa7706h.c @@ -0,0 +1,450 @@ +/* + * saa7706.c Philips SAA7706H Car Radio

[PATCH 0/2] radio: Add radio-timb

2010-01-22 Thread Richard Röjfors
On the intel russellville board there is a radio DSP, radio tuner and a RDS block. This umbrella driver uses two subdevs (DSP and tuner), and reads RDS data. Patch1: The actual code Patch2: Add the radio-timb to Kconfig and Makefile --Richard -- To unsubscribe from this list: send the line

[PATCH 1/2] radio: Add radio-timb

2010-01-22 Thread Richard Röjfors
-by: Richard Röjfors richard.rojf...@pelagicore.com --- diff --git a/drivers/media/radio/radio-timb.c b/drivers/media/radio/radio-timb.c new file mode 100644 index 000..3dbe9ad --- /dev/null +++ b/drivers/media/radio/radio-timb.c @@ -0,0 +1,543 @@ +/* + * radio-timb.c Timberdale FPGA Radio driver

[PATCH 2/2] radio: Add radio-timb to the Kconfig and Makefile

2010-01-22 Thread Richard Röjfors
This patch adds radio-timb to the Makefile and Kconfig. Signed-off-by: Richard Röjfors richard.rojf...@pelagicore.com --- diff --git a/drivers/media/radio/Kconfig b/drivers/media/radio/Kconfig index 3f40f37..032ae2b 100644 --- a/drivers/media/radio/Kconfig +++ b/drivers/media/radio/Kconfig

Re: [PATCH 1/2] radio: Add radio-timb

2010-01-22 Thread Richard Röjfors
Hans Verkuil wrote: On Friday 22 January 2010 13:38:28 Richard Röjfors wrote: This patch add supports for the radio system on the Intel Russellville board. It's a In-Vehicle Infotainment board with a radio tuner and DSP. This umbrella driver has the DSP and tuner as V4L2 subdevs and calls

Re: [PATCH 1/2] radio: Add radio-timb

2010-01-27 Thread Richard Röjfors
is actually also a reason to keep this code in open rather than in probe. --Richard -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH] mfd: Add support for the timberdale FPGA.

2010-02-01 Thread Richard Röjfors
The timberdale FPGA is found on the Intel in-Vehicle Infotainment reference board russelville. The driver is a PCI driver which chunks up the I/O memory and distributes interrupts to a number of platform devices for each IP inside the FPGA. Signed-off-by: Richard Röjfors richard.rojf

Re: [PATCH] mfd: Add support for the timberdale FPGA.

2010-02-03 Thread Richard Röjfors
On 02/03/2010 10:16 AM, Mauro Carvalho Chehab wrote: Hi Richard, Richard Röjfors wrote: The timberdale FPGA is found on the Intel in-Vehicle Infotainment reference board russelville. The driver is a PCI driver which chunks up the I/O memory and distributes interrupts to a number of platform

[PATCH v3 0/1] radio: Add radio-timb

2010-02-03 Thread Richard Röjfors
to implement the RDS support properly. It will be added at a later stage. --Richard -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH v3 1/1] radio: Add radio-timb

2010-02-03 Thread Richard Röjfors
This patch add supports for the radio system on the Intel Russellville board. It's a In-Vehicle Infotainment board with a radio tuner and DSP. This umbrella driver has the DSP and tuner as V4L2 subdevs and calls them when needed. Signed-off-by: Richard Röjfors richard.rojf...@pelagicore.com

[PATCH v2 0/1] mfd: Add support for the timberdale FPGA.

2010-02-04 Thread Richard Röjfors
Hi, To follow is the timberdale patch (again), to sort out the merging as pointed out by Mauro and Samuel. --Richard -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org

[PATCH v2 1/1] mfd: Add support for the timberdale FPGA.

2010-02-04 Thread Richard Röjfors
The timberdale FPGA is found on the Intel in-Vehicle Infotainment reference board russelville. The driver is a PCI driver which chunks up the I/O memory and distributes interrupts to a number of platform devices for each IP inside the FPGA. Signed-off-by: Richard Röjfors richard.rojf

Driver crash on kernel 2.6.32.7. Interaction between cx8800 (DVB-S) and USB HVR Hauppauge 950q

2010-02-08 Thread Richard Lemieux
Hi, I got some driver crashes after upgrading to kernel 2.6.32.7. It seems that activating either TBS8920 (DVB-S) and HVR950Q (ATSC) after the other one has run (and is no longer in use by an application) triggers a driver crash. Each device individually works fine (as long as the other one

Re: Driver crash on kernel 2.6.32.7. Interaction between cx8800 (DVB-S) and USB HVR Hauppauge 950q

2010-02-09 Thread Richard Lemieux
Hi Devin, I was previously running kernel vmlinux-2.6.29.5. I notice there was a major reorganization of some of the media structure between 2.6.29 and 2.6.32. Can you tell me at wich kernel version the change occured so I can start from there. Richard Devin Heitmueller wrote: On Mon, Feb 8

Re: Driver crash on kernel 2.6.32.7. Interaction between cx8800 (DVB-S) and USB HVR Hauppauge 950q

2010-02-09 Thread Richard Lemieux
Hi, I tried something simple with three kernel versions: 2.6.30, 2.6.31, and 2.6.32.7. But I can't reproduce the problem that way. Just after booting I run alternatively /opt/dvb-apps/bin/szap -a 0 -r CCTV 4 /opt/dvb-apps/bin/azap -a 1 -r 57.1 and then I run them concurrently and finally I

Re: [PATCH] mfd: Add support for the timberdale FPGA.

2010-02-09 Thread Richard Röjfors
Currently, the dependency seems to happen only at Kconfig level. Maybe the better is to return to the previous plan: apply it via my tree, as the better is to have it added after those two radio i2c drivers. I'm fine with that. Richard sent me a 2nd version of his patch that I was about to merge

Re: Driver crash on kernel 2.6.32.7. Interaction between cx8800 (DVB-S) and USB HVR Hauppauge 950q

2010-02-09 Thread Richard Lemieux
in both the ATSC and the NTSC mode. I will look back in the terminal history to see if I can find anything. Regards, Richard Andy Walls wrote: ... Your ability to reproduce this should be rather limited. If you know steps that make it more likely to reproduce, please remember what

Re: Driver crash on kernel 2.6.32.7. Interaction between cx8800 (DVB-S) and USB HVR Hauppauge 950q

2010-02-13 Thread Richard Lemieux
reproduce this event. Thanks very much for everything you do for the Linux community. Richard Andy Walls wrote: Yes. But it will take me a while. I don't have a git tree, because I don't have high bandwidth internet yet. (The cable company's been delayed in laying cable to my home due

[PATCH] mfd: Add timb-radio to the timberdale MFD

2010-02-14 Thread Richard Röjfors
This patch addes timb-radio to all configurations of the timberdale MFD. Connected to the FPGA is a TEF6862 tuner and a SAA7706H DSP, the I2C board info of these devices is passed via the timb-radio platform data. Signed-off-by: Richard Röjfors richard.rojf...@pelagicore.com --- diff --git

Re: [PATCH] mfd: Add timb-radio to the timberdale MFD

2010-02-19 Thread Richard Röjfors
On 02/19/2010 04:52 AM, Mauro Carvalho Chehab wrote: Richard Röjfors wrote: This patch addes timb-radio to all configurations of the timberdale MFD. Connected to the FPGA is a TEF6862 tuner and a SAA7706H DSP, the I2C board info of these devices is passed via the timb-radio platform data. Hi

Re: [PATCH] mfd: Add timb-radio to the timberdale MFD

2010-02-19 Thread Richard Röjfors
On 02/19/2010 04:52 AM, Mauro Carvalho Chehab wrote: Richard Röjfors wrote: This patch addes timb-radio to all configurations of the timberdale MFD. Connected to the FPGA is a TEF6862 tuner and a SAA7706H DSP, the I2C board info of these devices is passed via the timb-radio platform data. Hi

Re: [PATCH] mfd: Add timb-radio to the timberdale MFD

2010-02-19 Thread Richard Röjfors
On 02/19/2010 03:56 PM, Randy Dunlap wrote: On 02/19/10 14:41, Richard Röjfors wrote: On 02/19/2010 04:52 AM, Mauro Carvalho Chehab wrote: Richard Röjfors wrote: This patch addes timb-radio to all configurations of the timberdale MFD. Connected to the FPGA is a TEF6862 tuner and a SAA7706H

[PATCH] v4lconvert_rotate90() leaves bytesperline wrong

2010-02-20 Thread Richard Hirst
(flip_src, flip_dest, my_src_fmt, hflip, vflip); I didn't look closely at the latest source, so it is possible this already fixed some other way. Richard -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo

Re: adv7180 as SoC camera device

2010-02-22 Thread Richard Röjfors
with other bridges - those too...;) But, I think, that chain will terminate quite soon, in fact, I cannot find any users of that driver currently in the mainline, Richard? In this situation, should I write a new driver for the soc_camera_device? Which is The-Right-Thing(TM) to do? :) Please

Re: [RFC, PATCH 1/3] gspca: add LEDs subsystem connection

2010-03-09 Thread Richard Purdie
a bit out of scope to me, especially the light LED that might be better handled by a V4L2 set of controls (we're currently missing controls for camera flashes, be they LEDs or Xenon based). I'll let Richard speak on this. I'm not going to push one way or another and its up to individual

Re: [patch 1/9] video: initial support for ADV7180

2009-08-08 Thread Richard Röjfors
Hi, Hans Verkuil wrote: On Friday 07 August 2009 01:01:12 a...@linux-foundation.org wrote: From: Richard Röjfors richard.rojfors@mocean-labs.com This is an initial driver for Analog Devices ADV7180 Video Decoder. So far it only supports query standard. Hi Richard, Which bridge

[patch v2 0/1] video: initial support for ADV7180

2009-08-11 Thread Richard Röjfors
for checking the norm, also for the future it's for instance possible to get interrupts when the norm is changed, a schedule work or equal could then use this function too. And yes, Mocean laboratories is the author while it's copyrighted to Intel. --Richard -- To unsubscribe from this list: send

[patch v2 1/1] video: initial support for ADV7180

2009-08-11 Thread Richard Röjfors
This is an initial driver for Analog Devices ADV7180 Video Decoder. So far it only supports setting the chip in autodetect mode and query the detected standard. Signed-off-by: Richard Röjfors richard.rojfors@mocean-labs.com --- diff --git a/drivers/media/video/Kconfig b/drivers/media

Re: [hg:v4l-dvb] video: initial support for ADV7180

2009-09-21 Thread Richard Röjfors
Patch from Richard Röjfors wrote: The patch number 13019 was added via Douglas Schilling Landgraf dougsl...@redhat.com to http://linuxtv.org/hg/v4l-dvb master development tree. Kernel patches in this development tree may be modified to be backward compatible with older kernels

[PATCH 0/4] adv7180 updates

2009-09-22 Thread Richard Röjfors
To follow is a series of patches against the adv7180 in the linux-media tree. 1. support for getting input status. 2. support for setting video standard 3. support for interrupt driven update of the video standard 4. usage of the __devinit and __devexit macros --Richard -- To unsubscribe from

[PATCH 1/4] adv7180: Support for getting input status

2009-09-22 Thread Richard Röjfors
This patch adds support to the ADV7180 driver to check the input status. Since the status is held in the same register as the input standard a small restructuring of the code is done to reuse the code for reading the register Signed-off-by: Richard Röjfors richard.rojf...@mocean-labs.com

[PATCH 2/4] adv7180: Support for setting input status

2009-09-22 Thread Richard Röjfors
Support for settings the input standard of the ADV7180. When the input standard is set there is no use to ask the chip for standard, therefore it is cached in the driver. Signed-off-by: Richard Röjfors richard.rojf...@mocean-labs.com --- diff --git a/drivers/media/video/adv7180.c b/drivers/media

[PATCH 4/4] adv7180: Use __devinit and __devexit macros

2009-09-22 Thread Richard Röjfors
This patch defines the probe and remove function as __devinit and __devexit. Signed-off-by: Richard Röjfors richard.rojf...@mocean-labs.com --- diff --git a/drivers/media/video/adv7180.c b/drivers/media/video/adv7180.c index d9e897d..0826f0d 100644 --- a/drivers/media/video/adv7180.c +++ b

[PATCH 3/4] adv7180: Support checking standard via interrupts

2009-09-22 Thread Richard Röjfors
a mutex is introduced. Signed-off-by: Richard Röjfors richard.rojf...@mocean-labs.com --- diff --git a/drivers/media/video/adv7180.c b/drivers/media/video/adv7180.c index 8b199a8..d9e897d 100644 --- a/drivers/media/video/adv7180.c +++ b/drivers/media/video/adv7180.c @@ -27,6 +27,7 @@ #include

Re: [PATCH v2 0/14] Initial i.MX5/CODA7 support for the CODA driver

2012-08-28 Thread Richard Zhao
/video/coda.c | 399 ++- drivers/media/video/coda.h | 30 ++- It's not based on latest linuxtv git. video/ has been renamed to platform/. Please look at: git://linuxtv.org/media_tree.git staging/for_v3.7 Thanks Richard 6 files changed, 338

Re: [PATCH v3 03/16] media: coda: fix IRAM/AXI handling for i.MX53

2012-09-10 Thread Richard Zhao
-iram_vaddr) + iram_free(dev-iram_vaddr, CODA7_IRAM_SIZE); It should be freed by paddr. Thanks Richard if (dev-codebuf.vaddr) dma_free_coherent(pdev-dev, dev-codebuf.size, dev-codebuf.vaddr, dev-codebuf.paddr); diff --git a/drivers/media

Re: [GIT PULL v2] Initial i.MX5/CODA7 support for the CODA driver

2012-09-19 Thread Richard Zhao
why is it a request-pull? Thanks Richard -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [GIT PULL v2] Initial i.MX5/CODA7 support for the CODA driver

2012-09-20 Thread Richard Zhao
On Thu, Sep 20, 2012 at 09:10:46AM +0200, javier Martin wrote: Hi Richard, On 20 September 2012 05:32, Richard Zhao richard.z...@freescale.com wrote: why is it a request-pull? After 5 version of Philipp's patches we have agreed they are good enough to be merged; they don't break anything

[PATCH 19/28] Remove SI4713

2014-02-09 Thread Richard Weinberger
The symbol is an orphan, get rid of it. Signed-off-by: Richard Weinberger rich...@nod.at --- drivers/media/radio/si4713/Kconfig | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/media/radio/si4713/Kconfig b/drivers/media/radio/si4713/Kconfig index a7c3ba8..ed51ed0 100644

Re: [PATCH 19/28] Remove SI4713

2014-02-09 Thread Richard Weinberger
Am 09.02.2014 20:13, schrieb Hans Verkuil: On 02/09/2014 07:47 PM, Richard Weinberger wrote: The symbol is an orphan, get rid of it. NACK. It's not an orphan, it's a typo. It should be I2C_SI4713. Paul, Richard, let me handle this. I'll make a patch for this tomorrow (I believe

Re: [PATCH/RFC 1/8] leds: Add sysfs and kernel internal API for flash LEDs

2014-03-20 Thread Richard Purdie
with it through the kernel internal interface. The LED sysfs interface is made unavailable then. Signed-off-by: Jacek Anaszewski j.anaszew...@samsung.com Acked-by: Kyungmin Park kyungmin.p...@samsung.com Cc: Bryan Wu coolo...@gmail.com Cc: Richard Purdie rpur...@rpsys.net --- drivers/leds/led

Re: [PATCH/RFC v2 1/8] leds: Add sysfs and kernel internal API for flash LEDs

2014-03-31 Thread Richard Purdie
...@samsung.com Cc: Bryan Wu coolo...@gmail.com Cc: Richard Purdie rpur...@rpsys.net --- drivers/leds/Kconfig|8 + drivers/leds/Makefile |1 + drivers/leds/led-class.c| 56 +-- drivers/leds/led-flash.c| 375

MAIL

2014-05-29 Thread Richard Sun
Hello, My name is Mr. Richard Sun from Hong Kong. I want you to be my partner in a business project. Contact me back via my private e-mail address for more details; richad.t...@yahoo.com.hk Thank you. Mr. Richard Sun. -- To unsubscribe from this list: send the line unsubscribe linux-media

MAIL

2014-06-01 Thread Richard Sun
Hello, My name is Mr. Richard Sun from Hong Kong. I want you to be my partner in a business project. Contact me back via my private e-mail address for more details; richad.t...@yahoo.com.hk Thank you. Mr. Richard Sun. -- To unsubscribe from this list: send the line unsubscribe linux-media

Good Day

2014-07-22 Thread Richard Wong
I have a business proposal I would like to share with you, on your response I will email you with more details. I await your quick response. Kind regards Richard Wong -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org

Re: [PATCH/RFC v4 06/21] leds: add API for setting torch brightness

2014-08-18 Thread Richard Purdie
On Thu, 2014-08-14 at 07:39 +0300, Sakari Ailus wrote: Bryan and Richard, Your opinion would be much appreciated to a question myself and Jacek were pondering. Please see below. On Thu, Aug 07, 2014 at 03:12:09PM +0200, Jacek Anaszewski wrote: Hi Sakari, On 08/04/2014 02:50 PM

dtv_property_legacy_params_sync

2015-01-02 Thread Richard F
dtv_property_legacy_params_sync: doesn't know how to handle a DVBv3 call to delivery system 0 Hi, I'm new to this list, just updated VDR (2.06) and a newer kernel (3.12) and getting the above messages from my dtt200u receiver fill my kernel log. Is there a straightforward way to stop them?

sinks in device tree

2015-08-08 Thread Richard Cagley
I'm new to using the media controller and struggling to set up a sink in my device tree for a Xilinx VDMA output. I have the below in my device tree. The problem is the output of my VDMA is going to a hardware element that doesn't have/need a driver. So, when I query the link with

Contact me

2015-11-04 Thread Richard Sun
Hello, My name is Mr. Richard Sun from Hong Kong. I want you to be my partner in a business project. Contact me back via my private e-mail address for more details; richad.t...@yahoo.com.hk Thank you Richard Sun. -- To unsubscribe from this list: send the line "unsubscribe linux-

Re: Hauppauge WinTV-HVR2205 driver feedback

2015-10-11 Thread Richard Tresidder
updates.. Really need to push this up into the centos config.. I've noted that it has been turned back on in other releases.. Will submit a bug. Regards Richard Tresidder On 05/10/15 20:45, Tycho Lürsen wrote: Hi, not sure if this is related. I had to recompile the centos7 stock kernel

Re: Hauppauge WinTV-HVR2205 driver feedback

2015-10-04 Thread Richard Tresidder
Hi Steven Nope standard x86_64 kernel 3.10.0-229.14.1.el7.x86_64 Was rather surprised as all my quick reading indicates that the kernel should quite happily do this... Though looks like its the largest chunk you can request? I'm not well enough up to speed with the nitty gritty.. There is

Re: Hauppauge WinTV-HVR2205 driver feedback

2015-10-03 Thread Richard Tresidder
hat to tackle next.. I can provide more info, just didn't want to spam the list for my first email.. Regards Richard Tresidder -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vg

Re: Hauppauge WinTV-HVR2205 driver feedback

2015-10-05 Thread Richard Tresidder
On 05/10/15 22:22, Steven Toth wrote: On Sun, Oct 4, 2015 at 9:59 PM, Richard Tresidder <rtres...@tresar-electronics.com.au> wrote: Hi Steven Nope standard x86_64 kernel 3.10.0-229.14.1.el7.x86_64 Hmm. Was rather surprised as all my quick reading indicates that the kernel should

Re: Hauppauge WinTV-HVR2205 driver feedback

2015-10-05 Thread Richard Tresidder
that an error doesn't pop up about that.. Is there a debug level that can be turned on that would show that up? Well spotted Tycho Will let you know how things go Regards Richard Tresidder On 05/10/15 20:45, Tycho Lürsen wrote: Hi, not sure if this is related. I had to recompile the centos7

Re: Hauppauge WinTV-HVR2205 driver feedback

2015-10-05 Thread Richard Tresidder
Hi Just for clarification I forgot to add that I had already got past that little bump by chunking the allocation to src_buf in the same loop as the memcpy_toio But I'll rebuild the module with the memcpy_toio directly accessing src and see how it goes. Regards Richard Tresidder On 05

Re: Hauppauge WinTV-HVR2205 driver feedback

2015-10-05 Thread Richard Tresidder
.. my brain is stuck in subversion mode.. Still rebuilding the kernel to check the i2c Mux issue.. Regards Richard saa7164-fw.c.patch ** --- saa7164-fw.c2015-10-05 23:05:31.279329924 +0800 +++ saa7164-fw.c2015-10-05 23:21

Re: Hauppauge WinTV-HVR2205 driver feedback

2015-10-05 Thread Richard Tresidder
.. though the module seemed to install and is showing with lsmod no dmesg barfs.. I'll try a full kernel build tomorrow.. Regards Richard Tresidder On 05/10/15 20:45, Tycho Lürsen wrote: Hi, not sure if this is related. I had to recompile the centos7 stock kernel with: CONFIG_I2C_MUX=m

Re: [very-RFC 0/8] TSN driver for the kernel

2016-06-14 Thread Richard Cochran
le, above. In any case, your patches don't implement that sort of thing at all, do they? Thanks, Richard -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [very-RFC 0/8] TSN driver for the kernel

2016-06-14 Thread Richard Cochran
On Tue, Jun 14, 2016 at 12:18:44PM +0100, One Thousand Gnomes wrote: > On Mon, 13 Jun 2016 21:51:36 +0200 > Richard Cochran <richardcoch...@gmail.com> wrote: > > > > Actually, we already have support for tunable clock-like HW elements, > > namely the dynamic p

Re: [very-RFC 0/8] TSN driver for the kernel

2016-06-15 Thread Richard Cochran
On Tue, Jun 14, 2016 at 10:38:10PM +0200, Henrik Austad wrote: > Whereas I want to do > > aplay some_song.wav Can you please explain how your patches accomplish this? Thanks, Richard -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of

Re: [very-RFC 0/8] TSN driver for the kernel

2016-06-15 Thread Richard Cochran
Sorry, I thought the old OSS API would be familiar and easy to understand. The /dev/dsp is the sound card. Thanks, Richard -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.k

Re: [very-RFC 0/8] TSN driver for the kernel

2016-06-15 Thread Richard Cochran
On Wed, Jun 15, 2016 at 12:15:24PM +0900, Takashi Sakamoto wrote: > > On Mon, Jun 13, 2016 at 01:47:13PM +0200, Richard Cochran wrote: > >> I have seen audio PLL/multiplier chips that will take, for example, a > >> 10 kHz input and produce your 48 kHz media clock. With

Re: [very-RFC 0/8] TSN driver for the kernel

2016-06-15 Thread Richard Cochran
On Wed, Jun 15, 2016 at 09:04:41AM +0200, Richard Cochran wrote: > On Tue, Jun 14, 2016 at 10:38:10PM +0200, Henrik Austad wrote: > > Whereas I want to do > > > > aplay some_song.wav > > Can you please explain how your patches accomplish this? Never mind. Looking b

Re: [very-RFC 7/8] AVB ALSA - Add ALSA shim for TSN

2016-06-15 Thread Richard Cochran
On Wed, Jun 15, 2016 at 02:13:03PM +0200, Henrik Austad wrote: > On Wed, Jun 15, 2016 at 01:49:08PM +0200, Richard Cochran wrote: > And how would v4l2 benefit from this being in alsalib? Should we require > both V4L and ALSA to implement the same, or should we place it in a common

Re: [very-RFC 7/8] AVB ALSA - Add ALSA shim for TSN

2016-06-15 Thread Richard Cochran
in a way transparent to the aplay program. Heck, if done properly, your layer could discover the AVB nodes in the network and present each one as a separate device... Thanks, Richard -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to ma

Re: [very-RFC 0/8] TSN driver for the kernel

2016-06-13 Thread Richard Cochran
On Mon, Jun 13, 2016 at 03:00:59PM +0200, Henrik Austad wrote: > On Mon, Jun 13, 2016 at 01:47:13PM +0200, Richard Cochran wrote: > > People have been asking me about TSN and Linux, and we've made some > > thoughts about it. The interest is there, and so I am glad to see

Re: [very-RFC 0/8] TSN driver for the kernel

2016-06-13 Thread Richard Cochran
On Mon, Jun 13, 2016 at 03:00:59PM +0200, Henrik Austad wrote: > On Mon, Jun 13, 2016 at 01:47:13PM +0200, Richard Cochran wrote: > > Which driver is that? > > drivers/net/ethernet/renesas/ That driver is merely a PTP capable MAC driver, nothing more. Although AVB is in

Re: [very-RFC 0/8] TSN driver for the kernel

2016-06-13 Thread Richard Cochran
On Mon, Jun 13, 2016 at 01:47:13PM +0200, Richard Cochran wrote: > 3. ALSA support for tunable AD/DA clocks. The rate of the Listener's >DA clock must match that of the Talker and the other Listeners. >Either you adjust it in HW using a VCO or similar, or you do >adaptive

Re: [very-RFC 0/8] TSN driver for the kernel

2016-06-13 Thread Richard Cochran
enty of work to do, but we really don't need some hacky, in-kernel buffer with hard coded audio formats. Thanks, Richard -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [alsa-devel] [very-RFC 0/8] TSN driver for the kernel

2016-06-20 Thread Richard Cochran
ould support this? Thanks, Richard -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [alsa-devel] [very-RFC 0/8] TSN driver for the kernel

2016-06-20 Thread Richard Cochran
On Mon, Jun 20, 2016 at 02:31:48PM +0200, Richard Cochran wrote: > Where is this "audio_time" program of which you speak? Never mind, found it in alsa-lib. I still would appreciate an answer to my other questions, though... Thanks, Richard -- To unsubscribe from this list:

Re: [alsa-devel] [very-RFC 0/8] TSN driver for the kernel

2016-06-21 Thread Richard Cochran
that made it > in the kernel recently) Can you point me to any open source apps using the dma/link timestamps? Thanks, Richard -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vge

Re: [very-RFC 0/8] TSN driver for the kernel

2016-06-19 Thread Richard Cochran
On Sun, Jun 19, 2016 at 12:45:50AM +0200, Henrik Austad wrote: > edit: this turned out to be a somewhat lengthy answer. I have tried to > shorten it down somewhere. it is getting late and I'm getting increasingly > incoherent (Richard probably knows what I'm talking about ;) so

Re: [alsa-devel] [very-RFC 0/8] TSN driver for the kernel

2016-06-23 Thread Richard Cochran
On Thu, Jun 23, 2016 at 12:38:48PM +0200, Henrik Austad wrote: > Richard: is it fair to assume that if ptp4l is running and is part of a PTP > domain, ktime_get() will return PTP-adjusted time for the system? No. > Or do I also need to run phc2sys in order to sync the system-time >

Re: [alsa-devel] [very-RFC 0/8] TSN driver for the kernel

2016-06-20 Thread Richard Cochran
On Mon, Jun 20, 2016 at 02:18:38PM +0200, Richard Cochran wrote: > Documentation/sound/alsa/timestamping.txt says: Examples of typestamping with HDaudio: 1. DMA timestamp, no compensation for DMA+analog delay $ ./audio_time -p --ts_type=1 Where is this "audio_time" pro

Re: [alsa-devel] [very-RFC 0/8] TSN driver for the kernel

2016-06-21 Thread Richard Cochran
e_info ops, so you can easily grep it. Yes, I found that myself, thanks. > HTH, No it doesn't help me, because I asked three questions, and none were about the link timestamp. Thanks, Richard -- To unsubscribe from this list: send the line "unsubscribe linux-media" in

Re: [TSN RFC v2 0/9] TSN driver for the kernel

2016-12-16 Thread Richard Cochran
only the kernel can provide. > There are at least one AVB-driver (the AV-part of TSN) in the kernel > already. And which driver is that? Thanks, Richard -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org Mor

Re: [TSN RFC v2 5/9] Add TSN header for the driver

2016-12-16 Thread Richard Cochran
/* 0xfd reserved */ > + TSN_MAAP = 0xfe,/* MAAP Protocol */ > + TSN_EF_CONTROL, /* Experimental Format Control */ > +}; The kernel shouldn't be in the business of assembling media packets. Thanks, Richard -- To unsubscribe from this list: send the line "unsubscribe linux-media&q

Re: [TSN RFC v2 0/9] TSN driver for the kernel

2016-12-17 Thread Richard Cochran
AVB shaping rules with one or two drivers supporting them, that would be one piece already done. Thanks, Richard -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH 00/14] ddbridge: bump to ddbridge-0.9.29

2017-07-15 Thread Richard Scobie
MSI interrupts are enabled and no issues to date. Thanks to Daniel and the reviewers. Regards, Richard

Re: [PATCH v2 00/10] STV0910/STV6111 drivers, ddbridge CineS2 V7 support

2017-06-30 Thread Richard Scobie
nd the reviewers. Regards, Richard

help

2018-05-06 Thread Richard Lee

spende

2018-05-27 Thread Richard wahl
Hallo, Sie haben eine Spende von 2.800.000,00 Euro, ich habe die Amerikanische Lotterie in Amerika im Wert von 533 Millionen Dollar gewonnen, und ich gebe einen Teil davon als Teil einer Wohltätigkeitsorganisation. Kontaktieren Sie mich für weitere Informationen: richardwahl.donati...@gmail.com

Startup delay playing radio channel from DVB-C

2018-02-25 Thread Richard Klingler
when using mplayer instead of ffmpeg. Is there a better/faster way that audio is played immediately? thanks in advance richard

[PATCH] video: Initial support for ADV7180

2009-06-03 Thread Richard Ršöjfors
This is an initial driver for Analog Devices ADV7180 Video Decoder. So far it only supports query standard. Signed-off-by: Richard Röjfors richard.rojfors@mocean-labs.com --- Index: linux-2.6.30-rc7/drivers/media/video/adv7180.c

(no subject)

2017-08-17 Thread Barr. Richard Williams
-- I'd like you to be in custody of my late client's fortune. My client died along with his family including his next-of-kin The funds shall be used for investment under your management Do reply for details. Regards Richard Williams Email:rich19willi...@gmail.com

Kannst du mir helfen?

2017-12-27 Thread Mrs. Michelle Richard
Lieber geliebter, Bitte lesen Sie dies langsam und sorgfältig, da es eine der wichtigsten E-Mails sein kann, die Sie jemals bekommen.Ich bin Frau Michelle Richard, ich war mit dem verstorbenen Robert Richard verheiratet.Er arbeitete früher mit Shell Petroleum Development Company London und war

<    1   2