GODA NYHETER

2018-10-04 Thread Mrs. Ursula Zachary
Min kära stödmottagare, Jag är säker på att detta mail kommer att komma till dig som en överraskning eftersom vi aldrig har träffat förut och du skulle också fråga varför jag har bestämt mig för att välja dig bland de många internetanvändarna i världen. Exakt kan jag inte säga varför jag har

[PATCH v7 6/6] media: add Rockchip VPU JPEG encoder driver

2018-10-04 Thread Ezequiel Garcia
Add a mem2mem driver for the VPU available on Rockchip SoCs. Currently only JPEG encoding is supported, for RK3399 and RK3288 platforms. Signed-off-by: Ezequiel Garcia --- MAINTAINERS | 7 + drivers/staging/media/Kconfig | 2 +

[PATCH v7 4/6] media: Add JPEG_RAW format

2018-10-04 Thread Ezequiel Garcia
From: Shunqian Zheng Add V4L2_PIX_FMT_JPEG_RAW format that does not contain JPEG header in the output frame. Signed-off-by: Shunqian Zheng Signed-off-by: Ezequiel Garcia --- Documentation/media/uapi/v4l/pixfmt-compressed.rst | 9 + drivers/media/v4l2-core/v4l2-ioctl.c |

[PATCH v7 2/6] ARM: dts: rockchip: add VPU device node for RK3288

2018-10-04 Thread Ezequiel Garcia
Add the Video Processing Unit node for RK3288 SoC. Fix the VPU IOMMU node, which was disabled and lacking its power domain property. Signed-off-by: Ezequiel Garcia --- arch/arm/boot/dts/rk3288.dtsi | 14 +- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git

[PATCH v7 5/6] media: Add controls for JPEG quantization tables

2018-10-04 Thread Ezequiel Garcia
From: Shunqian Zheng Add V4L2_CID_JPEG_QUANTIZATION compound control to allow userspace configure the JPEG quantization tables. Signed-off-by: Shunqian Zheng Signed-off-by: Ezequiel Garcia --- .../media/uapi/v4l/extended-controls.rst | 25 +++

[PATCH v7 0/6] Add Rockchip VPU JPEG encoder

2018-10-04 Thread Ezequiel Garcia
This series adds support for JPEG encoding via the VPU block present in Rockchip platforms. Currently, support for RK3288 and RK3399 is included. Please, see the previous versions of this cover letter for more information. This series should apply cleanly on top of

[PATCH v7 3/6] arm64: dts: rockchip: add VPU device node for RK3399

2018-10-04 Thread Ezequiel Garcia
Add the Video Processing Unit node for the RK3399 SoC. Also, fix the VPU IOMMU node, which was disabled and lacking its power domain property. Signed-off-by: Ezequiel Garcia --- arch/arm64/boot/dts/rockchip/rk3399.dtsi | 14 +- 1 file changed, 13 insertions(+), 1 deletion(-) diff

[PATCH v7 1/6] dt-bindings: Document the Rockchip VPU bindings

2018-10-04 Thread Ezequiel Garcia
Add devicetree binding documentation for Rockchip Video Processing Unit IP. Reviewed-by: Rob Herring Signed-off-by: Ezequiel Garcia --- .../bindings/media/rockchip-vpu.txt | 29 +++ 1 file changed, 29 insertions(+) create mode 100644

Re: [PATCH v6 0/6] Add Rockchip VPU JPEG encoder

2018-10-04 Thread Ezequiel Garcia
On Mon, 2018-10-01 at 14:54 -0300, Ezequiel Garcia wrote: > On Fri, 2018-09-28 at 14:33 +0200, Hans Verkuil wrote: > > On 09/17/2018 07:30 PM, Ezequiel Garcia wrote: > > > This series adds support for JPEG encoding via the VPU block > > > present in Rockchip platforms. Currently, support for

Re: [PATCH 2/2] media: rc: self test for IR encoders and decoders

2018-10-04 Thread Sean Young
Hi Shuah, On Thu, Oct 04, 2018 at 02:13:51PM -0600, Shuah Khan wrote: > Hi Sean, > > Thanks for the patch. I just happened to see this when Mauro sent it to me. > Doesn't look like linux-ksefltest and I weren't on the patch? This is true, and that is an oversight on my behalf. Thank you for

Re: [PATCH v6 1/6] dt-bindings: Document the Rockchip VPU bindings

