All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH RESEND 0/4] drm: bridge: anx7688 and mux drivers
@ 2019-12-11  6:19 ` Hsin-Yi Wang
  0 siblings, 0 replies; 51+ messages in thread
From: Hsin-Yi Wang @ 2019-12-11  6:19 UTC (permalink / raw)
  To: dri-devel
  Cc: David Airlie, Daniel Vetter, Rob Herring, Mark Rutland,
	Nicolas Boichat, devicetree, linux-kernel, Andrzej Hajda,
	Neil Armstrong, Laurent Pinchart, Jonas Karlman, Jernej Skrabec,
	p.zabel, Enric Balletbo i Serra, Matthias Brugger, Russell King

This is a resend of [1] with a few modification due to drm core function
changes and use regmap abstraction.

The gpio mux driver is required for MT8173 board layout:

                                  /-- anx7688
-- MT8173 HDMI bridge -- GPIO mux
                                  \-- native HDMI

[1] https://lore.kernel.org/lkml/1467013727-11482-1-git-send-email-drinkcat@chromium.org/

Nicolas Boichat (4):
  dt-bindings: drm/bridge: analogix-anx7688: Add ANX7688 transmitter
    binding
  drm: bridge: anx7688: Add anx7688 bridge driver support.
  dt-bindings: drm/bridge: Add GPIO display mux binding
  drm: bridge: Generic GPIO mux driver

 .../bindings/display/bridge/anx7688.yaml      |  60 ++++
 .../bindings/display/bridge/gpio-mux.yaml     |  89 +++++
 drivers/gpu/drm/bridge/Kconfig                |  19 ++
 drivers/gpu/drm/bridge/Makefile               |   2 +
 drivers/gpu/drm/bridge/analogix-anx7688.c     | 202 ++++++++++++
 drivers/gpu/drm/bridge/generic-gpio-mux.c     | 306 ++++++++++++++++++
 6 files changed, 678 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/bridge/anx7688.yaml
 create mode 100644 Documentation/devicetree/bindings/display/bridge/gpio-mux.yaml
 create mode 100644 drivers/gpu/drm/bridge/analogix-anx7688.c
 create mode 100644 drivers/gpu/drm/bridge/generic-gpio-mux.c

-- 
2.24.0.525.g8f36a354ae-goog


^ permalink raw reply	[flat|nested] 51+ messages in thread
* [PATCH RESEND 0/4] drm: bridge: anx7688 and an optional feature
@ 2019-12-09 14:50 Hsin-Yi Wang
  2019-12-09 14:50   ` Hsin-Yi Wang
  0 siblings, 1 reply; 51+ messages in thread
From: Hsin-Yi Wang @ 2019-12-09 14:50 UTC (permalink / raw)
  To: dri-devel
  Cc: David Airlie, Daniel Vetter, Rob Herring, Mark Rutland,
	Nicolas Boichat, devicetree, linux-kernel, Andrzej Hajda,
	Neil Armstrong, Laurent Pinchart, Jonas Karlman, Jernej Skrabec,
	Archit Taneja, p.zabel, Enric Balletbo i Serra, Matthias Brugger,
	Russell King

[Resend to cc more reviewers]

This series is to add anx7688 bridge driver. It is extended from
previous work[1].

The first 2 patches are same as previous version, with some modification
due to drm core function changes and use regmap abstraction.

We add an optional feature bypass-gpios so that driver can decide if it serves
as simple pass-thru by reading GPIO values, which is controlled by
hardware.

[1] https://lore.kernel.org/lkml/1467013727-11482-1-git-send-email-drinkcat@chromium.org/

Hsin-Yi Wang (2):
  dt-bindings: drm/bridge: analogix-anx78xx: support bypass GPIO
  drm: bridge: anx7688: Support bypass GPIO feature

Nicolas Boichat (2):
  dt-bindings: drm/bridge: analogix-anx7688: Add ANX7688 transmitter
    binding
  drm: bridge: anx7688: Add anx7688 bridge driver support.

 .../bindings/display/bridge/anx7688.txt       |  70 +++++
 drivers/gpu/drm/bridge/Kconfig                |   9 +
 drivers/gpu/drm/bridge/Makefile               |   1 +
 drivers/gpu/drm/bridge/analogix-anx7688.c     | 260 ++++++++++++++++++
 4 files changed, 340 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/bridge/anx7688.txt
 create mode 100644 drivers/gpu/drm/bridge/analogix-anx7688.c

-- 
2.24.0.393.g34dc348eaf-goog


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

end of thread, other threads:[~2019-12-23  8:12 UTC | newest]

Thread overview: 51+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-11  6:19 [PATCH RESEND 0/4] drm: bridge: anx7688 and mux drivers Hsin-Yi Wang
2019-12-11  6:19 ` Hsin-Yi Wang
2019-12-11  6:19 ` [PATCH RESEND 1/4] dt-bindings: drm/bridge: analogix-anx7688: Add ANX7688 transmitter binding Hsin-Yi Wang
2019-12-11  6:19   ` Hsin-Yi Wang
2019-12-19 20:45   ` Rob Herring
2019-12-19 20:45     ` Rob Herring
2019-12-20  3:20     ` Hsin-Yi Wang
2019-12-20  3:20       ` Hsin-Yi Wang
2019-12-20  3:22       ` Laurent Pinchart
2019-12-20  3:22         ` Laurent Pinchart
2019-12-20  3:51         ` Hsin-Yi Wang
2019-12-20  3:51           ` Hsin-Yi Wang
2019-12-11  6:19 ` [PATCH RESEND 2/4] drm: bridge: anx7688: Add anx7688 bridge driver support Hsin-Yi Wang
2019-12-11  6:19   ` Hsin-Yi Wang
2019-12-12 11:50   ` Enric Balletbo i Serra
2019-12-12 11:50     ` Enric Balletbo i Serra
2019-12-13 22:38   ` Laurent Pinchart
2019-12-13 22:38     ` Laurent Pinchart
2019-12-16  8:45     ` Hsin-Yi Wang
2019-12-16  8:45       ` Hsin-Yi Wang
2019-12-16 10:19       ` Nicolas Boichat
2019-12-16 10:19         ` Nicolas Boichat
2019-12-16 16:39         ` Laurent Pinchart
2019-12-16 16:39           ` Laurent Pinchart
2019-12-17  0:20           ` Nicolas Boichat
2019-12-17  0:40             ` Nicolas Boichat
2019-12-17  0:40               ` Nicolas Boichat
2019-12-17  0:52               ` Laurent Pinchart
2019-12-17  0:52                 ` Laurent Pinchart
2019-12-17  6:04                 ` Nicolas Boichat
2019-12-17  6:04                   ` Nicolas Boichat
2019-12-11  6:19 ` [PATCH RESEND 3/4] dt-bindings: drm/bridge: Add GPIO display mux binding Hsin-Yi Wang
2019-12-11  6:19   ` Hsin-Yi Wang
2019-12-13 13:53   ` Rob Herring
2019-12-13 13:53     ` Rob Herring
2019-12-16  7:16     ` Hsin-Yi Wang
2019-12-16  7:16       ` Hsin-Yi Wang
2019-12-19 20:48       ` Rob Herring
2019-12-19 20:48         ` Rob Herring
2019-12-20  3:57         ` Hsin-Yi Wang
2019-12-20  3:57           ` Hsin-Yi Wang
2019-12-11  6:19 ` [PATCH RESEND 4/4] drm: bridge: Generic GPIO mux driver Hsin-Yi Wang
2019-12-11  6:19   ` Hsin-Yi Wang
2019-12-12 11:54   ` Enric Balletbo i Serra
2019-12-12 11:54     ` Enric Balletbo i Serra
2019-12-13 22:33   ` Laurent Pinchart
2019-12-13 22:33     ` Laurent Pinchart
2019-12-16  8:44     ` Hsin-Yi Wang
2019-12-16  8:44       ` Hsin-Yi Wang
  -- strict thread matches above, loose matches on Subject: below --
2019-12-09 14:50 [PATCH RESEND 0/4] drm: bridge: anx7688 and an optional feature Hsin-Yi Wang
2019-12-09 14:50 ` [PATCH RESEND 2/4] drm: bridge: anx7688: Add anx7688 bridge driver support Hsin-Yi Wang
2019-12-09 14:50   ` Hsin-Yi Wang

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.