diff mbox series

drm/panel: simple: Fix Innolux G101ICE-L01 bus flags

Message ID 20231008223315.279215-1-marex@denx.de (mailing list archive)
State New, archived
Headers show
Series drm/panel: simple: Fix Innolux G101ICE-L01 bus flags | expand

Commit Message

Marek Vasut Oct. 8, 2023, 10:33 p.m. UTC
Add missing .bus_flags = DRM_BUS_FLAG_DE_HIGH to this panel description,
ones which match both the datasheet and the panel display_timing flags .

Fixes: 1e29b840af9f ("drm/panel: simple: Add Innolux G101ICE-L01 panel")
Signed-off-by: Marek Vasut <marex@denx.de>
---
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: David Airlie <airlied@gmail.com>
Cc: Jessica Zhang <quic_jesszhan@quicinc.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Maxime Ripard <mripard@kernel.org>
Cc: Neil Armstrong <neil.armstrong@linaro.org>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Thomas Zimmermann <tzimmermann@suse.de>
Cc: dri-devel@lists.freedesktop.org
---
 drivers/gpu/drm/panel/panel-simple.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Neil Armstrong Oct. 9, 2023, 8:58 a.m. UTC | #1
On 09/10/2023 00:33, Marek Vasut wrote:
> Add missing .bus_flags = DRM_BUS_FLAG_DE_HIGH to this panel description,
> ones which match both the datasheet and the panel display_timing flags .
> 
> Fixes: 1e29b840af9f ("drm/panel: simple: Add Innolux G101ICE-L01 panel")
> Signed-off-by: Marek Vasut <marex@denx.de>
> ---
> Cc: Daniel Vetter <daniel@ffwll.ch>
> Cc: David Airlie <airlied@gmail.com>
> Cc: Jessica Zhang <quic_jesszhan@quicinc.com>
> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
> Cc: Maxime Ripard <mripard@kernel.org>
> Cc: Neil Armstrong <neil.armstrong@linaro.org>
> Cc: Sam Ravnborg <sam@ravnborg.org>
> Cc: Thomas Zimmermann <tzimmermann@suse.de>
> Cc: dri-devel@lists.freedesktop.org
> ---
>   drivers/gpu/drm/panel/panel-simple.c | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
> index 44c11c418cd56..8e4ea15f0e1e5 100644
> --- a/drivers/gpu/drm/panel/panel-simple.c
> +++ b/drivers/gpu/drm/panel/panel-simple.c
> @@ -2318,6 +2318,7 @@ static const struct panel_desc innolux_g101ice_l01 = {
>   		.disable = 200,
>   	},
>   	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
> +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
>   	.connector_type = DRM_MODE_CONNECTOR_LVDS,
>   };
>   

Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Marek Vasut Nov. 16, 2023, 9:15 p.m. UTC | #2
On 10/9/23 10:58, Neil Armstrong wrote:
> On 09/10/2023 00:33, Marek Vasut wrote:
>> Add missing .bus_flags = DRM_BUS_FLAG_DE_HIGH to this panel description,
>> ones which match both the datasheet and the panel display_timing flags .
>>
>> Fixes: 1e29b840af9f ("drm/panel: simple: Add Innolux G101ICE-L01 panel")
>> Signed-off-by: Marek Vasut <marex@denx.de>
>> ---
>> Cc: Daniel Vetter <daniel@ffwll.ch>
>> Cc: David Airlie <airlied@gmail.com>
>> Cc: Jessica Zhang <quic_jesszhan@quicinc.com>
>> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
>> Cc: Maxime Ripard <mripard@kernel.org>
>> Cc: Neil Armstrong <neil.armstrong@linaro.org>
>> Cc: Sam Ravnborg <sam@ravnborg.org>
>> Cc: Thomas Zimmermann <tzimmermann@suse.de>
>> Cc: dri-devel@lists.freedesktop.org
>> ---
>>   drivers/gpu/drm/panel/panel-simple.c | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> diff --git a/drivers/gpu/drm/panel/panel-simple.c 
>> b/drivers/gpu/drm/panel/panel-simple.c
>> index 44c11c418cd56..8e4ea15f0e1e5 100644
>> --- a/drivers/gpu/drm/panel/panel-simple.c
>> +++ b/drivers/gpu/drm/panel/panel-simple.c
>> @@ -2318,6 +2318,7 @@ static const struct panel_desc 
>> innolux_g101ice_l01 = {
>>           .disable = 200,
>>       },
>>       .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
>> +    .bus_flags = DRM_BUS_FLAG_DE_HIGH,
>>       .connector_type = DRM_MODE_CONNECTOR_LVDS,
>>   };
> 
> Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>

