#ifndef __JABYENGINE_IOPORT_HPP__ #define __JABYENGINE_IOPORT_HPP__ #include "../../Auxiliary/complex_bitmap.hpp" template class __no_align IOPort { private: T value; public: //For easy access constexpr T read() const { return const_cast*>(this)->value; } constexpr void write(T value) { const_cast*>(this)->value = value; } constexpr volatile T& ref() { return const_cast*>(this)->value; } }; struct __no_align ubus32_t { ComplexBitMap low; ComplexBitMap high; constexpr ubus32_t(uint32_t value) { *this = value; } constexpr operator uint32_t() const { return ((this->high.raw << 16) | this->low.raw); } operator uint32_t() const volatile { return ((this->high.raw << 16) | this->low.raw); } constexpr ubus32_t& operator=(uint32_t value) { this->low.raw = (value & 0xFFFF); this->high.raw = (value >> 16); return *this; } constexpr void operator=(uint32_t value) volatile { this->low.raw = (value & 0xFFFF); this->high.raw = (value >> 16); } }; static constexpr uintptr_t IO_Base_Mask = 0xF0000000; static constexpr uintptr_t IO_Base_Adr = 0x10000000; #define __declare_io_port_global_raw(cv, type, name, adr) static __always_inline cv auto& name = *reinterpret_cast*>((IO_Base_Adr + (adr & ~IO_Base_Mask))) #define __declare_io_port_global(type, name, adr) __declare_io_port_global_raw(, type, name, adr) #define __declare_io_port_global_const(type, name, adr) __declare_io_port_global_raw(const, type, name, adr) #define __declare_io_port_global_array(type, name, adr, size) static __always_inline auto& name = reinterpret_cast(*reinterpret_cast((IO_Base_Adr + (adr & ~IO_Base_Mask)))); #define __io_port_inherit_complex_bit_map(name) \ constexpr __always_inline name() = default; \ constexpr __always_inline name(ComplexBitMap value) : ComplexBitMap(value) { \ } \ template \ static constexpr __always_inline name with(ARGS...args) { \ return {ComplexBitMap::with(args...)}; \ }\ template \ constexpr void __always_inline operator=(ComplexBitMap value) volatile { \ this->raw = value.raw; \ } #endif //!__JABYENGINE_IOPORT_HPP__