Message ID | 20241108-rtc-v5-0-0194727c778b@amlogic.com (mailing list archive) |
---|---|
Headers | show |
Series | support for amlogic rtc | expand |
On Fri, 08 Nov 2024 13:54:40 +0800, Xianwei Zhao wrote: > Add rtc driver and bindigns for the amlogic A4(A113L2) and A5(A113X2) SoCs. > > Applied, thanks! [1/3] dt-bindings: rtc: Add Amlogic A4 and A5 RTC https://git.kernel.org/abelloni/c/12defbf1429c [2/3] rtc: support for the Amlogic on-chip RTC https://git.kernel.org/abelloni/c/db26c3d6eb01 [3/3] MAINTAINERS: Add an entry for Amlogic RTC driver https://git.kernel.org/abelloni/c/cf6f2ddfd039 Best regards,
On 11/11/2024 22:47:51+0100, Alexandre Belloni wrote: > On Fri, 08 Nov 2024 13:54:40 +0800, Xianwei Zhao wrote: > > Add rtc driver and bindigns for the amlogic A4(A113L2) and A5(A113X2) SoCs. > > > > > > Applied, thanks! Actually, I dropped them, I'll comment on 2/3 > > [1/3] dt-bindings: rtc: Add Amlogic A4 and A5 RTC > https://git.kernel.org/abelloni/c/12defbf1429c > [2/3] rtc: support for the Amlogic on-chip RTC > https://git.kernel.org/abelloni/c/db26c3d6eb01 > [3/3] MAINTAINERS: Add an entry for Amlogic RTC driver > https://git.kernel.org/abelloni/c/cf6f2ddfd039 > > Best regards, > > -- > Alexandre Belloni, co-owner and COO, Bootlin > Embedded Linux and Kernel engineering > https://bootlin.com >
Add rtc driver and bindigns for the amlogic A4(A113L2) and A5(A113X2) SoCs. Signed-off-by: Xianwei Zhao <xianwei.zhao@amlogic.com> --- Changes in v5: - Some formatting adjustments and minor fixes were made based on Christophe's suggestions. - Link to v4: https://lore.kernel.org/r/20240920-rtc-v4-0-91ae5fb4e3d5@amlogic.com Changes in v4: - Keep the same order as as in properties. - Link to v3: https://lore.kernel.org/r/20240910-rtc-v3-0-1fa077a69a20@amlogic.com Changes in v3: - Perfect the binding description and rename binding. - Using dev_err_probe function correctly, and modify commit message. - Change placement about MAINTAINERS. - Link to v2: https://lore.kernel.org/r/20240903-rtc-v2-0-05da5755b8d9@amlogic.com Changes in v2: - Modify bindings clock name and perfect the example. - Fix some bug in driver, and use dev_err_probe instead of dev_err in probe process. - Use RTC API to handle calibration. - Remove unused func and rename driver file name. - Link to v1: https://lore.kernel.org/r/20240823-rtc-v1-0-6f70381da283@amlogic.com --- Yiting Deng (3): dt-bindings: rtc: Add Amlogic A4 and A5 RTC rtc: support for the Amlogic on-chip RTC MAINTAINERS: Add an entry for Amlogic RTC driver .../devicetree/bindings/rtc/amlogic,a4-rtc.yaml | 63 +++ MAINTAINERS | 8 + drivers/rtc/Kconfig | 12 + drivers/rtc/Makefile | 1 + drivers/rtc/rtc-amlogic-a4.c | 476 +++++++++++++++++++++ 5 files changed, 560 insertions(+) --- base-commit: 8a2c49e0fd92e6760636bcfbf11e11d9ddd61cf9 change-id: 20240823-rtc-127cd8192a13 Best regards,