diff mbox

drm/crtc-helper: use drm_framebuffer flags

Message ID 1404218442-10980-1-git-send-email-fabien.dessenne@st.com (mailing list archive)
State Accepted
Headers show

Commit Message

Fabien DESSENNE July 1, 2014, 12:40 p.m. UTC
The "flags" parameter of the DRM_IOCTL_MODE_ADDFB2 ioctl must be
propagated and used by the driver.
The only possible value of flags is DRM_MODE_FB_INTERLACED.

Signed-off-by: Fabien Dessenne <fabien.dessenne@st.com>
Reviewed-by: Benjamin GAIGNARD <benjamin.gaignard@st.com>
---
 drivers/gpu/drm/drm_crtc_helper.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Fabien DESSENNE July 10, 2014, 8:01 a.m. UTC | #1
Hi,
Can anyone review this patch ?
Thanks for your time.
Fabien

> -----Original Message-----
> From: Fabien DESSENNE [mailto:fabien.dessenne@st.com]
> Sent: mardi 1 juillet 2014 14:41
> To: dri-devel@lists.freedesktop.org
> Cc: Benjamin Gaignard; Vincent ABRIOU; Fabien DESSENNE
> Subject: [PATCH] drm/crtc-helper: use drm_framebuffer flags
> 
> The "flags" parameter of the DRM_IOCTL_MODE_ADDFB2 ioctl must be
> propagated and used by the driver.
> The only possible value of flags is DRM_MODE_FB_INTERLACED.
> 
> Signed-off-by: Fabien Dessenne <fabien.dessenne@st.com>
> Reviewed-by: Benjamin GAIGNARD <benjamin.gaignard@st.com>
> ---
>  drivers/gpu/drm/drm_crtc_helper.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/gpu/drm/drm_crtc_helper.c
> b/drivers/gpu/drm/drm_crtc_helper.c
> index 23500c0..5974489 100644
> --- a/drivers/gpu/drm/drm_crtc_helper.c
> +++ b/drivers/gpu/drm/drm_crtc_helper.c
> @@ -966,6 +966,7 @@ int drm_helper_mode_fill_fb_struct(struct
> drm_framebuffer *fb,
>  	drm_fb_get_bpp_depth(mode_cmd->pixel_format, &fb->depth,
>  				    &fb->bits_per_pixel);
>  	fb->pixel_format = mode_cmd->pixel_format;
> +	fb->flags = mode_cmd->flags;
> 
>  	return 0;
>  }
> --
> 1.9.1
Benjamin Gaignard July 22, 2014, 3:40 p.m. UTC | #2
Adding LKML and David in diffusion list to get an opinion on this patch

2014-07-10 10:01 GMT+02:00 Fabien DESSENNE <fabien.dessenne@st.com>:
> Hi,
> Can anyone review this patch ?
> Thanks for your time.
> Fabien
>
>> -----Original Message-----
>> From: Fabien DESSENNE [mailto:fabien.dessenne@st.com]
>> Sent: mardi 1 juillet 2014 14:41
>> To: dri-devel@lists.freedesktop.org
>> Cc: Benjamin Gaignard; Vincent ABRIOU; Fabien DESSENNE
>> Subject: [PATCH] drm/crtc-helper: use drm_framebuffer flags
>>
>> The "flags" parameter of the DRM_IOCTL_MODE_ADDFB2 ioctl must be
>> propagated and used by the driver.
>> The only possible value of flags is DRM_MODE_FB_INTERLACED.
>>
>> Signed-off-by: Fabien Dessenne <fabien.dessenne@st.com>
>> Reviewed-by: Benjamin GAIGNARD <benjamin.gaignard@st.com>
>> ---
>>  drivers/gpu/drm/drm_crtc_helper.c | 1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/drivers/gpu/drm/drm_crtc_helper.c
>> b/drivers/gpu/drm/drm_crtc_helper.c
>> index 23500c0..5974489 100644
>> --- a/drivers/gpu/drm/drm_crtc_helper.c
>> +++ b/drivers/gpu/drm/drm_crtc_helper.c
>> @@ -966,6 +966,7 @@ int drm_helper_mode_fill_fb_struct(struct
>> drm_framebuffer *fb,
>>       drm_fb_get_bpp_depth(mode_cmd->pixel_format, &fb->depth,
>>                                   &fb->bits_per_pixel);
>>       fb->pixel_format = mode_cmd->pixel_format;
>> +     fb->flags = mode_cmd->flags;
>>
>>       return 0;
>>  }
>> --
>> 1.9.1
>
Dave Airlie July 22, 2014, 10:37 p.m. UTC | #3
On 23 July 2014 01:40, Benjamin Gaignard <benjamin.gaignard@linaro.org> wrote:
> Adding LKML and David in diffusion list to get an opinion on this patch
>
> 2014-07-10 10:01 GMT+02:00 Fabien DESSENNE <fabien.dessenne@st.com>:
>> Hi,
>> Can anyone review this patch ?

It's been in drm-next for a few weeks.

Dave.
diff mbox

Patch

diff --git a/drivers/gpu/drm/drm_crtc_helper.c b/drivers/gpu/drm/drm_crtc_helper.c
index 23500c0..5974489 100644
--- a/drivers/gpu/drm/drm_crtc_helper.c
+++ b/drivers/gpu/drm/drm_crtc_helper.c
@@ -966,6 +966,7 @@  int drm_helper_mode_fill_fb_struct(struct drm_framebuffer *fb,
 	drm_fb_get_bpp_depth(mode_cmd->pixel_format, &fb->depth,
 				    &fb->bits_per_pixel);
 	fb->pixel_format = mode_cmd->pixel_format;
+	fb->flags = mode_cmd->flags;
 
 	return 0;
 }