Skip to content

MSPM0: RTC Support #90844

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions drivers/rtc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ zephyr_library_sources_ifdef(CONFIG_RTC_BQ32002 rtc_bq32002.c)
zephyr_library_sources_ifdef(CONFIG_RTC_RX8130CE rtc_rx8130ce.c)
zephyr_library_sources_ifdef(CONFIG_RTC_DS1337 rtc_ds1337.c)
zephyr_library_sources_ifdef(CONFIG_RTC_SILABS_SIWX91X rtc_silabs_siwx91x.c)
zephyr_library_sources_ifdef(CONFIG_RTC_TI_MSPM0 rtc_ti_mspm0.c)
1 change: 1 addition & 0 deletions drivers/rtc/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,6 @@ source "drivers/rtc/Kconfig.bq32002"
source "drivers/rtc/Kconfig.rx8130ce"
source "drivers/rtc/Kconfig.ds1337"
source "drivers/rtc/Kconfig.siwx91x"
source "drivers/rtc/Kconfig.ti_mspm0"

endif # RTC
9 changes: 9 additions & 0 deletions drivers/rtc/Kconfig.ti_mspm0
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Copyright (c) 2025 Linumiz GmbH
# SPDX-License-Identifier: Apache-2.0

config RTC_TI_MSPM0
bool "Texas Instruments MSPM0 RTC driver"
default y
depends on DT_HAS_TI_MSPM0_RTC_ENABLED
help
Texas Instruments Real-Time Clock (RTC) driver used on MSPM0 SoC series.
Loading