linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com>
To: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>,
	linux-media@vger.kernel.org
Cc: Masami Hiramatsu <masami.hiramatsu@linaro.org>,
	Jassi Brar <jaswinder.singh@linaro.org>,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org,
	Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com>
Subject: [PATCH 0/8] add UniPhier DVB Frontend system support
Date: Wed, 30 May 2018 18:09:38 +0900	[thread overview]
Message-ID: <20180530090946.1635-1-suzuki.katsuhiro@socionext.com> (raw)

This series adds support for DVB Frontend system named HSC support
for UniPhier LD11/LD20 SoCs. This driver supports MPEG2-TS serial
signal input from external demodulator and DMA MPEG2-TS stream data
onto memory.

UniPhier HSC driver provides many ports of TS input. Since the HSC
has mixed register map for those ports. It hard to split each register
areas.

Katsuhiro Suzuki (8):
  media: uniphier: add DT bindings documentation for UniPhier HSC
  media: uniphier: add headers of HSC MPEG2-TS I/O driver
  media: uniphier: add submodules of HSC MPEG2-TS I/O driver
  media: uniphier: add common module of HSC MPEG2-TS I/O driver
  media: uniphier: add LD11/LD20 HSC support
  media: uniphier: add common module of DVB adapter drivers
  media: uniphier: add LD11 adapter driver for ISDB
  media: uniphier: add LD20 adapter driver for ISDB

 .../bindings/media/uniphier,hsc.txt           |  38 ++
 drivers/media/platform/Kconfig                |   1 +
 drivers/media/platform/Makefile               |   2 +
 drivers/media/platform/uniphier/Kconfig       |  37 ++
 drivers/media/platform/uniphier/Makefile      |  12 +
 drivers/media/platform/uniphier/hsc-core.c    | 506 ++++++++++++++++++
 drivers/media/platform/uniphier/hsc-css.c     | 258 +++++++++
 drivers/media/platform/uniphier/hsc-dma.c     | 302 +++++++++++
 drivers/media/platform/uniphier/hsc-ld11.c    | 219 ++++++++
 drivers/media/platform/uniphier/hsc-reg.h     | 491 +++++++++++++++++
 drivers/media/platform/uniphier/hsc-ts.c      |  99 ++++
 drivers/media/platform/uniphier/hsc-ucode.c   | 436 +++++++++++++++
 drivers/media/platform/uniphier/hsc.h         | 480 +++++++++++++++++
 .../platform/uniphier/ld11-mn884433-helene.c  | 265 +++++++++
 .../platform/uniphier/ld20-mn884434-helene.c  | 274 ++++++++++
 .../platform/uniphier/uniphier-adapter.c      |  54 ++
 .../platform/uniphier/uniphier-adapter.h      |  42 ++
 17 files changed, 3516 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/media/uniphier,hsc.txt
 create mode 100644 drivers/media/platform/uniphier/Kconfig
 create mode 100644 drivers/media/platform/uniphier/Makefile
 create mode 100644 drivers/media/platform/uniphier/hsc-core.c
 create mode 100644 drivers/media/platform/uniphier/hsc-css.c
 create mode 100644 drivers/media/platform/uniphier/hsc-dma.c
 create mode 100644 drivers/media/platform/uniphier/hsc-ld11.c
 create mode 100644 drivers/media/platform/uniphier/hsc-reg.h
 create mode 100644 drivers/media/platform/uniphier/hsc-ts.c
 create mode 100644 drivers/media/platform/uniphier/hsc-ucode.c
 create mode 100644 drivers/media/platform/uniphier/hsc.h
 create mode 100644 drivers/media/platform/uniphier/ld11-mn884433-helene.c
 create mode 100644 drivers/media/platform/uniphier/ld20-mn884434-helene.c
 create mode 100644 drivers/media/platform/uniphier/uniphier-adapter.c
 create mode 100644 drivers/media/platform/uniphier/uniphier-adapter.h

-- 
2.17.0

             reply	other threads:[~2018-05-30  9:09 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-30  9:09 Katsuhiro Suzuki [this message]
2018-05-30  9:09 ` [PATCH 1/8] media: uniphier: add DT bindings documentation for UniPhier HSC Katsuhiro Suzuki
2018-06-02  8:00   ` Masahiro Yamada
2018-06-02  9:50   ` Masahiro Yamada
2018-06-03 23:50     ` Katsuhiro Suzuki
2018-05-30  9:09 ` [PATCH 2/8] media: uniphier: add headers of HSC MPEG2-TS I/O driver Katsuhiro Suzuki
2018-06-02 11:56   ` Masahiro Yamada
2018-05-30  9:09 ` [PATCH 3/8] media: uniphier: add submodules " Katsuhiro Suzuki
2018-06-02 11:59   ` Masahiro Yamada
2018-05-30  9:09 ` [PATCH 4/8] media: uniphier: add common module " Katsuhiro Suzuki
2018-05-30  9:09 ` [PATCH 5/8] media: uniphier: add LD11/LD20 HSC support Katsuhiro Suzuki
2018-05-30  9:09 ` [PATCH 6/8] media: uniphier: add common module of DVB adapter drivers Katsuhiro Suzuki
2018-06-02 11:59   ` Masahiro Yamada
2018-06-04  0:08     ` Katsuhiro Suzuki
2018-06-04  0:52       ` Masahiro Yamada
2018-06-04  1:54         ` Katsuhiro Suzuki
2018-05-30  9:09 ` [PATCH 7/8] media: uniphier: add LD11 adapter driver for ISDB Katsuhiro Suzuki
2018-06-02 12:01   ` Masahiro Yamada
2018-05-30  9:09 ` [PATCH 8/8] media: uniphier: add LD20 " Katsuhiro Suzuki
2018-06-02 12:03   ` Masahiro Yamada

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180530090946.1635-1-suzuki.katsuhiro@socionext.com \
    --to=suzuki.katsuhiro@socionext.com \
    --cc=jaswinder.singh@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=masami.hiramatsu@linaro.org \
    --cc=mchehab+samsung@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).