All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL FOR 5.18] V4L2 patches
@ 2022-01-19 10:28 Sakari Ailus
  2022-01-19 10:32 ` [GIT PULL FOR 5.18] V4L2 patches (#80103) Jenkins
  0 siblings, 1 reply; 2+ messages in thread
From: Sakari Ailus @ 2022-01-19 10:28 UTC (permalink / raw)
  To: linux-media

Hi Mauro,

Here's a bunch of patches again for 5.18. Most notably there's V4L2 fwnode
/ mbus_config cleanup by Laurent, the hi847 camera sensor driver from Shawn
Tu and the od08d10 camera sensor driver by Jimmy Su. Fixes elsewhere are
included, too.

Please pull.


The following changes since commit 68b9bcc8a534cd11fe55f8bc82f948aae7d81b3c:

  media: ipu3-cio2: Add support for instantiating i2c-clients for VCMs (2021-12-16 20:58:56 +0100)

are available in the Git repository at:

  git://linuxtv.org/sailus/media_tree.git tags/for-5.18-1-signed

for you to fetch changes up to dd19217c0d6aa5fc90a89ebd01968a3e299232a3:

  media: i2c: Add ov08d10 camera sensor driver (2022-01-19 12:19:35 +0200)

----------------------------------------------------------------
V4L2 patches for 5.18

----------------------------------------------------------------
Janusz Krzysztofik (4):
      media: ov6650: Fix set format try processing path
      media: ov6650: Add try support to selection API operations
      media: ov6650: Fix crop rectangle affected by set format
      media: ov6650: Fix missing frame interval enumeration support

Jimmy Su (1):
      media: i2c: Add ov08d10 camera sensor driver

Laurent Pinchart (8):
      media: pxa_camera: Drop usage of .set_mbus_config()
      media: i2c: ov6650: Drop implementation of .set_mbus_config()
      media: v4l2-subdev: Drop .set_mbus_config() operation
      media: v4l2-fwnode: Move bus config structure to v4l2_mediabus.h
      media: v4l2-mediabus: Use structures to describe bus configuration
      media: v4l2-mediabus: Drop legacy V4L2_MBUS_CSI2_*_LANE flags
      media: v4l2-mediabus: Drop legacy V4L2_MBUS_CSI2_CHANNEL_* flags
      media: v4l2-mediabus: Drop V4L2_MBUS_CSI2_CONTINUOUS_CLOCK flag

Robert Foss (2):
      media: camss: csiphy: Move to hardcode CSI Clock Lane number
      media: dt-bindings: media: camss: Remove clock-lane property

Sakari Ailus (3):
      v4l: Avoid unaligned access warnings when printing 4cc modifiers
      ov5648: Don't pack controls struct
      ov8865: Fix indentation in set_selection callback

Shawn Tu (1):
      media: hi847: Add support for Hi-847 sensor

 .../bindings/media/qcom,msm8916-camss.yaml         |   10 -
 .../bindings/media/qcom,msm8996-camss.yaml         |   20 -
 .../bindings/media/qcom,sdm660-camss.yaml          |   20 -
 .../bindings/media/qcom,sdm845-camss.yaml          |   17 -
 MAINTAINERS                                        |   13 +
 drivers/gpu/ipu-v3/ipu-csi.c                       |    6 +-
 drivers/media/i2c/Kconfig                          |   26 +
 drivers/media/i2c/Makefile                         |    2 +
 drivers/media/i2c/adv7180.c                        |   10 +-
 drivers/media/i2c/adv748x/adv748x-csi2.c           |   18 +-
 drivers/media/i2c/hi847.c                          | 3012 ++++++++++++++++++++
 drivers/media/i2c/ml86v7667.c                      |    5 +-
 drivers/media/i2c/mt9m001.c                        |    8 +-
 drivers/media/i2c/mt9m111.c                        |   14 +-
 drivers/media/i2c/ov08d10.c                        | 1526 ++++++++++
 drivers/media/i2c/ov5648.c                         |    6 +-
 drivers/media/i2c/ov6650.c                         |  206 +-
 drivers/media/i2c/ov8865.c                         |    8 +-
 drivers/media/i2c/ov9640.c                         |    8 +-
 drivers/media/i2c/tc358743.c                       |   26 +-
 drivers/media/i2c/tvp5150.c                        |    6 +-
 drivers/media/platform/pxa_camera.c                |   21 +-
 .../platform/qcom/camss/camss-csiphy-2ph-1-0.c     |   19 +-
 .../platform/qcom/camss/camss-csiphy-3ph-1-0.c     |   17 +-
 drivers/media/platform/qcom/camss/camss-csiphy.c   |   21 +-
 drivers/media/platform/qcom/camss/camss-csiphy.h   |    7 +
 drivers/media/platform/qcom/camss/camss.c          |    2 +-
 drivers/media/platform/rcar-vin/rcar-csi2.c        |   16 +-
 drivers/media/platform/rcar-vin/rcar-vin.h         |    2 +-
 drivers/media/platform/stm32/stm32-dcmi.c          |    2 +-
 drivers/media/platform/sunxi/sun4i-csi/sun4i_csi.h |    2 +-
 drivers/media/platform/sunxi/sun4i-csi/sun4i_dma.c |    2 +-
 drivers/media/platform/ti-vpe/cal-camerarx.c       |    6 +-
 drivers/media/v4l2-core/v4l2-fwnode.c              |   18 +-
 drivers/media/v4l2-core/v4l2-ioctl.c               |   12 +-
 drivers/media/v4l2-core/v4l2-subdev.c              |    8 -
 drivers/staging/media/imx/imx-media-csi.c          |    7 +-
 drivers/staging/media/imx/imx6-mipi-csi2.c         |   25 +-
 drivers/staging/media/imx/imx7-mipi-csis.c         |    2 +-
 drivers/staging/media/imx/imx8mq-mipi-csi2.c       |    2 +-
 drivers/staging/media/max96712/max96712.c          |    2 +-
 include/media/v4l2-fwnode.h                        |   61 +-
 include/media/v4l2-mediabus.h                      |  104 +-
 include/media/v4l2-subdev.h                        |   13 -
 44 files changed, 4902 insertions(+), 436 deletions(-)
 create mode 100644 drivers/media/i2c/hi847.c
 create mode 100644 drivers/media/i2c/ov08d10.c

-- 
Kind regards,

Sakari Ailus

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL FOR 5.18] V4L2 patches (#80103)
  2022-01-19 10:28 [GIT PULL FOR 5.18] V4L2 patches Sakari Ailus
@ 2022-01-19 10:32 ` Jenkins
  0 siblings, 0 replies; 2+ messages in thread
