mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 13:59:45 -04:00
drm/xe/configfs: Allow to enable PSMI
Now that additional WAs are in place and it's possible to allocate buffers through debugfs, add the configfs attribute to turn PSMI on. Cc: Matt Roper <matthew.d.roper@intel.com> Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> Cc: John Harrison <John.C.Harrison@Intel.com> Reviewed-by: Riana Tauro <riana.tauro@intel.com> Link: https://lore.kernel.org/r/20250821-psmi-v5-7-34ab7550d3d8@intel.com Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
This commit is contained in:
@@ -77,6 +77,16 @@
|
|||||||
* available for migrations, but it's disabled. This is intended for debugging
|
* available for migrations, but it's disabled. This is intended for debugging
|
||||||
* purposes only.
|
* purposes only.
|
||||||
*
|
*
|
||||||
|
* PSMI
|
||||||
|
* ----
|
||||||
|
*
|
||||||
|
* Enable extra debugging capabilities to trace engine execution. Only useful
|
||||||
|
* during early platform enabling and requires additional hardware connected.
|
||||||
|
* Once it's enabled, additionals WAs are added and runtime configuration is
|
||||||
|
* done via debugfs. Example to enable it::
|
||||||
|
*
|
||||||
|
* # echo 1 > /sys/kernel/config/xe/0000:03:00.0/enable_psmi
|
||||||
|
*
|
||||||
* Remove devices
|
* Remove devices
|
||||||
* ==============
|
* ==============
|
||||||
*
|
*
|
||||||
@@ -89,8 +99,9 @@ struct xe_config_group_device {
|
|||||||
struct config_group group;
|
struct config_group group;
|
||||||
|
|
||||||
struct xe_config_device {
|
struct xe_config_device {
|
||||||
bool survivability_mode;
|
|
||||||
u64 engines_allowed;
|
u64 engines_allowed;
|
||||||
|
bool survivability_mode;
|
||||||
|
bool enable_psmi;
|
||||||
} config;
|
} config;
|
||||||
|
|
||||||
/* protects attributes */
|
/* protects attributes */
|
||||||
@@ -98,8 +109,9 @@ struct xe_config_group_device {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static const struct xe_config_device device_defaults = {
|
static const struct xe_config_device device_defaults = {
|
||||||
.survivability_mode = false,
|
|
||||||
.engines_allowed = U64_MAX,
|
.engines_allowed = U64_MAX,
|
||||||
|
.survivability_mode = false,
|
||||||
|
.enable_psmi = false,
|
||||||
};
|
};
|
||||||
|
|
||||||
static void set_device_defaults(struct xe_config_device *config)
|
static void set_device_defaults(struct xe_config_device *config)
|
||||||
@@ -243,12 +255,38 @@ static ssize_t engines_allowed_store(struct config_item *item, const char *page,
|
|||||||
return len;
|
return len;
|
||||||
}
|
}
|
||||||
|
|
||||||
CONFIGFS_ATTR(, survivability_mode);
|
static ssize_t enable_psmi_show(struct config_item *item, char *page)
|
||||||
|
{
|
||||||
|
struct xe_config_device *dev = to_xe_config_device(item);
|
||||||
|
|
||||||
|
return sprintf(page, "%d\n", dev->enable_psmi);
|
||||||
|
}
|
||||||
|
|
||||||
|
static ssize_t enable_psmi_store(struct config_item *item, const char *page, size_t len)
|
||||||
|
{
|
||||||
|
struct xe_config_group_device *dev = to_xe_config_group_device(item);
|
||||||
|
bool val;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = kstrtobool(page, &val);
|
||||||
|
if (ret)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
mutex_lock(&dev->lock);
|
||||||
|
dev->config.enable_psmi = val;
|
||||||
|
mutex_unlock(&dev->lock);
|
||||||
|
|
||||||
|
return len;
|
||||||
|
}
|
||||||
|
|
||||||
|
CONFIGFS_ATTR(, enable_psmi);
|
||||||
CONFIGFS_ATTR(, engines_allowed);
|
CONFIGFS_ATTR(, engines_allowed);
|
||||||
|
CONFIGFS_ATTR(, survivability_mode);
|
||||||
|
|
||||||
static struct configfs_attribute *xe_config_device_attrs[] = {
|
static struct configfs_attribute *xe_config_device_attrs[] = {
|
||||||
&attr_survivability_mode,
|
&attr_enable_psmi,
|
||||||
&attr_engines_allowed,
|
&attr_engines_allowed,
|
||||||
|
&attr_survivability_mode,
|
||||||
NULL,
|
NULL,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -443,6 +481,26 @@ u64 xe_configfs_get_engines_allowed(struct pci_dev *pdev)
|
|||||||
return engines_allowed;
|
return engines_allowed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* xe_configfs_get_psmi_enabled - get configfs enable_psmi setting
|
||||||
|
* @pdev: pci device
|
||||||
|
*
|
||||||
|
* Return: enable_psmi setting in configfs
|
||||||
|
*/
|
||||||
|
bool xe_configfs_get_psmi_enabled(struct pci_dev *pdev)
|
||||||
|
{
|
||||||
|
struct xe_config_group_device *dev = find_xe_config_group_device(pdev);
|
||||||
|
bool ret;
|
||||||
|
|
||||||
|
if (!dev)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
ret = dev->config.enable_psmi;
|
||||||
|
config_item_put(&dev->group.cg_item);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
int __init xe_configfs_init(void)
|
int __init xe_configfs_init(void)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ void xe_configfs_exit(void);
|
|||||||
bool xe_configfs_get_survivability_mode(struct pci_dev *pdev);
|
bool xe_configfs_get_survivability_mode(struct pci_dev *pdev);
|
||||||
void xe_configfs_clear_survivability_mode(struct pci_dev *pdev);
|
void xe_configfs_clear_survivability_mode(struct pci_dev *pdev);
|
||||||
u64 xe_configfs_get_engines_allowed(struct pci_dev *pdev);
|
u64 xe_configfs_get_engines_allowed(struct pci_dev *pdev);
|
||||||
static inline bool xe_configfs_get_psmi_enabled(struct pci_dev *pdev) { return false; }
|
bool xe_configfs_get_psmi_enabled(struct pci_dev *pdev);
|
||||||
#else
|
#else
|
||||||
static inline int xe_configfs_init(void) { return 0; }
|
static inline int xe_configfs_init(void) { return 0; }
|
||||||
static inline void xe_configfs_exit(void) { }
|
static inline void xe_configfs_exit(void) { }
|
||||||
|
|||||||
Reference in New Issue
Block a user