2018-10-04 Thread Ezequiel Garcia
On Fri, 2018-09-28 at 13:53 +0200, Hans Verkuil wrote: > On 09/17/2018 07:30 PM, Ezequiel Garcia wrote: > > Add devicetree binding documentation for Rockchip Video Processing > > Unit IP. > > > > Reviewed-by: Rob Herring > > Signed-off-by: Ezequiel Garcia > > --- > >

[PATCH] media: cec: name for RC passthrough device does not need 'RC for'

2018-10-04 Thread Sean Young
An RC device is does not need to be called 'RC for'. Simply the name will suffice. Signed-off-by: Sean Young --- drivers/media/cec/cec-core.c | 6 ++ include/media/cec.h | 2 -- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/drivers/media/cec/cec-core.c

[PATCH 2/3] media: v4l2-fwnode: cleanup functions that parse endpoints

2018-10-04 Thread Mauro Carvalho Chehab
There is already a typedef for the parse endpoint function. However, instead of using it, it is redefined at the C file (and on one of the function headers). Replace them by the function typedef, in order to cleanup several related coding style warnings. Signed-off-by: Mauro Carvalho Chehab ---

[PATCH 1/3] media: v4l2-core: cleanup coding style at V4L2 async/fwnode

2018-10-04 Thread Mauro Carvalho Chehab
There are several coding style issues at those definitions, and the previous patchset added even more. Address the trivial ones by first calling: ./scripts/checkpatch.pl --strict --fix-inline include/media/v4l2-async.h include/media/v4l2-fwnode.h include/media/v4l2-mediabus.h

[PATCH 3/3] media: v4l2-fwnode: simplify v4l2_fwnode_reference_parse_int_props() call

2018-10-04 Thread Mauro Carvalho Chehab
The v4l2_fwnode_reference_parse_int_props() has a big name, causing it to cause coding style warnings. Also, it depends on a const struct embedded indide a function. Rearrange the logic in order to move the struct declaration out of such function and use it inside this function. That cleans up

[PATCH 0/3] Coding style cleanups after the fwnode patchset

