Re: [PATCH] drm/bridge/sii8620: add remote control support

2017-08-03 Thread Hans Verkuil
Hi Maciej, Unfortunately I do not have the MHL spec, but I was wondering what the relationship between RCP and CEC is. CEC has remote control support as well, so is RCP that subset of the CEC specification or is it completely separate? I'm CC-ing Sean Young and the linux-media mailinglist as

Re: [RFC 0/2] Add V4L2_BUF_TYPE_META_OUTPUT buffer type

2017-08-03 Thread Tomasz Figa
Hi Sakari, On Sat, Jun 17, 2017 at 12:14 AM, Sakari Ailus wrote: > The V4L2_BUF_TYPE_META_OUTPUT buffer type complements the metadata buffer > types support for OUTPUT buffers, capture being already supported. This is > intended for similar cases than

[PATCH] [media]: dw2102: make dvb_usb_device_description structures const

2017-08-03 Thread Bhumika Goyal
dvb_usb_device_description structures are only used during a copy operation. Therefore, declare them as const. Signed-off-by: Bhumika Goyal --- drivers/media/usb/dvb-usb/dw2102.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git

[PATCH] [media] rc: gpio-ir-tx: switch to gpiod, fix inverted polarity

2017-08-03 Thread Matthias Reichl
Manual handling of gpio output polarity was inverted. Switch to using gpiod, this allows us to simplify the code, delegate polarity handling to gpiod and remove the buggy local polarity handling code. Signed-off-by: Matthias Reichl --- This patch is against [PATCH v2 3/6]

Re: [PATCH v6] rockchip/rga: v4l2 m2m support

2017-08-03 Thread kbuild test robot
Hi Jacob, [auto build test WARNING on rockchip/for-next] [also build test WARNING on v4.13-rc3 next-20170803] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/Jacob-Chen/rockchip-rga-v4l2-m2m

Re: [PATCH] media: i2c: adv748x: Store the pixel rate ctrl on CSI objects

2017-08-03 Thread Niklas Söderlund
Hi Kieran, On 2017-08-03 14:50:23 +0100, Kieran Bingham wrote: > From: Kieran Bingham > > The current implementation has to search the list of controls for the > pixel rate control, each time it is set. This can be optimised easily > by storing the ctrl

[PATCH] Staging: bcm2048: fix bare use of 'unsigned' in radio-bcm2048.c

2017-08-03 Thread Branislav Radocaj
This is a patch to the radio-bcm2048.c file that fixes up a warning found by the checkpatch.pl tool. Signed-off-by: Branislav Radocaj --- drivers/staging/media/bcm2048/radio-bcm2048.c | 44 +-- 1 file changed, 22 insertions(+), 22 deletions(-)

Re: [PATCH] Staging: bcm2048: fix bare use of 'unsigned' in radio-bcm2048.c

2017-08-03 Thread Dan Carpenter
This breaks the build. Always try to compile your patches. regards, dan carpenter

Re: [PATCH v2 2/3] dt-bindings: media: Add Allwinner V3s Camera Sensor Interface (CSI)

2017-08-03 Thread Rob Herring
On Thu, Jul 27, 2017 at 01:01:36PM +0800, Yong Deng wrote: > Add binding documentation for Allwinner V3s CSI. > > Signed-off-by: Yong Deng > --- > .../devicetree/bindings/media/sun6i-csi.txt| 49 > ++ > 1 file changed, 49 insertions(+) >

Re: [PATCH] Staging: bcm2048: fix bare use of 'unsigned' in radio-bcm2048.c

2017-08-03 Thread kbuild test robot
Hi Branislav, [auto build test ERROR on linuxtv-media/master] [also build test ERROR on v4.13-rc3 next-20170803] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/Branislav-Radocaj/Staging-bcm2048

cron job: media_tree daily build: ERRORS

2017-08-03 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: Fri Aug 4 05:00:17 CEST 2017 media-tree git hash:da48c948c263c9d87dfc64566b3373a858cc8aa2 media_build

[PATCH 1/4] ir-keytable: do not fail at the first transmit-only device

2017-08-03 Thread Sean Young
It is not possible to list all rc devices without this, since it fails when ir-keytable encounters an rc device without an input device (ie. IR transmitters). Note that IR transmitters are not listed, but they are of no interest to ir-keytable anyway. Signed-off-by: Sean Young

[PATCH 2/4] ir-ctl: "ir-ctl -S rc6_mce:0x800f0410" does not work on 32-bit

2017-08-03 Thread Sean Young
0x800f0410 does not fit in 32-bit signed long. Signed-off-by: Sean Young --- utils/ir-ctl/ir-ctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/ir-ctl/ir-ctl.c b/utils/ir-ctl/ir-ctl.c index 3d66063a..562a05da 100644 --- a/utils/ir-ctl/ir-ctl.c +++

[PATCH 4/4] ir-ctl: report LIRCCODE drivers even if we don't supported them

