]> xenbits.xensource.com Git - xen.git/commitdiff
x86/intel: optional build of PSR support
authorSergiy Kibrik <Sergiy_Kibrik@epam.com>
Mon, 30 Sep 2024 08:06:13 +0000 (10:06 +0200)
committerJan Beulich <jbeulich@suse.com>
Mon, 30 Sep 2024 08:06:13 +0000 (10:06 +0200)
Xen's implementation of PSR only supports Intel CPUs right now, hence it can be
made dependant on CONFIG_INTEL build option.
Since platform implementation is not limited to single vendor, intermediate
option CONFIG_X86_PSR introduced, which selected by CONFIG_INTEL.

When !X86_PSR then PSR-related sysctls XEN_SYSCTL_psr_cmt_op &
XEN_SYSCTL_psr_alloc are off as well.

Signed-off-by: Sergiy Kibrik <Sergiy_Kibrik@epam.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
xen/arch/x86/Kconfig
xen/arch/x86/Makefile
xen/arch/x86/domctl.c
xen/arch/x86/include/asm/psr.h
xen/arch/x86/sysctl.c

index ab862b083fce35f87ae28ec9d463fecf303007ae..9cdd04721afa1916c7edd8fdf7d606858c73ce88 100644 (file)
@@ -231,6 +231,16 @@ config TBOOT
 
          If unsure, stay with the default.
 
+config X86_PSR
+       bool "Platform Shared Resource support" if EXPERT
+       default INTEL
+       help
+         Support of Platform Shared Resource technology, which is basis for
+         monitoring and control of resources like cache and memory bandwidth.
+         See xl-psr documentation for details.
+
+         If unsure, stay with the default.
+
 choice
        prompt "Alignment of Xen image"
        default XEN_ALIGN_2M if PV_SHIM_EXCLUSIVE
index 00ab091634d53d033275f2725e25807752ad06e6..1fa12ed4aa3fbbb95c6b69e280847fcaa28cec64 100644 (file)
@@ -57,7 +57,7 @@ obj-y += pci.o
 obj-y += percpu.o
 obj-y += physdev.o
 obj-$(CONFIG_COMPAT) += x86_64/physdev.o
-obj-y += psr.o
+obj-$(CONFIG_X86_PSR) += psr.o
 obj-y += setup.o
 obj-y += shutdown.o
 obj-y += smp.o
index 68b5b46d1a83f341db436df78e35eb43786954aa..6c1355e378efb48120696a3a177d78eee19bccb6 100644 (file)
@@ -1195,6 +1195,7 @@ long arch_do_domctl(
     case XEN_DOMCTL_psr_alloc:
         switch ( domctl->u.psr_alloc.cmd )
         {
+#ifdef CONFIG_X86_PSR
         case XEN_DOMCTL_PSR_SET_L3_CBM:
             ret = psr_set_val(d, domctl->u.psr_alloc.target,
                               domctl->u.psr_alloc.data,
@@ -1257,6 +1258,8 @@ long arch_do_domctl(
 
 #undef domctl_psr_get_val
 
+#endif /* CONFIG_X86_PSR */
+
         default:
             ret = -EOPNOTSUPP;
             break;
index 51df78794cd035bf0cbb325631d2b18a517a1d41..d21a59d98f58eb84df5a61f893239451c275cda2 100644 (file)
@@ -69,12 +69,11 @@ extern struct psr_cmt *psr_cmt;
 
 static inline bool psr_cmt_enabled(void)
 {
-    return !!psr_cmt;
+    return IS_ENABLED(CONFIG_X86_PSR) && psr_cmt;
 }
 
 int psr_alloc_rmid(struct domain *d);
 void psr_free_rmid(struct domain *d);
-void psr_ctxt_switch_to(struct domain *d);
 
 int psr_get_info(unsigned int socket, enum psr_type type,
                  uint32_t data[], unsigned int array_len);
@@ -83,8 +82,15 @@ int psr_get_val(struct domain *d, unsigned int socket,
 int psr_set_val(struct domain *d, unsigned int socket,
                 uint64_t new_val, enum psr_type type);
 
+#ifdef CONFIG_X86_PSR
+void psr_ctxt_switch_to(struct domain *d);
 void psr_domain_init(struct domain *d);
 void psr_domain_free(struct domain *d);
+#else
+static inline void psr_ctxt_switch_to(struct domain *d) {}
+static inline void psr_domain_init(struct domain *d) {}
+static inline void psr_domain_free(struct domain *d) {}
+#endif
 
 #endif /* __ASM_PSR_H__ */
 
index 1d40d82c5ad28b1e4a93c0f0ef49581248b3a842..1b04947516bb57ceb0864ac09ebb7ba838da4ee4 100644 (file)
@@ -225,10 +225,11 @@ long arch_do_sysctl(
 
     case XEN_SYSCTL_psr_alloc:
     {
-        uint32_t data[PSR_INFO_ARRAY_SIZE] = { };
+        uint32_t __maybe_unused data[PSR_INFO_ARRAY_SIZE] = { };
 
         switch ( sysctl->u.psr_alloc.cmd )
         {
+#ifdef CONFIG_X86_PSR
         case XEN_SYSCTL_PSR_get_l3_info:
             ret = psr_get_info(sysctl->u.psr_alloc.target,
                                PSR_TYPE_L3_CBM, data, ARRAY_SIZE(data));
@@ -279,6 +280,7 @@ long arch_do_sysctl(
             if ( __copy_field_to_guest(u_sysctl, sysctl, u.psr_alloc) )
                 ret = -EFAULT;
             break;
+#endif /* CONFIG_X86_PSR */
 
         default:
             ret = -EOPNOTSUPP;