2017-12-22 04:57:32 +07:00
|
|
|
/*
|
|
|
|
* Copyright © 2014-2017 Intel Corporation
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INTEL_DEVICE_INFO_H_
|
|
|
|
#define _INTEL_DEVICE_INFO_H_
|
|
|
|
|
|
|
|
#include "intel_display.h"
|
|
|
|
|
|
|
|
struct drm_printer;
|
|
|
|
struct drm_i915_private;
|
|
|
|
|
|
|
|
/* Keep in gen based order, and chronological order within a gen */
|
|
|
|
enum intel_platform {
|
|
|
|
INTEL_PLATFORM_UNINITIALIZED = 0,
|
|
|
|
/* gen2 */
|
|
|
|
INTEL_I830,
|
|
|
|
INTEL_I845G,
|
|
|
|
INTEL_I85X,
|
|
|
|
INTEL_I865G,
|
|
|
|
/* gen3 */
|
|
|
|
INTEL_I915G,
|
|
|
|
INTEL_I915GM,
|
|
|
|
INTEL_I945G,
|
|
|
|
INTEL_I945GM,
|
|
|
|
INTEL_G33,
|
|
|
|
INTEL_PINEVIEW,
|
|
|
|
/* gen4 */
|
|
|
|
INTEL_I965G,
|
|
|
|
INTEL_I965GM,
|
|
|
|
INTEL_G45,
|
|
|
|
INTEL_GM45,
|
|
|
|
/* gen5 */
|
|
|
|
INTEL_IRONLAKE,
|
|
|
|
/* gen6 */
|
|
|
|
INTEL_SANDYBRIDGE,
|
|
|
|
/* gen7 */
|
|
|
|
INTEL_IVYBRIDGE,
|
|
|
|
INTEL_VALLEYVIEW,
|
|
|
|
INTEL_HASWELL,
|
|
|
|
/* gen8 */
|
|
|
|
INTEL_BROADWELL,
|
|
|
|
INTEL_CHERRYVIEW,
|
|
|
|
/* gen9 */
|
|
|
|
INTEL_SKYLAKE,
|
|
|
|
INTEL_BROXTON,
|
|
|
|
INTEL_KABYLAKE,
|
|
|
|
INTEL_GEMINILAKE,
|
|
|
|
INTEL_COFFEELAKE,
|
|
|
|
/* gen10 */
|
|
|
|
INTEL_CANNONLAKE,
|
2018-01-12 01:00:04 +07:00
|
|
|
/* gen11 */
|
|
|
|
INTEL_ICELAKE,
|
2017-12-22 04:57:32 +07:00
|
|
|
INTEL_MAX_PLATFORMS
|
|
|
|
};
|
|
|
|
|
|
|
|
#define DEV_INFO_FOR_EACH_FLAG(func) \
|
|
|
|
func(is_mobile); \
|
|
|
|
func(is_lp); \
|
|
|
|
func(is_alpha_support); \
|
|
|
|
/* Keep has_* in alphabetical order */ \
|
|
|
|
func(has_64bit_reloc); \
|
|
|
|
func(has_aliasing_ppgtt); \
|
|
|
|
func(has_csr); \
|
|
|
|
func(has_ddi); \
|
|
|
|
func(has_dp_mst); \
|
|
|
|
func(has_reset_engine); \
|
|
|
|
func(has_fbc); \
|
|
|
|
func(has_fpga_dbg); \
|
|
|
|
func(has_full_ppgtt); \
|
|
|
|
func(has_full_48bit_ppgtt); \
|
|
|
|
func(has_gmch_display); \
|
|
|
|
func(has_guc); \
|
|
|
|
func(has_guc_ct); \
|
|
|
|
func(has_hotplug); \
|
|
|
|
func(has_l3_dpf); \
|
|
|
|
func(has_llc); \
|
|
|
|
func(has_logical_ring_contexts); \
|
2018-03-02 23:14:59 +07:00
|
|
|
func(has_logical_ring_elsq); \
|
2017-12-22 04:57:32 +07:00
|
|
|
func(has_logical_ring_preemption); \
|
|
|
|
func(has_overlay); \
|
|
|
|
func(has_pooled_eu); \
|
|
|
|
func(has_psr); \
|
|
|
|
func(has_rc6); \
|
|
|
|
func(has_rc6p); \
|
|
|
|
func(has_resource_streamer); \
|
|
|
|
func(has_runtime_pm); \
|
|
|
|
func(has_snoop); \
|
|
|
|
func(unfenced_needs_alignment); \
|
|
|
|
func(cursor_needs_physical); \
|
|
|
|
func(hws_needs_physical); \
|
|
|
|
func(overlay_needs_physical); \
|
|
|
|
func(supports_tv); \
|
|
|
|
func(has_ipc);
|
|
|
|
|
2018-03-06 19:28:52 +07:00
|
|
|
#define GEN_MAX_SLICES (6) /* CNL upper bound */
|
2018-03-21 02:45:21 +07:00
|
|
|
#define GEN_MAX_SUBSLICES (8) /* ICL upper bound */
|
2018-03-06 19:28:52 +07:00
|
|
|
|
2017-12-22 04:57:32 +07:00
|
|
|
struct sseu_dev_info {
|
|
|
|
u8 slice_mask;
|
2018-03-06 19:28:52 +07:00
|
|
|
u8 subslice_mask[GEN_MAX_SUBSLICES];
|
|
|
|
u16 eu_total;
|
2017-12-22 04:57:32 +07:00
|
|
|
u8 eu_per_subslice;
|
|
|
|
u8 min_eu_in_pool;
|
|
|
|
/* For each slice, which subslice(s) has(have) 7 EUs (bitfield)? */
|
|
|
|
u8 subslice_7eu[3];
|
|
|
|
u8 has_slice_pg:1;
|
|
|
|
u8 has_subslice_pg:1;
|
|
|
|
u8 has_eu_pg:1;
|
2018-03-06 19:28:52 +07:00
|
|
|
|
|
|
|
/* Topology fields */
|
|
|
|
u8 max_slices;
|
|
|
|
u8 max_subslices;
|
|
|
|
u8 max_eus_per_subslice;
|
|
|
|
|
|
|
|
/* We don't have more than 8 eus per subslice at the moment and as we
|
|
|
|
* store eus enabled using bits, no need to multiply by eus per
|
|
|
|
* subslice.
|
|
|
|
*/
|
|
|
|
u8 eu_mask[GEN_MAX_SLICES * GEN_MAX_SUBSLICES];
|
2017-12-22 04:57:32 +07:00
|
|
|
};
|
|
|
|
|
2018-02-28 17:11:52 +07:00
|
|
|
typedef u8 intel_ring_mask_t;
|
|
|
|
|
2017-12-22 04:57:32 +07:00
|
|
|
struct intel_device_info {
|
|
|
|
u16 device_id;
|
|
|
|
u16 gen_mask;
|
|
|
|
|
|
|
|
u8 gen;
|
|
|
|
u8 gt; /* GT number, 0 if undefined */
|
|
|
|
u8 num_rings;
|
2018-02-28 17:11:52 +07:00
|
|
|
intel_ring_mask_t ring_mask; /* Rings supported by the HW */
|
2017-12-22 04:57:32 +07:00
|
|
|
|
|
|
|
enum intel_platform platform;
|
|
|
|
u32 platform_mask;
|
|
|
|
|
2018-02-22 18:16:58 +07:00
|
|
|
unsigned int page_sizes; /* page sizes supported by the HW */
|
|
|
|
|
2017-12-22 04:57:32 +07:00
|
|
|
u32 display_mmio_offset;
|
|
|
|
|
|
|
|
u8 num_pipes;
|
|
|
|
u8 num_sprites[I915_MAX_PIPES];
|
|
|
|
u8 num_scalers[I915_MAX_PIPES];
|
|
|
|
|
|
|
|
#define DEFINE_FLAG(name) u8 name:1
|
|
|
|
DEV_INFO_FOR_EACH_FLAG(DEFINE_FLAG);
|
|
|
|
#undef DEFINE_FLAG
|
|
|
|
u16 ddb_size; /* in blocks */
|
|
|
|
|
|
|
|
/* Register offsets for the various display pipes and transcoders */
|
|
|
|
int pipe_offsets[I915_MAX_TRANSCODERS];
|
|
|
|
int trans_offsets[I915_MAX_TRANSCODERS];
|
|
|
|
int palette_offsets[I915_MAX_PIPES];
|
|
|
|
int cursor_offsets[I915_MAX_PIPES];
|
|
|
|
|
|
|
|
/* Slice/subslice/EU info */
|
|
|
|
struct sseu_dev_info sseu;
|
|
|
|
|
|
|
|
u32 cs_timestamp_frequency_khz;
|
|
|
|
|
|
|
|
struct color_luts {
|
|
|
|
u16 degamma_lut_size;
|
|
|
|
u16 gamma_lut_size;
|
|
|
|
} color;
|
|
|
|
};
|
|
|
|
|
2018-02-08 04:05:43 +07:00
|
|
|
struct intel_driver_caps {
|
|
|
|
unsigned int scheduler;
|
|
|
|
};
|
|
|
|
|
2017-12-22 04:57:32 +07:00
|
|
|
static inline unsigned int sseu_subslice_total(const struct sseu_dev_info *sseu)
|
|
|
|
{
|
2018-03-06 19:28:52 +07:00
|
|
|
unsigned int i, total = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(sseu->subslice_mask); i++)
|
|
|
|
total += hweight8(sseu->subslice_mask[i]);
|
|
|
|
|
|
|
|
return total;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int sseu_eu_idx(const struct sseu_dev_info *sseu,
|
|
|
|
int slice, int subslice)
|
|
|
|
{
|
|
|
|
int subslice_stride = DIV_ROUND_UP(sseu->max_eus_per_subslice,
|
|
|
|
BITS_PER_BYTE);
|
|
|
|
int slice_stride = sseu->max_subslices * subslice_stride;
|
|
|
|
|
|
|
|
return slice * slice_stride + subslice * subslice_stride;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline u16 sseu_get_eus(const struct sseu_dev_info *sseu,
|
|
|
|
int slice, int subslice)
|
|
|
|
{
|
|
|
|
int i, offset = sseu_eu_idx(sseu, slice, subslice);
|
|
|
|
u16 eu_mask = 0;
|
|
|
|
|
|
|
|
for (i = 0;
|
|
|
|
i < DIV_ROUND_UP(sseu->max_eus_per_subslice, BITS_PER_BYTE); i++) {
|
|
|
|
eu_mask |= ((u16) sseu->eu_mask[offset + i]) <<
|
|
|
|
(i * BITS_PER_BYTE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return eu_mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void sseu_set_eus(struct sseu_dev_info *sseu,
|
|
|
|
int slice, int subslice, u16 eu_mask)
|
|
|
|
{
|
|
|
|
int i, offset = sseu_eu_idx(sseu, slice, subslice);
|
|
|
|
|
|
|
|
for (i = 0;
|
|
|
|
i < DIV_ROUND_UP(sseu->max_eus_per_subslice, BITS_PER_BYTE); i++) {
|
|
|
|
sseu->eu_mask[offset + i] =
|
|
|
|
(eu_mask >> (BITS_PER_BYTE * i)) & 0xff;
|
|
|
|
}
|
2017-12-22 04:57:32 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *intel_platform_name(enum intel_platform platform);
|
|
|
|
|
2017-12-22 04:57:33 +07:00
|
|
|
void intel_device_info_runtime_init(struct intel_device_info *info);
|
2017-12-22 04:57:32 +07:00
|
|
|
void intel_device_info_dump(const struct intel_device_info *info,
|
|
|
|
struct drm_printer *p);
|
|
|
|
void intel_device_info_dump_flags(const struct intel_device_info *info,
|
|
|
|
struct drm_printer *p);
|
2017-12-22 04:57:34 +07:00
|
|
|
void intel_device_info_dump_runtime(const struct intel_device_info *info,
|
|
|
|
struct drm_printer *p);
|
2018-03-06 19:28:54 +07:00
|
|
|
void intel_device_info_dump_topology(const struct sseu_dev_info *sseu,
|
|
|
|
struct drm_printer *p);
|
2017-12-22 04:57:32 +07:00
|
|
|
|
drm/i915/icl: Check for fused-off VDBOX and VEBOX instances
In Gen11, the Video Decode engines (aka VDBOX, aka VCS, aka BSD) and the
Video Enhancement engines (aka VEBOX, aka VECS) could be fused off. Also,
each VDBOX and VEBOX has its own power well, which only exist if the
related engine exists in the HW.
Unfortunately, we have a Catch-22 situation going on: we need the blitter
forcewake to read the register with the fuse info, but we cannot initialize
the forcewake domains without knowin about the engines present in the HW.
We workaround this problem by allowing the initialization of all forcewake
domains and then pruning the fused off ones, as per the fuse information.
Bspec: 20680
v2: We were shifting incorrectly for vebox disable (Vinay)
v3: Assert mmio is ready and warn if we have attempted to initialize
forcewake for fused-off engines (Paulo)
v4:
- Use INTEL_GEN in new code (Tvrtko)
- Shorter local variable (Tvrtko, Michal)
- Keep "if (!...) continue" style (Tvrtko)
- No unnecessary BUG_ON (Tvrtko)
- WARN_ON and cleanup if wrong mask (Tvrtko, Michal)
- Use I915_READ_FW (Michal)
- Use I915_MAX_VCS/VECS macros (Michal)
v5: Rebased by Rodrigo fixing conflicts on top of:
"drm/i915: Simplify intel_engines_init"
v6: Fix v5. Remove info->num_rings. (by Oscar)
v7: Rebase (Rodrigo).
v8:
- s/intel_device_info_fused_off_engines/
intel_device_info_init_mmio (Chris)
- Make vdbox_disable & vebox_disable local variables (Chris)
v9:
- Move function declaration to intel_device_info.h (Michal)
- Missing indent in bit fields definitions (Michal)
- When RC6 is enabled by BIOS, the fuse register cannot be read until
the blitter powerwell is awake. Shuffle where the fuse is read, prune
the forcewake domains after the fact and change the commit message
accordingly (Vinay, Sagar, Chris).
v10:
- Improved commit message (Sagar)
- New line in header file (Sagar)
- Specify the message in fw_domain_reset applies to ICL+ (Sagar)
Cc: Paulo Zanoni <paulo.r.zanoni@intel.com>
Cc: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Cc: Sagar Arun Kamble <sagar.a.kamble@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Oscar Mateo <oscar.mateo@intel.com>
Reviewed-by: Sagar Arun Kamble <sagar.a.kamble@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180316121456.11577-1-mika.kuoppala@linux.intel.com
[Mika: soothe checkpatch on commit msg]
Signed-off-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
2018-03-16 19:14:49 +07:00
|
|
|
void intel_device_info_init_mmio(struct drm_i915_private *dev_priv);
|
|
|
|
|
2018-02-08 04:05:43 +07:00
|
|
|
void intel_driver_caps_print(const struct intel_driver_caps *caps,
|
|
|
|
struct drm_printer *p);
|
|
|
|
|
2017-12-22 04:57:32 +07:00
|
|
|
#endif
|