devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/3] dt-bindings: Add vendor prefix for VXT Ltd
@ 2019-02-19  0:27 Fabio Estevam
  2019-02-19  0:27 ` [PATCH v2 2/3] dt-bindings: Add VXT VL050-8048NT-C01 panel bindings Fabio Estevam
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Fabio Estevam @ 2019-02-19  0:27 UTC (permalink / raw)
  To: thierry.reding
  Cc: devicetree, otavio.salvador, dri-devel, robh+dt, sam, john.weber

VXT Ltd is a manufacturer of projected capacitive touch panel
and display solutions: http://www.vxt.com.tw/

Reviewed-by: Otavio Salvador <otavio@ossystems.com.br>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
Changes since v1:
- None

 Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
index 389508584f48..096ad1857692 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.txt
+++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
@@ -427,6 +427,7 @@ vivante	Vivante Corporation
 vocore VoCore Studio
 voipac	Voipac Technologies s.r.o.
 vot	Vision Optical Technology Co., Ltd.
+vxt	VXT Ltd
 wd	Western Digital Corp.
 wetek	WeTek Electronics, limited.
 wexler	Wexler
-- 
2.17.1

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

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

* [PATCH v2 2/3] dt-bindings: Add VXT VL050-8048NT-C01 panel bindings
  2019-02-19  0:27 [PATCH v2 1/3] dt-bindings: Add vendor prefix for VXT Ltd Fabio Estevam
@ 2019-02-19  0:27 ` Fabio Estevam
  2019-02-19  0:27 ` [PATCH v2 3/3] drm/panel: simple: Add support for VXT VL050-8048NT-C01 panel Fabio Estevam
  2019-04-23 11:03 ` [PATCH v2 1/3] dt-bindings: Add vendor prefix for VXT Ltd Thierry Reding
  2 siblings, 0 replies; 9+ messages in thread
From: Fabio Estevam @ 2019-02-19  0:27 UTC (permalink / raw)
  To: thierry.reding
  Cc: devicetree, otavio.salvador, dri-devel, robh+dt, sam, john.weber

The VXT VL050-8048NT-C01 is a TFT LCD panel with a 800x480 resolution
connected via 24 width parallel interface.

Reviewed-by: Otavio Salvador <otavio@ossystems.com.br>
Reviewed-by: Rob Herring <robh@kernel.org
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
Changes since v1:
- None

 .../bindings/display/panel/vl050_8048nt_c01.txt      | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/panel/vl050_8048nt_c01.txt

diff --git a/Documentation/devicetree/bindings/display/panel/vl050_8048nt_c01.txt b/Documentation/devicetree/bindings/display/panel/vl050_8048nt_c01.txt
new file mode 100644
index 000000000000..b42bf06bbd99
--- /dev/null
+++ b/Documentation/devicetree/bindings/display/panel/vl050_8048nt_c01.txt
@@ -0,0 +1,12 @@
+VXT 800x480 color TFT LCD panel
+
+Required properties:
+- compatible: should be "vxt,vl050-8048nt-c01"
+- power-supply: as specified in the base binding
+
+Optional properties:
+- backlight: as specified in the base binding
+- enable-gpios: as specified in the base binding
+
+This binding is compatible with the simple-panel binding, which is specified
+in simple-panel.txt in this directory.
-- 
2.17.1

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

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

* [PATCH v2 3/3] drm/panel: simple: Add support for VXT VL050-8048NT-C01 panel
  2019-02-19  0:27 [PATCH v2 1/3] dt-bindings: Add vendor prefix for VXT Ltd Fabio Estevam
  2019-02-19  0:27 ` [PATCH v2 2/3] dt-bindings: Add VXT VL050-8048NT-C01 panel bindings Fabio Estevam
@ 2019-02-19  0:27 ` Fabio Estevam
  2019-04-01 15:21   ` Fabio Estevam
  2019-04-23 11:03 ` [PATCH v2 1/3] dt-bindings: Add vendor prefix for VXT Ltd Thierry Reding
  2 siblings, 1 reply; 9+ messages in thread
From: Fabio Estevam @ 2019-02-19  0:27 UTC (permalink / raw)
  To: thierry.reding
  Cc: devicetree, otavio.salvador, dri-devel, robh+dt, sam, john.weber

