All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] video: simple_panel: Add sharp,lq123p1jx31 display
@ 2020-10-27 21:41 Alper Nebi Yasak
  2020-10-27 21:41 ` [PATCH 2/2] video: simple_panel: Add boe,nv101wxmn51 display Alper Nebi Yasak
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Alper Nebi Yasak @ 2020-10-27 21:41 UTC (permalink / raw)
  To: u-boot

Add "sharp,lq123p1jx31" to the compatible node. This is the panel for
chromebook_kevin.

Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
---

 drivers/video/simple_panel.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/video/simple_panel.c b/drivers/video/simple_panel.c
index 6c624c376991..d454c11f7eea 100644
--- a/drivers/video/simple_panel.c
+++ b/drivers/video/simple_panel.c
@@ -108,6 +108,7 @@ static const struct udevice_id simple_panel_ids[] = {
 	{ .compatible = "auo,b133htn01" },
 	{ .compatible = "boe,nv140fhmn49" },
 	{ .compatible = "lg,lb070wv8" },
+	{ .compatible = "sharp,lq123p1jx31" },
 	{ }
 };
 
-- 
2.28.0

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 2/2] video: simple_panel: Add boe,nv101wxmn51 display
  2020-10-27 21:41 [PATCH 1/2] video: simple_panel: Add sharp,lq123p1jx31 display Alper Nebi Yasak
@ 2020-10-27 21:41 ` Alper Nebi Yasak
  2020-10-27 21:52   ` Mark Kettenis
                     ` (2 more replies)
  2020-11-03 15:11 ` [PATCH 1/2] video: simple_panel: Add sharp,lq123p1jx31 display Simon Glass
  2021-02-22 18:40 ` Anatolij Gustschin
  2 siblings, 3 replies; 8+ messages in thread
From: Alper Nebi Yasak @ 2020-10-27 21:41 UTC (permalink / raw)
  To: u-boot

Add "boe,nv101wxmn51" to the compatible node. This is the panel for
chromebook_bob.

Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
---
I didn't test this as I don't have a gru-bob, but this panel is listed
among Linux's simple-panel compatibles [1] just like gru-kevin's (which
I tested) so I strongly believe it should work.

[1] https://www.kernel.org/doc/Documentation/devicetree/bindings/display/panel/panel-simple.yaml

 drivers/video/simple_panel.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/video/simple_panel.c b/drivers/video/simple_panel.c
index d454c11f7eea..0f674c95c00e 100644
--- a/drivers/video/simple_panel.c
+++ b/drivers/video/simple_panel.c
@@ -109,6 +109,7 @@ static const struct udevice_id simple_panel_ids[] = {
 	{ .compatible = "boe,nv140fhmn49" },
 	{ .compatible = "lg,lb070wv8" },
 	{ .compatible = "sharp,lq123p1jx31" },
+	{ .compatible = "boe,nv101wxmn51" },
 	{ }
 };
 
-- 
2.28.0

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 2/2] video: simple_panel: Add boe,nv101wxmn51 display
  2020-10-27 21:41 ` [PATCH 2/2] video: simple_panel: Add boe,nv101wxmn51 display Alper Nebi Yasak
@ 2020-10-27 21:52   ` Mark Kettenis
  2020-10-27 22:59     ` Alper Nebi Yasak
  2020-11-03 15:11   ` Simon Glass
  2021-02-22 18:41   ` Anatolij Gustschin
  2 siblings, 1 reply; 8+ messages in thread
From: Mark Kettenis @ 2020-10-27 21:52 UTC (permalink / raw)
  To: u-boot

> From: Alper Nebi Yasak <alpernebiyasak@gmail.com>
> Date: Wed, 28 Oct 2020 00:41:55 +0300
> 
> Add "boe,nv101wxmn51" to the compatible node. This is the panel for
> chromebook_bob.

I do have bob, and would be interested in testing chainloading u-boot
on it.  Can you give some guidance on how to test this?  Which set of
patches do I need?

Thanks,

Mark

> Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
> ---
> I didn't test this as I don't have a gru-bob, but this panel is listed
> among Linux's simple-panel compatibles [1] just like gru-kevin's (which
> I tested) so I strongly believe it should work.
> 
> [1] https://www.kernel.org/doc/Documentation/devicetree/bindings/display/panel/panel-simple.yaml
> 
>  drivers/video/simple_panel.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/video/simple_panel.c b/drivers/video/simple_panel.c
> index d454c11f7eea..0f674c95c00e 100644
> --- a/drivers/video/simple_panel.c
> +++ b/drivers/video/simple_panel.c
> @@ -109,6 +109,7 @@ static const struct udevice_id simple_panel_ids[] = {
>  	{ .compatible = "boe,nv140fhmn49" },
>  	{ .compatible = "lg,lb070wv8" },
>  	{ .compatible = "sharp,lq123p1jx31" },
> +	{ .compatible = "boe,nv101wxmn51" },
>  	{ }
>  };
>  
> -- 
> 2.28.0
> 
> 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH 2/2] video: simple_panel: Add boe,nv101wxmn51 display
  2020-10-27 21:52   ` Mark Kettenis