2018-10-04 Thread Mauro Carvalho Chehab
The fwnode patchset added a several new warnings, as identified by checkpatch.pl --strict. Those are at the core stuff, and makes harder to review patches there. The most irritating stuff there are functions like: some_very_long_function_that_has_a_very_comprehensive_name(

Your images 22

2018-10-04 Thread Joanna
Have photos for cutting out or retouching? We are one image team and we do editing for your the e-commerce photos, industry photos or portrait photo. If you need test editing then let me know. Waiting for your reply and the photo work. Thanks, Joanna

Your images 22

2018-10-04 Thread Joanna
Have photos for cutting out or retouching? We are one image team and we do editing for your the e-commerce photos, industry photos or portrait photo. If you need test editing then let me know. Waiting for your reply and the photo work. Thanks, Joanna

Your images 24

2018-10-04 Thread Joanna
Have photos for cutting out or retouching? We are one image team and we do editing for your the e-commerce photos, industry photos or portrait photo. If you need test editing then let me know. Waiting for your reply and the photo work. Thanks, Joanna

Re: [PATCH v4 00/11] imx-media: Fixes for interlaced capture

2018-10-04 Thread Steve Longerbeam
On 10/04/2018 12:34 PM, Hans Verkuil wrote: On 10/04/2018 08:53 PM, Steve Longerbeam wrote: A set of patches that fixes some bugs with capturing from an interlaced source, and incompatibilites between IDMAC interlace interweaving and 4:2:0 data write reduction. History: v4: - rebased to

Re: [PATCH 2/2] media: rc: self test for IR encoders and decoders

2018-10-04 Thread Shuah Khan
Hi Sean, Thanks for the patch. I just happened to see this when Mauro sent it to me. Doesn't look like linux-ksefltest and I weren't on the patch? On 07/17/2018 03:33 PM, Sean Young (by way of Mauro Carvalho Chehab ) wrote: > ir-loopback can transmit IR on one rc device and check the correct >

[PATCH v2 3/3] rcar-vin: declare which VINs can use a Up Down Scaler (UDS)

2018-10-04 Thread Niklas Söderlund
Add information about which VINs on which SoC have access to a UDS scaler. Signed-off-by: Niklas Söderlund --- drivers/media/platform/rcar-vin/rcar-core.c | 18 ++ 1 file changed, 18 insertions(+) diff --git a/drivers/media/platform/rcar-vin/rcar-core.c

Re: [PATCH] MAINTAINERS: Remove stale file entry for the Atmel ISI driver

2018-10-04 Thread Laurent Pinchart
Hi Mauro, On Thursday, 4 October 2018 21:45:05 EEST Mauro Carvalho Chehab wrote: > Em Tue, 2 Oct 2018 08:35:47 +0200 Ludovic Desroches escreveu: > > On Mon, Oct 01, 2018 at 01:51:01PM -0300, Mauro Carvalho Chehab wrote: > > > Em Sun, 30 Sep 2018 02:40:35 -0700 Joe Perches escreveu: > > > > On

s5p_mfc and H.264 frame cropping question

2018-10-04 Thread Hans Verkuil
Hi all, I'm looking at removing the last users of vidioc_g/s_crop from the driver and I came across vidioc_g_crop in drivers/media/platform/s5p-mfc/s5p_mfc_dec.c. What this really does AFAICS is return the H.264 frame crop as read from the bitstream. This has nothing to do with regular

Re: [PATCH v4 00/11] imx-media: Fixes for interlaced capture

2018-10-04 Thread Hans Verkuil
On 10/04/2018 08:53 PM, Steve Longerbeam wrote: > A set of patches that fixes some bugs with capturing from an > interlaced source, and incompatibilites between IDMAC interlace > interweaving and 4:2:0 data write reduction. > > History: > v4: > - rebased to latest media-tree master branch. > -

[PATCH v4 00/11] imx-media: Fixes for interlaced capture

2018-10-04 Thread Steve Longerbeam
A set of patches that fixes some bugs with capturing from an interlaced source, and incompatibilites between IDMAC interlace interweaving and 4:2:0 data write reduction. History: v4: - rebased to latest media-tree master branch. - Make patch author and SoB email addresses the same. v3: - add

Re: [GIT PULL FOR v4.20] Various fixes

2018-10-04 Thread Mauro Carvalho Chehab
Em Mon, 1 Oct 2018 11:56:22 +0200 Hans Verkuil escreveu: > The following changes since commit 4158757395b300b6eb308fc20b96d1d231484413: > > media: davinci: Fix implicit enum conversion warning (2018-09-24 09:43:13 > -0400) > > are available in the Git repository at: > >

Re: [PATCH] MAINTAINERS: Remove stale file entry for the Atmel ISI driver

2018-10-04 Thread Mauro Carvalho Chehab
Em Tue, 2 Oct 2018 08:35:47 +0200 Ludovic Desroches escreveu: > On Mon, Oct 01, 2018 at 01:51:01PM -0300, Mauro Carvalho Chehab wrote: > > Em Sun, 30 Sep 2018 02:40:35 -0700 > > Joe Perches escreveu: > > > > > On Sun, 2018-09-30 at 06:30 -0300, Mauro Carvalho Chehab wrote: > > > > Em Sun,

Re: [PATCH v3 00/14] imx-media: Fixes for interlaced capture

2018-10-04 Thread Steve Longerbeam
On 10/04/2018 06:41 AM, Hans Verkuil wrote: On 10/04/18 01:21, Steve Longerbeam wrote: Hi Hans, On 10/01/2018 03:07 AM, Hans Verkuil wrote: Hi Steve, On 08/01/2018 09:12 PM, Steve Longerbeam wrote: A set of patches that fixes some bugs with capturing from an interlaced source, and

[GIT PULL FOR v4.20] Additional RC fixes

2018-10-04 Thread Sean Young
Hi Mauro, Here are some additional fixes for v4.20. By enabling the rel/keys bits when the RC input device is registered, we can re-use the same input device for imon/mce_kbd protocol mouse movements and keys. Note that all these patches depend on each other; the second depends on the first, and

Re: [PATCH v5] media: imx208: Add imx208 camera sensor driver

2018-10-04 Thread Sakari Ailus
Hi Ping-chung, On Thu, Sep 27, 2018 at 03:19:07AM +, Chen, Ping-chung wrote: > Hi, > > >-Original Message- > >From: Yeh, Andy > >Sent: Wednesday, September 26, 2018 11:19 PM > >To: Sakari Ailus ; Chen, Ping-chung > > > > >Hi Sakari, PC, > > >sensors that do need >digital gain

Re: [PATCH v3 00/12] media: ov5640: Misc cleanup and improvements

2018-10-04 Thread Hugues FRUCHET
Hi Maxime, On 10/04/2018 05:04 PM, Maxime Ripard wrote: > Hi! > > On Mon, Oct 01, 2018 at 02:12:31PM +, Hugues FRUCHET wrote: This is working perfectly fine on my parallel setup and allows me to well support VGA@30fps (instead 27) and also support XGA(1024x768)@15fps that I

Re: [PATCH v3 00/12] media: ov5640: Misc cleanup and improvements

2018-10-04 Thread Maxime Ripard
Hi! On Mon, Oct 01, 2018 at 02:12:31PM +, Hugues FRUCHET wrote: > >> This is working perfectly fine on my parallel setup and allows me to > >> well support VGA@30fps (instead 27) and also support XGA(1024x768)@15fps > >> that I never seen working before. > >> So at least for the parallel

[PATCH v5] media: docs: add glossary.rst with common terms used at V4L2 spec

2018-10-04 Thread Mauro Carvalho Chehab
From: Mauro Carvalho Chehab Add a glossary of terms used within the media userspace API documentation, as several concepts are complex enough to cause misunderstandings. Signed-off-by: Mauro Carvalho Chehab --- Documentation/media/media_uapi.rst| 3 +

Re: [PATCH v3] media: docs: add glossary.rst with common terms used at V4L2 spec

2018-10-04 Thread Mauro Carvalho Chehab
Em Thu, 4 Oct 2018 10:27:06 -0300 Mauro Carvalho Chehab escreveu: > > > + For V4L2 hardware, this is also known as V4L2 main driver. > > > > Do we use the term V4L2 main driver in the V4L2 spec ? > > Right now, I don't think we use, but this is something that we'll > need to, in order

Re: [PATCH v3 00/14] imx-media: Fixes for interlaced capture

2018-10-04 Thread Hans Verkuil
On 10/04/18 01:21, Steve Longerbeam wrote: > Hi Hans, > > > On 10/01/2018 03:07 AM, Hans Verkuil wrote: >> Hi Steve, >> >> On 08/01/2018 09:12 PM, Steve Longerbeam wrote: >>> A set of patches that fixes some bugs with capturing from an >>> interlaced source, and incompatibilites between IDMAC

Re: [PATCH v3] media: docs: add glossary.rst with common terms used at V4L2 spec

2018-10-04 Thread Mauro Carvalho Chehab
Em Thu, 04 Oct 2018 14:41:30 +0300 Laurent Pinchart escreveu: > Hi Mauro, > > (CC'ing Kieran) > > Thank you for the patch. > > On Tuesday, 25 September 2018 22:14:51 EEST Mauro Carvalho Chehab wrote: > > From: Mauro Carvalho Chehab > > > > Add a glossary of terms used within the media

[PATCHv2] media: rc: add driver for Xbox DVD Movie Playback Kit

2018-10-04 Thread Benjamin Valentin
The Xbox DVD Movie Playback Kit is a USB dongle with an IR remote for the Original Xbox. Historically it has been supported by the out-of-tree lirc_xbox driver, but this one has fallen out of favour and was just dropped from popular Kodi (formerly XBMC) distributions. This driver is heaviely

Re: [PATCH v3] media: docs: add glossary.rst with common terms used at V4L2 spec

2018-10-04 Thread Laurent Pinchart
Hi Mauro, (CC'ing Kieran) Thank you for the patch. On Tuesday, 25 September 2018 22:14:51 EEST Mauro Carvalho Chehab wrote: > From: Mauro Carvalho Chehab > > Add a glossary of terms used within the media userspace API > documentation, as several concepts are complex enough to cause >

Re: [PATCH v4] media: docs: add glossary.rst with common terms used at V4L2 spec

2018-10-04 Thread Mauro Carvalho Chehab
Em Thu, 4 Oct 2018 13:11:12 +0200 Hans Verkuil escreveu: > On 10/04/18 12:58, Mauro Carvalho Chehab wrote: > > From: Mauro Carvalho Chehab > > > > Add a glossary of terms used within the media userspace API > > documentation, as several concepts are complex enough to cause > >

[PATCH] media: ov5640: fix framerate update

2018-10-04 Thread Hugues Fruchet
Changing framerate right before streamon had no effect, the new framerate value was taken into account only at next streamon, fix this. Signed-off-by: Hugues Fruchet --- drivers/media/i2c/ov5640.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git

Re: [PATCH 2/2] media: vivid: Add 16-bit bayer to format list

2018-10-04 Thread Hans Verkuil
On 10/04/18 13:01, bwint...@cisco.com wrote: > From: Bård Eirik Winther > Same here: missing commit message. This patch looks good otherwise. Regards, Hans > Signed-off-by: Bård Eirik Winther > --- > .../media/platform/vivid/vivid-vid-common.c | 28 +++ > 1 file

Re: [PATCH 1/2] media: v4l2-tpg-core: Add 16-bit bayer

2018-10-04 Thread Hans Verkuil
On 10/04/18 13:01, bwint...@cisco.com wrote: > From: Bård Eirik Winther > Missing commit message. Looks good otherwise. Regards, Hans > Signed-off-by: Bård Eirik Winther > --- > drivers/media/common/v4l2-tpg/v4l2-tpg-core.c | 28 +++ > 1 file changed, 28

Re: [PATCH v4] media: docs: add glossary.rst with common terms used at V4L2 spec

2018-10-04 Thread Hans Verkuil
On 10/04/18 12:58, Mauro Carvalho Chehab wrote: > From: Mauro Carvalho Chehab > > Add a glossary of terms used within the media userspace API > documentation, as several concepts are complex enough to cause > misunderstandings. > > Signed-off-by: Mauro Carvalho Chehab > --- >

[PATCH 1/2] media: v4l2-tpg-core: Add 16-bit bayer

2018-10-04 Thread bwinther
From: Bård Eirik Winther Signed-off-by: Bård Eirik Winther --- drivers/media/common/v4l2-tpg/v4l2-tpg-core.c | 28 +++ 1 file changed, 28 insertions(+) diff --git a/drivers/media/common/v4l2-tpg/v4l2-tpg-core.c b/drivers/media/common/v4l2-tpg/v4l2-tpg-core.c index

[PATCH 2/2] media: vivid: Add 16-bit bayer to format list

2018-10-04 Thread bwinther
From: Bård Eirik Winther Signed-off-by: Bård Eirik Winther --- .../media/platform/vivid/vivid-vid-common.c | 28 +++ 1 file changed, 28 insertions(+) diff --git a/drivers/media/platform/vivid/vivid-vid-common.c b/drivers/media/platform/vivid/vivid-vid-common.c index

[PATCH v4] media: docs: add glossary.rst with common terms used at V4L2 spec

2018-10-04 Thread Mauro Carvalho Chehab
From: Mauro Carvalho Chehab Add a glossary of terms used within the media userspace API documentation, as several concepts are complex enough to cause misunderstandings. Signed-off-by: Mauro Carvalho Chehab --- Documentation/media/media_uapi.rst| 3 +

Re: [PATCH v3] media: docs: add glossary.rst with common terms used at V4L2 spec

2018-10-04 Thread Mauro Carvalho Chehab
Em Mon, 1 Oct 2018 17:20:26 +0200 Hans Verkuil escreveu: > On 09/25/2018 09:14 PM, Mauro Carvalho Chehab wrote: > > From: Mauro Carvalho Chehab > > > > Add a glossary of terms used within the media userspace API > > documentation, as several concepts are complex enough to cause > >

Re: [RFC PATCH] media: v4l2-ctrl: Add control for specific V4L2_EVENT_SRC_CH_RESOLUTION support

2018-10-04 Thread Tomasz Figa
On Wed, Oct 3, 2018 at 7:02 PM Maxime Jourdan wrote: > > On Tue, Oct 2, 2018 at 1:43 PM Hans Verkuil wrote: > > > > On 10/02/18 13:31, Maxime Jourdan wrote: > > > For drivers that expose both an OUTPUT queue and > > > V4L2_EVENT_SRC_CH_RESOLUTION such as video decoders, it is > > > possible that

Re: [PATCH v1 2/2] v4l: Document Intel IPU3 meta data uAPI

2018-10-04 Thread sakari.ai...@linux.intel.com
Hi Raj, On Wed, Oct 03, 2018 at 10:56:19PM +, Mani, Rajmohan wrote: ... > > From some comment you had later, > > I guess you're meaning that only 3 or 7 are the valid values. > > > > Yet, you're listing from 2^3 to 2^7, and that's confusing. Perhaps > > you want to say, instead, that the