Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1510285 > unrolled thread
| Started by | Maxime Ripard <maxime.ripard@free-electrons.com> |
|---|---|
| First post | 2016-10-27 16:40 +0200 |
| Last post | 2016-11-02 20:00 +0100 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH] drm/sun4i: Add a few formats Maxime Ripard <maxime.ripard@free-electrons.com> - 2016-10-27 16:40 +0200
Re: [PATCH] drm/sun4i: Add a few formats Chen-Yu Tsai <wens@csie.org> - 2016-10-29 12:30 +0200
Re: [PATCH] drm/sun4i: Add a few formats Maxime Ripard <maxime.ripard@free-electrons.com> - 2016-11-02 20:00 +0100
| From | Maxime Ripard <maxime.ripard@free-electrons.com> |
|---|---|
| Date | 2016-10-27 16:40 +0200 |
| Subject | Re: [PATCH] drm/sun4i: Add a few formats |
| Message-ID | <swU0y-38X-29@gated-at.bofh.it> |
[Multipart message — attachments visible in raw view] — view raw
Hi, On Tue, Oct 25, 2016 at 08:42:26AM +0800, Chen-Yu Tsai wrote: > On Mon, Oct 24, 2016 at 10:40 PM, Maxime Ripard > <maxime.ripard@free-electrons.com> wrote: > > Hi, > > > > On Fri, Oct 21, 2016 at 11:15:32AM +0800, Chen-Yu Tsai wrote: > >> On Tue, Oct 18, 2016 at 4:46 PM, Maxime Ripard > >> <maxime.ripard@free-electrons.com> wrote: > >> > The planes can do more than what was previously exposed. Add support for > >> > them. > >> > > >> > Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> > >> > --- > >> > drivers/gpu/drm/sun4i/sun4i_backend.c | 20 ++++++++++++++++++++ > >> > drivers/gpu/drm/sun4i/sun4i_layer.c | 6 ++++++ > >> > 2 files changed, 26 insertions(+) > >> > > >> > diff --git a/drivers/gpu/drm/sun4i/sun4i_backend.c b/drivers/gpu/drm/sun4i/sun4i_backend.c > >> > index afb7ddf660ef..b184a476a480 100644 > >> > --- a/drivers/gpu/drm/sun4i/sun4i_backend.c > >> > +++ b/drivers/gpu/drm/sun4i/sun4i_backend.c > >> > @@ -96,6 +96,22 @@ static int sun4i_backend_drm_format_to_layer(struct drm_plane *plane, > >> > *mode = SUN4I_BACKEND_LAY_FBFMT_ARGB8888; > >> > break; > >> > > >> > + case DRM_FORMAT_ARGB4444: > >> > + *mode = SUN4I_BACKEND_LAY_FBFMT_ARGB4444; > >> > + break; > >> > + > >> > + case DRM_FORMAT_ARGB1555: > >> > + *mode = SUN4I_BACKEND_LAY_FBFMT_ARGB1555; > >> > + break; > >> > + > >> > + case DRM_FORMAT_RGBA5551: > >> > + *mode = SUN4I_BACKEND_LAY_FBFMT_RGBA5551; > >> > + break; > >> > + > >> > + case DRM_FORMAT_RGBA4444: > >> > + *mode = SUN4I_BACKEND_LAY_FBFMT_RGBA4444; > >> > >> The A20 manual only lists ARGB4444, not RGBA4444. There might be > >> some discrepancy here. We can deal with them > > > > Hmm, yes, that's weird. But I guess this would be part of porting it > > to the A20. > > > >> Also there are some more formats missing from the list, could you > >> add them as well? > > > > Which one do you refer to? > > RGB556 and RGB655. These formats are not supported by Linux yet though. Thanks, Maxime -- Maxime Ripard, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com
[toc] | [next] | [standalone]
| From | Chen-Yu Tsai <wens@csie.org> |
|---|---|
| Date | 2016-10-29 12:30 +0200 |
| Message-ID | <sxz3H-4Uf-3@gated-at.bofh.it> |
| In reply to | #1510285 |
On Thu, Oct 27, 2016 at 10:35 PM, Maxime Ripard <maxime.ripard@free-electrons.com> wrote: > Hi, > > On Tue, Oct 25, 2016 at 08:42:26AM +0800, Chen-Yu Tsai wrote: >> On Mon, Oct 24, 2016 at 10:40 PM, Maxime Ripard >> <maxime.ripard@free-electrons.com> wrote: >> > Hi, >> > >> > On Fri, Oct 21, 2016 at 11:15:32AM +0800, Chen-Yu Tsai wrote: >> >> On Tue, Oct 18, 2016 at 4:46 PM, Maxime Ripard >> >> <maxime.ripard@free-electrons.com> wrote: >> >> > The planes can do more than what was previously exposed. Add support for >> >> > them. >> >> > >> >> > Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> >> >> > --- >> >> > drivers/gpu/drm/sun4i/sun4i_backend.c | 20 ++++++++++++++++++++ >> >> > drivers/gpu/drm/sun4i/sun4i_layer.c | 6 ++++++ >> >> > 2 files changed, 26 insertions(+) >> >> > >> >> > diff --git a/drivers/gpu/drm/sun4i/sun4i_backend.c b/drivers/gpu/drm/sun4i/sun4i_backend.c >> >> > index afb7ddf660ef..b184a476a480 100644 >> >> > --- a/drivers/gpu/drm/sun4i/sun4i_backend.c >> >> > +++ b/drivers/gpu/drm/sun4i/sun4i_backend.c >> >> > @@ -96,6 +96,22 @@ static int sun4i_backend_drm_format_to_layer(struct drm_plane *plane, >> >> > *mode = SUN4I_BACKEND_LAY_FBFMT_ARGB8888; >> >> > break; >> >> > >> >> > + case DRM_FORMAT_ARGB4444: >> >> > + *mode = SUN4I_BACKEND_LAY_FBFMT_ARGB4444; >> >> > + break; >> >> > + >> >> > + case DRM_FORMAT_ARGB1555: >> >> > + *mode = SUN4I_BACKEND_LAY_FBFMT_ARGB1555; >> >> > + break; >> >> > + >> >> > + case DRM_FORMAT_RGBA5551: >> >> > + *mode = SUN4I_BACKEND_LAY_FBFMT_RGBA5551; >> >> > + break; >> >> > + >> >> > + case DRM_FORMAT_RGBA4444: >> >> > + *mode = SUN4I_BACKEND_LAY_FBFMT_RGBA4444; >> >> >> >> The A20 manual only lists ARGB4444, not RGBA4444. There might be >> >> some discrepancy here. We can deal with them >> > >> > Hmm, yes, that's weird. But I guess this would be part of porting it >> > to the A20. >> > >> >> Also there are some more formats missing from the list, could you >> >> add them as well? >> > >> > Which one do you refer to? >> >> RGB556 and RGB655. > > These formats are not supported by Linux yet though. I see. Sorry for the noise. Acked-by: Chen-Yu Tsai <wens@csie.org> > > Thanks, > Maxime > > -- > Maxime Ripard, Free Electrons > Embedded Linux and Kernel engineering > http://free-electrons.com
[toc] | [prev] | [next] | [standalone]
| From | Maxime Ripard <maxime.ripard@free-electrons.com> |
|---|---|
| Date | 2016-11-02 20:00 +0100 |
| Message-ID | <sz8Vr-1yo-3@gated-at.bofh.it> |
| In reply to | #1511616 |
[Multipart message — attachments visible in raw view] — view raw
On Sat, Oct 29, 2016 at 06:25:46PM +0800, Chen-Yu Tsai wrote: > On Thu, Oct 27, 2016 at 10:35 PM, Maxime Ripard > <maxime.ripard@free-electrons.com> wrote: > > Hi, > > > > On Tue, Oct 25, 2016 at 08:42:26AM +0800, Chen-Yu Tsai wrote: > >> On Mon, Oct 24, 2016 at 10:40 PM, Maxime Ripard > >> <maxime.ripard@free-electrons.com> wrote: > >> > Hi, > >> > > >> > On Fri, Oct 21, 2016 at 11:15:32AM +0800, Chen-Yu Tsai wrote: > >> >> On Tue, Oct 18, 2016 at 4:46 PM, Maxime Ripard > >> >> <maxime.ripard@free-electrons.com> wrote: > >> >> > The planes can do more than what was previously exposed. Add support for > >> >> > them. > >> >> > > >> >> > Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> > >> >> > --- > >> >> > drivers/gpu/drm/sun4i/sun4i_backend.c | 20 ++++++++++++++++++++ > >> >> > drivers/gpu/drm/sun4i/sun4i_layer.c | 6 ++++++ > >> >> > 2 files changed, 26 insertions(+) > >> >> > > >> >> > diff --git a/drivers/gpu/drm/sun4i/sun4i_backend.c b/drivers/gpu/drm/sun4i/sun4i_backend.c > >> >> > index afb7ddf660ef..b184a476a480 100644 > >> >> > --- a/drivers/gpu/drm/sun4i/sun4i_backend.c > >> >> > +++ b/drivers/gpu/drm/sun4i/sun4i_backend.c > >> >> > @@ -96,6 +96,22 @@ static int sun4i_backend_drm_format_to_layer(struct drm_plane *plane, > >> >> > *mode = SUN4I_BACKEND_LAY_FBFMT_ARGB8888; > >> >> > break; > >> >> > > >> >> > + case DRM_FORMAT_ARGB4444: > >> >> > + *mode = SUN4I_BACKEND_LAY_FBFMT_ARGB4444; > >> >> > + break; > >> >> > + > >> >> > + case DRM_FORMAT_ARGB1555: > >> >> > + *mode = SUN4I_BACKEND_LAY_FBFMT_ARGB1555; > >> >> > + break; > >> >> > + > >> >> > + case DRM_FORMAT_RGBA5551: > >> >> > + *mode = SUN4I_BACKEND_LAY_FBFMT_RGBA5551; > >> >> > + break; > >> >> > + > >> >> > + case DRM_FORMAT_RGBA4444: > >> >> > + *mode = SUN4I_BACKEND_LAY_FBFMT_RGBA4444; > >> >> > >> >> The A20 manual only lists ARGB4444, not RGBA4444. There might be > >> >> some discrepancy here. We can deal with them > >> > > >> > Hmm, yes, that's weird. But I guess this would be part of porting it > >> > to the A20. > >> > > >> >> Also there are some more formats missing from the list, could you > >> >> add them as well? > >> > > >> > Which one do you refer to? > >> > >> RGB556 and RGB655. > > > > These formats are not supported by Linux yet though. > > I see. Sorry for the noise. > > Acked-by: Chen-Yu Tsai <wens@csie.org> Applied with a more verbose commit log. Thanks! Maxime -- Maxime Ripard, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web