summaryrefslogtreecommitdiffstats
path: root/src/video_core/memory_manager.h (unfollow)
Commit message (Expand)AuthorFilesLines
2022-10-17video_core: Implement memory manager page kindFengChen1-3/+18
2022-10-06General: address feedbackFernando Sahmkow1-1/+1
2022-10-06Buffer Cache: Deduce vertex array limit from memory layout when limit is the highest possible.Fernando Sahmkow1-0/+4
2022-10-06DMA & InlineToMemory Engines Rework.bunnei1-0/+6
2022-10-06MemoryManager: Finish up the initial implementation.Fernando Sahmkow1-4/+7
2022-10-06MemoryManager: initial multi paging system implementation.Fernando Sahmkow1-16/+41
2022-10-06Refactor VideoCore to use AS sepparate from Channel.Fernando Sahmkow1-0/+9
2022-10-06NVDRV: Remake ASGPUFernando Sahmkow1-1/+2
2022-10-06VideoCore: Update MemoryManagerFernando Sahmkow1-71/+27
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
2022-01-29Inline2Memory: Flush before writting buffer.Fernando Sahmkow1-2/+2
2021-12-31video_core/memory_manager: Deduplicate Read/WriteBlockameerj1-0/+5
2021-07-04Texture Cache: Address feedback.Fernando Sahmkow1-4/+4
2021-07-04Texture Cache: Improve accuracy of sparse texture detection.Fernando Sahmkow1-0/+20
2021-02-13Merge branch 'bytes-to-map-end' into new-bufcache-wipReinUsesLisp1-0/+2
2021-02-13gpu: Report renderer errors with exceptionsReinUsesLisp1-1/+1
2021-01-22video_core/memory_manager: Add BytesToMapEndReinUsesLisp1-0/+6
2021-01-21video_core/memory_manager: Remove unused CopyBlockUnsafeReinUsesLisp1-1/+0
2021-01-21video_core/memory_manager: Add GPU address based flush methodReinUsesLisp1-0/+2
2020-12-04video_core: Resolve more variable shadowing scenariosLioncash1-2/+2
2020-10-27video_core: NVDEC Implementationameerj1-1/+4
2020-08-27memory_manager: Make use of [[nodiscard]] in the interfaceLioncash1-17/+17
2020-08-27memory_manager: Make operator+ const qualifiedLioncash1-1/+1
2020-08-24memory_manager: Mark IsGranularRange() as a const member functionLioncash1-1/+1
2020-08-22video_core: Initialize renderer with a GPUReinUsesLisp1-2/+5
2020-07-26hle: nvdrv: Rewrite of GPU memory management.bunnei1-106/+66
2020-06-20memory_manager: Eliminate variable shadowingLioncash1-6/+6
2020-04-17video_core: memory_manager: Updates for Common::PageTable changes.bunnei1-1/+1
2020-04-08Memory: Address Feedback.Fernando Sahmkow1-0/+3
2020-04-08GPUMemoryManager: Improve safety of memory reads.Fernando Sahmkow1-4/+1
2020-04-06Buffer Cache: Use vAddr instead of physical memory.Fernando Sahmkow1-0/+5
2020-03-14PageTable: move backing addresses to a children class as the CPU page table does not need them.Fernando Sahmkow1-1/+1
2020-02-15Revert "video_core: memory_manager: Use GPU interface for cache functions."bunnei1-1/+6
2020-02-08video_core: memory_manager: Use GPU interface for cache functions.bunnei1-6/+1
2019-07-09prefer system reference over global accessorMichael Scire1-1/+7
2019-06-09GPUVM: Correct GPU VM virtual address spaceFernando Sahmkow1-2/+2
2019-05-10video_core/memory_manager: Mark IsBlockContinuous() as a const member functionLioncash1-2/+2
2019-05-10video_core/memory_manager: Mark the constructor as explicitLioncash1-1/+1
2019-05-10video_core/memory_manager: Default the destructor within the cpp fileLioncash1-0/+1
2019-05-10video_core/memory_manager: Amend doxygen commentsLioncash1-7/+7
2019-05-10video_core/memory_manager: Remove superfluous const from function declarationsLioncash1-7/+7
2019-04-17Implement IsBlockContinousFernando Sahmkow1-2/+5
2019-04-16Use ReadBlockUnsafe for fetyching DMA CommandListsFernando Sahmkow1-2/+0
2019-04-16Document unsafe versions and add BlockCopyUnsafeFernando Sahmkow1-5/+25
2019-04-16GPU MemoryManager: Implement ReadBlockUnsafe and WriteBlockUnsafeFernando Sahmkow1-0/+2
2019-04-06memory_manager: Improved implementation of read/write/copy block.bunnei1-1/+6
2019-04-06video_core/memory_manager: Make Read() a const qualified member functionLioncash1-1/+1
2019-04-06video_core/memory_manager: Make ReadBlock() a const qualifier member functionLioncash1-1/+1
2019-04-06video_core/memory_manager: Add a const qualified variant of GetPointer()Lioncash1-0/+1
2019-04-06video_core/memory_manager: Make FindFreeRegion() a const member functionLioncash1-1/+1
2019-04-06video_core/memory_manager: Make GpuToCpuAddress() a const member functionLioncash1-1/+1
2019-03-21memory_manager: Cleanup FindFreeRegion.bunnei1-2/+2
2019-03-21memory_manager: Bug fixes and further cleanup.bunnei1-7/+7
2019-03-21memory_manager: Add protections for invalid GPU addresses.bunnei1-7/+8
2019-03-21gpu: Rewrite virtual memory manager using PageTable.bunnei1-47/+115
2019-03-21gpu: Move GPUVAddr definition to common_types.bunnei1-3/+0
2019-03-16video_core: Refactor to use MemoryManager interface for all memory access.bunnei1-1/+16
2018-11-23memory_manager: Do not allow 0 to be a valid GPUVAddr.bunnei1-1/+2
2018-11-01memory_manager: Do not MapBufferEx over already in use memory.bunnei1-4/+4
2018-10-30global: Use std::optional instead of boost::optional (#1578)Frederic L1-4/+3
2018-10-16memory_manager: Add a method for querying the end of a mapped GPU region.bunnei1-0/+1
2018-05-20GPU: Implemented nvhost-as-gpu's UnmapBuffer ioctl.Subv1-0/+1
2018-04-25gl_rasterizer_cache: Update to be based on GPU addresses, not CPU addresses.bunnei1-1/+0
2018-04-24memory_manager: Add implement CpuToGpuAddress.bunnei1-0/+10
2018-04-24memory_manager: Make GpuToCpuAddress return an optional.bunnei1-1/+4
2018-04-24memory_manager: Use GPUVAdddr, not PAddr, for GPU addresses.bunnei1-8/+8
2018-04-23GPU: Make the GPU virtual memory manager use 16 page bits and 10 page table bits.Subv1-1/+5
2018-02-12Make a GPU class in VideoCore to contain the GPU state.Subv1-4/+5
2018-02-08nvdrv: Add MemoryManager class to track GPU memory.bunnei1-0/+48