From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: Sascha Hauer <sha@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 3/4] video: add MIPI DBI Type C Option 3 support
Date: Mon, 31 Jan 2022 11:28:53 +0100 [thread overview]
Message-ID: <bebf48ce-c243-3052-0abb-f58ef246fa82@pengutronix.de> (raw)
In-Reply-To: <20220131102141.GC23490@pengutronix.de>
On 31.01.22 11:21, Sascha Hauer wrote:
> On Mon, Jan 31, 2022 at 09:03:01AM +0100, Ahmad Fatoum wrote:
>> Import the Linux v5.15 state of the driver to allow easy porting of
>> MIPI-DBI displays like the Ilitek 9431 added in a follow-up commit.
>>
>> Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
>> ---
>> commands/Kconfig | 19 ++
>> commands/Makefile | 1 +
>> commands/mipi_dbi.c | 104 ++++++++
>> drivers/video/Kconfig | 14 ++
>> drivers/video/Makefile | 1 +
>> drivers/video/mipi_dbi.c | 467 +++++++++++++++++++++++++++++++++++
>> include/spi/spi.h | 20 ++
>> include/video/mipi_dbi.h | 105 ++++++++
>> include/video/mipi_display.h | 150 +++++++++++
>> 9 files changed, 881 insertions(+)
>> create mode 100644 commands/mipi_dbi.c
>> create mode 100644 drivers/video/mipi_dbi.c
>> create mode 100644 include/video/mipi_dbi.h
>> create mode 100644 include/video/mipi_display.h
>>
>> diff --git a/commands/Kconfig b/commands/Kconfig
>> index ba8ca5cdebce..2e13a4ed90bd 100644
>> --- a/commands/Kconfig
>> +++ b/commands/Kconfig
>> @@ -1969,6 +1969,25 @@ config CMD_SPI
>> -w BIT bits per word (default 8)
>> -v verbose
>>
>> +config CMD_MIPI_DBI
>> + bool
>> + depends on DRIVER_VIDEO_MIPI_DBI && SPI
>> + select PRINTF_HEXSTR
>> + prompt "mipi_dbi command"
>> + help
>> + Write/read from MIPI DBI device on SPI bus
>> +
>> + Usage: mipi_dbi [-brcmfwv] DATA...
>> +
>> + Options:
>> + -b BUS SPI bus number (default 0)
>> + -r COUNT bytes to read
>> + -c chip select (default 0)
>> + -m MODE SPI mode (default 0)
>> + -f HZ max speed frequency, in Hz (default 1 MHz)
>> + -w BIT bits per word (default 8)
>> + -v verbose
>
> This doesn't match the actual command. Copy-paste from CMD_SPI above?
>
>> +BAREBOX_CMD_HELP_START(mipi_dbi)
>> +BAREBOX_CMD_HELP_TEXT("Options:")
>> +BAREBOX_CMD_HELP_OPT ("-l\t", "list all MIPI DBI devices")
>> +BAREBOX_CMD_HELP_OPT ("-d DEVICE", "select specific device (default is first registered)")
>> +BAREBOX_CMD_HELP_OPT ("-w", "issue write command")
>> +BAREBOX_CMD_HELP_END
>> +
>> +
>> config DRIVER_VIDEO_BACKLIGHT
>> bool "Add backlight support"
>> help
>> @@ -178,4 +181,15 @@ config DRIVER_VIDEO_SIMPLE_PANEL
>> Linux Kernel implementation this one is able to understand display-timings
>> nodes so that it's not necessary to keep a list of all known displays
>> with their corresponding timings in barebox.
>> +
>> +config DRIVER_VIDEO_PANEL_ILITEK_ILI9341
>> + tristate "Ilitek ILI9341 240x320 QVGA panels"
>> + depends on OFTREE && SPI
>> + select DRIVER_VIDEO_MIPI_DBI
>> + select VIDEO_VPL
>> + help
>> + Say Y here if you want to enable support for Ilitek IL9341
>> + QVGA (240x320) RGB panels. support serial & parallel rgb
>> + interface.
>
> This hunk should be in 4/4.
Ouch. Will fix both for v2.
Thanks,
Ahmad
>
> Sascha
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2022-01-31 10:30 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-31 8:02 [PATCH 0/4] video: add STM32F429-DISCO video pipeline support Ahmad Fatoum
2022-01-31 8:02 ` [PATCH 1/4] gpiolib: implement gpiod_set_value Ahmad Fatoum
2022-01-31 8:03 ` [PATCH 2/4] video: add driver for STM32 LCD-TFT Display Controller Ahmad Fatoum
2022-01-31 8:03 ` [PATCH 3/4] video: add MIPI DBI Type C Option 3 support Ahmad Fatoum
2022-01-31 10:21 ` Sascha Hauer
2022-01-31 10:28 ` Ahmad Fatoum [this message]
2022-01-31 8:03 ` [PATCH 4/4] video: add Ilitek ILI9341 panel support Ahmad Fatoum
2022-02-02 9:55 [PATCH 0/4] video: add STM32F429-DISCO video pipeline support Ahmad Fatoum
2022-02-02 9:55 ` [PATCH 3/4] video: add MIPI DBI Type C Option 3 support Ahmad Fatoum
2022-02-03 14:30 ` Thorsten Scherer
2022-02-03 14:34 ` Ahmad Fatoum
2022-02-03 14:34 ` Thorsten Scherer
2022-02-03 16:37 ` Ahmad Fatoum
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=bebf48ce-c243-3052-0abb-f58ef246fa82@pengutronix.de \
--to=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=sha@pengutronix.de \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox