Skip to content
Open
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
10 changes: 10 additions & 0 deletions drivers/clock_control/clock_control_mcux_ccm_rev2.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,16 @@ static int mcux_ccm_get_subsys_rate(const struct device *dev,
clock_root = (kCLOCK_Root_Tpm4 + instance - 3);
}
break;
#elif defined(CONFIG_SOC_MIMX9352_A55) || defined(CONFIG_SOC_MIMX9352_M33)
case IMX_CCM_TPM_CLK:
switch (instance) {
case 2:
clock_root = kCLOCK_Root_BusWakeup;
break;
default:
clock_root = kCLOCK_Root_Tpm1 + instance;
}
break;
#else
case IMX_CCM_TPM_CLK:
clock_root = kCLOCK_Root_Tpm1 + instance;
Expand Down