Add support for the VXT VL050-8048NT-C01 800x480 panel to the
panel-simple driver. 

This panel is used on some boards manufactured by TechNexion, such as
imx7d-pico.

Reviewed-by: Otavio Salvador <otavio@ossystems.com.br>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
Changes since v1:
- Pass .flags and .bus_flags (Sam)

 drivers/gpu/drm/panel/panel-simple.c | 29 ++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index 9c69e739a524..737cbf3aee11 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -2434,6 +2434,32 @@ static const struct panel_desc urt_umsh_8596md_parallel = {
 	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
 };
 
+static const struct drm_display_mode vl050_8048nt_c01_mode = {
+	.clock = 33333,
+	.hdisplay = 800,
+	.hsync_start = 800 + 210,
+	.hsync_end = 800 + 210 + 20,
+	.htotal = 800 + 210 + 20 + 46,
+	.vdisplay =  480,
+	.vsync_start = 480 + 22,
+	.vsync_end = 480 + 22 + 10,
+	.vtotal = 480 + 22 + 10 + 23,
+	.vrefresh = 60,
+	.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
+};
+
+static const struct panel_desc vl050_8048nt_c01 = {
+	.modes = &vl050_8048nt_c01_mode,
+	.num_modes = 1,
+	.bpc = 8,
+	.size = {
+		.width = 120,
+		.height = 76,
+	},
+	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
+	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
+};
+
 static const struct drm_display_mode winstar_wf35ltiacd_mode = {
 	.clock = 6410,
 	.hdisplay = 320,
@@ -2751,6 +2777,9 @@ static const struct of_device_id platform_of_match[] = {
 	}, {
 		.compatible = "urt,umsh-8596md-20t",
 		.data = &urt_umsh_8596md_parallel,
+	}, {
+		.compatible = "vxt,vl050-8048nt-c01",
+		.data = &vl050_8048nt_c01,
 	}, {
 		.compatible = "winstar,wf35ltiacd",
 		.data = &winstar_wf35ltiacd,
-- 
2.17.1

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

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

* Re: [PATCH v2 3/3] drm/panel: simple: Add support for VXT VL050-8048NT-C01 panel
  2019-02-19  0:27 ` [PATCH v2 3/3] drm/panel: simple: Add support for VXT VL050-8048NT-C01 panel Fabio Estevam
@ 2019-04-01 15:21   ` Fabio Estevam
  2019-04-08 14:14     ` Otavio Salvador
  0 siblings, 1 reply; 9+ messages in thread
From: Fabio Estevam @ 2019-04-01 15:21 UTC (permalink / raw)
  To: Thierry Reding, Daniel Vetter
  Cc: open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Otavio Salvador, DRI mailing list, Rob Herring, Sam Ravnborg,
	John Weber

Hi Thierry,

On Mon, Feb 18, 2019 at 9:27 PM Fabio Estevam <festevam@gmail.com> wrote:
>
> Add support for the VXT VL050-8048NT-C01 800x480 panel to the
> panel-simple driver.
>
> This panel is used on some boards manufactured by TechNexion, such as
> imx7d-pico.
>
> Reviewed-by: Otavio Salvador <otavio@ossystems.com.br>
> Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>

Any feedback, please?

Trying to get this one upstreamed for four months already and hope to
get it to 5.2.

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

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

* Re: [PATCH v2 3/3] drm/panel: simple: Add support for VXT VL050-8048NT-C01 panel
  2019-04-01 15:21   ` Fabio Estevam
@ 2019-04-08 14:14     ` Otavio Salvador
  0 siblings, 0 replies; 9+ messages in thread
From: Otavio Salvador @ 2019-04-08 14:14 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Daniel Vetter, Rob Herring, Thierry Reding, DRI mailing list,
	Sam Ravnborg, John Weber

On Mon, Apr 1, 2019 at 12:21 PM Fabio Estevam <festevam@gmail.com> wrote:
> On Mon, Feb 18, 2019 at 9:27 PM Fabio Estevam <festevam@gmail.com> wrote:
> >
> > Add support for the VXT VL050-8048NT-C01 800x480 panel to the
> > panel-simple driver.
> >
> > This panel is used on some boards manufactured by TechNexion, such as
> > imx7d-pico.
> >
> > Reviewed-by: Otavio Salvador <otavio@ossystems.com.br>
> > Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
> > Signed-off-by: Fabio Estevam <festevam@gmail.com>
>
> Any feedback, please?
>
> Trying to get this one upstreamed for four months already and hope to
> get it to 5.2.

Any news on this? It has been waiting for review for a while. Is there
someone else who could review this?


-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9 9981-7854          Mobile: +1 (347) 903-9750
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH v2 1/3] dt-bindings: Add vendor prefix for VXT Ltd
  2019-02-19  0:27 [PATCH v2 1/3] dt-bindings: Add vendor prefix for VXT Ltd Fabio Estevam
  2019-02-19  0:27 ` [PATCH v2 2/3] dt-bindings: Add VXT VL050-8048NT-C01 panel bindings Fabio Estevam
  2019-02-19  0:27 ` [PATCH v2 3/3] drm/panel: simple: Add support for VXT VL050-8048NT-C01 panel Fabio Estevam
@ 2019-04-23 11:03 ` Thierry Reding
  2019-05-20 14:15   ` Fabio Estevam
  2 siblings, 1 reply; 9+ messages in thread
From: Thierry Reding @ 2019-04-23 11:03 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: devicetree, otavio.salvador, dri-devel, robh+dt, sam, john.weber


[-- Attachment #1.1: Type: text/plain, Size: 529 bytes --]

On Mon, Feb 18, 2019 at 09:27:04PM -0300, Fabio Estevam wrote:
> VXT Ltd is a manufacturer of projected capacitive touch panel
> and display solutions: http://www.vxt.com.tw/
> 
> Reviewed-by: Otavio Salvador <otavio@ossystems.com.br>
> Reviewed-by: Rob Herring <robh@kernel.org>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> ---
> Changes since v1:
> - None
> 
>  Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
>  1 file changed, 1 insertion(+)

Applied all three patches, thanks.

Thierry

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

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

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

* Re: [PATCH v2 1/3] dt-bindings: Add vendor prefix for VXT Ltd
  2019-04-23 11:03 ` [PATCH v2 1/3] dt-bindings: Add vendor prefix for VXT Ltd Thierry Reding
@ 2019-05-20 14:15   ` Fabio Estevam
  2019-05-20 16:22     ` Thierry Reding
  0 siblings, 1 reply; 9+ messages in thread
From: Fabio Estevam @ 2019-05-20 14:15 UTC (permalink / raw)
  To: Thierry Reding
  Cc: open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Otavio Salvador, DRI mailing list, Rob Herring, Sam Ravnborg,
	John Weber

On Tue, Apr 23, 2019 at 8:03 AM Thierry Reding <thierry.reding@gmail.com> wrote:
>
> On Mon, Feb 18, 2019 at 09:27:04PM -0300, Fabio Estevam wrote:
> > VXT Ltd is a manufacturer of projected capacitive touch panel
> > and display solutions: http://www.vxt.com.tw/
> >
> > Reviewed-by: Otavio Salvador <otavio@ossystems.com.br>
> > Reviewed-by: Rob Herring <robh@kernel.org>
> > Signed-off-by: Fabio Estevam <festevam@gmail.com>
> > ---
> > Changes since v1:
> > - None
> >
> >  Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
> >  1 file changed, 1 insertion(+)
>
> Applied all three patches, thanks.

I don't see any of these patches applied in linux-next nor 5.2-rc1.

What is the issue here?
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH v2 1/3] dt-bindings: Add vendor prefix for VXT Ltd
  2019-05-20 14:15   ` Fabio Estevam
@ 2019-05-20 16:22     ` Thierry Reding
  2019-05-20 18:14       ` Rob Herring
  0 siblings, 1 reply; 9+ messages in thread
From: Thierry Reding @ 2019-05-20 16:22 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Otavio Salvador, DRI mailing list, Rob Herring, Sam Ravnborg,
	John Weber


[-- Attachment #1.1: Type: text/plain, Size: 1155 bytes --]

On Mon, May 20, 2019 at 11:15:05AM -0300, Fabio Estevam wrote:
> On Tue, Apr 23, 2019 at 8:03 AM Thierry Reding <thierry.reding@gmail.com> wrote:
> >
> > On Mon, Feb 18, 2019 at 09:27:04PM -0300, Fabio Estevam wrote:
> > > VXT Ltd is a manufacturer of projected capacitive touch panel
> > > and display solutions: http://www.vxt.com.tw/
> > >
> > > Reviewed-by: Otavio Salvador <otavio@ossystems.com.br>
> > > Reviewed-by: Rob Herring <robh@kernel.org>
> > > Signed-off-by: Fabio Estevam <festevam@gmail.com>
> > > ---
> > > Changes since v1:
> > > - None
> > >
> > >  Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
> > >  1 file changed, 1 insertion(+)
> >
> > Applied all three patches, thanks.
> 
> I don't see any of these patches applied in linux-next nor 5.2-rc1.
> 
> What is the issue here?

The patch is in drm-misc-next and should show up in linux-next tomorrow.

My understanding is that somebody needs to push drm-misc-next after each
-rc1 release before drm-misc-next feeds into linux-next. Chances of that
happening between -rc1 and the linux-next release the day after are
fairly small.

Thierry

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

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

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

* Re: [PATCH v2 1/3] dt-bindings: Add vendor prefix for VXT Ltd
  2019-05-20 16:22     ` Thierry Reding
@ 2019-05-20 18:14       ` Rob Herring
  0 siblings, 0 replies; 9+ messages in thread
From: Rob Herring @ 2019-05-20 18:14 UTC (permalink / raw)
  To: Thierry Reding
  Cc: Fabio Estevam, Sam Ravnborg, DRI mailing list,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Otavio Salvador, John Weber

On Mon, May 20, 2019 at 11:22 AM Thierry Reding <thierry.reding@gmail.com> wrote:
>
> On Mon, May 20, 2019 at 11:15:05AM -0300, Fabio Estevam wrote:
> > On Tue, Apr 23, 2019 at 8:03 AM Thierry Reding <thierry.reding@gmail.com> wrote:
> > >
> > > On Mon, Feb 18, 2019 at 09:27:04PM -0300, Fabio Estevam wrote:
> > > > VXT Ltd is a manufacturer of projected capacitive touch panel
> > > > and display solutions: http://www.vxt.com.tw/
> > > >
> > > > Reviewed-by: Otavio Salvador <otavio@ossystems.com.br>
> > > > Reviewed-by: Rob Herring <robh@kernel.org>
> > > > Signed-off-by: Fabio Estevam <festevam@gmail.com>
> > > > ---
> > > > Changes since v1:
> > > > - None
> > > >
> > > >  Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
> > > >  1 file changed, 1 insertion(+)
> > >
> > > Applied all three patches, thanks.
> >
> > I don't see any of these patches applied in linux-next nor 5.2-rc1.
> >
> > What is the issue here?
>
> The patch is in drm-misc-next and should show up in linux-next tomorrow.
>
> My understanding is that somebody needs to push drm-misc-next after each
> -rc1 release before drm-misc-next feeds into linux-next. Chances of that
> happening between -rc1 and the linux-next release the day after are
> fairly small.
>
> Thierry

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

end of thread, other threads:[~2019-05-20 18:14 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-19  0:27 [PATCH v2 1/3] dt-bindings: Add vendor prefix for VXT Ltd Fabio Estevam
2019-02-19  0:27 ` [PATCH v2 2/3] dt-bindings: Add VXT VL050-8048NT-C01 panel bindings Fabio Estevam
2019-02-19  0:27 ` [PATCH v2 3/3] drm/panel: simple: Add support for VXT VL050-8048NT-C01 panel Fabio Estevam
2019-04-01 15:21   ` Fabio Estevam
2019-04-08 14:14     ` Otavio Salvador
2019-04-23 11:03 ` [PATCH v2 1/3] dt-bindings: Add vendor prefix for VXT Ltd Thierry Reding
2019-05-20 14:15   ` Fabio Estevam
2019-05-20 16:22     ` Thierry Reding
2019-05-20 18:14       ` Rob Herring

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).