File tree Expand file tree Collapse file tree 4 files changed +936
-0
lines changed
Expand file tree Collapse file tree 4 files changed +936
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ zephyr_library_sources_ifdef(CONFIG_RTC_DS3231 rtc_ds3231.c)
2222zephyr_library_sources_ifdef(CONFIG_RTC_EMUL rtc_emul.c)
2323zephyr_library_sources_ifdef(CONFIG_RTC_FAKE rtc_fake.c)
2424zephyr_library_sources_ifdef(CONFIG_RTC_INFINEON_CAT1 rtc_ifx_cat1.c)
25+ zephyr_library_sources_ifdef(CONFIG_RTC_MCHP_G1 rtc_mchp_g1.c)
2526zephyr_library_sources_ifdef(CONFIG_RTC_MOTOROLA_MC146818 rtc_mc146818.c)
2627zephyr_library_sources_ifdef(CONFIG_RTC_NUMAKER rtc_numaker.c)
2728zephyr_library_sources_ifdef(CONFIG_RTC_NXP_IRTC rtc_nxp_irtc.c)
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ source "drivers/rtc/Kconfig.emul"
5353source "drivers/rtc/Kconfig.fake"
5454source "drivers/rtc/Kconfig.ifx_cat1"
5555source "drivers/rtc/Kconfig.mc146818"
56+ source "drivers/rtc/Kconfig.mchp"
5657source "drivers/rtc/Kconfig.numaker"
5758source "drivers/rtc/Kconfig.nxp_irtc"
5859source "drivers/rtc/Kconfig.pcf2123"
Original file line number Diff line number Diff line change 1+ #Copyright (c) 2025 Microchip Technology Inc.
2+ #SPDX-License-Identifier: Apache-2.0
3+
4+ config RTC_MCHP_G1
5+ bool "Microchip RTC G1 driver"
6+ default y
7+ depends on DT_HAS_MICROCHIP_RTC_G1_ENABLED
8+ help
9+ Enable RTC driver for Microchip G1.
You can’t perform that action at this time.
0 commit comments