* [PATCH v3] drm/panel: simple: Add TVC S9700RTWV43TR-01B 800x480 panel support
@ 2018-03-01 21:49 Jyri Sarha
2018-03-12 8:07 ` Thierry Reding
0 siblings, 1 reply; 4+ messages in thread
From: Jyri Sarha @ 2018-03-01 21:49 UTC (permalink / raw)
To: dri-devel; +Cc: airlied, tomi.valkeinen, thierry.reding, Jyri Sarha
Add support for TVC S9700RTWV43TR-01B 800x480 panel found on TI's
AM335X-EVM.
Signed-off-by: Jyri Sarha <jsarha@ti.com>
Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
cc: Thierry Reding <thierry.reding@gmail.com>
---
drivers/gpu/drm/panel/panel-simple.c | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index 5591984..63ccf3d 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -1962,6 +1962,29 @@ static const struct panel_desc tpk_f10a_0102 = {
},
};
+static const struct drm_display_mode tvc_s9700rtwv43tr_01b_mode = {
+ .clock = 30000,
+ .hdisplay = 800,
+ .hsync_start = 800 + 39,
+ .hsync_end = 800 + 39 + 47,
+ .htotal = 800 + 39 + 47 + 39,
+ .vdisplay = 480,
+ .vsync_start = 480 + 13,
+ .vsync_end = 480 + 13 + 2,
+ .vtotal = 480 + 13 + 2 + 29,
+ .vrefresh = 62,
+};
+
+static const struct panel_desc tvc_s9700rtwv43tr_01b = {
+ .modes = &tvc_s9700rtwv43tr_01b_mode,
+ .num_modes = 1,
+ .bpc = 8,
+ .size = {
+ .width = 155,
+ .height = 90,
+ },
+};
+
static const struct display_timing urt_umsh_8596md_timing = {
.pixelclock = { 33260000, 33260000, 33260000 },
.hactive = { 800, 800, 800 },
@@ -2214,6 +2237,9 @@ static const struct of_device_id platform_of_match[] = {
.compatible = "tpk,f10a-0102",
.data = &tpk_f10a_0102,
}, {
+ .compatible = "tvc,s9700rtwv43tr-01b",
+ .data = &tvc_s9700rtwv43tr_01b,
+ }, {
.compatible = "urt,umsh-8596md-t",
.data = &urt_umsh_8596md_parallel,
}, {
--
Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki. Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v3] drm/panel: simple: Add TVC S9700RTWV43TR-01B 800x480 panel support
2018-03-01 21:49 [PATCH v3] drm/panel: simple: Add TVC S9700RTWV43TR-01B 800x480 panel support Jyri Sarha
@ 2018-03-12 8:07 ` Thierry Reding
2018-03-12 8:26 ` Jyri Sarha
2018-03-12 10:41 ` Jyri Sarha
0 siblings, 2 replies; 4+ messages in thread
From: Thierry Reding @ 2018-03-12 8:07 UTC (permalink / raw)
To: Jyri Sarha; +Cc: airlied, tomi.valkeinen, dri-devel
[-- Attachment #1.1: Type: text/plain, Size: 581 bytes --]
On Thu, Mar 01, 2018 at 11:49:14PM +0200, Jyri Sarha wrote:
> Add support for TVC S9700RTWV43TR-01B 800x480 panel found on TI's
> AM335X-EVM.
>
> Signed-off-by: Jyri Sarha <jsarha@ti.com>
> Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
> cc: Thierry Reding <thierry.reding@gmail.com>
> ---
> drivers/gpu/drm/panel/panel-simple.c | 26 ++++++++++++++++++++++++++
> 1 file changed, 26 insertions(+)
I can't find the corresponding device tree bindings patch. Am I missing
something? Or did you forget? Also, there's no vendor prefix defined for
TVC.
Thierry
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
[-- Attachment #2: Type: text/plain, Size: 160 bytes --]
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v3] drm/panel: simple: Add TVC S9700RTWV43TR-01B 800x480 panel support
2018-03-12 8:07 ` Thierry Reding
@ 2018-03-12 8:26 ` Jyri Sarha
2018-03-12 10:41 ` Jyri Sarha
1 sibling, 0 replies; 4+ messages in thread
From: Jyri Sarha @ 2018-03-12 8:26 UTC (permalink / raw)
To: Thierry Reding; +Cc: airlied, tomi.valkeinen, dri-devel
On 12/03/18 10:07, Thierry Reding wrote:
> On Thu, Mar 01, 2018 at 11:49:14PM +0200, Jyri Sarha wrote:
>> Add support for TVC S9700RTWV43TR-01B 800x480 panel found on TI's
>> AM335X-EVM.
>>
>> Signed-off-by: Jyri Sarha <jsarha@ti.com>
>> Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
>> cc: Thierry Reding <thierry.reding@gmail.com>
>> ---
>> drivers/gpu/drm/panel/panel-simple.c | 26 ++++++++++++++++++++++++++
>> 1 file changed, 26 insertions(+)
>
> I can't find the corresponding device tree bindings patch. Am I missing
> something? Or did you forget? Also, there's no vendor prefix defined for
> TVC.
>
Oh, I did not realize that there is a separate file of each panel-simple
compatible device. I'll add one for TVC S9700RTWV43TR-01B.
BR,
Jyri
--
Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki.
Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v3] drm/panel: simple: Add TVC S9700RTWV43TR-01B 800x480 panel support
2018-03-12 8:07 ` Thierry Reding
2018-03-12 8:26 ` Jyri Sarha
@ 2018-03-12 10:41 ` Jyri Sarha
1 sibling, 0 replies; 4+ messages in thread
From: Jyri Sarha @ 2018-03-12 10:41 UTC (permalink / raw)
To: Thierry Reding; +Cc: airlied, tomi.valkeinen, dri-devel
On 12/03/18 10:07, Thierry Reding wrote:
> On Thu, Mar 01, 2018 at 11:49:14PM +0200, Jyri Sarha wrote:
>> Add support for TVC S9700RTWV43TR-01B 800x480 panel found on TI's
>> AM335X-EVM.
>>
>> Signed-off-by: Jyri Sarha <jsarha@ti.com>
>> Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
>> cc: Thierry Reding <thierry.reding@gmail.com>
>> ---
>> drivers/gpu/drm/panel/panel-simple.c | 26 ++++++++++++++++++++++++++
>> 1 file changed, 26 insertions(+)
>
> I can't find the corresponding device tree bindings patch. Am I missing
> something? Or did you forget? Also, there's no vendor prefix defined for
> TVC.
>
After extensive googling I think the TVC is a typo in the EVMs component
listing. It should probably be TFC. The is no such display as
TFC-S9700RTWV43TR-01 available or documented anywhere in web anymore,
but reading the Three Five Displays product listing[1] it appears to
agree with their model numbering scheme. I'll update the patch and add
the binding document.
BR,
Jyri
[1] http://threefivedisplays.com/products/tft-products/
--
Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki.
Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-03-12 10:41 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-01 21:49 [PATCH v3] drm/panel: simple: Add TVC S9700RTWV43TR-01B 800x480 panel support Jyri Sarha
2018-03-12 8:07 ` Thierry Reding
2018-03-12 8:26 ` Jyri Sarha
2018-03-12 10:41 ` Jyri Sarha
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.