All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
From: Neil Armstrong <narmstrong@baylibre.com>
To: a.hajda@samsung.com, Laurent.pinchart@ideasonboard.com,
	paul@crapouillou.net, robert.foss@linaro.org
Cc: jonas@kwiboo.se, jernej.skrabec@siol.net,
	dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
	Neil Armstrong <narmstrong@baylibre.com>
Subject: [PATCH v3 0/3] drm/bridge: Add it66121 driver
Date: Mon, 12 Apr 2021 17:46:45 +0200	[thread overview]
Message-ID: <20210412154648.3719153-1-narmstrong@baylibre.com> (raw)

The IT66121 is a high-performance and low-power single channel HDMI
transmitter, fully compliant with HDMI 1.3a, HDCP 1.2 and backward
compatible to DVI 1.0 specifications.
It supports pixel rates from 25MHz to 165MHz.

This series contains document bindings, add vendor prefix, Kconfig to
enable or not.
For now, the driver handles only RGB without color conversion.
Audio, CEC and HDCP are not implemented yet.

Changes since v2 at [1]:
- fixed DT bindings by:
  - adding bus-width property to input port
  - correctly defining ports
  - other minor fixes
- fixed bridge driver by:
  - general cleanup following Andy's comments
  - implemented support for NO_CONNECTOR
  - makes basic usage of the bus width property
  - add support for bus format negociation
  - other minor fixes
- fixed order of MAINTAINERS entries

[1] https://lore.kernel.org/r/20200311125135.30832-1-ple@baylibre.com

Phong LE (3):
  dt-bindings: display: bridge: add it66121 bindings
  drm: bridge: add it66121 driver
  MAINTAINERS: add it66121 HDMI bridge driver entry

 .../bindings/display/bridge/ite,it66121.yaml  |  123 ++
 MAINTAINERS                                   |    8 +
 drivers/gpu/drm/bridge/Kconfig                |    8 +
 drivers/gpu/drm/bridge/Makefile               |    1 +
 drivers/gpu/drm/bridge/ite-it66121.c          | 1081 +++++++++++++++++
 5 files changed, 1221 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
 create mode 100644 drivers/gpu/drm/bridge/ite-it66121.c

-- 
2.25.1


WARNING: multiple messages have this Message-ID (diff)
From: Neil Armstrong <narmstrong@baylibre.com>
To: a.hajda@samsung.com, Laurent.pinchart@ideasonboard.com,
	paul@crapouillou.net, robert.foss@linaro.org
Cc: jernej.skrabec@siol.net, Neil Armstrong <narmstrong@baylibre.com>,
	linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
	jonas@kwiboo.se
Subject: [PATCH v3 0/3] drm/bridge: Add it66121 driver
Date: Mon, 12 Apr 2021 17:46:45 +0200	[thread overview]
Message-ID: <20210412154648.3719153-1-narmstrong@baylibre.com> (raw)

The IT66121 is a high-performance and low-power single channel HDMI
transmitter, fully compliant with HDMI 1.3a, HDCP 1.2 and backward
compatible to DVI 1.0 specifications.
It supports pixel rates from 25MHz to 165MHz.

This series contains document bindings, add vendor prefix, Kconfig to
enable or not.
For now, the driver handles only RGB without color conversion.
Audio, CEC and HDCP are not implemented yet.

Changes since v2 at [1]:
- fixed DT bindings by:
  - adding bus-width property to input port
  - correctly defining ports
  - other minor fixes
- fixed bridge driver by:
  - general cleanup following Andy's comments
  - implemented support for NO_CONNECTOR
  - makes basic usage of the bus width property
  - add support for bus format negociation
  - other minor fixes
- fixed order of MAINTAINERS entries

[1] https://lore.kernel.org/r/20200311125135.30832-1-ple@baylibre.com

