2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2022-08-26 20:39:52 +08:00
|
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-01-17 15:37:47 +08:00
|
|
|
#pragma once
|
2018-11-14 15:40:37 +08:00
|
|
|
#include <cstdint>
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2022-12-08 22:23:49 +08:00
|
|
|
inline constexpr uint32_t pipelineSelectEnablePipelineSelectMaskBits = 0x3;
|
|
|
|
inline constexpr uint32_t pipelineSelectMediaSamplerDopClockGateMaskBits = 0x10;
|
|
|
|
inline constexpr uint32_t pipelineSelectMediaSamplerPowerClockGateMaskBits = 0x40;
|
|
|
|
inline constexpr uint32_t pipelineSelectSystolicModeEnableMaskBits = 0x80;
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|