All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] Add Toshiba Visconti DNN image processing accelerator driver
@ 2022-04-28 13:11 ` Yuji Ishikawa
  0 siblings, 0 replies; 36+ messages in thread
From: Yuji Ishikawa @ 2022-04-28 13:11 UTC (permalink / raw)
  To: Rob Herring, Nobuhiro Iwamatsu, Sumit Semwal, Christian König
  Cc: linux-kernel, dri-devel, linaro-mm-sig, yuji2.ishikawa,
	linux-arm-kernel, linux-media

This series is the DNN image processing accelerator driver for Toshiba's ARM SoC, Visconti[0].
This provides DT binding documentation, device driver, MAINTAINER files.

The second patch "soc: visconti: Add Toshiba Visconti image processing accelerator common source"
and the fourth patch "MAINTAINERS: ..." are the same as the ones in the preceding post for affine driver.

Best regards,
Yuji

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

Yuji Ishikawa (4):
  dt-bindings: soc: visconti: Add Toshiba Visconti DNN image processing
    accelerator bindings
  soc: visconti: Add Toshiba Visconti image processing accelerator
    common source
  soc: visconti: Add Toshiba Visconti DNN image processing accelerator
  MAINTAINERS: Add entries for Toshiba Visconti DNN image processing
    accelerator

 .../soc/visconti/toshiba,visconti-dnn.yaml    |  54 ++
 MAINTAINERS                                   |   2 +
 drivers/soc/Kconfig                           |   1 +
 drivers/soc/Makefile                          |   1 +
 drivers/soc/visconti/Kconfig                  |   7 +
 drivers/soc/visconti/Makefile                 |   8 +
 drivers/soc/visconti/dnn/Makefile             |   6 +
 drivers/soc/visconti/dnn/dnn.c                | 533 ++++++++++++++++++
 drivers/soc/visconti/dnn/hwd_dnn.c            | 183 ++++++
 drivers/soc/visconti/dnn/hwd_dnn.h            |  68 +++
 drivers/soc/visconti/dnn/hwd_dnn_reg.h        | 228 ++++++++
 drivers/soc/visconti/ipa_common.c             |  55 ++
 drivers/soc/visconti/ipa_common.h             |  18 +
 drivers/soc/visconti/uapi/dnn.h               |  77 +++
 drivers/soc/visconti/uapi/ipa.h               |  88 +++
 15 files changed, 1329 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/soc/visconti/toshiba,visconti-dnn.yaml
 create mode 100644 drivers/soc/visconti/Kconfig
 create mode 100644 drivers/soc/visconti/Makefile
 create mode 100644 drivers/soc/visconti/dnn/Makefile
 create mode 100644 drivers/soc/visconti/dnn/dnn.c
 create mode 100644 drivers/soc/visconti/dnn/hwd_dnn.c
 create mode 100644 drivers/soc/visconti/dnn/hwd_dnn.h
 create mode 100644 drivers/soc/visconti/dnn/hwd_dnn_reg.h
 create mode 100644 drivers/soc/visconti/ipa_common.c
 create mode 100644 drivers/soc/visconti/ipa_common.h
 create mode 100644 drivers/soc/visconti/uapi/dnn.h
 create mode 100644 drivers/soc/visconti/uapi/ipa.h

-- 
2.17.1



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

end of thread, other threads:[~2022-07-12  5:08 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-28 13:11 [PATCH 0/4] Add Toshiba Visconti DNN image processing accelerator driver Yuji Ishikawa
2022-04-28 13:11 ` Yuji Ishikawa
2022-04-28 13:11 ` Yuji Ishikawa
2022-04-28 13:11 ` [PATCH 1/4] dt-bindings: soc: visconti: Add Toshiba Visconti DNN image processing accelerator bindings Yuji Ishikawa
2022-04-28 13:11   ` Yuji Ishikawa
2022-04-28 13:11   ` Yuji Ishikawa
2022-04-28 13:11 ` [PATCH 2/4] soc: visconti: Add Toshiba Visconti image processing accelerator common source Yuji Ishikawa
2022-04-28 13:11   ` Yuji Ishikawa
2022-04-28 13:11   ` Yuji Ishikawa
2022-04-28 13:11 ` [PATCH 3/4] soc: visconti: Add Toshiba Visconti DNN image processing accelerator Yuji Ishikawa
2022-04-28 13:11   ` Yuji Ishikawa
2022-04-28 13:11   ` Yuji Ishikawa
2022-04-28 13:11 ` [PATCH 4/4] MAINTAINERS: Add entries for " Yuji Ishikawa
2022-04-28 13:11   ` Yuji Ishikawa
2022-04-28 13:11   ` Yuji Ishikawa
2022-05-12 11:14 ` [PATCH 0/4] Add Toshiba Visconti DNN image processing accelerator driver Hans Verkuil
2022-05-12 11:14   ` Hans Verkuil
2022-05-12 11:14   ` Hans Verkuil
2022-05-20  9:48   ` yuji2.ishikawa
2022-05-20  9:48     ` yuji2.ishikawa
2022-05-20  9:48     ` yuji2.ishikawa
2022-05-20 10:02     ` Hans Verkuil
2022-05-20 10:02       ` Hans Verkuil
2022-05-20 10:02       ` Hans Verkuil
2022-06-01  1:40       ` yuji2.ishikawa
2022-06-01  1:40         ` yuji2.ishikawa
2022-06-01  1:40         ` yuji2.ishikawa
2022-06-29 13:44         ` Hans Verkuil
2022-06-29 13:44           ` Hans Verkuil
2022-06-29 13:44           ` Hans Verkuil
2022-07-05  1:17           ` yuji2.ishikawa
2022-07-05  1:17             ` yuji2.ishikawa
2022-07-05  1:17             ` yuji2.ishikawa
2022-07-12  5:01             ` yuji2.ishikawa
2022-07-12  5:01               ` yuji2.ishikawa
2022-07-12  5:01               ` yuji2.ishikawa

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.