@ 2020-10-27 22:59     ` Alper Nebi Yasak
  0 siblings, 0 replies; 8+ messages in thread
From: Alper Nebi Yasak @ 2020-10-27 22:59 UTC (permalink / raw)
  To: u-boot

On 28/10/2020 00:52, Mark Kettenis wrote:
>> From: Alper Nebi Yasak <alpernebiyasak@gmail.com>
>> Date: Wed, 28 Oct 2020 00:41:55 +0300
>>
>> Add "boe,nv101wxmn51" to the compatible node. This is the panel for
>> chromebook_bob.
> 
> I do have bob, and would be interested in testing chainloading u-boot
> on it.  Can you give some guidance on how to test this?  Which set of
> patches do I need?
> 

By chainloading I mean the RW_LEGACY thing because I couldn't manage to
do it as a "Chrome OS kernel" yet.

For bob, you should get this branch:

    https://github.com/alpernebbi/u-boot/commits/rk3399-gru-bob-edp/wip

I'm not putting my hacks in the bob branch since it should be possible
to flash it to SPI and boot from there as things are normally done.
So you might need to port my hacks (and other interesing changes) from
the other one if you want chainloading:

    https://github.com/alpernebbi/u-boot/commits/rk3399-gru-kevin/wip

I've tried to explain how to build and use things in 'wip' commit
messages in the second one.

If things are unclear there I'd be glad to help, but it might be too
spammy to do it as replies to this patch.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH 1/2] video: simple_panel: Add sharp,lq123p1jx31 display
  2020-10-27 21:41 [PATCH 1/2] video: simple_panel: Add sharp,lq123p1jx31 display Alper Nebi Yasak
  2020-10-27 21:41 ` [PATCH 2/2] video: simple_panel: Add boe,nv101wxmn51 display Alper Nebi Yasak
@ 2020-11-03 15:11 ` Simon Glass
  2021-02-22 18:40 ` Anatolij Gustschin
  2 siblings, 0 replies; 8+ messages in thread
From: Simon Glass @ 2020-11-03 15:11 UTC (permalink / raw)
  To: u-boot

On Tue, 27 Oct 2020 at 15:42, Alper Nebi Yasak <alpernebiyasak@gmail.com> wrote:
>
> Add "sharp,lq123p1jx31" to the compatible node. This is the panel for
> chromebook_kevin.
>
> Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
> ---
>
>  drivers/video/simple_panel.c | 1 +
>  1 file changed, 1 insertion(+)

Reviewed-by: Simon Glass <sjg@chromium.org>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH 2/2] video: simple_panel: Add boe,nv101wxmn51 display
  2020-10-27 21:41 ` [PATCH 2/2] video: simple_panel: Add boe,nv101wxmn51 display Alper Nebi Yasak
  2020-10-27 21:52   ` Mark Kettenis
@ 2020-11-03 15:11   ` Simon Glass
  2021-02-22 18:41   ` Anatolij Gustschin
  2 siblings, 0 replies; 8+ messages in thread
