/* * Copyright (c) 2017 - 2018, 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 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. */ #include "config.h" #include "aub_mapper.h" #include "runtime/aub_mem_dump/aub_mem_dump.inl" #include "runtime/helpers/completion_stamp.h" namespace AubMemDump { enum { device = DeviceValues::Cnl }; // Instantiate these common template implementations. template struct AubDump>; template struct AubDump>; template struct AubPageTableHelper32>; template struct AubPageTableHelper64>; } // namespace AubMemDump namespace OCLRT { using Family = CNLFamily; static AubMemDump::LrcaHelperRcs rcs(0x000000); static AubMemDump::LrcaHelperBcs bcs(0x020000); static AubMemDump::LrcaHelperVcs vcs(0x010000); static AubMemDump::LrcaHelperVecs vecs(0x018000); const AubMemDump::LrcaHelper *AUBFamilyMapper::csTraits[EngineType::NUM_ENGINES] = { &rcs, &bcs, &vcs, &vecs}; const MMIOList AUBFamilyMapper::globalMMIO; static const MMIOList mmioListRCS = { MMIOPair(0x000020d8, 0x00020000), MMIOPair(rcs.mmioBase + 0x229c, 0xffff8280), MMIOPair(0x0000C800, 0x00000009), MMIOPair(0x0000C804, 0x00000038), MMIOPair(0x0000C808, 0x0000003B), MMIOPair(0x0000C80C, 0x00000039), MMIOPair(0x0000C810, 0x00000037), MMIOPair(0x0000C814, 0x00000039), MMIOPair(0x0000C818, 0x00000037), MMIOPair(0x0000C81C, 0x0000001B), MMIOPair(0x0000C820, 0x00060037), MMIOPair(0x0000C824, 0x00000032), MMIOPair(0x0000C828, 0x00000033), MMIOPair(0x0000C82C, 0x0000003B), MMIOPair(0x0000C8C0, 0x00000037), }; static const MMIOList mmioListBCS = { MMIOPair(bcs.mmioBase + 0x229c, 0xffff8280), }; static const MMIOList mmioListVCS = { MMIOPair(vcs.mmioBase + 0x229c, 0xffff8280), }; static const MMIOList mmioListVECS = { MMIOPair(vecs.mmioBase + 0x229c, 0xffff8280), }; const MMIOList *AUBFamilyMapper::perEngineMMIO[EngineType::NUM_ENGINES] = { &mmioListRCS, &mmioListBCS, &mmioListVCS, &mmioListVECS}; } // namespace OCLRT