mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-31 22:00:10 +01:00
implement hdd device stub implement /dev/console rw remove dup2 hack fix altstack after execve
71 lines
1.9 KiB
C++
71 lines
1.9 KiB
C++
#include "io-device.hpp"
|
|
#include "orbis/KernelAllocator.hpp"
|
|
#include "orbis/error/ErrorCode.hpp"
|
|
#include "orbis/file.hpp"
|
|
#include "orbis/thread/Thread.hpp"
|
|
#include "orbis/uio.hpp"
|
|
#include "orbis/utils/Logs.hpp"
|
|
#include <span>
|
|
|
|
struct HddFile : orbis::File {};
|
|
|
|
static orbis::ErrorCode hdd_ioctl(orbis::File *fs, std::uint64_t request,
|
|
void *argp, orbis::Thread *thread) {
|
|
|
|
if (request == 0x40046480) { // DIOCGSECTORSIZE
|
|
return orbis::uwrite(orbis::ptr<orbis::uint>(argp), 0x1000u);
|
|
}
|
|
|
|
ORBIS_LOG_FATAL("Unhandled hdd ioctl", request);
|
|
thread->where();
|
|
return {};
|
|
}
|
|
|
|
static orbis::ErrorCode hdd_read(orbis::File *file, orbis::Uio *uio,
|
|
orbis::Thread *thread) {
|
|
auto dev = file->device.get();
|
|
|
|
ORBIS_LOG_ERROR(__FUNCTION__, uio->offset);
|
|
for (auto vec : std::span(uio->iov, uio->iovcnt)) {
|
|
std::memset(vec.base, 0, vec.len);
|
|
|
|
// HACK: dummy UFS header
|
|
if (uio->offset == 0x10000) {
|
|
*(uint32_t *)((char *)vec.base + 0x55c) = 0x19540119;
|
|
*(uint64_t *)((char *)vec.base + 0x3e8) = 0x1000;
|
|
*(uint8_t *)((char *)vec.base + 0xd3) = 1;
|
|
*(uint8_t *)((char *)vec.base + 0xd1) = 1;
|
|
}
|
|
uio->offset += vec.len;
|
|
}
|
|
return {};
|
|
}
|
|
|
|
|
|
static orbis::ErrorCode hdd_stat(orbis::File *fs, orbis::Stat *sb,
|
|
orbis::Thread *thread) {
|
|
// TODO
|
|
return {};
|
|
}
|
|
|
|
static const orbis::FileOps fsOps = {
|
|
.ioctl = hdd_ioctl,
|
|
.read = hdd_read,
|
|
.stat = hdd_stat,
|
|
};
|
|
|
|
struct HddDevice : IoDevice {
|
|
orbis::ErrorCode open(orbis::Ref<orbis::File> *fs, const char *path,
|
|
std::uint32_t flags, std::uint32_t mode,
|
|
orbis::Thread *thread) override {
|
|
auto newFile = orbis::knew<HddFile>();
|
|
newFile->ops = &fsOps;
|
|
newFile->device = this;
|
|
|
|
*fs = newFile;
|
|
return {};
|
|
}
|
|
};
|
|
|
|
IoDevice *createHddCharacterDevice() { return orbis::knew<HddDevice>(); }
|