mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-01 23:46:45 +00:00

This patch introduce the driver for the Hardware Debug Port available on STM32MP platforms. The HDP allows the observation of internal SoC signals by using multiplexers. Each HDP port can provide up to 16 internal signals (one of them can be software controlled as a GPO). Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Clément Le Goffic <clement.legoffic@foss.st.com> Link: https://lore.kernel.org/20250711-hdp-upstream-v7-2-faeecf7aaee1@foss.st.com Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
15 lines
605 B
Makefile
15 lines
605 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Core
|
|
obj-$(CONFIG_PINCTRL_STM32) += pinctrl-stm32.o
|
|
|
|
# SoC Drivers
|
|
obj-$(CONFIG_PINCTRL_STM32F429) += pinctrl-stm32f429.o
|
|
obj-$(CONFIG_PINCTRL_STM32F469) += pinctrl-stm32f469.o
|
|
obj-$(CONFIG_PINCTRL_STM32F746) += pinctrl-stm32f746.o
|
|
obj-$(CONFIG_PINCTRL_STM32F769) += pinctrl-stm32f769.o
|
|
obj-$(CONFIG_PINCTRL_STM32H743) += pinctrl-stm32h743.o
|
|
obj-$(CONFIG_PINCTRL_STM32MP135) += pinctrl-stm32mp135.o
|
|
obj-$(CONFIG_PINCTRL_STM32MP157) += pinctrl-stm32mp157.o
|
|
obj-$(CONFIG_PINCTRL_STM32MP257) += pinctrl-stm32mp257.o
|
|
obj-$(CONFIG_PINCTRL_STM32_HDP) += pinctrl-stm32-hdp.o
|