* [PATCH v2 1/2] dt-bindings: display: panel-simple: Document support for Microchip AC69T88A
@ 2024-09-19 9:15 Manikandan Muralidharan
2024-09-19 9:15 ` [PATCH v2 2/2] drm/panel: simple: Add Microchip AC69T88A LVDS Display panel Manikandan Muralidharan
` (2 more replies)
0 siblings, 3 replies; 12+ messages in thread
From: Manikandan Muralidharan @ 2024-09-19 9:15 UTC (permalink / raw)
To: neil.armstrong, quic_jesszhan, airlied, simona,
maarten.lankhorst, mripard, tzimmermann, robh, krzk+dt, conor+dt,
thierry.reding, sam, dri-devel, devicetree, linux-kernel
Cc: manikandan.m
Add Microchip AC69T88A 5" LVDS interface (800x480) TFT LCD panel
compatible string
Signed-off-by: Manikandan Muralidharan <manikandan.m@microchip.com>
---
changes in v2:
- Replace microchip,ac69t88a-lvds-panel with
microchip,ac69t88a
---
.../devicetree/bindings/display/panel/panel-simple.yaml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/Documentation/devicetree/bindings/display/panel/panel-simple.yaml b/Documentation/devicetree/bindings/display/panel/panel-simple.yaml
index b89e39790579..18b63f356bb4 100644
--- a/Documentation/devicetree/bindings/display/panel/panel-simple.yaml
+++ b/Documentation/devicetree/bindings/display/panel/panel-simple.yaml
@@ -200,6 +200,8 @@ properties:
- logictechno,lttd800480070-l2rt
# Logic Technologies LTTD800480070-L6WH-RT 7” 800x480 TFT Resistive Touch Module
- logictechno,lttd800480070-l6wh-rt
+ # Microchip AC69T88A 5" 800X480 LVDS interface TFT LCD Panel
+ - microchip,ac69t88a
# Mitsubishi "AA070MC01 7.0" WVGA TFT LCD panel
- mitsubishi,aa070mc01-ca1
# Mitsubishi AA084XE01 8.4" XGA TFT LCD panel
--
2.25.1
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH v2 2/2] drm/panel: simple: Add Microchip AC69T88A LVDS Display panel 2024-09-19 9:15 [PATCH v2 1/2] dt-bindings: display: panel-simple: Document support for Microchip AC69T88A Manikandan Muralidharan @ 2024-09-19 9:15 ` Manikandan Muralidharan 2024-09-20 15:43 ` Dmitry Baryshkov 2024-09-21 0:56 ` [PATCH v2 1/2] dt-bindings: display: panel-simple: Document support for Microchip AC69T88A Rob Herring (Arm) 2024-10-19 14:57 ` Dmitry Baryshkov 2 siblings, 1 reply; 12+ messages in thread From: Manikandan Muralidharan @ 2024-09-19 9:15 UTC (permalink / raw) To: neil.armstrong, quic_jesszhan, airlied, simona, maarten.lankhorst, mripard, tzimmermann, robh, krzk+dt, conor+dt, thierry.reding, sam, dri-devel, devicetree, linux-kernel Cc: manikandan.m, Dharma Balasubiramani Add support for Microchip AC69T88A 5 inch TFT LCD 800x480 Display module with LVDS interface.The panel uses the Sitronix ST7262 800x480 Display driver Signed-off-by: Manikandan Muralidharan <manikandan.m@microchip.com> Signed-off-by: Dharma Balasubiramani <dharma.b@microchip.com> --- changes in v2: - replace microchip,ac69t88a-lvds-panel with microchip,ac69t88a --- drivers/gpu/drm/panel/panel-simple.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c index 86735430462f..06381c628209 100644 --- a/drivers/gpu/drm/panel/panel-simple.c +++ b/drivers/gpu/drm/panel/panel-simple.c @@ -4565,6 +4565,31 @@ static const struct panel_desc yes_optoelectronics_ytc700tlag_05_201c = { .connector_type = DRM_MODE_CONNECTOR_LVDS, }; +static const struct drm_display_mode mchp_ac69t88a_mode = { + .clock = 25000, + .hdisplay = 800, + .hsync_start = 800 + 88, + .hsync_end = 800 + 88 + 5, + .htotal = 800 + 88 + 5 + 40, + .vdisplay = 480, + .vsync_start = 480 + 23, + .vsync_end = 480 + 23 + 5, + .vtotal = 480 + 23 + 5 + 1, +}; + +static const struct panel_desc mchp_ac69t88a = { + .modes = &mchp_ac69t88a_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 108, + .height = 65, + }, + .bus_flags = DRM_BUS_FLAG_DE_HIGH, + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA, + .connector_type = DRM_MODE_CONNECTOR_LVDS, +}; + static const struct drm_display_mode arm_rtsm_mode[] = { { .clock = 65000, @@ -5048,6 +5073,9 @@ static const struct of_device_id platform_of_match[] = { }, { .compatible = "yes-optoelectronics,ytc700tlag-05-201c", .data = &yes_optoelectronics_ytc700tlag_05_201c, + }, { + .compatible = "microchip,ac69t88a", + .data = &mchp_ac69t88a, }, { /* Must be the last entry */ .compatible = "panel-dpi", -- 2.25.1 ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 2/2] drm/panel: simple: Add Microchip AC69T88A LVDS Display panel 2024-09-19 9:15 ` [PATCH v2 2/2] drm/panel: simple: Add Microchip AC69T88A LVDS Display panel Manikandan Muralidharan @ 2024-09-20 15:43 ` Dmitry Baryshkov 2024-09-23 5:50 ` Manikandan.M 0 siblings, 1 reply; 12+ messages in thread From: Dmitry Baryshkov @ 2024-09-20 15:43 UTC (permalink / raw) To: Manikandan Muralidharan Cc: neil.armstrong, quic_jesszhan, airlied, simona, maarten.lankhorst, mripard, tzimmermann, robh, krzk+dt, conor+dt, thierry.reding, sam, dri-devel, devicetree, linux-kernel, Dharma Balasubiramani On Thu, Sep 19, 2024 at 02:45:48PM GMT, Manikandan Muralidharan wrote: > Add support for Microchip AC69T88A 5 inch TFT LCD 800x480 > Display module with LVDS interface.The panel uses the Sitronix > ST7262 800x480 Display driver AC69T88A seems to be a module name, rather than a panel name. What is the actual panel name present on this module? > > Signed-off-by: Manikandan Muralidharan <manikandan.m@microchip.com> > Signed-off-by: Dharma Balasubiramani <dharma.b@microchip.com> > --- > changes in v2: > - replace microchip,ac69t88a-lvds-panel with > microchip,ac69t88a > --- > drivers/gpu/drm/panel/panel-simple.c | 28 ++++++++++++++++++++++++++++ > 1 file changed, 28 insertions(+) > -- With best wishes Dmitry ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 2/2] drm/panel: simple: Add Microchip AC69T88A LVDS Display panel 2024-09-20 15:43 ` Dmitry Baryshkov @ 2024-09-23 5:50 ` Manikandan.M 2024-09-23 6:07 ` Dmitry Baryshkov 0 siblings, 1 reply; 12+ messages in thread From: Manikandan.M @ 2024-09-23 5:50 UTC (permalink / raw) To: dmitry.baryshkov Cc: neil.armstrong, quic_jesszhan, airlied, simona, maarten.lankhorst, mripard, tzimmermann, robh, krzk+dt, conor+dt, thierry.reding, sam, dri-devel, devicetree, linux-kernel, Dharma.B On 20/09/24 9:13 pm, Dmitry Baryshkov wrote: > EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe > > On Thu, Sep 19, 2024 at 02:45:48PM GMT, Manikandan Muralidharan wrote: >> Add support for Microchip AC69T88A 5 inch TFT LCD 800x480 >> Display module with LVDS interface.The panel uses the Sitronix >> ST7262 800x480 Display driver > > AC69T88A seems to be a module name, rather than a panel name. What is > the actual panel name present on this module? Both names, "Microchip AC69T88A" and "MPU32-LVDS-DISPLAY-WVGA" are present on the display module > >> >> Signed-off-by: Manikandan Muralidharan <manikandan.m@microchip.com> >> Signed-off-by: Dharma Balasubiramani <dharma.b@microchip.com> >> --- >> changes in v2: >> - replace microchip,ac69t88a-lvds-panel with >> microchip,ac69t88a >> --- >> drivers/gpu/drm/panel/panel-simple.c | 28 ++++++++++++++++++++++++++++ >> 1 file changed, 28 insertions(+) >> > > -- > With best wishes > Dmitry -- Thanks and Regards, Manikandan M. ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 2/2] drm/panel: simple: Add Microchip AC69T88A LVDS Display panel 2024-09-23 5:50 ` Manikandan.M @ 2024-09-23 6:07 ` Dmitry Baryshkov 2024-09-26 8:17 ` Manikandan.M 0 siblings, 1 reply; 12+ messages in thread From: Dmitry Baryshkov @ 2024-09-23 6:07 UTC (permalink / raw) To: Manikandan.M Cc: neil.armstrong, quic_jesszhan, airlied, simona, maarten.lankhorst, mripard, tzimmermann, robh, krzk+dt, conor+dt, thierry.reding, sam, dri-devel, devicetree, linux-kernel, Dharma.B On Mon, Sep 23, 2024 at 05:50:22AM GMT, Manikandan.M@microchip.com wrote: > On 20/09/24 9:13 pm, Dmitry Baryshkov wrote: > > EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe > > > > On Thu, Sep 19, 2024 at 02:45:48PM GMT, Manikandan Muralidharan wrote: > >> Add support for Microchip AC69T88A 5 inch TFT LCD 800x480 > >> Display module with LVDS interface.The panel uses the Sitronix > >> ST7262 800x480 Display driver > > > > AC69T88A seems to be a module name, rather than a panel name. What is > > the actual panel name present on this module? > Both names, "Microchip AC69T88A" and "MPU32-LVDS-DISPLAY-WVGA" are > present on the display module Which panel was used for the module? I don't think that Microchip produces LVDS panels. > > > >> > >> Signed-off-by: Manikandan Muralidharan <manikandan.m@microchip.com> > >> Signed-off-by: Dharma Balasubiramani <dharma.b@microchip.com> > >> --- > >> changes in v2: > >> - replace microchip,ac69t88a-lvds-panel with > >> microchip,ac69t88a > >> --- > >> drivers/gpu/drm/panel/panel-simple.c | 28 ++++++++++++++++++++++++++++ > >> 1 file changed, 28 insertions(+) > >> > > > > -- > > With best wishes > > Dmitry > > -- > Thanks and Regards, > Manikandan M. > -- With best wishes Dmitry ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 2/2] drm/panel: simple: Add Microchip AC69T88A LVDS Display panel 2024-09-23 6:07 ` Dmitry Baryshkov @ 2024-09-26 8:17 ` Manikandan.M 2024-09-26 13:32 ` Dmitry Baryshkov 0 siblings, 1 reply; 12+ messages in thread From: Manikandan.M @ 2024-09-26 8:17 UTC (permalink / raw) To: dmitry.baryshkov Cc: neil.armstrong, quic_jesszhan, airlied, simona, maarten.lankhorst, mripard, tzimmermann, robh, krzk+dt, conor+dt, thierry.reding, sam, dri-devel, devicetree, linux-kernel, Dharma.B On 23/09/24 11:37 am, Dmitry Baryshkov wrote: > EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe > > On Mon, Sep 23, 2024 at 05:50:22AM GMT, Manikandan.M@microchip.com wrote: >> On 20/09/24 9:13 pm, Dmitry Baryshkov wrote: >>> EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe >>> >>> On Thu, Sep 19, 2024 at 02:45:48PM GMT, Manikandan Muralidharan wrote: >>>> Add support for Microchip AC69T88A 5 inch TFT LCD 800x480 >>>> Display module with LVDS interface.The panel uses the Sitronix >>>> ST7262 800x480 Display driver >>> >>> AC69T88A seems to be a module name, rather than a panel name. What is >>> the actual panel name present on this module? >> Both names, "Microchip AC69T88A" and "MPU32-LVDS-DISPLAY-WVGA" are >> present on the display module > > Which panel was used for the module? I don't think that Microchip > produces LVDS panels. Its a new LVDS display from Microchip that uses Sitronix ST7262 TFT LCD driver https://www.crystalfontz.com/controllers/datasheet-viewer.php?id=486 > >>> >>>> >>>> Signed-off-by: Manikandan Muralidharan <manikandan.m@microchip.com> >>>> Signed-off-by: Dharma Balasubiramani <dharma.b@microchip.com> >>>> --- >>>> changes in v2: >>>> - replace microchip,ac69t88a-lvds-panel with >>>> microchip,ac69t88a >>>> --- >>>> drivers/gpu/drm/panel/panel-simple.c | 28 ++++++++++++++++++++++++++++ >>>> 1 file changed, 28 insertions(+) >>>> >>> >>> -- >>> With best wishes >>> Dmitry >> >> -- >> Thanks and Regards, >> Manikandan M. >> > > -- > With best wishes > Dmitry -- Thanks and Regards, Manikandan M. ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 2/2] drm/panel: simple: Add Microchip AC69T88A LVDS Display panel 2024-09-26 8:17 ` Manikandan.M @ 2024-09-26 13:32 ` Dmitry Baryshkov 2024-09-26 13:58 ` Maxime Ripard 0 siblings, 1 reply; 12+ messages in thread From: Dmitry Baryshkov @ 2024-09-26 13:32 UTC (permalink / raw) To: Manikandan.M Cc: neil.armstrong, quic_jesszhan, airlied, simona, maarten.lankhorst, mripard, tzimmermann, robh, krzk+dt, conor+dt, thierry.reding, sam, dri-devel, devicetree, linux-kernel, Dharma.B On Thu, Sep 26, 2024 at 08:17:09AM GMT, Manikandan.M@microchip.com wrote: > On 23/09/24 11:37 am, Dmitry Baryshkov wrote: > > EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe > > > > On Mon, Sep 23, 2024 at 05:50:22AM GMT, Manikandan.M@microchip.com wrote: > >> On 20/09/24 9:13 pm, Dmitry Baryshkov wrote: > >>> EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe > >>> > >>> On Thu, Sep 19, 2024 at 02:45:48PM GMT, Manikandan Muralidharan wrote: > >>>> Add support for Microchip AC69T88A 5 inch TFT LCD 800x480 > >>>> Display module with LVDS interface.The panel uses the Sitronix > >>>> ST7262 800x480 Display driver > >>> > >>> AC69T88A seems to be a module name, rather than a panel name. What is > >>> the actual panel name present on this module? > >> Both names, "Microchip AC69T88A" and "MPU32-LVDS-DISPLAY-WVGA" are > >> present on the display module > > > > Which panel was used for the module? I don't think that Microchip > > produces LVDS panels. > Its a new LVDS display from Microchip that uses Sitronix ST7262 TFT LCD > driver > > https://www.crystalfontz.com/controllers/datasheet-viewer.php?id=486 Ok. Anyway if somebody ends up looking for the panel, they'll probably find the module and vice versa. Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> -- With best wishes Dmitry ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 2/2] drm/panel: simple: Add Microchip AC69T88A LVDS Display panel 2024-09-26 13:32 ` Dmitry Baryshkov @ 2024-09-26 13:58 ` Maxime Ripard 2024-09-26 23:21 ` Dmitry Baryshkov 0 siblings, 1 reply; 12+ messages in thread From: Maxime Ripard @ 2024-09-26 13:58 UTC (permalink / raw) To: Dmitry Baryshkov Cc: Manikandan.M, neil.armstrong, quic_jesszhan, airlied, simona, maarten.lankhorst, tzimmermann, robh, krzk+dt, conor+dt, thierry.reding, sam, dri-devel, devicetree, linux-kernel, Dharma.B [-- Attachment #1: Type: text/plain, Size: 1821 bytes --] On Thu, Sep 26, 2024 at 04:32:59PM GMT, Dmitry Baryshkov wrote: > On Thu, Sep 26, 2024 at 08:17:09AM GMT, Manikandan.M@microchip.com wrote: > > On 23/09/24 11:37 am, Dmitry Baryshkov wrote: > > > EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe > > > > > > On Mon, Sep 23, 2024 at 05:50:22AM GMT, Manikandan.M@microchip.com wrote: > > >> On 20/09/24 9:13 pm, Dmitry Baryshkov wrote: > > >>> EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe > > >>> > > >>> On Thu, Sep 19, 2024 at 02:45:48PM GMT, Manikandan Muralidharan wrote: > > >>>> Add support for Microchip AC69T88A 5 inch TFT LCD 800x480 > > >>>> Display module with LVDS interface.The panel uses the Sitronix > > >>>> ST7262 800x480 Display driver > > >>> > > >>> AC69T88A seems to be a module name, rather than a panel name. What is > > >>> the actual panel name present on this module? > > >> Both names, "Microchip AC69T88A" and "MPU32-LVDS-DISPLAY-WVGA" are > > >> present on the display module > > > > > > Which panel was used for the module? I don't think that Microchip > > > produces LVDS panels. > > Its a new LVDS display from Microchip that uses Sitronix ST7262 TFT LCD > > driver > > > > https://www.crystalfontz.com/controllers/datasheet-viewer.php?id=486 > > Ok. Anyway if somebody ends up looking for the panel, they'll probably > find the module and vice versa. > > Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Given that aside from that mail, the module name isn't mentionned anywhere, I'm not sure they would. The way we usually deal with controllers is to have a separate driver for panels based on that controller, even more so since that controller seems to be able to affect the display. Maxime [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 273 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 2/2] drm/panel: simple: Add Microchip AC69T88A LVDS Display panel 2024-09-26 13:58 ` Maxime Ripard @ 2024-09-26 23:21 ` Dmitry Baryshkov 2024-10-01 9:33 ` Manikandan.M 0 siblings, 1 reply; 12+ messages in thread From: Dmitry Baryshkov @ 2024-09-26 23:21 UTC (permalink / raw) To: Maxime Ripard Cc: Manikandan.M, neil.armstrong, quic_jesszhan, airlied, simona, maarten.lankhorst, tzimmermann, robh, krzk+dt, conor+dt, thierry.reding, sam, dri-devel, devicetree, linux-kernel, Dharma.B On Thu, Sep 26, 2024 at 03:58:11PM GMT, Maxime Ripard wrote: > On Thu, Sep 26, 2024 at 04:32:59PM GMT, Dmitry Baryshkov wrote: > > On Thu, Sep 26, 2024 at 08:17:09AM GMT, Manikandan.M@microchip.com wrote: > > > On 23/09/24 11:37 am, Dmitry Baryshkov wrote: > > > > EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe > > > > > > > > On Mon, Sep 23, 2024 at 05:50:22AM GMT, Manikandan.M@microchip.com wrote: > > > >> On 20/09/24 9:13 pm, Dmitry Baryshkov wrote: > > > >>> EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe > > > >>> > > > >>> On Thu, Sep 19, 2024 at 02:45:48PM GMT, Manikandan Muralidharan wrote: > > > >>>> Add support for Microchip AC69T88A 5 inch TFT LCD 800x480 > > > >>>> Display module with LVDS interface.The panel uses the Sitronix > > > >>>> ST7262 800x480 Display driver > > > >>> > > > >>> AC69T88A seems to be a module name, rather than a panel name. What is > > > >>> the actual panel name present on this module? > > > >> Both names, "Microchip AC69T88A" and "MPU32-LVDS-DISPLAY-WVGA" are > > > >> present on the display module > > > > > > > > Which panel was used for the module? I don't think that Microchip > > > > produces LVDS panels. > > > Its a new LVDS display from Microchip that uses Sitronix ST7262 TFT LCD > > > driver > > > > > > https://www.crystalfontz.com/controllers/datasheet-viewer.php?id=486 > > > > Ok. Anyway if somebody ends up looking for the panel, they'll probably > > find the module and vice versa. > > > > Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> > > Given that aside from that mail, the module name isn't mentionned > anywhere, I'm not sure they would. > > The way we usually deal with controllers is to have a separate driver > for panels based on that controller, even more so since that controller > seems to be able to affect the display. But in this case it's panel-simple, no special driver for the controller. From my understanding the AC69T88A is the module name (at least the datasheet uses that name). The on-board EEPROM also carries that name and the name of the controller. -- With best wishes Dmitry ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 2/2] drm/panel: simple: Add Microchip AC69T88A LVDS Display panel 2024-09-26 23:21 ` Dmitry Baryshkov @ 2024-10-01 9:33 ` Manikandan.M 0 siblings, 0 replies; 12+ messages in thread From: Manikandan.M @ 2024-10-01 9:33 UTC (permalink / raw) To: dmitry.baryshkov, mripard Cc: neil.armstrong, quic_jesszhan, airlied, simona, maarten.lankhorst, tzimmermann, robh, krzk+dt, conor+dt, thierry.reding, sam, dri-devel, devicetree, linux-kernel, Dharma.B On 27/09/24 4:51 am, Dmitry Baryshkov wrote: > EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe > > On Thu, Sep 26, 2024 at 03:58:11PM GMT, Maxime Ripard wrote: >> On Thu, Sep 26, 2024 at 04:32:59PM GMT, Dmitry Baryshkov wrote: >>> On Thu, Sep 26, 2024 at 08:17:09AM GMT, Manikandan.M@microchip.com wrote: >>>> On 23/09/24 11:37 am, Dmitry Baryshkov wrote: >>>>> EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe >>>>> >>>>> On Mon, Sep 23, 2024 at 05:50:22AM GMT, Manikandan.M@microchip.com wrote: >>>>>> On 20/09/24 9:13 pm, Dmitry Baryshkov wrote: >>>>>>> EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe >>>>>>> >>>>>>> On Thu, Sep 19, 2024 at 02:45:48PM GMT, Manikandan Muralidharan wrote: >>>>>>>> Add support for Microchip AC69T88A 5 inch TFT LCD 800x480 >>>>>>>> Display module with LVDS interface.The panel uses the Sitronix >>>>>>>> ST7262 800x480 Display driver >>>>>>> >>>>>>> AC69T88A seems to be a module name, rather than a panel name. What is >>>>>>> the actual panel name present on this module? >>>>>> Both names, "Microchip AC69T88A" and "MPU32-LVDS-DISPLAY-WVGA" are >>>>>> present on the display module >>>>> >>>>> Which panel was used for the module? I don't think that Microchip >>>>> produces LVDS panels. >>>> Its a new LVDS display from Microchip that uses Sitronix ST7262 TFT LCD >>>> driver >>>> >>>> https://www.crystalfontz.com/controllers/datasheet-viewer.php?id=486 >>> >>> Ok. Anyway if somebody ends up looking for the panel, they'll probably >>> find the module and vice versa. >>> >>> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> >> >> Given that aside from that mail, the module name isn't mentionned >> anywhere, I'm not sure they would. >> >> The way we usually deal with controllers is to have a separate driver >> for panels based on that controller, even more so since that controller >> seems to be able to affect the display. > > But in this case it's panel-simple, no special driver for the > controller. From my understanding the AC69T88A is the module name (at > least the datasheet uses that name). The on-board EEPROM also carries > that name and the name of the controller. Yes, as per the proposed on-board EEPROM spec, it holds the module name and the LCD driver used. > > -- > With best wishes > Dmitry -- Thanks and Regards, Manikandan M. ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 1/2] dt-bindings: display: panel-simple: Document support for Microchip AC69T88A 2024-09-19 9:15 [PATCH v2 1/2] dt-bindings: display: panel-simple: Document support for Microchip AC69T88A Manikandan Muralidharan 2024-09-19 9:15 ` [PATCH v2 2/2] drm/panel: simple: Add Microchip AC69T88A LVDS Display panel Manikandan Muralidharan @ 2024-09-21 0:56 ` Rob Herring (Arm) 2024-10-19 14:57 ` Dmitry Baryshkov 2 siblings, 0 replies; 12+ messages in thread From: Rob Herring (Arm) @ 2024-09-21 0:56 UTC (permalink / raw) To: Manikandan Muralidharan Cc: sam, tzimmermann, dri-devel, quic_jesszhan, thierry.reding, airlied, mripard, conor+dt, maarten.lankhorst, krzk+dt, devicetree, neil.armstrong, simona, linux-kernel On Thu, 19 Sep 2024 14:45:47 +0530, Manikandan Muralidharan wrote: > Add Microchip AC69T88A 5" LVDS interface (800x480) TFT LCD panel > compatible string > > Signed-off-by: Manikandan Muralidharan <manikandan.m@microchip.com> > --- > changes in v2: > - Replace microchip,ac69t88a-lvds-panel with > microchip,ac69t88a > --- > .../devicetree/bindings/display/panel/panel-simple.yaml | 2 ++ > 1 file changed, 2 insertions(+) > Acked-by: Rob Herring (Arm) <robh@kernel.org> ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 1/2] dt-bindings: display: panel-simple: Document support for Microchip AC69T88A 2024-09-19 9:15 [PATCH v2 1/2] dt-bindings: display: panel-simple: Document support for Microchip AC69T88A Manikandan Muralidharan 2024-09-19 9:15 ` [PATCH v2 2/2] drm/panel: simple: Add Microchip AC69T88A LVDS Display panel Manikandan Muralidharan 2024-09-21 0:56 ` [PATCH v2 1/2] dt-bindings: display: panel-simple: Document support for Microchip AC69T88A Rob Herring (Arm) @ 2024-10-19 14:57 ` Dmitry Baryshkov 2 siblings, 0 replies; 12+ messages in thread From: Dmitry Baryshkov @ 2024-10-19 14:57 UTC (permalink / raw) To: neil.armstrong, quic_jesszhan, airlied, simona, maarten.lankhorst, mripard, tzimmermann, robh, krzk+dt, conor+dt, thierry.reding, sam, dri-devel, devicetree, linux-kernel, Manikandan Muralidharan On Thu, 19 Sep 2024 14:45:47 +0530, Manikandan Muralidharan wrote: > Add Microchip AC69T88A 5" LVDS interface (800x480) TFT LCD panel > compatible string > > Applied to drm-misc-next, thanks! [1/2] dt-bindings: display: panel-simple: Document support for Microchip AC69T88A commit: c3f0b90f6ffc178bf158aeccae268276363d6945 [2/2] drm/panel: simple: Add Microchip AC69T88A LVDS Display panel commit: 40da1463cd6879f542238b36c1148f517927c595 Best regards, -- With best wishes Dmitry ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-10-19 14:57 UTC | newest] Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2024-09-19 9:15 [PATCH v2 1/2] dt-bindings: display: panel-simple: Document support for Microchip AC69T88A Manikandan Muralidharan 2024-09-19 9:15 ` [PATCH v2 2/2] drm/panel: simple: Add Microchip AC69T88A LVDS Display panel Manikandan Muralidharan 2024-09-20 15:43 ` Dmitry Baryshkov 2024-09-23 5:50 ` Manikandan.M 2024-09-23 6:07 ` Dmitry Baryshkov 2024-09-26 8:17 ` Manikandan.M 2024-09-26 13:32 ` Dmitry Baryshkov 2024-09-26 13:58 ` Maxime Ripard 2024-09-26 23:21 ` Dmitry Baryshkov 2024-10-01 9:33 ` Manikandan.M 2024-09-21 0:56 ` [PATCH v2 1/2] dt-bindings: display: panel-simple: Document support for Microchip AC69T88A Rob Herring (Arm) 2024-10-19 14:57 ` Dmitry Baryshkov
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®