Re: [Freedreno] Whether A200 driver is supported by Linux Mainline Kernel

2017-11-23 Thread abhijit
Hi all, @Wladimir, Thank you very much for you kind response. I am planning to boot older version of linux kernel(2.6) on Karo board and use reverse engineering tools to get any GPU related settings. Please let me know what are the important settings I have to look into, that may be useful

Re: [Freedreno] [PATCH 8/8] drm/msm/gpu: Add devfreq support for the GPU

2017-11-23 Thread kbuild test robot
Hi Jordan, Thank you for the patch! Yet something to improve: [auto build test ERROR on robclark/msm-next] [also build test ERROR on next-20171122] [cannot apply to v4.14] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

Re: [Freedreno] [PATCH] drm/msm: add missing MODULE_FIRMWARE declarations

2017-11-23 Thread Rob Clark
On Thu, Nov 23, 2017 at 2:49 PM, Nicolas Dechesne wrote: > * some a5xx files were missing > * fixup for an existing typo > > Signed-off-by: Nicolas Dechesne Thanks Reviewed-by: Rob Clark > --- >

Re: [Freedreno] [PATCH 8/8] drm/msm/gpu: Add devfreq support for the GPU

2017-11-23 Thread kbuild test robot
Hi Jordan, Thank you for the patch! Yet something to improve: [auto build test ERROR on robclark/msm-next] [also build test ERROR on next-20171122] [cannot apply to v4.14] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

[Freedreno] [PATCH] drm/msm: add missing MODULE_FIRMWARE declarations

2017-11-23 Thread Nicolas Dechesne
* some a5xx files were missing * fixup for an existing typo Signed-off-by: Nicolas Dechesne --- drivers/gpu/drm/msm/adreno/adreno_device.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/msm/adreno/adreno_device.c

[Freedreno] [PATCH 09/15] drm/msm/mdp5: Use drm_mode_get_hv_timing() to populate plane clip rectangle

2017-11-23 Thread Ville Syrjala
From: Ville Syrjälä Use drm_mode_get_hv_timing() to fill out the plane clip rectangle. Note that this replaces crtc_state->adjusted_mode usage with crtc_state->mode. The latter is the correct choice since that's the mode the user provided and it matches the plane

[Freedreno] [PATCH 00/15] drm: More plane clipping polish

2017-11-23 Thread Ville Syrjala
From: Ville Syrjälä This series first unifies all users of drm_atomic_helper_check_plane_state() to populate the clip rectangle with drm_mode_get_hv_timing(), and once everything is unified the clip rectangle handling is sucked into

Re: [Freedreno] [PATCH] drm/msm: update adreno firmware path in MODULE_FIRMWARE

2017-11-23 Thread Rob Clark
On Thu, Nov 23, 2017 at 10:09 AM, Nicolas Dechesne wrote: > On Thu, Nov 23, 2017 at 3:54 PM, Rob Clark wrote: >> On Thu, Nov 23, 2017 at 5:32 AM, Nicolas Dechesne >> wrote: >>> The preferred location for Adreno

Re: [Freedreno] [PATCH] drm/msm: update adreno firmware path in MODULE_FIRMWARE

2017-11-23 Thread Rob Clark
On Thu, Nov 23, 2017 at 12:09 PM, Ben Hutchings wrote: > On Thu, 2017-11-23 at 16:09 +0100, Nicolas Dechesne wrote: >> On Thu, Nov 23, 2017 at 3:54 PM, Rob Clark wrote: >> > On Thu, Nov 23, 2017 at 5:32 AM, Nicolas Dechesne >> >

Re: [Freedreno] [PATCH] drm/msm: update adreno firmware path in MODULE_FIRMWARE

2017-11-23 Thread Ben Hutchings
On Thu, 2017-11-23 at 16:09 +0100, Nicolas Dechesne wrote: > On Thu, Nov 23, 2017 at 3:54 PM, Rob Clark wrote: > > On Thu, Nov 23, 2017 at 5:32 AM, Nicolas Dechesne > > wrote: > > > The preferred location for Adreno firmware files is now in qcom/

Re: [Freedreno] [PATCH] drm/msm: update adreno firmware path in MODULE_FIRMWARE

2017-11-23 Thread Nicolas Dechesne
On Thu, Nov 23, 2017 at 3:54 PM, Rob Clark wrote: > On Thu, Nov 23, 2017 at 5:32 AM, Nicolas Dechesne > wrote: >> The preferred location for Adreno firmware files is now in qcom/ subfolder, >> especially now that we are adding some of them in

Re: [Freedreno] [PATCH] drm/msm: update adreno firmware path in MODULE_FIRMWARE

2017-11-23 Thread Rob Clark
On Thu, Nov 23, 2017 at 5:32 AM, Nicolas Dechesne wrote: > The preferred location for Adreno firmware files is now in qcom/ subfolder, > especially now that we are adding some of them in linux-firmware. > > Reported-by: Ben Hutchings >

[Freedreno] [PATCH] drm/msm: update adreno firmware path in MODULE_FIRMWARE

2017-11-23 Thread Nicolas Dechesne
The preferred location for Adreno firmware files is now in qcom/ subfolder, especially now that we are adding some of them in linux-firmware. Reported-by: Ben Hutchings Signed-off-by: Nicolas Dechesne ---