Re: [Xen-devel] RIP MTRR - status update for upcoming v4.2

2015-08-07 Thread Luis R. Rodriguez
On Fri, Aug 7, 2015 at 2:56 PM, Toshi Kani toshi.k...@hp.com wrote: On Fri, 2015-08-07 at 13:25 -0700, Luis R. Rodriguez wrote: On Thu, Aug 6, 2015 at 3:58 PM, Toshi Kani toshi.k...@hp.com wrote: On Thu, 2015-08-06 at 12:53 -0700, Luis R. Rodriguez wrote: On Fri, Jun 12, 2015 at 9:58 AM,

Re: [Xen-devel] RIP MTRR - status update for upcoming v4.2

2015-08-07 Thread Toshi Kani
On Fri, 2015-08-07 at 13:25 -0700, Luis R. Rodriguez wrote: On Thu, Aug 6, 2015 at 3:58 PM, Toshi Kani toshi.k...@hp.com wrote: On Thu, 2015-08-06 at 12:53 -0700, Luis R. Rodriguez wrote: On Fri, Jun 12, 2015 at 9:58 AM, Toshi Kani toshi.k...@hp.com wrote: On Fri, 2015-06-12 at 08:59

Purchasing/Infrared lamp therapy products/Aukewel Co., ltd

2015-08-07 Thread Woody Wu
Dear Client, Have a good day! Glad to learn you're on the market of Infrared Lamp products We are the manufacture at family use electronic health devices since 2000. We keep good quality and reliable cooperation for global valued customers. Main products include infrared lamp. If any product

imx-drm: Color issues scanning out YUV420 frames through the overlay plane.

2015-08-07 Thread Javier Martin
Hi, I am using mainline kernel 4.1 and I was writing a small application that uses double buffering to read YUV420 frames from a file at 30fps and displays them using the overlay plane in the imx-drm driver. The first issue I noticed is that the image was green so I had to apply the

Purchasing/Infrared lamp therapy products/Aukewel Co., ltd

2015-08-07 Thread Woody Wu
Dear Client, Have a good day! Glad to learn you're on the market of Infrared Lamp products We are the manufacture at family use electronic health devices since 2000. We keep good quality and reliable cooperation for global valued customers. Main products include infrared lamp. If any product

Re: imx-drm: Color issues scanning out YUV420 frames through the overlay plane.

2015-08-07 Thread Javier Martin
Sorry for sending this to the wrong list. On 07/08/15 09:25, Javier Martin wrote: Hi, I am using mainline kernel 4.1 and I was writing a small application that uses double buffering to read YUV420 frames from a file at 30fps and displays them using the overlay plane in the imx-drm driver. The

Replacement battery for VRLA battery

2015-08-07 Thread Ken
Dear Manager, May I know do you in need of the below products we manufacture: 1. 2.4V LTO(Lithium Titantiate) battery: 3C charge,10C discharge,up to 30,000 cycele life 2. 3.2V LiFePO4 battery: cylindrical,primastic,pouch cell,up to 2,000 cycle life 3. 1A-750A Battery monitor/battery fuel

[PATCH RFC v2 07/16] media: get rid of unused extra_links param on media_entity_init()

2015-08-07 Thread Mauro Carvalho Chehab
Currently, media_entity_init() creates an array with the links, allocated at init time. It provides a parameter (extra_links) that would allocate more links than the current needs, but this is not used by any driver. As we want to be able to do dynamic link allocation/removal, we'll need to

[PATCH RFC v2 15/16] media: rename media_entity_remove_foo functions

