genode/repos/base-hw/src/core/include/spec/x86_64/muen/serial.h

41 lines
698 B
C++

/*
* \brief Serial output driver for core
* \author Stefan Kalkowski
* \author Adrian-Ken Rueegsegger
* \date 2015-08-20
*/
/*
* Copyright (C) 2012-2015 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#pragma once
/* Genode includes */
#include <drivers/uart/x86_uart_base.h>
namespace Genode { class Serial; }
/**
* Serial output driver for core
*/
class Genode::Serial : public X86_uart_base
{
private:
enum {
CLOCK_UNUSED = 0,
COM1_PORT = 0x3f8
};
public:
Serial(unsigned baud_rate)
:
X86_uart_base(COM1_PORT, CLOCK_UNUSED, baud_rate)
{ }
};