summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv (follow)
Commit message (Collapse)AuthorAgeFilesLines
* nvdrv: Implement/stub DumpGraphicsMemoryInfo and GetStatus.bunnei2018-11-242-2/+18
| | | | - Used by Undertale.
* nvhost_ctrl_gpu: Implement IoctlGetGpuTime.bunnei2018-11-212-0/+19
| | | | - Used by Undertale.
* Merge pull request #1478 from ogniK5377/remap-invalidhandle-remapbunnei2018-10-121-3/+10
|\ | | | | Passing an invalid nmap handle to Remap should throw an error
| * Returned an error before processing other remapsDavid Marcec2018-10-121-6/+2
| |
| * Passing an invalid nmap handle to Remap should throw an errorDavid Marcec2018-10-111-3/+14
| | | | | | | | Added error for invalid nmap handles
* | Merge pull request #1479 from ogniK5377/nmap-revampedbunnei2018-10-121-12/+60
|\ \ | | | | | | Added error codes for nvmap
| * | Made the minimum alignment more clearDavid Marcec2018-10-121-2/+3
| | |
| * | Added error codes for nvmapDavid Marcec2018-10-111-12/+59
| |/
* / nvhost_as_gpu: Flush CPU VAddr on UnmapBuffer.bunnei2018-10-111-3/+4
|/
* Unmapping an unmapped buffer should succeedDavid Marcec2018-10-081-1/+6
| | | | Hardware tests show that trying to unmap an unmapped buffer already should always succeed. Hardware test was tested up to 32 iterations of attempting to unmap
* Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi2018-09-151-1/+1
|
* hle/service: Default constructors and destructors in the cpp file where applicableLioncash2018-09-1124-22/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a destructor isn't defaulted into a cpp file, it can cause the use of forward declarations to seemingly fail to compile for non-obvious reasons. It also allows inlining of the construction/destruction logic all over the place where a constructor or destructor is invoked, which can lead to code bloat. This isn't so much a worry here, given the services won't be created and destroyed frequently. The cause of the above mentioned non-obvious errors can be demonstrated as follows: ------- Demonstrative example, if you know how the described error happens, skip forwards ------- Assume we have the following in the header, which we'll call "thing.h": \#include <memory> // Forward declaration. For example purposes, assume the definition // of Object is in some header named "object.h" class Object; class Thing { public: // assume no constructors or destructors are specified here, // or the constructors/destructors are defined as: // // Thing() = default; // ~Thing() = default; // // ... Some interface member functions would be defined here private: std::shared_ptr<Object> obj; }; If this header is included in a cpp file, (which we'll call "main.cpp"), this will result in a compilation error, because even though no destructor is specified, the destructor will still need to be generated by the compiler because std::shared_ptr's destructor is *not* trivial (in other words, it does something other than nothing), as std::shared_ptr's destructor needs to do two things: 1. Decrement the shared reference count of the object being pointed to, and if the reference count decrements to zero, 2. Free the Object instance's memory (aka deallocate the memory it's pointing to). And so the compiler generates the code for the destructor doing this inside main.cpp. Now, keep in mind, the Object forward declaration is not a complete type. All it does is tell the compiler "a type named Object exists" and allows us to use the name in certain situations to avoid a header dependency. So the compiler needs to generate destruction code for Object, but the compiler doesn't know *how* to destruct it. A forward declaration doesn't tell the compiler anything about Object's constructor or destructor. So, the compiler will issue an error in this case because it's undefined behavior to try and deallocate (or construct) an incomplete type and std::shared_ptr and std::unique_ptr make sure this isn't the case internally. Now, if we had defaulted the destructor in "thing.cpp", where we also include "object.h", this would never be an issue, as the destructor would only have its code generated in one place, and it would be in a place where the full class definition of Object would be visible to the compiler. ---------------------- End example ---------------------------- Given these service classes are more than certainly going to change in the future, this defaults the constructors and destructors into the relevant cpp files to make the construction and destruction of all of the services consistent and unlikely to run into cases where forward declarations are indirectly causing compilation errors. It also has the plus of avoiding the need to rebuild several services if destruction logic changes, since it would only be necessary to recompile the single cpp file.
* video_core: Move command buffer loop.Markus Wick2018-09-102-31/+12
| | | | This moves the hot loop into video_core. This refactoring shall reduce the CPU overhead of calling ProcessCommandList.
* gl_renderer: Cache textures, framebuffers, and shaders based on CPU address.bunnei2018-08-311-0/+1
|
* core: Make the main System class use the PImpl idiomLioncash2018-08-311-1/+2
| | | | | | | | | | | | | core.h is kind of a massive header in terms what it includes within itself. It includes VFS utilities, kernel headers, file_sys header, ARM-related headers, etc. This means that changing anything in the headers included by core.h essentially requires you to rebuild almost all of core. Instead, we can modify the System class to use the PImpl idiom, which allows us to move all of those headers to the cpp file and forward declare the bulk of the types that would otherwise be included, reducing compile times. This change specifically only performs the PImpl portion.
* kernel: Eliminate kernel global stateLioncash2018-08-291-1/+3
| | | | | | | | | | | | | | | | | | | | | | As means to pave the way for getting rid of global state within core, This eliminates kernel global state by removing all globals. Instead this introduces a KernelCore class which acts as a kernel instance. This instance lives in the System class, which keeps its lifetime contained to the lifetime of the System class. This also forces the kernel types to actually interact with the main kernel instance itself instead of having transient kernel state placed all over several translation units, keeping everything together. It also has a nice consequence of making dependencies much more explicit. This also makes our initialization a tad bit more correct. Previously we were creating a kernel process before the actual kernel was initialized, which doesn't really make much sense. The KernelCore class itself follows the PImpl idiom, which allows keeping all the implementation details sealed away from everything else, which forces the use of the exposed API and allows us to avoid any unnecessary inclusions within the main kernel header.
* gpu: Make memory_manager privateLioncash2018-08-281-6/+6
| | | | | | | | | | Makes the class interface consistent and provides accessors for obtaining a reference to the memory manager instance. Given we also return references, this makes our more flimsy uses of const apparent, given const doesn't propagate through pointers in the way one would typically expect. This makes our mutable state more apparent in some places.
* Registered missing channel devicesDavid Marcec2018-08-131-0/+4
|
* Added missing channel devicesDavid Marcec2018-08-134-0/+140
|
* Merge pull request #978 from bunnei/fixioctlbunnei2018-08-091-1/+1
|\ | | | | nvhost_gpu: Don't over copy IoctlSubmitGpfifo.
| * nvhost_gpu: Don't over copy IoctlSubmitGpfifo.bunnei2018-08-081-1/+1
| |
* | nvdrv: Get rid of global std::weak_ptrLioncash2018-08-082-7/+8
|/ | | | | Rather than use global state, we can simply pass the instance into the NVFlinger instance directly.
* nvdrv: Make Ioctl()'s definition match its prototypeLioncash2018-08-071-1/+1
| | | | | The only reason this wasn't a compilation error is because we use little-endian systems.
* nvdrv: Get rid of indirect inclusionsLioncash2018-08-0712-15/+17
|
* renderer_base: Make Rasterizer() return the rasterizer by referenceLioncash2018-08-041-2/+2
| | | | | | | All calling code assumes that the rasterizer will be in a valid state, which is a totally fine assumption. The only way the rasterizer wouldn't be is if initialization is done incorrectly or fails, which is checked against in System::Init().
* video_core: Eliminate the g_renderer global variableLioncash2018-08-042-8/+9
| | | | | | | | | | | | | | We move the initialization of the renderer to the core class, while keeping the creation of it and any other specifics in video_core. This way we can ensure that the renderer is initialized and doesn't give unfettered access to the renderer. This also makes dependencies on types more explicit. For example, the GPU class doesn't need to depend on the existence of a renderer, it only needs to care about whether or not it has a rasterizer, but since it was accessing the global variable, it was also making the renderer a part of its dependency chain. By adjusting the interface, we can get rid of this dependency.
* nvhost_gpu: Added checks to ensure we don't read past the end of the entries when handling a GPU command list.Subv2018-07-311-3/+6
|
* nvhost_ctrl_gpu: Only read the input parameters if they are actually there.Subv2018-07-311-3/+11
| | | | Passing nullptr to memcpy is undefined behavior.
* service/nvdrv: Take std::string in Open() by const referenceLioncash2018-07-252-2/+2
| | | | | | | | | Avoids copies from being made, since the string is only ever used for lookup, the data is never transfered anywhere. Ideally, we'd use a std::string_view here, but devices is a std::unordered_map, not a std::map, so we can't use heterogenous lookup here.
* service/nvdrv: Use std::move where applicableLioncash2018-07-251-3/+5
| | | | | | | Avoids unnecessary reference count increments and decrements. In one case, we don't need to make a shared_ptr copy at all, just to call a member function.
* GPU: Implement the NVGPU_IOCTL_CHANNEL_KICKOFF_PB ioctl2 command.Subv2018-07-213-6/+34
| | | | | This behaves quite similarly to the SubmitGPFIFO command. Referenced from Ryujinx. Many thanks to @gdkchan for investigating this!
* Merge pull request #717 from lioncash/explicitbunnei2018-07-203-3/+3
|\ | | | | hle/service: Make constructors explicit where applicable
| * hle/service: Make constructors explicit where applicableLioncash2018-07-193-3/+3
| | | | | | | | | | Prevents implicit construction and makes these lingering non-explicit constructors consistent with the rest of the other classes in services.
* | nvdrv: Take std::string by const reference in GetDevice()Lioncash2018-07-191-1/+1
|/ | | | | This is only ever used as a lookup into the device map, so we don't need to take the std::string instance by value here.
* vi: Partially implement buffer crop parameters.bunnei2018-07-182-3/+7
|
* NvOsGetConfigU32 production implDavid Marcec2018-07-101-17/+2
| | | | | Settings are only used when RMOS_SET_PRODUCTION_MODE is set to 0. If production mode is set, the error code 0x30006 is returned instead
* nvhost_ctrl: Fix NvOsGetConfigU32 for Snipper Clips.bunnei2018-07-081-1/+1
|
* Update clang formatJames Rowe2018-07-036-27/+27
|
* Rename logging macro back to LOG_*James Rowe2018-07-038-50/+50
|
* GPU: Remove a surface from the cache when its backing memory is being unmapped from the GPU's MMU.Subv2018-07-011-0/+5
|
* nvmap: Return the address of the nvmap object when Freeing it for the last time.Subv2018-07-012-4/+11
| | | | This behavior is confirmed by reverse engineering.
* Build: Fixed some MSVC warnings in various parts of the code.Subv2018-06-201-1/+2
|
* nvdrv/devices/nvidia_ctrl_gpu : add IoctlCommands with their params (#524)greggameplayer2018-06-062-0/+53
| | | | | | | | | | | | * add IoctlCommands with their params in nvidia_ctrl_gpu.h * add function related to the changes done previously * fix clang-format * delete trailing whitespace * correct mistake
* Nvdrv/devices/nvhost_gpu : Add some IoctlCommands with their params (#511)greggameplayer2018-06-041-0/+47
| | | | | | | | | | | | | | * Add some IoctlCommand with their params to nvhost_gpu * fix clang-format * delete trailing whitespace * fix some clang-format * delete one other trailing whitespace * last clang-format fix
* Merge pull request #484 from mailwl/nvhost-nvdecbunnei2018-06-033-0/+72
|\ | | | | Services/nvdrv: add '/dev/nvhost-nvdec' device
| * Services/nvdrv: add '/dev/nvhost-nvdec' devicemailwl2018-05-303-0/+72
| |
* | nvhost_ctrl: Stub out IocCtrlEventRegister.bunnei2018-05-302-0/+10
| |
* | nvhost_ctrl: Stub out IocCtrlEventWaitAsyncCommand.bunnei2018-05-302-5/+9
|/
* NvOsGetConfigU32 should return null instead of 0 for default outputDavid Marcec2018-05-271-1/+1
|
* Merge pull request #466 from mailwl/nv-timeoutbunnei2018-05-262-0/+16
|\ | | | | Stub NVGPU_IOCTL_CHANNEL_SET_TIMEOUT
| * Stub NVGPU_IOCTL_CHANNEL_SET_TIMEOUTmailwl2018-05-242-0/+16
| | | | | | | | Used in Nintendo Labo ToyCon 1&2
* | Stubbed NVGPU_GPU_IOCTL_ZBC_SET_TABLE (#463)David2018-05-252-0/+22
|/ | | We have no clue on what this actually does yet so stubbing it since it's just input only should be fine for now
* change some functionsgreggameplayer2018-05-231-6/+6
| | | according to the changes made previously
* correct placement and add size checkgreggameplayer2018-05-231-21/+25
|
* Add ioctl commands with their params and size checkgreggameplayer2018-05-231-2/+86
|
* Implemented NVHOST_IOCTL_CHANNEL_GET_WAITBASE (#440)David2018-05-222-1/+20
| | | | | | | | | | * Implemented NVHOST_IOCTL_CHANNEL_GET_WAITBASE struct + 4 seems to be hard coded at 0 and struct + 0 seems to be ignored? * IocGetWaitbase -> IocChannelGetWaitbaseCommand * Added super late fixes
* GPU: Implemented the nvmap Free ioctl.Subv2018-05-202-1/+48
| | | | It releases a reference to an nvmap object
* GPU: Implemented nvhost-as-gpu's UnmapBuffer ioctl.Subv2018-05-202-0/+50
| | | | It removes a mapping previously created with the MapBufferEx ioctl.
* More accurate GetTPCMasks implDavid Marcec2018-05-112-4/+8
|
* general: Make formatting of logged hex values more straightforwardLioncash2018-05-026-8/+8
| | | | | | This makes the formatting expectations more obvious (e.g. any zero padding specified is padding that's entirely dedicated to the value being printed, not any pretty-printing that also gets tacked on).
* GPU: Don't write to invalid memory locations when handling ioctls that don't have an output.Subv2018-05-012-5/+0
|
* general: Convert assertion macros over to be fmt-compatibleLioncash2018-04-271-2/+2
|
* Merge branch 'master' of https://github.com/yuzu-emu/yuzu into service-implDavid Marcec2018-04-268-65/+123
|\
| * nvdrv: Move logging macros over to new fmt-compatible onesLioncash2018-04-247-60/+61
| |
| * Merge pull request #384 from Subv/nvhost-remapbunnei2018-04-232-0/+57
| |\ | | | | | | Nvdrv/nvhost-as-gpu: Implemented the ioctl REMAP command.
| | * NvDrv/nvhost-as-gpu: Ensure that the object passed to MapBufferEx has already been allocated.Subv2018-04-231-0/+10
| | | | | | | | | | | | Also added a consistency check and a comment for the case when the object id is different than its handle. The real nvservices doesn't make a distinction between ids and handles, each object gets an unique handle which doubles as its id.
| | * Nvdrv/nvhost-as-gpu: Implemented the ioctl REMAP command.Subv2018-04-232-0/+47
| | | | | | | | | | | | It takes a previously-reserved (AllocateSpace) GPU memory address and maps it to the address of the nvmap object passed to Remap.
| * | Nvdrv: Assert when receiving an unimplemented ioctl in the nv* handlers.Subv2018-04-235-5/+5
| |/
* | GetIUserInterface->CreateUserInterface, Added todos and stub logs. Playreport->PlayReport.David Marcec2018-04-231-1/+1
| |
* | Implemented GetIUserInterface properly, Playreport and SSL::SetInterfaceVersion. Fixed ipc issues with IAudioDevice(wrong ids)David Marcec2018-04-221-0/+1
|/
* service: Use nested namespace specifiers where applicableLioncash2018-04-2019-102/+39
| | | | Tidies up namespace declarations
* Various fixes and clangHexagon122018-04-111-2/+2
|
* Updated nvmemp with new service names.Hexagon122018-04-101-4/+4
|
* Updated nvdrv with more service names.Hexagon122018-04-101-0/+7
|
* renderer_opengl: Fixes for properly flushing & rendering the framebuffer.bunnei2018-03-231-6/+0
|
* renderer_opengl: Better handling of framebuffer transform flags.bunnei2018-03-231-3/+1
|
* nvdisp_disp0: Always flush and invalidate framebuffer region.bunnei2018-03-231-0/+7
| | | | - Workaround for texture forwarding until we have a better place.
* video_core: Move FramebufferInfo to FramebufferConfig in GPU.bunnei2018-03-231-3/+3
|
* Clang FixesN00byKing2018-03-191-2/+2
|
* Clean Warnings (?)N00byKing2018-03-191-1/+1
|
* nvmap: Make IocFromId return the same existing handle instead of creating a new one.Subv2018-02-171-5/+2
| | | | Games like Puyo Puyo Tetris and BOTW seem to depend on the buffer always having the same handle
* nvhost-ctrl: Stub NVHOST_IOCTL_CTRL_EVENT_WAIT.Subv2018-02-152-0/+25
|
* Vi: Properly write the BufferProducerFence object in the DequeueBuffer response parcel.Subv2018-02-151-0/+7
|
* Merge pull request #188 from bunnei/refactor-buffer-descriptorbunnei2018-02-151-20/+7
|\ | | | | Refactor IPC buffer descriptor interface
| * service: Remove remaining uses of BufferDescriptor*.bunnei2018-02-141-3/+2
| |
| * nvdrv: Use ReadBuffer/WriteBuffer functions for Ioctl.bunnei2018-02-141-17/+5
| |
* | nvdrv/interface: Silence formatting specifier warningsLioncash2018-02-141-1/+2
| |
* | nvmap: Silence formatting specifier warningsLioncash2018-02-141-1/+2
| |
* | nvhost_gpu: Silence formatting specifier warningsLioncash2018-02-141-6/+8
| |
* | nvhost_ctrl: Silence formatting specifier warningsLioncash2018-02-141-2/+2
| |
* | nvhost_ctrl_gpu: Silence formatting specifier warningsLioncash2018-02-141-3/+4
| |
* | nvhost_as_gpu: Silence formatting specifier warningsLioncash2018-02-141-5/+7
|/
* Merge pull request #178 from Subv/command_buffersbunnei2018-02-127-172/+18
|\ | | | | GPU: Added a command processor to decode the GPU pushbuffers and forward the commands to their respective engines
| * Make a GPU class in VideoCore to contain the GPU state.Subv2018-02-127-181/+15
| | | | | | | | Also moved the GPU MemoryManager class to video_core since it makes more sense for it to be there.
| * GPU: Added a command processor to decode the GPU pushbuffers and forward the commands to their respective engines.Subv2018-02-123-3/+5
| |
| * nvdrv: Make the GPU memory manager available to nvhost-gpu.Subv2018-02-123-6/+16
| |
* | vi: Parse IGBPQueueBufferRequestParcel params and expose buffer flip vertical.bunnei2018-02-122-3/+7
|/
* nvdrv: Fix QueryEvent for libnx.bunnei2018-02-092-4/+8
|
* nvhost_ctrl_gpu: Implement ZCullGetInfo.bunnei2018-02-091-2/+14
|
* nvhost_as_gpu: Implement AllocateSpace and MapBufferEx.bunnei2018-02-082-10/+33
|
* nvdrv: Add MemoryManager class to track GPU memory.bunnei2018-02-082-0/+160
|
* nvmap: Refactor to expose nvmap objects.bunnei2018-02-082-19/+22
|
* nvhost_as_gpu: Add nvmap as a class member.bunnei2018-02-083-2/+9
|
* Extra nvdrv support (#162)David2018-02-0616-37/+761
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * FinishInitalize needed for 3.0.1+ games * nvdrv:s and nvdrv:t both use NVDRV * Most settings return 0 on hardware, disabled NV_MEMORY_PROFILER for now. NVN_THROUGH_OPENGL & NVRM_GPU_PREVENT_USE are a few interesting settings to look at. Carefully choosing settings can help with drawing graphics later on * Initial /dev/nvhost-gpu support * ZCullBind * Stubbed SetErrorNotifier * Fixed SetErrorNotifier log, Added SetChannelPriority * Allocate GPFIFO Ex2, Allocate Obj Ctx, Submit GPFIFO * oops * Fixed up naming/structs/enums. Used vector instead of array for "gpfifo_entry" * Added missing fixes * /dev/nvhost-ctrl-gpu * unneeded struct * Forgot u32 in enum class * Automatic descriptor swapping for ioctls, fixed nvgpu_gpu_get_tpc_masks_args being incorrect size * nvdrv#QueryEvent * Renamed logs for nvdrv * Refactor ioctl so nv_result isn't needed * /dev/nvhost-as-gpu * Fixed Log service naming, CtxObjects now u32, renamed all structs, added static_asserts to structs, used INSERT_PADDING_WORDS instead of u32s * nvdevices now uses "Ioctl" union, * IoctlGpfifoEntry now uses bit field * final changes
* logger: Use Service_NVDRV category where applicable.bunnei2018-02-042-10/+10
|
* hle: Rename RequestBuilder to ResponseBuilder.bunnei2018-01-251-5/+5
|
* Merge pull request #131 from lioncash/enumbunnei2018-01-222-12/+13
|\ | | | | nvmap: Make IoctlCommands an enum class
| * nvmap: Add a return 0 underneath the UNIMPLEMENTED macroLioncash2018-01-211-0/+1
| | | | | | | | This macro resolves to an empty macro in release builds.
| * nvmap: Make IoctlCommands an enum classLioncash2018-01-212-12/+12
| | | | | | | | Prevents the enum values from polluting the surrounding scope
* | Added nvmemp, Added /dev/nvhost-ctrl, SetClientPID now stores pid (#114)David2018-01-217-5/+158
|/ | | | | | | | | | | | | | | | | | | | | | | | | | * Added nvmemp, Added /dev/nvhost-ctrl, SetClientPID now stores pid * used clang-format-3.9 instead * lowercase pid * Moved nvmemp handlers to cpp * Removed unnecessary logging for NvOsGetConfigU32. Cleaned up log and changed to LOG_DEBUG * using std::arrays instead of c arrays * nvhost get config now uses std::array completely * added pid logging back * updated cmakelist * missing includes * added array, removed memcpy * clang-format6.0
* Format: Run the new clang format on everythingJames Rowe2018-01-211-1/+1
|
* nvdrv: Stub SetClientPID.bunnei2018-01-192-0/+13
|
* nvdrv: stubbed Close(cmd 2)Frederic Meyer2018-01-174-0/+26
|
* UI: Fix frame rate perf statsJames Rowe2018-01-171-0/+3
| | | | Adds in a missing EndGameFrame when nvdrv swaps buffers
* NV: Implemented the nvdrv service, which uses the same interface as nvdrv:aSubv2018-01-173-14/+16
|
* NV: Move the nvdrv classes into the Nvidia namespace, and move the functionality to a s single module that services call.Subv2018-01-1711-161/+91
|
* clang-formatMerryMage2018-01-161-0/+1
|
* yuzu: Update license text to be consistent across project.bunnei2018-01-1311-11/+11
|
* core: Include <algorithm> where used.bunnei2018-01-121-0/+2
|
* nv: Fix more broken asserts.bunnei2018-01-122-3/+3
|
* nvdisp_disp0: Fix broken assert.bunnei2018-01-121-1/+1
|
* nvdisp_disp0: Call SwapBuffers to render framebuffer.bunnei2018-01-111-0/+7
|
* NV: Move the nv device nodes to their own directory and namespace.Subv2018-01-119-165/+421
|
* NV: Expose the nvdisp_disp0 device and a weak reference to the nvdrv:a service.Subv2018-01-114-170/+236
| | | | | | NVFlinger will call into the nvdisp_disp0 device to perform screen flips, bypassing the ioctl interface. We now have the address of the framebuffer to draw, we just need to actually put it on the screen.
* NV: Implemented the nvdrv:a service and the /dev/nvmap device.Subv2018-01-114-0/+354