All of lore.kernel.org
 help / color / mirror / Atom feed
From: linus.walleij@linaro.org (Linus Walleij)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/4] DRM driver for Faraday TVE200
Date: Sun, 13 Aug 2017 17:11:28 +0200	[thread overview]
Message-ID: <20170813151132.24736-1-linus.walleij@linaro.org> (raw)

I finally got my act together to clean up my patches and post
this DRM driver.

It's an old hardware, but using all the new fancy CMA helpers
and integrating really nicely I think. Most important: it
JustWorks(TM) and i have a little penguin and interactive
console on my D-Link DIR-685 router (!). Well that is not
a serious usecase, but it kind of proves that it does all it
should. Vblank interrupts work like a charm and all.

It would not have been possible if I hadn't had Eric Anholts
excellent PL11x driver to use as role model.

Daniel, Eric: please help me out with the next steps in your
maintenance model, so I learn how to do this upstream work
right with the DRM community.

I posted the display driver separately since it is, well
a separate business. I guess Thierry collects these drivers,
else tell me.

Linus Walleij (4):
  drm/tve200: Add DT bindings
  drm/tve200: Add new driver for TVE200
  ARM: dts: Add TVE200 to the Gemini SoC DTSI
  ARM: dts: Add TVE/TVC and ILI9322 panel to DIR-685

 .../devicetree/bindings/display/faraday,tve200.txt |  41 +++
 Documentation/gpu/index.rst                        |   1 +
 Documentation/gpu/tve200.rst                       |   6 +
 MAINTAINERS                                        |   6 +
 arch/arm/boot/dts/gemini-dlink-dir-685.dts         |  77 ++++-
 arch/arm/boot/dts/gemini.dtsi                      |  19 ++
 drivers/gpu/drm/Kconfig                            |   2 +
 drivers/gpu/drm/Makefile                           |   1 +
 drivers/gpu/drm/tve200/Kconfig                     |  15 +
 drivers/gpu/drm/tve200/Makefile                    |   5 +
 drivers/gpu/drm/tve200/tve200_connector.c          | 126 ++++++++
 drivers/gpu/drm/tve200/tve200_display.c            | 346 +++++++++++++++++++++
 drivers/gpu/drm/tve200/tve200_drm.h                | 129 ++++++++
 drivers/gpu/drm/tve200/tve200_drv.c                | 277 +++++++++++++++++
 14 files changed, 1050 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/devicetree/bindings/display/faraday,tve200.txt
 create mode 100644 Documentation/gpu/tve200.rst
 create mode 100644 drivers/gpu/drm/tve200/Kconfig
 create mode 100644 drivers/gpu/drm/tve200/Makefile
 create mode 100644 drivers/gpu/drm/tve200/tve200_connector.c
 create mode 100644 drivers/gpu/drm/tve200/tve200_display.c
 create mode 100644 drivers/gpu/drm/tve200/tve200_drm.h
 create mode 100644 drivers/gpu/drm/tve200/tve200_drv.c

-- 
2.13.4

WARNING: multiple messages have this Message-ID (diff)
From: Linus Walleij <linus.walleij@linaro.org>
To: dri-devel@lists.freedesktop.org, Eric Anholt <eric@anholt.net>,
	Daniel Vetter <daniel.vetter@intel.com>,
	Jani Nikula <jani.nikula@linux.intel.com>,
	Sean Paul <seanpaul@chromium.org>
Cc: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/4] DRM driver for Faraday TVE200
Date: Sun, 13 Aug 2017 17:11:28 +0200	[thread overview]
Message-ID: <20170813151132.24736-1-linus.walleij@linaro.org> (raw)

I finally got my act together to clean up my patches and post
this DRM driver.

It's an old hardware, but using all the new fancy CMA helpers
and integrating really nicely I think. Most important: it
JustWorks(TM) and i have a little penguin and interactive
console on my D-Link DIR-685 router (!). Well that is not
a serious usecase, but it kind of proves that it does all it
should. Vblank interrupts work like a charm and all.

It would not have been possible if I hadn't had Eric Anholts
excellent PL11x driver to use as role model.

