2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2022-08-26 12:39:52 +00:00
|
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2018-01-17 08:37:47 +01:00
|
|
|
#pragma once
|
2018-11-14 08:40:37 +01:00
|
|
|
#include <cstdint>
|
2017-12-21 00:45:38 +01:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2022-12-08 14:23:49 +00: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 11:59:46 +01:00
|
|
|
} // namespace NEO
|