genode/repos/os/src/drivers/nic/lan9118/main.cc

104 lines
2.8 KiB
C++

/*
* \brief LAN9118 NIC driver
* \author Norman Feske
* \author Stefan Kalkowski
* \date 2011-05-19
*
* Note, this driver is only tested on Qemu. At the current stage, it is not
* expected to function properly on hardware.
*/
/*
* Copyright (C) 2011-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.
*/
/* Genode includes */
#include <base/attached_rom_dataspace.h>
#include <base/component.h>
#include <base/env.h>
#include <base/heap.h>
#include <nic/component.h>
#include <root/component.h>
/* driver code */
#include <lan9118.h>
class Root : public Genode::Root_component<Lan9118, Genode::Single_client>
{
private:
enum {
/**
* If no resource addresses are given, we take these Realview
* platform addresses as default ones.
*/
REALVIEW_MMIO_BASE = 0x4e000000,
REALVIEW_IRQ = 60,
/**
* Size of MMIO resource
*
* The device spans actually a much larger
* resource. However, only the first page is needed.
*/
LAN9118_MMIO_SIZE = 0x1000,
};
Genode::Env &_env;
Genode::Attached_rom_dataspace _config { _env, "config" };
Genode::addr_t _mmio_base { REALVIEW_MMIO_BASE };
unsigned _irq { REALVIEW_IRQ };
protected:
Lan9118 *_create_session(const char *args) override
{
using namespace Genode;
size_t ram_quota = Arg_string::find_arg(args, "ram_quota" ).ulong_value(0);
size_t tx_buf_size = Arg_string::find_arg(args, "tx_buf_size").ulong_value(0);
size_t rx_buf_size = Arg_string::find_arg(args, "rx_buf_size").ulong_value(0);
/*
* Check if donated ram quota suffices for both communication
* buffers and check for overflow
*/
if (tx_buf_size + rx_buf_size < tx_buf_size ||
tx_buf_size + rx_buf_size > ram_quota) {
error("insufficient 'ram_quota', got ", ram_quota, ", "
"need ", tx_buf_size + rx_buf_size);
throw Genode::Insufficient_ram_quota();
}
return new (Root::md_alloc())
Lan9118(_mmio_base, LAN9118_MMIO_SIZE, _irq,
tx_buf_size, rx_buf_size, *md_alloc(), _env);
}
public:
Root(Genode::Env &env, Genode::Allocator &md_alloc)
: Genode::Root_component<Lan9118,
Genode::Single_client>(env.ep(), md_alloc),
_env(env)
{
_mmio_base =
_config.xml().attribute_value("mmio_base",
(Genode::addr_t)REALVIEW_MMIO_BASE);
_irq = _config.xml().attribute_value<unsigned>("irq", REALVIEW_IRQ);
}
};
void Component::construct(Genode::Env &env)
{
static Genode::Heap heap(env.ram(), env.rm());
static Root nic_root(env, heap);
Genode::log("--- LAN9118 NIC driver started ---");
env.parent().announce(env.ep().manage(nic_root));
}