|
1 | 1 | /*
|
2 |
| - * Copyright (C) 2017-2019 Intel Corporation |
| 2 | + * Copyright (C) 2019 Intel Corporation |
3 | 3 | *
|
4 | 4 | * SPDX-License-Identifier: MIT
|
5 | 5 | *
|
@@ -579,11 +579,6 @@ inline void AUBCommandStreamReceiverHw<GfxFamily>::waitForTaskCountWithKmdNotify
|
579 | 579 | pollForCompletion();
|
580 | 580 | }
|
581 | 581 |
|
582 |
| -template <typename GfxFamily> |
583 |
| -constexpr uint32_t AUBCommandStreamReceiverHw<GfxFamily>::getMaskAndValueForPollForCompletion() { |
584 |
| - return 0x100; |
585 |
| -} |
586 |
| - |
587 | 582 | template <typename GfxFamily>
|
588 | 583 | void AUBCommandStreamReceiverHw<GfxFamily>::makeResidentExternal(AllocationView &allocationView) {
|
589 | 584 | externalAllocations.push_back(allocationView);
|
@@ -784,12 +779,6 @@ uint32_t AUBCommandStreamReceiverHw<GfxFamily>::getDumpHandle() {
|
784 | 779 | return hashPtrToU32(this);
|
785 | 780 | }
|
786 | 781 |
|
787 |
| -template <typename GfxFamily> |
788 |
| -void AUBCommandStreamReceiverHw<GfxFamily>::addContextToken(uint32_t dumpHandle) { |
789 |
| - // Some simulator versions don't support adding the context token. |
790 |
| - // This hook allows specialization for those that do. |
791 |
| -} |
792 |
| - |
793 | 782 | template <typename GfxFamily>
|
794 | 783 | void AUBCommandStreamReceiverHw<GfxFamily>::addGUCStartMessage(uint64_t batchBufferAddress) {
|
795 | 784 | typedef typename GfxFamily::MI_BATCH_BUFFER_START MI_BATCH_BUFFER_START;
|
@@ -828,15 +817,4 @@ void AUBCommandStreamReceiverHw<GfxFamily>::addGUCStartMessage(uint64_t batchBuf
|
828 | 817 | this->flatBatchBufferHelper->setPatchInfoData(patchInfoData);
|
829 | 818 | }
|
830 | 819 |
|
831 |
| -template <typename GfxFamily> |
832 |
| -uint32_t AUBCommandStreamReceiverHw<GfxFamily>::getGUCWorkQueueItemHeader() { |
833 |
| - uint32_t GUCWorkQueueItemHeader = 0x00030001; |
834 |
| - return GUCWorkQueueItemHeader; |
835 |
| -} |
836 |
| - |
837 |
| -template <typename GfxFamily> |
838 |
| -int AUBCommandStreamReceiverHw<GfxFamily>::getAddressSpaceFromPTEBits(uint64_t entryBits) const { |
839 |
| - return AubMemDump::AddressSpaceValues::TraceNonlocal; |
840 |
| -} |
841 |
| - |
842 | 820 | } // namespace NEO
|
0 commit comments