Files
compute-runtime/shared/source/xe3_core/aub_mapper.h
Mateusz Jablonski bb1a125f0c feature: add support for Panther Lake platform
Related-To: NEO-12803

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2025-01-07 11:39:56 +01:00

32 lines
765 B
C++

/*
* Copyright (C) 2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/aub/aub_mapper_base.h"
#include "shared/source/helpers/constants.h"
#include "shared/source/xe3_core/hw_cmds_base.h"
#include "aubstream/engine_node.h"
namespace NEO {
struct Xe3CoreFamily;
template <>
struct AUBFamilyMapper<Xe3CoreFamily> {
enum { device = AubMemDump::DeviceValues::Ptl };
using AubTraits = AubMemDump::Traits<device, MemoryConstants::gfxAddressBits>;
static const AubMemDump::LrcaHelper *const csTraits[aub_stream::NUM_ENGINES];
static const MMIOList globalMMIO;
static const MMIOList *perEngineMMIO[aub_stream::NUM_ENGINES];
using AUB = AubMemDump::AubDump<AubTraits>;
};
} // namespace NEO