All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexey.Brodkin@synopsys.com (Alexey Brodkin)
To: linux-snps-arc@lists.infradead.org
Subject: [GIT PULL] drm: Add support of ARC PGU display controller
Date: Tue, 26 Apr 2016 15:28:10 +0000	[thread overview]
Message-ID: <1461684480.2955.31.camel@synopsys.com> (raw)
In-Reply-To: <1461336820.3205.10.camel@synopsys.com>

Hi Dave,

This is DRM driver for ARC PGU - simple bitstreamer used on
Synopsys ARC SDP boards (both AXS101 and AXS103).

Those sources are from v6 series floated to mailing list here
https://lists.freedesktop.org/archives/dri-devel/2016-April/105156.html

and based on top of today's drm-next branch.

Best regards,
Alexey

The following changes since commit 027b3f8ba9277410c3191d72d1ed2c6146d8a668:

? drm/modes: stop handling framebuffer special (2016-04-22 10:47:16 +1000)

are available in the git repository at:

? https://github.com/foss-for-synopsys-dwc-arc-processors/linux.git topic-arcpgu-v6

for you to fetch changes up to b8c1eca1e089e8f4247b19b73955c875bf7b18ae:

? arc: axs10x - add support of ARC PGU (2016-04-26 18:26:54 +0300)

----------------------------------------------------------------
Alexey Brodkin (3):
??????drm: Add DT bindings documentation for ARC PGU display controller
??????MAINTAINERS: Add maintainer for ARC PGU display controller
??????arc: axs10x - add support of ARC PGU

Carlos Palminha (1):
??????drm: Add support of ARC PGU display controller

?Documentation/devicetree/bindings/display/snps,arcpgu.txt |??35 +++++++
?MAINTAINERS???????????????????????????????????????????????|???6 ++
?arch/arc/boot/dts/axs10x_mb.dtsi??????????????????????????|??61 ++++++++++++
?drivers/gpu/drm/Kconfig???????????????????????????????????|???2 +
?drivers/gpu/drm/Makefile??????????????????????????????????|???1 +
?drivers/gpu/drm/arc/Kconfig???????????????????????????????|??10 ++
?drivers/gpu/drm/arc/Makefile??????????????????????????????|???2 +
?drivers/gpu/drm/arc/arcpgu.h??????????????????????????????|??50 ++++++++++
?drivers/gpu/drm/arc/arcpgu_crtc.c?????????????????????????| 257 +++++++++++++++++++++++++++++++++++++++++++++++
?drivers/gpu/drm/arc/arcpgu_drv.c??????????????????????????| 282 ++++++++++++++++++++++++++++++++++++++++++++++++++++
?drivers/gpu/drm/arc/arcpgu_hdmi.c?????????????????????????| 201 +++++++++++++++++++++++++++++++++++++
?drivers/gpu/drm/arc/arcpgu_regs.h?????????????????????????|??40 ++++++++
?12 files changed, 947 insertions(+)
?create mode 100644 Documentation/devicetree/bindings/display/snps,arcpgu.txt
?create mode 100644 drivers/gpu/drm/arc/Kconfig
?create mode 100644 drivers/gpu/drm/arc/Makefile
?create mode 100644 drivers/gpu/drm/arc/arcpgu.h
?create mode 100644 drivers/gpu/drm/arc/arcpgu_crtc.c
?create mode 100644 drivers/gpu/drm/arc/arcpgu_drv.c
?create mode 100644 drivers/gpu/drm/arc/arcpgu_hdmi.c
?create mode 100644 drivers/gpu/drm/arc/arcpgu_regs.h

WARNING: multiple messages have this Message-ID (diff)
From: Alexey Brodkin <Alexey.Brodkin@synopsys.com>
To: "airlied@redhat.com" <airlied@redhat.com>
Cc: "dri-devel@lists.freedesktop.org"
	<dri-devel@lists.freedesktop.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"daniel@ffwll.ch" <daniel@ffwll.ch>,
	"linux-snps-arc@lists.infradead.org"
	<linux-snps-arc@lists.infradead.org>,
	"airlied@linux.ie" <airlied@linux.ie>
Subject: [GIT PULL] drm: Add support of ARC PGU display controller
Date: Tue, 26 Apr 2016 15:28:10 +0000	[thread overview]
Message-ID: <1461684480.2955.31.camel@synopsys.com> (raw)
In-Reply-To: <1461336820.3205.10.camel@synopsys.com>

Hi Dave,

This is DRM driver for ARC PGU - simple bitstreamer used on
Synopsys ARC SDP boards (both AXS101 and AXS103).

Those sources are from v6 series floated to mailing list here
https://lists.freedesktop.org/archives/dri-devel/2016-April/105156.html

and based on top of today's drm-next branch.

Best regards,
Alexey

The following changes since commit 027b3f8ba9277410c3191d72d1ed2c6146d8a668:

  drm/modes: stop handling framebuffer special (2016-04-22 10:47:16 +1000)

