All of lore.kernel.org
 help / color / mirror / Atom feed
From: Christophe Branchereau <cbranchereau@gmail.com>
To: Paul Cercueil <paul@crapouillou.net>,
	David Airlie <airlied@linux.ie>, Daniel Vetter <daniel@ffwll.ch>,
	Thierry Reding <thierry.reding@gmail.com>,
	Sam Ravnborg <sam@ravnborg.org>, Rob Herring <robh+dt@kernel.org>
Cc: linux-kernel@vger.kernel.org, linux-mips@vger.kernel.org,
	dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org
Subject: [PATCH v5 0/3] Ingenic DRM bridge_atomic_enable proposal
Date: Mon, 21 Mar 2022 14:36:48 +0100	[thread overview]
Message-ID: <20220321133651.291592-1-cbranchereau@gmail.com> (raw)

Hello,

v5 :

- this set doesn't include the nv3052c bindings doc anymore,
  as it's already applied

- nv3052c panel driver : removed empty lines, proceed to turn it off
  even is sleeping in fails instead of stopping there

- abt panel : switched to REGCACHE_FLAT so we can disable sleep mode
  in .enable with regmap_set_bits() instead of doing it at init time

- ingenic-drm-drv : added ingenic_drm_bridge_atomic_disable to balance
  out ingenic_drm_bridge_atomic_enable

Tested working on the rg350m and rg280m

Christophe Branchereau (3):
  drm/ingenic : add ingenic_drm_bridge_atomic_enable and disable
  drm/panel: Add panel driver for NewVision NV3052C based LCDs
  drm/panel : innolux-ej030na and abt-y030xx067a : add .enable and
    .disable

 drivers/gpu/drm/ingenic/ingenic-drm-drv.c     |  34 +-
 drivers/gpu/drm/panel/Kconfig                 |   9 +
 drivers/gpu/drm/panel/Makefile                |   1 +
 drivers/gpu/drm/panel/panel-abt-y030xx067a.c  |  31 +-
 drivers/gpu/drm/panel/panel-innolux-ej030na.c |  31 +-
 .../gpu/drm/panel/panel-newvision-nv3052c.c   | 484 ++++++++++++++++++
 6 files changed, 572 insertions(+), 18 deletions(-)
 create mode 100644 drivers/gpu/drm/panel/panel-newvision-nv3052c.c

-- 
2.35.1


WARNING: multiple messages have this Message-ID (diff)
From: Christophe Branchereau <cbranchereau@gmail.com>
To: Paul Cercueil <paul@crapouillou.net>,
	David Airlie <airlied@linux.ie>, Daniel Vetter <daniel@ffwll.ch>,
	Thierry Reding <thierry.reding@gmail.com>,
	Sam Ravnborg <sam@ravnborg.org>, Rob Herring <robh+dt@kernel.org>
Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	dri-devel@lists.freedesktop.org, linux-mips@vger.kernel.org
Subject: [PATCH v5 0/3] Ingenic DRM bridge_atomic_enable proposal
Date: Mon, 21 Mar 2022 14:36:48 +0100	[thread overview]
Message-ID: <20220321133651.291592-1-cbranchereau@gmail.com> (raw)

Hello,

v5 :

- this set doesn't include the nv3052c bindings doc anymore,
  as it's already applied

- nv3052c panel driver : removed empty lines, proceed to turn it off
  even is sleeping in fails instead of stopping there

- abt panel : switched to REGCACHE_FLAT so we can disable sleep mode
  in .enable with regmap_set_bits() instead of doing it at init time

- ingenic-drm-drv : added ingenic_drm_bridge_atomic_disable to balance
  out ingenic_drm_bridge_atomic_enable

Tested working on the rg350m and rg280m

Christophe Branchereau (3):
  drm/ingenic : add ingenic_drm_bridge_atomic_enable and disable
  drm/panel: Add panel driver for NewVision NV3052C based LCDs
  drm/panel : innolux-ej030na and abt-y030xx067a : add .enable and
    .disable

 drivers/gpu/drm/ingenic/ingenic-drm-drv.c     |  34 +-
 drivers/gpu/drm/panel/Kconfig                 |   9 +
 drivers/gpu/drm/panel/Makefile                |   1 +
 drivers/gpu/drm/panel/panel-abt-y030xx067a.c  |  31 +-
 drivers/gpu/drm/panel/panel-innolux-ej030na.c |  31 +-
 .../gpu/drm/panel/panel-newvision-nv3052c.c   | 484 ++++++++++++++++++
 6 files changed, 572 insertions(+), 18 deletions(-)
 create mode 100644 drivers/gpu/drm/panel/panel-newvision-nv3052c.c

-- 
2.35.1


             reply	other threads:[~2022-03-21 13:37 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-21 13:36 Christophe Branchereau [this message]
2022-03-21 13:36 ` [PATCH v5 0/3] Ingenic DRM bridge_atomic_enable proposal Christophe Branchereau
2022-03-21 13:36 ` [PATCH v5 1/3] drm/ingenic : add ingenic_drm_bridge_atomic_enable and disable Christophe Branchereau
2022-03-21 13:36   ` Christophe Branchereau
2022-04-05 20:26   ` Artur Rojek
2022-04-05 20:26     ` Artur Rojek
2022-03-21 13:36 ` [PATCH v5 2/3] drm/panel: Add panel driver for NewVision NV3052C based LCDs Christophe Branchereau
2022-03-21 13:36   ` Christophe Branchereau
2022-03-27 19:38   ` Sam Ravnborg
2022-03-27 19:38     ` Sam Ravnborg
2022-03-21 13:36 ` [PATCH v5 3/3] drm/panel : innolux-ej030na and abt-y030xx067a : add .enable and .disable Christophe Branchereau
2022-03-21 13:36   ` Christophe Branchereau
2022-03-21 14:21   ` Paul Cercueil
2022-03-21 14:21     ` Paul Cercueil
2022-03-21 14:39     ` Christophe Branchereau
2022-03-21 14:39       ` Christophe Branchereau
2022-03-21 14:42       ` Christophe Branchereau
2022-03-21 14:42         ` Christophe Branchereau
2022-03-27 19:45         ` Sam Ravnborg
2022-03-27 19:45           ` Sam Ravnborg
2022-04-05 21:03 ` [PATCH v5 0/3] Ingenic DRM bridge_atomic_enable proposal Paul Cercueil
2022-04-05 21:03   ` Paul Cercueil

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=20220321133651.291592-1-cbranchereau@gmail.com \
    --to=cbranchereau@gmail.com \
    --cc=airlied@linux.ie \
    --cc=daniel@ffwll.ch \
    --cc=devicetree@vger.kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=paul@crapouillou.net \
    --cc=robh+dt@kernel.org \
    --cc=sam@ravnborg.org \
    --cc=thierry.reding@gmail.com \
    /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.