Maybe it is time to apply ?
Maxime Ripard Nov. 17, 2023, 8:40 a.m. UTC | #3
On Thu, Nov 16, 2023 at 10:15:31PM +0100, Marek Vasut wrote:
> On 10/9/23 10:58, Neil Armstrong wrote:
> > On 09/10/2023 00:33, Marek Vasut wrote:
> > > Add missing .bus_flags = DRM_BUS_FLAG_DE_HIGH to this panel description,
> > > ones which match both the datasheet and the panel display_timing flags .
> > > 
> > > Fixes: 1e29b840af9f ("drm/panel: simple: Add Innolux G101ICE-L01 panel")
> > > Signed-off-by: Marek Vasut <marex@denx.de>
> > > ---
> > > Cc: Daniel Vetter <daniel@ffwll.ch>
> > > Cc: David Airlie <airlied@gmail.com>
> > > Cc: Jessica Zhang <quic_jesszhan@quicinc.com>
> > > Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
> > > Cc: Maxime Ripard <mripard@kernel.org>
> > > Cc: Neil Armstrong <neil.armstrong@linaro.org>
> > > Cc: Sam Ravnborg <sam@ravnborg.org>
> > > Cc: Thomas Zimmermann <tzimmermann@suse.de>
> > > Cc: dri-devel@lists.freedesktop.org
> > > ---
> > >   drivers/gpu/drm/panel/panel-simple.c | 1 +
> > >   1 file changed, 1 insertion(+)
> > > 
> > > diff --git a/drivers/gpu/drm/panel/panel-simple.c
> > > b/drivers/gpu/drm/panel/panel-simple.c
> > > index 44c11c418cd56..8e4ea15f0e1e5 100644
> > > --- a/drivers/gpu/drm/panel/panel-simple.c
> > > +++ b/drivers/gpu/drm/panel/panel-simple.c
> > > @@ -2318,6 +2318,7 @@ static const struct panel_desc
> > > innolux_g101ice_l01 = {
> > >           .disable = 200,
> > >       },
> > >       .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
> > > +    .bus_flags = DRM_BUS_FLAG_DE_HIGH,
> > >       .connector_type = DRM_MODE_CONNECTOR_LVDS,
> > >   };
> > 
> > Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
> 
> Maybe it is time to apply ?

The expectation is that you would kind of apply it yourself. Do you have
a drm-misc committer account? If not, you should apply for one, you
definitely qualify.

