Vi: Properly write the BufferProducerFence object in the DequeueBuffer response parcel.

This commit is contained in:
Subv 2018-02-13 22:12:46 -05:00
parent db873a232c
commit 8dee5663b3
2 changed files with 28 additions and 18 deletions

View file

@ -17,6 +17,13 @@ namespace Devices {
class nvdevice; class nvdevice;
} }
struct IoctlFence {
u32 id;
u32 value;
};
static_assert(sizeof(IoctlFence) == 8, "IoctlFence has wrong size");
class Module final { class Module final {
public: public:
Module(); Module();

View file

@ -8,6 +8,7 @@
#include "common/scope_exit.h" #include "common/scope_exit.h"
#include "core/core_timing.h" #include "core/core_timing.h"
#include "core/hle/ipc_helpers.h" #include "core/hle/ipc_helpers.h"
#include "core/hle/service/nvdrv/nvdrv.h"
#include "core/hle/service/nvflinger/buffer_queue.h" #include "core/hle/service/nvflinger/buffer_queue.h"
#include "core/hle/service/vi/vi.h" #include "core/hle/service/vi/vi.h"
#include "core/hle/service/vi/vi_m.h" #include "core/hle/service/vi/vi_m.h"
@ -86,6 +87,15 @@ public:
write_index = Common::AlignUp(write_index, 4); write_index = Common::AlignUp(write_index, 4);
} }
template <typename T>
void WriteObject(const T& val) {
u32_le size = static_cast<u32>(sizeof(val));
Write(size);
// TODO(Subv): Support file descriptors.
Write<u32_le>(0); // Fd count.
Write(val);
}
void Deserialize() { void Deserialize() {
Header header{}; Header header{};
std::memcpy(&header, buffer.data(), sizeof(Header)); std::memcpy(&header, buffer.data(), sizeof(Header));
@ -262,10 +272,11 @@ public:
Data data; Data data;
}; };
// TODO(bunnei): Remove this. When set to 1, games will think a fence is valid and boot further. struct BufferProducerFence {
// This will break libnx and potentially other apps that more stringently check this. This is here u32 is_valid;
// purely as a convenience, and should go away once we implement fences. std::array<Nvidia::IoctlFence, 4> fences;
static constexpr u32 FENCE_HACK = 0; };
static_assert(sizeof(BufferProducerFence) == 36, "BufferProducerFence has wrong size");
class IGBPDequeueBufferResponseParcel : public Parcel { class IGBPDequeueBufferResponseParcel : public Parcel {
public: public:
@ -274,20 +285,12 @@ public:
protected: protected:
void SerializeData() override { void SerializeData() override {
// TODO(bunnei): Find out what this all means. Writing anything non-zero here breaks libnx. // TODO(Subv): Find out how this Fence is used.
Write<u32>(0); BufferProducerFence fence = {};
Write<u32>(FENCE_HACK);
Write<u32>(0); Write(slot);
Write<u32>(0); WriteObject(fence);
Write<u32>(0); Write<u32_le>(0);
Write<u32>(0);
Write<u32>(0);
Write<u32>(0);
Write<u32>(0);
Write<u32>(0);
Write<u32>(0);
Write<u32>(0);
Write<u32>(0);
} }
u32_le slot; u32_le slot;