From: Rob Herring <robh@kernel.org>
To: "Noralf Trønnes" <noralf@tronnes.org>
Cc: "Leonard Göhrs" <l.goehrs@pengutronix.de>,
"Conor Dooley" <conor@kernel.org>,
"Alexandre TORGUE" <alexandre.torgue@foss.st.com>,
"Krzysztof Kozlowski" <krzysztof.kozlowski@linaro.org>,
"Neil Armstrong" <neil.armstrong@linaro.org>,
"Sam Ravnborg" <sam@ravnborg.org>,
"David Airlie" <airlied@gmail.com>,
"Daniel Vetter" <daniel@ffwll.ch>,
kernel@pengutronix.de,
"Conor Dooley" <conor.dooley@microchip.com>,
"Krzysztof Kozlowski" <krzysztof.kozlowski+dt@linaro.org>,
"Conor Dooley" <conor+dt@kernel.org>,
dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 2/8] dt-bindings: display: panel: mipi-dbi-spi: add shineworld lh133k compatible
Date: Thu, 15 Jun 2023 14:20:21 -0600 [thread overview]
Message-ID: <20230615202021.GA1594065-robh@kernel.org> (raw)
In-Reply-To: <81007308-02dc-b1fb-f336-21bc25033c12@tronnes.org>
On Thu, Jun 15, 2023 at 12:35:25PM +0200, Noralf Trønnes wrote:
>
>
> On 6/14/23 14:32, Leonard Göhrs wrote:
> > The Shineworld LH133K is a 1.3" 240x240px RGB LCD with a MIPI DBI
> > compatible SPI interface.
> > The initialization procedure is quite basic with the exception of
> > requiring inverted colors.
> > A basic mipi-dbi-cmd[1] script to get the display running thus looks
> > like this:
> >
> > $ cat shineworld,lh133k.txt
> > command 0x11 # exit sleep mode
> > delay 120
> >
> > # The display seems to require display color inversion, so enable it.
> > command 0x21 # INVON
> >
> > # Enable normal display mode (in contrast to partial display mode).
> > command 0x13 # NORON
> > command 0x29 # MIPI_DCS_SET_DISPLAY_ON
> >
> > $ mipi-dbi-cmd shineworld,lh133k.bin shineworld,lh133k.txt
> >
> > [1]: https://github.com/notro/panel-mipi-dbi
> >
> > Signed-off-by: Leonard Göhrs <l.goehrs@pengutronix.de>
> > Acked-by: Conor Dooley <conor.dooley@microchip.com>
> > ---
>
> Normally I would take this trough drm-misc-next but -rc6 is the cutoff
> so if I do that it won't make it to 6.5. If the other patches make it to
> 6.5 the dtb checks will fail. I'm okay with the patches going through
> another tree if that's preferred. Let me know if I should apply the
> mipi-dbi-spi patches.
I've applied patches 1, 2, and 3. The netdev folks should pick up the
other bindings.
Rob
WARNING: multiple messages have this Message-ID (diff)
From: Rob Herring <robh@kernel.org>
To: "Noralf Trønnes" <noralf@tronnes.org>
Cc: "Conor Dooley" <conor+dt@kernel.org>,
"Neil Armstrong" <neil.armstrong@linaro.org>,
"Conor Dooley" <conor.dooley@microchip.com>,
kernel@pengutronix.de,
"Krzysztof Kozlowski" <krzysztof.kozlowski+dt@linaro.org>,
devicetree@vger.kernel.org,
"Alexandre TORGUE" <alexandre.torgue@foss.st.com>,
"Conor Dooley" <conor@kernel.org>,
linux-kernel@vger.kernel.org,
"Krzysztof Kozlowski" <krzysztof.kozlowski@linaro.org>,
dri-devel@lists.freedesktop.org,
"Leonard Göhrs" <l.goehrs@pengutronix.de>,
"Sam Ravnborg" <sam@ravnborg.org>
Subject: Re: [PATCH v2 2/8] dt-bindings: display: panel: mipi-dbi-spi: add shineworld lh133k compatible
Date: Thu, 15 Jun 2023 14:20:21 -0600 [thread overview]
Message-ID: <20230615202021.GA1594065-robh@kernel.org> (raw)
In-Reply-To: <81007308-02dc-b1fb-f336-21bc25033c12@tronnes.org>
On Thu, Jun 15, 2023 at 12:35:25PM +0200, Noralf Trønnes wrote:
>
>
> On 6/14/23 14:32, Leonard Göhrs wrote:
> > The Shineworld LH133K is a 1.3" 240x240px RGB LCD with a MIPI DBI
> > compatible SPI interface.
> > The initialization procedure is quite basic with the exception of
> > requiring inverted colors.
> > A basic mipi-dbi-cmd[1] script to get the display running thus looks
> > like this:
> >
> > $ cat shineworld,lh133k.txt
> > command 0x11 # exit sleep mode
> > delay 120
> >
> > # The display seems to require display color inversion, so enable it.
> > command 0x21 # INVON
> >
> > # Enable normal display mode (in contrast to partial display mode).
> > command 0x13 # NORON
> > command 0x29 # MIPI_DCS_SET_DISPLAY_ON
> >
> > $ mipi-dbi-cmd shineworld,lh133k.bin shineworld,lh133k.txt
> >
> > [1]: https://github.com/notro/panel-mipi-dbi
> >
> > Signed-off-by: Leonard Göhrs <l.goehrs@pengutronix.de>
> > Acked-by: Conor Dooley <conor.dooley@microchip.com>
> > ---
>
> Normally I would take this trough drm-misc-next but -rc6 is the cutoff
> so if I do that it won't make it to 6.5. If the other patches make it to
> 6.5 the dtb checks will fail. I'm okay with the patches going through
> another tree if that's preferred. Let me know if I should apply the
> mipi-dbi-spi patches.
I've applied patches 1, 2, and 3. The netdev folks should pick up the
other bindings.
Rob
next prev parent reply other threads:[~2023-06-15 20:20 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-14 12:32 [PATCH v2 0/8] ARM: dts: stm32: lxa-tac: add Linux Automation GmbH TAC Leonard Göhrs
2023-06-14 12:32 ` [PATCH v2 1/8] dt-bindings: vendor-prefixes: Add prefix for ShineWorld Innovations Leonard Göhrs
2023-06-14 12:32 ` [PATCH v2 2/8] dt-bindings: display: panel: mipi-dbi-spi: add shineworld lh133k compatible Leonard Göhrs
2023-06-14 12:32 ` Leonard Göhrs
2023-06-15 10:35 ` Noralf Trønnes
2023-06-15 10:35 ` Noralf Trønnes
2023-06-15 20:20 ` Rob Herring [this message]
2023-06-15 20:20 ` Rob Herring
2023-06-14 12:32 ` [PATCH v2 3/8] dt-bindings: display: panel: mipi-dbi-spi: add spi-3wire property Leonard Göhrs
2023-06-14 12:32 ` Leonard Göhrs
2023-06-15 10:35 ` Noralf Trønnes
2023-06-15 10:35 ` Noralf Trønnes
2023-06-14 12:32 ` [PATCH v2 4/8] dt-bindings: can: m_can: change from additional- to unevaluatedProperties Leonard Göhrs
2023-06-14 17:16 ` Conor Dooley
2023-06-14 18:40 ` Rob Herring
2023-06-15 6:54 ` Chandrasekar R
2023-06-15 6:54 ` Chandrasekar R
2023-06-14 12:32 ` [PATCH v2 5/8] dt-bindings: net: dsa: microchip: add interrupts property for ksz switches Leonard Göhrs
2023-06-14 17:17 ` Conor Dooley
2023-06-14 12:32 ` [PATCH v2 6/8] ARM: dts: stm32: Add pinmux groups for Linux Automation GmbH TAC Leonard Göhrs
2023-06-14 12:32 ` Leonard Göhrs
2023-06-14 12:32 ` [PATCH v2 7/8] dt-bindings: arm: stm32: Add compatible string for Linux Automation LXA TAC Leonard Göhrs
2023-06-14 12:32 ` Leonard Göhrs
2023-06-14 12:32 ` [PATCH v2 8/8] ARM: dts: stm32: lxa-tac: add Linux Automation GmbH TAC Leonard Göhrs
2023-06-14 12:32 ` Leonard Göhrs
2023-06-14 17:19 ` [PATCH v2 0/8] " Conor Dooley
2023-07-11 7:57 ` Alexandre TORGUE
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=20230615202021.GA1594065-robh@kernel.org \
--to=robh@kernel.org \
--cc=airlied@gmail.com \
--cc=alexandre.torgue@foss.st.com \
--cc=conor+dt@kernel.org \
--cc=conor.dooley@microchip.com \
--cc=conor@kernel.org \
--cc=daniel@ffwll.ch \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=kernel@pengutronix.de \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=krzysztof.kozlowski@linaro.org \
--cc=l.goehrs@pengutronix.de \
--cc=linux-kernel@vger.kernel.org \
--cc=neil.armstrong@linaro.org \
--cc=noralf@tronnes.org \
--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.