All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm: Exynos: Respect framebuffer pitch for FIMD/Mixer
@ 2015-03-17 13:24 Daniel Stone
  2015-03-24  8:57 ` Javier Martinez Canillas
  0 siblings, 1 reply; 9+ messages in thread
From: Daniel Stone @ 2015-03-17 13:24 UTC (permalink / raw)
  To: inki.dae; +Cc: linux-samsung-soc, dri-devel, m.szyprowski, t.stanislaws

When performing a modeset, use the framebuffer pitch value to set FIMD
IMG_SIZE and Mixer SPAN registers. These are both defined as pitch - the
distance between contiguous lines (bytes for FIMD, pixels for mixer).

Fixes display on Snow (1366x768).

Signed-off-by: Daniel Stone <daniels@collabora.com>
Tested-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
---
 drivers/gpu/drm/exynos/exynos_drm_fimd.c |  8 +++++---
 drivers/gpu/drm/exynos/exynos_mixer.c    | 17 ++++++++++-------
 2 files changed, 15 insertions(+), 10 deletions(-)

The VP parts are untested as I don't have Exynos4 hardware, and the
spec is uselessly vague. It does seem to look like the right fix however,
and in the case where the buffer is naturally aligned (pitch == width*bpp),
there should be no change, as bpp==8 for video buffers.

FIMD/GRP and Mixer behaviour have been manually verified on Snow (5250
with eDP/LVDS bridge and HDMI out).

diff --git a/drivers/gpu/drm/exynos/exynos_drm_fimd.c b/drivers/gpu/drm/exynos/exynos_drm_fimd.c
index 925fc69..0d5681f 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_fimd.c
+++ b/drivers/gpu/drm/exynos/exynos_drm_fimd.c
@@ -147,6 +147,7 @@ struct fimd_win_data {
 	unsigned int		ovl_height;
 	unsigned int		fb_width;
 	unsigned int		fb_height;
+	unsigned int		fb_pitch;
 	unsigned int		bpp;
 	unsigned int		pixel_format;
 	dma_addr_t		dma_addr;
@@ -537,13 +538,14 @@ static void fimd_win_mode_set(struct exynos_drm_crtc *crtc,
 	win_data->offset_y = plane->crtc_y;
 	win_data->ovl_width = plane->crtc_width;
 	win_data->ovl_height = plane->crtc_height;
+	win_data->fb_pitch = plane->pitch;
 	win_data->fb_width = plane->fb_width;
 	win_data->fb_height = plane->fb_height;
 	win_data->dma_addr = plane->dma_addr[0] + offset;
 	win_data->bpp = plane->bpp;
 	win_data->pixel_format = plane->pixel_format;
-	win_data->buf_offsize = (plane->fb_width - plane->crtc_width) *
-				(plane->bpp >> 3);
+	win_data->buf_offsize =
+		plane->pitch - (plane->crtc_width * (plane->bpp >> 3));
 	win_data->line_size = plane->crtc_width * (plane->bpp >> 3);
 
 	DRM_DEBUG_KMS("offset_x = %d, offset_y = %d\n",
@@ -709,7 +711,7 @@ static void fimd_win_commit(struct exynos_drm_crtc *crtc, int zpos)
 	writel(val, ctx->regs + VIDWx_BUF_START(win, 0));
 
 	/* buffer end address */
-	size = win_data->fb_width * win_data->ovl_height * (win_data->bpp >> 3);
+	size = win_data->fb_pitch * win_data->ovl_height * (win_data->bpp >> 3);
 	val = (unsigned long)(win_data->dma_addr + size);
 	writel(val, ctx->regs + VIDWx_BUF_END(win, 0));
 
diff --git a/drivers/gpu/drm/exynos/exynos_mixer.c b/drivers/gpu/drm/exynos/exynos_mixer.c
index 3518bc4..2e3bc57 100644
--- a/drivers/gpu/drm/exynos/exynos_mixer.c
+++ b/drivers/gpu/drm/exynos/exynos_mixer.c
@@ -55,6 +55,7 @@ struct hdmi_win_data {
 	unsigned int		fb_x;
 	unsigned int		fb_y;
 	unsigned int		fb_width;
+	unsigned int		fb_pitch;
 	unsigned int		fb_height;
 	unsigned int		src_width;
 	unsigned int		src_height;
@@ -438,7 +439,7 @@ static void vp_video_buffer(struct mixer_context *ctx, int win)
 	} else {
 		luma_addr[0] = win_data->dma_addr;
 		chroma_addr[0] = win_data->dma_addr
-			+ (win_data->fb_width * win_data->fb_height);
+			+ (win_data->fb_pitch * win_data->fb_height);
 	}
 
 	if (win_data->scan_flags & DRM_MODE_FLAG_INTERLACE) {
@@ -447,8 +448,8 @@ static void vp_video_buffer(struct mixer_context *ctx, int win)
 			luma_addr[1] = luma_addr[0] + 0x40;
 			chroma_addr[1] = chroma_addr[0] + 0x40;
 		} else {
-			luma_addr[1] = luma_addr[0] + win_data->fb_width;
-			chroma_addr[1] = chroma_addr[0] + win_data->fb_width;
+			luma_addr[1] = luma_addr[0] + win_data->fb_pitch;
+			chroma_addr[1] = chroma_addr[0] + win_data->fb_pitch;
 		}
 	} else {
 		ctx->interlace = false;
@@ -469,10 +470,10 @@ static void vp_video_buffer(struct mixer_context *ctx, int win)
 	vp_reg_writemask(res, VP_MODE, val, VP_MODE_FMT_MASK);
 
 	/* setting size of input image */
-	vp_reg_write(res, VP_IMG_SIZE_Y, VP_IMG_HSIZE(win_data->fb_width) |
+	vp_reg_write(res, VP_IMG_SIZE_Y, VP_IMG_HSIZE(win_data->fb_pitch) |
 		VP_IMG_VSIZE(win_data->fb_height));
 	/* chroma height has to reduced by 2 to avoid chroma distorions */
-	vp_reg_write(res, VP_IMG_SIZE_C, VP_IMG_HSIZE(win_data->fb_width) |
+	vp_reg_write(res, VP_IMG_SIZE_C, VP_IMG_HSIZE(win_data->fb_pitch) |
 		VP_IMG_VSIZE(win_data->fb_height / 2));
 
 	vp_reg_write(res, VP_SRC_WIDTH, win_data->src_width);
@@ -559,7 +560,7 @@ static void mixer_graph_buffer(struct mixer_context *ctx, int win)
 	/* converting dma address base and source offset */
 	dma_addr = win_data->dma_addr
 		+ (win_data->fb_x * win_data->bpp >> 3)
-		+ (win_data->fb_y * win_data->fb_width * win_data->bpp >> 3);
+		+ (win_data->fb_y * win_data->fb_pitch);
 	src_x_offset = 0;
 	src_y_offset = 0;
 
@@ -576,7 +577,8 @@ static void mixer_graph_buffer(struct mixer_context *ctx, int win)
 		MXR_GRP_CFG_FORMAT_VAL(fmt), MXR_GRP_CFG_FORMAT_MASK);
 
 	/* setup geometry */
-	mixer_reg_write(res, MXR_GRAPHIC_SPAN(win), win_data->fb_width);
+	mixer_reg_write(res, MXR_GRAPHIC_SPAN(win),
+			win_data->fb_pitch / (win_data->bpp >> 3));
 
 	/* setup display size */
 	if (ctx->mxr_ver == MXR_VER_128_0_0_184 &&
@@ -961,6 +963,7 @@ static void mixer_win_mode_set(struct exynos_drm_crtc *crtc,
 	win_data->fb_y = plane->fb_y;
 	win_data->fb_width = plane->fb_width;
 	win_data->fb_height = plane->fb_height;
+	win_data->fb_pitch = plane->pitch;
 	win_data->src_width = plane->src_width;
 	win_data->src_height = plane->src_height;
 
-- 
2.3.2

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

* Re: [PATCH] drm: Exynos: Respect framebuffer pitch for FIMD/Mixer
  2015-03-17 13:24 [PATCH] drm: Exynos: Respect framebuffer pitch for FIMD/Mixer Daniel Stone
@ 2015-03-24  8:57 ` Javier Martinez Canillas
  2015-03-26 14:32   ` Inki Dae
  0 siblings, 1 reply; 9+ messages in thread
From: Javier Martinez Canillas @ 2015-03-24  8:57 UTC (permalink / raw)
  To: Inki Dae, Daniel Stone
  Cc: linux-samsung-soc, dri-devel, Marek Szyprowski, t.stanislaws

Hello Inki,

On Tue, Mar 17, 2015 at 2:24 PM, Daniel Stone <daniels@collabora.com> wrote:
> When performing a modeset, use the framebuffer pitch value to set FIMD
> IMG_SIZE and Mixer SPAN registers. These are both defined as pitch - the
> distance between contiguous lines (bytes for FIMD, pixels for mixer).
>
> Fixes display on Snow (1366x768).
>
> Signed-off-by: Daniel Stone <daniels@collabora.com>
> Tested-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>

Any comments on this patch? It would be great to pick this sooner
rather than later since it fixes (at least) display output on Snow and
HDMI output on Peach Pit/Pi.

Best regards,
Javier

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

* Re: [PATCH] drm: Exynos: Respect framebuffer pitch for FIMD/Mixer
  2015-03-24  8:57 ` Javier Martinez Canillas
@ 2015-03-26 14:32   ` Inki Dae
  2015-03-26 14:48     ` Daniel Stone
  2015-03-27  0:15     ` Tobias Jakobi
  0 siblings, 2 replies; 9+ messages in thread
From: Inki Dae @ 2015-03-26 14:32 UTC (permalink / raw)
  To: Javier Martinez Canillas
  Cc: linux-samsung-soc, Daniel Stone, dri-devel, Marek Szyprowski

Hello Javier,

Applied.

Could you use right prefix of the subject like below when you post patch?

'drm/exynos: ...', not 'drm: Exynos: ...'

Your email will be filtered from my mailbox if you don't use the right
prefix so I couldn't check and take care of your patch.

Thanks,
Inki Dae

On 2015년 03월 24일 17:57, Javier Martinez Canillas wrote:
> Hello Inki,
> 
> On Tue, Mar 17, 2015 at 2:24 PM, Daniel Stone <daniels@collabora.com> wrote:
>> When performing a modeset, use the framebuffer pitch value to set FIMD
>> IMG_SIZE and Mixer SPAN registers. These are both defined as pitch - the
>> distance between contiguous lines (bytes for FIMD, pixels for mixer).
>>
>> Fixes display on Snow (1366x768).
>>
>> Signed-off-by: Daniel Stone <daniels@collabora.com>
>> Tested-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
> 
> Any comments on this patch? It would be great to pick this sooner
> rather than later since it fixes (at least) display output on Snow and
> HDMI output on Peach Pit/Pi.
> 
> Best regards,
> Javier
> 

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH] drm: Exynos: Respect framebuffer pitch for FIMD/Mixer
  2015-03-26 14:32   ` Inki Dae
