All of lore.kernel.org
 help / color / mirror / Atom feed
From: Neil Armstrong <narmstrong@baylibre.com>
To: Paul Cercueil <paul@crapouillou.net>, Daniel Vetter <daniel@ffwll.ch>
Cc: Sam Ravnborg <sam@ravnborg.org>,
	dri-devel <dri-devel@lists.freedesktop.org>
Subject: Re: MIPI DSI, DBI, and tinydrm drivers
Date: Mon, 25 May 2020 16:58:24 +0200	[thread overview]
Message-ID: <3724279f-8dad-dd32-2f9e-ab4027bc0976@baylibre.com> (raw)
In-Reply-To: <ERPUAQ.BSXG2MHQQJKN2@crapouillou.net>

Hi,

On 24/05/2020 21:50, Paul Cercueil wrote:
> Hi Daniel,
> 
> Le dim. 24 mai 2020 à 20:35, Daniel Vetter <daniel@ffwll.ch> a écrit :
>> On Sun, May 24, 2020 at 7:46 PM Noralf Trønnes <noralf@tronnes.org> wrote:
>>>
>>>
>>>
>>>  Den 24.05.2020 18.13, skrev Paul Cercueil:
>>>  > Hi list,
>>>  >
>>>  > I'd like to open a discussion about the current support of MIPI DSI and
>>>  > DBI panels.
>>>  >
>>>  > Both are standards from the MIPI alliance, both are communication
>>>  > protocols between a LCD controller and a LCD panel, they generally both
>>>  > use the same commands (DCS), the main difference is that DSI is serial
>>>  > and DBI is generally parallel.
>>>  >
>>>  > In the kernel right now, DSI is pretty well implemented. All the
>>>  > infrastucture to register a DSI host, DSI device etc. is there. DSI
>>>  > panels are implemented as regular drm_panel instances, and their drivers
>>>  > go through the DSI API to communicate with the panel, which makes them
>>>  > independent of the DSI host driver.
>>>  >
>>>  > DBI, on the other hand, does not have any of this. All (?) DBI panels
>>>  > are implemented as tinydrm drivers, which make them impossible to use
>>>  > with regular DRM drivers. Writing a standard drm_panel driver is
>>>  > impossible, as there is no concept of host and device. All these tinydrm
>>>  > drivers register their own DBI host as they all do DBI over SPI.
>>>  >
>>>  > I think this needs a good cleanup. Given that DSI and DBI are so
>>>  > similar, it would probably make sense to fuse DBI support into the
>>>  > current DSI code, as trying to update DBI would result in a lot of code
>>>  > being duplicated. With the proper host/device registration mechanism
>>>  > from DSI code, it would be possible to turn most of the tinydrm drivers
>>>  > into regular drm_panel drivers.
>>
>> Do we have drivers with dbi support that actually want to reuse the
>> tinydrm drivers? Good clean is all good, but we need a solid reason
>> for changing stuff. Plus we need to make sure we're not just
>> rediscovering all the old reasons for why we ended up where we are
>> right now in the first place.
> 
> I'm trying to interface a ILI9331 based panel that has a DBI/8080 interface. The ILI9331 is very similar to the ILI9341 which already has a tinydrm driver. My SoC has a dedicated DBI/DSI controller, and I have currently no way to make it work with the ingenic-drm driver.
> 
> The idea of a generic drm_panel tinydrm driver was to avoid duplicating code between regular panel and tinydrm drivers, but the focus of my email was more to point that right now there is no way to interface a DBI panel with a regular DRM driver. Unlike DSI, there are currently no drivers with DBI support as there is no API to register a host DBI driver or a DBI panel driver. This is what's really missing here.
> 

Did you have a look at "Enable ili9341 and l3gd20 on stm32f429-disco" (http://lkml.kernel.org/r/1590378062-7965-1-git-send-email-dillon.minfei@gmail.com) from dillon.minfei@gmail.com,
it uses the STM32 DPI engine to feed a ili9341. Seems it would match your issue.

Neil

> Cheers,
> -Paul
> 
>>>  > The problem then is that these should still be available as tinydrm
>>>  > drivers. If the DSI/DBI panels can somehow register a .update_fb()
>>>  > callback, it would make it possible to have a panel-agnostic tinydrm
>>>  > driver, which would then probably open a lot of doors, and help a lot to
>>>  > clean the mess.
>>>  >
>>>  > I think I can help with that, I just need some guidance - I am fishing
>>>  > in exotic seas here.
>>>  >
>>>  > Thoughts, comments, are very welcome.
>>>
>>>  I did look at this a few months back:
>>>
>>>  drm/mipi-dbi: Support panel drivers
>>>  
>>> https://lists.freedesktop.org/archives/dri-devel/2019-August/228966.html
>>>
>>>  The problem with DBI is that it has reused other busses which means we
>>>  don't have DBI drivers, we have SPI drivers instead (6800/8080 is not
>>>  avail. as busses in Linux yet). DSI and DPI on the other hand has
>>>  dedicated hw controller drivers not shared with other subsystems.
>>>
>>>  My initial tinydrm work used drm_panel, but I was not allowed to use it
>>>  (at least not the way I had done it).
>>
>> Hm, do we have a summary of all the discussions/reasons from back
>> then? All I remember is that it's all that simple, you've done a lot
>> of work exploring all the options, I'm fairly sure I suggested
>> drm_panel even back then but somehow it didn't really work. Would be
>> good if we make sure we don't at least repeat history too much :-)
>>
>> Cheers, Daniel
>>
>>>
>>>  Noralf.
>>>
>>>  >
>>>  > Cheers,
>>>  > -Paul
>>>  >
>>>  >
>>>  _______________________________________________
>>>  dri-devel mailing list
>>>  dri-devel@lists.freedesktop.org
>>>  https://lists.freedesktop.org/mailman/listinfo/dri-devel
>>
>>
>>
>> -- 
>> Daniel Vetter
>> Software Engineer, Intel Corporation
>> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
> 
> 
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

  reply	other threads:[~2020-05-25 14:58 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-24 16:13 MIPI DSI, DBI, and tinydrm drivers Paul Cercueil
2020-05-24 17:46 ` Noralf Trønnes
2020-05-24 18:35   ` Daniel Vetter
2020-05-24 19:50     ` Paul Cercueil
2020-05-25 14:58       ` Neil Armstrong [this message]
2020-05-27 12:10         ` Paul Cercueil
2020-05-25 10:08     ` Noralf Trønnes
2020-05-28 15:27     ` Emil Velikov
2020-06-03 12:15       ` Noralf Trønnes
2020-06-03 20:25         ` Emil Velikov
2020-06-05 12:58           ` Noralf Trønnes
2020-05-24 19:54   ` Paul Cercueil
2020-05-24 20:14     ` Noralf Trønnes
2020-05-24 20:42       ` Paul Cercueil
2020-05-24 21:24         ` Noralf Trønnes
2020-05-24 21:33           ` Paul Cercueil
2020-05-25  0:46             ` Noralf Trønnes
2020-05-25  2:05               ` Paul Cercueil
2020-05-25 13:23                 ` Noralf Trønnes
2020-05-24 20:06 ` Sam Ravnborg
2020-05-25  1:46   ` 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=3724279f-8dad-dd32-2f9e-ab4027bc0976@baylibre.com \
    --to=narmstrong@baylibre.com \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=paul@crapouillou.net \
    --cc=sam@ravnborg.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.