[Kernel] More address arbiter stuff

This commit is contained in:
wheremyfoodat 2022-09-20 01:30:45 +03:00
parent 8bfa29568a
commit 11d8a43bd8
3 changed files with 39 additions and 23 deletions

View file

@ -28,24 +28,19 @@ enum class ResourceLimitCategory : int {
Misc = 3
};
enum ResourceTypes {
PRIORITY = 0,
COMMIT = 1,
THREAD = 2,
EVENT = 3,
MUTEX = 4,
SEMAPHORE = 5,
TIMER = 6,
SHARED_MEMORY = 7,
ADDRESS_ARBITER = 8,
CPU_TIME = 9
// Reset types (for use with events and timers)
enum class ResetType {
OneShot = 0, // When the primitive is signaled, it will wake up exactly one thread and will clear itself automatically.
Sticky = 1, // When the primitive is signaled, it will wake up all threads and it won't clear itself automatically.
Pulse = 2, // Only meaningful for timers: same as ONESHOT but it will periodically signal the timer instead of just once.
};
// Reset types (for use with events and timers)
enum ResetType {
RESET_ONESHOT = 0, // When the primitive is signaled, it will wake up exactly one thread and will clear itself automatically.
RESET_STICKY = 1, // When the primitive is signaled, it will wake up all threads and it won't clear itself automatically.
RESET_PULSE = 2, // Only meaningful for timers: same as ONESHOT but it will periodically signal the timer instead of just once.
enum class ArbitrationType {
Signal = 0,
WaitIfLess = 1,
DecrementAndWaitIfLess = 2,
WaitIfLessTimeout = 3,
DecrementAndWaitIfLessTimeout = 4
};
struct AddressArbiter {
@ -64,7 +59,7 @@ struct Process {
};
struct Event {
ResetType resetType = RESET_ONESHOT;
ResetType resetType = ResetType::OneShot;
Event(ResetType resetType) : resetType(resetType) {}
};

View file

@ -1,6 +1,17 @@
#include "kernel.hpp"
#include "resource_limits.hpp"
static const char* arbitrationTypeToString(u32 type) {
switch (type) {
case 0: return "Signal";
case 1: return "Wait if less";
case 2: return "Decrement and wait if less";
case 3: return "Wait if less with timeout";
case 4: return "Decrement and wait if less with timeout";
default: return "Unknown arbitration type";
}
}
Handle Kernel::makeArbiter() {
if (arbiterCount >= appResourceLimits.maxAddressArbiters) {
Helpers::panic("Overflowed the number of address arbiters");
@ -26,8 +37,8 @@ void Kernel::arbitrateAddress() {
const u32 value = regs[3];
const s64 ns = s64(u64(regs[4]) | (u64(regs[5]) << 32));
printf("ArbitrateAddress(Handle = %X, address = %08X, type = %d, value = %d, ns = %lld)\n", handle, address, type,
value, ns);
printf("ArbitrateAddress(Handle = %X, address = %08X, type = %s, value = %d, ns = %lld)\n", handle, address,
arbitrationTypeToString(type), value, ns);
const auto arbiter = getObject(handle, KernelObjectType::AddressArbiter);
if (arbiter == nullptr) [[unlikely]] {
@ -35,6 +46,16 @@ void Kernel::arbitrateAddress() {
return;
}
Helpers::panic("My balls\n");
if (value > 4) {
Helpers::panic("ArbitrateAddress: invalid arbitration type");
}
switch (static_cast<ArbitrationType>(type)) {
case ArbitrationType::WaitIfLess:
Helpers::panic("Uwu");
default:
Helpers::panic("ArbitrateAddress: Unimplemented type %s", arbitrationTypeToString(type));
}
regs[0] = SVCResult::Success;
}

View file

@ -2,9 +2,9 @@
const char* Kernel::resetTypeToString(u32 type) {
switch (type) {
case 0: return "RESET_ONESHOT";
case 1: return "RESET_STICKY";
case 2: return "RESET_PULSE";
case 0: return "One shot";
case 1: return "Sticky";
case 2: return "Pulse";
default: return "Invalid";
}
}