@ 2015-03-26 14:48     ` Daniel Stone
  2015-03-27  1:55       ` Inki Dae
  2015-03-27  0:15     ` Tobias Jakobi
  1 sibling, 1 reply; 9+ messages in thread
From: Daniel Stone @ 2015-03-26 14:48 UTC (permalink / raw)
  To: Inki Dae
  Cc: Javier Martinez Canillas, linux-samsung-soc, dri-devel, Marek Szyprowski


[-- Attachment #1.1: Type: text/plain, Size: 1621 bytes --]

Hi Inki,

On Thu, 26 Mar, 2015 at 2:32 PM, Inki Dae <inki.dae@samsung.com> wrote:
> Applied.

Thanks very much.

> Could you use right prefix of the subject like below when you post 
> patch?
> 
> 'drm/exynos: ...', not 'drm: Exynos: ...'
> 
> Your email will be filtered from my mailbox if you don't use the right
> prefix so I couldn't check and take care of your patch.

Ah, I didn't realise this. Maybe it could be good to not filter if the 
patch is also directly addressed/CCed to you, rather than a list? 
Gustavo Padovan is following this convention and I also will in future, 
but I guess it might lead to some patches being dropped from casual 
contributors if they don't know this.

Cheers,
Daniel

> 
> Thanks,
> Inki Dae
> 
> On 2015년 03월 24일 17:57, Javier Martinez Canillas wrote:
>>  Hello Inki,
>> 
>>  On Tue, Mar 17, 2015 at 2:24 PM, Daniel Stone 
>> <daniels@collabora.com> wrote:
>>>  When performing a modeset, use the framebuffer pitch value to set 
>>> FIMD
>>>  IMG_SIZE and Mixer SPAN registers. These are both defined as pitch 
>>> - the
>>>  distance between contiguous lines (bytes for FIMD, pixels for 
>>> mixer).
>>> 
>>>  Fixes display on Snow (1366x768).
>>> 
>>>  Signed-off-by: Daniel Stone <daniels@collabora.com>
>>>  Tested-by: Javier Martinez Canillas 
>>> <javier.martinez@collabora.co.uk>
>> 
>>  Any comments on this patch? It would be great to pick this sooner
>>  rather than later since it fixes (at least) display output on Snow 
>> and
>>  HDMI output on Peach Pit/Pi.
>> 
>>  Best regards,
>>  Javier
>> 
> 
> 

[-- Attachment #1.2: Type: text/html, Size: 2073 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH] drm: Exynos: Respect framebuffer pitch for FIMD/Mixer
  2015-03-26 14:32   ` Inki Dae
  2015-03-26 14:48     ` Daniel Stone
@ 2015-03-27  0:15     ` Tobias Jakobi
  2015-03-27  1:47       ` Inki Dae
  1 sibling, 1 reply; 9+ messages in thread
From: Tobias Jakobi @ 2015-03-27  0:15 UTC (permalink / raw)
  To: Inki Dae, Javier Martinez Canillas
  Cc: Daniel Stone, linux-samsung-soc, dri-devel, Marek Szyprowski

Inki Dae wrote:
> Hello Javier,
> 
> Applied.
> 
> Could you use right prefix of the subject like below when you post patch?
> 
> 'drm/exynos: ...', not 'drm: Exynos: ...'
> 
> Your email will be filtered from my mailbox if you don't use the right
> prefix so I couldn't check and take care of your patch.
I would suggest to change (or drop) the filter settings then. I don't
think you can expect people to jump through these hoops to reach a
maintainer of a kernel subsystem. Especially since this not 'documented'
anywhere.



With best wishes,
Tobias

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

* Re: [PATCH] drm: Exynos: Respect framebuffer pitch for FIMD/Mixer
  2015-03-27  0:15     ` Tobias Jakobi
