51 lines
1.9 KiB
C++
51 lines
1.9 KiB
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/command_stream/command_stream_receiver.h"
|
|
#include "shared/source/command_stream/scratch_space_controller.h"
|
|
#include "shared/source/command_stream/submissions_aggregator.h"
|
|
#include "shared/source/memory_manager/graphics_allocation.h"
|
|
#include "shared/source/memory_manager/memory_constants.h"
|
|
#include "shared/source/memory_manager/residency_container.h"
|
|
|
|
#include "level_zero/core/source/cmdqueue_imp.h"
|
|
|
|
#include "igfxfmid.h"
|
|
|
|
namespace L0 {
|
|
|
|
template <GFXCORE_FAMILY gfxCoreFamily>
|
|
struct CommandQueueHw : public CommandQueueImp {
|
|
using CommandQueueImp::CommandQueueImp;
|
|
|
|
ze_result_t createFence(const ze_fence_desc_t *desc, ze_fence_handle_t *phFence) override;
|
|
ze_result_t destroy() override;
|
|
ze_result_t executeCommandLists(uint32_t numCommandLists,
|
|
ze_command_list_handle_t *phCommandLists,
|
|
ze_fence_handle_t hFence, bool performMigration) override;
|
|
ze_result_t executeCommands(uint32_t numCommands,
|
|
void *phCommands,
|
|
ze_fence_handle_t hFence) override;
|
|
|
|
void dispatchTaskCountWrite(NEO::LinearStream &commandStream, bool flushDataCache) override;
|
|
|
|
void programGeneralStateBaseAddress(uint64_t gsba, NEO::LinearStream &commandStream);
|
|
size_t estimateStateBaseAddressCmdSize();
|
|
void programFrontEnd(uint64_t scratchAddress, NEO::LinearStream &commandStream);
|
|
|
|
size_t estimateFrontEndCmdSize();
|
|
size_t estimatePipelineSelect();
|
|
void programPipelineSelect(NEO::LinearStream &commandStream);
|
|
|
|
void handleScratchSpace(NEO::ResidencyContainer &residency,
|
|
NEO::ScratchSpaceController *scratchController,
|
|
bool &gsbaState, bool &frontEndState);
|
|
};
|
|
|
|
} // namespace L0
|