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

source code of linux/drivers/gpu/drm/i915/i915_mmio_range.h