Maxime
Marek Vasut Nov. 17, 2023, 5:07 p.m. UTC | #4
On 11/17/23 09:40, Maxime Ripard wrote:
> On Thu, Nov 16, 2023 at 10:15:31PM +0100, Marek Vasut wrote:
>> On 10/9/23 10:58, Neil Armstrong wrote:
>>> On 09/10/2023 00:33, Marek Vasut wrote:
>>>> Add missing .bus_flags = DRM_BUS_FLAG_DE_HIGH to this panel description,
>>>> ones which match both the datasheet and the panel display_timing flags .
>>>>
>>>> Fixes: 1e29b840af9f ("drm/panel: simple: Add Innolux G101ICE-L01 panel")
>>>> Signed-off-by: Marek Vasut <marex@denx.de>
>>>> ---
>>>> Cc: Daniel Vetter <daniel@ffwll.ch>
>>>> Cc: David Airlie <airlied@gmail.com>
>>>> Cc: Jessica Zhang <quic_jesszhan@quicinc.com>
>>>> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
>>>> Cc: Maxime Ripard <mripard@kernel.org>
>>>> Cc: Neil Armstrong <neil.armstrong@linaro.org>
>>>> Cc: Sam Ravnborg <sam@ravnborg.org>
>>>> Cc: Thomas Zimmermann <tzimmermann@suse.de>
>>>> Cc: dri-devel@lists.freedesktop.org
>>>> ---
>>>>    drivers/gpu/drm/panel/panel-simple.c | 1 +
>>>>    1 file changed, 1 insertion(+)
>>>>
>>>> diff --git a/drivers/gpu/drm/panel/panel-simple.c
>>>> b/drivers/gpu/drm/panel/panel-simple.c
>>>> index 44c11c418cd56..8e4ea15f0e1e5 100644
>>>> --- a/drivers/gpu/drm/panel/panel-simple.c
>>>> +++ b/drivers/gpu/drm/panel/panel-simple.c
>>>> @@ -2318,6 +2318,7 @@ static const struct panel_desc
>>>> innolux_g101ice_l01 = {
>>>>            .disable = 200,
>>>>        },
>>>>        .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
>>>> +    .bus_flags = DRM_BUS_FLAG_DE_HIGH,
>>>>        .connector_type = DRM_MODE_CONNECTOR_LVDS,
>>>>    };
>>>
>>> Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
>>
>> Maybe it is time to apply ?
> 
> The expectation is that you would kind of apply it yourself. Do you have
> a drm-misc committer account? If not, you should apply for one, you
> definitely qualify.

I do, I'm just not a big fan of applying my own patches, but since there 
is a RB, I will do that in a bit.
Marek Vasut Nov. 19, 2023, 7:50 p.m. UTC | #5
On 11/17/23 09:40, Maxime Ripard wrote:
> On Thu, Nov 16, 2023 at 10:15:31PM +0100, Marek Vasut wrote:
>> On 10/9/23 10:58, Neil Armstrong wrote:
>>> On 09/10/2023 00:33, Marek Vasut wrote:
>>>> Add missing .bus_flags = DRM_BUS_FLAG_DE_HIGH to this panel description,
>>>> ones which match both the datasheet and the panel display_timing flags .
>>>>
>>>> Fixes: 1e29b840af9f ("drm/panel: simple: Add Innolux G101ICE-L01 panel")
>>>> Signed-off-by: Marek Vasut <marex@denx.de>
>>>> ---
>>>> Cc: Daniel Vetter <daniel@ffwll.ch>
>>>> Cc: David Airlie <airlied@gmail.com>
>>>> Cc: Jessica Zhang <quic_jesszhan@quicinc.com>
>>>> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
>>>> Cc: Maxime Ripard <mripard@kernel.org>
>>>> Cc: Neil Armstrong <neil.armstrong@linaro.org>
>>>> Cc: Sam Ravnborg <sam@ravnborg.org>
>>>> Cc: Thomas Zimmermann <tzimmermann@suse.de>
>>>> Cc: dri-devel@lists.freedesktop.org
>>>> ---
>>>>    drivers/gpu/drm/panel/panel-simple.c | 1 +
>>>>    1 file changed, 1 insertion(+)
>>>>
>>>> diff --git a/drivers/gpu/drm/panel/panel-simple.c
>>>> b/drivers/gpu/drm/panel/panel-simple.c
>>>> index 44c11c418cd56..8e4ea15f0e1e5 100644
>>>> --- a/drivers/gpu/drm/panel/panel-simple.c
>>>> +++ b/drivers/gpu/drm/panel/panel-simple.c
>>>> @@ -2318,6 +2318,7 @@ static const struct panel_desc
>>>> innolux_g101ice_l01 = {
>>>>            .disable = 200,
>>>>        },
>>>>        .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
>>>> +    .bus_flags = DRM_BUS_FLAG_DE_HIGH,
>>>>        .connector_type = DRM_MODE_CONNECTOR_LVDS,
>>>>    };
>>>
>>> Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
>>
>> Maybe it is time to apply ?
> 
> The expectation is that you would kind of apply it yourself. Do you have
> a drm-misc committer account? If not, you should apply for one, you
> definitely qualify.