@ 2015-03-27  1:47       ` Inki Dae
  2015-03-27 11:08         ` Javier Martinez Canillas
  0 siblings, 1 reply; 9+ messages in thread
From: Inki Dae @ 2015-03-27  1:47 UTC (permalink / raw)
  To: Tobias Jakobi
  Cc: Javier Martinez Canillas, Daniel Stone, linux-samsung-soc,
	dri-devel, Marek Szyprowski

On 2015년 03월 27일 09:15, Tobias Jakobi wrote:
> Inki Dae wrote:
>> Hello Javier,
>>
>> Applied.
>>
>> Could you use right prefix of the subject like below when you post patch?
>>
>> 'drm/exynos: ...', not 'drm: Exynos: ...'
>>
>> Your email will be filtered from my mailbox if you don't use the right
>> prefix so I couldn't check and take care of your patch.
> I would suggest to change (or drop) the filter settings then. I don't

Filters of my mailbox are considered for two cases, one is DRI mailing
list, other is drm/exynos.
So if you don't use the drm/exynos prefix, then I would try to find your
patch in DRI mailing list - I sometimes check the mailing list. However,
the mailing list have so much emails so it'd be not easy to pick up only
exynos relevant patches among the email lists. As a result, you would
get the my review lately.

> think you can expect people to jump through these hoops to reach a
> maintainer of a kernel subsystem. Especially since this not 'documented'
> anywhere.

