Message ID | 20171127205750.19277-13-jernej.skrabec@siol.net (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
在 2017-11-28 04:57,Jernej Skrabec 写道: > Base addresses of channel output CSC (CCSC) depends whether mixer in > question is first or second and if it is second, if supports VEP or > not. > This new property will tell which set of base addresses to take. > > 0 - first mixer or second mixer with VEP support > 1 - second mixer without VEP support Maxime, I think here the ID of the mixer matters. P.S. I didn't found any SoC with a second mixer with VEP currently Thanks! > > Signed-off-by: Jernej Skrabec <jernej.skrabec@siol.net> > --- > drivers/gpu/drm/sun4i/sun8i_mixer.c | 1 + > drivers/gpu/drm/sun4i/sun8i_mixer.h | 1 + > 2 files changed, 2 insertions(+) > > diff --git a/drivers/gpu/drm/sun4i/sun8i_mixer.c > b/drivers/gpu/drm/sun4i/sun8i_mixer.c > index 7c9c87a0535b..2276eff8798d 100644 > --- a/drivers/gpu/drm/sun4i/sun8i_mixer.c > +++ b/drivers/gpu/drm/sun4i/sun8i_mixer.c > @@ -622,6 +622,7 @@ static const struct sun8i_mixer_cfg > sun8i_v3s_mixer_cfg = { > .vi_num = 2, > .ui_num = 1, > .scaler_mask = 0x3, > + .ccsc = 0, Jernej, the lowlevel_sun8iw8/de_feat.c in the BSP DE2 source code claims that V3/V3s have no VEP support even for mixer0. > }; > > static const struct of_device_id sun8i_mixer_of_table[] = { > diff --git a/drivers/gpu/drm/sun4i/sun8i_mixer.h > b/drivers/gpu/drm/sun4i/sun8i_mixer.h > index 355a45e6cfb4..4fcf1653e345 100644 > --- a/drivers/gpu/drm/sun4i/sun8i_mixer.h > +++ b/drivers/gpu/drm/sun4i/sun8i_mixer.h > @@ -136,6 +136,7 @@ struct sun8i_mixer_cfg { > int vi_num; > int ui_num; > int scaler_mask; > + int ccsc; > }; > > struct sun8i_mixer {
On Tue, Nov 28, 2017 at 08:02:26PM +0800, Icenowy Zheng wrote: > 在 2017-11-28 04:57,Jernej Skrabec 写道: > > Base addresses of channel output CSC (CCSC) depends whether mixer in > > question is first or second and if it is second, if supports VEP or not. > > This new property will tell which set of base addresses to take. > > > > 0 - first mixer or second mixer with VEP support > > 1 - second mixer without VEP support > > Maxime, > > I think here the ID of the mixer matters. > > P.S. I didn't found any SoC with a second mixer with VEP currently Then we'll have an allwinner,has-vep; property (or whatever) for all those SoCs' mixer0. What's the big deal about it? Maxime
On Mon, Nov 27, 2017 at 09:57:45PM +0100, Jernej Skrabec wrote: > Base addresses of channel output CSC (CCSC) depends whether mixer in > question is first or second and if it is second, if supports VEP or not. > This new property will tell which set of base addresses to take. > > 0 - first mixer or second mixer with VEP support > 1 - second mixer without VEP support > > Signed-off-by: Jernej Skrabec <jernej.skrabec@siol.net> > --- > drivers/gpu/drm/sun4i/sun8i_mixer.c | 1 + > drivers/gpu/drm/sun4i/sun8i_mixer.h | 1 + > 2 files changed, 2 insertions(+) > > diff --git a/drivers/gpu/drm/sun4i/sun8i_mixer.c b/drivers/gpu/drm/sun4i/sun8i_mixer.c > index 7c9c87a0535b..2276eff8798d 100644 > --- a/drivers/gpu/drm/sun4i/sun8i_mixer.c > +++ b/drivers/gpu/drm/sun4i/sun8i_mixer.c > @@ -622,6 +622,7 @@ static const struct sun8i_mixer_cfg sun8i_v3s_mixer_cfg = { > .vi_num = 2, > .ui_num = 1, > .scaler_mask = 0x3, > + .ccsc = 0, > }; > > static const struct of_device_id sun8i_mixer_of_table[] = { > diff --git a/drivers/gpu/drm/sun4i/sun8i_mixer.h b/drivers/gpu/drm/sun4i/sun8i_mixer.h > index 355a45e6cfb4..4fcf1653e345 100644 > --- a/drivers/gpu/drm/sun4i/sun8i_mixer.h > +++ b/drivers/gpu/drm/sun4i/sun8i_mixer.h > @@ -136,6 +136,7 @@ struct sun8i_mixer_cfg { > int vi_num; > int ui_num; > int scaler_mask; > + int ccsc; Having some documentation for that one would be great too. Thanks! Maxime
diff --git a/drivers/gpu/drm/sun4i/sun8i_mixer.c b/drivers/gpu/drm/sun4i/sun8i_mixer.c index 7c9c87a0535b..2276eff8798d 100644 --- a/drivers/gpu/drm/sun4i/sun8i_mixer.c +++ b/drivers/gpu/drm/sun4i/sun8i_mixer.c @@ -622,6 +622,7 @@ static const struct sun8i_mixer_cfg sun8i_v3s_mixer_cfg = { .vi_num = 2, .ui_num = 1, .scaler_mask = 0x3, + .ccsc = 0, }; static const struct of_device_id sun8i_mixer_of_table[] = { diff --git a/drivers/gpu/drm/sun4i/sun8i_mixer.h b/drivers/gpu/drm/sun4i/sun8i_mixer.h index 355a45e6cfb4..4fcf1653e345 100644 --- a/drivers/gpu/drm/sun4i/sun8i_mixer.h +++ b/drivers/gpu/drm/sun4i/sun8i_mixer.h @@ -136,6 +136,7 @@ struct sun8i_mixer_cfg { int vi_num; int ui_num; int scaler_mask; + int ccsc; }; struct sun8i_mixer {
Base addresses of channel output CSC (CCSC) depends whether mixer in question is first or second and if it is second, if supports VEP or not. This new property will tell which set of base addresses to take. 0 - first mixer or second mixer with VEP support 1 - second mixer without VEP support Signed-off-by: Jernej Skrabec <jernej.skrabec@siol.net> --- drivers/gpu/drm/sun4i/sun8i_mixer.c | 1 + drivers/gpu/drm/sun4i/sun8i_mixer.h | 1 + 2 files changed, 2 insertions(+)