i915_mmio_range.h 408 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: MIT */
  2. /*
  3. * Copyright © 2025 Intel Corporation
  4. */
  5. #ifndef __I915_MMIO_RANGE_H__
  6. #define __I915_MMIO_RANGE_H__
  7. #include <linux/types.h>
  8. /* Other register ranges (e.g., shadow tables, MCR tables, etc.) */
  9. struct i915_mmio_range {
  10. u32 start;
  11. u32 end;
  12. };
  13. bool i915_mmio_range_table_contains(u32 addr, const struct i915_mmio_range *table);
  14. #endif /* __I915_MMIO_RANGE_H__ */