lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <CAJMQK-ibOOdofUVso=RvLz5OiCzH0kaQ16VMgXY7Qpxm5NEEYA@mail.gmail.com>
Date:   Mon, 21 Feb 2022 13:52:49 +0800
From:   Hsin-Yi Wang <hsinyi@...omium.org>
To:     Rex Nie <rexnie3@...il.com>
Cc:     linux-arm-kernel@...ts.infradead.org,
        Thierry Reding <thierry.reding@...il.com>,
        Sam Ravnborg <sam@...nborg.org>,
        David Airlie <airlied@...ux.ie>,
        Daniel Vetter <daniel@...ll.ch>,
        Rob Herring <robh+dt@...nel.org>,
        dri-devel@...ts.freedesktop.org, devicetree@...r.kernel.org,
        linux-kernel@...r.kernel.org,
        Daocai Nie <niedaocai@...qin.corp-partner.google.com>
Subject: Re: [PATCH 1/2] drm/panel-edp: Add eDP innolux panel support

On Fri, Feb 18, 2022 at 5:59 PM Rex Nie <rexnie3@...il.com> wrote:
>
> Add hsinyi@...omium.org to cc list
>
> On Fri, 18 Feb 2022 at 17:44, Rex Nie <rexnie3@...il.com> wrote:
>>
>> From: Daocai Nie <niedaocai@...qin.corp-partner.google.com>
>>
>> Add support for the 14" innolux,n140hca-eac eDP panel.
>>
>> Signed-off-by: Daocai Nie <niedaocai@...qin.corp-partner.google.com>

Acked-by: Hsin-Yi Wang <hsinyi@...omium.org>
>> ---
>>  drivers/gpu/drm/panel/panel-edp.c | 26 ++++++++++++++++++++++++++
>>  1 file changed, 26 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/panel/panel-edp.c b/drivers/gpu/drm/panel/panel-edp.c
>> index f7bfcf63d48e..f5f9c9cb26ba 100644
>> --- a/drivers/gpu/drm/panel/panel-edp.c
>> +++ b/drivers/gpu/drm/panel/panel-edp.c
>> @@ -1330,6 +1330,29 @@ static const struct panel_desc innolux_n125hce_gn1 = {
>>         },
>>  };
>>
>> +static const struct display_timing innolux_n140hca_eac_timing = {
>> +       .pixelclock = { 72600000, 76420000, 80240000 },
>> +       .hactive = { 1920, 1920, 1920 },
>> +       .hfront_porch = { 80, 80, 80 },
>> +       .hback_porch = { 190, 190, 190 },
>> +       .hsync_len = { 60, 60, 60 },
>> +       .vactive = { 1080, 1080, 1080 },
>> +       .vfront_porch = { 6, 6, 6 },
>> +       .vback_porch = { 38, 38, 38 },
>> +       .vsync_len = { 8, 8, 8 },
>> +       .flags = DISPLAY_FLAGS_VSYNC_LOW | DISPLAY_FLAGS_HSYNC_LOW,
>> +};
>> +
>> +static const struct panel_desc innolux_n140hca_eac = {
>> +       .timings = &innolux_n140hca_eac_timing,
>> +       .num_timings = 1,
>> +       .bpc = 6,
>> +       .size = {
>> +               .width = 309,
>> +               .height = 174,
>> +       },
>> +};
>> +
>>  static const struct drm_display_mode innolux_p120zdg_bf1_mode = {
>>         .clock = 206016,
>>         .hdisplay = 2160,
>> @@ -1750,6 +1773,9 @@ static const struct of_device_id platform_of_match[] = {
>>         }, {
>>                 .compatible = "innolux,n125hce-gn1",
>>                 .data = &innolux_n125hce_gn1,
>> +       }, {
>> +               .compatible = "innolux,n140hca-eac",
>> +               .data = &innolux_n140hca_eac,
>>         }, {
>>                 .compatible = "innolux,p120zdg-bf1",
>>                 .data = &innolux_p120zdg_bf1,
>> --
>> 2.25.1
>>

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