diff options
author | Zelong Dong <[email protected]> | 2023-09-14 14:40:17 +0800 |
---|---|---|
committer | Philipp Zabel <[email protected]> | 2023-11-28 17:21:59 +0100 |
commit | 41df5d7d5e99fa9b15e9f7fec7f9a7f092a1440e (patch) | |
tree | 866aad0ee36e9b00dc4cf47fd0963100fd022823 | |
parent | 0c0ea61c9b3a9e4df9cf029971f973cb12ccfef9 (diff) |
reset: reset-meson: add support for Amlogic C3 SoC Reset Controller
Add a new compatible string to support for the reset controller
on the C3 SoC. The count and offset for C3 Soc RESET registers are
same as S4 Soc.
Signed-off-by: Zelong Dong <[email protected]>
Reviewed-by: Dmitry Rokosov <[email protected]>
Reviewed-by: Martin Blumenstingl <[email protected]>
Reviewed-by: Neil Armstrong <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Philipp Zabel <[email protected]>
-rw-r--r-- | drivers/reset/reset-meson.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/reset/reset-meson.c b/drivers/reset/reset-meson.c index a7af051b17fb..f78be97898bc 100644 --- a/drivers/reset/reset-meson.c +++ b/drivers/reset/reset-meson.c @@ -108,6 +108,7 @@ static const struct of_device_id meson_reset_dt_ids[] = { { .compatible = "amlogic,meson-axg-reset", .data = &meson8b_param}, { .compatible = "amlogic,meson-a1-reset", .data = &meson_a1_param}, { .compatible = "amlogic,meson-s4-reset", .data = &meson_s4_param}, + { .compatible = "amlogic,c3-reset", .data = &meson_s4_param}, { /* sentinel */ }, }; MODULE_DEVICE_TABLE(of, meson_reset_dt_ids); |