]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
reset: reset-meson: add support for the Meson-S4 SoC Reset Controller
authorZelong Dong <zelong.dong@amlogic.com>
Fri, 7 Jan 2022 02:39:31 +0000 (10:39 +0800)
committerPhilipp Zabel <p.zabel@pengutronix.de>
Tue, 3 May 2022 15:40:51 +0000 (17:40 +0200)
Compared to the A1 SoCs the number of RESET registers is different
and the offset for the level registers is the same. Add a new
compatible string and struct meson_reset_param to add support for the
reset controller on the S4 SoC.

Signed-off-by: Zelong Dong <zelong.dong@amlogic.com>
Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Link: https://lore.kernel.org/r/20220107023931.13251-4-zelong.dong@amlogic.com
drivers/reset/reset-meson.c

index c9bc325ad65ab9cd60b9d5d3312d6dd0cd87386f..26dc5477861516dadda0941667f3c745e14c77f6 100644 (file)
@@ -98,11 +98,17 @@ static const struct meson_reset_param meson_a1_param = {
        .level_offset   = 0x40,
 };
 
+static const struct meson_reset_param meson_s4_param = {
+       .reg_count      = 6,
+       .level_offset   = 0x40,
+};
+
 static const struct of_device_id meson_reset_dt_ids[] = {
         { .compatible = "amlogic,meson8b-reset",    .data = &meson8b_param},
         { .compatible = "amlogic,meson-gxbb-reset", .data = &meson8b_param},
         { .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},
         { /* sentinel */ },
 };
 MODULE_DEVICE_TABLE(of, meson_reset_dt_ids);