2015-08-07 Thread Mauro Carvalho Chehab
As entities will also have links to interfaces, we need to rename the existing functions that remove links, to avoid namespace collision and confusion. No functional changes. The rename was made by this script: for i in $(find drivers/media -name '*.[ch]' -type f) $(find

[PATCH RFC v2 14/16] media: add a generic function to remove a link

2015-08-07 Thread Mauro Carvalho Chehab
Removing a link is simple. Yet, better to have a separate function for it, as we'll be also sharing it with a public API call. Signed-off-by: Mauro Carvalho Chehab mche...@osg.samsung.com diff --git a/drivers/media/media-entity.c b/drivers/media/media-entity.c index c68dc421b022..8e77f2ae7197

[PATCH RFC v2 03/16] media: add functions to inialize media_graph_obj

2015-08-07 Thread Mauro Carvalho Chehab
We need to initialize the common media_graph_obj that it is now embedded inside each media controller object. Latter patches will use those functions to ensure that the object will be properly initialized. Signed-off-by: Mauro Carvalho Chehab mche...@osg.samsung.com diff --git

[PATCH RFC v2 08/16] media: convert links from array to list

2015-08-07 Thread Mauro Carvalho Chehab
Using memory realloc to increase the size of an array is complex and makes harder to remove links. Also, by embedding the link inside an array at the entity makes harder to change the code to add interfaces, as interfaces will also need to use links. So, convert the links from arrays to lists.

[PATCH RFC v2 13/16] media: make the internal function to create links more generic

2015-08-07 Thread Mauro Carvalho Chehab
In preparation to add a public function to add links, let's make the internal function that creates link more generic. Signed-off-by: Mauro Carvalho Chehab mche...@osg.samsung.com diff --git a/drivers/media/media-entity.c b/drivers/media/media-entity.c index 96d48aec8381..c68dc421b022 100644 ---

[PATCH RFC v2 00/16] Changes on MC core due to MC workshop discussion

2015-08-07 Thread Mauro Carvalho Chehab
This is the second version of an initial set of patches showing the approach I'm taking in order to fulfill all the MC needs that was discussed on the 3 day MC summit in Helsinki. The goal of this patchset is: 1) to create a common struct that will be embedded on all internal structs that

[PATCH RFC v2 04/16] media: ensure that entities will have an object ID

2015-08-07 Thread Mauro Carvalho Chehab
All objects need an object ID. However, as v4l2 subdevs embeed entities internally, the code needs to manually check if the entity objects were not properly initialized and do it at entity register time. Signed-off-by: Mauro Carvalho Chehab mche...@osg.samsung.com diff --git

[PATCH RFC v2 02/16] media: Add a common embeed struct for all media graph objects

2015-08-07 Thread Mauro Carvalho Chehab
Due to the MC API proposed changes, we'll need to: - have an unique object ID for all graph objects; - be able to dynamically create/remove objects; - be able to group objects; - keep the object in memory until we stop use it. Due to that, create a struct

[PATCH RFC v2 01/16] media: Add some fields to store graph objects

2015-08-07 Thread Mauro Carvalho Chehab
We'll need unique IDs for graph objects and a way to associate them with the media interface. So, add an atomic var to be used to create unique IDs and a list to store such objects. Signed-off-by: Mauro Carvalho Chehab mche...@osg.samsung.com diff --git a/drivers/media/media-device.c

[PATCH RFC v2 12/16] media: move __media_entity_remove_link to avoid prototype

2015-08-07 Thread Mauro Carvalho Chehab
As we need __media_entity_remove_link() earlier, move it to happen earlier, to avoid needing to have a function prototype. No functional changes. Signed-off-by: Mauro Carvalho Chehab mche...@osg.samsung.com diff --git a/drivers/media/media-entity.c b/drivers/media/media-entity.c index

Re: [PATCH 0/7] rc-core: Revert encoding patchset

2015-08-07 Thread Antti Seppälä
On 20 July 2015 at 22:16, David Härdeman da...@hardeman.nu wrote: The current code is not mature enough, the API should allow a single protocol to be specified. Also, the current code contains heuristics that will depend on module load order. The issues were discussed in this thread:

Re: [PATCH] [media] v4l2-subdev: return -EPIPE instead of -EINVAL in link validate default

2015-08-07 Thread Helen Fornazier
Hello On Tue, Jul 14, 2015 at 11:32 AM, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: Hi Hans, On Tuesday 14 July 2015 16:19:50 Hans Verkuil wrote: On 07/13/15 10:03, Sakari Ailus wrote: Helen Fornazier wrote: On Tue, Jun 30, 2015 at 4:26 PM, Helen Fornazier wrote: On Tue,

Purchasing/Infrared lamp therapy products/Aukewel Co., ltd

2015-08-07 Thread Woody Wu
Dear Client, Have a good day! Glad to learn you're on the market of Infrared Lamp products We are the manufacture at family use electronic health devices since 2000. We keep good quality and reliable cooperation for global valued customers. Main products include infrared lamp. If any product

good news

2015-08-07 Thread wwmfz
good news samsung s6,280euro, imac, Nikon, Samsung, gultar, ipad S ite: poazzlo.com N�r��yb�X��ǧv�^�)޺{.n�+{���bj)w*jg����ݢj/���z�ޖ��2�ޙ�)ߡ�a�����G���h��j:+v���w��٥

