mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-08 07:13:06 +00:00
Changes included (and more): 1. Dynamic RAM merge 2. Real-time page scan and allocation 3. Cache compression 4. Real-time IRQ checks 5. Dynamic I/O allocation for Java heap 6. Java page migration 7. Contiguous memory allocation 8. Idle pages tracking 9. Per CPU RAM usage tracking 10. ARM NEON scalar multiplication library 11. NEON/ARMv8 crypto extensions 12. NEON SHA, Blake, RIPEMD crypto extensions 13. Parallel NEON crypto engine for multi-algo based CPU stress reduction
30 lines
780 B
C
30 lines
780 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;
|
|
|
|
#define DRIVER_NAME "i915"
|
|
#define DRIVER_DESC "Intel Graphics"
|
|
#define DRIVER_DATE "20201103"
|
|
#define DRIVER_TIMESTAMP 1604406085
|
|
|
|
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);
|
|
|
|
#endif /* __I915_DRIVER_H__ */
|