summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/powerplay/amd_powerplay.c
diff options
context:
space:
mode:
authorRex Zhu <Rex.Zhu@amd.com>2015-12-29 13:56:03 +0800
committerAlex Deucher <alexander.deucher@amd.com>2016-01-08 15:39:23 -0500
commita969e163a4ac1b0cfa2dc7ab890aaa9ab092951c (patch)
treee3efd3937e624d2e96cf5e5557fb9bbd376e0867 /drivers/gpu/drm/amd/powerplay/amd_powerplay.c
parentc15c8d70207d467bb4312d6ac5536c101246fdc6 (diff)
downloadblackbird-obmc-linux-a969e163a4ac1b0cfa2dc7ab890aaa9ab092951c.tar.gz
blackbird-obmc-linux-a969e163a4ac1b0cfa2dc7ab890aaa9ab092951c.zip
drm/amd/powerplay: add powerplay valid check to avoid null point. (v2)
In case CONFIG_DRM_AMD_POWERPLAY is defined and amdgpu.powerplay=0. some functions in powrplay can also be called by DAL. and the input parameter is *adev. if just check point not NULL was not enough and will lead to NULL point error. V2: AGD: rebase on upstream Signed-off-by: Rex Zhu <Rex.Zhu@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/powerplay/amd_powerplay.c')
-rw-r--r--drivers/gpu/drm/amd/powerplay/amd_powerplay.c15
1 files changed, 12 insertions, 3 deletions
diff --git a/drivers/gpu/drm/amd/powerplay/amd_powerplay.c b/drivers/gpu/drm/amd/powerplay/amd_powerplay.c
index db0370bd60e3..2764bd327034 100644
--- a/drivers/gpu/drm/amd/powerplay/amd_powerplay.c
+++ b/drivers/gpu/drm/amd/powerplay/amd_powerplay.c
@@ -30,6 +30,12 @@
#include "power_state.h"
#include "eventmanager.h"
+#define PP_CHECK(handle) \
+ do { \
+ if ((handle) == NULL || (handle)->pp_valid != PP_VALID) \
+ return -EINVAL; \
+ } while (0)
+
static int pp_early_init(void *handle)
{
return 0;
@@ -537,6 +543,8 @@ static int amd_pp_instance_init(struct amd_pp_init *pp_init,
if (handle == NULL)
return -ENOMEM;
+ handle->pp_valid = PP_VALID;
+
ret = smum_init(pp_init, handle);
if (ret)
goto fail_smum;
@@ -611,8 +619,7 @@ int amd_powerplay_display_configuration_change(void *handle, const void *input)
struct pp_hwmgr *hwmgr;
const struct amd_pp_display_configuration *display_config = input;
- if (handle == NULL)
- return -EINVAL;
+ PP_CHECK((struct pp_instance *)handle);
hwmgr = ((struct pp_instance *)handle)->hwmgr;
@@ -625,7 +632,9 @@ int amd_powerplay_get_display_power_level(void *handle,
{
struct pp_hwmgr *hwmgr;
- if (handle == NULL || output == NULL)
+ PP_CHECK((struct pp_instance *)handle);
+
+ if (output == NULL)
return -EINVAL;
hwmgr = ((struct pp_instance *)handle)->hwmgr;
OpenPOWER on IntegriCloud