reset: airoha: unify code using SCU regmap helper

This patch unify probing code using airoha SCU regmap helper, thus a
common function can be used instead of an7581/an7583 specific ones.

Signed-off-by: Mikhail Kshevetskiy <mikhail.kshevetskiy@iopsys.eu>
This commit is contained in:
Mikhail Kshevetskiy 2025-11-01 03:44:53 +03:00 committed by Tom Rini
parent ea9b797537
commit f1cae1f63d

View File

@ -11,6 +11,7 @@
#include <linux/io.h> #include <linux/io.h>
#include <reset-uclass.h> #include <reset-uclass.h>
#include <regmap.h> #include <regmap.h>
#include <asm/arch/scu-regmap.h>
#include <dt-bindings/reset/airoha,en7581-reset.h> #include <dt-bindings/reset/airoha,en7581-reset.h>
@ -153,11 +154,10 @@ static struct reset_ops airoha_reset_ops = {
static int airoha_reset_probe(struct udevice *dev) static int airoha_reset_probe(struct udevice *dev)
{ {
struct airoha_reset_priv *priv = dev_get_priv(dev); struct airoha_reset_priv *priv = dev_get_priv(dev);
int ret;
ret = regmap_init_mem(dev_ofnode(dev), &priv->map); priv->map = airoha_get_scu_regmap();
if (ret) if (IS_ERR(priv->map))
return ret; return PTR_ERR(priv->map);
priv->bank_ofs = en7581_rst_ofs; priv->bank_ofs = en7581_rst_ofs;
priv->idx_map = en7581_rst_map; priv->idx_map = en7581_rst_map;