Right, this is not documented but if you have ever checked exynos drm
driver tree, then I think you could know how we use the prefix. Of
course, I don't like to force the use of this prefix but if you and
other people use prefix in the manner of them, exynos drm tree would be
a little bit messy. i.e., DRM: EXYNOS, drm: exynos, drm: Exynos,
drm/exynos, drm/exynos: fimd, drm: exynos: fimd, DRM: EXYNOS: FIMD, ...
 so many cases....  Do you really want this?

So I will always say "please, use right prefix" Otherwise, I will change
it while merging as is.
And I see that other drm drivers have their own way which is not
documented but just implicitly.

Thanks,
Inki Dae

> 
> 
> 
> With best wishes,
> Tobias
> 
> 

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

* Re: [PATCH] drm: Exynos: Respect framebuffer pitch for FIMD/Mixer
  2015-03-26 14:48     ` Daniel Stone
@ 2015-03-27  1:55       ` Inki Dae
  0 siblings, 0 replies; 9+ messages in thread
From: Inki Dae @ 2015-03-27  1:55 UTC (permalink / raw)
  To: Daniel Stone
  Cc: Javier Martinez Canillas, linux-samsung-soc, dri-devel, Marek Szyprowski

Hi Daniel,

On 2015년 03월 26일 23:48, Daniel Stone wrote:
> Hi Inki,
> 
> On Thu, 26 Mar, 2015 at 2:32 PM, Inki Dae <inki.dae@samsung.com> wrote:
>> Applied.
> 
> Thanks very much.
> 
>> Could you use right prefix of the subject like below when you post patch?
>>
>> 'drm/exynos: ...', not 'drm: Exynos: ...'
>>
>> Your email will be filtered from my mailbox if you don't use the right
>> prefix so I couldn't check and take care of your patch.
> 
> Ah, I didn't realise this. Maybe it could be good to not filter if the
> patch is also directly addressed/CCed to you, rather than a list?
> Gustavo Padovan is following this convention and I also will in future,
> but I guess it might lead to some patches being dropped from casual
> contributors if they don't know this.

Sorry for confusing. I don't really want to drop the patches which don't
use right prefix - undocumented. I have two filters, one is DRI mailing
list, other is drm/exynos. So if you use other prefix, your patch is
filtered and stored in my dri-devel mailbox. But as you may know, the
mailbox would always be full with many emails which contains various
type patches, exynos, omap, sti, radeon, intel and so no. So it wouldn't
be easy to pick up only your patch among them. So I'd like to recommend
you to use drm/exynos prefix so that I could review and pick it up
easily and quickly.

Thanks,
Inki Dae

> 
> Cheers,
> Daniel
> 
>>
>> Thanks,
>> Inki Dae
>>
>> On 2015년 03월 24일 17:57, Javier Martinez Canillas wrote:
>>>  Hello Inki,
>>>
>>>  On Tue, Mar 17, 2015 at 2:24 PM, Daniel Stone
>>> <daniels@collabora.com> wrote:
>>>>  When performing a modeset, use the framebuffer pitch value to set FIMD
>>>>  IMG_SIZE and Mixer SPAN registers. These are both defined as pitch
>>>> - the
>>>>  distance between contiguous lines (bytes for FIMD, pixels for mixer).
>>>>
>>>>  Fixes display on Snow (1366x768).
>>>>
>>>>  Signed-off-by: Daniel Stone <daniels@collabora.com>
>>>>  Tested-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
>>>
>>>  Any comments on this patch? It would be great to pick this sooner
>>>  rather than later since it fixes (at least) display output on Snow and
>>>  HDMI output on Peach Pit/Pi.
>>>
>>>  Best regards,
>>>  Javier
>>>
>>
>>
> 

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH] drm: Exynos: Respect framebuffer pitch for FIMD/Mixer
  2015-03-27  1:47       ` Inki Dae
@ 2015-03-27 11:08         ` Javier Martinez Canillas
  2015-03-27 16:28           ` Inki Dae
  0 siblings, 1 reply; 9+ messages in thread
From: Javier Martinez Canillas @ 2015-03-27 11:08 UTC (permalink / raw)
  To: Inki Dae
  Cc: Tobias Jakobi, Daniel Stone, linux-samsung-soc, dri-devel,
	Marek Szyprowski

Hello Inki,

On Fri, Mar 27, 2015 at 2:47 AM, Inki Dae <inki.dae@samsung.com> wrote:
>
> Right, this is not documented but if you have ever checked exynos drm
> driver tree, then I think you could know how we use the prefix. Of
> course, I don't like to force the use of this prefix but if you and
> other people use prefix in the manner of them, exynos drm tree would be
> a little bit messy. i.e., DRM: EXYNOS, drm: exynos, drm: Exynos,
> drm/exynos, drm/exynos: fimd, drm: exynos: fimd, DRM: EXYNOS: FIMD, ...
>  so many cases....  Do you really want this?
>
> So I will always say "please, use right prefix" Otherwise, I will change
> it while merging as is.
> And I see that other drm drivers have their own way which is not
> documented but just implicitly.
>

I agree with you that people should follow the convention for subject
lines used in a subsystem and that it is tedious to tell them to fix
the subject and resend but I do agree with Tobias that you should
rethink your mail filters.

For example I've a filter for all the emails that are directly
addressed to me or that I'm cc'ed to. It's true that you may get some
emails that are not interesting to you just because people cc'ed you
in random patches but I think is better to have false positives than
to have false negatives. Specially since you are a kernel maintainer
and people expect your feedback / ack for patches to get merged.

> Thanks,
> Inki Dae
>

Best regards,
Javier

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

* Re: [PATCH] drm: Exynos: Respect framebuffer pitch for FIMD/Mixer
  2015-03-27 11:08         ` Javier Martinez Canillas
