mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
1336b0a751
The classes Genode::Mmio, Genode::Register_set, Genode::Attached_mmio, and Platform::Device::Mmio now receive a template parameter 'size_t SIZE'. In each type that derives from one of these classes, it is now statically checked that the range of each Genode::Register::Register- and Genode::Register_set::Register_array-deriving sub-type is within [0..SIZE). That said, SIZE is the minimum size of the memory region provided to the above mentioned Mmio classes in order to avoid page faults or memory corruption when accessing the registers and register arrays declared inside. Note, that the range end of a register array is not the end of the last item but the end of integer access that is used for accessing the last bit in the last item. The constructors of Genode::Mmio, Genode::Attached_mmio, and Platform::Device::Mmio now receive an argument 'Byte_range_ptr range' that is expected to be the range of the backing memory region. In each type that derives from on of these classes, it is now dynamically checked that 'range.num_bytes >= SIZE', thereby implementing the above mention protection against page faults and memory corruption. The rest of the commit adapts the code throughout the Genode Labs repositories regarding the changes. Note that for that code inside Core, the commits mostly uses a simplified approach by constructing MMIO objects with range [base..base+SIZE) and not with a mapping- or specification-related range size. This should be fixed in the future. Furthermore, there are types that derive from an MMIO class but don't declare any registers or register arrays (especially with Platform::Device::Mmio). In this case SIZE is set to 0. This way, the parameters must be actively corrected by someone who later wants to add registers or register arrays, plus the places can be easily found by grep'ing for Mmio<0>. Fix #4081
60 lines
1.3 KiB
C++
60 lines
1.3 KiB
C++
/*
|
|
* \brief Structure of the Bios Data Area after preparation through Bender
|
|
* \author Martin Stein
|
|
* \date 2015-07-10
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2015-2017 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__SPEC__X86__BIOS_DATA_AREA_H_
|
|
#define _INCLUDE__SPEC__X86__BIOS_DATA_AREA_H_
|
|
|
|
/* Genode includes */
|
|
#include <util/mmio.h>
|
|
|
|
/* base-internal includes */
|
|
#include <base/internal/unmanaged_singleton.h>
|
|
|
|
namespace Genode { class Bios_data_area; }
|
|
|
|
class Genode::Bios_data_area : Mmio<0x12>
|
|
{
|
|
friend Unmanaged_singleton_constructor;
|
|
|
|
private:
|
|
|
|
struct Serial_base_com1 : Register<0x0, 16> { };
|
|
struct Equipment : Register<0x10, 16>
|
|
{
|
|
struct Serial_count : Bitfield<9, 3> { };
|
|
};
|
|
|
|
static addr_t _mmio_base_virt();
|
|
|
|
Bios_data_area() : Mmio({(char *)(_mmio_base_virt() + 0x400), Mmio::SIZE}) { }
|
|
|
|
public:
|
|
|
|
/**
|
|
* Obtain I/O ports of COM interfaces from BDA
|
|
*/
|
|
uint16_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 /* _INCLUDE__SPEC__X86__BIOS_DATA_AREA_H_ */
|