From: Simon Glass @ 2020-11-03 15:11 UTC (permalink / raw)
  To: u-boot

On Tue, 27 Oct 2020 at 15:42, Alper Nebi Yasak <alpernebiyasak@gmail.com> wrote:
>
> Add "boe,nv101wxmn51" to the compatible node. This is the panel for
> chromebook_bob.
>
> Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
> ---
> I didn't test this as I don't have a gru-bob, but this panel is listed
> among Linux's simple-panel compatibles [1] just like gru-kevin's (which
> I tested) so I strongly believe it should work.
>
> [1] https://www.kernel.org/doc/Documentation/devicetree/bindings/display/panel/panel-simple.yaml
>
>  drivers/video/simple_panel.c | 1 +
>  1 file changed, 1 insertion(+)

Reviewed-by: Simon Glass <sjg@chromium.org>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH 1/2] video: simple_panel: Add sharp,lq123p1jx31 display
  2020-10-27 21:41 [PATCH 1/2] video: simple_panel: Add sharp,lq123p1jx31 display Alper Nebi Yasak
  2020-10-27 21:41 ` [PATCH 2/2] video: simple_panel: Add boe,nv101wxmn51 display Alper Nebi Yasak
  2020-11-03 15:11 ` [PATCH 1/2] video: simple_panel: Add sharp,lq123p1jx31 display Simon Glass
@ 2021-02-22 18:40 ` Anatolij Gustschin
  2 siblings, 0 replies; 8+ messages in thread
From: Anatolij Gustschin @ 2021-02-22 18:40 UTC (permalink / raw)
  To: u-boot

On Wed, 28 Oct 2020 00:41:54 +0300
Alper Nebi Yasak alpernebiyasak at gmail.com wrote:

> Add "sharp,lq123p1jx31" to the compatible node. This is the panel for
> chromebook_kevin.
> 
> Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
> ---
> 
>  drivers/video/simple_panel.c | 1 +
>  1 file changed, 1 insertion(+)

Applied to u-boot-video/master, thanks!

--
Anatolij

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH 2/2] video: simple_panel: Add boe,nv101wxmn51 display
  2020-10-27 21:41 ` [PATCH 2/2] video: simple_panel: Add boe,nv101wxmn51 display Alper Nebi Yasak
  2020-10-27 21:52   ` Mark Kettenis
  2020-11-03 15:11   ` Simon Glass
@ 2021-02-22 18:41   ` Anatolij Gustschin
  2 siblings, 0 replies; 8+ messages in thread
From: Anatolij Gustschin @ 2021-02-22 18:41 UTC (permalink / raw)
  To: u-boot

On Wed, 28 Oct 2020 00:41:55 +0300
Alper Nebi Yasak alpernebiyasak at gmail.com wrote:

> Add "boe,nv101wxmn51" to the compatible node. This is the panel for
> chromebook_bob.
> 
> Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
> ---
> I didn't test this as I don't have a gru-bob, but this panel is listed
> among Linux's simple-panel compatibles [1] just like gru-kevin's (which
> I tested) so I strongly believe it should work.
> 
> [1] https://www.kernel.org/doc/Documentation/devicetree/bindings/display/panel/panel-simple.yaml
> 
>  drivers/video/simple_panel.c | 1 +
>  1 file changed, 1 insertion(+)

Applied to u-boot-video/master, thanks!

--
Anatolij

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-02-22 18:41 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-27 21:41 [PATCH 1/2] video: simple_panel: Add sharp,lq123p1jx31 display Alper Nebi Yasak
2020-10-27 21:41 ` [PATCH 2/2] video: simple_panel: Add boe,nv101wxmn51 display Alper Nebi Yasak
2020-10-27 21:52   ` Mark Kettenis
2020-10-27 22:59     ` Alper Nebi Yasak
2020-11-03 15:11   ` Simon Glass
2021-02-22 18:41   ` Anatolij Gustschin
2020-11-03 15:11 ` [PATCH 1/2] video: simple_panel: Add sharp,lq123p1jx31 display Simon Glass
2021-02-22 18:40 ` Anatolij Gustschin

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.