2018-02-05 18:48:58 +08:00
|
|
|
/*
|
2021-05-17 02:51:16 +08:00
|
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
2018-02-05 18:48:58 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-02-05 18:48:58 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/command_stream/linear_stream.h"
|
|
|
|
#include "shared/source/helpers/hw_helper.h"
|
|
|
|
#include "shared/source/helpers/windows/gmm_callbacks.h"
|
2019-02-27 18:39:32 +08:00
|
|
|
|
2018-02-05 18:48:58 +08:00
|
|
|
#include <cstdint>
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2018-08-17 19:38:09 +08:00
|
|
|
|
|
|
|
template <typename GfxFamily>
|
|
|
|
long __stdcall DeviceCallbacks<GfxFamily>::notifyAubCapture(void *csrHandle, uint64_t gfxAddress, size_t gfxSize, bool allocate) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-05 18:48:58 +08:00
|
|
|
template <typename GfxFamily>
|
|
|
|
int __stdcall TTCallbacks<GfxFamily>::writeL3Address(void *queueHandle, uint64_t l3GfxAddress, uint64_t regOffset) {
|
2018-02-15 03:14:20 +08:00
|
|
|
return 0;
|
2018-08-17 19:38:09 +08:00
|
|
|
}
|
2018-02-05 18:48:58 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|