mirror of
https://github.com/torvalds/linux.git
synced 2026-09-26 10:02:02 +02:00
Add debugfs support for HPA-based Cadence PCIe controllers. A new file 'ltssm_status' is created under debugfs, allowing users to read the current LTSSM state as a string and raw value. Signed-off-by: Hans Zhang <18255117159@163.com> [mani: fixed the makefile and dropped MODULE_* macros] Signed-off-by: Manivannan Sadhasivam <mani@kernel.org> Tested-by: Aksh Garg <a-garg7@ti.com> Link: https://patch.msgid.link/20260701073513.1101559-3-18255117159@163.com
14 lines
653 B
Makefile
14 lines
653 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
pcie-cadence-mod-y := pcie-cadence-hpa.o pcie-cadence.o
|
|
pcie-cadence-mod-$(CONFIG_PCIE_CADENCE_DEBUGFS) += pcie-cadence-debugfs.o
|
|
pcie-cadence-host-mod-y := pcie-cadence-host-common.o pcie-cadence-host.o pcie-cadence-host-hpa.o
|
|
pcie-cadence-ep-mod-y := pcie-cadence-ep.o
|
|
|
|
obj-$(CONFIG_PCIE_CADENCE) = pcie-cadence-mod.o
|
|
obj-$(CONFIG_PCIE_CADENCE_HOST) += pcie-cadence-host-mod.o
|
|
obj-$(CONFIG_PCIE_CADENCE_EP) += pcie-cadence-ep-mod.o
|
|
obj-$(CONFIG_PCIE_CADENCE_PLAT) += pcie-cadence-plat.o
|
|
obj-$(CONFIG_PCI_J721E) += pci-j721e.o
|
|
obj-$(CONFIG_PCIE_SG2042_HOST) += pcie-sg2042.o
|
|
obj-$(CONFIG_PCI_SKY1_HOST) += pci-sky1.o
|