Re: [Freedreno] [RFC PATCH] drm/msm: Introduce Adreno Features

2021-07-29 Thread Akhil P Oommen
On 7/29/2021 9:26 PM, Rob Clark wrote: On Thu, Jul 29, 2021 at 8:31 AM Akhil P Oommen wrote: Introduce a feature flag in gpulist to easily identify the capabilities of each gpu revision. This will help to avoid a lot of adreno_is_axxx() check when we add new features. In the current patch, HW

Re: [Freedreno] [RFC PATCH] drm/msm: Introduce Adreno Features

2021-07-29 Thread Rob Clark
On Thu, Jul 29, 2021 at 8:31 AM Akhil P Oommen wrote: > > Introduce a feature flag in gpulist to easily identify the capabilities > of each gpu revision. This will help to avoid a lot of adreno_is_axxx() > check when we add new features. In the current patch, HW APRIV feature > is converted to a f

[Freedreno] [RFC PATCH] drm/msm: Introduce Adreno Features

2021-07-29 Thread Akhil P Oommen
Introduce a feature flag in gpulist to easily identify the capabilities of each gpu revision. This will help to avoid a lot of adreno_is_axxx() check when we add new features. In the current patch, HW APRIV feature is converted to a feature flag. Signed-off-by: Akhil P Oommen --- This patch is re