All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/5] Visconti: Add Toshiba Visconti Video Input Interface driver
@ 2022-04-14  5:35 ` Yuji Ishikawa
  0 siblings, 0 replies; 25+ messages in thread
From: Yuji Ishikawa @ 2022-04-14  5:35 UTC (permalink / raw)
  To: Mauro Carvalho Chehab, Nobuhiro Iwamatsu
  Cc: linux-media, linux-arm-kernel, linux-kernel, yuji2.ishikawa

This series is the Video Input Interface driver for Toshiba's ARM SoC, Visconti[0].
This provides DT binding documentation, device driver, MAINTAINER fiels.

Best regards,
Yuji

[0]: https://toshiba.semicon-storage.com/ap-en/semiconductor/product/image-recognition-processors-visconti.html


  dt-bindings: media: platform: visconti: Add Toshiba Visconti Video Input Interface bindings
    v1 -> v2:
      - No update

  media: platform: visconti: Add Toshiba Visconti Video Input Interface driver headers
    v1 -> v2:
      - moved driver headers to an individual patch

  media: platform: visconti: Add Toshiba Visconti Video Input Interface driver body
    v1 -> v2:
      - moved driver sources to an individual patch
   
  media: platform: visconti: Add Toshiba VIIF image signal processor driver
    v1 -> v2:
      - moved image signal processor driver to an individual patch

  MAINTAINERS: Add entries for Toshiba Visconti Video Input Interface
    v1 -> v2:
      - No update

Change in V2:
  - moved files into individual patches to decrease patch size

Yuji Ishikawa (5):
  dt-bindings: media: platform: visconti: Add Toshiba Visconti Video
    Input Interface bindings
  media: platform: visconti: Add Toshiba Visconti Video Input Interface
    driver headers
  media: platform: visconti: Add Toshiba Visconti Video Input Interface
    driver body
  media: platform: visconti: Add Toshiba VIIF image signal processor
    driver
  MAINTAINERS: Add entries for Toshiba Visconti Video Input Interface

 .../bindings/media/toshiba,visconti-viif.yaml |  103 +
 MAINTAINERS                                   |    2 +
 drivers/media/platform/Kconfig                |    2 +
 drivers/media/platform/Makefile               |    4 +
 drivers/media/platform/visconti/Kconfig       |    9 +
 drivers/media/platform/visconti/Makefile      |    9 +
 drivers/media/platform/visconti/hwd_viif.c    | 2233 ++++++++++
 drivers/media/platform/visconti/hwd_viif.h    | 1776 ++++++++
 .../media/platform/visconti/hwd_viif_csi2rx.c |  767 ++++
 .../platform/visconti/hwd_viif_internal.h     |  361 ++
 .../media/platform/visconti/hwd_viif_l1isp.c  | 3769 +++++++++++++++++
 .../media/platform/visconti/hwd_viif_reg.h    | 2802 ++++++++++++
 drivers/media/platform/visconti/viif.c        | 2384 +++++++++++
 drivers/media/platform/visconti/viif.h        |  134 +
 include/uapi/linux/visconti_viif.h            | 1683 ++++++++
 15 files changed, 16038 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/media/toshiba,visconti-viif.yaml
 create mode 100644 drivers/media/platform/visconti/Kconfig
 create mode 100644 drivers/media/platform/visconti/Makefile
 create mode 100644 drivers/media/platform/visconti/hwd_viif.c
 create mode 100644 drivers/media/platform/visconti/hwd_viif.h
 create mode 100644 drivers/media/platform/visconti/hwd_viif_csi2rx.c
 create mode 100644 drivers/media/platform/visconti/hwd_viif_internal.h
 create mode 100644 drivers/media/platform/visconti/hwd_viif_l1isp.c
 create mode 100644 drivers/media/platform/visconti/hwd_viif_reg.h
 create mode 100644 drivers/media/platform/visconti/viif.c
 create mode 100644 drivers/media/platform/visconti/viif.h
 create mode 100644 include/uapi/linux/visconti_viif.h

-- 
2.17.1



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

end of thread, other threads:[~2022-06-30 10:42 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-14  5:35 [PATCH v2 0/5] Visconti: Add Toshiba Visconti Video Input Interface driver Yuji Ishikawa
2022-04-14  5:35 ` Yuji Ishikawa
2022-04-14  5:35 ` [PATCH v2 1/5] dt-bindings: media: platform: visconti: Add Toshiba Visconti Video Input Interface bindings Yuji Ishikawa
2022-04-14  5:35   ` Yuji Ishikawa
2022-04-20  7:56   ` Hans Verkuil
2022-04-20  7:56     ` Hans Verkuil
2022-04-20 13:24     ` yuji2.ishikawa
2022-04-20 13:24       ` yuji2.ishikawa
2022-04-14  5:35 ` [PATCH v2 2/5] media: platform: visconti: Add Toshiba Visconti Video Input Interface driver headers Yuji Ishikawa
2022-04-20  8:16   ` Hans Verkuil
2022-04-20  8:16     ` Hans Verkuil
2022-04-14  5:35 ` [PATCH v2 3/5] media: platform: visconti: Add Toshiba Visconti Video Input Interface driver body Yuji Ishikawa
2022-04-14  5:35 ` [PATCH v2 4/5] media: platform: visconti: Add Toshiba VIIF image signal processor driver Yuji Ishikawa
2022-04-14  5:35 ` [PATCH v2 5/5] MAINTAINERS: Add entries for Toshiba Visconti Video Input Interface Yuji Ishikawa
2022-04-14  5:35   ` Yuji Ishikawa
2022-04-20  7:54 ` [PATCH v2 0/5] Visconti: Add Toshiba Visconti Video Input Interface driver Hans Verkuil
2022-04-20  7:54   ` Hans Verkuil
2022-04-20 13:22   ` yuji2.ishikawa
2022-04-20 13:22     ` yuji2.ishikawa
2022-06-27  3:20     ` media: platform: visconti: Toshiba Visconti Video driver with media control framework Yuji Ishikawa
2022-06-27  3:20       ` Yuji Ishikawa
2022-06-29 13:21       ` Hans Verkuil
2022-06-29 13:21         ` Hans Verkuil
2022-06-30 10:15         ` yuji2.ishikawa
2022-06-30 10:39           ` Hans Verkuil

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.