are available in the git repository at:

  https://github.com/foss-for-synopsys-dwc-arc-processors/linux.git topic-arcpgu-v6

for you to fetch changes up to b8c1eca1e089e8f4247b19b73955c875bf7b18ae:

  arc: axs10x - add support of ARC PGU (2016-04-26 18:26:54 +0300)

----------------------------------------------------------------
Alexey Brodkin (3):
      drm: Add DT bindings documentation for ARC PGU display controller
      MAINTAINERS: Add maintainer for ARC PGU display controller
      arc: axs10x - add support of ARC PGU

Carlos Palminha (1):
      drm: Add support of ARC PGU display controller

 Documentation/devicetree/bindings/display/snps,arcpgu.txt |  35 +++++++
 MAINTAINERS                                               |   6 ++
 arch/arc/boot/dts/axs10x_mb.dtsi                          |  61 ++++++++++++
 drivers/gpu/drm/Kconfig                                   |   2 +
 drivers/gpu/drm/Makefile                                  |   1 +
 drivers/gpu/drm/arc/Kconfig                               |  10 ++
 drivers/gpu/drm/arc/Makefile                              |   2 +
 drivers/gpu/drm/arc/arcpgu.h                              |  50 ++++++++++
 drivers/gpu/drm/arc/arcpgu_crtc.c                         | 257 +++++++++++++++++++++++++++++++++++++++++++++++
 drivers/gpu/drm/arc/arcpgu_drv.c                          | 282 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/gpu/drm/arc/arcpgu_hdmi.c                         | 201 +++++++++++++++++++++++++++++++++++++
 drivers/gpu/drm/arc/arcpgu_regs.h                         |  40 ++++++++
 12 files changed, 947 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/snps,arcpgu.txt
 create mode 100644 drivers/gpu/drm/arc/Kconfig
 create mode 100644 drivers/gpu/drm/arc/Makefile
 create mode 100644 drivers/gpu/drm/arc/arcpgu.h
 create mode 100644 drivers/gpu/drm/arc/arcpgu_crtc.c
 create mode 100644 drivers/gpu/drm/arc/arcpgu_drv.c
 create mode 100644 drivers/gpu/drm/arc/arcpgu_hdmi.c
 create mode 100644 drivers/gpu/drm/arc/arcpgu_regs.h

  reply	other threads:[~2016-04-26 15:28 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-19 13:19 [PATCH 0/4 v6] drm: Add support of ARC PGU display controller Alexey Brodkin
2016-04-19 13:19 ` Alexey Brodkin
2016-04-19 13:19 ` [PATCH 1/4 " Alexey Brodkin
2016-04-19 13:19   ` Alexey Brodkin
2016-04-19 13:19   ` Alexey Brodkin
2016-04-19 13:19 ` [PATCH 2/4 v6] drm: Add DT bindings documentation for " Alexey Brodkin
2016-04-19 13:19   ` Alexey Brodkin
2016-04-19 13:19 ` [PATCH 3/4 v6] MAINTAINERS: Add maintainer " Alexey Brodkin
2016-04-19 13:19   ` Alexey Brodkin
2016-04-19 13:19   ` Alexey Brodkin
2016-04-19 13:19 ` [PATCH 4/4 v6] arc: axs10x - add support of ARC PGU Alexey Brodkin
2016-04-19 13:19   ` Alexey Brodkin
2016-04-22 14:53 ` [PATCH 0/4 v6] drm: Add support of ARC PGU display controller Alexey Brodkin
2016-04-22 14:53   ` Alexey Brodkin
2016-04-26 15:28   ` Alexey Brodkin [this message]
2016-04-26 15:28     ` [GIT PULL] " Alexey Brodkin
2016-04-26 23:40     ` Dave Airlie
2016-04-26 23:40       ` Dave Airlie
2016-04-26 23:40       ` Dave Airlie
2016-04-29 11:36     ` [GIT PULL] drm/arcpgu: use dedicated memory area for frame buffer Alexey Brodkin
2016-04-29 11:36       ` Alexey Brodkin
2016-05-10  9:51       ` Alexey Brodkin
2016-05-10  9:51         ` Alexey Brodkin
2016-05-16  8:22         ` Alexey Brodkin
2016-05-16  8:22           ` Alexey Brodkin
2016-05-23 10:31           ` Alexey Brodkin
2016-05-23 10:31             ` Alexey Brodkin
2016-05-23 19:23             ` David Airlie
2016-05-23 19:23               ` David Airlie
2016-05-23 19:23               ` David Airlie
2016-05-23 20:02               ` Alexey Brodkin
2016-05-23 20:02                 ` Alexey Brodkin

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=1461684480.2955.31.camel@synopsys.com \
    --to=alexey.brodkin@synopsys.com \
    --cc=linux-snps-arc@lists.infradead.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.