69 lines
3.0 KiB
C++
69 lines
3.0 KiB
C++
/*
|
|
* 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.
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/aub_mem_dump/aub_mem_dump.h"
|
|
|
|
// To Enable TBX Serve support for "igdrcl_dll" project, do following when configuring with cmake:
|
|
// 1. cmake -DHAVE_TBX_SERVER=ON .
|
|
// <or, when connecting to the localhost>
|
|
// cmake -DHAVE_TBX_SERVER=ON .
|
|
// <or, on Windows systems, edit HAVE_TBX_SERVER settings using>
|
|
// notepad build_runtime_vs2013.bat
|
|
|
|
namespace OCLRT {
|
|
struct HardwareInfo;
|
|
class CommandStreamReceiver;
|
|
class TbxSockets;
|
|
class ExecutionEnvironment;
|
|
|
|
class TbxStream : public AubMemDump::AubStream {
|
|
TbxSockets *socket = nullptr;
|
|
|
|
public:
|
|
TbxStream();
|
|
~TbxStream() override;
|
|
|
|
TbxStream(const TbxStream &) = delete;
|
|
TbxStream &operator=(const TbxStream &) = delete;
|
|
|
|
void open(const char *options) override;
|
|
void close() override;
|
|
bool init(uint32_t stepping, uint32_t device) override;
|
|
void writeMemory(uint64_t physAddress, const void *memory, size_t size, uint32_t addressSpace, uint32_t hint) override;
|
|
void writeMemoryWriteHeader(uint64_t physAddress, size_t size, uint32_t addressSpace, uint32_t hint) override;
|
|
void writeGTT(uint32_t gttOffset, uint64_t entry) override;
|
|
void writePTE(uint64_t physAddress, uint64_t entry) override;
|
|
void writeMMIO(uint32_t offset, uint32_t value) override;
|
|
void registerPoll(uint32_t registerOffset, uint32_t mask, uint32_t value, bool pollNotEqual, uint32_t timeoutAction) override;
|
|
void readMemory(uint64_t physAddress, void *memory, size_t size);
|
|
};
|
|
|
|
struct TbxCommandStreamReceiver {
|
|
static CommandStreamReceiver *create(const HardwareInfo &hwInfo, bool withAubDump, ExecutionEnvironment &executionEnvironment);
|
|
|
|
using TbxStream = OCLRT::TbxStream;
|
|
};
|
|
|
|
typedef CommandStreamReceiver *(*TbxCommandStreamReceiverCreateFunc)(const HardwareInfo &hwInfoIn, bool withAubDump, ExecutionEnvironment &executionEnvironment);
|
|
} // namespace OCLRT
|