[PATCH RFC v2 16/16] media: add functions to allow creating interfaces

2015-08-07 Thread Mauro Carvalho Chehab
Interfaces are different than entities: they represent a Kernel-userspace interaction, while entities represent a piece of hardware/firmware/software that executes a function. Let's distinguish them by creating a separate structure to store the interfaces. Latter patches should change the

[PATCH RFC v2 11/16] FIXUP: source link removal on failure

2015-08-07 Thread Mauro Carvalho Chehab
Signed-off-by: Mauro Carvalho Chehab mche...@osg.samsung.com diff --git a/drivers/media/media-entity.c b/drivers/media/media-entity.c index bdeb6e804c7e..43fa8ac59055 100644 --- a/drivers/media/media-entity.c +++ b/drivers/media/media-entity.c @@ -480,6 +480,9 @@ static struct media_link

[PATCH RFC v2 05/16] media: initialize PAD objects

2015-08-07 Thread Mauro Carvalho Chehab
PAD embedded objects also need to be initialized. Those are currently created via media_entity_init() and, once created, never change. While this will likely change in the future, for now we can just initialize those objects once, when registering the entity. Signed-off-by: Mauro Carvalho Chehab

[PATCH RFC v2 06/16] media: initialize the graph object inside the media links

2015-08-07 Thread Mauro Carvalho Chehab
When a new link is created, we need to initialize the object inside it. Signed-off-by: Mauro Carvalho Chehab mche...@osg.samsung.com diff --git a/drivers/media/media-device.c b/drivers/media/media-device.c index 56724f7853bf..9fb3f8958265 100644 --- a/drivers/media/media-device.c +++

Re: [PATCH RFC v2 00/16] Changes on MC core due to MC workshop discussion

2015-08-07 Thread Mauro Carvalho Chehab
Em Fri, 7 Aug 2015 11:19:58 -0300 Mauro Carvalho Chehab mche...@osg.samsung.com escreveu: This is the second version of an initial set of patches showing the approach I'm taking in order to fulfill all the MC needs that was discussed on the 3 day MC summit in Helsinki. Weird, two patches of

Re: [Xen-devel] RIP MTRR - status update for upcoming v4.2

2015-08-07 Thread Luis R. Rodriguez
On Thu, Aug 6, 2015 at 3:58 PM, Toshi Kani toshi.k...@hp.com wrote: On Thu, 2015-08-06 at 12:53 -0700, Luis R. Rodriguez wrote: On Fri, Jun 12, 2015 at 9:58 AM, Toshi Kani toshi.k...@hp.com wrote: On Fri, 2015-06-12 at 08:59 +0100, Jan Beulich wrote: On 12.06.15 at 01:23,