From: Jenkins @ 2022-01-19 10:32 UTC (permalink / raw)
  To: mchehab+samsung, linux-media; +Cc: builder

From: builder@linuxtv.org

Pull request: https://patchwork.linuxtv.org/project/linux-media/patch/Yefnzk4ndvoxGEB+@valkosipuli.retiisi.eu/
Build log: https://builder.linuxtv.org/job/patchwork/175420/
Build time: 00:00:00
Link: https://lore.kernel.org/linux-media/Yefnzk4ndvoxGEB+@valkosipuli.retiisi.eu

gpg: Signature made Wed 19 Jan 2022 10:19:59 AM UTC
gpg:                using DSA key 53AC58A5F5948636C04A1BF8141DFA54A1EC8DEA
gpg:                issuer "sakari.ailus@linux.intel.com"
gpg: Good signature from "Sakari Ailus <sakari.ailus@linux.intel.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: F0D0 377A 0D4F 25A7 9238  EFE5 6D40 361B 6E28 C193
     Subkey fingerprint: 53AC 58A5 F594 8636 C04A  1BF8 141D FA54 A1EC 8DEA


Build aborted due to a fatal error:
FAILED: patch patch patches/0001-media-camss-csiphy-Move-to-hardcode-CSI-Clock-Lane-n.patch doesn't apply:
Applying patch patches/0001-media-camss-csiphy-Move-to-hardcode-CSI-Clock-Lane-n.patch
patching file drivers/media/platform/qcom/camss/camss-csiphy-2ph-1-0.c
patching file drivers/media/platform/qcom/camss/camss-csiphy-3ph-1-0.c
Hunk #2 succeeded at 449 (offset 128 lines).
Hunk #3 FAILED at 345.
Hunk #4 succeeded at 511 (offset 100 lines).
1 out of 4 hunks FAILED -- rejects in file drivers/media/platform/qcom/camss/camss-csiphy-3ph-1-0.c
patching file drivers/media/platform/qcom/camss/camss-csiphy.c
Hunk #1 succeeded at 230 (offset 1 line).
Hunk #2 succeeded at 243 (offset 1 line).
patching file drivers/media/platform/qcom/camss/camss-csiphy.h
Patch patches/0001-media-camss-csiphy-Move-to-hardcode-CSI-Clock-Lane-n.patch does not apply (enforce with -f)


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-01-19 10:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-19 10:28 [GIT PULL FOR 5.18] V4L2 patches Sakari Ailus
2022-01-19 10:32 ` [GIT PULL FOR 5.18] V4L2 patches (#80103) Jenkins

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.