Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 29ddd6e1 authored by Jyri Sarha's avatar Jyri Sarha
Browse files

drm/tilcdc: Allocate register storage based on the actual number registers



Allocate suspend/resume register storage based on the actual number
registers the driver is aware of. The static allocation for register
storage had fallen behind badly.

Reported-by: default avatarMichael Bode <michael@bumbleB.de>
Signed-off-by: default avatarJyri Sarha <jsarha@ti.com>
Reviewed-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent 7974dff4
Loading
Loading
Loading
Loading
+20 −1
Original line number Diff line number Diff line
@@ -141,11 +141,14 @@ static int tilcdc_unload(struct drm_device *dev)

	pm_runtime_disable(dev->dev);

	kfree(priv->saved_register);
	kfree(priv);

	return 0;
}

static size_t tilcdc_num_regs(void);

static int tilcdc_load(struct drm_device *dev, unsigned long flags)
{
	struct platform_device *pdev = dev->platformdev;
@@ -157,7 +160,12 @@ static int tilcdc_load(struct drm_device *dev, unsigned long flags)
	int ret;

	priv = kzalloc(sizeof(*priv), GFP_KERNEL);
	if (!priv) {
	if (priv)
		priv->saved_register = kcalloc(tilcdc_num_regs(),
					       sizeof(*priv->saved_register),
					       GFP_KERNEL);
	if (!priv || !priv->saved_register) {
		kfree(priv);
		dev_err(dev->dev, "failed to allocate private data\n");
		return -ENOMEM;
	}
@@ -339,6 +347,7 @@ static int tilcdc_load(struct drm_device *dev, unsigned long flags)

fail_free_priv:
	dev->dev_private = NULL;
	kfree(priv->saved_register);
	kfree(priv);
	return ret;
}
@@ -456,6 +465,16 @@ static const struct {
		REG(2, true,  LCDC_INT_ENABLE_SET_REG),
#undef REG
};

static size_t tilcdc_num_regs(void)
{
	return ARRAY_SIZE(registers);
}
#else
static size_t tilcdc_num_regs(void)
{
	return 0;
}
#endif

#ifdef CONFIG_DEBUG_FS
+1 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ struct tilcdc_drm_private {
	uint32_t max_width;

	/* register contents saved across suspend/resume: */
	u32 saved_register[12];
	u32 *saved_register;
	bool ctx_valid;

#ifdef CONFIG_CPU_FREQ