All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH V2 0/2] Add Xilinx DSI TX driver
@ 2020-08-11  0:46 ` Venkateshwar Rao Gannavarapu
  0 siblings, 0 replies; 18+ messages in thread
From: Venkateshwar Rao Gannavarapu @ 2020-08-11  0:46 UTC (permalink / raw)
  To: hyun.kwon, laurent.pinchart, dri-devel
  Cc: airlied, daniel, linux-kernel, sandipk, vgannava,
	Venkateshwar Rao Gannavarapu

Xilinx DSI-TX subsytem consists of DSI controller core, AXI crossbar
and D-PHY as sub blocks. DSI TX subsystem driver supports multiple lanes
upto 4, RGB color formats, video mode and command modes.

DSI-TX driver is implemented as an encoder driver, as it going to be
the final node in display pipeline. Xilinx doesn't support any converter
logic to make this as bridge driver. Xilinx doesn't have such
use cases where end node can't be an encoder like DSI-TX. And Xilinx
encoder drivers represents a subsystem where individual blocks can't be
used with external components / encoders.

Venkateshwar Rao Gannavarapu (2):
  dt-bindings: display: xlnx: dsi: This add a DT binding for Xilinx DSI
    TX     subsystem.
  drm: xlnx: dsi: driver for Xilinx DSI TX subsystem

 .../devicetree/bindings/display/xlnx/xlnx,dsi.yaml | 147 +++++
 drivers/gpu/drm/xlnx/Kconfig                       |  11 +
 drivers/gpu/drm/xlnx/Makefile                      |   2 +
 drivers/gpu/drm/xlnx/xlnx_dsi.c                    | 701 +++++++++++++++++++++
 4 files changed, 861 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/xlnx/xlnx,dsi.yaml
 create mode 100644 drivers/gpu/drm/xlnx/xlnx_dsi.c

--
1.8.3.1

This email and any attachments are intended for the sole use of the named recipient(s) and contain(s) confidential information that may be proprietary, privileged or copyrighted under applicable law. If you are not the intended recipient, do not read, copy, or forward this email message or any attachments. Delete this email message and any attachments immediately.

^ permalink raw reply	[flat|nested] 18+ messages in thread
* [RFC PATCH V2 0/2] Add Xilinx DSI TX driver
@ 2020-08-11  0:52 ` Venkateshwar Rao Gannavarapu
  0 siblings, 0 replies; 18+ messages in thread
From: Venkateshwar Rao Gannavarapu @ 2020-08-11  0:52 UTC (permalink / raw)
  To: hyun.kwon, laurent.pinchart, dri-devel
  Cc: airlied, daniel, linux-kernel, sandipk, vgannava,
	Venkateshwar Rao Gannavarapu

Xilinx DSI-TX subsytem consists of DSI controller core, AXI crossbar
and D-PHY as sub blocks. DSI TX subsystem driver supports multiple lanes
upto 4, RGB color formats, video mode and command modes.

DSI-TX driver is implemented as an encoder driver, as it going to be
the final node in display pipeline. Xilinx doesn't support any converter
logic to make this as bridge driver. Xilinx doesn't have such
use cases where end node can't be an encoder like DSI-TX. And Xilinx
encoder drivers represents a subsystem where individual blocks can't be
used with external components / encoders.

changes in v2:
 - converted bindings to .yaml format
 - updated compatible string with version number
 - addressed Laurent and Hyun's review comments
 - removed wrappers for enable/disable API's
 - few API's are inlined
 - fixes indent, extra spaces and alignments.
 - added generic long write command mode support

Venkateshwar Rao Gannavarapu (2):
  dt-bindings: display: xlnx: dsi: This add a DT binding for Xilinx DSI
    TX     subsystem.
  drm: xlnx: dsi: driver for Xilinx DSI TX subsystem

 .../devicetree/bindings/display/xlnx/xlnx,dsi.yaml | 147 +++++
 drivers/gpu/drm/xlnx/Kconfig                       |  11 +
 drivers/gpu/drm/xlnx/Makefile                      |   2 +
 drivers/gpu/drm/xlnx/xlnx_dsi.c                    | 701 +++++++++++++++++++++
 4 files changed, 861 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/xlnx/xlnx,dsi.yaml
 create mode 100644 drivers/gpu/drm/xlnx/xlnx_dsi.c

--
1.8.3.1

This email and any attachments are intended for the sole use of the named recipient(s) and contain(s) confidential information that may be proprietary, privileged or copyrighted under applicable law. If you are not the intended recipient, do not read, copy, or forward this email message or any attachments. Delete this email message and any attachments immediately.

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

end of thread, other threads:[~2020-08-13 19:05 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-11  0:46 [RFC PATCH V2 0/2] Add Xilinx DSI TX driver Venkateshwar Rao Gannavarapu
2020-08-11  0:46 ` Venkateshwar Rao Gannavarapu
2020-08-11  0:46 ` [RFC PATCH V2 1/2] dt-bindings: display: xlnx: dsi: This add a DT binding for Xilinx DSI TX subsystem Venkateshwar Rao Gannavarapu
2020-08-11  0:46   ` Venkateshwar Rao Gannavarapu
2020-08-11 23:12   ` Laurent Pinchart
2020-08-11 23:12     ` Laurent Pinchart
2020-08-11  0:46 ` [RFC PATCH V2 2/2] drm: xlnx: dsi: driver " Venkateshwar Rao Gannavarapu
2020-08-11  0:46   ` Venkateshwar Rao Gannavarapu
2020-08-13 19:05   ` Sam Ravnborg
2020-08-13 19:05     ` Sam Ravnborg
2020-08-11 20:00 ` [RFC PATCH V2 0/2] Add Xilinx DSI TX driver Sam Ravnborg
2020-08-11 20:00   ` Sam Ravnborg
2020-08-11 20:37 ` Daniel Vetter
2020-08-11 20:37   ` Daniel Vetter
2020-08-11 20:40 ` Laurent Pinchart
2020-08-11 20:40   ` Laurent Pinchart
2020-08-11  0:52 Venkateshwar Rao Gannavarapu
2020-08-11  0:52 ` Venkateshwar Rao Gannavarapu

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.