2022-04-23 09:59:50 +01:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-02-12 04:44:12 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
2021-10-01 05:57:02 +01:00
|
|
|
|
|
|
|
#include "common/bit_field.h"
|
2018-02-12 04:44:12 +00:00
|
|
|
#include "common/common_types.h"
|
2021-11-12 03:15:51 +00:00
|
|
|
#include "core/hle/service/nvdrv/nvdata.h"
|
2020-10-27 03:07:36 +00:00
|
|
|
#include "video_core/cdma_pusher.h"
|
2020-12-12 06:26:14 +00:00
|
|
|
#include "video_core/framebuffer_config.h"
|
2018-02-12 04:44:12 +00:00
|
|
|
|
2019-02-16 03:05:17 +00:00
|
|
|
namespace Core {
|
2020-03-25 02:58:49 +00:00
|
|
|
class System;
|
|
|
|
} // namespace Core
|
2019-02-16 03:05:17 +00:00
|
|
|
|
2018-08-03 17:55:58 +01:00
|
|
|
namespace VideoCore {
|
2019-01-08 04:32:02 +00:00
|
|
|
class RendererBase;
|
2020-07-10 04:36:38 +01:00
|
|
|
class ShaderNotify;
|
2019-01-08 04:32:02 +00:00
|
|
|
} // namespace VideoCore
|
2018-08-03 17:55:58 +01:00
|
|
|
|
2018-02-12 04:44:12 +00:00
|
|
|
namespace Tegra {
|
2021-10-01 05:57:02 +01:00
|
|
|
class DmaPusher;
|
|
|
|
struct CommandList;
|
2018-02-12 04:44:12 +00:00
|
|
|
|
2022-08-12 10:58:09 +01:00
|
|
|
// TODO: Implement the commented ones
|
2018-03-24 04:45:24 +00:00
|
|
|
enum class RenderTargetFormat : u32 {
|
2018-03-25 22:57:53 +01:00
|
|
|
NONE = 0x0,
|
2022-11-06 14:19:08 +00:00
|
|
|
R32G32B32A32_FLOAT = 0xC0,
|
2020-07-01 06:28:53 +01:00
|
|
|
R32G32B32A32_SINT = 0xC1,
|
|
|
|
R32G32B32A32_UINT = 0xC2,
|
2022-11-06 14:19:08 +00:00
|
|
|
R32G32B32X32_FLOAT = 0xC3,
|
|
|
|
R32G32B32X32_SINT = 0xC4,
|
|
|
|
R32G32B32X32_UINT = 0xC5,
|
2020-07-01 06:28:53 +01:00
|
|
|
R16G16B16A16_UNORM = 0xC6,
|
|
|
|
R16G16B16A16_SNORM = 0xC7,
|
|
|
|
R16G16B16A16_SINT = 0xC8,
|
|
|
|
R16G16B16A16_UINT = 0xC9,
|
|
|
|
R16G16B16A16_FLOAT = 0xCA,
|
|
|
|
R32G32_FLOAT = 0xCB,
|
|
|
|
R32G32_SINT = 0xCC,
|
|
|
|
R32G32_UINT = 0xCD,
|
|
|
|
R16G16B16X16_FLOAT = 0xCE,
|
2022-08-12 10:58:09 +01:00
|
|
|
A8R8G8B8_UNORM = 0xCF,
|
|
|
|
A8R8G8B8_SRGB = 0xD0,
|
2020-07-01 06:28:53 +01:00
|
|
|
A2B10G10R10_UNORM = 0xD1,
|
|
|
|
A2B10G10R10_UINT = 0xD2,
|
|
|
|
A8B8G8R8_UNORM = 0xD5,
|
|
|
|
A8B8G8R8_SRGB = 0xD6,
|
|
|
|
A8B8G8R8_SNORM = 0xD7,
|
|
|
|
A8B8G8R8_SINT = 0xD8,
|
|
|
|
A8B8G8R8_UINT = 0xD9,
|
|
|
|
R16G16_UNORM = 0xDA,
|
|
|
|
R16G16_SNORM = 0xDB,
|
|
|
|
R16G16_SINT = 0xDC,
|
|
|
|
R16G16_UINT = 0xDD,
|
|
|
|
R16G16_FLOAT = 0xDE,
|
2022-11-06 14:19:08 +00:00
|
|
|
A2R10G10B10_UNORM = 0xDF,
|
2020-07-01 06:28:53 +01:00
|
|
|
B10G11R11_FLOAT = 0xE0,
|
2020-02-25 20:19:34 +00:00
|
|
|
R32_SINT = 0xE3,
|
2018-08-13 13:55:16 +01:00
|
|
|
R32_UINT = 0xE4,
|
2018-08-01 14:31:42 +01:00
|
|
|
R32_FLOAT = 0xE5,
|
2022-11-06 10:08:22 +00:00
|
|
|
X8R8G8B8_UNORM = 0xE6,
|
|
|
|
X8R8G8B8_SRGB = 0xE7,
|
2020-07-01 06:28:53 +01:00
|
|
|
R5G6B5_UNORM = 0xE8,
|
|
|
|
A1R5G5B5_UNORM = 0xE9,
|
|
|
|
R8G8_UNORM = 0xEA,
|
|
|
|
R8G8_SNORM = 0xEB,
|
|
|
|
R8G8_SINT = 0xEC,
|
|
|
|
R8G8_UINT = 0xED,
|
2018-08-11 19:01:50 +01:00
|
|
|
R16_UNORM = 0xEE,
|
|
|
|
R16_SNORM = 0xEF,
|
|
|
|
R16_SINT = 0xF0,
|
|
|
|
R16_UINT = 0xF1,
|
2018-07-26 05:19:15 +01:00
|
|
|
R16_FLOAT = 0xF2,
|
2018-07-24 22:47:50 +01:00
|
|
|
R8_UNORM = 0xF3,
|
2020-06-30 07:51:42 +01:00
|
|
|
R8_SNORM = 0xF4,
|
2020-06-30 08:00:23 +01:00
|
|
|
R8_SINT = 0xF5,
|
2018-08-12 02:44:42 +01:00
|
|
|
R8_UINT = 0xF6,
|
2022-08-12 10:58:09 +01:00
|
|
|
|
2022-11-06 14:19:08 +00:00
|
|
|
// A8_UNORM = 0xF7,
|
2022-08-12 10:58:09 +01:00
|
|
|
X1R5G5B5_UNORM = 0xF8,
|
|
|
|
X8B8G8R8_UNORM = 0xF9,
|
|
|
|
X8B8G8R8_SRGB = 0xFA,
|
2022-11-06 14:19:08 +00:00
|
|
|
/*
|
2022-08-12 10:58:09 +01:00
|
|
|
Z1R5G5B5_UNORM = 0xFB,
|
|
|
|
O1R5G5B5_UNORM = 0xFC,
|
|
|
|
Z8R8G8B8_UNORM = 0xFD,
|
|
|
|
O8R8G8B8_UNORM = 0xFE,
|
|
|
|
R32_UNORM = 0xFF,
|
|
|
|
A16_UNORM = 0x40,
|
|
|
|
A16_FLOAT = 0x41,
|
|
|
|
A32_FLOAT = 0x42,
|
|
|
|
A8R8_UNORM = 0x43,
|
|
|
|
R16A16_UNORM = 0x44,
|
|
|
|
R16A16_FLOAT = 0x45,
|
|
|
|
R32A32_FLOAT = 0x46,
|
|
|
|
B8G8R8A8_UNORM = 0x47,
|
|
|
|
*/
|
2018-03-22 21:40:11 +00:00
|
|
|
};
|
|
|
|
|
2018-07-02 18:42:04 +01:00
|
|
|
enum class DepthFormat : u32 {
|
2022-08-12 10:58:09 +01:00
|
|
|
Z32_FLOAT = 0xA,
|
|
|
|
Z16_UNORM = 0x13,
|
|
|
|
Z24_UNORM_S8_UINT = 0x14,
|
|
|
|
X8Z24_UNORM = 0x15,
|
|
|
|
S8Z24_UNORM = 0x16,
|
2021-11-17 20:04:38 +00:00
|
|
|
S8_UINT = 0x17,
|
2022-08-12 10:58:09 +01:00
|
|
|
V8Z24_UNORM = 0x18,
|
|
|
|
Z32_FLOAT_X24S8_UINT = 0x19,
|
|
|
|
/*
|
|
|
|
X8Z24_UNORM_X16V8S8_UINT = 0x1D,
|
|
|
|
Z32_FLOAT_X16V8X8_UINT = 0x1E,
|
|
|
|
Z32_FLOAT_X16V8S8_UINT = 0x1F,
|
|
|
|
*/
|
2018-07-02 18:42:04 +01:00
|
|
|
};
|
|
|
|
|
2018-03-18 20:15:05 +00:00
|
|
|
namespace Engines {
|
|
|
|
class Maxwell3D;
|
2019-01-22 23:49:31 +00:00
|
|
|
class KeplerCompute;
|
2018-03-18 20:15:05 +00:00
|
|
|
} // namespace Engines
|
|
|
|
|
2021-11-05 14:52:31 +00:00
|
|
|
namespace Control {
|
|
|
|
struct ChannelState;
|
|
|
|
}
|
2018-02-12 04:44:12 +00:00
|
|
|
|
2022-01-30 09:31:13 +00:00
|
|
|
namespace Host1x {
|
|
|
|
class Host1x;
|
|
|
|
} // namespace Host1x
|
|
|
|
|
2019-03-04 04:54:16 +00:00
|
|
|
class MemoryManager;
|
|
|
|
|
2020-12-12 06:26:14 +00:00
|
|
|
class GPU final {
|
2018-02-12 04:44:12 +00:00
|
|
|
public:
|
2021-10-01 05:57:02 +01:00
|
|
|
explicit GPU(Core::System& system, bool is_async, bool use_nvdec);
|
2020-12-12 06:26:14 +00:00
|
|
|
~GPU();
|
2020-06-11 04:58:57 +01:00
|
|
|
|
|
|
|
/// Binds a renderer to the GPU.
|
|
|
|
void BindRenderer(std::unique_ptr<VideoCore::RendererBase> renderer);
|
|
|
|
|
2020-04-16 17:29:53 +01:00
|
|
|
/// Flush all current written commands into the host GPU for execution.
|
2019-07-26 19:20:43 +01:00
|
|
|
void FlushCommands();
|
2020-04-16 17:29:53 +01:00
|
|
|
/// Synchronizes CPU writes with Host GPU memory.
|
2022-02-06 00:16:11 +00:00
|
|
|
void InvalidateGPUCache();
|
2020-04-16 17:29:53 +01:00
|
|
|
/// Signal the ending of command list.
|
2020-12-12 06:26:14 +00:00
|
|
|
void OnCommandListEnd();
|
2019-07-26 19:20:43 +01:00
|
|
|
|
2021-11-05 14:52:31 +00:00
|
|
|
std::shared_ptr<Control::ChannelState> AllocateChannel();
|
|
|
|
|
|
|
|
void InitChannel(Control::ChannelState& to_init);
|
|
|
|
|
|
|
|
void BindChannel(s32 channel_id);
|
|
|
|
|
|
|
|
void ReleaseChannel(Control::ChannelState& to_release);
|
|
|
|
|
2022-01-01 21:03:37 +00:00
|
|
|
void InitAddressSpace(Tegra::MemoryManager& memory_manager);
|
|
|
|
|
2020-04-16 17:29:53 +01:00
|
|
|
/// Request a host GPU memory flush from the CPU.
|
2020-11-17 12:14:44 +00:00
|
|
|
[[nodiscard]] u64 RequestFlush(VAddr addr, std::size_t size);
|
2020-02-20 15:55:32 +00:00
|
|
|
|
2020-04-16 17:29:53 +01:00
|
|
|
/// Obtains current flush request fence id.
|
2022-01-30 09:31:13 +00:00
|
|
|
[[nodiscard]] u64 CurrentSyncRequestFence() const;
|
|
|
|
|
|
|
|
void WaitForSyncOperation(u64 fence);
|
2020-02-20 15:55:32 +00:00
|
|
|
|
2020-04-16 17:29:53 +01:00
|
|
|
/// Tick pending requests within the GPU.
|
2020-02-20 15:55:32 +00:00
|
|
|
void TickWork();
|
|
|
|
|
2022-01-30 09:31:13 +00:00
|
|
|
/// Gets a mutable reference to the Host1x interface
|
|
|
|
[[nodiscard]] Host1x::Host1x& Host1x();
|
|
|
|
|
|
|
|
/// Gets an immutable reference to the Host1x interface.
|
|
|
|
[[nodiscard]] const Host1x::Host1x& Host1x() const;
|
|
|
|
|
2018-08-28 15:57:56 +01:00
|
|
|
/// Returns a reference to the Maxwell3D GPU engine.
|
2020-11-17 12:14:44 +00:00
|
|
|
[[nodiscard]] Engines::Maxwell3D& Maxwell3D();
|
2018-08-28 15:57:56 +01:00
|
|
|
|
2018-07-20 23:31:36 +01:00
|
|
|
/// Returns a const reference to the Maxwell3D GPU engine.
|
2020-11-17 12:14:44 +00:00
|
|
|
[[nodiscard]] const Engines::Maxwell3D& Maxwell3D() const;
|
2018-07-20 23:31:36 +01:00
|
|
|
|
2019-07-15 02:25:13 +01:00
|
|
|
/// Returns a reference to the KeplerCompute GPU engine.
|
2020-11-17 12:14:44 +00:00
|
|
|
[[nodiscard]] Engines::KeplerCompute& KeplerCompute();
|
2019-07-15 02:25:13 +01:00
|
|
|
|
|
|
|
/// Returns a reference to the KeplerCompute GPU engine.
|
2020-11-17 12:14:44 +00:00
|
|
|
[[nodiscard]] const Engines::KeplerCompute& KeplerCompute() const;
|
2019-07-15 02:25:13 +01:00
|
|
|
|
2018-11-24 04:20:56 +00:00
|
|
|
/// Returns a reference to the GPU DMA pusher.
|
2020-11-17 12:14:44 +00:00
|
|
|
[[nodiscard]] Tegra::DmaPusher& DmaPusher();
|
2018-11-24 04:20:56 +00:00
|
|
|
|
2020-10-27 03:07:36 +00:00
|
|
|
/// Returns a const reference to the GPU DMA pusher.
|
2020-11-17 12:14:44 +00:00
|
|
|
[[nodiscard]] const Tegra::DmaPusher& DmaPusher() const;
|
2020-10-27 03:07:36 +00:00
|
|
|
|
2020-11-17 12:14:44 +00:00
|
|
|
/// Returns a reference to the underlying renderer.
|
2021-10-01 05:57:02 +01:00
|
|
|
[[nodiscard]] VideoCore::RendererBase& Renderer();
|
2020-03-25 02:58:49 +00:00
|
|
|
|
2020-11-17 12:14:44 +00:00
|
|
|
/// Returns a const reference to the underlying renderer.
|
2021-10-01 05:57:02 +01:00
|
|
|
[[nodiscard]] const VideoCore::RendererBase& Renderer() const;
|
2020-03-25 02:58:49 +00:00
|
|
|
|
2020-11-17 12:14:44 +00:00
|
|
|
/// Returns a reference to the shader notifier.
|
2021-10-01 05:57:02 +01:00
|
|
|
[[nodiscard]] VideoCore::ShaderNotify& ShaderNotify();
|
2020-07-10 04:36:38 +01:00
|
|
|
|
2020-11-17 12:14:44 +00:00
|
|
|
/// Returns a const reference to the shader notifier.
|
2021-10-01 05:57:02 +01:00
|
|
|
[[nodiscard]] const VideoCore::ShaderNotify& ShaderNotify() const;
|
2020-07-10 04:36:38 +01:00
|
|
|
|
2020-11-17 12:14:44 +00:00
|
|
|
[[nodiscard]] u64 GetTicks() const;
|
2020-02-10 14:32:51 +00:00
|
|
|
|
2021-10-01 05:57:02 +01:00
|
|
|
[[nodiscard]] bool IsAsync() const;
|
2019-06-10 13:19:27 +01:00
|
|
|
|
2021-10-01 05:57:02 +01:00
|
|
|
[[nodiscard]] bool UseNvdec() const;
|
2018-11-24 04:20:56 +00:00
|
|
|
|
2021-05-16 01:34:20 +01:00
|
|
|
void RendererFrameEndNotify();
|
|
|
|
|
2022-01-30 09:31:13 +00:00
|
|
|
void RequestSwapBuffers(const Tegra::FramebufferConfig* framebuffer,
|
2022-02-06 00:16:11 +00:00
|
|
|
std::array<Service::Nvidia::NvFence, 4>& fences, size_t num_fences);
|
2022-01-30 09:31:13 +00:00
|
|
|
|
2019-04-09 19:02:00 +01:00
|
|
|
/// Performs any additional setup necessary in order to begin GPU emulation.
|
|
|
|
/// This can be used to launch any necessary threads and register any necessary
|
|
|
|
/// core timing events.
|
2020-12-12 06:26:14 +00:00
|
|
|
void Start();
|
2019-04-09 19:02:00 +01:00
|
|
|
|
2022-01-04 01:31:51 +00:00
|
|
|
/// Performs any additional necessary steps to shutdown GPU emulation.
|
|
|
|
void NotifyShutdown();
|
|
|
|
|
2020-04-03 16:58:43 +01:00
|
|
|
/// Obtain the CPU Context
|
2020-12-12 06:26:14 +00:00
|
|
|
void ObtainContext();
|
2020-04-03 16:58:43 +01:00
|
|
|
|
|
|
|
/// Release the CPU Context
|
2020-12-12 06:26:14 +00:00
|
|
|
void ReleaseContext();
|
2020-04-03 16:58:43 +01:00
|
|
|
|
2019-01-21 20:18:09 +00:00
|
|
|
/// Push GPU command entries to be processed
|
2021-11-05 14:52:31 +00:00
|
|
|
void PushGPUEntries(s32 channel, Tegra::CommandList&& entries);
|
2019-01-21 20:18:09 +00:00
|
|
|
|
2020-10-27 03:07:36 +00:00
|
|
|
/// Push GPU command buffer entries to be processed
|
2021-12-02 04:19:43 +00:00
|
|
|
void PushCommandBuffer(u32 id, Tegra::ChCommandHeaderList& entries);
|
2020-10-27 03:07:36 +00:00
|
|
|
|
2021-04-25 00:22:09 +01:00
|
|
|
/// Frees the CDMAPusher instance to free up resources
|
2021-12-02 04:19:43 +00:00
|
|
|
void ClearCdmaInstance(u32 id);
|
2021-03-30 10:37:40 +01:00
|
|
|
|
2019-01-21 20:18:09 +00:00
|
|
|
/// Swap buffers (render frame)
|
2020-12-12 06:26:14 +00:00
|
|
|
void SwapBuffers(const Tegra::FramebufferConfig* framebuffer);
|
2019-01-30 02:49:18 +00:00
|
|
|
|
2019-01-24 03:17:55 +00:00
|
|
|
/// Notify rasterizer that any caches of the specified region should be flushed to Switch memory
|
2020-12-12 06:26:14 +00:00
|
|
|
void FlushRegion(VAddr addr, u64 size);
|
2019-01-24 03:17:55 +00:00
|
|
|
|
|
|
|
/// Notify rasterizer that any caches of the specified region should be invalidated
|
2020-12-12 06:26:14 +00:00
|
|
|
void InvalidateRegion(VAddr addr, u64 size);
|
2019-01-24 03:17:55 +00:00
|
|
|
|
|
|
|
/// Notify rasterizer that any caches of the specified region should be flushed and invalidated
|
2020-12-12 06:26:14 +00:00
|
|
|
void FlushAndInvalidateRegion(VAddr addr, u64 size);
|
2019-01-24 03:17:55 +00:00
|
|
|
|
2019-02-09 04:21:53 +00:00
|
|
|
private:
|
2021-10-01 05:57:02 +01:00
|
|
|
struct Impl;
|
2021-11-05 14:52:31 +00:00
|
|
|
mutable std::unique_ptr<Impl> impl;
|
2018-02-12 04:44:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Tegra
|