Applied to drm-misc/fixes
Neil Armstrong Nov. 20, 2023, 8:28 a.m. UTC | #6
On 19/11/2023 20:50, Marek Vasut wrote:
> On 11/17/23 09:40, Maxime Ripard wrote:
>> On Thu, Nov 16, 2023 at 10:15:31PM +0100, Marek Vasut wrote:
>>> On 10/9/23 10:58, Neil Armstrong wrote:
>>>> On 09/10/2023 00:33, Marek Vasut wrote:
>>>>> Add missing .bus_flags = DRM_BUS_FLAG_DE_HIGH to this panel description,
>>>>> ones which match both the datasheet and the panel display_timing flags .
>>>>>
>>>>> Fixes: 1e29b840af9f ("drm/panel: simple: Add Innolux G101ICE-L01 panel")
>>>>> Signed-off-by: Marek Vasut <marex@denx.de>
>>>>> ---
>>>>> Cc: Daniel Vetter <daniel@ffwll.ch>
>>>>> Cc: David Airlie <airlied@gmail.com>
>>>>> Cc: Jessica Zhang <quic_jesszhan@quicinc.com>
>>>>> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
>>>>> Cc: Maxime Ripard <mripard@kernel.org>
>>>>> Cc: Neil Armstrong <neil.armstrong@linaro.org>
>>>>> Cc: Sam Ravnborg <sam@ravnborg.org>
>>>>> Cc: Thomas Zimmermann <tzimmermann@suse.de>
>>>>> Cc: dri-devel@lists.freedesktop.org
>>>>> ---
>>>>>    drivers/gpu/drm/panel/panel-simple.c | 1 +
>>>>>    1 file changed, 1 insertion(+)
>>>>>
>>>>> diff --git a/drivers/gpu/drm/panel/panel-simple.c
>>>>> b/drivers/gpu/drm/panel/panel-simple.c
>>>>> index 44c11c418cd56..8e4ea15f0e1e5 100644
>>>>> --- a/drivers/gpu/drm/panel/panel-simple.c
>>>>> +++ b/drivers/gpu/drm/panel/panel-simple.c
>>>>> @@ -2318,6 +2318,7 @@ static const struct panel_desc
>>>>> innolux_g101ice_l01 = {
>>>>>            .disable = 200,
>>>>>        },
>>>>>        .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
>>>>> +    .bus_flags = DRM_BUS_FLAG_DE_HIGH,
>>>>>        .connector_type = DRM_MODE_CONNECTOR_LVDS,
>>>>>    };
>>>>
>>>> Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
>>>
>>> Maybe it is time to apply ?
>>
>> The expectation is that you would kind of apply it yourself. Do you have
>> a drm-misc committer account? If not, you should apply for one, you
>> definitely qualify.
> 
> Applied to drm-misc/fixes


Sorry for the delay, thx for applying it finally.

Neil
diff mbox series

Patch

diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index 44c11c418cd56..8e4ea15f0e1e5 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -2318,6 +2318,7 @@  static const struct panel_desc innolux_g101ice_l01 = {
 		.disable = 200,
 	},
 	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
+	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
 	.connector_type = DRM_MODE_CONNECTOR_LVDS,
 };