Message ID | 20250428-rtc-mt6357-v1-1-31f673b0a723@baylibre.com |
---|---|
State | Accepted |
Headers | show |
Series | rtc: mt6359: Add mt6357 support | expand |
On Mon, Apr 28, 2025 at 04:29:55PM +0200, Alexandre Mergnat wrote: > The MT6357 PMIC contains the same RTC as MT6358 which allows to add > support for it trivially by just complementing the list of compatibles. > > Signed-off-by: Alexandre Mergnat <amergnat@baylibre.com> Acked-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com> Tested-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com> Thanks a lot! Uwe
Il 28/04/25 16:29, Alexandre Mergnat ha scritto: > The MT6357 PMIC contains the same RTC as MT6358 which allows to add > support for it trivially by just complementing the list of compatibles. > > Signed-off-by: Alexandre Mergnat <amergnat@baylibre.com> Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
On Mon, 28 Apr 2025 16:29:55 +0200, Alexandre Mergnat wrote: > The MT6357 PMIC contains the same RTC as MT6358 which allows to add > support for it trivially by just complementing the list of compatibles. > > Applied, thanks! [1/1] rtc: mt6359: Add mt6357 support https://git.kernel.org/abelloni/c/3d8b44b104fb Best regards,
diff --git a/drivers/rtc/rtc-mt6397.c b/drivers/rtc/rtc-mt6397.c index 6979d225a78e47f73b7652159e73f70c43b4fcde..692c00ff544b22b471b51f115dded9fcea432de3 100644 --- a/drivers/rtc/rtc-mt6397.c +++ b/drivers/rtc/rtc-mt6397.c @@ -332,6 +332,7 @@ static const struct mtk_rtc_data mt6397_rtc_data = { static const struct of_device_id mt6397_rtc_of_match[] = { { .compatible = "mediatek,mt6323-rtc", .data = &mt6397_rtc_data }, + { .compatible = "mediatek,mt6357-rtc", .data = &mt6358_rtc_data }, { .compatible = "mediatek,mt6358-rtc", .data = &mt6358_rtc_data }, { .compatible = "mediatek,mt6397-rtc", .data = &mt6397_rtc_data }, { }
The MT6357 PMIC contains the same RTC as MT6358 which allows to add support for it trivially by just complementing the list of compatibles. Signed-off-by: Alexandre Mergnat <amergnat@baylibre.com> --- The `arch/arm64/boot/dts/mediatek/mt6357.dtsi` file already contains both "mediatek,mt6357" and "mediatek,mt6357-rtc" which are documented in the `Documentation/devicetree/bindings/mfd/mediatek,mt6357.yaml` file. This serie come from another splitted serie [1] [1]: https://lore.kernel.org/r/20250428-enable-rtc-v4-0-2b2f7e3f9349@baylibre.com --- drivers/rtc/rtc-mt6397.c | 1 + 1 file changed, 1 insertion(+) --- base-commit: 424dfcd441f035769890e6d1faec2081458627b9 change-id: 20250428-rtc-mt6357-341ad12b48ca Best regards,