genode/repos/os/src/drivers/platform/spec/x86/pci_config_access.h

194 lines
5.4 KiB
C
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Interface for accessing PCI configuration registers
* \author Norman Feske
* \author Reto Buerki
2011-12-22 16:19:25 +01:00
* \date 2008-01-29
*/
/*
* Copyright (C) 2008-2017 Genode Labs GmbH
2011-12-22 16:19:25 +01:00
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
2011-12-22 16:19:25 +01:00
*/
#ifndef _X86_PCI_CONFIG_ACCESS_H_
#define _X86_PCI_CONFIG_ACCESS_H_
2011-12-22 16:19:25 +01:00
#include <util/bit_array.h>
#include <base/attached_io_mem_dataspace.h>
#include <base/attached_rom_dataspace.h>
#include <platform_device/platform_device.h>
2011-12-22 16:19:25 +01:00
using namespace Genode;
namespace Platform {
2011-12-22 16:19:25 +01:00
class Config_access
{
private:
Attached_io_mem_dataspace &_pciconf;
Genode::size_t const _pciconf_size;
2011-12-22 16:19:25 +01:00
/**
* Calculate device offset from BDF
2011-12-22 16:19:25 +01:00
*
* \param bus target PCI bus ID (0..255)
* \param device target device ID (0..31)
* \param function target function ID (0..7)
*
* \return device base address
2011-12-22 16:19:25 +01:00
*/
unsigned _dev_base(int bus, int device, int function)
{
return ((bus << 20) |
(device << 15) |
(function << 12));
}
2011-12-22 16:19:25 +01:00
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 15:42:15 +01:00
Genode::Bit_array<256> _used { };
void _use_register(unsigned char addr, unsigned short width)
{
for (unsigned i = 0; i < width; i++)
if (!_used.get(addr + i, 1))
_used.set(addr + i, 1);
}
2011-12-22 16:19:25 +01:00
public:
class Invalid_mmio_access : Genode::Exception { };
Config_access(Attached_io_mem_dataspace &pciconf)
:
_pciconf(pciconf),
_pciconf_size(Dataspace_client(_pciconf.cap()).size())
{ }
Config_access(Config_access &c)
: _pciconf(c._pciconf), _pciconf_size(c._pciconf_size) { }
2011-12-22 16:19:25 +01:00
/**
* Read value from config space of specified device/function
*
* \param bus target PCI bus ID
* \param device target device ID
* \param function target function ID
* \param addr target byte within targeted PCI config space
* \param size bit width of read access
*
* \return value read from specified config-space address
*
* There is no range check for the input values.
*/
unsigned read(int bus, int device, int function,
unsigned char addr, Device::Access_size size,
bool track = true)
2011-12-22 16:19:25 +01:00
{
unsigned ret;
unsigned const offset = _dev_base(bus, device, function) + addr;
char const * const field = _pciconf.local_addr<char>() + offset;
if (offset >= _pciconf_size)
throw Invalid_mmio_access();
2011-12-22 16:19:25 +01:00
/*
* Memory access code is implemented in a way to make it work
* with Muen subject monitor (SM) device emulation and also
* general x86 targets. On Muen, the simplified device
* emulation code (which also works for Linux) always returns
* 0xffff in EAX to indicate a non-existing device. Therefore,
* we enforce the usage of EAX in the following assembly
* templates. Also clear excess bits before return to guarantee
* the requested size.
*/
2011-12-22 16:19:25 +01:00
switch (size) {
case Device::ACCESS_8BIT:
if (track)
_use_register(addr, 1);
asm volatile("movb %1,%%al" :"=a" (ret) :"m" (*((volatile unsigned char *)field)) :"memory");
return ret & 0xff;
case Device::ACCESS_16BIT:
if (track)
_use_register(addr, 2);
asm volatile("movw %1,%%ax" :"=a" (ret) :"m" (*(volatile unsigned short *)field) :"memory");
return ret & 0xffff;
case Device::ACCESS_32BIT:
if (track)
_use_register(addr, 4);
asm volatile("movl %1,%%eax" :"=a" (ret) :"m" (*(volatile unsigned int *)field) :"memory");
return ret;
default:
return ~0U;
2011-12-22 16:19:25 +01:00
}
}
/**
* Write to config space of specified device/function
*
* \param bus target PCI bus ID
* \param device target device ID
* \param function target function ID
* \param addr target byte within targeted PCI config space
* \param value value to be written
* \param size bit width of write access
*
* There is no range check for the input values.
*/
void write(int bus, int device, int function, unsigned char addr,
unsigned value, Device::Access_size size,
bool track = true)
2011-12-22 16:19:25 +01:00
{
unsigned const offset = _dev_base(bus, device, function) + addr;
char const * const field = _pciconf.local_addr<char>() + offset;
if (offset >= _pciconf_size)
throw Invalid_mmio_access();
2011-12-22 16:19:25 +01:00
/*
* Write value to targeted address, see read() comment above
* for an explanation of the assembly templates
*/
2011-12-22 16:19:25 +01:00
switch (size) {
case Device::ACCESS_8BIT:
if (track)
_use_register(addr, 1);
asm volatile("movb %%al,%1" : :"a" (value), "m" (*(volatile unsigned char *)field) :"memory");
2011-12-22 16:19:25 +01:00
break;
case Device::ACCESS_16BIT:
if (track)
_use_register(addr, 2);
asm volatile("movw %%ax,%1" : :"a" (value), "m" (*(volatile unsigned char *)field) :"memory");
2011-12-22 16:19:25 +01:00
break;
case Device::ACCESS_32BIT:
if (track)
_use_register(addr, 4);
asm volatile("movl %%eax,%1" : :"a" (value), "m" (*(volatile unsigned char *)field) :"memory");
2011-12-22 16:19:25 +01:00
break;
}
}
bool reg_in_use(unsigned char addr, Device::Access_size size)
{
switch (size) {
case Device::ACCESS_8BIT:
return _used.get(addr, 1);
case Device::ACCESS_16BIT:
return _used.get(addr, 2);
case Device::ACCESS_32BIT:
return _used.get(addr, 4);
default:
return true;
}
}
2011-12-22 16:19:25 +01:00
};
}
#endif /* _X86_PCI_CONFIG_ACCESS_H_ */