2022-04-23 01:59:50 -07:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-02-11 20:44:12 -08:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
2021-09-30 21:57:02 -07:00
|
|
|
|
|
|
|
#include "common/bit_field.h"
|
2018-02-11 20:44:12 -08:00
|
|
|
#include "common/common_types.h"
|
2021-11-11 19:15:51 -08:00
|
|
|
#include "core/hle/service/nvdrv/nvdata.h"
|
2020-10-26 20:07:36 -07:00
|
|
|
#include "video_core/cdma_pusher.h"
|
2020-12-11 22:26:14 -08:00
|
|
|
#include "video_core/framebuffer_config.h"
|
2018-02-11 20:44:12 -08:00
|
|
|
|
2019-02-15 19:05:17 -08:00
|
|
|
namespace Core {
|
2020-03-24 19:58:49 -07:00
|
|
|
class System;
|
|
|
|
} // namespace Core
|
2019-02-15 19:05:17 -08:00
|
|
|
|
2018-08-03 09:55:58 -07:00
|
|
|
namespace VideoCore {
|
2019-01-07 20:32:02 -08:00
|
|
|
class RendererBase;
|
2020-07-09 20:36:38 -07:00
|
|
|
class ShaderNotify;
|
2019-01-07 20:32:02 -08:00
|
|
|
} // namespace VideoCore
|
2018-08-03 09:55:58 -07:00
|
|
|
|
2018-02-11 20:44:12 -08:00
|
|
|
namespace Tegra {
|
2021-09-30 21:57:02 -07:00
|
|
|
class DmaPusher;
|
|
|
|
struct CommandList;
|
2018-02-11 20:44:12 -08:00
|
|
|
|
2022-08-12 02:58:09 -07:00
|
|
|
// TODO: Implement the commented ones
|
2018-03-23 21:45:24 -07:00
|
|
|
enum class RenderTargetFormat : u32 {
|
2018-03-25 14:57:53 -07:00
|
|
|
NONE = 0x0,
|
2020-06-30 22:28:53 -07:00
|
|
|
R32B32G32A32_FLOAT = 0xC0,
|
|
|
|
R32G32B32A32_SINT = 0xC1,
|
|
|
|
R32G32B32A32_UINT = 0xC2,
|
2022-08-12 02:58:09 -07:00
|
|
|
// R32G32B32X32_FLOAT = 0xC3,
|
|
|
|
// R32G32B32X32_SINT = 0xC4,
|
|
|
|
// R32G32B32X32_UINT = 0xC5,
|
2020-06-30 22:28:53 -07: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 02:58:09 -07:00
|
|
|
A8R8G8B8_UNORM = 0xCF,
|
|
|
|
A8R8G8B8_SRGB = 0xD0,
|
2020-06-30 22:28:53 -07: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-08-12 02:58:09 -07:00
|
|
|
// A2R10G10B10_UNORM = 0xDF,
|
2020-06-30 22:28:53 -07:00
|
|
|
B10G11R11_FLOAT = 0xE0,
|
2020-02-25 12:19:34 -08:00
|
|
|
R32_SINT = 0xE3,
|
2018-08-13 05:55:16 -07:00
|
|
|
R32_UINT = 0xE4,
|
2018-08-01 06:31:42 -07:00
|
|
|
R32_FLOAT = 0xE5,
|
2022-08-12 02:58:09 -07:00
|
|
|
// X8R8G8B8_UNORM = 0xE6,
|
|
|
|
// X8R8G8B8_SRGB = 0xE7,
|
2020-06-30 22:28:53 -07:00
|
|
|
R5G6B5_UNORM = 0xE8,
|
|
|
|
A1R5G5B5_UNORM = 0xE9,
|
|
|
|
R8G8_UNORM = 0xEA,
|
|
|
|
R8G8_SNORM = 0xEB,
|
|
|
|
R8G8_SINT = 0xEC,
|
|
|
|
R8G8_UINT = 0xED,
|
2018-08-11 11:01:50 -07:00
|
|
|
R16_UNORM = 0xEE,
|
|
|
|
R16_SNORM = 0xEF,
|
|
|
|
R16_SINT = 0xF0,
|
|
|
|
R16_UINT = 0xF1,
|
2018-07-25 21:19:15 -07:00
|
|
|
R16_FLOAT = 0xF2,
|
2018-07-24 14:47:50 -07:00
|
|
|
R8_UNORM = 0xF3,
|
2020-06-29 23:51:42 -07:00
|
|
|
R8_SNORM = 0xF4,
|
2020-06-30 00:00:23 -07:00
|
|
|
R8_SINT = 0xF5,
|
2018-08-11 18:44:42 -07:00
|
|
|
R8_UINT = 0xF6,
|
2022-08-12 02:58:09 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
A8_UNORM = 0xF7,
|
|
|
|
X1R5G5B5_UNORM = 0xF8,
|
|
|
|
X8B8G8R8_UNORM = 0xF9,
|
|
|
|
X8B8G8R8_SRGB = 0xFA,
|
|
|
|
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 14:40:11 -07:00
|
|
|
};
|
|
|
|
|
2018-07-02 10:42:04 -07:00
|
|
|
enum class DepthFormat : u32 {
|
2022-08-12 02:58:09 -07:00
|
|
|
Z32_FLOAT = 0xA,
|
|
|
|
Z16_UNORM = 0x13,
|
|
|
|
Z24_UNORM_S8_UINT = 0x14,
|
|
|
|
X8Z24_UNORM = 0x15,
|
|
|
|
S8Z24_UNORM = 0x16,
|
2021-11-17 12:04:38 -08:00
|
|
|
S8_UINT = 0x17,
|
2022-08-12 02:58:09 -07: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 10:42:04 -07:00
|
|
|
};
|
|
|
|
|
2018-03-18 13:15:05 -07:00
|
|
|
namespace Engines {
|
|
|
|
class Maxwell3D;
|
2019-01-22 15:49:31 -08:00
|
|
|
class KeplerCompute;
|
2018-03-18 13:15:05 -07:00
|
|
|
} // namespace Engines
|
|
|
|
|
2021-11-05 07:52:31 -07:00
|
|
|
namespace Control {
|
|
|
|
struct ChannelState;
|
|
|
|
}
|
2018-02-11 20:44:12 -08:00
|
|
|
|
2022-01-30 01:31:13 -08:00
|
|
|
namespace Host1x {
|
|
|
|
class Host1x;
|
|
|
|
} // namespace Host1x
|
|
|
|
|
2019-03-03 20:54:16 -08:00
|
|
|
class MemoryManager;
|
|
|
|
|
2020-12-11 22:26:14 -08:00
|
|
|
class GPU final {
|
2018-02-11 20:44:12 -08:00
|
|
|
public:
|
2021-09-30 21:57:02 -07:00
|
|
|
explicit GPU(Core::System& system, bool is_async, bool use_nvdec);
|
2020-12-11 22:26:14 -08:00
|
|
|
~GPU();
|
2020-06-10 20:58:57 -07:00
|
|
|
|
|
|
|
/// Binds a renderer to the GPU.
|
|
|
|
void BindRenderer(std::unique_ptr<VideoCore::RendererBase> renderer);
|
|
|
|
|
2020-04-16 09:29:53 -07:00
|
|
|
/// Flush all current written commands into the host GPU for execution.
|
2019-07-26 11:20:43 -07:00
|
|
|
void FlushCommands();
|
2020-04-16 09:29:53 -07:00
|
|
|
/// Synchronizes CPU writes with Host GPU memory.
|
2022-02-05 16:16:11 -08:00
|
|
|
void InvalidateGPUCache();
|
2020-04-16 09:29:53 -07:00
|
|
|
/// Signal the ending of command list.
|
2020-12-11 22:26:14 -08:00
|
|
|
void OnCommandListEnd();
|
2019-07-26 11:20:43 -07:00
|
|
|
|
2021-11-05 07:52:31 -07: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 13:03:37 -08:00
|
|
|
void InitAddressSpace(Tegra::MemoryManager& memory_manager);
|
|
|
|
|
2020-04-16 09:29:53 -07:00
|
|
|
/// Request a host GPU memory flush from the CPU.
|
2020-11-17 04:14:44 -08:00
|
|
|
[[nodiscard]] u64 RequestFlush(VAddr addr, std::size_t size);
|
2020-02-20 07:55:32 -08:00
|
|
|
|
2020-04-16 09:29:53 -07:00
|
|
|
/// Obtains current flush request fence id.
|
2022-01-30 01:31:13 -08:00
|
|
|
[[nodiscard]] u64 CurrentSyncRequestFence() const;
|
|
|
|
|
|
|
|
void WaitForSyncOperation(u64 fence);
|
2020-02-20 07:55:32 -08:00
|
|
|
|
2020-04-16 09:29:53 -07:00
|
|
|
/// Tick pending requests within the GPU.
|
2020-02-20 07:55:32 -08:00
|
|
|
void TickWork();
|
|
|
|
|
2022-01-30 01:31:13 -08: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 07:57:56 -07:00
|
|
|
/// Returns a reference to the Maxwell3D GPU engine.
|
2020-11-17 04:14:44 -08:00
|
|
|
[[nodiscard]] Engines::Maxwell3D& Maxwell3D();
|
2018-08-28 07:57:56 -07:00
|
|
|
|
2018-07-20 15:31:36 -07:00
|
|
|
/// Returns a const reference to the Maxwell3D GPU engine.
|
2020-11-17 04:14:44 -08:00
|
|
|
[[nodiscard]] const Engines::Maxwell3D& Maxwell3D() const;
|
2018-07-20 15:31:36 -07:00
|
|
|
|
2019-07-14 18:25:13 -07:00
|
|
|
/// Returns a reference to the KeplerCompute GPU engine.
|
2020-11-17 04:14:44 -08:00
|
|
|
[[nodiscard]] Engines::KeplerCompute& KeplerCompute();
|
2019-07-14 18:25:13 -07:00
|
|
|
|
|
|
|
/// Returns a reference to the KeplerCompute GPU engine.
|
2020-11-17 04:14:44 -08:00
|
|
|
[[nodiscard]] const Engines::KeplerCompute& KeplerCompute() const;
|
2019-07-14 18:25:13 -07:00
|
|
|
|
2018-11-23 20:20:56 -08:00
|
|
|
/// Returns a reference to the GPU DMA pusher.
|
2020-11-17 04:14:44 -08:00
|
|
|
[[nodiscard]] Tegra::DmaPusher& DmaPusher();
|
2018-11-23 20:20:56 -08:00
|
|
|
|
2020-10-26 20:07:36 -07:00
|
|
|
/// Returns a const reference to the GPU DMA pusher.
|
2020-11-17 04:14:44 -08:00
|
|
|
[[nodiscard]] const Tegra::DmaPusher& DmaPusher() const;
|
2020-10-26 20:07:36 -07:00
|
|
|
|
2020-11-17 04:14:44 -08:00
|
|
|
/// Returns a reference to the underlying renderer.
|
2021-09-30 21:57:02 -07:00
|
|
|
[[nodiscard]] VideoCore::RendererBase& Renderer();
|
2020-03-24 19:58:49 -07:00
|
|
|
|
2020-11-17 04:14:44 -08:00
|
|
|
/// Returns a const reference to the underlying renderer.
|
2021-09-30 21:57:02 -07:00
|
|
|
[[nodiscard]] const VideoCore::RendererBase& Renderer() const;
|
2020-03-24 19:58:49 -07:00
|
|
|
|
2020-11-17 04:14:44 -08:00
|
|
|
/// Returns a reference to the shader notifier.
|
2021-09-30 21:57:02 -07:00
|
|
|
[[nodiscard]] VideoCore::ShaderNotify& ShaderNotify();
|
2020-07-09 20:36:38 -07:00
|
|
|
|
2020-11-17 04:14:44 -08:00
|
|
|
/// Returns a const reference to the shader notifier.
|
2021-09-30 21:57:02 -07:00
|
|
|
[[nodiscard]] const VideoCore::ShaderNotify& ShaderNotify() const;
|
2020-07-09 20:36:38 -07:00
|
|
|
|
2020-11-17 04:14:44 -08:00
|
|
|
[[nodiscard]] u64 GetTicks() const;
|
2020-02-10 06:32:51 -08:00
|
|
|
|
2021-09-30 21:57:02 -07:00
|
|
|
[[nodiscard]] bool IsAsync() const;
|
2019-06-10 05:19:27 -07:00
|
|
|
|
2021-09-30 21:57:02 -07:00
|
|
|
[[nodiscard]] bool UseNvdec() const;
|
2018-11-23 20:20:56 -08:00
|
|
|
|
2021-05-15 17:34:20 -07:00
|
|
|
void RendererFrameEndNotify();
|
|
|
|
|
2022-01-30 01:31:13 -08:00
|
|
|
void RequestSwapBuffers(const Tegra::FramebufferConfig* framebuffer,
|
2022-02-05 16:16:11 -08:00
|
|
|
std::array<Service::Nvidia::NvFence, 4>& fences, size_t num_fences);
|
2022-01-30 01:31:13 -08:00
|
|
|
|
2019-04-09 11:02:00 -07: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-11 22:26:14 -08:00
|
|
|
void Start();
|
2019-04-09 11:02:00 -07:00
|
|
|
|
2022-01-03 17:31:51 -08:00
|
|
|
/// Performs any additional necessary steps to shutdown GPU emulation.
|
|
|
|
void NotifyShutdown();
|
|
|
|
|
2020-04-03 08:58:43 -07:00
|
|
|
/// Obtain the CPU Context
|
2020-12-11 22:26:14 -08:00
|
|
|
void ObtainContext();
|
2020-04-03 08:58:43 -07:00
|
|
|
|
|
|
|
/// Release the CPU Context
|
2020-12-11 22:26:14 -08:00
|
|
|
void ReleaseContext();
|
2020-04-03 08:58:43 -07:00
|
|
|
|
2019-01-21 12:18:09 -08:00
|
|
|
/// Push GPU command entries to be processed
|
2021-11-05 07:52:31 -07:00
|
|
|
void PushGPUEntries(s32 channel, Tegra::CommandList&& entries);
|
2019-01-21 12:18:09 -08:00
|
|
|
|
2020-10-26 20:07:36 -07:00
|
|
|
/// Push GPU command buffer entries to be processed
|
2021-12-01 20:19:43 -08:00
|
|
|
void PushCommandBuffer(u32 id, Tegra::ChCommandHeaderList& entries);
|
2020-10-26 20:07:36 -07:00
|
|
|
|
2021-04-24 16:22:09 -07:00
|
|
|
/// Frees the CDMAPusher instance to free up resources
|
2021-12-01 20:19:43 -08:00
|
|
|
void ClearCdmaInstance(u32 id);
|
2021-03-30 02:37:40 -07:00
|
|
|
|
2019-01-21 12:18:09 -08:00
|
|
|
/// Swap buffers (render frame)
|
2020-12-11 22:26:14 -08:00
|
|
|
void SwapBuffers(const Tegra::FramebufferConfig* framebuffer);
|
2019-01-29 18:49:18 -08:00
|
|
|
|
2019-01-23 19:17:55 -08:00
|
|
|
/// Notify rasterizer that any caches of the specified region should be flushed to Switch memory
|
2020-12-11 22:26:14 -08:00
|
|
|
void FlushRegion(VAddr addr, u64 size);
|
2019-01-23 19:17:55 -08:00
|
|
|
|
|
|
|
/// Notify rasterizer that any caches of the specified region should be invalidated
|
2020-12-11 22:26:14 -08:00
|
|
|
void InvalidateRegion(VAddr addr, u64 size);
|
2019-01-23 19:17:55 -08:00
|
|
|
|
|
|
|
/// Notify rasterizer that any caches of the specified region should be flushed and invalidated
|
2020-12-11 22:26:14 -08:00
|
|
|
void FlushAndInvalidateRegion(VAddr addr, u64 size);
|
2019-01-23 19:17:55 -08:00
|
|
|
|
2019-02-08 20:21:53 -08:00
|
|
|
private:
|
2021-09-30 21:57:02 -07:00
|
|
|
struct Impl;
|
2021-11-05 07:52:31 -07:00
|
|
|
mutable std::unique_ptr<Impl> impl;
|
2018-02-11 20:44:12 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Tegra
|