2020-02-09 17:28:56 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-02-09 17:28:56 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-03-01 16:18:05 +03:00
|
|
|
#include <AK/Assertions.h>
|
|
|
|
#include <AK/String.h>
|
2020-02-09 17:28:56 +03:00
|
|
|
#include <AK/Types.h>
|
|
|
|
|
|
|
|
namespace IO {
|
|
|
|
|
2021-05-31 19:59:48 +03:00
|
|
|
// Every character written to this IO port is written to the Bochs console
|
|
|
|
// (e.g. the console where Qemu is running).
|
|
|
|
static constexpr u16 BOCHS_DEBUG_PORT = 0xE9;
|
|
|
|
|
2020-02-09 17:28:56 +03:00
|
|
|
inline u8 in8(u16 port)
|
|
|
|
{
|
|
|
|
u8 value;
|
|
|
|
asm volatile("inb %1, %0"
|
|
|
|
: "=a"(value)
|
|
|
|
: "Nd"(port));
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline u16 in16(u16 port)
|
|
|
|
{
|
|
|
|
u16 value;
|
|
|
|
asm volatile("inw %1, %0"
|
|
|
|
: "=a"(value)
|
|
|
|
: "Nd"(port));
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline u32 in32(u16 port)
|
|
|
|
{
|
|
|
|
u32 value;
|
|
|
|
asm volatile("inl %1, %0"
|
|
|
|
: "=a"(value)
|
|
|
|
: "Nd"(port));
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void out8(u16 port, u8 value)
|
|
|
|
{
|
|
|
|
asm volatile("outb %0, %1" ::"a"(value), "Nd"(port));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void out16(u16 port, u16 value)
|
|
|
|
{
|
|
|
|
asm volatile("outw %0, %1" ::"a"(value), "Nd"(port));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void out32(u16 port, u32 value)
|
|
|
|
{
|
|
|
|
asm volatile("outl %0, %1" ::"a"(value), "Nd"(port));
|
|
|
|
}
|
|
|
|
|
2020-05-16 11:39:06 +03:00
|
|
|
inline void delay(size_t microseconds)
|
2020-02-09 17:28:56 +03:00
|
|
|
{
|
2020-05-16 11:39:06 +03:00
|
|
|
for (size_t i = 0; i < microseconds; ++i)
|
2020-02-09 17:28:56 +03:00
|
|
|
IO::in8(0x80);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2020-03-01 16:18:05 +03:00
|
|
|
|
|
|
|
class IOAddress {
|
|
|
|
public:
|
2021-02-28 16:42:08 +03:00
|
|
|
IOAddress() = default;
|
2020-03-01 16:18:05 +03:00
|
|
|
explicit IOAddress(u16 address)
|
|
|
|
: m_address(address)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
IOAddress offset(u16 o) const { return IOAddress(m_address + o); }
|
|
|
|
u16 get() const { return m_address; }
|
|
|
|
void set(u16 address) { m_address = address; }
|
|
|
|
void mask(u16 m) { m_address &= m; }
|
|
|
|
|
|
|
|
template<typename T>
|
2020-04-30 12:43:25 +03:00
|
|
|
ALWAYS_INLINE T in()
|
2020-03-01 16:18:05 +03:00
|
|
|
{
|
2021-06-27 22:59:48 +03:00
|
|
|
static_assert(sizeof(T) <= 4);
|
2020-03-01 16:18:05 +03:00
|
|
|
if constexpr (sizeof(T) == 4)
|
|
|
|
return IO::in32(get());
|
|
|
|
if constexpr (sizeof(T) == 2)
|
|
|
|
return IO::in16(get());
|
|
|
|
if constexpr (sizeof(T) == 1)
|
|
|
|
return IO::in8(get());
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY_NOT_REACHED();
|
2020-03-01 16:18:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
2020-04-30 12:43:25 +03:00
|
|
|
ALWAYS_INLINE void out(T value)
|
2020-03-01 16:18:05 +03:00
|
|
|
{
|
2021-06-27 22:59:48 +03:00
|
|
|
static_assert(sizeof(T) <= 4);
|
2020-03-01 16:18:05 +03:00
|
|
|
if constexpr (sizeof(T) == 4) {
|
|
|
|
IO::out32(get(), value);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if constexpr (sizeof(T) == 2) {
|
|
|
|
IO::out16(get(), value);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if constexpr (sizeof(T) == 1) {
|
|
|
|
IO::out8(get(), value);
|
|
|
|
return;
|
|
|
|
}
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY_NOT_REACHED();
|
2020-03-01 16:18:05 +03:00
|
|
|
}
|
|
|
|
|
2020-03-11 15:28:17 +03:00
|
|
|
inline void out(u32 value, u8 bit_width)
|
|
|
|
{
|
|
|
|
if (bit_width == 32) {
|
|
|
|
IO::out32(get(), value);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (bit_width == 16) {
|
|
|
|
IO::out16(get(), value);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (bit_width == 8) {
|
|
|
|
IO::out8(get(), value);
|
|
|
|
return;
|
|
|
|
}
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY_NOT_REACHED();
|
2020-03-11 15:28:17 +03:00
|
|
|
}
|
|
|
|
|
2020-03-01 16:18:05 +03:00
|
|
|
bool is_null() const { return m_address == 0; }
|
|
|
|
|
|
|
|
bool operator==(const IOAddress& other) const { return m_address == other.m_address; }
|
|
|
|
bool operator!=(const IOAddress& other) const { return m_address != other.m_address; }
|
|
|
|
bool operator>(const IOAddress& other) const { return m_address > other.m_address; }
|
|
|
|
bool operator>=(const IOAddress& other) const { return m_address >= other.m_address; }
|
|
|
|
bool operator<(const IOAddress& other) const { return m_address < other.m_address; }
|
|
|
|
bool operator<=(const IOAddress& other) const { return m_address <= other.m_address; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
u16 m_address { 0 };
|
|
|
|
};
|
|
|
|
|
2021-01-09 02:42:44 +03:00
|
|
|
template<>
|
|
|
|
struct AK::Formatter<IOAddress> : AK::Formatter<FormatString> {
|
|
|
|
void format(FormatBuilder& builder, IOAddress value)
|
|
|
|
{
|
|
|
|
return Formatter<FormatString>::format(builder, "IO {:x}", value.get());
|
|
|
|
}
|
|
|
|
};
|