Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

clocksource/drivers/vf-pit: Rename the VF PIT to NXP PIT

The PIT acronym stands for Periodic Interrupt Timer which is found on
different NXP platforms not only on the Vybrid Family. Change the name
to be more generic for the NXP platforms in general. That will be
consistent with the NXP STM driver naming convention.

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/20250804152344.1109310-19-daniel.lezcano@linaro.org

+7 -4
+6 -3
drivers/clocksource/Kconfig
··· 474 474 help 475 475 Support for Freescale FlexTimer Module (FTM) timer. 476 476 477 - config VF_PIT_TIMER 478 - bool "Vybrid Family Programmable timer" if COMPILE_TEST 477 + config NXP_PIT_TIMER 478 + bool "NXP Periodic Interrupt Timer" if COMPILE_TEST 479 479 select CLKSRC_MMIO 480 480 help 481 - Support for Periodic Interrupt Timer on Freescale Vybrid Family SoCs. 481 + Support for Periodic Interrupt Timer on Freescale / NXP 482 + SoCs. This periodic timer is found on the Vybrid Family and 483 + the Automotive S32G2/3 platforms. It contains 4 channels 484 + where two can be coupled to form a 64 bits channel. 482 485 483 486 config SYS_SUPPORTS_SH_CMT 484 487 bool
+1 -1
drivers/clocksource/Makefile
··· 49 49 obj-$(CONFIG_CLKSRC_MPS2) += mps2-timer.o 50 50 obj-$(CONFIG_CLKSRC_SAMSUNG_PWM) += samsung_pwm_timer.o 51 51 obj-$(CONFIG_FSL_FTM_TIMER) += timer-fsl-ftm.o 52 - obj-$(CONFIG_VF_PIT_TIMER) += timer-vf-pit.o 52 + obj-$(CONFIG_NXP_PIT_TIMER) += timer-nxp-pit.o 53 53 obj-$(CONFIG_CLKSRC_QCOM) += timer-qcom.o 54 54 obj-$(CONFIG_MTK_TIMER) += timer-mediatek.o 55 55 obj-$(CONFIG_MTK_CPUX_TIMER) += timer-mediatek-cpux.o
drivers/clocksource/timer-vf-pit.c drivers/clocksource/timer-nxp-pit.c