mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-29 07:33:57 +00:00
f3e76b3e9a
Moves the Bios Data Area header from base-hw to base. Modifies the base-nova core console that it uses the header as replacement for the previous BDA bit logic. Ref #1625
60 lines
1.2 KiB
C++
60 lines
1.2 KiB
C++
/*
|
|
* \brief Structure of the Bios Data Area after preparation through Bender
|
|
* \author Martin Stein
|
|
* \date 2015-07-10
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 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.
|
|
*/
|
|
|
|
#ifndef _BIOS_DATA_AREA_H_
|
|
#define _BIOS_DATA_AREA_H_
|
|
|
|
/* Genode includes */
|
|
#include <util/mmio.h>
|
|
|
|
/* base includes */
|
|
#include <unmanaged_singleton.h>
|
|
|
|
namespace Genode { class Bios_data_area; }
|
|
|
|
class Genode::Bios_data_area : Mmio
|
|
{
|
|
friend Unmanaged_singleton_constructor;
|
|
|
|
private:
|
|
|
|
struct Serial_base_com1 : Register<0x400, 16> { };
|
|
struct Equipment : Register<0x410, 16>
|
|
{
|
|
struct Serial_count : Bitfield<9, 3> { };
|
|
};
|
|
|
|
static addr_t _mmio_base_virt();
|
|
|
|
Bios_data_area() : Mmio(_mmio_base_virt()) { }
|
|
|
|
public:
|
|
|
|
/**
|
|
* Obtain I/O ports of COM interfaces from BDA
|
|
*/
|
|
addr_t serial_port() const
|
|
{
|
|
Equipment::access_t count = read<Equipment::Serial_count>();
|
|
return count ? read<Serial_base_com1>() : 0;
|
|
}
|
|
|
|
/**
|
|
* Return BDA singleton
|
|
*/
|
|
static Bios_data_area * singleton() {
|
|
return unmanaged_singleton<Bios_data_area>(); }
|
|
};
|
|
|
|
#endif /* _BIOS_DATA_AREA_H_ */
|