@ 2015-03-27 16:28           ` Inki Dae
  0 siblings, 0 replies; 9+ messages in thread
From: Inki Dae @ 2015-03-27 16:28 UTC (permalink / raw)
  To: Javier Martinez Canillas
  Cc: Tobias Jakobi, Daniel Stone, linux-samsung-soc, dri-devel,
	Marek Szyprowski

Hello Javier,

2015-03-27 20:08 GMT+09:00 Javier Martinez Canillas <javier@dowhile0.org>:
> Hello Inki,
>
> On Fri, Mar 27, 2015 at 2:47 AM, Inki Dae <inki.dae@samsung.com> wrote:
>>
>> Right, this is not documented but if you have ever checked exynos drm
>> driver tree, then I think you could know how we use the prefix. Of
>> course, I don't like to force the use of this prefix but if you and
>> other people use prefix in the manner of them, exynos drm tree would be
>> a little bit messy. i.e., DRM: EXYNOS, drm: exynos, drm: Exynos,
>> drm/exynos, drm/exynos: fimd, drm: exynos: fimd, DRM: EXYNOS: FIMD, ...
>>  so many cases....  Do you really want this?
>>
>> So I will always say "please, use right prefix" Otherwise, I will change
>> it while merging as is.
>> And I see that other drm drivers have their own way which is not
>> documented but just implicitly.
>>
>
> I agree with you that people should follow the convention for subject
> lines used in a subsystem and that it is tedious to tell them to fix
> the subject and resend but I do agree with Tobias that you should
> rethink your mail filters.
>
> For example I've a filter for all the emails that are directly
> addressed to me or that I'm cc'ed to. It's true that you may get some
> emails that are not interesting to you just because people cc'ed you
> in random patches but I think is better to have false positives than
> to have false negatives. Specially since you are a kernel maintainer
> and people expect your feedback / ack for patches to get merged.
>

Added a new filter, which will pick up all emails of CCing me. :)

Thanks,
Inki Dae

>> Thanks,
>> Inki Dae
>>
>
> Best regards,
> Javier
> --
> To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2015-03-27 16:28 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-17 13:24 [PATCH] drm: Exynos: Respect framebuffer pitch for FIMD/Mixer Daniel Stone
2015-03-24  8:57 ` Javier Martinez Canillas
2015-03-26 14:32   ` Inki Dae
2015-03-26 14:48     ` Daniel Stone
2015-03-27  1:55       ` Inki Dae
2015-03-27  0:15     ` Tobias Jakobi
2015-03-27  1:47       ` Inki Dae
2015-03-27 11:08         ` Javier Martinez Canillas
2015-03-27 16:28           ` Inki Dae

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.