Commit fca0ce2a authored by Ville Syrjälä's avatar Ville Syrjälä

drm/i915: Fix plane init failure paths

Deal with errors from drm_universal_plane_init() in primary and cursor
plane init paths (sprites were already covered). Also make the code
neater by using goto for error handling.

v2: Rebased due to drm_universal_plane_init() 'name' parameter
v3: Another rebase due to s/""/NULL/
v4: Rebased on drm-nightly (Matthew Auld)
v5: Fix email address (Matthew Auld)
Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: default avatarMatthew Auld <matthew.auld@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1458571402-32749-1-git-send-email-matthew.auld@intel.com
parent 55939469
...@@ -13947,20 +13947,19 @@ const struct drm_plane_funcs intel_plane_funcs = { ...@@ -13947,20 +13947,19 @@ const struct drm_plane_funcs intel_plane_funcs = {
static struct drm_plane *intel_primary_plane_create(struct drm_device *dev, static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
int pipe) int pipe)
{ {
struct intel_plane *primary; struct intel_plane *primary = NULL;
struct intel_plane_state *state; struct intel_plane_state *state = NULL;
const uint32_t *intel_primary_formats; const uint32_t *intel_primary_formats;
unsigned int num_formats; unsigned int num_formats;
int ret;
primary = kzalloc(sizeof(*primary), GFP_KERNEL); primary = kzalloc(sizeof(*primary), GFP_KERNEL);
if (primary == NULL) if (!primary)
return NULL; goto fail;
state = intel_create_plane_state(&primary->base); state = intel_create_plane_state(&primary->base);
if (!state) { if (!state)
kfree(primary); goto fail;
return NULL;
}
primary->base.state = &state->base; primary->base.state = &state->base;
primary->can_scale = false; primary->can_scale = false;
...@@ -14002,10 +14001,12 @@ static struct drm_plane *intel_primary_plane_create(struct drm_device *dev, ...@@ -14002,10 +14001,12 @@ static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
primary->disable_plane = i9xx_disable_primary_plane; primary->disable_plane = i9xx_disable_primary_plane;
} }
drm_universal_plane_init(dev, &primary->base, 0, ret = drm_universal_plane_init(dev, &primary->base, 0,
&intel_plane_funcs, &intel_plane_funcs,
intel_primary_formats, num_formats, intel_primary_formats, num_formats,
DRM_PLANE_TYPE_PRIMARY, NULL); DRM_PLANE_TYPE_PRIMARY, NULL);
if (ret)
goto fail;
if (INTEL_INFO(dev)->gen >= 4) if (INTEL_INFO(dev)->gen >= 4)
intel_create_rotation_property(dev, primary); intel_create_rotation_property(dev, primary);
...@@ -14013,6 +14014,12 @@ static struct drm_plane *intel_primary_plane_create(struct drm_device *dev, ...@@ -14013,6 +14014,12 @@ static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs); drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
return &primary->base; return &primary->base;
fail:
kfree(state);
kfree(primary);
return NULL;
} }
void intel_create_rotation_property(struct drm_device *dev, struct intel_plane *plane) void intel_create_rotation_property(struct drm_device *dev, struct intel_plane *plane)
...@@ -14129,18 +14136,17 @@ intel_update_cursor_plane(struct drm_plane *plane, ...@@ -14129,18 +14136,17 @@ intel_update_cursor_plane(struct drm_plane *plane,
static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev, static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
int pipe) int pipe)
{ {
struct intel_plane *cursor; struct intel_plane *cursor = NULL;
struct intel_plane_state *state; struct intel_plane_state *state = NULL;
int ret;
cursor = kzalloc(sizeof(*cursor), GFP_KERNEL); cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
if (cursor == NULL) if (!cursor)
return NULL; goto fail;
state = intel_create_plane_state(&cursor->base); state = intel_create_plane_state(&cursor->base);
if (!state) { if (!state)
kfree(cursor); goto fail;
return NULL;
}
cursor->base.state = &state->base; cursor->base.state = &state->base;
cursor->can_scale = false; cursor->can_scale = false;
...@@ -14152,11 +14158,13 @@ static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev, ...@@ -14152,11 +14158,13 @@ static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
cursor->update_plane = intel_update_cursor_plane; cursor->update_plane = intel_update_cursor_plane;
cursor->disable_plane = intel_disable_cursor_plane; cursor->disable_plane = intel_disable_cursor_plane;
drm_universal_plane_init(dev, &cursor->base, 0, ret = drm_universal_plane_init(dev, &cursor->base, 0,
&intel_plane_funcs, &intel_plane_funcs,
intel_cursor_formats, intel_cursor_formats,
ARRAY_SIZE(intel_cursor_formats), ARRAY_SIZE(intel_cursor_formats),
DRM_PLANE_TYPE_CURSOR, NULL); DRM_PLANE_TYPE_CURSOR, NULL);
if (ret)
goto fail;
if (INTEL_INFO(dev)->gen >= 4) { if (INTEL_INFO(dev)->gen >= 4) {
if (!dev->mode_config.rotation_property) if (!dev->mode_config.rotation_property)
...@@ -14176,6 +14184,12 @@ static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev, ...@@ -14176,6 +14184,12 @@ static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs); drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
return &cursor->base; return &cursor->base;
fail:
kfree(state);
kfree(cursor);
return NULL;
} }
static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc, static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
......
...@@ -1025,8 +1025,8 @@ static uint32_t skl_plane_formats[] = { ...@@ -1025,8 +1025,8 @@ static uint32_t skl_plane_formats[] = {
int int
intel_plane_init(struct drm_device *dev, enum pipe pipe, int plane) intel_plane_init(struct drm_device *dev, enum pipe pipe, int plane)
{ {
struct intel_plane *intel_plane; struct intel_plane *intel_plane = NULL;
struct intel_plane_state *state; struct intel_plane_state *state = NULL;
unsigned long possible_crtcs; unsigned long possible_crtcs;
const uint32_t *plane_formats; const uint32_t *plane_formats;
int num_plane_formats; int num_plane_formats;
...@@ -1036,13 +1036,15 @@ intel_plane_init(struct drm_device *dev, enum pipe pipe, int plane) ...@@ -1036,13 +1036,15 @@ intel_plane_init(struct drm_device *dev, enum pipe pipe, int plane)
return -ENODEV; return -ENODEV;
intel_plane = kzalloc(sizeof(*intel_plane), GFP_KERNEL); intel_plane = kzalloc(sizeof(*intel_plane), GFP_KERNEL);
if (!intel_plane) if (!intel_plane) {
return -ENOMEM; ret = -ENOMEM;
goto fail;
}
state = intel_create_plane_state(&intel_plane->base); state = intel_create_plane_state(&intel_plane->base);
if (!state) { if (!state) {
kfree(intel_plane); ret = -ENOMEM;
return -ENOMEM; goto fail;
} }
intel_plane->base.state = &state->base; intel_plane->base.state = &state->base;
...@@ -1097,28 +1099,34 @@ intel_plane_init(struct drm_device *dev, enum pipe pipe, int plane) ...@@ -1097,28 +1099,34 @@ intel_plane_init(struct drm_device *dev, enum pipe pipe, int plane)
num_plane_formats = ARRAY_SIZE(skl_plane_formats); num_plane_formats = ARRAY_SIZE(skl_plane_formats);
break; break;
default: default:
kfree(intel_plane); MISSING_CASE(INTEL_INFO(dev)->gen);
return -ENODEV; ret = -ENODEV;
goto fail;
} }
intel_plane->pipe = pipe; intel_plane->pipe = pipe;
intel_plane->plane = plane; intel_plane->plane = plane;
intel_plane->frontbuffer_bit = INTEL_FRONTBUFFER_SPRITE(pipe, plane); intel_plane->frontbuffer_bit = INTEL_FRONTBUFFER_SPRITE(pipe, plane);
intel_plane->check_plane = intel_check_sprite_plane; intel_plane->check_plane = intel_check_sprite_plane;
possible_crtcs = (1 << pipe); possible_crtcs = (1 << pipe);
ret = drm_universal_plane_init(dev, &intel_plane->base, possible_crtcs, ret = drm_universal_plane_init(dev, &intel_plane->base, possible_crtcs,
&intel_plane_funcs, &intel_plane_funcs,
plane_formats, num_plane_formats, plane_formats, num_plane_formats,
DRM_PLANE_TYPE_OVERLAY, NULL); DRM_PLANE_TYPE_OVERLAY, NULL);
if (ret) { if (ret)
kfree(intel_plane); goto fail;
goto out;
}
intel_create_rotation_property(dev, intel_plane); intel_create_rotation_property(dev, intel_plane);
drm_plane_helper_add(&intel_plane->base, &intel_plane_helper_funcs); drm_plane_helper_add(&intel_plane->base, &intel_plane_helper_funcs);
out: return 0;
fail:
kfree(state);
kfree(intel_plane);
return ret; return ret;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment