mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

We haven't updated the DRIVER_TIMESTAMP since commit3570bd989a
("drm/i915: Update DRIVER_DATE to 20230929") 1½ years ago. Before then, the previous update was commit139caf7ca2
("drm/i915: Update DRIVER_DATE to 20201103") 4+ years ago. The DRIVER_DATE has also been removed altogether. We've used the DRIVER_TIMESTAMP to log suggestions to file bugs on GPU hangs when they happen on a driver less than six months old. Combined with the sporadic DRIVER_TIMESTAMP updates, we really haven't logged the suggestions for years. Just stop logging the suggestion to file bugs altogether, and remove DRIVER_TIMESTAMP. This doesn't really change anything wrt to logging GPU errors or how we handle bugs. And effectively we already stopped logging the message a year ago when we stopped updating DRIVER_TIMESTAMP. Instead, add an unconditional message about the GPU error state location. Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Cc: Tvrtko Ursulin <tursulin@ursulin.net> Acked-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com> Link: https://lore.kernel.org/r/20250429115055.2133143-1-jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
31 lines
817 B
C
31 lines
817 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2019 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __I915_DRIVER_H__
|
|
#define __I915_DRIVER_H__
|
|
|
|
#include <linux/pm.h>
|
|
|
|
struct pci_dev;
|
|
struct pci_device_id;
|
|
struct drm_i915_private;
|
|
struct drm_printer;
|
|
|
|
#define DRIVER_NAME "i915"
|
|
#define DRIVER_DESC "Intel Graphics"
|
|
|
|
extern const struct dev_pm_ops i915_pm_ops;
|
|
|
|
int i915_driver_probe(struct pci_dev *pdev, const struct pci_device_id *ent);
|
|
void i915_driver_remove(struct drm_i915_private *i915);
|
|
void i915_driver_shutdown(struct drm_i915_private *i915);
|
|
|
|
int i915_driver_resume_switcheroo(struct drm_i915_private *i915);
|
|
int i915_driver_suspend_switcheroo(struct drm_i915_private *i915, pm_message_t state);
|
|
|
|
void
|
|
i915_print_iommu_status(struct drm_i915_private *i915, struct drm_printer *p);
|
|
|
|
#endif /* __I915_DRIVER_H__ */
|