Daniel, Eric: please help me out with the next steps in your
maintenance model, so I learn how to do this upstream work
right with the DRM community.

I posted the display driver separately since it is, well
a separate business. I guess Thierry collects these drivers,
else tell me.

Linus Walleij (4):
  drm/tve200: Add DT bindings
  drm/tve200: Add new driver for TVE200
  ARM: dts: Add TVE200 to the Gemini SoC DTSI
  ARM: dts: Add TVE/TVC and ILI9322 panel to DIR-685

 .../devicetree/bindings/display/faraday,tve200.txt |  41 +++
 Documentation/gpu/index.rst                        |   1 +
 Documentation/gpu/tve200.rst                       |   6 +
 MAINTAINERS                                        |   6 +
 arch/arm/boot/dts/gemini-dlink-dir-685.dts         |  77 ++++-
 arch/arm/boot/dts/gemini.dtsi                      |  19 ++
 drivers/gpu/drm/Kconfig                            |   2 +
 drivers/gpu/drm/Makefile                           |   1 +
 drivers/gpu/drm/tve200/Kconfig                     |  15 +
 drivers/gpu/drm/tve200/Makefile                    |   5 +
 drivers/gpu/drm/tve200/tve200_connector.c          | 126 ++++++++
 drivers/gpu/drm/tve200/tve200_display.c            | 346 +++++++++++++++++++++
 drivers/gpu/drm/tve200/tve200_drm.h                | 129 ++++++++
 drivers/gpu/drm/tve200/tve200_drv.c                | 277 +++++++++++++++++
 14 files changed, 1050 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/devicetree/bindings/display/faraday,tve200.txt
 create mode 100644 Documentation/gpu/tve200.rst
 create mode 100644 drivers/gpu/drm/tve200/Kconfig
 create mode 100644 drivers/gpu/drm/tve200/Makefile
 create mode 100644 drivers/gpu/drm/tve200/tve200_connector.c
 create mode 100644 drivers/gpu/drm/tve200/tve200_display.c
 create mode 100644 drivers/gpu/drm/tve200/tve200_drm.h
 create mode 100644 drivers/gpu/drm/tve200/tve200_drv.c

-- 
2.13.4

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

             reply	other threads:[~2017-08-13 15:11 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-13 15:11 Linus Walleij [this message]
2017-08-13 15:11 ` [PATCH 0/4] DRM driver for Faraday TVE200 Linus Walleij
     [not found] ` <20170813151132.24736-1-linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2017-08-13 15:11   ` [PATCH 1/4] drm/tve200: Add DT bindings Linus Walleij
2017-08-13 15:11     ` Linus Walleij
2017-08-17 20:46     ` Rob Herring
2017-08-17 20:46       ` Rob Herring
2017-08-13 15:11 ` [PATCH 2/4] drm/tve200: Add new driver for TVE200 Linus Walleij
2017-08-13 15:11   ` Linus Walleij
2017-08-14 14:20   ` Daniel Vetter
2017-08-14 14:20     ` Daniel Vetter
2017-08-15 20:02     ` Linus Walleij
2017-08-15 20:02       ` Linus Walleij
2017-08-15 20:08       ` Daniel Vetter
2017-08-15 20:08         ` Daniel Vetter
2017-08-14 18:56   ` Eric Anholt
2017-08-14 18:56     ` Eric Anholt
2017-08-20 10:04     ` Linus Walleij
2017-08-20 10:04       ` Linus Walleij
2017-08-15 21:49   ` Noralf Trønnes
2017-08-15 21:49     ` Noralf Trønnes
2017-08-13 15:11 ` [PATCH 3/4] ARM: dts: Add TVE200 to the Gemini SoC DTSI Linus Walleij
2017-08-13 15:11   ` Linus Walleij
2017-08-13 15:11 ` [PATCH 4/4] ARM: dts: Add TVE/TVC and ILI9322 panel to DIR-685 Linus Walleij
2017-08-13 15:11   ` Linus Walleij

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=20170813151132.24736-1-linus.walleij@linaro.org \
    --to=linus.walleij@linaro.org \
    --cc=linux-arm-kernel@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.