Files
linux/include/drm/drm_ras.h
Riana Tauro ee18d39a08 drm/drm_ras: Add clear-error-counter netlink command to drm_ras
Introduce a new 'clear-error-counter' drm_ras command to reset the counter
value for a specific error counter of a given node.

The command is a 'do' netlink request with 'node-id' and 'error-id'
as parameters with no response payload.

Usage:

$ sudo ynl --family drm_ras  --do clear-error-counter --json \
'{"node-id":1, "error-id":1}'
None

Cc: Jakub Kicinski <kuba@kernel.org>
Cc: Zack McKevitt <zachary.mckevitt@oss.qualcomm.com>
Cc: Lijo Lazar <lijo.lazar@amd.com>
Cc: Hawking Zhang <Hawking.Zhang@amd.com>
Cc: David S. Miller <davem@davemloft.net>
Cc: Paolo Abeni <pabeni@redhat.com>
Cc: Eric Dumazet <edumazet@google.com>
Signed-off-by: Riana Tauro <riana.tauro@intel.com>
Reviewed-by: Jakub Kicinski <kuba@kernel.org>
Reviewed-by: Raag Jadav <raag.jadav@intel.com>
Link: https://patch.msgid.link/20260409073318.2909379-5-riana.tauro@intel.com
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Maxime Ripard <mripard@redhat.com>
2026-04-24 08:43:42 -04:00

87 lines
2.5 KiB
C

/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2026 Intel Corporation
*/
#ifndef __DRM_RAS_H__
#define __DRM_RAS_H__
#include <uapi/drm/drm_ras.h>
/**
* struct drm_ras_node - A DRM RAS Node
*/
struct drm_ras_node {
/** @id: Unique identifier for the node. Dynamically assigned. */
u32 id;
/**
* @device_name: Human-readable name of the device. Given by the driver.
*/
const char *device_name;
/** @node_name: Human-readable name of the node. Given by the driver. */
const char *node_name;
/** @type: Type of the node (enum drm_ras_node_type). */
enum drm_ras_node_type type;
/* Error-Counter Related Callback and Variables */
/** @error_counter_range: Range of valid Error IDs for this node. */
struct {
/** @first: First valid Error ID. */
u32 first;
/** @last: Last valid Error ID. Mandatory entry. */
u32 last;
} error_counter_range;
/**
* @query_error_counter:
*
* This callback is used by drm-ras to query a specific error counter.
* Used for input check and to iterate all error counters in a node.
*
* Driver should expect query_error_counter() to be called with
* error_id from `error_counter_range.first` to
* `error_counter_range.last`.
*
* The @query_error_counter is a mandatory callback for
* error_counter_node.
*
* Returns: 0 on success,
* -ENOENT when error_id is not supported as an indication that
* drm_ras should silently skip this entry. Used for
* supporting non-contiguous error ranges.
* Driver is responsible for maintaining the list of
* supported error IDs in the range of first to last.
* Other negative values on errors that should terminate the
* netlink query.
*/
int (*query_error_counter)(struct drm_ras_node *node, u32 error_id,
const char **name, u32 *val);
/**
* @clear_error_counter:
*
* This callback is used by drm_ras to clear a specific error counter.
* Driver should implement this callback to support clearing error counters
* of a node.
*
* Returns: 0 on success, negative error code on failure.
*/
int (*clear_error_counter)(struct drm_ras_node *node, u32 error_id);
/** @priv: Driver private data */
void *priv;
};
struct drm_device;
#if IS_ENABLED(CONFIG_DRM_RAS)
int drm_ras_node_register(struct drm_ras_node *node);
void drm_ras_node_unregister(struct drm_ras_node *node);
#else
static inline int drm_ras_node_register(struct drm_ras_node *node) { return 0; }
static inline void drm_ras_node_unregister(struct drm_ras_node *node) { }
#endif
#endif