public inbox for linux-arm-kernel@lists.infradead.org 
 help / color / mirror / Atom feed
From: icenowy@aosc•xyz (Icenowy Zheng)
To: linux-arm-kernel@lists•infradead.org
Subject: [PATCH 4/7] drm/panel: Add Sinlinx SinA33 7" panel
Date: Mon, 05 Sep 2016 01:03:03 +0800	[thread overview]
Message-ID: <66681473008583@web28j.yandex.ru> (raw)
In-Reply-To: <20160901153204.11217-5-maxime.ripard@free-electrons.com>

Hi Everyone,

01.09.2016, 23:40, "Maxime Ripard" <maxime.ripard@free-electrons•com>:
> ?The SinA33 has an unidentified panel. Add the timings for it under a new
> ?compatible.



Excuse me...
I will ask a question which is not fully related to the patch here...
If I want to add a generic panel for Q8 tablets, what should it be called?
"allwinner,q8-lcd-panel-800x480"?

And, Hans, do you have any examples for a 1024x600 Q8 A33 tablet?
(If the answer is yes, I think sun8i-a33-q8-tablet.dts will met a split...)

Thanks,
Icenowy

> ?Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons•com>
> ?---
> ??drivers/gpu/drm/panel/panel-simple.c | 26 ++++++++++++++++++++++++++
> ??1 file changed, 26 insertions(+)
>
> ?diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
> ?index 85143d1b9b31..af142e804245 100644
> ?--- a/drivers/gpu/drm/panel/panel-simple.c
> ?+++ b/drivers/gpu/drm/panel/panel-simple.c
> ?@@ -1409,6 +1409,29 @@ static const struct panel_desc shelly_sca07010_bfn_lnn = {
> ??????????.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
> ??};
>
> ?+static const struct drm_display_mode sinlinx_sina33_lcd_7_mode = {
> ?+ .clock = 66000,
> ?+ .hdisplay = 1024,
> ?+ .hsync_start = 1024 + 160,
> ?+ .hsync_end = 1024 + 160 + 70,
> ?+ .htotal = 1024 + 160 + 70 + 90,
> ?+ .vdisplay = 600,
> ?+ .vsync_start = 600 + 127,
> ?+ .vsync_end = 600 + 127 + 20,
> ?+ .vtotal = 600 + 127 + 20 + 3,
> ?+ .vrefresh = 60,
> ?+};
> ?+
> ?+static const struct panel_desc sinlinx_sina33_lcd_7 = {
> ?+ .modes = &sinlinx_sina33_lcd_7_mode,
> ?+ .num_modes = 1,
> ?+ .size = {
> ?+ .width = 154,
> ?+ .height = 87,
> ?+ },
> ?+ .bus_format = MEDIA_BUS_FMT_RGB666_1X18,
> ?+};
> ?+
> ??static const struct drm_display_mode starry_kr122ea0sra_mode = {
> ??????????.clock = 147000,
> ??????????.hdisplay = 1920,
> ?@@ -1644,6 +1667,9 @@ static const struct of_device_id platform_of_match[] = {
> ??????????????????.compatible = "shelly,sca07010-bfn-lnn",
> ??????????????????.data = &shelly_sca07010_bfn_lnn,
> ??????????}, {
> ?+ .compatible = "sinlinx,sina33-lcd-7",
> ?+ .data = &sinlinx_sina33_lcd_7,
> ?+ }, {
> ??????????????????.compatible = "starry,kr122ea0sra",
> ??????????????????.data = &starry_kr122ea0sra,
> ??????????}, {
> ?--
> ?2.9.2
>
> ?_______________________________________________
> ?linux-arm-kernel mailing list
> ?linux-arm-kernel at lists.infradead.org
> ?http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2016-09-04 17:03 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-01 15:31 [PATCH 0/7] drm/sun4i: Introduce A33 display driver Maxime Ripard
2016-09-01 15:31 ` [PATCH 1/7] drm/sun4i: support TCONs without channel 1 Maxime Ripard
2016-09-02  1:47   ` Chen-Yu Tsai
2016-09-01 15:31 ` [PATCH 2/7] drm/sun4i: support A33 tcon Maxime Ripard
2016-09-02  6:02   ` Chen-Yu Tsai
2016-09-05 20:22     ` Maxime Ripard
2016-09-01 15:32 ` [PATCH 3/7] drm/sun4i: Add SAT and DRC drivers Maxime Ripard
2016-09-02  6:45   ` Chen-Yu Tsai
2016-09-05 20:27     ` Maxime Ripard
2016-09-04 20:03   ` [linux-sunxi] " Peter Korsgaard
2016-09-06 13:59     ` Maxime Ripard
2016-09-01 15:32 ` [PATCH 4/7] drm/panel: Add Sinlinx SinA33 7" panel Maxime Ripard
2016-09-02  7:01   ` Chen-Yu Tsai
2016-09-04 17:03   ` Icenowy Zheng [this message]
2016-09-05 20:02     ` Maxime Ripard
2016-09-06  2:53       ` Chen-Yu Tsai
2016-09-06  9:12       ` Thierry Reding
2016-09-06 14:33         ` Maxime Ripard
2016-09-01 15:32 ` [PATCH 5/7] ARM: sun8i: a33: Add display pipeline Maxime Ripard
2016-09-02  6:28   ` Chen-Yu Tsai
2016-09-05 20:21     ` Maxime Ripard
2016-09-06  2:51       ` Chen-Yu Tsai
2016-09-01 15:32 ` [PATCH 6/7] ARM: sun8i: a33: Add RGB666 pins Maxime Ripard
2016-09-02  1:44   ` [linux-sunxi] " Chen-Yu Tsai
2016-09-01 15:32 ` [PATCH 7/7] ARM: sun8i: sina33: Enable display Maxime Ripard
2016-09-02  1:30 ` [PATCH 0/7] drm/sun4i: Introduce A33 display driver Icenowy Zheng
2016-09-02 19:06   ` Maxime Ripard
2016-09-03  1:43     ` Chen-Yu Tsai
2016-09-05 20:37       ` Maxime Ripard
2016-09-06  2:50         ` Chen-Yu Tsai
2016-09-06 18:54           ` Maxime Ripard
2016-09-07  4:49             ` Chen-Yu Tsai
2016-09-12  9:56               ` Maxime Ripard

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=66681473008583@web28j.yandex.ru \
    --to=icenowy@aosc$(echo .)xyz \
    --cc=linux-arm-kernel@lists$(echo .)infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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