| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | | web_service: Add skeleton project. | 2017-07-10 | 1 | -1/+1 | ||
| | | | | ||||||
| * | | | settings: Add telemetry endpoint URL. | 2017-07-10 | 1 | -0/+3 | ||
| | | | | ||||||
| * | | | Merge pull request #2815 from mailwl/bossp | 2017-07-08 | 1 | -0/+3 | ||
| |\ \ \ | | | | | | | | | Service/boss:P: Add some functions to FunctionTable | |||||
| | * | | | Service/boss:P: Add some functions to FunctionTable | 2017-07-01 | 1 | -0/+3 | ||
| | | |/ | |/| | ||||||
| * | | | Merge pull request #2797 from yuriks/cached-vma-free-crash | 2017-07-08 | 1 | -5/+20 | ||
| |\ \ \ | |/ / |/| | | Memory: Fix crash when unmapping a VMA covering cached surfaces | |||||
| | * | | Memory: Fix crash when unmapping a VMA covering cached surfaces | 2017-06-21 | 1 | -5/+20 | ||
| | |/ | | | | | | | | | | | | | | | | | | | Unmapping pages tries to flush any cached GPU surfaces touching that region. When a cached page is invalidated, GetPointerFromVMA() is used to restore the original pagetable pointer. However, since that VMA has already been deleted, this hits an UNREACHABLE case in that function. Now when this happens, just set the page type to Unmapped and continue, which arrives at the correct end result. | |||||
| * | | Merge pull request #2793 from Subv/replyandreceive | 2017-06-29 | 6 | -23/+161 | ||
| |\ \ | | | | | | | Kernel/SVC: Partially implemented svcReplyAndReceive | |||||
| | * | | Kernel/SVC: Pass the current thread as a parameter to ↵ | 2017-06-29 | 3 | -4/+7 | ||
| | | | | | | | | | | | | | ClientSession::SendSyncRequest. | |||||
| | * | | Kernel/Sessions: Clean up the list of pending request threads of a session ↵ | 2017-06-25 | 1 | -0/+5 | ||
| | | | | | | | | | | | | | when the client endpoint is closed. | |||||
| | * | | Kernel/SVC: Partially implemented svcReplyAndReceive. | 2017-06-25 | 2 | -11/+121 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | It behaves mostly as WaitSynchronizationN with wait_all = false, except for IPC buffer translation. The target thread of an IPC response will now wake up when responding. IPC buffer translation is currently not implemented. Error passing back to svcSendSyncRequest is currently not implemented. | |||||
| | * | | Kernel/ServerSession: Keep track of which threads have issued sync requests. | 2017-06-25 | 3 | -9/+29 | ||
| | | | | ||||||
| * | | | gpu: add comments for TextureCopy | 2017-06-29 | 2 | -8/+8 | ||
| | | | | ||||||
| * | | | gpu: fix edge cases for TextureCopy | 2017-06-27 | 1 | -18/+23 | ||
| | | | | ||||||
| * | | | Merge pull request #2778 from Subv/uds_more | 2017-06-26 | 5 | -1/+436 | ||
| |\ \ \ | | | | | | | | | Services/UDS: Stub SendTo to generate the unencrypted data frames with the right headers | |||||
| | * | | | UDS: Use the ToDS and FromDS fields to properly calculate the AAD used ↵ | 2017-06-26 | 1 | -15/+32 | ||
| | | | | | | | | | | | | | | | | | during encryption. | |||||
| | * | | | UDS: Move the UDS keyslot used to generate the CCMP key to the ↵ | 2017-06-26 | 2 | -4/+3 | ||
| | | | | | | | | | | | | | | | | | AES::KeySlotID enum. | |||||
| | * | | | UDS: Run clang-format. | 2017-06-26 | 3 | -51/+55 | ||
| | | | | | ||||||
| | * | | | UDS: Added functions to encrypt and decrypt the data frames. | 2017-06-26 | 3 | -12/+156 | ||
| | | | | | | | | | | | | | | | | | The responsibility of encryption and encapsulation into an 802.11 MAC frame will fall into the callers of GenerateDataPayload. | |||||
| | * | | | UDS: Clarify comment about the first 4 bytes of the SecureData header. | 2017-06-15 | 2 | -1/+5 | ||
| | | | | | | | | | | | | | | | | | It is likely that these 4 bytes are actually a different header, part of some protocol that encapsulates the SecureData protocol. | |||||
| | * | | | UDS: Return the correct error messages in SendTo when not connected to a ↵ | 2017-06-15 | 1 | -6/+13 | ||
| | | | | | | | | | | | | | | | | | network or trying to send to itself. | |||||
| | * | | | UDS: Stub SendTo to generate the unencrypted data frame with the right headers. | 2017-06-15 | 4 | -1/+261 | ||
| | |/ / | ||||||
| * | | | Kernel: Implement AcceptSession SVC | 2017-06-23 | 4 | -3/+38 | ||
| | | | | ||||||
| * | | | Kernel: Fix SVC wrapper for CreatePort | 2017-06-23 | 1 | -3/+2 | ||
| | | | | | | | | | | | | | The return parameters were flipped. | |||||
| * | | | Kernel: Implement CreateSessionToPort SVC | 2017-06-23 | 1 | -1/+12 | ||
| | | | | ||||||
| * | | | Merge pull request #2798 from yuriks/svc-create-session | 2017-06-23 | 2 | -3/+26 | ||
| |\ \ \ | | | | | | | | | Kernel: Implement CreateSession SVC | |||||
| | * | | | Kernel: Implement CreateSession SVC | 2017-06-22 | 2 | -3/+26 | ||
| | | |/ | |/| | ||||||
| * / | | Kernel/IPC: Support translation of null handles | 2017-06-21 | 1 | -7/+12 | ||
| |/ / | | | | | | | | | Missed this in my first implementation. Thanks to @wwylele for pointing out that this was missing. | |||||
| * | | Merge pull request #2789 from yuriks/misc-kernel | 2017-06-21 | 2 | -1/+5 | ||
| |\ \ | | | | | | | Trivial no-op additions | |||||
| | * | | Memory: Add enum definitions for the n3DS FCRAM size | 2017-06-20 | 1 | -1/+3 | ||
| | | | | ||||||
| | * | | Kernel: Add comment about the extended linear heap area | 2017-06-18 | 1 | -0/+2 | ||
| | |/ | ||||||
| * | | Merge pull request #2790 from yuriks/remove-movefrom | 2017-06-20 | 24 | -56/+57 | ||
| |\ \ | | | | | | | Remove ResultVal::MoveFrom | |||||
| | * | | ResultVal: Remove MoveFrom() | 2017-06-18 | 24 | -57/+53 | ||
| | | | | | | | | | | | | | | | | Replace it with std::move(result_val).Unwrap(), or Foo().Unwrap() in case you already have an rvalue. | |||||
| | * | | ResultVal: Add an rvalue overload of Unwrap() | 2017-06-18 | 1 | -1/+6 | ||
| | |/ | ||||||
| * | | Merge pull request #2779 from Subv/uds_more2 | 2017-06-21 | 1 | -0/+36 | ||
| |\ \ | | | | | | | UDS: Added a hook for updating the connection status when a client connects to the network. | |||||
| | * | | UDS: Added a hook for updating the connection status when a client connects ↵ | 2017-06-15 | 1 | -0/+36 | ||
| | |/ | | | | | | | to the network. | |||||
| * / | Kernel/IPC: Make HLERequestContext usable from outside kernel | 2017-06-18 | 3 | -5/+10 | ||
| |/ | ||||||
| * | Services/UDS: Set the proper bit in the ConnectionStatus structure when ↵ | 2017-06-13 | 3 | -5/+15 | ||
| | | | | | | | | | | | | | creating a network. (#2738) * Services/UDS: Set the proper bit in the ConnectionStatus structure when creating a network. This lets the application know that the host was successfully added to the session. * Services/UDS: Reset the connection status when destroying the network * Services/UDS: Reset the connection status's bitmask of changed nodes after reporting it to the game. | |||||
| * | Kernel/IPC: Use boost::small_vector for HLE context objects | 2017-06-11 | 1 | -1/+3 | ||
| | | ||||||
| * | Kernel: Allow clearing request_objects to re-use buffer space | 2017-06-11 | 3 | -0/+14 | ||
| | | | | | | Reduces the necessary allocation to max(in_handles, out_handles) rather than (in_handles + out_handles). | |||||
| * | Kernel: Basic support for IPC translation for HLE services | 2017-06-11 | 3 | -18/+130 | ||
| | | ||||||
| * | Service/sm: Convert srv: to use IPC helpers | 2017-06-11 | 1 | -49/+56 | ||
| | | ||||||
| * | IPC: Add Pop/PushObjects methods to RequestParser/Builder | 2017-06-11 | 1 | -10/+103 | ||
| | | | | | | These use the context functions to create and look-up handles for the user. | |||||
| * | IPC: Add basic HLERequestContext support to RequestParser/Builder | 2017-06-11 | 1 | -1/+32 | ||
| | | ||||||
| * | Kernel: Add methods in HLERequestContext abstracting handle creation | 2017-06-11 | 2 | -0/+12 | ||
| | | ||||||
| * | ServiceFramework: Use separate copy of command buffer | 2017-06-11 | 3 | -9/+29 | ||
| | | | | | | | Copy the IPC command buffer to/from the request context before/after the handler is invoked. This is part of a move away from using global data for handling IPC requests. | |||||
| * | Merge pull request #2756 from yuriks/service-framework | 2017-06-08 | 9 | -64/+355 | ||
| |\ | | | | | New service framework | |||||
| | * | Service/sm: Convert 'srv:' to ServiceFramework | 2017-06-08 | 5 | -51/+75 | ||
| | | | ||||||
| | * | Service: Remove a few redundant namespace qualifiers | 2017-06-08 | 1 | -5/+5 | ||
| | | | ||||||
| | * | Service: Add new ServiceFramework framework for writing HLE services | 2017-06-08 | 5 | -4/+269 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | The old "Interface" class had a few problems such as using free functions (Which didn't allow you to write the service handler as if it were a regular class.) which weren't very extensible. (Only received one parameter with a pointer to the Interface object.) The new ServiceFramework aims to solve these problems by working with member functions and passing a generic context struct as parameter. This struct can be extended in the future without having to update all existing service implementations. | |||||
| | * | Kernel: Remove some unnecessary namespace qualifications | 2017-06-06 | 1 | -4/+6 | ||
| | | | ||||||