This series adds the support for L3 Smart Data Cache Injection Allocation Enforcement (SDCIAE) to resctrl infrastructure. Upcoming AMD hardware implements Smart Data Cache Injection (SDCI). Smart Data Cache Injection (SDCI) is a mechanism that enables direct insertion of data from I/O devices into the L3 cache. By directly caching data from I/O devices rather than first storing the I/O data in DRAM, SDCI reduces demands on DRAM bandwidth and reduces latency to the processor consuming the I/O data. The SDCIAE (SDCI Allocation Enforcement) PQE feature allows system software to control the portion of the L3 cache used for SDCI devices. When enabled, SDCIAE forces all SDCI lines to be placed into the L3 cache partitions identified by the highest-supported L3_MASK_n register, where n is the maximum supported CLOSID. The feature details are documented in the APM listed below [1]. [1] AMD64 Architecture Programmer's Manual Volume 2: System Programming Publication # 24593 Revision 3.41 section 19.4.7 L3 Smart Data Cache Injection Allocation Enforcement (SDCIAE) Link: https://bugzilla.kernel.org/show_bug.cgi?id=206537 The feature requires linux support of TPH (TLP Processing Hints). The support is available in linux kernel after the commit 48d0fd2b903e3 ("PCI/TPH: Add TPH documentation") The patches are based on top of commit 33193f21305e39 (origin/master, origin/HEAD) Merge branch into tip/master: 'x86/tdx' # Linux Implementation Feature adds following interface files when the resctrl "io_alloc" feature is supported: /sys/fs/resctrl/info/L3/io_alloc: Reports the feature status. Feature can be enabled/disabled by writing to the interface. /sys/fs/resctrl/info/L3/io_alloc_cbm: Capacity Bit Masks (CBMs) available to SDCI supported IO devices. CBM can be configured by writing to the interface in the following format:: # Examples a. Check if io_alloc feature is available #mount -t resctrl resctrl /sys/fs/resctrl/ # cat /sys/fs/resctrl/info/L3/io_alloc 0 b. Enable the io_alloc feature. # echo 1 > /sys/fs/resctrl/info/L3/io_alloc c. Check the CBM values for the io_alloc feature. # cat /sys/fs/resctrl/info/L3/io_alloc_cbm L3:0=ffff;1=ffff d. Change the CBM value for the domain 1: # echo L3:1=FF > /sys/fs/resctrl/info/L3/io_alloc_cbm # cat /sys/fs/resctrl/info/L3/io_alloc_cbm L3:0=ffff;1=00ff d. Disable io_alloc feature and exit. # echo 0 > /sys/fs/resctrl/info/L3/io_alloc #umount /sys/fs/resctrl/ --- v2: Added dependancy on X86_FEATURE_CAT_L3 Removed the "" in CPU feature definition. Changed sdciae_capable to io_alloc_capable to make it as generic feature. Moved io_alloc_capable field in struct resctrl_cache. Changed the name of few arch functions similar to ABMC series. resctrl_arch_get_io_alloc_enabled() resctrl_arch_io_alloc_enable() Renamed the feature to "io_alloc". Added generic texts for the feature in commit log and resctrl.rst doc. Added resctrl_io_alloc_init_cat() to initialize io_alloc to default values when enabled. Fixed io_alloc interface to show only on L3 resource. Added the locks while processing io_alloc CBMs. v1: https://lore.kernel.org/lkml/cover.1723824984.git.babu.moger@xxxxxxx/ Babu Moger (7): x86/cpufeatures: Add support for L3 Smart Data Cache Injection Allocation Enforcement x86/resctrl: Add SDCIAE feature in the command line options x86/resctrl: Detect Smart Data Cache Injection Allocation Enforcement x86/resctrl: Implement "io_alloc" enable/disable handlers x86/resctrl: Add interface to enable/disable io_alloc feature x86/resctrl: Introduce interface to display io_alloc CBMs x86/resctrl: Introduce interface to modify io_alloc Capacity Bit Masks .../admin-guide/kernel-parameters.txt | 2 +- Documentation/arch/x86/resctrl.rst | 35 ++ arch/x86/include/asm/cpufeatures.h | 1 + arch/x86/include/asm/msr-index.h | 1 + arch/x86/kernel/cpu/cpuid-deps.c | 1 + arch/x86/kernel/cpu/resctrl/core.c | 13 + arch/x86/kernel/cpu/resctrl/ctrlmondata.c | 4 +- arch/x86/kernel/cpu/resctrl/internal.h | 12 + arch/x86/kernel/cpu/resctrl/rdtgroup.c | 311 ++++++++++++++++++ arch/x86/kernel/cpu/scattered.c | 1 + include/linux/resctrl.h | 13 + 11 files changed, 391 insertions(+), 3 deletions(-) -- 2.34.1