Re: [Xen-devel] RIP MTRR - status update for upcoming v4.2

2015-08-07 Thread Toshi Kani
On Fri, 2015-08-07 at 15:23 -0700, Luis R. Rodriguez wrote: On Fri, Aug 7, 2015 at 2:56 PM, Toshi Kani toshi.k...@hp.com wrote: On Fri, 2015-08-07 at 13:25 -0700, Luis R. Rodriguez wrote: On Thu, Aug 6, 2015 at 3:58 PM, Toshi Kani toshi.k...@hp.com wrote: On Thu, 2015-08-06 at 12:53

Re: [PATCH RFC v2 01/16] media: Add some fields to store graph objects

2015-08-07 Thread Sakari Ailus
Hi Mauro, On Fri, Aug 07, 2015 at 11:19:59AM -0300, Mauro Carvalho Chehab wrote: We'll need unique IDs for graph objects and a way to associate them with the media interface. So, add an atomic var to be used to create unique IDs and a list to store such objects. Signed-off-by: Mauro

Re: [Xen-devel] RIP MTRR - status update for upcoming v4.2

2015-08-07 Thread Toshi Kani
On Fri, 2015-08-07 at 17:08 -0600, Toshi Kani wrote: On Fri, 2015-08-07 at 15:23 -0700, Luis R. Rodriguez wrote: On Fri, Aug 7, 2015 at 2:56 PM, Toshi Kani toshi.k...@hp.com wrote: On Fri, 2015-08-07 at 13:25 -0700, Luis R. Rodriguez wrote: On Thu, Aug 6, 2015 at 3:58 PM, Toshi Kani

Re: [Xen-devel] RIP MTRR - status update for upcoming v4.2

2015-08-07 Thread Luis R. Rodriguez
On Fri, Aug 7, 2015 at 4:08 PM, Toshi Kani toshi.k...@hp.com wrote: On Fri, 2015-08-07 at 15:23 -0700, Luis R. Rodriguez wrote: On Fri, Aug 7, 2015 at 2:56 PM, Toshi Kani toshi.k...@hp.com wrote: On Fri, 2015-08-07 at 13:25 -0700, Luis R. Rodriguez wrote: On Thu, Aug 6, 2015 at 3:58 PM,

Re: [Xen-devel] RIP MTRR - status update for upcoming v4.2

2015-08-07 Thread Toshi Kani
On Fri, 2015-08-07 at 16:26 -0700, Luis R. Rodriguez wrote: On Fri, Aug 7, 2015 at 4:08 PM, Toshi Kani toshi.k...@hp.com wrote: On Fri, 2015-08-07 at 15:23 -0700, Luis R. Rodriguez wrote: On Fri, Aug 7, 2015 at 2:56 PM, Toshi Kani toshi.k...@hp.com wrote: On Fri, 2015-08-07 at 13:25

Re: [PATCH RFC v2 01/16] media: Add some fields to store graph objects

2015-08-07 Thread Mauro Carvalho Chehab
Em Sat, 8 Aug 2015 02:14:46 +0300 Sakari Ailus sakari.ai...@iki.fi escreveu: Hi Mauro, On Fri, Aug 07, 2015 at 11:19:59AM -0300, Mauro Carvalho Chehab wrote: We'll need unique IDs for graph objects and a way to associate them with the media interface. So, add an atomic var to be used

VIMC: API proposal, configuring the topology through user space

2015-08-07 Thread Helen Fornazier
Hi! I've made a first sketch about the API of the vimc driver (virtual media controller) to configure the topology through user space. As first suggested by Laurent Pinchart, it is based on configfs. I would like to know you opinion about it, if you have any suggestion to improve it, otherwise

cron job: media_tree daily build: OK

2015-08-07 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: Sat Aug 8 04:00:20 CEST 2015 git branch: test git hash: 4dc102b2f53d63207fa12a6ad49c7b6448bc3301 gcc