linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 0/2] Pinefeat cef168 lens control board driver
@ 2025-08-30 11:14 Aliaksandr Smirnou
  2025-08-30 11:14 ` [PATCH v4 1/2] dt-bindings: Pinefeat cef168 lens control board Aliaksandr Smirnou
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Aliaksandr Smirnou @ 2025-08-30 11:14 UTC (permalink / raw)
  To: jacopo.mondi, hverkuil, mchehab, robh, krzk+dt, conor+dt
  Cc: devicetree, linux-media, linux-kernel, Aliaksandr Smirnou

This patch series adds support for the Pinefeat adapter, which interfaces
Canon EF and EF-S lenses to non-Canon camera bodies. The cef168 circuit
control board provides an I2C interface for electronic focus and aperture
control. The driver integrates with the V4L2 sub-device API.

For more information about the product, see:
https://github.com/pinefeat/cef168

Changes in v4:
 - removed driver mention from the hardware documentation;
 - added named email in commit signed-off-by;
 - added select CRC8 in Kconfig;
 - removed header file;
 - moved variable declaration at the beginning of the function;
 - removed kerneldoc from structures;
 - removed control id check as the core handles this for us;
 - removed Power Management Runtime (pm_runtime_*) calls as redundant;
 - reserved v4l2 controls in linux header file;

Link to v3: https://lore.kernel.org/all/20250817130549.7766-1-support@pinefeat.co.uk/

Patches:
  dt-bindings: Pinefeat cef168 lens control board
  media: i2c: Pinefeat cef168 lens control board driver

 .../bindings/media/i2c/pinefeat,cef168.yaml   |  47 +++
 .../devicetree/bindings/vendor-prefixes.yaml  |   2 +
 MAINTAINERS                                   |   7 +
 drivers/media/i2c/Kconfig                     |   9 +
 drivers/media/i2c/Makefile                    |   1 +
 drivers/media/i2c/cef168.c                    | 331 ++++++++++++++++++
 include/uapi/linux/v4l2-controls.h            |   6 +
 7 files changed, 403 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/media/i2c/pinefeat,cef168.yaml
 create mode 100644 drivers/media/i2c/cef168.c


base-commit: 2b38afce25c4e1b8f943ff4f0a2b51d6c40f2ed2
-- 
2.34.1


^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCH v4 0/2] Pinefeat cef168 lens control board driver
@ 2025-08-22 17:10 Aliaksandr Smirnou
  2025-08-22 17:10 ` [PATCH v4 1/2] dt-bindings: Pinefeat cef168 lens control board Aliaksandr Smirnou
  0 siblings, 1 reply; 10+ messages in thread
From: Aliaksandr Smirnou @ 2025-08-22 17:10 UTC (permalink / raw)
  To: jacopo.mondi, hverkuil, mchehab, robh, krzk+dt, conor+dt
  Cc: devicetree, linux-media, linux-kernel, Aliaksandr Smirnou

This patch series adds support for the Pinefeat adapter, which interfaces
Canon EF and EF-S lenses to non-Canon camera bodies. The cef168 circuit
control board provides an I2C interface for electronic focus and aperture
control. The driver integrates with the V4L2 sub-device API.

For more information about the product, see:
https://github.com/pinefeat/cef168

Changes in v4:
 - removed driver mention from the hardware documentation;
 - added named email in commit signed-off-by;
 - added select CRC8 in Kconfig;
 - removed header file;
 - moved variable declaration at the beginning of the function;
 - removed kerneldoc from structures;
 - removed control id check as the core handles this for us;
 - removed Power Management Runtime (pm_runtime_*) calls as redundant;
 - reserved v4l2 controls in linux header file;

Link to v3: https://lore.kernel.org/all/20250817130549.7766-1-support@pinefeat.co.uk/

Patches:
  dt-bindings: Pinefeat cef168 lens control board
  media: i2c: Pinefeat cef168 lens control board driver

 .../bindings/media/i2c/pinefeat,cef168.yaml   |  47 +++
 .../devicetree/bindings/vendor-prefixes.yaml  |   2 +
 MAINTAINERS                                   |   7 +
 drivers/media/i2c/Kconfig                     |   9 +
 drivers/media/i2c/Makefile                    |   1 +
 drivers/media/i2c/cef168.c                    | 331 ++++++++++++++++++
 include/uapi/linux/v4l2-controls.h            |   6 +
 7 files changed, 403 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/media/i2c/pinefeat,cef168.yaml
 create mode 100644 drivers/media/i2c/cef168.c


base-commit: 2b38afce25c4e1b8f943ff4f0a2b51d6c40f2ed2
-- 
2.34.1


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

end of thread, other threads:[~2025-08-30 15:58 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-30 11:14 [PATCH v4 0/2] Pinefeat cef168 lens control board driver Aliaksandr Smirnou
2025-08-30 11:14 ` [PATCH v4 1/2] dt-bindings: Pinefeat cef168 lens control board Aliaksandr Smirnou
2025-08-30 13:21   ` Krzysztof Kozlowski
2025-08-30 14:24     ` Kieran Bingham
2025-08-30 15:53       ` Konstantin Ryabitsev
2025-08-30 15:58     ` Aliaksandr Smirnou
2025-08-30 11:15 ` [PATCH v4 2/2] media: i2c: Pinefeat cef168 lens control board driver Aliaksandr Smirnou
2025-08-30 13:20 ` [PATCH v4 0/2] " Krzysztof Kozlowski
  -- strict thread matches above, loose matches on Subject: below --
2025-08-22 17:10 Aliaksandr Smirnou
2025-08-22 17:10 ` [PATCH v4 1/2] dt-bindings: Pinefeat cef168 lens control board Aliaksandr Smirnou
2025-08-24  9:22   ` Krzysztof Kozlowski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).