2017-08-03 Thread Sean Young
Signed-off-by: Sean Young --- utils/ir-ctl/ir-ctl.c | 4 1 file changed, 4 insertions(+) diff --git a/utils/ir-ctl/ir-ctl.c b/utils/ir-ctl/ir-ctl.c index e7275989..544ad341 100644 --- a/utils/ir-ctl/ir-ctl.c +++ b/utils/ir-ctl/ir-ctl.c @@ -715,6 +715,8 @@ static void

[PATCH] [media] lirc_zilog: driver only sends LIRCCODE

2017-08-03 Thread Sean Young
This driver cannot send pulse, it only accepts driver-dependent codes. Cc: # v3.2 Signed-off-by: Sean Young --- drivers/staging/media/lirc/lirc_zilog.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git

[PATCH 3/4] ir-ctl: lirc resolution is in microseconds

2017-08-03 Thread Sean Young
Signed-off-by: Sean Young --- utils/ir-ctl/ir-ctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/ir-ctl/ir-ctl.c b/utils/ir-ctl/ir-ctl.c index 562a05da..e7275989 100644 --- a/utils/ir-ctl/ir-ctl.c +++ b/utils/ir-ctl/ir-ctl.c @@ -689,7 +689,7 @@ static

Re: [PATCH v2 2/3] dt-bindings: add bindings document for zx-irdec

2017-08-03 Thread Rob Herring
On Sun, Jul 30, 2017 at 09:23:12PM +0800, Shawn Guo wrote: > From: Shawn Guo > > It adds the dt-bindings document for ZTE ZX IRDEC remote control > block. > > Signed-off-by: Shawn Guo > --- > Documentation/devicetree/bindings/media/zx-irdec.txt | 14

Re: [PATCH 1/4] dt-bindings: adi,adv7511.txt: document cec clock

2017-08-03 Thread Rob Herring
On Sun, Jul 30, 2017 at 03:07:40PM +0200, Hans Verkuil wrote: > From: Hans Verkuil > > Document the cec clock binding. > > Signed-off-by: Hans Verkuil > --- > Documentation/devicetree/bindings/display/bridge/adi,adv7511.txt | 4 > 1 file

Dear user

2017-08-03 Thread HELP DESK
Dear user Your mailbox has exceeded the storage limit of 20GB set by the administrator, you are currently running at 20.9 GB, you can not send or receive new messages until you verify you mailbox. Re-validate your account by mail, please fill and Send the data below to verify and

[PATCH] [media] v4l2-compat-ioctl32: Copy v4l2_window->global_alpha

2017-08-03 Thread Daniel Mentz
Commit b2787845fb91 ("V4L/DVB (5289): Add support for video output overlays.") added the field global_alpha to struct v4l2_window but did not update the compat layer accordingly. This change adds global_alpha to struct v4l2_window32 and copies the value for global_alpha back and forth. Cc: Hans

Re: Gift-

2017-08-03 Thread Mayrhofer Family
Good Day, My wife and I have awarded you with a donation of $ 1,000,000.00 Dollars from part of our Jackpot Lottery of 50 Million Dollars, respond with your details for claims. We await your earliest response and God Bless you. Friedrich And Annand Mayrhofer. --- This email has been checked

[GIT PUL FOR v4.14] R-Car DU changes

2017-08-03 Thread Laurent Pinchart
Hi Dave, The following changes since commit e6742e1021a5cec55fab50a0b115c65217488eda: drm: linux-next: build failure after merge of the drm-misc tree (2017-07-27 08:27:11 +1000) are available in the git repository at: git://linuxtv.org/pinchartl/media.git tags/drm-next-du-20170803

[PATCH] media: i2c: adv748x: Store the pixel rate ctrl on CSI objects

2017-08-03 Thread Kieran Bingham
From: Kieran Bingham The current implementation has to search the list of controls for the pixel rate control, each time it is set. This can be optimised easily by storing the ctrl pointer in the CSI/TX object, and referencing that directly. While at

Re: [PATCH v3 3/4] drm: rcar-du: Fix race condition when disabling planes at CRTC stop

2017-08-03 Thread Kieran Bingham
Hi Laurent, On 29/07/17 22:08, Laurent Pinchart wrote: > When stopping the CRTC the driver must disable all planes and wait for > the change to take effect at the next vblank. Merely calling > drm_crtc_wait_one_vblank() is not enough, as the function doesn't > include any mechanism to handle the

[PATCH] staging: media: use relevant lock

2017-08-03 Thread Julia Lawall
The data protected is video_out2 and the lock that is released is _out2->dma_queue_lock, so it seems that that lock should be taken as well. Signed-off-by: Julia Lawall --- drivers/staging/media/davinci_vpfe/dm365_resizer.c |2 +- 1 file changed, 1 insertion(+), 1

Re: [PATCH v3 2/4] drm: rcar-du: Wait for flip completion instead of vblank in commit tail

2017-08-03 Thread Kieran Bingham
Hi Laurent, On 29/07/17 22:08, Laurent Pinchart wrote: > Page flips can take more than one vertical blanking to complete if > arming the page flips races with the vertical blanking interrupt. > Waiting for one vblank to complete the atomic commit in the commit tail > handler is thus incorrect,