/* * Copyright (C) 2018-2024 Intel Corporation * * SPDX-License-Identifier: MIT * */ #pragma once #include namespace NEO { enum CommandStreamReceiverType { // Use receiver for real HW CSR_HW = 0, // Capture an AUB file automatically for all traffic going through Device -> CommandStreamReceiver CSR_AUB, // Capture an AUB and tunnel all commands going through Device -> CommandStreamReceiver to a TBX server CSR_TBX, // Use receiver for real HW and capture AUB file CSR_HW_WITH_AUB, // Use TBX server and capture AUB file CSR_TBX_WITH_AUB, // Number of CSR types CSR_TYPES_NUM }; // AUB file folder location extern const char *folderAUB; // Initial value for HW tag // Set to 0 if using HW or simulator, otherwise 0xFFFFFF00, needs to be lower then CompletionStamp::notReady. extern uint32_t initialHardwareTag; } // namespace NEO