Re: [Intel-gfx] [PATCH 11/18] drm/i915: Return the mask of enabled infoframes from ->inforame_enabled()

2018-10-01 Thread Ville Syrjälä
On Mon, Oct 01, 2018 at 08:55:51AM +0200, Daniel Vetter wrote: > On Mon, Sep 24, 2018 at 07:36:08PM +0300, Ville Syrjälä wrote: > > On Mon, Sep 24, 2018 at 05:51:16PM +0200, Daniel Vetter wrote: > > > On Thu, Sep 20, 2018 at 09:51:38PM +0300, Ville Syrjala wrote: > > > > From: Ville Syrjälä > > >

Re: [Intel-gfx] [PATCH 11/18] drm/i915: Return the mask of enabled infoframes from ->inforame_enabled()

2018-10-01 Thread Daniel Vetter
On Mon, Sep 24, 2018 at 07:36:08PM +0300, Ville Syrjälä wrote: > On Mon, Sep 24, 2018 at 05:51:16PM +0200, Daniel Vetter wrote: > > On Thu, Sep 20, 2018 at 09:51:38PM +0300, Ville Syrjala wrote: > > > From: Ville Syrjälä > > > > > > We want to start tracking which infoframes are enabled, so

Re: [Intel-gfx] [PATCH 11/18] drm/i915: Return the mask of enabled infoframes from ->inforame_enabled()

2018-09-24 Thread Ville Syrjälä
On Mon, Sep 24, 2018 at 05:51:16PM +0200, Daniel Vetter wrote: > On Thu, Sep 20, 2018 at 09:51:38PM +0300, Ville Syrjala wrote: > > From: Ville Syrjälä > > > > We want to start tracking which infoframes are enabled, so let's replace > > the boolean flag with a bitmask. > > > > We'll abstract

Re: [Intel-gfx] [PATCH 11/18] drm/i915: Return the mask of enabled infoframes from ->inforame_enabled()

2018-09-24 Thread Daniel Vetter
On Thu, Sep 20, 2018 at 09:51:38PM +0300, Ville Syrjala wrote: > From: Ville Syrjälä > > We want to start tracking which infoframes are enabled, so let's replace > the boolean flag with a bitmask. > > We'll abstract the bitmask so that it's not platform dependent. That > will allow us to

[Intel-gfx] [PATCH 11/18] drm/i915: Return the mask of enabled infoframes from ->inforame_enabled()

2018-09-20 Thread Ville Syrjala
From: Ville Syrjälä We want to start tracking which infoframes are enabled, so let's replace the boolean flag with a bitmask. We'll abstract the bitmask so that it's not platform dependent. That will allow us to examine the bitmask later in platform independent code. Signed-off-by: Ville