Commit 3d59c22b authored by Mark Brown's avatar Mark Brown Committed by Heiko Stuebner

drm/rockchip: vop2: Convert to use maple tree register cache

The maple tree register cache is based on a much more modern data structure
than the rbtree cache and makes optimisation choices which are probably
more appropriate for modern systems than those made by the rbtree cache.
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
Signed-off-by: default avatarHeiko Stuebner <heiko@sntech.de>
Link: https://patchwork.freedesktop.org/patch/msgid/20231001-drm-rockchip-maple-v1-1-ca396ab75be7@kernel.org
parent eb23cffd
...@@ -2640,7 +2640,7 @@ static const struct regmap_config vop2_regmap_config = { ...@@ -2640,7 +2640,7 @@ static const struct regmap_config vop2_regmap_config = {
.max_register = 0x3000, .max_register = 0x3000,
.name = "vop2", .name = "vop2",
.volatile_table = &vop2_volatile_table, .volatile_table = &vop2_volatile_table,
.cache_type = REGCACHE_RBTREE, .cache_type = REGCACHE_MAPLE,
}; };
static int vop2_bind(struct device *dev, struct device *master, void *data) static int vop2_bind(struct device *dev, struct device *master, void *data)
......
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