Phong LE (3):
  dt-bindings: display: bridge: add it66121 bindings
  drm: bridge: add it66121 driver
  MAINTAINERS: add it66121 HDMI bridge driver entry

 .../bindings/display/bridge/ite,it66121.yaml  |  123 ++
 MAINTAINERS                                   |    8 +
 drivers/gpu/drm/bridge/Kconfig                |    8 +
 drivers/gpu/drm/bridge/Makefile               |    1 +
 drivers/gpu/drm/bridge/ite-it66121.c          | 1081 +++++++++++++++++
 5 files changed, 1221 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
 create mode 100644 drivers/gpu/drm/bridge/ite-it66121.c

-- 
2.25.1

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

             reply	other threads:[~2021-04-12 15:46 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-12 15:46 Neil Armstrong [this message]
2021-04-12 15:46 ` [PATCH v3 0/3] drm/bridge: Add it66121 driver Neil Armstrong
2021-04-12 15:46 ` [PATCH v3 1/3] dt-bindings: display: bridge: add it66121 bindings Neil Armstrong
2021-04-12 15:46   ` Neil Armstrong
2021-04-13 15:11   ` Rob Herring
2021-04-13 15:11     ` Rob Herring
2021-04-13 16:03   ` Laurent Pinchart
2021-04-13 16:03     ` Laurent Pinchart
2021-04-14  8:14     ` Neil Armstrong
2021-04-14  8:14       ` Neil Armstrong
2021-04-13 18:09   ` Paul Cercueil
2021-04-13 18:09     ` Paul Cercueil
2021-04-13 20:17     ` Laurent Pinchart
2021-04-13 20:17       ` Laurent Pinchart
2021-04-12 15:46 ` [PATCH v3 2/3] drm: bridge: add it66121 driver Neil Armstrong
2021-04-12 15:46   ` Neil Armstrong
2021-04-13  3:02   ` kernel test robot
2021-04-13 20:21   ` Robert Foss
2021-04-13 20:21     ` Robert Foss
2021-04-14  6:13     ` Neil Armstrong
2021-04-14  6:13       ` Neil Armstrong
2021-04-14  8:06       ` Robert Foss
2021-04-14  8:06         ` Robert Foss
2021-04-14  8:08         ` Neil Armstrong
2021-04-14  8:08           ` Neil Armstrong
2021-04-14  8:16           ` Laurent Pinchart
2021-04-14  8:16             ` Laurent Pinchart
2021-04-14 15:37             ` Neil Armstrong
2021-04-14 15:37               ` Neil Armstrong
2021-04-13 20:56   ` Paul Cercueil
2021-04-13 20:56     ` Paul Cercueil
2021-04-14  6:17     ` Neil Armstrong
2021-04-14  6:17       ` Neil Armstrong
2021-04-14  8:15       ` Paul Cercueil
2021-04-14  8:15         ` Paul Cercueil
2021-04-14 17:35       ` Paul Cercueil
2021-04-14 17:35         ` Paul Cercueil
2021-04-15  8:54         ` Neil Armstrong
2021-04-15  8:54           ` Neil Armstrong
2021-04-12 15:46 ` [PATCH v3 3/3] MAINTAINERS: add it66121 HDMI bridge driver entry Neil Armstrong
2021-04-12 15:46   ` Neil Armstrong
2021-04-12 15:47   ` Neil Armstrong
2021-04-12 15:47     ` Neil Armstrong
2021-04-13 17:53     ` Robert Foss
2021-04-13 17:53       ` Robert Foss

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=20210412154648.3719153-1-narmstrong@baylibre.com \
    --to=narmstrong@baylibre.com \
    --cc=Laurent.pinchart@ideasonboard.com \
    --cc=a.hajda@samsung.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=jernej.skrabec@siol.net \
    --cc=jonas@kwiboo.se \
    --cc=linux-kernel@vger.kernel.org \
    --cc=paul@crapouillou.net \
    --cc=robert.foss@linaro.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 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.