Skip to content

Commit

Permalink
drm/aspeed: Use devm_drm_dev_alloc
Browse files Browse the repository at this point in the history
As usual, we can drop the drm_dev_put() and need to embed the
drm_device. Since it's so few, also go right ahead and leave
drm_device->dev_private set to NULL, so that we always use the
container_of() upcast, which is faster anyway.

Acked-by: Sam Ravnborg <[email protected]>
Signed-off-by: Daniel Vetter <[email protected]>
Cc: Joel Stanley <[email protected]>
Cc: Andrew Jeffery <[email protected]>
Cc: [email protected]
Cc: [email protected]
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
  • Loading branch information
danvet committed Apr 28, 2020
1 parent e95d2f4 commit cd82945
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 22 deletions.
2 changes: 2 additions & 0 deletions drivers/gpu/drm/aspeed/aspeed_gfx.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include <drm/drm_simple_kms_helper.h>

struct aspeed_gfx {
struct drm_device drm;
void __iomem *base;
struct clk *clk;
struct reset_control *rst;
Expand All @@ -13,6 +14,7 @@ struct aspeed_gfx {
struct drm_simple_display_pipe pipe;
struct drm_connector connector;
};
#define to_aspeed_gfx(x) container_of(x, struct aspeed_gfx, drm)

int aspeed_gfx_create_pipe(struct drm_device *drm);
int aspeed_gfx_create_output(struct drm_device *drm);
Expand Down
2 changes: 1 addition & 1 deletion drivers/gpu/drm/aspeed/aspeed_gfx_crtc.c
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ static const uint32_t aspeed_gfx_formats[] = {

int aspeed_gfx_create_pipe(struct drm_device *drm)
{
struct aspeed_gfx *priv = drm->dev_private;
struct aspeed_gfx *priv = to_aspeed_gfx(drm);

return drm_simple_display_pipe_init(drm, &priv->pipe, &aspeed_gfx_funcs,
aspeed_gfx_formats,
Expand Down
31 changes: 11 additions & 20 deletions drivers/gpu/drm/aspeed/aspeed_gfx_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ static void aspeed_gfx_setup_mode_config(struct drm_device *drm)
static irqreturn_t aspeed_gfx_irq_handler(int irq, void *data)
{
struct drm_device *drm = data;
struct aspeed_gfx *priv = drm->dev_private;
struct aspeed_gfx *priv = to_aspeed_gfx(drm);
u32 reg;

reg = readl(priv->base + CRT_CTRL1);
Expand All @@ -96,15 +96,10 @@ static irqreturn_t aspeed_gfx_irq_handler(int irq, void *data)
static int aspeed_gfx_load(struct drm_device *drm)
{
struct platform_device *pdev = to_platform_device(drm->dev);
struct aspeed_gfx *priv;
struct aspeed_gfx *priv = to_aspeed_gfx(drm);
struct resource *res;
int ret;

priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
if (!priv)
return -ENOMEM;
drm->dev_private = priv;

res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
priv->base = devm_ioremap_resource(drm->dev, res);
if (IS_ERR(priv->base))
Expand Down Expand Up @@ -187,8 +182,6 @@ static void aspeed_gfx_unload(struct drm_device *drm)
{
drm_kms_helper_poll_fini(drm);
drm_mode_config_cleanup(drm);

drm->dev_private = NULL;
}

DEFINE_DRM_GEM_CMA_FOPS(fops);
Expand Down Expand Up @@ -216,27 +209,26 @@ static const struct of_device_id aspeed_gfx_match[] = {

static int aspeed_gfx_probe(struct platform_device *pdev)
{
struct drm_device *drm;
struct aspeed_gfx *priv;
int ret;

drm = drm_dev_alloc(&aspeed_gfx_driver, &pdev->dev);
if (IS_ERR(drm))
return PTR_ERR(drm);
priv = devm_drm_dev_alloc(&pdev->dev, &aspeed_gfx_driver,
struct aspeed_gfx, drm);
if (IS_ERR(priv))
return PTR_ERR(priv);

ret = aspeed_gfx_load(drm);
ret = aspeed_gfx_load(&priv->drm);
if (ret)
goto err_free;
return ret;

ret = drm_dev_register(drm, 0);
ret = drm_dev_register(&priv->drm, 0);
if (ret)
goto err_unload;

return 0;

err_unload:
aspeed_gfx_unload(drm);
err_free:
drm_dev_put(drm);
aspeed_gfx_unload(&priv->drm);

return ret;
}
Expand All @@ -247,7 +239,6 @@ static int aspeed_gfx_remove(struct platform_device *pdev)

drm_dev_unregister(drm);
aspeed_gfx_unload(drm);
drm_dev_put(drm);

return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion drivers/gpu/drm/aspeed/aspeed_gfx_out.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ static const struct drm_connector_funcs aspeed_gfx_connector_funcs = {

int aspeed_gfx_create_output(struct drm_device *drm)
{
struct aspeed_gfx *priv = drm->dev_private;
struct aspeed_gfx *priv = to_aspeed_gfx(drm);
int ret;

priv->connector.dpms = DRM_MODE_DPMS_OFF;
Expand Down

0 comments on commit cd82945

Please sign in to comment.