2 * Copyright © 2014-2017 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
25 #ifndef _INTEL_DEVICE_INFO_H_
26 #define _INTEL_DEVICE_INFO_H_
28 #include "intel_display.h"
31 struct drm_i915_private;
33 /* Keep in gen based order, and chronological order within a gen */
35 INTEL_PLATFORM_UNINITIALIZED = 0,
75 #define DEV_INFO_FOR_EACH_FLAG(func) \
78 func(is_alpha_support); \
79 /* Keep has_* in alphabetical order */ \
80 func(has_64bit_reloc); \
81 func(has_aliasing_ppgtt); \
85 func(has_reset_engine); \
88 func(has_full_ppgtt); \
89 func(has_full_48bit_ppgtt); \
90 func(has_gmch_display); \
96 func(has_logical_ring_contexts); \
97 func(has_logical_ring_preemption); \
99 func(has_pooled_eu); \
103 func(has_resource_streamer); \
104 func(has_runtime_pm); \
106 func(unfenced_needs_alignment); \
107 func(cursor_needs_physical); \
108 func(hws_needs_physical); \
109 func(overlay_needs_physical); \
113 struct sseu_dev_info {
119 /* For each slice, which subslice(s) has(have) 7 EUs (bitfield)? */
122 u8 has_subslice_pg:1;
126 struct intel_device_info {
131 u8 gt; /* GT number, 0 if undefined */
133 u8 ring_mask; /* Rings supported by the HW */
135 enum intel_platform platform;
138 u32 display_mmio_offset;
141 u8 num_sprites[I915_MAX_PIPES];
142 u8 num_scalers[I915_MAX_PIPES];
144 unsigned int page_sizes; /* page sizes supported by the HW */
146 #define DEFINE_FLAG(name) u8 name:1
147 DEV_INFO_FOR_EACH_FLAG(DEFINE_FLAG);
149 u16 ddb_size; /* in blocks */
151 /* Register offsets for the various display pipes and transcoders */
152 int pipe_offsets[I915_MAX_TRANSCODERS];
153 int trans_offsets[I915_MAX_TRANSCODERS];
154 int palette_offsets[I915_MAX_PIPES];
155 int cursor_offsets[I915_MAX_PIPES];
157 /* Slice/subslice/EU info */
158 struct sseu_dev_info sseu;
160 u32 cs_timestamp_frequency_khz;
163 u16 degamma_lut_size;
168 static inline unsigned int sseu_subslice_total(const struct sseu_dev_info *sseu)
170 return hweight8(sseu->slice_mask) * hweight8(sseu->subslice_mask);
173 const char *intel_platform_name(enum intel_platform platform);
175 void intel_device_info_runtime_init(struct intel_device_info *info);
176 void intel_device_info_dump(const struct intel_device_info *info,
177 struct drm_printer *p);
178 void intel_device_info_dump_flags(const struct intel_device_info *info,
179 struct drm_printer *p);
180 void intel_device_info_dump_runtime(const struct intel_device_info *info,
181 struct drm_printer *p);