31 lines
710 B
C++
31 lines
710 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "core/memory_manager/memory_constants.h"
|
|
#include "runtime/gen_common/aub_mapper_base.h"
|
|
|
|
#include "engine_node.h"
|
|
|
|
namespace NEO {
|
|
struct TGLLPFamily;
|
|
|
|
template <>
|
|
struct AUBFamilyMapper<TGLLPFamily> {
|
|
enum { device = AubMemDump::DeviceValues::Tgllp };
|
|
|
|
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];
|
|
|
|
typedef AubMemDump::AubDump<AubTraits> AUB;
|
|
};
|
|
} // namespace NEO
|