176 lines
5.0 KiB
C++
176 lines
5.0 KiB
C++
#pragma once
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
#include "lainlib/vector/vector.h"
|
|
|
|
/************************
|
|
*** Team Kitty, 2021 ***
|
|
*** Chroma ***
|
|
***********************/
|
|
|
|
/**
|
|
* @brief The device namespace, containing all definitions and classes required to implement and communicate with a device.
|
|
*/
|
|
namespace Device {
|
|
|
|
// The internal typemap of devices used in Chroma.
|
|
enum DeviceType : uint32_t {
|
|
STORAGE = 0, // Stores data.
|
|
INTERNAL = 1, // PCI, APIC, AHCI.
|
|
INTERFACE = 2, // Peripherals and I/O
|
|
NETWORK = 3, // NIC.
|
|
UNKNOWN = 0xFFFFFFFF // Unsupported.
|
|
};
|
|
|
|
// The base class that all devices extend from.
|
|
class GenericDevice {
|
|
public:
|
|
|
|
// The internal ID of this device.
|
|
size_t DeviceID;
|
|
|
|
virtual ~GenericDevice() = default;
|
|
|
|
// Return the string representation of the name of the device.
|
|
// Intended to be overriden by subclasses.
|
|
virtual const char* GetName() const {
|
|
return "Null Device";
|
|
};
|
|
|
|
// Return the DeviceType enum value that represents this device.
|
|
// Intended to be overriden by subclasses.
|
|
virtual DeviceType GetType() const {
|
|
return DeviceType::UNKNOWN;
|
|
};
|
|
|
|
// Return the DeviceType enum value that represents this device.
|
|
// Provided for utility checks.
|
|
static DeviceType GetRootType() {
|
|
return DeviceType::UNKNOWN;
|
|
};
|
|
};
|
|
|
|
class GenericKeyboard : public GenericDevice {
|
|
public:
|
|
struct KeyboardData {
|
|
char Char;
|
|
char Scancode;
|
|
bool Pressed;
|
|
};
|
|
|
|
// This is an input device.
|
|
DeviceType GetType() const final {
|
|
return DeviceType::INTERFACE;
|
|
};
|
|
|
|
// Provided for utility checks.
|
|
static DeviceType GetRootType() {
|
|
return DeviceType::INTERFACE;
|
|
};
|
|
|
|
virtual bool isPressed(uint8_t) const = 0;
|
|
virtual uint8_t getLastPress() const = 0;
|
|
|
|
size_t readBuffer(void* dest, size_t index, size_t len) {
|
|
size_t lengthRead = len;
|
|
|
|
if (index > buffer.size()) {
|
|
return 0;
|
|
} else if (index + len > buffer.size()) {
|
|
lengthRead = sizeof(KeyboardData) - index; // TODO: wat?
|
|
}
|
|
|
|
memcpy((uint8_t*) dest, ((uint8_t*)buffer.data) + index, lengthRead);
|
|
return lengthRead;
|
|
}
|
|
|
|
size_t getBufferSize() {
|
|
return buffer.size();
|
|
}
|
|
|
|
protected:
|
|
lainlib::vector<KeyboardData> buffer;
|
|
|
|
};
|
|
|
|
|
|
// TODO: GenericDebugger
|
|
// TODO: GenericNetwork
|
|
|
|
|
|
// The base class that all storage devices extend from.
|
|
class GenericStorage : public GenericDevice {
|
|
public:
|
|
|
|
// The return value of all base operations.
|
|
// Dictates what should happen next.
|
|
enum Status {
|
|
ERROR = 0,
|
|
OKAY = 1
|
|
};
|
|
|
|
// This is a storage device.
|
|
DeviceType GetType() const final {
|
|
return DeviceType::STORAGE;
|
|
};
|
|
|
|
// Provided for utility checks.
|
|
static DeviceType GetRootType() {
|
|
return DeviceType::STORAGE;
|
|
};
|
|
|
|
// TODO: Unaligned read/write
|
|
virtual Status Read(uint8_t* Buffer, size_t Count, size_t Start) = 0;
|
|
virtual Status Write(uint8_t* Data, size_t Count, size_t Start) = 0;
|
|
|
|
};
|
|
|
|
// The base class for every device that uses port or MMIO to communicate.
|
|
class IODevice : public GenericDevice {
|
|
public:
|
|
|
|
// Pre-use setup.
|
|
virtual void Init() = 0;
|
|
|
|
// This is an internal register device.
|
|
DeviceType GetType() const final {
|
|
return DeviceType::INTERNAL;
|
|
}
|
|
|
|
// Provided for utility checks.
|
|
static DeviceType GetRootType() {
|
|
return DeviceType::INTERNAL;
|
|
}
|
|
|
|
// Read data from a given port.
|
|
virtual uint32_t ReadRegister(uint32_t Register) = 0;
|
|
// Write data into a given port.
|
|
virtual void WriteRegister(uint32_t Register, uint32_t Data) = 0;
|
|
|
|
// Read data from the given address.
|
|
virtual uint32_t ReadIO(size_t Base, uint32_t Register) = 0;
|
|
// Write data into the given address.
|
|
virtual void WriteIO(size_t Base, uint32_t Register, uint32_t Data) = 0;
|
|
|
|
};
|
|
|
|
|
|
// Add a device pointer to the managed list.
|
|
void RegisterDevice(GenericDevice* Dev);
|
|
// Retrieve a device pointer from the managed list.
|
|
GenericDevice* GetDevice(size_t ID);
|
|
|
|
// Add a Storage device pointer to the managed list.
|
|
void RegisterStorageDevice(GenericStorage* Dev);
|
|
// Retrieve a Storage device pointer from the managed list.
|
|
GenericStorage* GetStorageDevice(size_t ID);
|
|
|
|
// Get the count of registered devices.
|
|
size_t GetTotalDevices();
|
|
|
|
template <typename T>
|
|
// Get the first registered instance of a specific type of device
|
|
extern T* FindDevice();
|
|
|
|
}; |