The moving of kernel-only code out of kutil continues. (See 042f061)
This commit moves the following:
- The heap allocator code
- memory.cpp/h which means:
- letting string.h be the right header for memset and memcpy, still
including an implementation of it for the kernel though, since
we're not linking libc to the kernel
- Changing calls to kalloc/kfree to new/delete in kutil containers
that aren't going to be merged into the kernel
- Fixing a problem with stdalign.h from libc, which was causing issues
for type_traits.
164 lines
3.9 KiB
C++
164 lines
3.9 KiB
C++
#include <string.h>
|
|
#include "kutil/assert.h"
|
|
#include "kutil/no_construct.h"
|
|
|
|
#include "interrupts.h"
|
|
#include "io.h"
|
|
#include "serial.h"
|
|
|
|
// This object is initialized _before_ global constructors are called,
|
|
// so we don't want it to have global constructors at all, lest it
|
|
// overwrite the previous initialization.
|
|
static kutil::no_construct<serial_port> __g_com1_storage;
|
|
serial_port &g_com1 = __g_com1_storage.value;
|
|
|
|
constexpr size_t fifo_size = 64;
|
|
|
|
// register offsets
|
|
constexpr uint16_t THR = 0; // Write
|
|
constexpr uint16_t RBR = 0; // Read
|
|
constexpr uint16_t IER = 1;
|
|
constexpr uint16_t FCR = 2; // Write
|
|
constexpr uint16_t IIR = 2; // Read
|
|
constexpr uint16_t LCR = 3;
|
|
constexpr uint16_t MCR = 4;
|
|
constexpr uint16_t LSR = 5;
|
|
constexpr uint16_t MSR = 6;
|
|
|
|
constexpr uint16_t DLL = 0; // DLAB == 1
|
|
constexpr uint16_t DLH = 1; // DLAB == 1
|
|
|
|
uint8_t com1_out_buffer[4096*4];
|
|
uint8_t com1_in_buffer[512];
|
|
|
|
serial_port::serial_port() :
|
|
m_writing(false),
|
|
m_port(0)
|
|
{
|
|
}
|
|
|
|
serial_port::serial_port(uint16_t port) :
|
|
m_writing(false),
|
|
m_port(port),
|
|
m_out_buffer(com1_out_buffer, sizeof(com1_out_buffer)),
|
|
m_in_buffer(com1_in_buffer, sizeof(com1_in_buffer))
|
|
{
|
|
outb(port + IER, 0x00); // Disable all interrupts
|
|
outb(port + LCR, 0x80); // Enable the Divisor Latch Access Bit
|
|
outb(port + DLL, 0x01); // Divisor low byte: 1 (115200 baud)
|
|
outb(port + DLH, 0x00); // Divisor high byte
|
|
outb(port + LCR, 0x03); // 8-N-1, diable DLAB
|
|
outb(port + FCR, 0xe7); // Clear and enable FIFO, enable 64 byte, 56 byte trigger
|
|
outb(port + MCR, 0x0b); // Data terminal ready, Request to send, aux output 2 (irq enable)
|
|
outb(port + IER, 0x03); // Enable interrupts
|
|
|
|
// Clear out pending interrupts
|
|
handle_interrupt();
|
|
}
|
|
|
|
inline bool read_ready(uint16_t port) { return (inb(port + LSR) & 0x01) != 0; }
|
|
inline bool write_ready(uint16_t port) { return (inb(port + LSR) & 0x20) != 0; }
|
|
|
|
void
|
|
serial_port::handle_interrupt()
|
|
{
|
|
interrupts_disable();
|
|
uint8_t iir = inb(m_port + IIR);
|
|
|
|
while ((iir & 1) == 0) {
|
|
uint8_t reg = 0;
|
|
switch ((iir>>1) & 0x3) {
|
|
case 0: // Modem status change
|
|
reg = inb(m_port + MSR);
|
|
handle_error(MSR, reg);
|
|
break;
|
|
|
|
case 1: // Transmit buffer empty
|
|
do_write();
|
|
break;
|
|
|
|
case 2: // Received data available
|
|
do_read();
|
|
break;
|
|
|
|
case 3: // Line status change
|
|
reg = inb(m_port + LSR);
|
|
handle_error(LSR, reg);
|
|
break;
|
|
}
|
|
|
|
iir = inb(m_port + IIR);
|
|
}
|
|
interrupts_enable();
|
|
}
|
|
|
|
void
|
|
serial_port::do_read()
|
|
{
|
|
size_t used = 0;
|
|
uint8_t *data = nullptr;
|
|
size_t avail = m_in_buffer.reserve(fifo_size, reinterpret_cast<void**>(&data));
|
|
|
|
while (used < avail && read_ready(m_port)) {
|
|
*data++ = inb(m_port);
|
|
used++;
|
|
}
|
|
|
|
m_in_buffer.commit(used);
|
|
}
|
|
|
|
void
|
|
serial_port::do_write()
|
|
{
|
|
uint8_t *data = nullptr;
|
|
uint8_t tmp[fifo_size];
|
|
|
|
size_t n = m_out_buffer.get_block(reinterpret_cast<void**>(&data));
|
|
|
|
m_writing = (n > 0);
|
|
if (!m_writing)
|
|
return;
|
|
|
|
if (n > fifo_size)
|
|
n = fifo_size;
|
|
|
|
memcpy(tmp, data, n);
|
|
m_out_buffer.consume(n);
|
|
|
|
for (size_t i = 0; i < n; ++i)
|
|
outb(m_port, data[i]);
|
|
|
|
}
|
|
|
|
void
|
|
serial_port::handle_error(uint16_t reg, uint8_t value)
|
|
{
|
|
kassert(false, "serial line error");
|
|
}
|
|
|
|
char
|
|
serial_port::read()
|
|
{
|
|
uint8_t *data = nullptr;
|
|
size_t n = m_in_buffer.get_block(reinterpret_cast<void**>(&data));
|
|
if (!n) return 0;
|
|
char c = *data;
|
|
m_in_buffer.consume(1);
|
|
return c;
|
|
}
|
|
|
|
void
|
|
serial_port::write(char c)
|
|
{
|
|
uint8_t *data = nullptr;
|
|
size_t avail = m_out_buffer.reserve(1, reinterpret_cast<void**>(&data));
|
|
if (!avail)
|
|
return;
|
|
*data = c;
|
|
m_out_buffer.commit(1);
|
|
|
|
if (!m_writing)
|
|
do_write();
|
|
}
|
|
|