2015-07-09 09:03:11 +00:00
|
|
|
/*
|
2017-04-28 13:27:26 +00:00
|
|
|
* \brief UART driver for the x86 PC
|
2015-07-09 09:03:11 +00:00
|
|
|
* \author Norman Feske
|
|
|
|
* \author Alexander Boettcher
|
|
|
|
* \date 2009-12-28
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2009-2017 Genode Labs GmbH
|
2015-07-09 09:03:11 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
2017-02-20 12:23:52 +00:00
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
2015-07-09 09:03:11 +00:00
|
|
|
*/
|
|
|
|
|
2017-04-28 13:27:26 +00:00
|
|
|
#ifndef _INCLUDE__DRIVERS__UART__X86_PC_H_
|
|
|
|
#define _INCLUDE__DRIVERS__UART__X86_PC_H_
|
2015-07-09 09:03:11 +00:00
|
|
|
|
|
|
|
/* Genode includes */
|
|
|
|
#include <base/stdint.h>
|
|
|
|
|
2017-04-28 13:27:26 +00:00
|
|
|
namespace Genode { class X86_uart; }
|
2015-07-09 09:03:11 +00:00
|
|
|
|
2017-04-28 13:27:26 +00:00
|
|
|
class Genode::X86_uart
|
2015-07-09 09:03:11 +00:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
uint16_t _port;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
COMPORT_DATA_OFFSET = 0,
|
|
|
|
COMPORT_STATUS_OFFSET = 5,
|
|
|
|
|
|
|
|
STATUS_THR_EMPTY = 0x20, /* transmitter hold register empty */
|
|
|
|
STATUS_DHR_EMPTY = 0x40, /* data hold register empty - data completely sent */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read byte from I/O port
|
|
|
|
*/
|
|
|
|
uint8_t _inb(uint16_t port)
|
|
|
|
{
|
|
|
|
uint8_t res;
|
|
|
|
asm volatile ("inb %%dx, %0" :"=a"(res) :"Nd"(port));
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write byte to I/O port
|
|
|
|
*/
|
|
|
|
void _outb(uint16_t port, uint8_t val)
|
|
|
|
{
|
|
|
|
asm volatile ("outb %b0, %w1" : : "a" (val), "Nd" (port));
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
Follow practices suggested by "Effective C++"
The patch adjust the code of the base, base-<kernel>, and os repository.
To adapt existing components to fix violations of the best practices
suggested by "Effective C++" as reported by the -Weffc++ compiler
argument. The changes follow the patterns outlined below:
* A class with virtual functions can no longer publicly inherit base
classed without a vtable. The inherited object may either be moved
to a member variable, or inherited privately. The latter would be
used for classes that inherit 'List::Element' or 'Avl_node'. In order
to enable the 'List' and 'Avl_tree' to access the meta data, the
'List' must become a friend.
* Instead of adding a virtual destructor to abstract base classes,
we inherit the new 'Interface' class, which contains a virtual
destructor. This way, single-line abstract base classes can stay
as compact as they are now. The 'Interface' utility resides in
base/include/util/interface.h.
* With the new warnings enabled, all member variables must be explicitly
initialized. Basic types may be initialized with '='. All other types
are initialized with braces '{ ... }' or as class initializers. If
basic types and non-basic types appear in a row, it is nice to only
use the brace syntax (also for basic types) and align the braces.
* If a class contains pointers as members, it must now also provide a
copy constructor and assignment operator. In the most cases, one
would make them private, effectively disallowing the objects to be
copied. Unfortunately, this warning cannot be fixed be inheriting
our existing 'Noncopyable' class (the compiler fails to detect that
the inheriting class cannot be copied and still gives the error).
For now, we have to manually add declarations for both the copy
constructor and assignment operator as private class members. Those
declarations should be prepended with a comment like this:
/*
* Noncopyable
*/
Thread(Thread const &);
Thread &operator = (Thread const &);
In the future, we should revisit these places and try to replace
the pointers with references. In the presence of at least one
reference member, the compiler would no longer implicitly generate
a copy constructor. So we could remove the manual declaration.
Issue #465
2017-12-21 14:42:15 +00:00
|
|
|
X86_uart(addr_t const port, unsigned /* clock */,
|
2017-04-28 13:27:26 +00:00
|
|
|
unsigned const baud_rate)
|
2015-07-09 09:03:11 +00:00
|
|
|
: _port(port)
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize serial port
|
|
|
|
*
|
|
|
|
* Based on 'init_serial' of L4ka::Pistachio's 'kdb/platform/pc99/io.cc'
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!port)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const unsigned
|
|
|
|
IER = port + 1,
|
|
|
|
EIR = port + 2,
|
|
|
|
LCR = port + 3,
|
|
|
|
MCR = port + 4,
|
|
|
|
LSR = port + 5,
|
|
|
|
MSR = port + 6,
|
|
|
|
DLLO = port + 0,
|
|
|
|
DLHI = port + 1;
|
|
|
|
|
|
|
|
_outb(LCR, 0x80); /* select bank 1 */
|
|
|
|
for (volatile int i = 10000000; i--; );
|
|
|
|
_outb(DLLO, (115200/baud_rate) >> 0);
|
|
|
|
_outb(DLHI, (115200/baud_rate) >> 8);
|
|
|
|
_outb(LCR, 0x03); /* set 8,N,1 */
|
|
|
|
_outb(IER, 0x00); /* disable interrupts */
|
|
|
|
_outb(EIR, 0x07); /* enable FIFOs */
|
|
|
|
_outb(MCR, 0x0b); /* force data terminal ready */
|
|
|
|
_outb(IER, 0x01); /* enable RX interrupts */
|
|
|
|
_inb(IER);
|
|
|
|
_inb(EIR);
|
|
|
|
_inb(LCR);
|
|
|
|
_inb(MCR);
|
|
|
|
_inb(LSR);
|
|
|
|
_inb(MSR);
|
|
|
|
}
|
|
|
|
|
|
|
|
void put_char(char const c)
|
|
|
|
{
|
|
|
|
if (!_port)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* wait until serial port is ready */
|
|
|
|
Genode::uint8_t ready = STATUS_THR_EMPTY;
|
|
|
|
while ((_inb(_port + COMPORT_STATUS_OFFSET) & ready) != ready);
|
|
|
|
|
|
|
|
/* output character */
|
|
|
|
_outb(_port + COMPORT_DATA_OFFSET, c);
|
|
|
|
}
|
|
|
|
};
|
2015-09-03 12:55:05 +00:00
|
|
|
|
2017-04-28 13:27:26 +00:00
|
|
|
#endif /* _INCLUDE__DRIVERS__UART__X86_PC_H_ */
|