2012-11-06 16:05:27 +00:00
|
|
|
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2013-12-30 09:49:05 +00:00
|
|
|
#include <list>
|
|
|
|
#include <string>
|
2015-07-29 09:48:20 +00:00
|
|
|
#include <vector>
|
2013-12-30 09:49:05 +00:00
|
|
|
|
2017-08-31 15:13:18 +00:00
|
|
|
#include "Common/Swap.h"
|
2015-07-26 20:38:40 +00:00
|
|
|
#include "GPU/GPU.h"
|
2014-03-29 23:51:38 +00:00
|
|
|
#include "Core/MemMap.h"
|
2015-07-29 09:48:20 +00:00
|
|
|
#include "GPU/ge_constants.h"
|
2015-10-14 15:45:21 +00:00
|
|
|
#include "GPU/Common/ShaderCommon.h"
|
2012-12-28 20:58:00 +00:00
|
|
|
|
2014-03-29 23:51:38 +00:00
|
|
|
struct PspGeListArgs;
|
2015-07-29 09:48:20 +00:00
|
|
|
struct GPUgstate;
|
2013-02-04 04:31:46 +00:00
|
|
|
class PointerWrap;
|
|
|
|
|
2013-08-07 20:32:04 +00:00
|
|
|
enum DisplayListStatus {
|
|
|
|
// The list has been completed
|
|
|
|
PSP_GE_LIST_COMPLETED = 0,
|
|
|
|
// The list is queued but not executed yet
|
|
|
|
PSP_GE_LIST_QUEUED = 1,
|
|
|
|
// The list is currently being executed
|
|
|
|
PSP_GE_LIST_DRAWING = 2,
|
|
|
|
// The list was stopped because it encountered stall address
|
|
|
|
PSP_GE_LIST_STALLING = 3,
|
|
|
|
// The list is paused because of a signal or sceGeBreak
|
|
|
|
PSP_GE_LIST_PAUSED = 4,
|
2013-04-04 06:05:54 +00:00
|
|
|
};
|
|
|
|
|
2013-08-07 20:32:04 +00:00
|
|
|
enum DisplayListState {
|
|
|
|
// No state assigned, the list is empty
|
|
|
|
PSP_GE_DL_STATE_NONE = 0,
|
|
|
|
// The list has been queued
|
|
|
|
PSP_GE_DL_STATE_QUEUED = 1,
|
|
|
|
// The list is being executed
|
|
|
|
PSP_GE_DL_STATE_RUNNING = 2,
|
|
|
|
// The list was completed and will be removed
|
|
|
|
PSP_GE_DL_STATE_COMPLETED = 3,
|
|
|
|
// The list has been paused by a signal
|
|
|
|
PSP_GE_DL_STATE_PAUSED = 4,
|
2012-12-28 20:58:00 +00:00
|
|
|
};
|
|
|
|
|
2015-07-26 20:38:40 +00:00
|
|
|
enum SignalBehavior {
|
2013-04-02 06:54:19 +00:00
|
|
|
PSP_GE_SIGNAL_NONE = 0x00,
|
|
|
|
PSP_GE_SIGNAL_HANDLER_SUSPEND = 0x01,
|
|
|
|
PSP_GE_SIGNAL_HANDLER_CONTINUE = 0x02,
|
|
|
|
PSP_GE_SIGNAL_HANDLER_PAUSE = 0x03,
|
|
|
|
PSP_GE_SIGNAL_SYNC = 0x08,
|
|
|
|
PSP_GE_SIGNAL_JUMP = 0x10,
|
|
|
|
PSP_GE_SIGNAL_CALL = 0x11,
|
|
|
|
PSP_GE_SIGNAL_RET = 0x12,
|
|
|
|
PSP_GE_SIGNAL_RJUMP = 0x13,
|
|
|
|
PSP_GE_SIGNAL_RCALL = 0x14,
|
|
|
|
PSP_GE_SIGNAL_OJUMP = 0x15,
|
|
|
|
PSP_GE_SIGNAL_OCALL = 0x16,
|
|
|
|
|
|
|
|
PSP_GE_SIGNAL_RTBP0 = 0x20,
|
|
|
|
PSP_GE_SIGNAL_RTBP1 = 0x21,
|
|
|
|
PSP_GE_SIGNAL_RTBP2 = 0x22,
|
|
|
|
PSP_GE_SIGNAL_RTBP3 = 0x23,
|
|
|
|
PSP_GE_SIGNAL_RTBP4 = 0x24,
|
|
|
|
PSP_GE_SIGNAL_RTBP5 = 0x25,
|
|
|
|
PSP_GE_SIGNAL_RTBP6 = 0x26,
|
|
|
|
PSP_GE_SIGNAL_RTBP7 = 0x27,
|
|
|
|
PSP_GE_SIGNAL_OTBP0 = 0x28,
|
|
|
|
PSP_GE_SIGNAL_OTBP1 = 0x29,
|
|
|
|
PSP_GE_SIGNAL_OTBP2 = 0x2A,
|
|
|
|
PSP_GE_SIGNAL_OTBP3 = 0x2B,
|
|
|
|
PSP_GE_SIGNAL_OTBP4 = 0x2C,
|
|
|
|
PSP_GE_SIGNAL_OTBP5 = 0x2D,
|
|
|
|
PSP_GE_SIGNAL_OTBP6 = 0x2E,
|
|
|
|
PSP_GE_SIGNAL_OTBP7 = 0x2F,
|
|
|
|
PSP_GE_SIGNAL_RCBP = 0x30,
|
|
|
|
PSP_GE_SIGNAL_OCBP = 0x38,
|
|
|
|
PSP_GE_SIGNAL_BREAK1 = 0xF0,
|
|
|
|
PSP_GE_SIGNAL_BREAK2 = 0xFF,
|
|
|
|
};
|
|
|
|
|
2015-07-26 20:38:40 +00:00
|
|
|
enum GPURunState {
|
2013-04-04 08:07:30 +00:00
|
|
|
GPUSTATE_RUNNING = 0,
|
|
|
|
GPUSTATE_DONE = 1,
|
|
|
|
GPUSTATE_STALL = 2,
|
|
|
|
GPUSTATE_INTERRUPT = 3,
|
|
|
|
GPUSTATE_ERROR = 4,
|
|
|
|
};
|
2013-02-17 00:06:06 +00:00
|
|
|
|
2015-07-26 20:38:40 +00:00
|
|
|
enum GPUSyncType {
|
2014-03-29 23:51:38 +00:00
|
|
|
GPU_SYNC_DRAW,
|
|
|
|
GPU_SYNC_LIST,
|
|
|
|
};
|
|
|
|
|
2013-02-17 00:06:06 +00:00
|
|
|
// Used for debug
|
2015-07-26 20:38:40 +00:00
|
|
|
struct FramebufferInfo {
|
2013-02-17 00:06:06 +00:00
|
|
|
u32 fb_address;
|
|
|
|
u32 z_address;
|
|
|
|
int format;
|
|
|
|
u32 width;
|
|
|
|
u32 height;
|
|
|
|
void* fbo;
|
|
|
|
};
|
|
|
|
|
2015-07-26 20:38:40 +00:00
|
|
|
struct DisplayListStackEntry {
|
2013-04-16 06:02:54 +00:00
|
|
|
u32 pc;
|
|
|
|
u32 offsetAddr;
|
2013-09-21 07:07:49 +00:00
|
|
|
u32 baseAddr;
|
2013-04-16 06:02:54 +00:00
|
|
|
};
|
|
|
|
|
2015-07-26 20:38:40 +00:00
|
|
|
struct DisplayList {
|
2012-12-28 20:58:00 +00:00
|
|
|
int id;
|
2013-02-10 15:36:06 +00:00
|
|
|
u32 startpc;
|
2012-12-28 20:58:00 +00:00
|
|
|
u32 pc;
|
|
|
|
u32 stall;
|
2013-04-04 06:05:54 +00:00
|
|
|
DisplayListState state;
|
2013-04-02 06:54:19 +00:00
|
|
|
SignalBehavior signal;
|
2012-12-22 06:50:35 +00:00
|
|
|
int subIntrBase;
|
2013-02-03 23:41:16 +00:00
|
|
|
u16 subIntrToken;
|
2013-04-16 06:02:54 +00:00
|
|
|
DisplayListStackEntry stack[32];
|
2013-04-01 06:28:35 +00:00
|
|
|
int stackptr;
|
2013-04-04 07:35:38 +00:00
|
|
|
bool interrupted;
|
2013-04-07 19:45:42 +00:00
|
|
|
u64 waitTicks;
|
2013-08-07 06:59:28 +00:00
|
|
|
bool interruptsEnabled;
|
2013-09-01 17:16:29 +00:00
|
|
|
bool pendingInterrupt;
|
2013-09-20 16:42:09 +00:00
|
|
|
bool started;
|
2013-10-07 05:07:57 +00:00
|
|
|
PSPPointer<u32_le> context;
|
2013-09-22 03:47:35 +00:00
|
|
|
u32 offsetAddr;
|
2013-09-24 10:59:34 +00:00
|
|
|
bool bboxResult;
|
2014-08-17 08:52:06 +00:00
|
|
|
u32 stackAddr;
|
2015-10-11 12:38:26 +00:00
|
|
|
|
|
|
|
u32 padding; // Android x86-32 does not round the structure size up to the closest multiple of 8 like the other platforms.
|
2012-12-28 20:58:00 +00:00
|
|
|
};
|
2012-11-06 16:05:27 +00:00
|
|
|
|
2013-05-06 05:52:01 +00:00
|
|
|
enum GPUInvalidationType {
|
|
|
|
// Affects all memory. Not considered highly.
|
|
|
|
GPU_INVALIDATE_ALL,
|
|
|
|
// Indicates some memory may have changed.
|
|
|
|
GPU_INVALIDATE_HINT,
|
|
|
|
// Reliable invalidation (where any hashing, etc. is unneeded, it'll always invalidate.)
|
|
|
|
GPU_INVALIDATE_SAFE,
|
|
|
|
};
|
|
|
|
|
2017-02-06 10:55:54 +00:00
|
|
|
namespace Draw {
|
|
|
|
class DrawContext;
|
|
|
|
}
|
|
|
|
|
2013-10-22 12:34:16 +00:00
|
|
|
class GPUInterface {
|
2012-11-06 16:05:27 +00:00
|
|
|
public:
|
2012-11-19 20:23:29 +00:00
|
|
|
virtual ~GPUInterface() {}
|
|
|
|
|
2013-04-05 06:19:28 +00:00
|
|
|
static const int DisplayListMaxCount = 64;
|
|
|
|
|
2017-02-06 10:55:54 +00:00
|
|
|
virtual Draw::DrawContext *GetDrawContext() = 0;
|
|
|
|
|
2012-11-19 20:23:29 +00:00
|
|
|
// Initialization
|
2017-12-03 18:54:38 +00:00
|
|
|
virtual bool IsReady() = 0;
|
2018-10-31 03:32:12 +00:00
|
|
|
virtual void CancelReady() = 0;
|
2012-11-20 09:59:23 +00:00
|
|
|
virtual void InitClear() = 0;
|
2013-11-28 23:34:41 +00:00
|
|
|
virtual void Reinitialize() = 0;
|
2012-11-19 20:23:29 +00:00
|
|
|
|
2016-01-06 22:53:21 +00:00
|
|
|
// Frame managment
|
|
|
|
virtual void BeginHostFrame() = 0;
|
|
|
|
virtual void EndHostFrame() = 0;
|
|
|
|
|
2012-11-19 20:23:29 +00:00
|
|
|
// Draw queue management
|
2013-02-03 23:41:16 +00:00
|
|
|
virtual DisplayList* getList(int listid) = 0;
|
2012-11-28 12:45:22 +00:00
|
|
|
// TODO: Much of this should probably be shared between the different GPU implementations.
|
2013-09-20 16:42:09 +00:00
|
|
|
virtual u32 EnqueueList(u32 listpc, u32 stall, int subIntrBase, PSPPointer<PspGeListArgs> args, bool head) = 0;
|
2013-04-01 06:23:03 +00:00
|
|
|
virtual u32 DequeueList(int listid) = 0;
|
2013-04-05 06:19:28 +00:00
|
|
|
virtual u32 UpdateStall(int listid, u32 newstall) = 0;
|
2013-04-01 06:23:03 +00:00
|
|
|
virtual u32 DrawSync(int mode) = 0;
|
2013-04-05 06:19:28 +00:00
|
|
|
virtual int ListSync(int listid, int mode) = 0;
|
2013-04-01 06:23:03 +00:00
|
|
|
virtual u32 Continue() = 0;
|
|
|
|
virtual u32 Break(int mode) = 0;
|
2013-09-21 17:03:49 +00:00
|
|
|
virtual int GetStack(int index, u32 stackPtr) = 0;
|
2012-12-25 12:47:59 +00:00
|
|
|
|
2013-04-06 15:19:54 +00:00
|
|
|
virtual void InterruptStart(int listid) = 0;
|
|
|
|
virtual void InterruptEnd(int listid) = 0;
|
2014-03-29 23:51:38 +00:00
|
|
|
virtual void SyncEnd(GPUSyncType waitType, int listid, bool wokeThreads) = 0;
|
2013-02-03 23:41:16 +00:00
|
|
|
|
2012-12-29 01:10:29 +00:00
|
|
|
virtual void PreExecuteOp(u32 op, u32 diff) = 0;
|
2012-11-06 16:05:27 +00:00
|
|
|
virtual void ExecuteOp(u32 op, u32 diff) = 0;
|
2012-12-28 20:58:00 +00:00
|
|
|
virtual bool InterpretList(DisplayList& list) = 0;
|
2012-11-18 12:04:49 +00:00
|
|
|
|
2012-11-19 20:23:29 +00:00
|
|
|
// Framebuffer management
|
2013-07-30 06:05:59 +00:00
|
|
|
virtual void SetDisplayFramebuffer(u32 framebuf, u32 stride, GEBufferFormat format) = 0;
|
2012-11-19 20:23:29 +00:00
|
|
|
virtual void BeginFrame() = 0; // Can be a good place to draw the "memory" framebuffer for accelerated plugins
|
|
|
|
virtual void CopyDisplayToOutput() = 0;
|
|
|
|
|
2012-11-26 16:35:08 +00:00
|
|
|
// Tells the GPU to update the gpuStats structure.
|
2016-03-31 08:17:02 +00:00
|
|
|
virtual void GetStats(char *buffer, size_t bufsize) = 0;
|
2012-11-26 16:35:08 +00:00
|
|
|
|
2012-12-21 22:43:48 +00:00
|
|
|
// Invalidate any cached content sourced from the specified range.
|
|
|
|
// If size = -1, invalidate everything.
|
2013-05-06 05:52:01 +00:00
|
|
|
virtual void InvalidateCache(u32 addr, int size, GPUInvalidationType type) = 0;
|
2016-01-17 20:43:13 +00:00
|
|
|
virtual void NotifyVideoUpload(u32 addr, int size, int width, int format) = 0;
|
2013-06-09 08:21:50 +00:00
|
|
|
// Update either RAM from VRAM, or VRAM from RAM... or even VRAM from VRAM.
|
2014-05-27 08:14:29 +00:00
|
|
|
virtual bool PerformMemoryCopy(u32 dest, u32 src, int size) = 0;
|
|
|
|
virtual bool PerformMemorySet(u32 dest, u8 v, int size) = 0;
|
2014-05-31 06:33:50 +00:00
|
|
|
virtual bool PerformMemoryDownload(u32 dest, int size) = 0;
|
2014-06-10 07:45:03 +00:00
|
|
|
virtual bool PerformMemoryUpload(u32 dest, int size) = 0;
|
2014-06-01 01:24:35 +00:00
|
|
|
virtual bool PerformStencilUpload(u32 dest, int size) = 0;
|
2012-12-21 22:43:48 +00:00
|
|
|
|
2013-04-30 15:20:28 +00:00
|
|
|
// Will cause the texture cache to be cleared at the start of the next frame.
|
|
|
|
virtual void ClearCacheNextFrame() = 0;
|
|
|
|
|
2012-11-18 12:04:49 +00:00
|
|
|
// Internal hack to avoid interrupts from "PPGe" drawing (utility UI, etc)
|
|
|
|
virtual void EnableInterrupts(bool enable) = 0;
|
2012-12-21 22:54:38 +00:00
|
|
|
|
2012-12-25 14:28:34 +00:00
|
|
|
virtual void DeviceLost() = 0;
|
2016-09-11 03:29:58 +00:00
|
|
|
virtual void DeviceRestore() = 0;
|
2013-08-04 22:15:50 +00:00
|
|
|
virtual void ReapplyGfxState() = 0;
|
2012-12-29 19:41:33 +00:00
|
|
|
virtual void DoState(PointerWrap &p) = 0;
|
2012-12-26 23:18:45 +00:00
|
|
|
|
2013-01-26 23:15:39 +00:00
|
|
|
// Called by the window system if the window size changed. This will be reflected in PSPCoreParam.pixel*.
|
|
|
|
virtual void Resized() = 0;
|
2013-10-22 12:34:16 +00:00
|
|
|
virtual void ClearShaderCache() = 0;
|
2014-06-23 04:42:29 +00:00
|
|
|
virtual void CleanupBeforeUI() = 0;
|
2013-03-03 12:00:21 +00:00
|
|
|
virtual bool FramebufferDirty() = 0;
|
2013-08-15 23:00:26 +00:00
|
|
|
virtual bool FramebufferReallyDirty() = 0;
|
2013-09-22 02:31:54 +00:00
|
|
|
virtual bool BusyDrawing() = 0;
|
2013-01-26 23:15:39 +00:00
|
|
|
|
2013-12-01 02:39:16 +00:00
|
|
|
// If any jit is being used inside the GPU.
|
|
|
|
virtual bool DescribeCodePtr(const u8 *ptr, std::string &name) = 0;
|
|
|
|
|
2012-12-26 23:18:45 +00:00
|
|
|
// Debugging
|
|
|
|
virtual void DumpNextFrame() = 0;
|
2013-04-29 07:30:54 +00:00
|
|
|
virtual void GetReportingInfo(std::string &primaryInfo, std::string &fullInfo) = 0;
|
2013-04-05 06:19:28 +00:00
|
|
|
virtual const std::list<int>& GetDisplayLists() = 0;
|
2018-06-03 18:09:18 +00:00
|
|
|
// TODO: Currently Qt only, needs to be cleaned up.
|
2013-02-17 00:06:06 +00:00
|
|
|
virtual std::vector<FramebufferInfo> GetFramebufferList() = 0;
|
2017-06-03 21:13:37 +00:00
|
|
|
virtual s64 GetListTicks(int listid) = 0;
|
2015-10-14 15:45:21 +00:00
|
|
|
|
|
|
|
// For debugging. The IDs returned are opaque, do not poke in them or display them in any way.
|
|
|
|
virtual std::vector<std::string> DebugGetShaderIDs(DebugShaderType type) = 0;
|
|
|
|
virtual std::string DebugGetShaderString(std::string id, DebugShaderType type, DebugShaderStringType stringType) = 0;
|
2012-11-06 16:05:27 +00:00
|
|
|
};
|