2014-04-16 05:03:41 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
2014-04-17 01:46:05 +01:00
|
|
|
// Namespace GSP_GPU
|
2014-04-16 05:03:41 +01:00
|
|
|
|
|
|
|
namespace GSP_GPU {
|
|
|
|
|
2014-05-17 21:26:45 +01:00
|
|
|
enum class GXCommandId : u32 {
|
|
|
|
REQUEST_DMA = 0x00000000,
|
|
|
|
SET_COMMAND_LIST_LAST = 0x00000001,
|
|
|
|
SET_MEMORY_FILL = 0x00000002, // TODO: Confirm? (lictru uses 0x01000102)
|
|
|
|
SET_DISPLAY_TRANSFER = 0x00000003,
|
|
|
|
SET_TEXTURE_COPY = 0x00000004,
|
|
|
|
SET_COMMAND_LIST_FIRST = 0x00000005,
|
|
|
|
};
|
|
|
|
|
|
|
|
union GXCommand {
|
|
|
|
struct {
|
|
|
|
GXCommandId id;
|
|
|
|
};
|
|
|
|
|
|
|
|
u32 data[0x20];
|
|
|
|
};
|
|
|
|
|
2014-04-17 01:46:05 +01:00
|
|
|
/// Interface to "srv:" service
|
2014-04-16 05:03:41 +01:00
|
|
|
class Interface : public Service::Interface {
|
|
|
|
public:
|
|
|
|
|
|
|
|
Interface();
|
|
|
|
|
|
|
|
~Interface();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the string port name used by CTROS for the service
|
|
|
|
* @return Port name of service
|
|
|
|
*/
|
2014-05-19 02:43:29 +01:00
|
|
|
const char *GetPortName() const {
|
2014-04-16 05:03:41 +01:00
|
|
|
return "gsp::Gpu";
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|